1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
|
/* $NetBSD: atari5380.c,v 1.66 2023/01/06 10:28:28 tsutsui Exp $ */
/*
* Copyright (c) 1995 Leo Weppelman.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: atari5380.c,v 1.66 2023/01/06 10:28:28 tsutsui Exp $");
#include "opt_atariscsi.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/device.h>
#include <sys/buf.h>
#include <dev/scsipi/scsi_all.h>
#include <dev/scsipi/scsipi_all.h>
#include <dev/scsipi/scsi_message.h>
#include <dev/scsipi/scsiconf.h>
#include <uvm/uvm_extern.h>
#include <m68k/asm_single.h>
#include <m68k/cpu.h>
#include <m68k/cacheops.h>
#include <atari/atari/stalloc.h>
/*
* Include the driver definitions
*/
#include <atari/dev/ncr5380reg.h>
#include <machine/iomap.h>
#include <machine/mfp.h>
#include <machine/intr.h>
#if defined(FALCON_SCSI)
#include <machine/dma.h>
#endif
/*
* Set the various driver options
*/
#define NREQ 18 /* Size of issue queue */
#define AUTO_SENSE 1 /* Automatically issue a request-sense */
#define DRNAME ncrscsi /* used in various prints */
#undef DBG_SEL /* Show the selection process */
#undef DBG_REQ /* Show enqueued/ready requests */
#undef DBG_ERR_RET /* Show requests with != 0 return code */
#undef DBG_NOWRITE /* Do not allow writes to the targets */
#undef DBG_PIO /* Show the polled-I/O process */
#undef DBG_INF /* Show information transfer process */
#define DBG_NOSTATIC /* No static functions, all in DDB trace*/
#define DBG_PID 15 /* Keep track of driver */
#define REAL_DMA /* Use DMA if sensible */
#if defined(FALCON_SCSI)
#define REAL_DMA_POLL 1 /* 1: Poll for end of DMA-transfer */
#else
#define REAL_DMA_POLL 0 /* 1: Poll for end of DMA-transfer */
#endif
#undef USE_PDMA /* Use special pdma-transfer function */
#define MIN_PHYS 65536 /*BARF!!!!*/
/*
* Include more driver definitions
*/
#include <atari/dev/ncr5380var.h>
/*
* The atari specific driver options
*/
#undef NO_TTRAM_DMA /* Do not use DMA to TT-ram. This */
/* fails on older atari's */
#define ENABLE_NCR5380(sc) cur_softc = sc;
static uint8_t *alloc_bounceb(u_long);
static void free_bounceb(uint8_t *);
static int machine_match(device_t, cfdata_t, void *, struct cfdriver *);
void scsi_ctrl(int);
void scsi_dma(int);
/*
* Functions that do nothing on the atari
*/
#define pdma_ready() 0
#if defined(TT_SCSI)
void ncr5380_drq_intr(int);
/*
* Define all the things we need of the DMA-controller
*/
#define SCSI_DMA ((struct scsi_dma *)AD_SCSI_DMA)
#define SCSI_5380 ((struct scsi_5380 *)AD_NCR5380)
struct scsi_dma {
volatile uint8_t s_dma_ptr[8]; /* use only the odd bytes */
volatile uint8_t s_dma_cnt[8]; /* use only the odd bytes */
volatile uint8_t s_dma_res[4]; /* data residue register */
volatile uint8_t s_dma_gap; /* not used */
volatile uint8_t s_dma_ctrl; /* control register */
volatile uint8_t s_dma_gap2; /* not used */
volatile uint8_t s_hdma_ctrl; /* Hades control register */
};
static inline void set_scsi_dma(volatile uint8_t *, u_long);
static inline u_long get_scsi_dma(volatile uint8_t *);
static inline void
set_scsi_dma(volatile uint8_t *addr, u_long val)
{
volatile uint8_t *address;
address = addr + 1;
__asm("movepl %0, %1@(0)": :"d" (val), "a" (address));
}
static inline u_long
get_scsi_dma(volatile uint8_t *addr)
{
volatile uint8_t *address;
u_long nval;
address = addr + 1;
__asm("movepl %1@(0), %0": "=d" (nval) : "a" (address));
return nval;
}
/*
* Defines for TT-DMA control register
*/
#define SD_BUSERR 0x80 /* 1 = transfer caused bus error*/
#define SD_ZERO 0x40 /* 1 = byte counter is zero */
#define SD_ENABLE 0x02 /* 1 = Enable DMA */
#define SD_OUT 0x01 /* Direction: memory to SCSI */
#define SD_IN 0x00 /* Direction: SCSI to memory */
/*
* Defines for Hades-DMA control register
*/
#define SDH_BUSERR 0x02 /* 1 = Bus error */
#define SDH_EOP 0x01 /* 1 = Signal EOP on 5380 */
#define SDH_ZERO 0x40 /* 1 = Byte counter is zero */
/*
* Define the 5380 register set
*/
struct scsi_5380 {
volatile uint8_t scsi_5380[16]; /* use only the odd bytes */
};
#endif /* TT_SCSI */
/**********************************************
* Variables present for both TT and Falcon. *
**********************************************/
/*
* Softc of currently active controller (a bit of fake; we only have one)
*/
static struct ncr_softc *cur_softc;
#if defined(TT_SCSI) && !defined(FALCON_SCSI)
/*
* We can be more efficient for some functions when only TT_SCSI is selected
*/
#define GET_5380_REG(rnum) SCSI_5380->scsi_5380[(rnum << 1) | 1]
#define SET_5380_REG(rnum,val) (SCSI_5380->scsi_5380[(rnum << 1) | 1] = val)
#define scsi_mach_init(sc) scsi_tt_init(sc)
#define scsi_ienable() scsi_tt_ienable()
#define scsi_idisable() scsi_tt_idisable()
#define scsi_clr_ipend() scsi_tt_clr_ipend()
#define scsi_ipending() (GET_5380_REG(NCR5380_DMSTAT) & SC_IRQ_SET)
#define scsi_dma_setup(r,p,m) scsi_tt_dmasetup(r, p, m)
#define wrong_dma_range(r,d) tt_wrong_dma_range(r, d)
#define poll_edma(reqp) tt_poll_edma(reqp)
#define get_dma_result(r, b) tt_get_dma_result(r, b)
#define can_access_5380() 1
#define emulated_dma() ((machineid & ATARI_HADES) ? 1 : 0)
#define fair_to_keep_dma() 1
#define claimed_dma() 1
#define reconsider_dma()
#endif /* defined(TT_SCSI) && !defined(FALCON_SCSI) */
#if defined(TT_SCSI)
/*
* Prototype functions defined below
*/
#ifdef NO_TTRAM_DMA
static int tt_wrong_dma_range(SC_REQ *, struct dma_chain *);
#endif
static void scsi_tt_init(struct ncr_softc *);
static uint8_t get_tt_5380_reg(u_short);
static void set_tt_5380_reg(u_short, u_short);
static void scsi_tt_dmasetup(SC_REQ *, u_int, uint8_t);
static int tt_poll_edma(SC_REQ *);
static uint8_t *ptov(SC_REQ *, u_long*);
static int tt_get_dma_result(SC_REQ *, u_long *);
void scsi_tt_ienable(void);
void scsi_tt_idisable(void);
void scsi_tt_clr_ipend(void);
/*
* Define these too, so we can use them locally...
*/
#define GET_TT_REG(rnum) SCSI_5380->scsi_5380[(rnum << 1) | 1]
#define SET_TT_REG(rnum,val) (SCSI_5380->scsi_5380[(rnum << 1) | 1] = val)
#ifdef NO_TTRAM_DMA
static int
tt_wrong_dma_range(SC_REQ *reqp, struct dma_chain *dm)
{
if (dm->dm_addr & 0xff000000) {
reqp->dr_flag |= DRIVER_BOUNCING;
return 1;
}
return 0;
}
#else
#define tt_wrong_dma_range(reqp, dm) 0
#endif
static void
scsi_tt_init(struct ncr_softc *sc)
{
/*
* Enable SCSI-related interrupts
*/
MFP2->mf_aer |= 0x80; /* SCSI IRQ goes HIGH!!!!! */
if (machineid & ATARI_TT) {
/* SCSI-DMA interrupts */
MFP2->mf_ierb |= IB_SCDM;
MFP2->mf_iprb = (uint8_t)~IB_SCDM;
MFP2->mf_imrb |= IB_SCDM;
} else if (machineid & ATARI_HADES) {
SCSI_DMA->s_hdma_ctrl = 0;
if (intr_establish(2, AUTO_VEC, 0,
(hw_ifun_t)ncr5380_drq_intr, NULL) == NULL)
panic("scsi_tt_init: Can't establish drq-interrupt");
} else
panic("scsi_tt_init: should not come here");
MFP2->mf_iera |= IA_SCSI; /* SCSI-5380 interrupts */
MFP2->mf_ipra = (uint8_t)~IA_SCSI;
MFP2->mf_imra |= IA_SCSI;
/*
* LWP: DMA transfers to TT-ram causes data to be garbled
* without notice on some TT-mainboard revisions.
* If programs generate mysterious Segmentations faults,
* try enabling NO_TTRAM_DMA.
*/
#ifdef NO_TTRAM_DMA
printf(": DMA to TT-RAM is disabled!");
#endif
}
static uint8_t
get_tt_5380_reg(u_short rnum)
{
return SCSI_5380->scsi_5380[(rnum << 1) | 1];
}
static void
set_tt_5380_reg(u_short rnum, u_short val)
{
SCSI_5380->scsi_5380[(rnum << 1) | 1] = val;
}
static inline void
scsi_tt_ienable(void)
{
if (machineid & ATARI_TT)
single_inst_bset_b(MFP2->mf_imrb, IB_SCDM);
single_inst_bset_b(MFP2->mf_imra, IA_SCSI);
}
static inline void
scsi_tt_idisable(void)
{
if (machineid & ATARI_TT)
single_inst_bclr_b(MFP2->mf_imrb, IB_SCDM);
single_inst_bclr_b(MFP2->mf_imra, IA_SCSI);
}
static inline void
scsi_tt_clr_ipend(void)
{
SCSI_DMA->s_dma_ctrl = 0;
GET_TT_REG(NCR5380_IRCV);
if (machineid & ATARI_TT)
MFP2->mf_iprb = (uint8_t)~IB_SCDM;
MFP2->mf_ipra = (uint8_t)~IA_SCSI;
/*
* Remove interrupts already scheduled.
*/
rem_sicallback((si_farg)ncr_ctrl_intr);
rem_sicallback((si_farg)ncr_dma_intr);
}
static void
scsi_tt_dmasetup(SC_REQ *reqp, u_int phase, uint8_t mode)
{
if (PH_IN(phase)) {
SCSI_DMA->s_dma_ctrl = SD_IN;
if (machineid & ATARI_HADES)
SCSI_DMA->s_hdma_ctrl &= ~(SDH_BUSERR|SDH_EOP);
set_scsi_dma(SCSI_DMA->s_dma_ptr, reqp->dm_cur->dm_addr);
set_scsi_dma(SCSI_DMA->s_dma_cnt, reqp->dm_cur->dm_count);
SET_TT_REG(NCR5380_ICOM, 0);
SET_TT_REG(NCR5380_MODE, mode);
SCSI_DMA->s_dma_ctrl = SD_ENABLE;
SET_TT_REG(NCR5380_IRCV, 0);
} else {
SCSI_DMA->s_dma_ctrl = SD_OUT;
if (machineid & ATARI_HADES)
SCSI_DMA->s_hdma_ctrl &= ~(SDH_BUSERR|SDH_EOP);
set_scsi_dma(SCSI_DMA->s_dma_ptr, reqp->dm_cur->dm_addr);
set_scsi_dma(SCSI_DMA->s_dma_cnt, reqp->dm_cur->dm_count);
SET_TT_REG(NCR5380_MODE, mode);
SET_TT_REG(NCR5380_ICOM, SC_ADTB);
SET_TT_REG(NCR5380_DMSTAT, 0);
SCSI_DMA->s_dma_ctrl = SD_ENABLE|SD_OUT;
}
}
static int
tt_poll_edma(SC_REQ *reqp)
{
uint8_t dmstat, dmastat;
int timeout = 9000; /* XXX */
/*
* We wait here until the DMA has finished. This can be
* achieved by checking the following conditions:
* - 5380:
* - End of DMA flag is set
* - We lost BSY (error!!)
* - A phase mismatch has occurred (partial transfer)
* - DMA-controller:
* - A bus error occurred (Kernel error!!)
* - All bytes are transferred
* If one of the terminating conditions was met, we call
* 'dma_ready' to check errors and perform the bookkeeping.
*/
scsi_tt_idisable();
for (;;) {
delay(20);
if (--timeout <= 0) {
ncr_tprint(reqp, "timeout on polled transfer\n");
reqp->xs->error = XS_TIMEOUT;
scsi_tt_ienable();
return 0;
}
dmstat = GET_TT_REG(NCR5380_DMSTAT);
if ((machineid & ATARI_HADES) && (dmstat & SC_DMA_REQ)) {
ncr5380_drq_intr(1);
dmstat = GET_TT_REG(NCR5380_DMSTAT);
}
dmastat = SCSI_DMA->s_dma_ctrl;
if (dmstat & (SC_END_DMA|SC_BSY_ERR|SC_IRQ_SET))
break;
if ((dmstat & SC_PHS_MTCH) == 0)
break;
if (dmastat & (SD_BUSERR|SD_ZERO))
break;
}
scsi_tt_ienable();
return 1;
}
/*
* Convert physical DMA address to a virtual address.
*/
static uint8_t *
ptov(SC_REQ *reqp, u_long *phaddr)
{
struct dma_chain *dm;
uint8_t *vaddr;
dm = reqp->dm_chain;
vaddr = reqp->xdata_ptr;
for (; dm < reqp->dm_cur; dm++)
vaddr += dm->dm_count;
vaddr += (u_long)phaddr - dm->dm_addr;
return vaddr;
}
static int
tt_get_dma_result(SC_REQ *reqp, u_long *bytes_left)
{
int dmastat, dmstat;
uint8_t *byte_p;
u_long leftover;
dmastat = SCSI_DMA->s_dma_ctrl;
dmstat = GET_TT_REG(NCR5380_DMSTAT);
leftover = get_scsi_dma(SCSI_DMA->s_dma_cnt);
byte_p = (uint8_t *)get_scsi_dma(SCSI_DMA->s_dma_ptr);
if (dmastat & SD_BUSERR) {
/*
* The DMA-controller seems to access 8 bytes beyond
* its limits on output. Therefore check also the byte
* count. If it's zero, ignore the bus error.
*/
if (leftover != 0) {
ncr_tprint(reqp,
"SCSI-DMA buserror - accessing 0x%x\n", byte_p);
reqp->xs->error = XS_DRIVER_STUFFUP;
}
}
/*
* We handle the following special condition below:
* -- The device disconnects in the middle of a write operation --
* In this case, the 5380 has already pre-fetched the next byte from
* the DMA-controller before the phase mismatch occurs. Therefore,
* leftover is 1 too low.
* This does not always happen! Therefore, we only do this when
* leftover is odd. This assumes that DMA transfers are _even_! This
* is normally the case on disks and types but might not always be.
* XXX: Check if ACK is consistently high on these occasions LWP
*/
if ((leftover & 1) &&
(dmstat & SC_PHS_MTCH) == 0 && PH_OUT(reqp->phase))
leftover++;
/*
* Check if there are some 'restbytes' left in the DMA-controller.
*/
if ((machineid & ATARI_TT) &&
((u_long)byte_p & 3) && PH_IN(reqp->phase)) {
uint8_t *p;
volatile uint8_t *q;
p = ptov(reqp, (u_long *)((u_long)byte_p & ~3));
q = SCSI_DMA->s_dma_res;
switch ((u_long)byte_p & 3) {
case 3: *p++ = *q++;
case 2: *p++ = *q++;
case 1: *p++ = *q++;
}
}
*bytes_left = leftover;
return (dmastat & (SD_BUSERR|SD_ZERO)) ? 1 : 0;
}
static uint8_t *dma_ptr;
void
ncr5380_drq_intr(int poll)
{
extern int *nofault;
label_t faultbuf;
int write;
u_long count;
volatile uint8_t *data_p = (volatile uint8_t *)(stio_addr + 0x741);
/*
* Block SCSI interrupts while emulating DMA. They come
* at a higher priority.
*/
single_inst_bclr_b(MFP2->mf_imra, IA_SCSI);
/*
* Setup for a possible bus error caused by SCSI controller
* switching out of DATA-IN/OUT before we're done with the
* current transfer.
*/
nofault = (int *)&faultbuf;
if (setjmp((label_t *) nofault)) {
u_long cnt, tmp;
PID("drq berr");
nofault = (int *)0;
/*
* Determine number of bytes transferred
*/
cnt = (u_long)dma_ptr - get_scsi_dma(SCSI_DMA->s_dma_ptr);
if (cnt != 0) {
/*
* Update the DMA pointer/count fields
*/
set_scsi_dma(SCSI_DMA->s_dma_ptr, (u_long)dma_ptr);
tmp = get_scsi_dma(SCSI_DMA->s_dma_cnt);
set_scsi_dma(SCSI_DMA->s_dma_cnt, tmp - cnt);
if (tmp > cnt) {
/*
* Still more to transfer
*/
if (!poll)
single_inst_bset_b(MFP2->mf_imra,
IA_SCSI);
return;
}
/*
* Signal EOP to 5380
*/
SCSI_DMA->s_hdma_ctrl |= SDH_EOP;
} else {
nofault = (int *)&faultbuf;
/*
* Try to figure out if the byte-count was
* zero because there was no (more) data or
* because the dma_ptr is bogus.
*/
if (setjmp((label_t *) nofault)) {
/*
* Set the bus-error bit
*/
SCSI_DMA->s_hdma_ctrl |= SDH_BUSERR;
}
__asm volatile ("tstb %0@(0)": : "a" (dma_ptr));
nofault = (int *)0;
}
/*
* Schedule an interrupt
*/
if (!poll && (SCSI_DMA->s_dma_ctrl & SD_ENABLE))
add_sicallback((si_farg)ncr_dma_intr,
(void *)cur_softc, 0);
/*
* Clear DMA-mode
*/
SCSI_DMA->s_dma_ctrl &= ~SD_ENABLE;
if (!poll)
single_inst_bset_b(MFP2->mf_imra, IA_SCSI);
return;
}
write = (SCSI_DMA->s_dma_ctrl & SD_OUT) ? 1 : 0;
#if DBG_PID
if (write) {
PID("drq (in)");
} else {
PID("drq (out)");
}
#endif
count = get_scsi_dma(SCSI_DMA->s_dma_cnt);
dma_ptr = (uint8_t *)get_scsi_dma(SCSI_DMA->s_dma_ptr);
/*
* Keep pushing bytes until we're done or a bus-error
* signals that the SCSI controller is not ready.
* NOTE: I tried some optimalizations in these loops,
* but they had no effect on transfer speed.
*/
if (write) {
while (count--) {
*data_p = *dma_ptr++;
}
} else {
while (count--) {
*dma_ptr++ = *data_p;
}
}
/*
* OK. No bus error occurred above. Clear the nofault flag
* so we no longer short-circuit bus errors.
*/
nofault = (int *)0;
/*
* Schedule an interrupt
*/
if (!poll && (SCSI_DMA->s_dma_ctrl & SD_ENABLE))
add_sicallback((si_farg)ncr_dma_intr, (void *)cur_softc, 0);
/*
* Clear DMA-mode
*/
SCSI_DMA->s_dma_ctrl &= ~SD_ENABLE;
/*
* Update the DMA 'registers' to reflect that all bytes
* have been transferred and tell this to the 5380 too.
*/
set_scsi_dma(SCSI_DMA->s_dma_ptr, (u_long)dma_ptr);
set_scsi_dma(SCSI_DMA->s_dma_cnt, 0);
SCSI_DMA->s_hdma_ctrl |= SDH_EOP;
PID("end drq");
if (!poll)
single_inst_bset_b(MFP2->mf_imra, IA_SCSI);
}
#endif /* defined(TT_SCSI) */
#if defined(FALCON_SCSI) && !defined(TT_SCSI)
#define GET_5380_REG(rnum) get_falcon_5380_reg(rnum)
#define SET_5380_REG(rnum,val) set_falcon_5380_reg(rnum, val)
#define scsi_mach_init(sc) scsi_falcon_init(sc)
#define scsi_ienable() scsi_falcon_ienable()
#define scsi_idisable() scsi_falcon_idisable()
#define scsi_clr_ipend() scsi_falcon_clr_ipend()
#define scsi_ipending() scsi_falcon_ipending()
#define scsi_dma_setup(r,p,m) scsi_falcon_dmasetup(r, p, m)
#define wrong_dma_range(r,d) falcon_wrong_dma_range(r, d)
#define poll_edma(reqp) falcon_poll_edma(reqp)
#define get_dma_result(r, b) falcon_get_dma_result(r, b)
#define can_access_5380() falcon_can_access_5380()
#define emulated_dma() 0
#define fair_to_keep_dma() (!st_dmawanted())
#define claimed_dma() falcon_claimed_dma()
#define reconsider_dma() falcon_reconsider_dma()
#endif /* defined(FALCON_SCSI) && !defined(TT_SCSI) */
#if defined(FALCON_SCSI)
/*
* Prototype functions defined below
*/
static void scsi_falcon_init(struct ncr_softc *);
static uint8_t get_falcon_5380_reg(u_short);
static void set_falcon_5380_reg(u_short, u_short);
static int falcon_wrong_dma_range(SC_REQ *, struct dma_chain *);
static void fal1_dma(u_int, u_int, SC_REQ *);
static void scsi_falcon_dmasetup(SC_REQ *, u_int, uint8_t);
static int falcon_poll_edma(SC_REQ *);
static int falcon_get_dma_result(SC_REQ *, u_long *);
int falcon_can_access_5380(void);
void scsi_falcon_clr_ipend(void);
void scsi_falcon_idisable(void);
void scsi_falcon_ienable(void);
int scsi_falcon_ipending(void);
int falcon_claimed_dma(void);
void falcon_reconsider_dma(void);
static void
scsi_falcon_init(struct ncr_softc *sc)
{
/*
* Enable disk related interrupts
*/
MFP->mf_ierb |= IB_DINT;
MFP->mf_iprb = (uint8_t)~IB_DINT;
MFP->mf_imrb |= IB_DINT;
}
static uint8_t
get_falcon_5380_reg(u_short rnum)
{
DMA->dma_mode = DMA_SCSI + rnum;
return DMA->dma_data;
}
static void
set_falcon_5380_reg(u_short rnum, u_short val)
{
DMA->dma_mode = DMA_SCSI + rnum;
DMA->dma_data = val;
}
static inline void
scsi_falcon_ienable(void)
{
single_inst_bset_b(MFP->mf_imrb, IB_DINT);
}
static inline void
scsi_falcon_idisable(void)
{
single_inst_bclr_b(MFP->mf_imrb, IB_DINT);
}
static inline void
scsi_falcon_clr_ipend(void)
{
(void)get_falcon_5380_reg(NCR5380_IRCV);
rem_sicallback((si_farg)ncr_ctrl_intr);
}
static inline int
scsi_falcon_ipending(void)
{
if (connected && (connected->dr_flag & DRIVER_IN_DMA)) {
/*
* XXX: When DMA is running, we are only allowed to
* check the 5380 when DMA _might_ be finished.
*/
if (MFP->mf_gpip & IO_DINT)
/* XXX: Actually: we're not allowed to check */
return 0;
/* LWP: 28-06, must be a DMA interrupt! should the
* ST-DMA unit be taken out of DMA mode?????
*/
DMA->dma_mode = 0x90;
}
return get_falcon_5380_reg(NCR5380_DMSTAT) & SC_IRQ_SET;
}
static int
falcon_wrong_dma_range(SC_REQ *reqp, struct dma_chain *dm)
{
/*
* Do not allow chains yet! See also comment with
* falcon_poll_edma() !!!
*/
if (((dm - reqp->dm_chain) > 0) || (dm->dm_addr & 0xff000000)) {
reqp->dr_flag |= DRIVER_BOUNCING;
return 1;
}
/*
* Never allow DMA to happen on a Falcon when the transfer
* size is no multiple of 512. This is the transfer unit of the
* ST DMA-controller.
*/
if (dm->dm_count & 511)
return 1;
return 0;
}
static int falcon_lock = 0;
static inline int
falcon_claimed_dma(void)
{
if (falcon_lock != DMA_LOCK_GRANT) {
if (falcon_lock == DMA_LOCK_REQ) {
/*
* DMA access is being claimed.
*/
return 0;
}
if (st_dmagrab((dma_farg)ncr_ctrl_intr, (dma_farg)run_main,
cur_softc, &falcon_lock, 1, NULL) == 0)
return 0;
}
return 1;
}
static inline void
falcon_reconsider_dma(void)
{
if (falcon_lock && (connected == NULL) && (discon_q == NULL)) {
/*
* No need to keep DMA locked by us as we are not currently
* connected and no disconnected jobs are pending.
*/
rem_sicallback((si_farg)ncr_ctrl_intr);
st_dmafree(cur_softc, &falcon_lock);
}
if (!falcon_lock && (issue_q != NULL)) {
/*
* We must (re)claim DMA access as there are jobs
* waiting in the issue queue.
*/
st_dmagrab((dma_farg)ncr_ctrl_intr, (dma_farg)run_main,
cur_softc, &falcon_lock, 0, NULL);
}
}
static void
fal1_dma(u_int dir, u_int nsects, SC_REQ *reqp)
{
dir <<= 8;
st_dmaaddr_set((void *)reqp->dm_cur->dm_addr);
DMA->dma_mode = 0x90 | dir;
DMA->dma_mode = 0x90 | (dir ^ DMA_WRBIT);
DMA->dma_mode = 0x90 | dir;
DMA->dma_data = nsects;
delay(2); /* _really_ needed (Thomas Gerner) */
DMA->dma_mode = 0x10 | dir;
}
static void
scsi_falcon_dmasetup(SC_REQ *reqp, u_int phase, uint8_t mode)
{
int nsects = reqp->dm_cur->dm_count / 512; /* XXX */
/*
* XXX: We should probably clear the fifo before putting the
* 5380 into DMA-mode.
*/
if (PH_IN(phase)) {
set_falcon_5380_reg(NCR5380_ICOM, 0);
set_falcon_5380_reg(NCR5380_MODE, mode);
set_falcon_5380_reg(NCR5380_IRCV, 0);
fal1_dma(0, nsects, reqp);
} else {
set_falcon_5380_reg(NCR5380_MODE, mode);
set_falcon_5380_reg(NCR5380_ICOM, SC_ADTB);
set_falcon_5380_reg(NCR5380_DMSTAT, 0);
fal1_dma(1, nsects, reqp);
}
}
static int
falcon_poll_edma(SC_REQ *reqp)
{
int timeout = 9000; /* XXX */
/*
* Because of the Falcon hardware, it is impossible to reach
* the 5380 while doing DMA-transfers. So we have to rely on
* the interrupt line to determine if DMA-has finished. the
* DMA-controller itself will never fire an interrupt. This means
* that 'broken-up' DMA transfers are not (yet) possible on the
* Falcon.
*/
for (;;) {
delay(20);
if (--timeout <= 0) {
ncr_tprint(reqp, "Timeout on polled transfer\n");
reqp->xs->error = XS_TIMEOUT;
return 0;
}
if ((MFP->mf_gpip & IO_DINT) == 0)
break;
}
return 1;
}
static int
falcon_get_dma_result(SC_REQ *reqp, u_long *bytes_left)
{
int rv = 0;
int st_dmastat;
u_long bytes_done;
/*
* Select sector counter register first (See Atari docu.)
*/
DMA->dma_mode = 0x90;
if (!(st_dmastat = DMA->dma_stat) & 0x01) {
/*
* Misc. DMA-error according to Atari...
*/
ncr_tprint(reqp, "Unknown ST-SCSI error near 0x%x\n",
st_dmaaddr_get());
reqp->xs->error = XS_DRIVER_STUFFUP;
rv = 1;
}
/*
* Because we NEVER start DMA on the Falcon when the data size
* is not a multiple of 512 bytes, we can safely round down the
* byte count on writes. We need to because in case of a disconnect,
* the DMA has already prefetched the next couple of bytes.
* On read, these byte counts are an error. They are logged and
* should be handled by the mi-part of the driver.
* NOTE: We formerly did this by using the 'byte-count-zero' bit
* of the DMA controller, but this didn't seem to work???
* [lwp 29/06/96]
*/
bytes_done = st_dmaaddr_get() - reqp->dm_cur->dm_addr;
if (bytes_done & 511) {
if (PH_IN(reqp->phase)) {
ncr_tprint(reqp, "Byte count on read not a multiple "
"of 512 (%ld)\n", bytes_done);
}
bytes_done &= ~511;
}
if ((*bytes_left = reqp->dm_cur->dm_count - bytes_done) == 0)
rv = 1;
return rv;
}
static int
falcon_can_access_5380(void)
{
if (connected && (connected->dr_flag & DRIVER_IN_DMA) &&
(MFP->mf_gpip & IO_DINT))
return 0;
return 1;
}
#endif /* defined(FALCON_SCSI) */
#if defined(TT_SCSI) && defined(FALCON_SCSI)
/*
* Define some functions to support _both_ TT and Falcon SCSI
*/
/*
* The prototypes first...
*/
static void scsi_mach_init(struct ncr_softc *);
void scsi_ienable(void);
void scsi_idisable(void);
void scsi_clr_ipend(void);
int scsi_ipending(void);
void scsi_dma_setup(SC_REQ *, u_int, uint8_t);
int wrong_dma_range(SC_REQ *, struct dma_chain *);
int poll_edma(SC_REQ *);
int get_dma_result(SC_REQ *, u_long *);
int can_access_5380(void);
/*
* Register access will be done through the following 2 function pointers.
*/
static uint8_t (*get_5380_reg)(u_short);
static void (*set_5380_reg)(u_short, u_short);
#define GET_5380_REG (*get_5380_reg)
#define SET_5380_REG (*set_5380_reg)
static void
scsi_mach_init(struct ncr_softc *sc)
{
if (machineid & ATARI_FALCON) {
get_5380_reg = get_falcon_5380_reg;
set_5380_reg = set_falcon_5380_reg;
scsi_falcon_init(sc);
} else {
get_5380_reg = get_tt_5380_reg;
set_5380_reg = set_tt_5380_reg;
scsi_tt_init(sc);
}
}
static inline void
scsi_ienable(void)
{
if (machineid & ATARI_FALCON)
scsi_falcon_ienable();
else
scsi_tt_ienable();
}
static inline void
scsi_idisable(void)
{
if (machineid & ATARI_FALCON)
scsi_falcon_idisable();
else
scsi_tt_idisable();
}
static inline void
scsi_clr_ipend(void)
{
if (machineid & ATARI_FALCON)
scsi_falcon_clr_ipend();
else
scsi_tt_clr_ipend();
}
static inline int
scsi_ipending(void)
{
if (machineid & ATARI_FALCON)
return scsi_falcon_ipending();
else
return GET_TT_REG(NCR5380_DMSTAT) & SC_IRQ_SET;
}
static inline void
scsi_dma_setup(SC_REQ *reqp, u_int phase, uint8_t mbase)
{
if (machineid & ATARI_FALCON)
scsi_falcon_dmasetup(reqp, phase, mbase);
else
scsi_tt_dmasetup(reqp, phase, mbase);
}
static inline int
wrong_dma_range(SC_REQ *reqp, struct dma_chain *dm)
{
if (machineid & ATARI_FALCON)
return falcon_wrong_dma_range(reqp, dm);
else
return tt_wrong_dma_range(reqp, dm);
}
static inline int
poll_edma(SC_REQ *reqp)
{
if (machineid & ATARI_FALCON)
return falcon_poll_edma(reqp);
else
return tt_poll_edma(reqp);
}
static inline int
get_dma_result(SC_REQ *reqp, u_long *bytes_left)
{
if (machineid & ATARI_FALCON)
return falcon_get_dma_result(reqp, bytes_left);
else
return tt_get_dma_result(reqp, bytes_left);
}
static inline int
can_access_5380(void)
{
if (machineid & ATARI_FALCON)
return falcon_can_access_5380();
return 1;
}
#define emulated_dma() ((machineid & ATARI_HADES) ? 1 : 0)
/*
* Locking stuff. All turns into NOP's on the TT.
*/
#define fair_to_keep_dma() \
((machineid & ATARI_FALCON) ? !st_dmawanted() : 1)
#define claimed_dma() \
((machineid & ATARI_FALCON) ? falcon_claimed_dma() : 1)
#define reconsider_dma() \
do { \
if (machineid & ATARI_FALCON) \
falcon_reconsider_dma(); \
} while (/* CONSTCOND */ 0)
#endif /* defined(TT_SCSI) && defined(FALCON_SCSI) */
/**********************************************
* Functions present for both TT and Falcon. *
**********************************************/
/*
* Our autoconfig matching function
*/
static int
machine_match(device_t parent, cfdata_t cf, void *aux, struct cfdriver *cd)
{
static int we_matched = 0; /* Only one unit */
if (strcmp(aux, cd->cd_name) || we_matched)
return 0;
we_matched = 1;
return 1;
}
/*
* Bounce buffer (de)allocation. Those buffers are gotten from the ST-mem
* pool. Allocation here is both contiguous and in the lower 16Mb of
* the address space. Thus being DMA-able for all controllers.
*/
static uint8_t *
alloc_bounceb(u_long len)
{
void *tmp;
return (uint8_t *)alloc_stmem(len, &tmp);
}
static void
free_bounceb(uint8_t *bounceb)
{
free_stmem(bounceb);
}
/*
* 5380 interrupt.
*/
void
scsi_ctrl(int sr)
{
if (GET_5380_REG(NCR5380_DMSTAT) & SC_IRQ_SET) {
scsi_idisable();
add_sicallback((si_farg)ncr_ctrl_intr, (void *)cur_softc, 0);
}
}
/*
* DMA controller interrupt
*/
void
scsi_dma(int sr)
{
SC_REQ *reqp;
if ((reqp = connected) && (reqp->dr_flag & DRIVER_IN_DMA)) {
scsi_idisable();
add_sicallback((si_farg)ncr_dma_intr, (void *)cur_softc, 0);
}
}
/*
* Last but not least... Include the general driver code
*/
#include <atari/dev/ncr5380.c>
|