[libata] pata_legacy: typo fix
[linux-block.git] / drivers / ata / pata_legacy.c
CommitLineData
669a5db4
JG
1/*
2 * pata-legacy.c - Legacy port PATA/SATA controller driver.
3 * Copyright 2005/2006 Red Hat <alan@redhat.com>, all rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2, or (at your option)
8 * any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; see the file COPYING. If not, write to
17 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
18 *
19 * An ATA driver for the legacy ATA ports.
20 *
21 * Data Sources:
22 * Opti 82C465/82C611 support: Data sheets at opti-inc.com
23 * HT6560 series:
24 * Promise 20230/20620:
25 * http://www.ryston.cz/petr/vlb/pdc20230b.html
26 * http://www.ryston.cz/petr/vlb/pdc20230c.html
27 * http://www.ryston.cz/petr/vlb/pdc20630.html
28 *
29 * Unsupported but docs exist:
30 * Appian/Adaptec AIC25VL01/Cirrus Logic PD7220
31 * Winbond W83759A
32 *
33 * This driver handles legacy (that is "ISA/VLB side") IDE ports found
34 * on PC class systems. There are three hybrid devices that are exceptions
35 * The Cyrix 5510/5520 where a pre SFF ATA device is on the bridge and
36 * the MPIIX where the tuning is PCI side but the IDE is "ISA side".
37 *
38 * Specific support is included for the ht6560a/ht6560b/opti82c611a/
39 * opti82c465mv/promise 20230c/20630
40 *
41 * Use the autospeed and pio_mask options with:
42 * Appian ADI/2 aka CLPD7220 or AIC25VL01.
43 * Use the jumpers, autospeed and set pio_mask to the mode on the jumpers with
44 * Goldstar GM82C711, PIC-1288A-125, UMC 82C871F, Winbond W83759,
45 * Winbond W83759A, Promise PDC20230-B
46 *
47 * For now use autospeed and pio_mask as above with the W83759A. This may
48 * change.
49 *
50 * TODO
51 * Merge existing pata_qdi driver
52 *
53 */
54
55#include <linux/kernel.h>
56#include <linux/module.h>
57#include <linux/pci.h>
58#include <linux/init.h>
59#include <linux/blkdev.h>
60#include <linux/delay.h>
61#include <scsi/scsi_host.h>
62#include <linux/ata.h>
63#include <linux/libata.h>
64#include <linux/platform_device.h>
65
66#define DRV_NAME "pata_legacy"
8bc3fc47 67#define DRV_VERSION "0.5.5"
669a5db4
JG
68
69#define NR_HOST 6
70
71static int legacy_port[NR_HOST] = { 0x1f0, 0x170, 0x1e8, 0x168, 0x1e0, 0x160 };
8b966ddd 72static int legacy_irq[NR_HOST] = { 14, 15, 11, 10, 8, 12 };
669a5db4
JG
73
74struct legacy_data {
75 unsigned long timing;
76 u8 clock[2];
77 u8 last;
78 int fast;
79 struct platform_device *platform_dev;
80
81};
82
83static struct legacy_data legacy_data[NR_HOST];
84static struct ata_host *legacy_host[NR_HOST];
85static int nr_legacy_host;
86
87
88static int probe_all; /* Set to check all ISA port ranges */
89static int ht6560a; /* HT 6560A on primary 1, secondary 2, both 3 */
90static int ht6560b; /* HT 6560A on primary 1, secondary 2, both 3 */
91static int opti82c611a; /* Opti82c611A on primary 1, secondary 2, both 3 */
f834e49f 92static int opti82c46x; /* Opti 82c465MV present (pri/sec autodetect) */
669a5db4
JG
93static int autospeed; /* Chip present which snoops speed changes */
94static int pio_mask = 0x1F; /* PIO range for autospeed devices */
f834e49f 95static int iordy_mask = 0xFFFFFFFF; /* Use iordy if available */
669a5db4
JG
96
97/**
98 * legacy_set_mode - mode setting
0260731f 99 * @link: IDE link
b229a7b0 100 * @unused: Device that failed when error is returned
669a5db4
JG
101 *
102 * Use a non standard set_mode function. We don't want to be tuned.
103 *
104 * The BIOS configured everything. Our job is not to fiddle. Just use
105 * whatever PIO the hardware is using and leave it at that. When we
106 * get some kind of nice user driven API for control then we can
107 * expand on this as per hdparm in the base kernel.
108 */
109
0260731f 110static int legacy_set_mode(struct ata_link *link, struct ata_device **unused)
669a5db4 111{
f58229f8 112 struct ata_device *dev;
669a5db4 113
0260731f 114 ata_link_for_each_dev(dev, link) {
669a5db4 115 if (ata_dev_enabled(dev)) {
f834e49f 116 ata_dev_printk(dev, KERN_INFO, "configured for PIO\n");
669a5db4
JG
117 dev->pio_mode = XFER_PIO_0;
118 dev->xfer_mode = XFER_PIO_0;
119 dev->xfer_shift = ATA_SHIFT_PIO;
120 dev->flags |= ATA_DFLAG_PIO;
121 }
122 }
b229a7b0 123 return 0;
669a5db4
JG
124}
125
126static struct scsi_host_template legacy_sht = {
127 .module = THIS_MODULE,
128 .name = DRV_NAME,
129 .ioctl = ata_scsi_ioctl,
130 .queuecommand = ata_scsi_queuecmd,
131 .can_queue = ATA_DEF_QUEUE,
132 .this_id = ATA_SHT_THIS_ID,
133 .sg_tablesize = LIBATA_MAX_PRD,
669a5db4
JG
134 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
135 .emulated = ATA_SHT_EMULATED,
136 .use_clustering = ATA_SHT_USE_CLUSTERING,
137 .proc_name = DRV_NAME,
138 .dma_boundary = ATA_DMA_BOUNDARY,
139 .slave_configure = ata_scsi_slave_config,
afdfe899 140 .slave_destroy = ata_scsi_slave_destroy,
669a5db4
JG
141 .bios_param = ata_std_bios_param,
142};
143
144/*
145 * These ops are used if the user indicates the hardware
146 * snoops the commands to decide on the mode and handles the
147 * mode selection "magically" itself. Several legacy controllers
148 * do this. The mode range can be set if it is not 0x1F by setting
149 * pio_mask as well.
150 */
151
152static struct ata_port_operations simple_port_ops = {
669a5db4
JG
153 .tf_load = ata_tf_load,
154 .tf_read = ata_tf_read,
155 .check_status = ata_check_status,
156 .exec_command = ata_exec_command,
157 .dev_select = ata_std_dev_select,
158
159 .freeze = ata_bmdma_freeze,
160 .thaw = ata_bmdma_thaw,
161 .error_handler = ata_bmdma_error_handler,
162 .post_internal_cmd = ata_bmdma_post_internal_cmd,
a73984a0 163 .cable_detect = ata_cable_40wire,
669a5db4
JG
164
165 .qc_prep = ata_qc_prep,
166 .qc_issue = ata_qc_issue_prot,
bda30288 167
0d5ff566 168 .data_xfer = ata_data_xfer_noirq,
669a5db4
JG
169
170 .irq_handler = ata_interrupt,
171 .irq_clear = ata_bmdma_irq_clear,
246ce3b6 172 .irq_on = ata_irq_on,
669a5db4
JG
173
174 .port_start = ata_port_start,
669a5db4
JG
175};
176
177static struct ata_port_operations legacy_port_ops = {
178 .set_mode = legacy_set_mode,
179
669a5db4
JG
180 .tf_load = ata_tf_load,
181 .tf_read = ata_tf_read,
182 .check_status = ata_check_status,
183 .exec_command = ata_exec_command,
184 .dev_select = ata_std_dev_select,
a73984a0 185 .cable_detect = ata_cable_40wire,
669a5db4 186
bf7551c4
JG
187 .freeze = ata_bmdma_freeze,
188 .thaw = ata_bmdma_thaw,
669a5db4 189 .error_handler = ata_bmdma_error_handler,
bf7551c4 190 .post_internal_cmd = ata_bmdma_post_internal_cmd,
669a5db4
JG
191
192 .qc_prep = ata_qc_prep,
193 .qc_issue = ata_qc_issue_prot,
bda30288 194
0d5ff566 195 .data_xfer = ata_data_xfer_noirq,
669a5db4
JG
196
197 .irq_handler = ata_interrupt,
198 .irq_clear = ata_bmdma_irq_clear,
246ce3b6 199 .irq_on = ata_irq_on,
669a5db4
JG
200
201 .port_start = ata_port_start,
669a5db4
JG
202};
203
204/*
205 * Promise 20230C and 20620 support
206 *
207 * This controller supports PIO0 to PIO2. We set PIO timings conservatively to
208 * allow for 50MHz Vesa Local Bus. The 20620 DMA support is weird being DMA to
209 * controller and PIO'd to the host and not supported.
210 */
211
212static void pdc20230_set_piomode(struct ata_port *ap, struct ata_device *adev)
213{
214 int tries = 5;
215 int pio = adev->pio_mode - XFER_PIO_0;
216 u8 rt;
217 unsigned long flags;
85cd7251 218
669a5db4 219 /* Safe as UP only. Force I/Os to occur together */
85cd7251 220
669a5db4 221 local_irq_save(flags);
85cd7251 222
669a5db4
JG
223 /* Unlock the control interface */
224 do
225 {
226 inb(0x1F5);
227 outb(inb(0x1F2) | 0x80, 0x1F2);
228 inb(0x1F2);
229 inb(0x3F6);
230 inb(0x3F6);
231 inb(0x1F2);
232 inb(0x1F2);
233 }
234 while((inb(0x1F2) & 0x80) && --tries);
235
236 local_irq_restore(flags);
85cd7251 237
669a5db4
JG
238 outb(inb(0x1F4) & 0x07, 0x1F4);
239
240 rt = inb(0x1F3);
241 rt &= 0x07 << (3 * adev->devno);
242 if (pio)
243 rt |= (1 + 3 * pio) << (3 * adev->devno);
244
245 udelay(100);
246 outb(inb(0x1F2) | 0x01, 0x1F2);
247 udelay(100);
248 inb(0x1F5);
249
250}
251
55dba312
TH
252static unsigned int pdc_data_xfer_vlb(struct ata_device *dev,
253 unsigned char *buf, unsigned int buflen, int rw)
669a5db4 254{
c294f1b3 255 if (ata_id_has_dword_io(dev->id)) {
55dba312
TH
256 struct ata_port *ap = dev->link->ap;
257 int slop = buflen & 3;
258 unsigned long flags;
259
669a5db4
JG
260 local_irq_save(flags);
261
262 /* Perform the 32bit I/O synchronization sequence */
0d5ff566
TH
263 ioread8(ap->ioaddr.nsect_addr);
264 ioread8(ap->ioaddr.nsect_addr);
265 ioread8(ap->ioaddr.nsect_addr);
669a5db4
JG
266
267 /* Now the data */
55dba312 268 if (rw == READ)
0d5ff566 269 ioread32_rep(ap->ioaddr.data_addr, buf, buflen >> 2);
55dba312
TH
270 else
271 iowrite32_rep(ap->ioaddr.data_addr, buf, buflen >> 2);
669a5db4
JG
272
273 if (unlikely(slop)) {
55dba312
TH
274 u32 pad;
275 if (rw == READ) {
b50e56d8 276 pad = cpu_to_le32(ioread32(ap->ioaddr.data_addr));
669a5db4 277 memcpy(buf + buflen - slop, &pad, slop);
55dba312
TH
278 } else {
279 memcpy(&pad, buf + buflen - slop, slop);
280 iowrite32(le32_to_cpu(pad), ap->ioaddr.data_addr);
669a5db4 281 }
55dba312 282 buflen += 4 - slop;
669a5db4
JG
283 }
284 local_irq_restore(flags);
55dba312
TH
285 } else
286 buflen = ata_data_xfer_noirq(dev, buf, buflen, rw);
287
288 return buflen;
669a5db4
JG
289}
290
291static struct ata_port_operations pdc20230_port_ops = {
292 .set_piomode = pdc20230_set_piomode,
293
669a5db4
JG
294 .tf_load = ata_tf_load,
295 .tf_read = ata_tf_read,
296 .check_status = ata_check_status,
297 .exec_command = ata_exec_command,
298 .dev_select = ata_std_dev_select,
299
bf7551c4
JG
300 .freeze = ata_bmdma_freeze,
301 .thaw = ata_bmdma_thaw,
669a5db4 302 .error_handler = ata_bmdma_error_handler,
bf7551c4 303 .post_internal_cmd = ata_bmdma_post_internal_cmd,
a73984a0 304 .cable_detect = ata_cable_40wire,
669a5db4
JG
305
306 .qc_prep = ata_qc_prep,
307 .qc_issue = ata_qc_issue_prot,
bda30288 308
669a5db4
JG
309 .data_xfer = pdc_data_xfer_vlb,
310
311 .irq_handler = ata_interrupt,
312 .irq_clear = ata_bmdma_irq_clear,
246ce3b6 313 .irq_on = ata_irq_on,
669a5db4
JG
314
315 .port_start = ata_port_start,
669a5db4
JG
316};
317
318/*
319 * Holtek 6560A support
320 *
321 * This controller supports PIO0 to PIO2 (no IORDY even though higher timings
322 * can be loaded).
323 */
324
325static void ht6560a_set_piomode(struct ata_port *ap, struct ata_device *adev)
326{
327 u8 active, recover;
328 struct ata_timing t;
329
330 /* Get the timing data in cycles. For now play safe at 50Mhz */
331 ata_timing_compute(adev, adev->pio_mode, &t, 20000, 1000);
332
333 active = FIT(t.active, 2, 15);
334 recover = FIT(t.recover, 4, 15);
335
336 inb(0x3E6);
337 inb(0x3E6);
338 inb(0x3E6);
339 inb(0x3E6);
340
0d5ff566
TH
341 iowrite8(recover << 4 | active, ap->ioaddr.device_addr);
342 ioread8(ap->ioaddr.status_addr);
669a5db4
JG
343}
344
345static struct ata_port_operations ht6560a_port_ops = {
346 .set_piomode = ht6560a_set_piomode,
347
669a5db4
JG
348 .tf_load = ata_tf_load,
349 .tf_read = ata_tf_read,
350 .check_status = ata_check_status,
351 .exec_command = ata_exec_command,
352 .dev_select = ata_std_dev_select,
353
bf7551c4
JG
354 .freeze = ata_bmdma_freeze,
355 .thaw = ata_bmdma_thaw,
669a5db4 356 .error_handler = ata_bmdma_error_handler,
bf7551c4 357 .post_internal_cmd = ata_bmdma_post_internal_cmd,
a73984a0 358 .cable_detect = ata_cable_40wire,
669a5db4
JG
359
360 .qc_prep = ata_qc_prep,
361 .qc_issue = ata_qc_issue_prot,
bda30288 362
0d5ff566 363 .data_xfer = ata_data_xfer, /* Check vlb/noirq */
669a5db4
JG
364
365 .irq_handler = ata_interrupt,
366 .irq_clear = ata_bmdma_irq_clear,
246ce3b6 367 .irq_on = ata_irq_on,
669a5db4
JG
368
369 .port_start = ata_port_start,
669a5db4
JG
370};
371
372/*
373 * Holtek 6560B support
374 *
375 * This controller supports PIO0 to PIO4. We honour the BIOS/jumper FIFO setting
376 * unless we see an ATAPI device in which case we force it off.
377 *
378 * FIXME: need to implement 2nd channel support.
379 */
380
381static void ht6560b_set_piomode(struct ata_port *ap, struct ata_device *adev)
382{
383 u8 active, recover;
384 struct ata_timing t;
385
386 /* Get the timing data in cycles. For now play safe at 50Mhz */
387 ata_timing_compute(adev, adev->pio_mode, &t, 20000, 1000);
388
389 active = FIT(t.active, 2, 15);
390 recover = FIT(t.recover, 2, 16);
391 recover &= 0x15;
392
393 inb(0x3E6);
394 inb(0x3E6);
395 inb(0x3E6);
396 inb(0x3E6);
397
0d5ff566 398 iowrite8(recover << 4 | active, ap->ioaddr.device_addr);
669a5db4
JG
399
400 if (adev->class != ATA_DEV_ATA) {
401 u8 rconf = inb(0x3E6);
402 if (rconf & 0x24) {
403 rconf &= ~ 0x24;
404 outb(rconf, 0x3E6);
405 }
406 }
0d5ff566 407 ioread8(ap->ioaddr.status_addr);
669a5db4
JG
408}
409
410static struct ata_port_operations ht6560b_port_ops = {
411 .set_piomode = ht6560b_set_piomode,
412
669a5db4
JG
413 .tf_load = ata_tf_load,
414 .tf_read = ata_tf_read,
415 .check_status = ata_check_status,
416 .exec_command = ata_exec_command,
417 .dev_select = ata_std_dev_select,
418
bf7551c4
JG
419 .freeze = ata_bmdma_freeze,
420 .thaw = ata_bmdma_thaw,
669a5db4 421 .error_handler = ata_bmdma_error_handler,
bf7551c4 422 .post_internal_cmd = ata_bmdma_post_internal_cmd,
a73984a0 423 .cable_detect = ata_cable_40wire,
669a5db4
JG
424
425 .qc_prep = ata_qc_prep,
426 .qc_issue = ata_qc_issue_prot,
bda30288 427
0d5ff566 428 .data_xfer = ata_data_xfer, /* FIXME: Check 32bit and noirq */
669a5db4
JG
429
430 .irq_handler = ata_interrupt,
431 .irq_clear = ata_bmdma_irq_clear,
246ce3b6 432 .irq_on = ata_irq_on,
669a5db4
JG
433
434 .port_start = ata_port_start,
669a5db4
JG
435};
436
437/*
438 * Opti core chipset helpers
439 */
85cd7251 440
669a5db4
JG
441/**
442 * opti_syscfg - read OPTI chipset configuration
443 * @reg: Configuration register to read
444 *
445 * Returns the value of an OPTI system board configuration register.
446 */
447
448static u8 opti_syscfg(u8 reg)
449{
450 unsigned long flags;
451 u8 r;
85cd7251 452
669a5db4
JG
453 /* Uniprocessor chipset and must force cycles adjancent */
454 local_irq_save(flags);
455 outb(reg, 0x22);
456 r = inb(0x24);
457 local_irq_restore(flags);
458 return r;
459}
460
461/*
462 * Opti 82C611A
463 *
464 * This controller supports PIO0 to PIO3.
465 */
466
467static void opti82c611a_set_piomode(struct ata_port *ap, struct ata_device *adev)
468{
469 u8 active, recover, setup;
470 struct ata_timing t;
471 struct ata_device *pair = ata_dev_pair(adev);
472 int clock;
473 int khz[4] = { 50000, 40000, 33000, 25000 };
474 u8 rc;
475
476 /* Enter configuration mode */
0d5ff566
TH
477 ioread16(ap->ioaddr.error_addr);
478 ioread16(ap->ioaddr.error_addr);
479 iowrite8(3, ap->ioaddr.nsect_addr);
669a5db4
JG
480
481 /* Read VLB clock strapping */
0d5ff566 482 clock = 1000000000 / khz[ioread8(ap->ioaddr.lbah_addr) & 0x03];
669a5db4
JG
483
484 /* Get the timing data in cycles */
485 ata_timing_compute(adev, adev->pio_mode, &t, clock, 1000);
486
487 /* Setup timing is shared */
488 if (pair) {
489 struct ata_timing tp;
490 ata_timing_compute(pair, pair->pio_mode, &tp, clock, 1000);
491
492 ata_timing_merge(&t, &tp, &t, ATA_TIMING_SETUP);
493 }
494
495 active = FIT(t.active, 2, 17) - 2;
496 recover = FIT(t.recover, 1, 16) - 1;
497 setup = FIT(t.setup, 1, 4) - 1;
498
499 /* Select the right timing bank for write timing */
0d5ff566 500 rc = ioread8(ap->ioaddr.lbal_addr);
669a5db4
JG
501 rc &= 0x7F;
502 rc |= (adev->devno << 7);
0d5ff566 503 iowrite8(rc, ap->ioaddr.lbal_addr);
669a5db4
JG
504
505 /* Write the timings */
0d5ff566 506 iowrite8(active << 4 | recover, ap->ioaddr.error_addr);
669a5db4
JG
507
508 /* Select the right bank for read timings, also
509 load the shared timings for address */
0d5ff566 510 rc = ioread8(ap->ioaddr.device_addr);
669a5db4
JG
511 rc &= 0xC0;
512 rc |= adev->devno; /* Index select */
513 rc |= (setup << 4) | 0x04;
0d5ff566 514 iowrite8(rc, ap->ioaddr.device_addr);
669a5db4
JG
515
516 /* Load the read timings */
0d5ff566 517 iowrite8(active << 4 | recover, ap->ioaddr.data_addr);
669a5db4
JG
518
519 /* Ensure the timing register mode is right */
0d5ff566 520 rc = ioread8(ap->ioaddr.lbal_addr);
669a5db4
JG
521 rc &= 0x73;
522 rc |= 0x84;
0d5ff566 523 iowrite8(rc, ap->ioaddr.lbal_addr);
669a5db4
JG
524
525 /* Exit command mode */
0d5ff566 526 iowrite8(0x83, ap->ioaddr.nsect_addr);
669a5db4
JG
527}
528
529
530static struct ata_port_operations opti82c611a_port_ops = {
531 .set_piomode = opti82c611a_set_piomode,
532
669a5db4
JG
533 .tf_load = ata_tf_load,
534 .tf_read = ata_tf_read,
535 .check_status = ata_check_status,
536 .exec_command = ata_exec_command,
537 .dev_select = ata_std_dev_select,
538
bf7551c4
JG
539 .freeze = ata_bmdma_freeze,
540 .thaw = ata_bmdma_thaw,
669a5db4 541 .error_handler = ata_bmdma_error_handler,
bf7551c4 542 .post_internal_cmd = ata_bmdma_post_internal_cmd,
a73984a0 543 .cable_detect = ata_cable_40wire,
669a5db4
JG
544
545 .qc_prep = ata_qc_prep,
546 .qc_issue = ata_qc_issue_prot,
bda30288 547
0d5ff566 548 .data_xfer = ata_data_xfer,
669a5db4
JG
549
550 .irq_handler = ata_interrupt,
551 .irq_clear = ata_bmdma_irq_clear,
246ce3b6 552 .irq_on = ata_irq_on,
669a5db4
JG
553
554 .port_start = ata_port_start,
669a5db4
JG
555};
556
557/*
558 * Opti 82C465MV
559 *
560 * This controller supports PIO0 to PIO3. Unlike the 611A the MVB
561 * version is dual channel but doesn't have a lot of unique registers.
562 */
563
564static void opti82c46x_set_piomode(struct ata_port *ap, struct ata_device *adev)
565{
566 u8 active, recover, setup;
567 struct ata_timing t;
568 struct ata_device *pair = ata_dev_pair(adev);
569 int clock;
570 int khz[4] = { 50000, 40000, 33000, 25000 };
571 u8 rc;
572 u8 sysclk;
573
574 /* Get the clock */
575 sysclk = opti_syscfg(0xAC) & 0xC0; /* BIOS set */
576
577 /* Enter configuration mode */
0d5ff566
TH
578 ioread16(ap->ioaddr.error_addr);
579 ioread16(ap->ioaddr.error_addr);
580 iowrite8(3, ap->ioaddr.nsect_addr);
669a5db4
JG
581
582 /* Read VLB clock strapping */
583 clock = 1000000000 / khz[sysclk];
584
585 /* Get the timing data in cycles */
586 ata_timing_compute(adev, adev->pio_mode, &t, clock, 1000);
587
588 /* Setup timing is shared */
589 if (pair) {
590 struct ata_timing tp;
591 ata_timing_compute(pair, pair->pio_mode, &tp, clock, 1000);
592
593 ata_timing_merge(&t, &tp, &t, ATA_TIMING_SETUP);
594 }
595
596 active = FIT(t.active, 2, 17) - 2;
597 recover = FIT(t.recover, 1, 16) - 1;
598 setup = FIT(t.setup, 1, 4) - 1;
599
600 /* Select the right timing bank for write timing */
0d5ff566 601 rc = ioread8(ap->ioaddr.lbal_addr);
669a5db4
JG
602 rc &= 0x7F;
603 rc |= (adev->devno << 7);
0d5ff566 604 iowrite8(rc, ap->ioaddr.lbal_addr);
669a5db4
JG
605
606 /* Write the timings */
0d5ff566 607 iowrite8(active << 4 | recover, ap->ioaddr.error_addr);
669a5db4
JG
608
609 /* Select the right bank for read timings, also
610 load the shared timings for address */
0d5ff566 611 rc = ioread8(ap->ioaddr.device_addr);
669a5db4
JG
612 rc &= 0xC0;
613 rc |= adev->devno; /* Index select */
614 rc |= (setup << 4) | 0x04;
0d5ff566 615 iowrite8(rc, ap->ioaddr.device_addr);
669a5db4
JG
616
617 /* Load the read timings */
0d5ff566 618 iowrite8(active << 4 | recover, ap->ioaddr.data_addr);
669a5db4
JG
619
620 /* Ensure the timing register mode is right */
0d5ff566 621 rc = ioread8(ap->ioaddr.lbal_addr);
669a5db4
JG
622 rc &= 0x73;
623 rc |= 0x84;
0d5ff566 624 iowrite8(rc, ap->ioaddr.lbal_addr);
669a5db4
JG
625
626 /* Exit command mode */
0d5ff566 627 iowrite8(0x83, ap->ioaddr.nsect_addr);
669a5db4
JG
628
629 /* We need to know this for quad device on the MVB */
630 ap->host->private_data = ap;
631}
632
633/**
634 * opt82c465mv_qc_issue_prot - command issue
635 * @qc: command pending
636 *
637 * Called when the libata layer is about to issue a command. We wrap
638 * this interface so that we can load the correct ATA timings. The
639 * MVB has a single set of timing registers and these are shared
640 * across channels. As there are two registers we really ought to
641 * track the last two used values as a sort of register window. For
642 * now we just reload on a channel switch. On the single channel
643 * setup this condition never fires so we do nothing extra.
644 *
645 * FIXME: dual channel needs ->serialize support
646 */
647
648static unsigned int opti82c46x_qc_issue_prot(struct ata_queued_cmd *qc)
649{
650 struct ata_port *ap = qc->ap;
651 struct ata_device *adev = qc->dev;
652
653 /* If timings are set and for the wrong channel (2nd test is
654 due to a libata shortcoming and will eventually go I hope) */
655 if (ap->host->private_data != ap->host
656 && ap->host->private_data != NULL)
657 opti82c46x_set_piomode(ap, adev);
658
659 return ata_qc_issue_prot(qc);
660}
661
662static struct ata_port_operations opti82c46x_port_ops = {
663 .set_piomode = opti82c46x_set_piomode,
664
669a5db4
JG
665 .tf_load = ata_tf_load,
666 .tf_read = ata_tf_read,
667 .check_status = ata_check_status,
668 .exec_command = ata_exec_command,
669 .dev_select = ata_std_dev_select,
670
bf7551c4
JG
671 .freeze = ata_bmdma_freeze,
672 .thaw = ata_bmdma_thaw,
669a5db4 673 .error_handler = ata_bmdma_error_handler,
bf7551c4 674 .post_internal_cmd = ata_bmdma_post_internal_cmd,
a73984a0 675 .cable_detect = ata_cable_40wire,
669a5db4
JG
676
677 .qc_prep = ata_qc_prep,
678 .qc_issue = opti82c46x_qc_issue_prot,
bda30288 679
0d5ff566 680 .data_xfer = ata_data_xfer,
669a5db4
JG
681
682 .irq_handler = ata_interrupt,
683 .irq_clear = ata_bmdma_irq_clear,
246ce3b6 684 .irq_on = ata_irq_on,
669a5db4
JG
685
686 .port_start = ata_port_start,
669a5db4
JG
687};
688
689
690/**
691 * legacy_init_one - attach a legacy interface
692 * @port: port number
693 * @io: I/O port start
694 * @ctrl: control port
695 * @irq: interrupt line
696 *
697 * Register an ISA bus IDE interface. Such interfaces are PIO and we
698 * assume do not support IRQ sharing.
699 */
700
701static __init int legacy_init_one(int port, unsigned long io, unsigned long ctrl, int irq)
702{
703 struct legacy_data *ld = &legacy_data[nr_legacy_host];
5d728824
TH
704 struct ata_host *host;
705 struct ata_port *ap;
669a5db4 706 struct platform_device *pdev;
669a5db4 707 struct ata_port_operations *ops = &legacy_port_ops;
0d5ff566 708 void __iomem *io_addr, *ctrl_addr;
669a5db4
JG
709 int pio_modes = pio_mask;
710 u32 mask = (1 << port);
f834e49f 711 u32 iordy = (iordy_mask & mask) ? 0: ATA_FLAG_NO_IORDY;
24dc5f33 712 int ret;
669a5db4
JG
713
714 pdev = platform_device_register_simple(DRV_NAME, nr_legacy_host, NULL, 0);
24dc5f33
TH
715 if (IS_ERR(pdev))
716 return PTR_ERR(pdev);
717
718 ret = -EBUSY;
719 if (devm_request_region(&pdev->dev, io, 8, "pata_legacy") == NULL ||
720 devm_request_region(&pdev->dev, ctrl, 1, "pata_legacy") == NULL)
721 goto fail;
669a5db4 722
0d5ff566
TH
723 ret = -ENOMEM;
724 io_addr = devm_ioport_map(&pdev->dev, io, 8);
725 ctrl_addr = devm_ioport_map(&pdev->dev, ctrl, 1);
726 if (!io_addr || !ctrl_addr)
727 goto fail;
728
669a5db4
JG
729 if (ht6560a & mask) {
730 ops = &ht6560a_port_ops;
731 pio_modes = 0x07;
f834e49f 732 iordy = ATA_FLAG_NO_IORDY;
669a5db4
JG
733 }
734 if (ht6560b & mask) {
735 ops = &ht6560b_port_ops;
736 pio_modes = 0x1F;
737 }
738 if (opti82c611a & mask) {
739 ops = &opti82c611a_port_ops;
740 pio_modes = 0x0F;
741 }
742 if (opti82c46x & mask) {
743 ops = &opti82c46x_port_ops;
744 pio_modes = 0x0F;
745 }
746
747 /* Probe for automatically detectable controllers */
85cd7251 748
669a5db4
JG
749 if (io == 0x1F0 && ops == &legacy_port_ops) {
750 unsigned long flags;
751
752 local_irq_save(flags);
753
754 /* Probes */
755 inb(0x1F5);
756 outb(inb(0x1F2) | 0x80, 0x1F2);
757 inb(0x1F2);
758 inb(0x3F6);
759 inb(0x3F6);
760 inb(0x1F2);
761 inb(0x1F2);
762
763 if ((inb(0x1F2) & 0x80) == 0) {
764 /* PDC20230c or 20630 ? */
765 printk(KERN_INFO "PDC20230-C/20630 VLB ATA controller detected.\n");
766 pio_modes = 0x07;
767 ops = &pdc20230_port_ops;
f834e49f 768 iordy = ATA_FLAG_NO_IORDY;
669a5db4
JG
769 udelay(100);
770 inb(0x1F5);
771 } else {
772 outb(0x55, 0x1F2);
773 inb(0x1F2);
774 inb(0x1F2);
775 if (inb(0x1F2) == 0x00) {
776 printk(KERN_INFO "PDC20230-B VLB ATA controller detected.\n");
777 }
778 }
779 local_irq_restore(flags);
780 }
781
782
783 /* Chip does mode setting by command snooping */
784 if (ops == &legacy_port_ops && (autospeed & mask))
785 ops = &simple_port_ops;
f834e49f 786
5d728824
TH
787 ret = -ENOMEM;
788 host = ata_host_alloc(&pdev->dev, 1);
789 if (!host)
790 goto fail;
791 ap = host->ports[0];
792
793 ap->ops = ops;
794 ap->pio_mask = pio_modes;
795 ap->flags |= ATA_FLAG_SLAVE_POSS | iordy;
796 ap->ioaddr.cmd_addr = io_addr;
797 ap->ioaddr.altstatus_addr = ctrl_addr;
798 ap->ioaddr.ctl_addr = ctrl_addr;
799 ata_std_ports(&ap->ioaddr);
800 ap->private_data = ld;
801
cbcdd875
TH
802 ata_port_desc(ap, "cmd 0x%lx ctl 0x%lx", io, ctrl);
803
5d728824
TH
804 ret = ata_host_activate(host, irq, ata_interrupt, 0, &legacy_sht);
805 if (ret)
669a5db4 806 goto fail;
24dc5f33 807
669a5db4
JG
808 legacy_host[nr_legacy_host++] = dev_get_drvdata(&pdev->dev);
809 ld->platform_dev = pdev;
810 return 0;
811
812fail:
813 platform_device_unregister(pdev);
669a5db4
JG
814 return ret;
815}
816
817/**
818 * legacy_check_special_cases - ATA special cases
819 * @p: PCI device to check
820 * @master: set this if we find an ATA master
821 * @master: set this if we find an ATA secondary
822 *
823 * A small number of vendors implemented early PCI ATA interfaces on bridge logic
824 * without the ATA interface being PCI visible. Where we have a matching PCI driver
825 * we must skip the relevant device here. If we don't know about it then the legacy
826 * driver is the right driver anyway.
827 */
828
829static void legacy_check_special_cases(struct pci_dev *p, int *primary, int *secondary)
830{
831 /* Cyrix CS5510 pre SFF MWDMA ATA on the bridge */
832 if (p->vendor == 0x1078 && p->device == 0x0000) {
833 *primary = *secondary = 1;
834 return;
835 }
836 /* Cyrix CS5520 pre SFF MWDMA ATA on the bridge */
837 if (p->vendor == 0x1078 && p->device == 0x0002) {
838 *primary = *secondary = 1;
839 return;
840 }
841 /* Intel MPIIX - PIO ATA on non PCI side of bridge */
842 if (p->vendor == 0x8086 && p->device == 0x1234) {
843 u16 r;
844 pci_read_config_word(p, 0x6C, &r);
845 if (r & 0x8000) { /* ATA port enabled */
846 if (r & 0x4000)
847 *secondary = 1;
848 else
849 *primary = 1;
850 }
851 return;
852 }
853}
854
855
856/**
857 * legacy_init - attach legacy interfaces
858 *
859 * Attach legacy IDE interfaces by scanning the usual IRQ/port suspects.
860 * Right now we do not scan the ide0 and ide1 address but should do so
861 * for non PCI systems or systems with no PCI IDE legacy mode devices.
862 * If you fix that note there are special cases to consider like VLB
863 * drivers and CS5510/20.
864 */
865
866static __init int legacy_init(void)
867{
868 int i;
869 int ct = 0;
870 int primary = 0;
871 int secondary = 0;
872 int last_port = NR_HOST;
873
874 struct pci_dev *p = NULL;
875
876 for_each_pci_dev(p) {
877 int r;
878 /* Check for any overlap of the system ATA mappings. Native mode controllers
879 stuck on these addresses or some devices in 'raid' mode won't be found by
880 the storage class test */
881 for (r = 0; r < 6; r++) {
882 if (pci_resource_start(p, r) == 0x1f0)
883 primary = 1;
884 if (pci_resource_start(p, r) == 0x170)
885 secondary = 1;
886 }
887 /* Check for special cases */
888 legacy_check_special_cases(p, &primary, &secondary);
889
890 /* If PCI bus is present then don't probe for tertiary legacy ports */
891 if (probe_all == 0)
892 last_port = 2;
893 }
894
85cd7251 895 /* If an OPTI 82C46X is present find out where the channels are */
669a5db4
JG
896 if (opti82c46x) {
897 static const char *optis[4] = {
898 "3/463MV", "5MV",
899 "5MVA", "5MVB"
900 };
901 u8 chans = 1;
902 u8 ctrl = (opti_syscfg(0x30) & 0xC0) >> 6;
85cd7251 903
669a5db4
JG
904 opti82c46x = 3; /* Assume master and slave first */
905 printk(KERN_INFO DRV_NAME ": Opti 82C46%s chipset support.\n", optis[ctrl]);
906 if (ctrl == 3)
907 chans = (opti_syscfg(0x3F) & 0x20) ? 2 : 1;
908 ctrl = opti_syscfg(0xAC);
909 /* Check enabled and this port is the 465MV port. On the
910 MVB we may have two channels */
911 if (ctrl & 8) {
912 if (ctrl & 4)
913 opti82c46x = 2; /* Slave */
914 else
915 opti82c46x = 1; /* Master */
916 if (chans == 2)
917 opti82c46x = 3; /* Master and Slave */
918 } /* Slave only */
919 else if (chans == 1)
920 opti82c46x = 1;
921 }
922
923 for (i = 0; i < last_port; i++) {
924 /* Skip primary if we have seen a PCI one */
925 if (i == 0 && primary == 1)
926 continue;
927 /* Skip secondary if we have seen a PCI one */
928 if (i == 1 && secondary == 1)
929 continue;
930 if (legacy_init_one(i, legacy_port[i],
931 legacy_port[i] + 0x0206,
932 legacy_irq[i]) == 0)
933 ct++;
934 }
935 if (ct != 0)
936 return 0;
937 return -ENODEV;
938}
939
940static __exit void legacy_exit(void)
941{
942 int i;
943
944 for (i = 0; i < nr_legacy_host; i++) {
945 struct legacy_data *ld = &legacy_data[i];
24dc5f33
TH
946
947 ata_host_detach(legacy_host[i]);
669a5db4
JG
948 platform_device_unregister(ld->platform_dev);
949 if (ld->timing)
950 release_region(ld->timing, 2);
669a5db4
JG
951 }
952}
953
954MODULE_AUTHOR("Alan Cox");
955MODULE_DESCRIPTION("low-level driver for legacy ATA");
956MODULE_LICENSE("GPL");
957MODULE_VERSION(DRV_VERSION);
958
959module_param(probe_all, int, 0);
960module_param(autospeed, int, 0);
961module_param(ht6560a, int, 0);
962module_param(ht6560b, int, 0);
963module_param(opti82c611a, int, 0);
964module_param(opti82c46x, int, 0);
965module_param(pio_mask, int, 0);
f834e49f 966module_param(iordy_mask, int, 0);
669a5db4
JG
967
968module_init(legacy_init);
969module_exit(legacy_exit);
970