blob: a4c0e502cb42759547332f1cee304bc5e95f9cb8 [file] [log] [blame]
Jeff Garzik669a5db2006-08-29 18:12:40 -04001/*
2 * pata_qdi.c - QDI VLB ATA controllers
3 * (C) 2006 Red Hat <alan@redhat.com>
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 <pje120@cs.usask.ca> by
15 * Samuel Thibault <samuel.thibault@fnac.net>
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"
Jeff Garzik8bc3fc42007-05-21 20:26:38 -040029#define DRV_VERSION "0.3.1"
Jeff Garzik669a5db2006-08-29 18:12:40 -040030
31#define NR_HOST 4 /* Two 6580s */
32
33struct qdi_data {
34 unsigned long timing;
35 u8 clock[2];
36 u8 last;
37 int fast;
38 struct platform_device *platform_dev;
Jeff Garzik85cd7252006-08-31 00:03:49 -040039
Jeff Garzik669a5db2006-08-29 18:12:40 -040040};
41
42static struct ata_host *qdi_host[NR_HOST];
43static struct qdi_data qdi_data[NR_HOST];
44static int nr_qdi_host;
45
46#ifdef MODULE
47static int probe_qdi = 1;
48#else
49static int probe_qdi;
50#endif
51
52static 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);
Jeff Garzik85cd7252006-08-31 00:03:49 -040061
Jeff Garzik669a5db2006-08-29 18:12:40 -040062 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;
Jeff Garzik85cd7252006-08-31 00:03:49 -040070
Jeff Garzik669a5db2006-08-29 18:12:40 -040071 qdi->clock[adev->devno] = timing;
72
Jeff Garzik85cd7252006-08-31 00:03:49 -040073 outb(timing, qdi->timing);
Jeff Garzik669a5db2006-08-29 18:12:40 -040074}
75
76static 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);
Jeff Garzik85cd7252006-08-31 00:03:49 -040085
Jeff Garzik669a5db2006-08-29 18:12:40 -040086 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;
Jeff Garzik85cd7252006-08-31 00:03:49 -040094
Jeff Garzik669a5db2006-08-29 18:12:40 -040095 qdi->clock[adev->devno] = timing;
96
97 outb(timing, qdi->timing);
Jeff Garzik85cd7252006-08-31 00:03:49 -040098
Jeff Garzik669a5db2006-08-29 18:12:40 -040099 /* 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
112static 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
127static void qdi_data_xfer(struct ata_device *adev, unsigned char *buf, unsigned int buflen, int write_data)
128{
Tejun Heo9af5c9c2007-08-06 18:36:22 +0900129 struct ata_port *ap = adev->link->ap;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400130 int slop = buflen & 3;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400131
Jeff Garzik669a5db2006-08-29 18:12:40 -0400132 if (ata_id_has_dword_io(adev->id)) {
133 if (write_data)
Tejun Heo0d5ff562007-02-01 15:06:36 +0900134 iowrite32_rep(ap->ioaddr.data_addr, buf, buflen >> 2);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400135 else
Tejun Heo0d5ff562007-02-01 15:06:36 +0900136 ioread32_rep(ap->ioaddr.data_addr, buf, buflen >> 2);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400137
Jeff Garzik669a5db2006-08-29 18:12:40 -0400138 if (unlikely(slop)) {
Al Virob50e56d2008-01-12 14:16:14 +0000139 __le32 pad = 0;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400140 if (write_data) {
141 memcpy(&pad, buf + buflen - slop, slop);
Al Virob50e56d2008-01-12 14:16:14 +0000142 iowrite32(le32_to_cpu(pad), ap->ioaddr.data_addr);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400143 } else {
Al Virob50e56d2008-01-12 14:16:14 +0000144 pad = cpu_to_le32(ioread32(ap->ioaddr.data_addr));
Jeff Garzik669a5db2006-08-29 18:12:40 -0400145 memcpy(buf + buflen - slop, &pad, slop);
146 }
147 }
148 } else
Tejun Heo0d5ff562007-02-01 15:06:36 +0900149 ata_data_xfer(adev, buf, buflen, write_data);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400150}
151
152static struct scsi_host_template qdi_sht = {
153 .module = THIS_MODULE,
154 .name = DRV_NAME,
155 .ioctl = ata_scsi_ioctl,
156 .queuecommand = ata_scsi_queuecmd,
157 .can_queue = ATA_DEF_QUEUE,
158 .this_id = ATA_SHT_THIS_ID,
159 .sg_tablesize = LIBATA_MAX_PRD,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400160 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
161 .emulated = ATA_SHT_EMULATED,
162 .use_clustering = ATA_SHT_USE_CLUSTERING,
163 .proc_name = DRV_NAME,
164 .dma_boundary = ATA_DMA_BOUNDARY,
165 .slave_configure = ata_scsi_slave_config,
Tejun Heoafdfe892006-11-29 11:26:47 +0900166 .slave_destroy = ata_scsi_slave_destroy,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400167 .bios_param = ata_std_bios_param,
168};
169
170static struct ata_port_operations qdi6500_port_ops = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400171 .set_piomode = qdi6500_set_piomode,
172
173 .tf_load = ata_tf_load,
174 .tf_read = ata_tf_read,
175 .check_status = ata_check_status,
176 .exec_command = ata_exec_command,
177 .dev_select = ata_std_dev_select,
178
179 .freeze = ata_bmdma_freeze,
180 .thaw = ata_bmdma_thaw,
181 .error_handler = ata_bmdma_error_handler,
182 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Alan Cox3be40d72007-03-26 21:43:40 -0800183 .cable_detect = ata_cable_40wire,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400184
Jeff Garzik669a5db2006-08-29 18:12:40 -0400185 .qc_prep = ata_qc_prep,
186 .qc_issue = qdi_qc_issue_prot,
Jeff Garzikbda30282006-09-27 05:41:13 -0400187
Jeff Garzik669a5db2006-08-29 18:12:40 -0400188 .data_xfer = qdi_data_xfer,
189
Jeff Garzik669a5db2006-08-29 18:12:40 -0400190 .irq_clear = ata_bmdma_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900191 .irq_on = ata_irq_on,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400192
Alan Cox81ad1832007-08-22 22:55:41 +0100193 .port_start = ata_sff_port_start,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400194};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400195
196static struct ata_port_operations qdi6580_port_ops = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400197 .set_piomode = qdi6580_set_piomode,
198
199 .tf_load = ata_tf_load,
200 .tf_read = ata_tf_read,
201 .check_status = ata_check_status,
202 .exec_command = ata_exec_command,
203 .dev_select = ata_std_dev_select,
204
205 .freeze = ata_bmdma_freeze,
206 .thaw = ata_bmdma_thaw,
207 .error_handler = ata_bmdma_error_handler,
208 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Alan Cox3be40d72007-03-26 21:43:40 -0800209 .cable_detect = ata_cable_40wire,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400210
Jeff Garzik669a5db2006-08-29 18:12:40 -0400211 .qc_prep = ata_qc_prep,
212 .qc_issue = qdi_qc_issue_prot,
Jeff Garzikbda30282006-09-27 05:41:13 -0400213
Jeff Garzik669a5db2006-08-29 18:12:40 -0400214 .data_xfer = qdi_data_xfer,
215
Jeff Garzik669a5db2006-08-29 18:12:40 -0400216 .irq_clear = ata_bmdma_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900217 .irq_on = ata_irq_on,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400218
Alan Cox81ad1832007-08-22 22:55:41 +0100219 .port_start = ata_sff_port_start,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400220};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400221
222/**
223 * qdi_init_one - attach a qdi interface
224 * @type: Type to display
225 * @io: I/O port start
226 * @irq: interrupt line
227 * @fast: True if on a > 33Mhz VLB
228 *
229 * Register an ISA bus IDE interface. Such interfaces are PIO and we
230 * assume do not support IRQ sharing.
231 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400232
Jeff Garzik669a5db2006-08-29 18:12:40 -0400233static __init int qdi_init_one(unsigned long port, int type, unsigned long io, int irq, int fast)
234{
Tejun Heocbcdd872007-08-18 13:14:55 +0900235 unsigned long ctl = io + 0x206;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400236 struct platform_device *pdev;
Tejun Heo5d728822007-04-17 23:44:08 +0900237 struct ata_host *host;
238 struct ata_port *ap;
Tejun Heo0d5ff562007-02-01 15:06:36 +0900239 void __iomem *io_addr, *ctl_addr;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400240 int ret;
241
Jeff Garzik669a5db2006-08-29 18:12:40 -0400242 /*
243 * Fill in a probe structure first of all
244 */
245
246 pdev = platform_device_register_simple(DRV_NAME, nr_qdi_host, NULL, 0);
Akinobu Mita9825d732006-12-15 13:08:51 -0800247 if (IS_ERR(pdev))
248 return PTR_ERR(pdev);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400249
Tejun Heo0d5ff562007-02-01 15:06:36 +0900250 ret = -ENOMEM;
251 io_addr = devm_ioport_map(&pdev->dev, io, 8);
Tejun Heocbcdd872007-08-18 13:14:55 +0900252 ctl_addr = devm_ioport_map(&pdev->dev, ctl, 1);
Tejun Heo0d5ff562007-02-01 15:06:36 +0900253 if (!io_addr || !ctl_addr)
254 goto fail;
255
Tejun Heo5d728822007-04-17 23:44:08 +0900256 ret = -ENOMEM;
257 host = ata_host_alloc(&pdev->dev, 1);
258 if (!host)
259 goto fail;
260 ap = host->ports[0];
Jeff Garzik85cd7252006-08-31 00:03:49 -0400261
Jeff Garzik669a5db2006-08-29 18:12:40 -0400262 if (type == 6580) {
Tejun Heo5d728822007-04-17 23:44:08 +0900263 ap->ops = &qdi6580_port_ops;
264 ap->pio_mask = 0x1F;
265 ap->flags |= ATA_FLAG_SLAVE_POSS;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400266 } else {
Tejun Heo5d728822007-04-17 23:44:08 +0900267 ap->ops = &qdi6500_port_ops;
268 ap->pio_mask = 0x07; /* Actually PIO3 !IORDY is possible */
269 ap->flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_NO_IORDY;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400270 }
Jeff Garzik85cd7252006-08-31 00:03:49 -0400271
Tejun Heo5d728822007-04-17 23:44:08 +0900272 ap->ioaddr.cmd_addr = io_addr;
273 ap->ioaddr.altstatus_addr = ctl_addr;
274 ap->ioaddr.ctl_addr = ctl_addr;
275 ata_std_ports(&ap->ioaddr);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400276
Tejun Heocbcdd872007-08-18 13:14:55 +0900277 ata_port_desc(ap, "cmd %lx ctl %lx", io, ctl);
278
Jeff Garzik669a5db2006-08-29 18:12:40 -0400279 /*
280 * Hook in a private data structure per channel
281 */
Tejun Heo5d728822007-04-17 23:44:08 +0900282 ap->private_data = &qdi_data[nr_qdi_host];
Jeff Garzik669a5db2006-08-29 18:12:40 -0400283
284 qdi_data[nr_qdi_host].timing = port;
285 qdi_data[nr_qdi_host].fast = fast;
286 qdi_data[nr_qdi_host].platform_dev = pdev;
287
288 printk(KERN_INFO DRV_NAME": qd%d at 0x%lx.\n", type, io);
Tejun Heo0d5ff562007-02-01 15:06:36 +0900289
Tejun Heo5d728822007-04-17 23:44:08 +0900290 /* activate */
291 ret = ata_host_activate(host, irq, ata_interrupt, 0, &qdi_sht);
292 if (ret)
Tejun Heo0d5ff562007-02-01 15:06:36 +0900293 goto fail;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400294
Jeff Garzik669a5db2006-08-29 18:12:40 -0400295 qdi_host[nr_qdi_host++] = dev_get_drvdata(&pdev->dev);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400296 return 0;
Tejun Heo0d5ff562007-02-01 15:06:36 +0900297
298 fail:
299 platform_device_unregister(pdev);
300 return ret;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400301}
302
303/**
304 * qdi_init - attach qdi interfaces
305 *
306 * Attach qdi IDE interfaces by scanning the ports it may occupy.
307 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400308
Jeff Garzik669a5db2006-08-29 18:12:40 -0400309static __init int qdi_init(void)
310{
311 unsigned long flags;
312 static const unsigned long qd_port[2] = { 0x30, 0xB0 };
313 static const unsigned long ide_port[2] = { 0x170, 0x1F0 };
314 static const int ide_irq[2] = { 14, 15 };
Jeff Garzik85cd7252006-08-31 00:03:49 -0400315
Jeff Garzik669a5db2006-08-29 18:12:40 -0400316 int ct = 0;
317 int i;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400318
Jeff Garzik669a5db2006-08-29 18:12:40 -0400319 if (probe_qdi == 0)
320 return -ENODEV;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400321
Jeff Garzik669a5db2006-08-29 18:12:40 -0400322 /*
323 * Check each possible QD65xx base address
324 */
Jeff Garzik85cd7252006-08-31 00:03:49 -0400325
Jeff Garzik669a5db2006-08-29 18:12:40 -0400326 for (i = 0; i < 2; i++) {
327 unsigned long port = qd_port[i];
328 u8 r, res;
Jeff Garzik85cd7252006-08-31 00:03:49 -0400329
330
Jeff Garzik669a5db2006-08-29 18:12:40 -0400331 if (request_region(port, 2, "pata_qdi")) {
332 /* Check for a card */
333 local_irq_save(flags);
334 r = inb_p(port);
335 outb_p(0x19, port);
336 res = inb_p(port);
337 outb_p(r, port);
338 local_irq_restore(flags);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400339
Jeff Garzik669a5db2006-08-29 18:12:40 -0400340 /* Fail */
341 if (res == 0x19)
342 {
343 release_region(port, 2);
344 continue;
345 }
Jeff Garzik85cd7252006-08-31 00:03:49 -0400346
Jeff Garzik669a5db2006-08-29 18:12:40 -0400347 /* Passes the presence test */
348 r = inb_p(port + 1); /* Check port agrees with port set */
349 if ((r & 2) >> 1 != i) {
350 release_region(port, 2);
351 continue;
352 }
353
Jeff Garzik85cd7252006-08-31 00:03:49 -0400354 /* Check card type */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400355 if ((r & 0xF0) == 0xC0) {
356 /* QD6500: single channel */
357 if (r & 8) {
358 /* Disabled ? */
359 release_region(port, 2);
360 continue;
361 }
Alan Coxcc7c15e2007-03-02 14:56:35 +0000362 if (qdi_init_one(port, 6500, ide_port[r & 0x01], ide_irq[r & 0x01], r & 0x04) == 0)
363 ct++;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400364 }
365 if (((r & 0xF0) == 0xA0) || (r & 0xF0) == 0x50) {
366 /* QD6580: dual channel */
367 if (!request_region(port + 2 , 2, "pata_qdi"))
368 {
369 release_region(port, 2);
370 continue;
371 }
372 res = inb(port + 3);
373 if (res & 1) {
374 /* Single channel mode */
Samuel Thibault6878cce2007-05-03 11:30:25 +0200375 if (qdi_init_one(port, 6580, ide_port[r & 0x01], ide_irq[r & 0x01], r & 0x04) == 0)
Alan Coxcc7c15e2007-03-02 14:56:35 +0000376 ct++;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400377 } else {
378 /* Dual channel mode */
Alan Coxcc7c15e2007-03-02 14:56:35 +0000379 if (qdi_init_one(port, 6580, 0x1F0, 14, r & 0x04) == 0)
380 ct++;
381 if (qdi_init_one(port + 2, 6580, 0x170, 15, r & 0x04) == 0)
382 ct++;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400383 }
384 }
385 }
386 }
387 if (ct != 0)
388 return 0;
389 return -ENODEV;
390}
391
392static __exit void qdi_exit(void)
393{
394 int i;
395
396 for (i = 0; i < nr_qdi_host; i++) {
Tejun Heo24dc5f32007-01-20 16:00:28 +0900397 ata_host_detach(qdi_host[i]);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400398 /* Free the control resource. The 6580 dual channel has the resources
399 * claimed as a pair of 2 byte resources so we need no special cases...
400 */
401 release_region(qdi_data[i].timing, 2);
402 platform_device_unregister(qdi_data[i].platform_dev);
Jeff Garzik85cd7252006-08-31 00:03:49 -0400403 }
Jeff Garzik669a5db2006-08-29 18:12:40 -0400404}
405
406MODULE_AUTHOR("Alan Cox");
407MODULE_DESCRIPTION("low-level driver for qdi ATA");
408MODULE_LICENSE("GPL");
409MODULE_VERSION(DRV_VERSION);
410
411module_init(qdi_init);
412module_exit(qdi_exit);
413
414module_param(probe_qdi, int, 0);
415