1 // SPDX-License-Identifier: GPL-2.0
3 #include <linux/module.h>
6 #include <scsi/scsi_host.h>
9 #define MAXBOARDS_PARAM 4
10 static int io
[MAXBOARDS_PARAM
] = { 0, 0, 0, 0 };
11 module_param_hw_array(io
, int, ioport
, NULL
, 0);
12 MODULE_PARM_DESC(io
, "base I/O address of controller (0x140, 0x150, 0x160, 0x170)");
14 static int irq
[MAXBOARDS_PARAM
] = { 0, 0, 0, 0 };
15 module_param_hw_array(irq
, int, irq
, NULL
, 0);
16 MODULE_PARM_DESC(irq
, "IRQ of controller (0=auto [default])");
18 static int scsi_id
[MAXBOARDS_PARAM
] = { 0, 0, 0, 0 };
19 module_param_hw_array(scsi_id
, int, other
, NULL
, 0);
20 MODULE_PARM_DESC(scsi_id
, "SCSI ID of controller (default = 7)");
22 static unsigned long addresses
[] = {
28 #define ADDRESS_COUNT ARRAY_SIZE(addresses)
30 static unsigned short ports
[] = { 0x140, 0x150, 0x160, 0x170 };
31 #define PORT_COUNT ARRAY_SIZE(ports)
33 static unsigned short irqs
[] = { 3, 5, 10, 11, 12, 14, 15, 0 };
35 /* This driver works *ONLY* for Future Domain cards using the TMC-1800,
36 * TMC-18C50, or TMC-18C30 chip. This includes models TMC-1650, 1660, 1670,
37 * and 1680. These are all 16-bit cards.
38 * BIOS versions prior to 3.2 assigned SCSI ID 6 to SCSI adapter.
40 * The following BIOS signature signatures are for boards which do *NOT*
41 * work with this driver (these TMC-8xx and TMC-9xx boards may work with the
44 * FUTURE DOMAIN CORP. (C) 1986-1988 V4.0I 03/16/88
45 * FUTURE DOMAIN CORP. (C) 1986-1989 V5.0C2/14/89
46 * FUTURE DOMAIN CORP. (C) 1986-1989 V6.0A7/28/89
47 * FUTURE DOMAIN CORP. (C) 1986-1990 V6.0105/31/90
48 * FUTURE DOMAIN CORP. (C) 1986-1990 V6.0209/18/90
49 * FUTURE DOMAIN CORP. (C) 1986-1990 V7.009/18/90
50 * FUTURE DOMAIN CORP. (C) 1992 V8.00.004/02/92
52 * (The cards which do *NOT* work are all 8-bit cards -- although some of
53 * them have a 16-bit form-factor, the upper 8-bits are used only for IRQs
54 * and are *NOT* used for data. You can tell the difference by following
55 * the tracings on the circuit board -- if only the IRQ lines are involved,
56 * you have a "8-bit" card, and should *NOT* use this driver.)
59 static struct signature
{
60 const char *signature
;
67 /* 123456789012345678901234567890123456789012345678901234567890 */
68 { "FUTURE DOMAIN CORP. (C) 1986-1990 1800-V2.07/28/89", 5, 50, 6, 0x1fcc },
69 { "FUTURE DOMAIN CORP. (C) 1986-1990 1800-V1.07/28/89", 5, 50, 6, 0x1fcc },
70 { "FUTURE DOMAIN CORP. (C) 1986-1990 1800-V2.07/28/89", 72, 50, 6, 0x1fa2 },
71 { "FUTURE DOMAIN CORP. (C) 1986-1990 1800-V2.0", 73, 43, 6, 0x1fa2 },
72 { "FUTURE DOMAIN CORP. (C) 1991 1800-V2.0.", 72, 39, 6, 0x1fa3 },
73 { "FUTURE DOMAIN CORP. (C) 1992 V3.00.004/02/92", 5, 44, 6, 0 },
74 { "FUTURE DOMAIN TMC-18XX (C) 1993 V3.203/12/93", 5, 44, 7, 0 },
75 { "IBM F1 P2 BIOS v1.0011/09/92", 5, 28, 7, 0x1ff3 },
76 { "IBM F1 P2 BIOS v1.0104/29/93", 5, 28, 7, 0 },
77 { "Future Domain Corp. V1.0008/18/93", 5, 33, 7, 0 },
78 { "Future Domain Corp. V2.0108/18/93", 5, 33, 7, 0 },
79 { "FUTURE DOMAIN CORP. V3.5008/18/93", 5, 34, 7, 0 },
80 { "FUTURE DOMAIN 18c30/18c50/1800 (C) 1994 V3.5", 5, 44, 7, 0 },
81 { "FUTURE DOMAIN CORP. V3.6008/18/93", 5, 34, 7, 0 },
82 { "FUTURE DOMAIN CORP. V3.6108/18/93", 5, 34, 7, 0 },
84 #define SIGNATURE_COUNT ARRAY_SIZE(signatures)
86 static int fdomain_isa_match(struct device
*dev
, unsigned int ndev
)
89 int i
, base
= 0, irq
= 0;
90 unsigned long bios_base
= 0;
91 struct signature
*sig
= NULL
;
93 static struct signature
*saved_sig
;
96 if (ndev
< ADDRESS_COUNT
) { /* scan supported ISA BIOS addresses */
97 p
= ioremap(addresses
[ndev
], FDOMAIN_BIOS_SIZE
);
100 for (i
= 0; i
< SIGNATURE_COUNT
; i
++)
101 if (check_signature(p
+ signatures
[i
].offset
,
102 signatures
[i
].signature
,
103 signatures
[i
].length
))
105 if (i
== SIGNATURE_COUNT
) /* no signature found */
107 sig
= &signatures
[i
];
108 bios_base
= addresses
[ndev
];
109 /* read I/O base from BIOS area */
110 if (sig
->base_offset
)
111 base
= readb(p
+ sig
->base_offset
) +
112 (readb(p
+ sig
->base_offset
+ 1) << 8);
115 dev_info(dev
, "BIOS at 0x%lx specifies I/O base 0x%x\n",
117 } else { /* no I/O base in BIOS area */
118 dev_info(dev
, "BIOS at 0x%lx\n", bios_base
);
119 /* save BIOS signature for later use in port probing */
123 } else /* scan supported I/O ports */
124 base
= ports
[ndev
- ADDRESS_COUNT
];
126 /* use saved BIOS signature if present */
127 if (!sig
&& saved_sig
)
130 if (!request_region(base
, FDOMAIN_REGION_SIZE
, "fdomain_isa"))
133 irq
= irqs
[(inb(base
+ REG_CFG1
) & CFG1_IRQ_MASK
) >> 1];
136 this_id
= sig
->this_id
;
138 sh
= fdomain_create(base
, irq
, this_id
, dev
);
140 release_region(base
, FDOMAIN_REGION_SIZE
);
144 dev_set_drvdata(dev
, sh
);
151 static int fdomain_isa_param_match(struct device
*dev
, unsigned int ndev
)
153 struct Scsi_Host
*sh
;
154 int irq_
= irq
[ndev
];
159 if (!request_region(io
[ndev
], FDOMAIN_REGION_SIZE
, "fdomain_isa")) {
160 dev_err(dev
, "base 0x%x already in use", io
[ndev
]);
165 irq_
= irqs
[(inb(io
[ndev
] + REG_CFG1
) & CFG1_IRQ_MASK
) >> 1];
167 sh
= fdomain_create(io
[ndev
], irq_
, scsi_id
[ndev
], dev
);
169 dev_err(dev
, "controller not found at base 0x%x", io
[ndev
]);
170 release_region(io
[ndev
], FDOMAIN_REGION_SIZE
);
174 dev_set_drvdata(dev
, sh
);
178 static int fdomain_isa_remove(struct device
*dev
, unsigned int ndev
)
180 struct Scsi_Host
*sh
= dev_get_drvdata(dev
);
181 int base
= sh
->io_port
;
184 release_region(base
, FDOMAIN_REGION_SIZE
);
185 dev_set_drvdata(dev
, NULL
);
189 static struct isa_driver fdomain_isa_driver
= {
190 .match
= fdomain_isa_match
,
191 .remove
= fdomain_isa_remove
,
193 .name
= "fdomain_isa",
194 .pm
= FDOMAIN_PM_OPS
,
198 static int __init
fdomain_isa_init(void)
200 int isa_probe_count
= ADDRESS_COUNT
+ PORT_COUNT
;
202 if (io
[0]) { /* use module parameters if present */
203 fdomain_isa_driver
.match
= fdomain_isa_param_match
;
204 isa_probe_count
= MAXBOARDS_PARAM
;
207 return isa_register_driver(&fdomain_isa_driver
, isa_probe_count
);
210 static void __exit
fdomain_isa_exit(void)
212 isa_unregister_driver(&fdomain_isa_driver
);
215 module_init(fdomain_isa_init
);
216 module_exit(fdomain_isa_exit
);
218 MODULE_AUTHOR("Ondrej Zary, Rickard E. Faith");
219 MODULE_DESCRIPTION("Future Domain TMC-16x0 ISA SCSI driver");
220 MODULE_LICENSE("GPL");