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#include <linux/module.h>
270#include <linux/init.h>
271#include <linux/interrupt.h>
272#include <linux/blkdev.h>
273#include <linux/spinlock.h>
274#include <linux/errno.h>
275#include <linux/string.h>
276#include <linux/ioport.h>
277#include <linux/proc_fs.h>
278#include <linux/pci.h>
279#include <linux/stat.h>
280#include <linux/delay.h>
281#include <linux/io.h>
282#include <linux/slab.h>
283#include <scsi/scsicam.h>
284
285#include <asm/system.h>
286
287#include <scsi/scsi.h>
288#include <scsi/scsi_cmnd.h>
289#include <scsi/scsi_device.h>
290#include <scsi/scsi_host.h>
291#include <scsi/scsi_ioctl.h>
292#include "fdomain.h"
293
294#ifndef PCMCIA
295MODULE_AUTHOR("Rickard E. Faith");
296MODULE_DESCRIPTION("Future domain SCSI driver");
297MODULE_LICENSE("GPL");
298#endif
299
300
301#define VERSION "$Revision: 5.51 $"
302
303
304
305#define DEBUG 0
306#define ENABLE_PARITY 1
307#define FIFO_COUNT 2
308
309
310
311#if DEBUG
312#define EVERY_ACCESS 0
313#define ERRORS_ONLY 1
314#define DEBUG_DETECT 0
315#define DEBUG_MESSAGES 1
316#define DEBUG_ABORT 1
317#define DEBUG_RESET 1
318#define DEBUG_RACE 1
319#else
320#define EVERY_ACCESS 0
321#define ERRORS_ONLY 0
322#define DEBUG_DETECT 0
323#define DEBUG_MESSAGES 0
324#define DEBUG_ABORT 0
325#define DEBUG_RESET 0
326#define DEBUG_RACE 0
327#endif
328
329
330#if EVERY_ACCESS
331#undef ERRORS_ONLY
332#define ERRORS_ONLY 0
333#endif
334
335#if ENABLE_PARITY
336#define PARITY_MASK 0x08
337#else
338#define PARITY_MASK 0x00
339#endif
340
341enum chip_type {
342 unknown = 0x00,
343 tmc1800 = 0x01,
344 tmc18c50 = 0x02,
345 tmc18c30 = 0x03,
346};
347
348enum {
349 in_arbitration = 0x02,
350 in_selection = 0x04,
351 in_other = 0x08,
352 disconnect = 0x10,
353 aborted = 0x20,
354 sent_ident = 0x40,
355};
356
357enum in_port_type {
358 Read_SCSI_Data = 0,
359 SCSI_Status = 1,
360 TMC_Status = 2,
361 FIFO_Status = 3,
362 Interrupt_Cond = 4,
363 LSB_ID_Code = 5,
364 MSB_ID_Code = 6,
365 Read_Loopback = 7,
366 SCSI_Data_NoACK = 8,
367 Interrupt_Status = 9,
368 Configuration1 = 10,
369 Configuration2 = 11,
370 Read_FIFO = 12,
371 FIFO_Data_Count = 14
372};
373
374enum out_port_type {
375 Write_SCSI_Data = 0,
376 SCSI_Cntl = 1,
377 Interrupt_Cntl = 2,
378 SCSI_Mode_Cntl = 3,
379 TMC_Cntl = 4,
380 Memory_Cntl = 5,
381 Write_Loopback = 7,
382 IO_Control = 11,
383 Write_FIFO = 12
384};
385
386
387static int port_base;
388static unsigned long bios_base;
389static void __iomem * bios_mem;
390static int bios_major;
391static int bios_minor;
392static int PCI_bus;
393#ifdef CONFIG_PCI
394static struct pci_dev *PCI_dev;
395#endif
396static int Quantum;
397static int interrupt_level;
398static volatile int in_command;
399static struct scsi_cmnd *current_SC;
400static enum chip_type chip = unknown;
401static int adapter_mask;
402static int this_id;
403static int setup_called;
404
405#if DEBUG_RACE
406static volatile int in_interrupt_flag;
407#endif
408
409static int FIFO_Size = 0x2000;
410
411
412static irqreturn_t do_fdomain_16x0_intr( int irq, void *dev_id );
413
414
415static char * fdomain = NULL;
416module_param(fdomain, charp, 0);
417
418#ifndef PCMCIA
419
420static unsigned long addresses[] = {
421 0xc8000,
422 0xca000,
423 0xce000,
424 0xde000,
425 0xcc000,
426 0xd0000,
427 0xe0000,
428};
429#define ADDRESS_COUNT ARRAY_SIZE(addresses)
430
431static unsigned short ports[] = { 0x140, 0x150, 0x160, 0x170 };
432#define PORT_COUNT ARRAY_SIZE(ports)
433
434static unsigned short ints[] = { 3, 5, 10, 11, 12, 14, 15, 0 };
435
436#endif
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#ifndef PCMCIA
471
472static struct signature {
473 const char *signature;
474 int sig_offset;
475 int sig_length;
476 int major_bios_version;
477 int minor_bios_version;
478 int flag;
479} signatures[] = {
480
481
482 { "FUTURE DOMAIN CORP. (C) 1986-1990 1800-V2.07/28/89", 5, 50, 2, 0, 0 },
483 { "FUTURE DOMAIN CORP. (C) 1986-1990 1800-V1.07/28/89", 5, 50, 2, 0, 0 },
484 { "FUTURE DOMAIN CORP. (C) 1986-1990 1800-V2.07/28/89", 72, 50, 2, 0, 2 },
485 { "FUTURE DOMAIN CORP. (C) 1986-1990 1800-V2.0", 73, 43, 2, 0, 3 },
486 { "FUTURE DOMAIN CORP. (C) 1991 1800-V2.0.", 72, 39, 2, 0, 4 },
487 { "FUTURE DOMAIN CORP. (C) 1992 V3.00.004/02/92", 5, 44, 3, 0, 0 },
488 { "FUTURE DOMAIN TMC-18XX (C) 1993 V3.203/12/93", 5, 44, 3, 2, 0 },
489 { "IBM F1 P2 BIOS v1.0104/29/93", 5, 28, 3, -1, 0 },
490 { "Future Domain Corp. V1.0008/18/93", 5, 33, 3, 4, 0 },
491 { "Future Domain Corp. V1.0008/18/93", 26, 33, 3, 4, 1 },
492 { "Adaptec AHA-2920 PCI-SCSI Card", 42, 31, 3, -1, 1 },
493 { "IBM F1 P264/32", 5, 14, 3, -1, 1 },
494
495 { "Future Domain Corp. V2.0108/18/93", 5, 33, 3, 5, 0 },
496 { "FUTURE DOMAIN CORP. V3.5008/18/93", 5, 34, 3, 5, 0 },
497 { "FUTURE DOMAIN 18c30/18c50/1800 (C) 1994 V3.5", 5, 44, 3, 5, 0 },
498 { "FUTURE DOMAIN CORP. V3.6008/18/93", 5, 34, 3, 6, 0 },
499 { "FUTURE DOMAIN CORP. V3.6108/18/93", 5, 34, 3, 6, 0 },
500 { "FUTURE DOMAIN TMC-18XX", 5, 22, -1, -1, 0 },
501
502
503
504
505
506
507
508
509
510
511
512
513};
514
515#define SIGNATURE_COUNT ARRAY_SIZE(signatures)
516
517#endif
518
519static void print_banner( struct Scsi_Host *shpnt )
520{
521 if (!shpnt) return;
522
523 if (bios_major < 0 && bios_minor < 0) {
524 printk(KERN_INFO "scsi%d: <fdomain> No BIOS; using scsi id %d\n",
525 shpnt->host_no, shpnt->this_id);
526 } else {
527 printk(KERN_INFO "scsi%d: <fdomain> BIOS version ", shpnt->host_no);
528
529 if (bios_major >= 0) printk("%d.", bios_major);
530 else printk("?.");
531
532 if (bios_minor >= 0) printk("%d", bios_minor);
533 else printk("?.");
534
535 printk( " at 0x%lx using scsi id %d\n",
536 bios_base, shpnt->this_id );
537 }
538
539
540
541
542
543 printk(KERN_INFO "scsi%d: <fdomain> %s chip at 0x%x irq ",
544 shpnt->host_no,
545 chip == tmc1800 ? "TMC-1800" : (chip == tmc18c50 ? "TMC-18C50" : (chip == tmc18c30 ? (PCI_bus ? "TMC-36C70 (PCI bus)" : "TMC-18C30") : "Unknown")),
546 port_base);
547
548 if (interrupt_level)
549 printk("%d", interrupt_level);
550 else
551 printk("<none>");
552
553 printk( "\n" );
554}
555
556int fdomain_setup(char *str)
557{
558 int ints[4];
559
560 (void)get_options(str, ARRAY_SIZE(ints), ints);
561
562 if (setup_called++ || ints[0] < 2 || ints[0] > 3) {
563 printk(KERN_INFO "scsi: <fdomain> Usage: fdomain=<PORT_BASE>,<IRQ>[,<ADAPTER_ID>]\n");
564 printk(KERN_ERR "scsi: <fdomain> Bad LILO/INSMOD parameters?\n");
565 return 0;
566 }
567
568 port_base = ints[0] >= 1 ? ints[1] : 0;
569 interrupt_level = ints[0] >= 2 ? ints[2] : 0;
570 this_id = ints[0] >= 3 ? ints[3] : 0;
571
572 bios_major = bios_minor = -1;
573 ++setup_called;
574 return 1;
575}
576
577__setup("fdomain=", fdomain_setup);
578
579
580static void do_pause(unsigned amount)
581{
582 mdelay(10*amount);
583}
584
585static inline void fdomain_make_bus_idle( void )
586{
587 outb(0, port_base + SCSI_Cntl);
588 outb(0, port_base + SCSI_Mode_Cntl);
589 if (chip == tmc18c50 || chip == tmc18c30)
590 outb(0x21 | PARITY_MASK, port_base + TMC_Cntl);
591 else
592 outb(0x01 | PARITY_MASK, port_base + TMC_Cntl);
593}
594
595static int fdomain_is_valid_port( int port )
596{
597#if DEBUG_DETECT
598 printk( " (%x%x),",
599 inb( port + MSB_ID_Code ), inb( port + LSB_ID_Code ) );
600#endif
601
602
603
604
605
606
607
608 if (inb( port + LSB_ID_Code ) != 0xe9) {
609 if (inb( port + LSB_ID_Code ) != 0x27) return 0;
610 if (inb( port + MSB_ID_Code ) != 0x61) return 0;
611 chip = tmc1800;
612 } else {
613 if (inb( port + MSB_ID_Code ) != 0x60) return 0;
614 chip = tmc18c50;
615
616
617
618
619
620
621 outb( 0x80, port + IO_Control );
622 if ((inb( port + Configuration2 ) & 0x80) == 0x80) {
623 outb( 0x00, port + IO_Control );
624 if ((inb( port + Configuration2 ) & 0x80) == 0x00) {
625 chip = tmc18c30;
626 FIFO_Size = 0x800;
627 }
628 }
629
630 }
631
632 return 1;
633}
634
635static int fdomain_test_loopback( void )
636{
637 int i;
638 int result;
639
640 for (i = 0; i < 255; i++) {
641 outb( i, port_base + Write_Loopback );
642 result = inb( port_base + Read_Loopback );
643 if (i != result)
644 return 1;
645 }
646 return 0;
647}
648
649#ifndef PCMCIA
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665static int fdomain_get_irq( int base )
666{
667 int options = inb(base + Configuration1);
668
669#if DEBUG_DETECT
670 printk("scsi: <fdomain> Options = %x\n", options);
671#endif
672
673
674
675
676
677
678 if (chip != tmc18c30 && !PCI_bus && addresses[(options & 0xc0) >> 6 ] != bios_base)
679 return 0;
680 return ints[(options & 0x0e) >> 1];
681}
682
683static int fdomain_isa_detect( int *irq, int *iobase )
684{
685 int i, j;
686 int base = 0xdeadbeef;
687 int flag = 0;
688
689#if DEBUG_DETECT
690 printk( "scsi: <fdomain> fdomain_isa_detect:" );
691#endif
692
693 for (i = 0; i < ADDRESS_COUNT; i++) {
694 void __iomem *p = ioremap(addresses[i], 0x2000);
695 if (!p)
696 continue;
697#if DEBUG_DETECT
698 printk( " %lx(%lx),", addresses[i], bios_base );
699#endif
700 for (j = 0; j < SIGNATURE_COUNT; j++) {
701 if (check_signature(p + signatures[j].sig_offset,
702 signatures[j].signature,
703 signatures[j].sig_length )) {
704 bios_major = signatures[j].major_bios_version;
705 bios_minor = signatures[j].minor_bios_version;
706 PCI_bus = (signatures[j].flag == 1);
707 Quantum = (signatures[j].flag > 1) ? signatures[j].flag : 0;
708 bios_base = addresses[i];
709 bios_mem = p;
710 goto found;
711 }
712 }
713 iounmap(p);
714 }
715
716found:
717 if (bios_major == 2) {
718
719
720
721
722
723
724
725
726 switch (Quantum) {
727 case 2:
728 case 3:
729 base = readb(bios_mem + 0x1fa2) + (readb(bios_mem + 0x1fa3) << 8);
730 break;
731 case 4:
732 base = readb(bios_mem + 0x1fa3) + (readb(bios_mem + 0x1fa4) << 8);
733 break;
734 default:
735 base = readb(bios_mem + 0x1fcc) + (readb(bios_mem + 0x1fcd) << 8);
736 break;
737 }
738
739#if DEBUG_DETECT
740 printk( " %x,", base );
741#endif
742
743 for (i = 0; i < PORT_COUNT; i++) {
744 if (base == ports[i]) {
745 if (!request_region(base, 0x10, "fdomain"))
746 break;
747 if (!fdomain_is_valid_port(base)) {
748 release_region(base, 0x10);
749 break;
750 }
751 *irq = fdomain_get_irq( base );
752 *iobase = base;
753 return 1;
754 }
755 }
756
757
758
759
760
761#if DEBUG_DETECT
762 printk( " RAM FAILED, " );
763#endif
764 }
765
766
767
768
769
770
771
772
773
774
775 for (i = 0; i < PORT_COUNT; i++) {
776 base = ports[i];
777 if (!request_region(base, 0x10, "fdomain")) {
778#if DEBUG_DETECT
779 printk( " (%x inuse),", base );
780#endif
781 continue;
782 }
783#if DEBUG_DETECT
784 printk( " %x,", base );
785#endif
786 flag = fdomain_is_valid_port(base);
787 if (flag)
788 break;
789 release_region(base, 0x10);
790 }
791
792#if DEBUG_DETECT
793 if (flag) printk( " SUCCESS\n" );
794 else printk( " FAILURE\n" );
795#endif
796
797 if (!flag) return 0;
798
799 *irq = fdomain_get_irq( base );
800 *iobase = base;
801
802 return 1;
803}
804
805#else
806
807static int fdomain_isa_detect( int *irq, int *iobase )
808{
809 if (irq)
810 *irq = 0;
811 if (iobase)
812 *iobase = 0;
813 return 0;
814}
815
816#endif
817
818
819
820
821
822
823#ifdef CONFIG_PCI
824static int fdomain_pci_bios_detect( int *irq, int *iobase, struct pci_dev **ret_pdev )
825{
826 unsigned int pci_irq;
827 unsigned long pci_base;
828 struct pci_dev *pdev = NULL;
829
830#if DEBUG_DETECT
831
832
833
834 printk( "scsi: <fdomain> INFO: use lspci -v to see list of PCI devices\n" );
835 printk( "scsi: <fdomain> TMC-3260 detect:"
836 " Using Vendor ID: 0x%x and Device ID: 0x%x\n",
837 PCI_VENDOR_ID_FD,
838 PCI_DEVICE_ID_FD_36C70 );
839#endif
840
841 if ((pdev = pci_get_device(PCI_VENDOR_ID_FD, PCI_DEVICE_ID_FD_36C70, pdev)) == NULL)
842 return 0;
843 if (pci_enable_device(pdev))
844 goto fail;
845
846#if DEBUG_DETECT
847 printk( "scsi: <fdomain> TMC-3260 detect:"
848 " PCI bus %u, device %u, function %u\n",
849 pdev->bus->number,
850 PCI_SLOT(pdev->devfn),
851 PCI_FUNC(pdev->devfn));
852#endif
853
854
855
856
857 pci_base = pci_resource_start(pdev, 0);
858 pci_irq = pdev->irq;
859
860 if (!request_region( pci_base, 0x10, "fdomain" ))
861 goto fail;
862
863
864
865
866 *irq = pci_irq;
867 *iobase = pci_base;
868 *ret_pdev = pdev;
869
870#if DEBUG_DETECT
871 printk( "scsi: <fdomain> TMC-3260 detect:"
872 " IRQ = %d, I/O base = 0x%x [0x%lx]\n", *irq, *iobase, pci_base );
873#endif
874
875 if (!fdomain_is_valid_port(pci_base)) {
876 printk(KERN_ERR "scsi: <fdomain> PCI card detected, but driver not loaded (invalid port)\n" );
877 release_region(pci_base, 0x10);
878 goto fail;
879 }
880
881
882 bios_major = bios_minor = -1;
883 PCI_bus = 1;
884 PCI_dev = pdev;
885 Quantum = 0;
886 bios_base = 0;
887
888 return 1;
889fail:
890 pci_dev_put(pdev);
891 return 0;
892}
893
894#endif
895
896struct Scsi_Host *__fdomain_16x0_detect(struct scsi_host_template *tpnt )
897{
898 int retcode;
899 struct Scsi_Host *shpnt;
900 struct pci_dev *pdev = NULL;
901
902 if (setup_called) {
903#if DEBUG_DETECT
904 printk( "scsi: <fdomain> No BIOS, using port_base = 0x%x, irq = %d\n",
905 port_base, interrupt_level );
906#endif
907 if (!request_region(port_base, 0x10, "fdomain")) {
908 printk( "scsi: <fdomain> port 0x%x is busy\n", port_base );
909 printk( "scsi: <fdomain> Bad LILO/INSMOD parameters?\n" );
910 return NULL;
911 }
912 if (!fdomain_is_valid_port( port_base )) {
913 printk( "scsi: <fdomain> Cannot locate chip at port base 0x%x\n",
914 port_base );
915 printk( "scsi: <fdomain> Bad LILO/INSMOD parameters?\n" );
916 release_region(port_base, 0x10);
917 return NULL;
918 }
919 } else {
920 int flag = 0;
921
922#ifdef CONFIG_PCI
923
924 flag = fdomain_pci_bios_detect( &interrupt_level, &port_base, &pdev );
925#endif
926 if (!flag) {
927
928 flag = fdomain_isa_detect( &interrupt_level, &port_base );
929
930 if (!flag) {
931 printk( "scsi: <fdomain> Detection failed (no card)\n" );
932 return NULL;
933 }
934 }
935 }
936
937 fdomain_16x0_bus_reset(NULL);
938
939 if (fdomain_test_loopback()) {
940 printk(KERN_ERR "scsi: <fdomain> Detection failed (loopback test failed at port base 0x%x)\n", port_base);
941 if (setup_called) {
942 printk(KERN_ERR "scsi: <fdomain> Bad LILO/INSMOD parameters?\n");
943 }
944 goto fail;
945 }
946
947 if (this_id) {
948 tpnt->this_id = (this_id & 0x07);
949 adapter_mask = (1 << tpnt->this_id);
950 } else {
951 if (PCI_bus || (bios_major == 3 && bios_minor >= 2) || bios_major < 0) {
952 tpnt->this_id = 7;
953 adapter_mask = 0x80;
954 } else {
955 tpnt->this_id = 6;
956 adapter_mask = 0x40;
957 }
958 }
959
960
961
962
963 shpnt = scsi_register( tpnt, 0 );
964 if(shpnt == NULL) {
965 release_region(port_base, 0x10);
966 return NULL;
967 }
968 shpnt->irq = interrupt_level;
969 shpnt->io_port = port_base;
970 shpnt->n_io_port = 0x10;
971 print_banner( shpnt );
972
973
974 if (!interrupt_level) {
975 printk(KERN_ERR "scsi: <fdomain> Card Detected, but driver not loaded (no IRQ)\n" );
976 goto fail;
977 } else {
978
979
980 retcode = request_irq( interrupt_level,
981 do_fdomain_16x0_intr, pdev?IRQF_SHARED:0, "fdomain", shpnt);
982
983 if (retcode < 0) {
984 if (retcode == -EINVAL) {
985 printk(KERN_ERR "scsi: <fdomain> IRQ %d is bad!\n", interrupt_level );
986 printk(KERN_ERR " This shouldn't happen!\n" );
987 printk(KERN_ERR " Send mail to faith@acm.org\n" );
988 } else if (retcode == -EBUSY) {
989 printk(KERN_ERR "scsi: <fdomain> IRQ %d is already in use!\n", interrupt_level );
990 printk(KERN_ERR " Please use another IRQ!\n" );
991 } else {
992 printk(KERN_ERR "scsi: <fdomain> Error getting IRQ %d\n", interrupt_level );
993 printk(KERN_ERR " This shouldn't happen!\n" );
994 printk(KERN_ERR " Send mail to faith@acm.org\n" );
995 }
996 printk(KERN_ERR "scsi: <fdomain> Detected, but driver not loaded (IRQ)\n" );
997 goto fail;
998 }
999 }
1000 return shpnt;
1001fail:
1002 pci_dev_put(pdev);
1003 release_region(port_base, 0x10);
1004 return NULL;
1005}
1006
1007static int fdomain_16x0_detect(struct scsi_host_template *tpnt)
1008{
1009 if (fdomain)
1010 fdomain_setup(fdomain);
1011 return (__fdomain_16x0_detect(tpnt) != NULL);
1012}
1013
1014static const char *fdomain_16x0_info( struct Scsi_Host *ignore )
1015{
1016 static char buffer[128];
1017 char *pt;
1018
1019 strcpy( buffer, "Future Domain 16-bit SCSI Driver Version" );
1020 if (strchr( VERSION, ':')) {
1021 strcat( buffer, strchr( VERSION, ':' ) + 1 );
1022 pt = strrchr( buffer, '$') - 1;
1023 if (!pt)
1024 pt = buffer + strlen( buffer ) - 1;
1025 if (*pt != ' ')
1026 ++pt;
1027 *pt = '\0';
1028 } else {
1029 strcat( buffer, " " VERSION );
1030 }
1031
1032 return buffer;
1033}
1034
1035#if 0
1036static int fdomain_arbitrate( void )
1037{
1038 int status = 0;
1039 unsigned long timeout;
1040
1041#if EVERY_ACCESS
1042 printk( "fdomain_arbitrate()\n" );
1043#endif
1044
1045 outb(0x00, port_base + SCSI_Cntl);
1046 outb(adapter_mask, port_base + SCSI_Data_NoACK);
1047 outb(0x04 | PARITY_MASK, port_base + TMC_Cntl);
1048
1049 timeout = 500;
1050 do {
1051 status = inb(port_base + TMC_Status);
1052 if (status & 0x02)
1053 return 0;
1054 mdelay(1);
1055 } while (--timeout);
1056
1057
1058 fdomain_make_bus_idle();
1059
1060#if EVERY_ACCESS
1061 printk( "Arbitration failed, status = %x\n", status );
1062#endif
1063#if ERRORS_ONLY
1064 printk( "scsi: <fdomain> Arbitration failed, status = %x\n", status );
1065#endif
1066 return 1;
1067}
1068#endif
1069
1070static int fdomain_select( int target )
1071{
1072 int status;
1073 unsigned long timeout;
1074#if ERRORS_ONLY
1075 static int flag = 0;
1076#endif
1077
1078 outb(0x82, port_base + SCSI_Cntl);
1079 outb(adapter_mask | (1 << target), port_base + SCSI_Data_NoACK);
1080
1081
1082 outb(PARITY_MASK, port_base + TMC_Cntl);
1083
1084 timeout = 350;
1085
1086 do {
1087 status = inb(port_base + SCSI_Status);
1088 if (status & 1) {
1089
1090 outb(0x80, port_base + SCSI_Cntl);
1091 return 0;
1092 }
1093 mdelay(1);
1094 } while (--timeout);
1095
1096 fdomain_make_bus_idle();
1097#if EVERY_ACCESS
1098 if (!target) printk( "Selection failed\n" );
1099#endif
1100#if ERRORS_ONLY
1101 if (!target) {
1102 if (!flag)
1103 ++flag;
1104 else
1105 printk( "scsi: <fdomain> Selection failed\n" );
1106 }
1107#endif
1108 return 1;
1109}
1110
1111static void my_done(int error)
1112{
1113 if (in_command) {
1114 in_command = 0;
1115 outb(0x00, port_base + Interrupt_Cntl);
1116 fdomain_make_bus_idle();
1117 current_SC->result = error;
1118 if (current_SC->scsi_done)
1119 current_SC->scsi_done( current_SC );
1120 else panic( "scsi: <fdomain> current_SC->scsi_done() == NULL" );
1121 } else {
1122 panic( "scsi: <fdomain> my_done() called outside of command\n" );
1123 }
1124#if DEBUG_RACE
1125 in_interrupt_flag = 0;
1126#endif
1127}
1128
1129static irqreturn_t do_fdomain_16x0_intr(int irq, void *dev_id)
1130{
1131 unsigned long flags;
1132 int status;
1133 int done = 0;
1134 unsigned data_count;
1135
1136
1137
1138
1139
1140
1141
1142
1143 if ((inb(port_base + TMC_Status) & 0x01) == 0)
1144 return IRQ_NONE;
1145
1146
1147 outb(0x00, port_base + Interrupt_Cntl);
1148
1149
1150 if (!in_command || !current_SC) {
1151#if EVERY_ACCESS
1152 printk( "Spurious interrupt, in_command = %d, current_SC = %x\n",
1153 in_command, current_SC );
1154#endif
1155 return IRQ_NONE;
1156 }
1157
1158
1159 if (current_SC->SCp.phase & aborted) {
1160#if DEBUG_ABORT
1161 printk( "scsi: <fdomain> Interrupt after abort, ignoring\n" );
1162#endif
1163
1164
1165 }
1166
1167#if DEBUG_RACE
1168 ++in_interrupt_flag;
1169#endif
1170
1171 if (current_SC->SCp.phase & in_arbitration) {
1172 status = inb(port_base + TMC_Status);
1173 if (!(status & 0x02)) {
1174#if EVERY_ACCESS
1175 printk( " AFAIL " );
1176#endif
1177 spin_lock_irqsave(current_SC->device->host->host_lock, flags);
1178 my_done( DID_BUS_BUSY << 16 );
1179 spin_unlock_irqrestore(current_SC->device->host->host_lock, flags);
1180 return IRQ_HANDLED;
1181 }
1182 current_SC->SCp.phase = in_selection;
1183
1184 outb(0x40 | FIFO_COUNT, port_base + Interrupt_Cntl);
1185
1186 outb(0x82, port_base + SCSI_Cntl);
1187 outb(adapter_mask | (1 << scmd_id(current_SC)), port_base + SCSI_Data_NoACK);
1188
1189
1190 outb(0x10 | PARITY_MASK, port_base + TMC_Cntl);
1191#if DEBUG_RACE
1192 in_interrupt_flag = 0;
1193#endif
1194 return IRQ_HANDLED;
1195 } else if (current_SC->SCp.phase & in_selection) {
1196 status = inb(port_base + SCSI_Status);
1197 if (!(status & 0x01)) {
1198
1199 if (fdomain_select( scmd_id(current_SC) )) {
1200#if EVERY_ACCESS
1201 printk( " SFAIL " );
1202#endif
1203 spin_lock_irqsave(current_SC->device->host->host_lock, flags);
1204 my_done( DID_NO_CONNECT << 16 );
1205 spin_unlock_irqrestore(current_SC->device->host->host_lock, flags);
1206 return IRQ_HANDLED;
1207 } else {
1208#if EVERY_ACCESS
1209 printk( " AltSel " );
1210#endif
1211
1212 outb(0x10 | PARITY_MASK, port_base + TMC_Cntl);
1213 }
1214 }
1215 current_SC->SCp.phase = in_other;
1216 outb(0x90 | FIFO_COUNT, port_base + Interrupt_Cntl);
1217 outb(0x80, port_base + SCSI_Cntl);
1218#if DEBUG_RACE
1219 in_interrupt_flag = 0;
1220#endif
1221 return IRQ_HANDLED;
1222 }
1223
1224
1225
1226 status = inb(port_base + SCSI_Status);
1227
1228 if (status & 0x10) {
1229
1230 switch (status & 0x0e) {
1231
1232 case 0x08:
1233 outb(current_SC->cmnd[current_SC->SCp.sent_command++],
1234 port_base + Write_SCSI_Data);
1235#if EVERY_ACCESS
1236 printk( "CMD = %x,",
1237 current_SC->cmnd[ current_SC->SCp.sent_command - 1] );
1238#endif
1239 break;
1240 case 0x00:
1241 if (chip != tmc1800 && !current_SC->SCp.have_data_in) {
1242 current_SC->SCp.have_data_in = -1;
1243 outb(0xd0 | PARITY_MASK, port_base + TMC_Cntl);
1244 }
1245 break;
1246 case 0x04:
1247 if (chip != tmc1800 && !current_SC->SCp.have_data_in) {
1248 current_SC->SCp.have_data_in = 1;
1249 outb(0x90 | PARITY_MASK, port_base + TMC_Cntl);
1250 }
1251 break;
1252 case 0x0c:
1253 current_SC->SCp.Status = inb(port_base + Read_SCSI_Data);
1254#if EVERY_ACCESS
1255 printk( "Status = %x, ", current_SC->SCp.Status );
1256#endif
1257#if ERRORS_ONLY
1258 if (current_SC->SCp.Status
1259 && current_SC->SCp.Status != 2
1260 && current_SC->SCp.Status != 8) {
1261 printk( "scsi: <fdomain> target = %d, command = %x, status = %x\n",
1262 current_SC->device->id,
1263 current_SC->cmnd[0],
1264 current_SC->SCp.Status );
1265 }
1266#endif
1267 break;
1268 case 0x0a:
1269 outb(MESSAGE_REJECT, port_base + Write_SCSI_Data);
1270 break;
1271 case 0x0e:
1272 current_SC->SCp.Message = inb(port_base + Read_SCSI_Data);
1273#if EVERY_ACCESS
1274 printk( "Message = %x, ", current_SC->SCp.Message );
1275#endif
1276 if (!current_SC->SCp.Message) ++done;
1277#if DEBUG_MESSAGES || EVERY_ACCESS
1278 if (current_SC->SCp.Message) {
1279 printk( "scsi: <fdomain> message = %x\n",
1280 current_SC->SCp.Message );
1281 }
1282#endif
1283 break;
1284 }
1285 }
1286
1287 if (chip == tmc1800 && !current_SC->SCp.have_data_in
1288 && (current_SC->SCp.sent_command >= current_SC->cmd_len)) {
1289
1290 if(current_SC->sc_data_direction == DMA_TO_DEVICE)
1291 {
1292 current_SC->SCp.have_data_in = -1;
1293 outb(0xd0 | PARITY_MASK, port_base + TMC_Cntl);
1294 }
1295 else
1296 {
1297 current_SC->SCp.have_data_in = 1;
1298 outb(0x90 | PARITY_MASK, port_base + TMC_Cntl);
1299 }
1300 }
1301
1302 if (current_SC->SCp.have_data_in == -1) {
1303 while ((data_count = FIFO_Size - inw(port_base + FIFO_Data_Count)) > 512) {
1304#if EVERY_ACCESS
1305 printk( "DC=%d, ", data_count ) ;
1306#endif
1307 if (data_count > current_SC->SCp.this_residual)
1308 data_count = current_SC->SCp.this_residual;
1309 if (data_count > 0) {
1310#if EVERY_ACCESS
1311 printk( "%d OUT, ", data_count );
1312#endif
1313 if (data_count == 1) {
1314 outb(*current_SC->SCp.ptr++, port_base + Write_FIFO);
1315 --current_SC->SCp.this_residual;
1316 } else {
1317 data_count >>= 1;
1318 outsw(port_base + Write_FIFO, current_SC->SCp.ptr, data_count);
1319 current_SC->SCp.ptr += 2 * data_count;
1320 current_SC->SCp.this_residual -= 2 * data_count;
1321 }
1322 }
1323 if (!current_SC->SCp.this_residual) {
1324 if (current_SC->SCp.buffers_residual) {
1325 --current_SC->SCp.buffers_residual;
1326 ++current_SC->SCp.buffer;
1327 current_SC->SCp.ptr = sg_virt(current_SC->SCp.buffer);
1328 current_SC->SCp.this_residual = current_SC->SCp.buffer->length;
1329 } else
1330 break;
1331 }
1332 }
1333 }
1334
1335 if (current_SC->SCp.have_data_in == 1) {
1336 while ((data_count = inw(port_base + FIFO_Data_Count)) > 0) {
1337#if EVERY_ACCESS
1338 printk( "DC=%d, ", data_count );
1339#endif
1340 if (data_count > current_SC->SCp.this_residual)
1341 data_count = current_SC->SCp.this_residual;
1342 if (data_count) {
1343#if EVERY_ACCESS
1344 printk( "%d IN, ", data_count );
1345#endif
1346 if (data_count == 1) {
1347 *current_SC->SCp.ptr++ = inb(port_base + Read_FIFO);
1348 --current_SC->SCp.this_residual;
1349 } else {
1350 data_count >>= 1;
1351 insw(port_base + Read_FIFO, current_SC->SCp.ptr, data_count);
1352 current_SC->SCp.ptr += 2 * data_count;
1353 current_SC->SCp.this_residual -= 2 * data_count;
1354 }
1355 }
1356 if (!current_SC->SCp.this_residual
1357 && current_SC->SCp.buffers_residual) {
1358 --current_SC->SCp.buffers_residual;
1359 ++current_SC->SCp.buffer;
1360 current_SC->SCp.ptr = sg_virt(current_SC->SCp.buffer);
1361 current_SC->SCp.this_residual = current_SC->SCp.buffer->length;
1362 }
1363 }
1364 }
1365
1366 if (done) {
1367#if EVERY_ACCESS
1368 printk( " ** IN DONE %d ** ", current_SC->SCp.have_data_in );
1369#endif
1370
1371#if ERRORS_ONLY
1372 if (current_SC->cmnd[0] == REQUEST_SENSE && !current_SC->SCp.Status) {
1373 char *buf = scsi_sglist(current_SC);
1374 if ((unsigned char)(*(buf + 2)) & 0x0f) {
1375 unsigned char key;
1376 unsigned char code;
1377 unsigned char qualifier;
1378
1379 key = (unsigned char)(*(buf + 2)) & 0x0f;
1380 code = (unsigned char)(*(buf + 12));
1381 qualifier = (unsigned char)(*(buf + 13));
1382
1383 if (key != UNIT_ATTENTION
1384 && !(key == NOT_READY
1385 && code == 0x04
1386 && (!qualifier || qualifier == 0x02 || qualifier == 0x01))
1387 && !(key == ILLEGAL_REQUEST && (code == 0x25
1388 || code == 0x24
1389 || !code)))
1390
1391 printk( "scsi: <fdomain> REQUEST SENSE"
1392 " Key = %x, Code = %x, Qualifier = %x\n",
1393 key, code, qualifier );
1394 }
1395 }
1396#endif
1397#if EVERY_ACCESS
1398 printk( "BEFORE MY_DONE. . ." );
1399#endif
1400 spin_lock_irqsave(current_SC->device->host->host_lock, flags);
1401 my_done( (current_SC->SCp.Status & 0xff)
1402 | ((current_SC->SCp.Message & 0xff) << 8) | (DID_OK << 16) );
1403 spin_unlock_irqrestore(current_SC->device->host->host_lock, flags);
1404#if EVERY_ACCESS
1405 printk( "RETURNING.\n" );
1406#endif
1407
1408 } else {
1409 if (current_SC->SCp.phase & disconnect) {
1410 outb(0xd0 | FIFO_COUNT, port_base + Interrupt_Cntl);
1411 outb(0x00, port_base + SCSI_Cntl);
1412 } else {
1413 outb(0x90 | FIFO_COUNT, port_base + Interrupt_Cntl);
1414 }
1415 }
1416#if DEBUG_RACE
1417 in_interrupt_flag = 0;
1418#endif
1419 return IRQ_HANDLED;
1420}
1421
1422static int fdomain_16x0_queue_lck(struct scsi_cmnd *SCpnt,
1423 void (*done)(struct scsi_cmnd *))
1424{
1425 if (in_command) {
1426 panic( "scsi: <fdomain> fdomain_16x0_queue() NOT REENTRANT!\n" );
1427 }
1428#if EVERY_ACCESS
1429 printk( "queue: target = %d cmnd = 0x%02x pieces = %d size = %u\n",
1430 SCpnt->target,
1431 *(unsigned char *)SCpnt->cmnd,
1432 scsi_sg_count(SCpnt),
1433 scsi_bufflen(SCpnt));
1434#endif
1435
1436 fdomain_make_bus_idle();
1437
1438 current_SC = SCpnt;
1439 current_SC->scsi_done = done;
1440
1441
1442
1443 if (scsi_sg_count(current_SC)) {
1444 current_SC->SCp.buffer = scsi_sglist(current_SC);
1445 current_SC->SCp.ptr = sg_virt(current_SC->SCp.buffer);
1446 current_SC->SCp.this_residual = current_SC->SCp.buffer->length;
1447 current_SC->SCp.buffers_residual = scsi_sg_count(current_SC) - 1;
1448 } else {
1449 current_SC->SCp.ptr = NULL;
1450 current_SC->SCp.this_residual = 0;
1451 current_SC->SCp.buffer = NULL;
1452 current_SC->SCp.buffers_residual = 0;
1453 }
1454
1455 current_SC->SCp.Status = 0;
1456 current_SC->SCp.Message = 0;
1457 current_SC->SCp.have_data_in = 0;
1458 current_SC->SCp.sent_command = 0;
1459 current_SC->SCp.phase = in_arbitration;
1460
1461
1462 outb(0x00, port_base + Interrupt_Cntl);
1463 outb(0x00, port_base + SCSI_Cntl);
1464 outb(adapter_mask, port_base + SCSI_Data_NoACK);
1465 ++in_command;
1466 outb(0x20, port_base + Interrupt_Cntl);
1467 outb(0x14 | PARITY_MASK, port_base + TMC_Cntl);
1468
1469 return 0;
1470}
1471
1472static DEF_SCSI_QCMD(fdomain_16x0_queue)
1473
1474#if DEBUG_ABORT
1475static void print_info(struct scsi_cmnd *SCpnt)
1476{
1477 unsigned int imr;
1478 unsigned int irr;
1479 unsigned int isr;
1480
1481 if (!SCpnt || !SCpnt->device || !SCpnt->device->host) {
1482 printk(KERN_WARNING "scsi: <fdomain> Cannot provide detailed information\n");
1483 return;
1484 }
1485
1486 printk(KERN_INFO "%s\n", fdomain_16x0_info( SCpnt->device->host ) );
1487 print_banner(SCpnt->device->host);
1488 switch (SCpnt->SCp.phase) {
1489 case in_arbitration: printk("arbitration"); break;
1490 case in_selection: printk("selection"); break;
1491 case in_other: printk("other"); break;
1492 default: printk("unknown"); break;
1493 }
1494
1495 printk( " (%d), target = %d cmnd = 0x%02x pieces = %d size = %u\n",
1496 SCpnt->SCp.phase,
1497 SCpnt->device->id,
1498 *(unsigned char *)SCpnt->cmnd,
1499 scsi_sg_count(SCpnt),
1500 scsi_bufflen(SCpnt));
1501 printk( "sent_command = %d, have_data_in = %d, timeout = %d\n",
1502 SCpnt->SCp.sent_command,
1503 SCpnt->SCp.have_data_in,
1504 SCpnt->timeout );
1505#if DEBUG_RACE
1506 printk( "in_interrupt_flag = %d\n", in_interrupt_flag );
1507#endif
1508
1509 imr = (inb( 0x0a1 ) << 8) + inb( 0x21 );
1510 outb( 0x0a, 0xa0 );
1511 irr = inb( 0xa0 ) << 8;
1512 outb( 0x0a, 0x20 );
1513 irr += inb( 0x20 );
1514 outb( 0x0b, 0xa0 );
1515 isr = inb( 0xa0 ) << 8;
1516 outb( 0x0b, 0x20 );
1517 isr += inb( 0x20 );
1518
1519
1520 printk( "IMR = 0x%04x", imr );
1521 if (imr & (1 << interrupt_level))
1522 printk( " (masked)" );
1523 printk( ", IRR = 0x%04x, ISR = 0x%04x\n", irr, isr );
1524
1525 printk( "SCSI Status = 0x%02x\n", inb(port_base + SCSI_Status));
1526 printk( "TMC Status = 0x%02x", inb(port_base + TMC_Status));
1527 if (inb((port_base + TMC_Status) & 1))
1528 printk( " (interrupt)" );
1529 printk( "\n" );
1530 printk("Interrupt Status = 0x%02x", inb(port_base + Interrupt_Status));
1531 if (inb(port_base + Interrupt_Status) & 0x08)
1532 printk( " (enabled)" );
1533 printk( "\n" );
1534 if (chip == tmc18c50 || chip == tmc18c30) {
1535 printk("FIFO Status = 0x%02x\n", inb(port_base + FIFO_Status));
1536 printk( "Int. Condition = 0x%02x\n",
1537 inb( port_base + Interrupt_Cond ) );
1538 }
1539 printk( "Configuration 1 = 0x%02x\n", inb( port_base + Configuration1 ) );
1540 if (chip == tmc18c50 || chip == tmc18c30)
1541 printk( "Configuration 2 = 0x%02x\n",
1542 inb( port_base + Configuration2 ) );
1543}
1544#endif
1545
1546static int fdomain_16x0_abort(struct scsi_cmnd *SCpnt)
1547{
1548#if EVERY_ACCESS || ERRORS_ONLY || DEBUG_ABORT
1549 printk( "scsi: <fdomain> abort " );
1550#endif
1551
1552 if (!in_command) {
1553#if EVERY_ACCESS || ERRORS_ONLY
1554 printk( " (not in command)\n" );
1555#endif
1556 return FAILED;
1557 } else printk( "\n" );
1558
1559#if DEBUG_ABORT
1560 print_info( SCpnt );
1561#endif
1562
1563 fdomain_make_bus_idle();
1564 current_SC->SCp.phase |= aborted;
1565 current_SC->result = DID_ABORT << 16;
1566
1567
1568 my_done(DID_ABORT << 16);
1569 return SUCCESS;
1570}
1571
1572int fdomain_16x0_bus_reset(struct scsi_cmnd *SCpnt)
1573{
1574 unsigned long flags;
1575
1576 local_irq_save(flags);
1577
1578 outb(1, port_base + SCSI_Cntl);
1579 do_pause( 2 );
1580 outb(0, port_base + SCSI_Cntl);
1581 do_pause( 115 );
1582 outb(0, port_base + SCSI_Mode_Cntl);
1583 outb(PARITY_MASK, port_base + TMC_Cntl);
1584
1585 local_irq_restore(flags);
1586 return SUCCESS;
1587}
1588
1589static int fdomain_16x0_biosparam(struct scsi_device *sdev,
1590 struct block_device *bdev,
1591 sector_t capacity, int *info_array)
1592{
1593 int drive;
1594 int size = capacity;
1595 unsigned long offset;
1596 struct drive_info {
1597 unsigned short cylinders;
1598 unsigned char heads;
1599 unsigned char sectors;
1600 } i;
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645 if (MAJOR(bdev->bd_dev) != SCSI_DISK0_MAJOR) {
1646 printk("scsi: <fdomain> fdomain_16x0_biosparam: too many disks");
1647 return 0;
1648 }
1649 drive = MINOR(bdev->bd_dev) >> 4;
1650
1651 if (bios_major == 2) {
1652 switch (Quantum) {
1653 case 2:
1654
1655
1656 offset = 0x1f33 + drive * 25;
1657 break;
1658 case 3:
1659 offset = 0x1f36 + drive * 15;
1660 break;
1661 case 4:
1662 offset = 0x1f34 + drive * 15;
1663 break;
1664 default:
1665 offset = 0x1f31 + drive * 25;
1666 break;
1667 }
1668 memcpy_fromio( &i, bios_mem + offset, sizeof( struct drive_info ) );
1669 info_array[0] = i.heads;
1670 info_array[1] = i.sectors;
1671 info_array[2] = i.cylinders;
1672 } else if (bios_major == 3
1673 && bios_minor >= 0
1674 && bios_minor < 4) {
1675 memcpy_fromio( &i, bios_mem + 0x1f71 + drive * 10,
1676 sizeof( struct drive_info ) );
1677 info_array[0] = i.heads + 1;
1678 info_array[1] = i.sectors;
1679 info_array[2] = i.cylinders;
1680 } else {
1681
1682 unsigned char *p = scsi_bios_ptable(bdev);
1683
1684 if (p && p[65] == 0xaa && p[64] == 0x55
1685 && p[4]) {
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716 info_array[0] = p[5] + 1;
1717 info_array[1] = p[6] & 0x3f;
1718 } else {
1719
1720
1721
1722
1723
1724 if ((unsigned int)size >= 0x7e0000U) {
1725 info_array[0] = 0xff;
1726 info_array[1] = 0x3f;
1727 } else if ((unsigned int)size >= 0x200000U) {
1728 info_array[0] = 0x80;
1729 info_array[1] = 0x3f;
1730 } else {
1731 info_array[0] = 0x40;
1732 info_array[1] = 0x20;
1733 }
1734 }
1735
1736 info_array[2] = (unsigned int)size / (info_array[0] * info_array[1] );
1737 kfree(p);
1738 }
1739
1740 return 0;
1741}
1742
1743static int fdomain_16x0_release(struct Scsi_Host *shpnt)
1744{
1745 if (shpnt->irq)
1746 free_irq(shpnt->irq, shpnt);
1747 if (shpnt->io_port && shpnt->n_io_port)
1748 release_region(shpnt->io_port, shpnt->n_io_port);
1749 if (PCI_bus)
1750 pci_dev_put(PCI_dev);
1751 return 0;
1752}
1753
1754struct scsi_host_template fdomain_driver_template = {
1755 .module = THIS_MODULE,
1756 .name = "fdomain",
1757 .proc_name = "fdomain",
1758 .detect = fdomain_16x0_detect,
1759 .info = fdomain_16x0_info,
1760 .queuecommand = fdomain_16x0_queue,
1761 .eh_abort_handler = fdomain_16x0_abort,
1762 .eh_bus_reset_handler = fdomain_16x0_bus_reset,
1763 .bios_param = fdomain_16x0_biosparam,
1764 .release = fdomain_16x0_release,
1765 .can_queue = 1,
1766 .this_id = 6,
1767 .sg_tablesize = 64,
1768 .cmd_per_lun = 1,
1769 .use_clustering = DISABLE_CLUSTERING,
1770};
1771
1772#ifndef PCMCIA
1773#ifdef CONFIG_PCI
1774
1775static struct pci_device_id fdomain_pci_tbl[] __devinitdata = {
1776 { PCI_VENDOR_ID_FD, PCI_DEVICE_ID_FD_36C70,
1777 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0UL },
1778 { }
1779};
1780MODULE_DEVICE_TABLE(pci, fdomain_pci_tbl);
1781#endif
1782#define driver_template fdomain_driver_template
1783#include "scsi_module.c"
1784
1785#endif
1786