]>
Commit | Line | Data |
---|---|---|
669a5db4 JG |
1 | /* |
2 | * pata_qdi.c - QDI VLB ATA controllers | |
3 | * (C) 2006 Red Hat <[email protected]> | |
4 | * | |
5 | * This driver mostly exists as a proof of concept for non PCI devices under | |
6 | * libata. While the QDI6580 was 'neat' in 1993 it is no longer terribly | |
7 | * useful. | |
8 | * | |
9 | * Tuning code written from the documentation at | |
10 | * http://www.ryston.cz/petr/vlb/qd6500.html | |
11 | * http://www.ryston.cz/petr/vlb/qd6580.html | |
12 | * | |
13 | * Probe code based on drivers/ide/legacy/qd65xx.c | |
14 | * Rewritten from the work of Colten Edwards <[email protected]> by | |
15 | * Samuel Thibault <[email protected]> | |
16 | */ | |
17 | ||
18 | #include <linux/kernel.h> | |
19 | #include <linux/module.h> | |
20 | #include <linux/pci.h> | |
21 | #include <linux/init.h> | |
22 | #include <linux/blkdev.h> | |
23 | #include <linux/delay.h> | |
24 | #include <scsi/scsi_host.h> | |
25 | #include <linux/libata.h> | |
26 | #include <linux/platform_device.h> | |
27 | ||
28 | #define DRV_NAME "pata_qdi" | |
8bc3fc47 | 29 | #define DRV_VERSION "0.3.1" |
669a5db4 JG |
30 | |
31 | #define NR_HOST 4 /* Two 6580s */ | |
32 | ||
33 | struct qdi_data { | |
34 | unsigned long timing; | |
35 | u8 clock[2]; | |
36 | u8 last; | |
37 | int fast; | |
38 | struct platform_device *platform_dev; | |
85cd7251 | 39 | |
669a5db4 JG |
40 | }; |
41 | ||
42 | static struct ata_host *qdi_host[NR_HOST]; | |
43 | static struct qdi_data qdi_data[NR_HOST]; | |
44 | static int nr_qdi_host; | |
45 | ||
46 | #ifdef MODULE | |
47 | static int probe_qdi = 1; | |
48 | #else | |
49 | static int probe_qdi; | |
50 | #endif | |
51 | ||
52 | static void qdi6500_set_piomode(struct ata_port *ap, struct ata_device *adev) | |
53 | { | |
54 | struct ata_timing t; | |
55 | struct qdi_data *qdi = ap->host->private_data; | |
56 | int active, recovery; | |
57 | u8 timing; | |
58 | ||
59 | /* Get the timing data in cycles */ | |
60 | ata_timing_compute(adev, adev->pio_mode, &t, 30303, 1000); | |
85cd7251 | 61 | |
669a5db4 JG |
62 | if (qdi->fast) { |
63 | active = 8 - FIT(t.active, 1, 8); | |
64 | recovery = 18 - FIT(t.recover, 3, 18); | |
65 | } else { | |
66 | active = 9 - FIT(t.active, 2, 9); | |
67 | recovery = 15 - FIT(t.recover, 0, 15); | |
68 | } | |
69 | timing = (recovery << 4) | active | 0x08; | |
85cd7251 | 70 | |
669a5db4 JG |
71 | qdi->clock[adev->devno] = timing; |
72 | ||
85cd7251 | 73 | outb(timing, qdi->timing); |
669a5db4 JG |
74 | } |
75 | ||
76 | static void qdi6580_set_piomode(struct ata_port *ap, struct ata_device *adev) | |
77 | { | |
78 | struct ata_timing t; | |
79 | struct qdi_data *qdi = ap->host->private_data; | |
80 | int active, recovery; | |
81 | u8 timing; | |
82 | ||
83 | /* Get the timing data in cycles */ | |
84 | ata_timing_compute(adev, adev->pio_mode, &t, 30303, 1000); | |
85cd7251 | 85 | |
669a5db4 JG |
86 | if (qdi->fast) { |
87 | active = 8 - FIT(t.active, 1, 8); | |
88 | recovery = 18 - FIT(t.recover, 3, 18); | |
89 | } else { | |
90 | active = 9 - FIT(t.active, 2, 9); | |
91 | recovery = 15 - FIT(t.recover, 0, 15); | |
92 | } | |
93 | timing = (recovery << 4) | active | 0x08; | |
85cd7251 | 94 | |
669a5db4 JG |
95 | qdi->clock[adev->devno] = timing; |
96 | ||
97 | outb(timing, qdi->timing); | |
85cd7251 | 98 | |
669a5db4 JG |
99 | /* Clear the FIFO */ |
100 | if (adev->class != ATA_DEV_ATA) | |
101 | outb(0x5F, (qdi->timing & 0xFFF0) + 3); | |
102 | } | |
103 | ||
104 | /** | |
105 | * qdi_qc_issue_prot - command issue | |
106 | * @qc: command pending | |
107 | * | |
108 | * Called when the libata layer is about to issue a command. We wrap | |
109 | * this interface so that we can load the correct ATA timings. | |
110 | */ | |
111 | ||
112 | static unsigned int qdi_qc_issue_prot(struct ata_queued_cmd *qc) | |
113 | { | |
114 | struct ata_port *ap = qc->ap; | |
115 | struct ata_device *adev = qc->dev; | |
116 | struct qdi_data *qdi = ap->host->private_data; | |
117 | ||
118 | if (qdi->clock[adev->devno] != qdi->last) { | |
119 | if (adev->pio_mode) { | |
120 | qdi->last = qdi->clock[adev->devno]; | |
121 | outb(qdi->clock[adev->devno], qdi->timing); | |
122 | } | |
123 | } | |
124 | return ata_qc_issue_prot(qc); | |
125 | } | |
126 | ||
127 | static void qdi_data_xfer(struct ata_device *adev, unsigned char *buf, unsigned int buflen, int write_data) | |
128 | { | |
129 | struct ata_port *ap = adev->ap; | |
130 | int slop = buflen & 3; | |
85cd7251 | 131 | |
669a5db4 JG |
132 | if (ata_id_has_dword_io(adev->id)) { |
133 | if (write_data) | |
0d5ff566 | 134 | iowrite32_rep(ap->ioaddr.data_addr, buf, buflen >> 2); |
669a5db4 | 135 | else |
0d5ff566 | 136 | ioread32_rep(ap->ioaddr.data_addr, buf, buflen >> 2); |
85cd7251 | 137 | |
669a5db4 JG |
138 | if (unlikely(slop)) { |
139 | u32 pad; | |
140 | if (write_data) { | |
141 | memcpy(&pad, buf + buflen - slop, slop); | |
0d5ff566 TH |
142 | pad = le32_to_cpu(pad); |
143 | iowrite32(pad, ap->ioaddr.data_addr); | |
669a5db4 | 144 | } else { |
0d5ff566 TH |
145 | pad = ioread32(ap->ioaddr.data_addr); |
146 | pad = cpu_to_le32(pad); | |
669a5db4 JG |
147 | memcpy(buf + buflen - slop, &pad, slop); |
148 | } | |
149 | } | |
150 | } else | |
0d5ff566 | 151 | ata_data_xfer(adev, buf, buflen, write_data); |
669a5db4 JG |
152 | } |
153 | ||
154 | static struct scsi_host_template qdi_sht = { | |
155 | .module = THIS_MODULE, | |
156 | .name = DRV_NAME, | |
157 | .ioctl = ata_scsi_ioctl, | |
158 | .queuecommand = ata_scsi_queuecmd, | |
159 | .can_queue = ATA_DEF_QUEUE, | |
160 | .this_id = ATA_SHT_THIS_ID, | |
161 | .sg_tablesize = LIBATA_MAX_PRD, | |
669a5db4 JG |
162 | .cmd_per_lun = ATA_SHT_CMD_PER_LUN, |
163 | .emulated = ATA_SHT_EMULATED, | |
164 | .use_clustering = ATA_SHT_USE_CLUSTERING, | |
165 | .proc_name = DRV_NAME, | |
166 | .dma_boundary = ATA_DMA_BOUNDARY, | |
167 | .slave_configure = ata_scsi_slave_config, | |
afdfe899 | 168 | .slave_destroy = ata_scsi_slave_destroy, |
669a5db4 JG |
169 | .bios_param = ata_std_bios_param, |
170 | }; | |
171 | ||
172 | static struct ata_port_operations qdi6500_port_ops = { | |
173 | .port_disable = ata_port_disable, | |
174 | .set_piomode = qdi6500_set_piomode, | |
175 | ||
176 | .tf_load = ata_tf_load, | |
177 | .tf_read = ata_tf_read, | |
178 | .check_status = ata_check_status, | |
179 | .exec_command = ata_exec_command, | |
180 | .dev_select = ata_std_dev_select, | |
181 | ||
182 | .freeze = ata_bmdma_freeze, | |
183 | .thaw = ata_bmdma_thaw, | |
184 | .error_handler = ata_bmdma_error_handler, | |
185 | .post_internal_cmd = ata_bmdma_post_internal_cmd, | |
3be40d76 | 186 | .cable_detect = ata_cable_40wire, |
85cd7251 | 187 | |
669a5db4 JG |
188 | .qc_prep = ata_qc_prep, |
189 | .qc_issue = qdi_qc_issue_prot, | |
bda30288 | 190 | |
669a5db4 JG |
191 | .data_xfer = qdi_data_xfer, |
192 | ||
669a5db4 | 193 | .irq_clear = ata_bmdma_irq_clear, |
246ce3b6 AI |
194 | .irq_on = ata_irq_on, |
195 | .irq_ack = ata_irq_ack, | |
85cd7251 | 196 | |
669a5db4 | 197 | .port_start = ata_port_start, |
85cd7251 | 198 | }; |
669a5db4 JG |
199 | |
200 | static struct ata_port_operations qdi6580_port_ops = { | |
201 | .port_disable = ata_port_disable, | |
202 | .set_piomode = qdi6580_set_piomode, | |
203 | ||
204 | .tf_load = ata_tf_load, | |
205 | .tf_read = ata_tf_read, | |
206 | .check_status = ata_check_status, | |
207 | .exec_command = ata_exec_command, | |
208 | .dev_select = ata_std_dev_select, | |
209 | ||
210 | .freeze = ata_bmdma_freeze, | |
211 | .thaw = ata_bmdma_thaw, | |
212 | .error_handler = ata_bmdma_error_handler, | |
213 | .post_internal_cmd = ata_bmdma_post_internal_cmd, | |
3be40d76 | 214 | .cable_detect = ata_cable_40wire, |
85cd7251 | 215 | |
669a5db4 JG |
216 | .qc_prep = ata_qc_prep, |
217 | .qc_issue = qdi_qc_issue_prot, | |
bda30288 | 218 | |
669a5db4 JG |
219 | .data_xfer = qdi_data_xfer, |
220 | ||
669a5db4 | 221 | .irq_clear = ata_bmdma_irq_clear, |
246ce3b6 AI |
222 | .irq_on = ata_irq_on, |
223 | .irq_ack = ata_irq_ack, | |
85cd7251 | 224 | |
669a5db4 | 225 | .port_start = ata_port_start, |
85cd7251 | 226 | }; |
669a5db4 JG |
227 | |
228 | /** | |
229 | * qdi_init_one - attach a qdi interface | |
230 | * @type: Type to display | |
231 | * @io: I/O port start | |
232 | * @irq: interrupt line | |
233 | * @fast: True if on a > 33Mhz VLB | |
234 | * | |
235 | * Register an ISA bus IDE interface. Such interfaces are PIO and we | |
236 | * assume do not support IRQ sharing. | |
237 | */ | |
85cd7251 | 238 | |
669a5db4 JG |
239 | static __init int qdi_init_one(unsigned long port, int type, unsigned long io, int irq, int fast) |
240 | { | |
669a5db4 | 241 | struct platform_device *pdev; |
5d728824 TH |
242 | struct ata_host *host; |
243 | struct ata_port *ap; | |
0d5ff566 | 244 | void __iomem *io_addr, *ctl_addr; |
669a5db4 JG |
245 | int ret; |
246 | ||
669a5db4 JG |
247 | /* |
248 | * Fill in a probe structure first of all | |
249 | */ | |
250 | ||
251 | pdev = platform_device_register_simple(DRV_NAME, nr_qdi_host, NULL, 0); | |
9825d73c AM |
252 | if (IS_ERR(pdev)) |
253 | return PTR_ERR(pdev); | |
85cd7251 | 254 | |
0d5ff566 TH |
255 | ret = -ENOMEM; |
256 | io_addr = devm_ioport_map(&pdev->dev, io, 8); | |
257 | ctl_addr = devm_ioport_map(&pdev->dev, io + 0x206, 1); | |
258 | if (!io_addr || !ctl_addr) | |
259 | goto fail; | |
260 | ||
5d728824 TH |
261 | ret = -ENOMEM; |
262 | host = ata_host_alloc(&pdev->dev, 1); | |
263 | if (!host) | |
264 | goto fail; | |
265 | ap = host->ports[0]; | |
85cd7251 | 266 | |
669a5db4 | 267 | if (type == 6580) { |
5d728824 TH |
268 | ap->ops = &qdi6580_port_ops; |
269 | ap->pio_mask = 0x1F; | |
270 | ap->flags |= ATA_FLAG_SLAVE_POSS; | |
669a5db4 | 271 | } else { |
5d728824 TH |
272 | ap->ops = &qdi6500_port_ops; |
273 | ap->pio_mask = 0x07; /* Actually PIO3 !IORDY is possible */ | |
274 | ap->flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_NO_IORDY; | |
669a5db4 | 275 | } |
85cd7251 | 276 | |
5d728824 TH |
277 | ap->ioaddr.cmd_addr = io_addr; |
278 | ap->ioaddr.altstatus_addr = ctl_addr; | |
279 | ap->ioaddr.ctl_addr = ctl_addr; | |
280 | ata_std_ports(&ap->ioaddr); | |
669a5db4 JG |
281 | |
282 | /* | |
283 | * Hook in a private data structure per channel | |
284 | */ | |
5d728824 | 285 | ap->private_data = &qdi_data[nr_qdi_host]; |
669a5db4 JG |
286 | |
287 | qdi_data[nr_qdi_host].timing = port; | |
288 | qdi_data[nr_qdi_host].fast = fast; | |
289 | qdi_data[nr_qdi_host].platform_dev = pdev; | |
290 | ||
291 | printk(KERN_INFO DRV_NAME": qd%d at 0x%lx.\n", type, io); | |
0d5ff566 | 292 | |
5d728824 TH |
293 | /* activate */ |
294 | ret = ata_host_activate(host, irq, ata_interrupt, 0, &qdi_sht); | |
295 | if (ret) | |
0d5ff566 | 296 | goto fail; |
85cd7251 | 297 | |
669a5db4 | 298 | qdi_host[nr_qdi_host++] = dev_get_drvdata(&pdev->dev); |
85cd7251 | 299 | return 0; |
0d5ff566 TH |
300 | |
301 | fail: | |
302 | platform_device_unregister(pdev); | |
303 | return ret; | |
669a5db4 JG |
304 | } |
305 | ||
306 | /** | |
307 | * qdi_init - attach qdi interfaces | |
308 | * | |
309 | * Attach qdi IDE interfaces by scanning the ports it may occupy. | |
310 | */ | |
85cd7251 | 311 | |
669a5db4 JG |
312 | static __init int qdi_init(void) |
313 | { | |
314 | unsigned long flags; | |
315 | static const unsigned long qd_port[2] = { 0x30, 0xB0 }; | |
316 | static const unsigned long ide_port[2] = { 0x170, 0x1F0 }; | |
317 | static const int ide_irq[2] = { 14, 15 }; | |
85cd7251 | 318 | |
669a5db4 JG |
319 | int ct = 0; |
320 | int i; | |
85cd7251 | 321 | |
669a5db4 JG |
322 | if (probe_qdi == 0) |
323 | return -ENODEV; | |
85cd7251 | 324 | |
669a5db4 JG |
325 | /* |
326 | * Check each possible QD65xx base address | |
327 | */ | |
85cd7251 | 328 | |
669a5db4 JG |
329 | for (i = 0; i < 2; i++) { |
330 | unsigned long port = qd_port[i]; | |
331 | u8 r, res; | |
85cd7251 JG |
332 | |
333 | ||
669a5db4 JG |
334 | if (request_region(port, 2, "pata_qdi")) { |
335 | /* Check for a card */ | |
336 | local_irq_save(flags); | |
337 | r = inb_p(port); | |
338 | outb_p(0x19, port); | |
339 | res = inb_p(port); | |
340 | outb_p(r, port); | |
341 | local_irq_restore(flags); | |
85cd7251 | 342 | |
669a5db4 JG |
343 | /* Fail */ |
344 | if (res == 0x19) | |
345 | { | |
346 | release_region(port, 2); | |
347 | continue; | |
348 | } | |
85cd7251 | 349 | |
669a5db4 JG |
350 | /* Passes the presence test */ |
351 | r = inb_p(port + 1); /* Check port agrees with port set */ | |
352 | if ((r & 2) >> 1 != i) { | |
353 | release_region(port, 2); | |
354 | continue; | |
355 | } | |
356 | ||
85cd7251 | 357 | /* Check card type */ |
669a5db4 JG |
358 | if ((r & 0xF0) == 0xC0) { |
359 | /* QD6500: single channel */ | |
360 | if (r & 8) { | |
361 | /* Disabled ? */ | |
362 | release_region(port, 2); | |
363 | continue; | |
364 | } | |
cc7c15ec AC |
365 | if (qdi_init_one(port, 6500, ide_port[r & 0x01], ide_irq[r & 0x01], r & 0x04) == 0) |
366 | ct++; | |
669a5db4 JG |
367 | } |
368 | if (((r & 0xF0) == 0xA0) || (r & 0xF0) == 0x50) { | |
369 | /* QD6580: dual channel */ | |
370 | if (!request_region(port + 2 , 2, "pata_qdi")) | |
371 | { | |
372 | release_region(port, 2); | |
373 | continue; | |
374 | } | |
375 | res = inb(port + 3); | |
376 | if (res & 1) { | |
377 | /* Single channel mode */ | |
6878cce5 | 378 | if (qdi_init_one(port, 6580, ide_port[r & 0x01], ide_irq[r & 0x01], r & 0x04) == 0) |
cc7c15ec | 379 | ct++; |
669a5db4 JG |
380 | } else { |
381 | /* Dual channel mode */ | |
cc7c15ec AC |
382 | if (qdi_init_one(port, 6580, 0x1F0, 14, r & 0x04) == 0) |
383 | ct++; | |
384 | if (qdi_init_one(port + 2, 6580, 0x170, 15, r & 0x04) == 0) | |
385 | ct++; | |
669a5db4 JG |
386 | } |
387 | } | |
388 | } | |
389 | } | |
390 | if (ct != 0) | |
391 | return 0; | |
392 | return -ENODEV; | |
393 | } | |
394 | ||
395 | static __exit void qdi_exit(void) | |
396 | { | |
397 | int i; | |
398 | ||
399 | for (i = 0; i < nr_qdi_host; i++) { | |
24dc5f33 | 400 | ata_host_detach(qdi_host[i]); |
669a5db4 JG |
401 | /* Free the control resource. The 6580 dual channel has the resources |
402 | * claimed as a pair of 2 byte resources so we need no special cases... | |
403 | */ | |
404 | release_region(qdi_data[i].timing, 2); | |
405 | platform_device_unregister(qdi_data[i].platform_dev); | |
85cd7251 | 406 | } |
669a5db4 JG |
407 | } |
408 | ||
409 | MODULE_AUTHOR("Alan Cox"); | |
410 | MODULE_DESCRIPTION("low-level driver for qdi ATA"); | |
411 | MODULE_LICENSE("GPL"); | |
412 | MODULE_VERSION(DRV_VERSION); | |
413 | ||
414 | module_init(qdi_init); | |
415 | module_exit(qdi_exit); | |
416 | ||
417 | module_param(probe_qdi, int, 0); | |
418 |