allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / drivers / ata / pata_optidma.c
blob3093b02286ce93289a0bffd9934300b17472b734
1 /*
2 * pata_optidma.c - Opti DMA PATA for new ATA layer
3 * (C) 2006 Red Hat Inc
4 * Alan Cox <alan@redhat.com>
6 * The Opti DMA controllers are related to the older PIO PCI controllers
7 * and indeed the VLB ones. The main differences are that the timing
8 * numbers are now based off PCI clocks not VLB and differ, and that
9 * MWDMA is supported.
11 * This driver should support Viper-N+, FireStar, FireStar Plus.
13 * These devices support virtual DMA for read (aka the CS5520). Later
14 * chips support UDMA33, but only if the rest of the board logic does,
15 * so you have to get this right. We don't support the virtual DMA
16 * but we do handle UDMA.
18 * Bits that are worth knowing
19 * Most control registers are shadowed into I/O registers
20 * 0x1F5 bit 0 tells you if the PCI/VLB clock is 33 or 25Mhz
21 * Virtual DMA registers *move* between rev 0x02 and rev 0x10
22 * UDMA requires a 66MHz FSB
26 #include <linux/kernel.h>
27 #include <linux/module.h>
28 #include <linux/pci.h>
29 #include <linux/init.h>
30 #include <linux/blkdev.h>
31 #include <linux/delay.h>
32 #include <scsi/scsi_host.h>
33 #include <linux/libata.h>
35 #define DRV_NAME "pata_optidma"
36 #define DRV_VERSION "0.3.2"
38 enum {
39 READ_REG = 0, /* index of Read cycle timing register */
40 WRITE_REG = 1, /* index of Write cycle timing register */
41 CNTRL_REG = 3, /* index of Control register */
42 STRAP_REG = 5, /* index of Strap register */
43 MISC_REG = 6 /* index of Miscellaneous register */
46 static int pci_clock; /* 0 = 33 1 = 25 */
48 /**
49 * optidma_pre_reset - probe begin
50 * @ap: ATA port
51 * @deadline: deadline jiffies for the operation
53 * Set up cable type and use generic probe init
56 static int optidma_pre_reset(struct ata_port *ap, unsigned long deadline)
58 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
59 static const struct pci_bits optidma_enable_bits = {
60 0x40, 1, 0x08, 0x00
63 if (ap->port_no && !pci_test_config_bits(pdev, &optidma_enable_bits))
64 return -ENOENT;
66 return ata_std_prereset(ap, deadline);
69 /**
70 * optidma_probe_reset - probe reset
71 * @ap: ATA port
73 * Perform the ATA probe and bus reset sequence plus specific handling
74 * for this hardware. The Opti needs little handling - we have no UDMA66
75 * capability that needs cable detection. All we must do is check the port
76 * is enabled.
79 static void optidma_error_handler(struct ata_port *ap)
81 ata_bmdma_drive_eh(ap, optidma_pre_reset, ata_std_softreset, NULL, ata_std_postreset);
84 /**
85 * optidma_unlock - unlock control registers
86 * @ap: ATA port
88 * Unlock the control register block for this adapter. Registers must not
89 * be unlocked in a situation where libata might look at them.
92 static void optidma_unlock(struct ata_port *ap)
94 void __iomem *regio = ap->ioaddr.cmd_addr;
96 /* These 3 unlock the control register access */
97 ioread16(regio + 1);
98 ioread16(regio + 1);
99 iowrite8(3, regio + 2);
103 * optidma_lock - issue temporary relock
104 * @ap: ATA port
106 * Re-lock the configuration register settings.
109 static void optidma_lock(struct ata_port *ap)
111 void __iomem *regio = ap->ioaddr.cmd_addr;
113 /* Relock */
114 iowrite8(0x83, regio + 2);
118 * optidma_mode_setup - set mode data
119 * @ap: ATA interface
120 * @adev: ATA device
121 * @mode: Mode to set
123 * Called to do the DMA or PIO mode setup. Timing numbers are all
124 * pre computed to keep the code clean. There are two tables depending
125 * on the hardware clock speed.
127 * WARNING: While we do this the IDE registers vanish. If we take an
128 * IRQ here we depend on the host set locking to avoid catastrophe.
131 static void optidma_mode_setup(struct ata_port *ap, struct ata_device *adev, u8 mode)
133 struct ata_device *pair = ata_dev_pair(adev);
134 int pio = adev->pio_mode - XFER_PIO_0;
135 int dma = adev->dma_mode - XFER_MW_DMA_0;
136 void __iomem *regio = ap->ioaddr.cmd_addr;
137 u8 addr;
139 /* Address table precomputed with a DCLK of 2 */
140 static const u8 addr_timing[2][5] = {
141 { 0x30, 0x20, 0x20, 0x10, 0x10 },
142 { 0x20, 0x20, 0x10, 0x10, 0x10 }
144 static const u8 data_rec_timing[2][5] = {
145 { 0x59, 0x46, 0x30, 0x20, 0x20 },
146 { 0x46, 0x32, 0x20, 0x20, 0x10 }
148 static const u8 dma_data_rec_timing[2][3] = {
149 { 0x76, 0x20, 0x20 },
150 { 0x54, 0x20, 0x10 }
153 /* Switch from IDE to control mode */
154 optidma_unlock(ap);
158 * As with many controllers the address setup time is shared
159 * and must suit both devices if present. FIXME: Check if we
160 * need to look at slowest of PIO/DMA mode of either device
163 if (mode >= XFER_MW_DMA_0)
164 addr = 0;
165 else
166 addr = addr_timing[pci_clock][pio];
168 if (pair) {
169 u8 pair_addr;
170 /* Hardware constraint */
171 if (pair->dma_mode)
172 pair_addr = 0;
173 else
174 pair_addr = addr_timing[pci_clock][pair->pio_mode - XFER_PIO_0];
175 if (pair_addr > addr)
176 addr = pair_addr;
179 /* Commence primary programming sequence */
180 /* First we load the device number into the timing select */
181 iowrite8(adev->devno, regio + MISC_REG);
182 /* Now we load the data timings into read data/write data */
183 if (mode < XFER_MW_DMA_0) {
184 iowrite8(data_rec_timing[pci_clock][pio], regio + READ_REG);
185 iowrite8(data_rec_timing[pci_clock][pio], regio + WRITE_REG);
186 } else if (mode < XFER_UDMA_0) {
187 iowrite8(dma_data_rec_timing[pci_clock][dma], regio + READ_REG);
188 iowrite8(dma_data_rec_timing[pci_clock][dma], regio + WRITE_REG);
190 /* Finally we load the address setup into the misc register */
191 iowrite8(addr | adev->devno, regio + MISC_REG);
193 /* Programming sequence complete, timing 0 dev 0, timing 1 dev 1 */
194 iowrite8(0x85, regio + CNTRL_REG);
196 /* Switch back to IDE mode */
197 optidma_lock(ap);
199 /* Note: at this point our programming is incomplete. We are
200 not supposed to program PCI 0x43 "things we hacked onto the chip"
201 until we've done both sets of PIO/DMA timings */
205 * optiplus_mode_setup - DMA setup for Firestar Plus
206 * @ap: ATA port
207 * @adev: device
208 * @mode: desired mode
210 * The Firestar plus has additional UDMA functionality for UDMA0-2 and
211 * requires we do some additional work. Because the base work we must do
212 * is mostly shared we wrap the Firestar setup functionality in this
213 * one
216 static void optiplus_mode_setup(struct ata_port *ap, struct ata_device *adev, u8 mode)
218 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
219 u8 udcfg;
220 u8 udslave;
221 int dev2 = 2 * adev->devno;
222 int unit = 2 * ap->port_no + adev->devno;
223 int udma = mode - XFER_UDMA_0;
225 pci_read_config_byte(pdev, 0x44, &udcfg);
226 if (mode <= XFER_UDMA_0) {
227 udcfg &= ~(1 << unit);
228 optidma_mode_setup(ap, adev, adev->dma_mode);
229 } else {
230 udcfg |= (1 << unit);
231 if (ap->port_no) {
232 pci_read_config_byte(pdev, 0x45, &udslave);
233 udslave &= ~(0x03 << dev2);
234 udslave |= (udma << dev2);
235 pci_write_config_byte(pdev, 0x45, udslave);
236 } else {
237 udcfg &= ~(0x30 << dev2);
238 udcfg |= (udma << dev2);
241 pci_write_config_byte(pdev, 0x44, udcfg);
245 * optidma_set_pio_mode - PIO setup callback
246 * @ap: ATA port
247 * @adev: Device
249 * The libata core provides separate functions for handling PIO and
250 * DMA programming. The architecture of the Firestar makes it easier
251 * for us to have a common function so we provide wrappers
254 static void optidma_set_pio_mode(struct ata_port *ap, struct ata_device *adev)
256 optidma_mode_setup(ap, adev, adev->pio_mode);
260 * optidma_set_dma_mode - DMA setup callback
261 * @ap: ATA port
262 * @adev: Device
264 * The libata core provides separate functions for handling PIO and
265 * DMA programming. The architecture of the Firestar makes it easier
266 * for us to have a common function so we provide wrappers
269 static void optidma_set_dma_mode(struct ata_port *ap, struct ata_device *adev)
271 optidma_mode_setup(ap, adev, adev->dma_mode);
275 * optiplus_set_pio_mode - PIO setup callback
276 * @ap: ATA port
277 * @adev: Device
279 * The libata core provides separate functions for handling PIO and
280 * DMA programming. The architecture of the Firestar makes it easier
281 * for us to have a common function so we provide wrappers
284 static void optiplus_set_pio_mode(struct ata_port *ap, struct ata_device *adev)
286 optiplus_mode_setup(ap, adev, adev->pio_mode);
290 * optiplus_set_dma_mode - DMA setup callback
291 * @ap: ATA port
292 * @adev: Device
294 * The libata core provides separate functions for handling PIO and
295 * DMA programming. The architecture of the Firestar makes it easier
296 * for us to have a common function so we provide wrappers
299 static void optiplus_set_dma_mode(struct ata_port *ap, struct ata_device *adev)
301 optiplus_mode_setup(ap, adev, adev->dma_mode);
305 * optidma_make_bits - PCI setup helper
306 * @adev: ATA device
308 * Turn the ATA device setup into PCI configuration bits
309 * for register 0x43 and return the two bits needed.
312 static u8 optidma_make_bits43(struct ata_device *adev)
314 static const u8 bits43[5] = {
315 0, 0, 0, 1, 2
317 if (!ata_dev_enabled(adev))
318 return 0;
319 if (adev->dma_mode)
320 return adev->dma_mode - XFER_MW_DMA_0;
321 return bits43[adev->pio_mode - XFER_PIO_0];
325 * optidma_set_mode - mode setup
326 * @ap: port to set up
328 * Use the standard setup to tune the chipset and then finalise the
329 * configuration by writing the nibble of extra bits of data into
330 * the chip.
333 static int optidma_set_mode(struct ata_port *ap, struct ata_device **r_failed)
335 u8 r;
336 int nybble = 4 * ap->port_no;
337 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
338 int rc = ata_do_set_mode(ap, r_failed);
339 if (rc == 0) {
340 pci_read_config_byte(pdev, 0x43, &r);
342 r &= (0x0F << nybble);
343 r |= (optidma_make_bits43(&ap->device[0]) +
344 (optidma_make_bits43(&ap->device[0]) << 2)) << nybble;
345 pci_write_config_byte(pdev, 0x43, r);
347 return rc;
350 static struct scsi_host_template optidma_sht = {
351 .module = THIS_MODULE,
352 .name = DRV_NAME,
353 .ioctl = ata_scsi_ioctl,
354 .queuecommand = ata_scsi_queuecmd,
355 .can_queue = ATA_DEF_QUEUE,
356 .this_id = ATA_SHT_THIS_ID,
357 .sg_tablesize = LIBATA_MAX_PRD,
358 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
359 .emulated = ATA_SHT_EMULATED,
360 .use_clustering = ATA_SHT_USE_CLUSTERING,
361 .proc_name = DRV_NAME,
362 .dma_boundary = ATA_DMA_BOUNDARY,
363 .slave_configure = ata_scsi_slave_config,
364 .slave_destroy = ata_scsi_slave_destroy,
365 .bios_param = ata_std_bios_param,
368 static struct ata_port_operations optidma_port_ops = {
369 .port_disable = ata_port_disable,
370 .set_piomode = optidma_set_pio_mode,
371 .set_dmamode = optidma_set_dma_mode,
373 .tf_load = ata_tf_load,
374 .tf_read = ata_tf_read,
375 .check_status = ata_check_status,
376 .exec_command = ata_exec_command,
377 .dev_select = ata_std_dev_select,
379 .freeze = ata_bmdma_freeze,
380 .thaw = ata_bmdma_thaw,
381 .post_internal_cmd = ata_bmdma_post_internal_cmd,
382 .error_handler = optidma_error_handler,
383 .set_mode = optidma_set_mode,
384 .cable_detect = ata_cable_40wire,
386 .bmdma_setup = ata_bmdma_setup,
387 .bmdma_start = ata_bmdma_start,
388 .bmdma_stop = ata_bmdma_stop,
389 .bmdma_status = ata_bmdma_status,
391 .qc_prep = ata_qc_prep,
392 .qc_issue = ata_qc_issue_prot,
394 .data_xfer = ata_data_xfer,
396 .irq_handler = ata_interrupt,
397 .irq_clear = ata_bmdma_irq_clear,
398 .irq_on = ata_irq_on,
399 .irq_ack = ata_irq_ack,
401 .port_start = ata_port_start,
404 static struct ata_port_operations optiplus_port_ops = {
405 .port_disable = ata_port_disable,
406 .set_piomode = optiplus_set_pio_mode,
407 .set_dmamode = optiplus_set_dma_mode,
409 .tf_load = ata_tf_load,
410 .tf_read = ata_tf_read,
411 .check_status = ata_check_status,
412 .exec_command = ata_exec_command,
413 .dev_select = ata_std_dev_select,
415 .freeze = ata_bmdma_freeze,
416 .thaw = ata_bmdma_thaw,
417 .post_internal_cmd = ata_bmdma_post_internal_cmd,
418 .error_handler = optidma_error_handler,
419 .set_mode = optidma_set_mode,
420 .cable_detect = ata_cable_40wire,
422 .bmdma_setup = ata_bmdma_setup,
423 .bmdma_start = ata_bmdma_start,
424 .bmdma_stop = ata_bmdma_stop,
425 .bmdma_status = ata_bmdma_status,
427 .qc_prep = ata_qc_prep,
428 .qc_issue = ata_qc_issue_prot,
430 .data_xfer = ata_data_xfer,
432 .irq_handler = ata_interrupt,
433 .irq_clear = ata_bmdma_irq_clear,
434 .irq_on = ata_irq_on,
435 .irq_ack = ata_irq_ack,
437 .port_start = ata_port_start,
441 * optiplus_with_udma - Look for UDMA capable setup
442 * @pdev; ATA controller
445 static int optiplus_with_udma(struct pci_dev *pdev)
447 u8 r;
448 int ret = 0;
449 int ioport = 0x22;
450 struct pci_dev *dev1;
452 /* Find function 1 */
453 dev1 = pci_get_device(0x1045, 0xC701, NULL);
454 if(dev1 == NULL)
455 return 0;
457 /* Rev must be >= 0x10 */
458 pci_read_config_byte(dev1, 0x08, &r);
459 if (r < 0x10)
460 goto done_nomsg;
461 /* Read the chipset system configuration to check our mode */
462 pci_read_config_byte(dev1, 0x5F, &r);
463 ioport |= (r << 8);
464 outb(0x10, ioport);
465 /* Must be 66Mhz sync */
466 if ((inb(ioport + 2) & 1) == 0)
467 goto done;
469 /* Check the ATA arbitration/timing is suitable */
470 pci_read_config_byte(pdev, 0x42, &r);
471 if ((r & 0x36) != 0x36)
472 goto done;
473 pci_read_config_byte(dev1, 0x52, &r);
474 if (r & 0x80) /* IDEDIR disabled */
475 ret = 1;
476 done:
477 printk(KERN_WARNING "UDMA not supported in this configuration.\n");
478 done_nomsg: /* Wrong chip revision */
479 pci_dev_put(dev1);
480 return ret;
483 static int optidma_init_one(struct pci_dev *dev, const struct pci_device_id *id)
485 static const struct ata_port_info info_82c700 = {
486 .sht = &optidma_sht,
487 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
488 .pio_mask = 0x1f,
489 .mwdma_mask = 0x07,
490 .port_ops = &optidma_port_ops
492 static const struct ata_port_info info_82c700_udma = {
493 .sht = &optidma_sht,
494 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
495 .pio_mask = 0x1f,
496 .mwdma_mask = 0x07,
497 .udma_mask = 0x07,
498 .port_ops = &optiplus_port_ops
500 const struct ata_port_info *ppi[] = { &info_82c700, NULL };
501 static int printed_version;
503 if (!printed_version++)
504 dev_printk(KERN_DEBUG, &dev->dev, "version " DRV_VERSION "\n");
506 /* Fixed location chipset magic */
507 inw(0x1F1);
508 inw(0x1F1);
509 pci_clock = inb(0x1F5) & 1; /* 0 = 33Mhz, 1 = 25Mhz */
511 if (optiplus_with_udma(dev))
512 ppi[0] = &info_82c700_udma;
514 return ata_pci_init_one(dev, ppi);
517 static const struct pci_device_id optidma[] = {
518 { PCI_VDEVICE(OPTI, 0xD568), }, /* Opti 82C700 */
520 { },
523 static struct pci_driver optidma_pci_driver = {
524 .name = DRV_NAME,
525 .id_table = optidma,
526 .probe = optidma_init_one,
527 .remove = ata_pci_remove_one,
528 #ifdef CONFIG_PM
529 .suspend = ata_pci_device_suspend,
530 .resume = ata_pci_device_resume,
531 #endif
534 static int __init optidma_init(void)
536 return pci_register_driver(&optidma_pci_driver);
539 static void __exit optidma_exit(void)
541 pci_unregister_driver(&optidma_pci_driver);
544 MODULE_AUTHOR("Alan Cox");
545 MODULE_DESCRIPTION("low-level driver for Opti Firestar/Firestar Plus");
546 MODULE_LICENSE("GPL");
547 MODULE_DEVICE_TABLE(pci, optidma);
548 MODULE_VERSION(DRV_VERSION);
550 module_init(optidma_init);
551 module_exit(optidma_exit);