]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/ata/pata_optidma.c
libata-link: linkify config/EH related functions
[mirror_ubuntu-artful-kernel.git] / drivers / ata / pata_optidma.c
CommitLineData
669a5db4
JG
1/*
2 * pata_optidma.c - Opti DMA PATA for new ATA layer
3 * (C) 2006 Red Hat Inc
4 * Alan Cox <alan@redhat.com>
5 *
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.
10 *
11 * This driver should support Viper-N+, FireStar, FireStar Plus.
12 *
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.
17 *
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
23 *
24 */
25
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>
34
35#define DRV_NAME "pata_optidma"
5c25bf0d 36#define DRV_VERSION "0.3.2"
669a5db4
JG
37
38enum {
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 */
44};
45
46static int pci_clock; /* 0 = 33 1 = 25 */
47
48/**
49 * optidma_pre_reset - probe begin
cc0680a5 50 * @link: ATA link
d4b2bab4 51 * @deadline: deadline jiffies for the operation
669a5db4
JG
52 *
53 * Set up cable type and use generic probe init
54 */
85cd7251 55
cc0680a5 56static int optidma_pre_reset(struct ata_link *link, unsigned long deadline)
669a5db4 57{
cc0680a5 58 struct ata_port *ap = link->ap;
669a5db4 59 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
85cd7251 60 static const struct pci_bits optidma_enable_bits = {
669a5db4
JG
61 0x40, 1, 0x08, 0x00
62 };
63
c961922b
AC
64 if (ap->port_no && !pci_test_config_bits(pdev, &optidma_enable_bits))
65 return -ENOENT;
66
cc0680a5 67 return ata_std_prereset(link, deadline);
669a5db4
JG
68}
69
70/**
71 * optidma_probe_reset - probe reset
72 * @ap: ATA port
73 *
74 * Perform the ATA probe and bus reset sequence plus specific handling
75 * for this hardware. The Opti needs little handling - we have no UDMA66
76 * capability that needs cable detection. All we must do is check the port
77 * is enabled.
78 */
79
80static void optidma_error_handler(struct ata_port *ap)
81{
82 ata_bmdma_drive_eh(ap, optidma_pre_reset, ata_std_softreset, NULL, ata_std_postreset);
83}
84
85/**
86 * optidma_unlock - unlock control registers
87 * @ap: ATA port
88 *
89 * Unlock the control register block for this adapter. Registers must not
90 * be unlocked in a situation where libata might look at them.
91 */
85cd7251 92
669a5db4
JG
93static void optidma_unlock(struct ata_port *ap)
94{
0d5ff566 95 void __iomem *regio = ap->ioaddr.cmd_addr;
85cd7251 96
669a5db4 97 /* These 3 unlock the control register access */
0d5ff566
TH
98 ioread16(regio + 1);
99 ioread16(regio + 1);
100 iowrite8(3, regio + 2);
669a5db4
JG
101}
102
103/**
104 * optidma_lock - issue temporary relock
105 * @ap: ATA port
106 *
107 * Re-lock the configuration register settings.
108 */
85cd7251 109
669a5db4
JG
110static void optidma_lock(struct ata_port *ap)
111{
0d5ff566 112 void __iomem *regio = ap->ioaddr.cmd_addr;
85cd7251 113
669a5db4 114 /* Relock */
0d5ff566 115 iowrite8(0x83, regio + 2);
669a5db4
JG
116}
117
118/**
5c25bf0d 119 * optidma_mode_setup - set mode data
669a5db4
JG
120 * @ap: ATA interface
121 * @adev: ATA device
122 * @mode: Mode to set
123 *
124 * Called to do the DMA or PIO mode setup. Timing numbers are all
125 * pre computed to keep the code clean. There are two tables depending
126 * on the hardware clock speed.
127 *
128 * WARNING: While we do this the IDE registers vanish. If we take an
129 * IRQ here we depend on the host set locking to avoid catastrophe.
130 */
131
5c25bf0d 132static void optidma_mode_setup(struct ata_port *ap, struct ata_device *adev, u8 mode)
669a5db4
JG
133{
134 struct ata_device *pair = ata_dev_pair(adev);
135 int pio = adev->pio_mode - XFER_PIO_0;
136 int dma = adev->dma_mode - XFER_MW_DMA_0;
0d5ff566 137 void __iomem *regio = ap->ioaddr.cmd_addr;
669a5db4
JG
138 u8 addr;
139
140 /* Address table precomputed with a DCLK of 2 */
141 static const u8 addr_timing[2][5] = {
142 { 0x30, 0x20, 0x20, 0x10, 0x10 },
143 { 0x20, 0x20, 0x10, 0x10, 0x10 }
144 };
145 static const u8 data_rec_timing[2][5] = {
146 { 0x59, 0x46, 0x30, 0x20, 0x20 },
147 { 0x46, 0x32, 0x20, 0x20, 0x10 }
148 };
149 static const u8 dma_data_rec_timing[2][3] = {
150 { 0x76, 0x20, 0x20 },
151 { 0x54, 0x20, 0x10 }
152 };
153
154 /* Switch from IDE to control mode */
155 optidma_unlock(ap);
85cd7251 156
669a5db4
JG
157
158 /*
159 * As with many controllers the address setup time is shared
160 * and must suit both devices if present. FIXME: Check if we
161 * need to look at slowest of PIO/DMA mode of either device
162 */
163
164 if (mode >= XFER_MW_DMA_0)
165 addr = 0;
166 else
167 addr = addr_timing[pci_clock][pio];
85cd7251 168
669a5db4
JG
169 if (pair) {
170 u8 pair_addr;
171 /* Hardware constraint */
172 if (pair->dma_mode)
173 pair_addr = 0;
174 else
175 pair_addr = addr_timing[pci_clock][pair->pio_mode - XFER_PIO_0];
176 if (pair_addr > addr)
177 addr = pair_addr;
178 }
85cd7251 179
669a5db4
JG
180 /* Commence primary programming sequence */
181 /* First we load the device number into the timing select */
0d5ff566 182 iowrite8(adev->devno, regio + MISC_REG);
669a5db4
JG
183 /* Now we load the data timings into read data/write data */
184 if (mode < XFER_MW_DMA_0) {
0d5ff566
TH
185 iowrite8(data_rec_timing[pci_clock][pio], regio + READ_REG);
186 iowrite8(data_rec_timing[pci_clock][pio], regio + WRITE_REG);
669a5db4 187 } else if (mode < XFER_UDMA_0) {
0d5ff566
TH
188 iowrite8(dma_data_rec_timing[pci_clock][dma], regio + READ_REG);
189 iowrite8(dma_data_rec_timing[pci_clock][dma], regio + WRITE_REG);
669a5db4
JG
190 }
191 /* Finally we load the address setup into the misc register */
0d5ff566 192 iowrite8(addr | adev->devno, regio + MISC_REG);
669a5db4
JG
193
194 /* Programming sequence complete, timing 0 dev 0, timing 1 dev 1 */
0d5ff566 195 iowrite8(0x85, regio + CNTRL_REG);
85cd7251 196
669a5db4
JG
197 /* Switch back to IDE mode */
198 optidma_lock(ap);
85cd7251 199
669a5db4
JG
200 /* Note: at this point our programming is incomplete. We are
201 not supposed to program PCI 0x43 "things we hacked onto the chip"
202 until we've done both sets of PIO/DMA timings */
203}
204
205/**
5c25bf0d 206 * optiplus_mode_setup - DMA setup for Firestar Plus
669a5db4
JG
207 * @ap: ATA port
208 * @adev: device
209 * @mode: desired mode
210 *
211 * The Firestar plus has additional UDMA functionality for UDMA0-2 and
212 * requires we do some additional work. Because the base work we must do
213 * is mostly shared we wrap the Firestar setup functionality in this
214 * one
215 */
216
5c25bf0d 217static void optiplus_mode_setup(struct ata_port *ap, struct ata_device *adev, u8 mode)
669a5db4
JG
218{
219 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
220 u8 udcfg;
221 u8 udslave;
222 int dev2 = 2 * adev->devno;
223 int unit = 2 * ap->port_no + adev->devno;
224 int udma = mode - XFER_UDMA_0;
85cd7251 225
669a5db4
JG
226 pci_read_config_byte(pdev, 0x44, &udcfg);
227 if (mode <= XFER_UDMA_0) {
228 udcfg &= ~(1 << unit);
5c25bf0d 229 optidma_mode_setup(ap, adev, adev->dma_mode);
669a5db4
JG
230 } else {
231 udcfg |= (1 << unit);
232 if (ap->port_no) {
233 pci_read_config_byte(pdev, 0x45, &udslave);
234 udslave &= ~(0x03 << dev2);
235 udslave |= (udma << dev2);
236 pci_write_config_byte(pdev, 0x45, udslave);
237 } else {
238 udcfg &= ~(0x30 << dev2);
239 udcfg |= (udma << dev2);
240 }
241 }
242 pci_write_config_byte(pdev, 0x44, udcfg);
243}
244
245/**
246 * optidma_set_pio_mode - PIO setup callback
247 * @ap: ATA port
248 * @adev: Device
249 *
250 * The libata core provides separate functions for handling PIO and
251 * DMA programming. The architecture of the Firestar makes it easier
252 * for us to have a common function so we provide wrappers
253 */
85cd7251 254
669a5db4
JG
255static void optidma_set_pio_mode(struct ata_port *ap, struct ata_device *adev)
256{
5c25bf0d 257 optidma_mode_setup(ap, adev, adev->pio_mode);
669a5db4
JG
258}
259
260/**
261 * optidma_set_dma_mode - DMA setup callback
262 * @ap: ATA port
263 * @adev: Device
264 *
265 * The libata core provides separate functions for handling PIO and
266 * DMA programming. The architecture of the Firestar makes it easier
267 * for us to have a common function so we provide wrappers
268 */
85cd7251 269
669a5db4
JG
270static void optidma_set_dma_mode(struct ata_port *ap, struct ata_device *adev)
271{
5c25bf0d 272 optidma_mode_setup(ap, adev, adev->dma_mode);
669a5db4
JG
273}
274
275/**
276 * optiplus_set_pio_mode - PIO setup callback
277 * @ap: ATA port
278 * @adev: Device
279 *
280 * The libata core provides separate functions for handling PIO and
281 * DMA programming. The architecture of the Firestar makes it easier
282 * for us to have a common function so we provide wrappers
283 */
85cd7251 284
669a5db4
JG
285static void optiplus_set_pio_mode(struct ata_port *ap, struct ata_device *adev)
286{
5c25bf0d 287 optiplus_mode_setup(ap, adev, adev->pio_mode);
669a5db4
JG
288}
289
290/**
291 * optiplus_set_dma_mode - DMA setup callback
292 * @ap: ATA port
293 * @adev: Device
294 *
295 * The libata core provides separate functions for handling PIO and
296 * DMA programming. The architecture of the Firestar makes it easier
297 * for us to have a common function so we provide wrappers
298 */
85cd7251 299
669a5db4
JG
300static void optiplus_set_dma_mode(struct ata_port *ap, struct ata_device *adev)
301{
5c25bf0d 302 optiplus_mode_setup(ap, adev, adev->dma_mode);
669a5db4
JG
303}
304
305/**
306 * optidma_make_bits - PCI setup helper
307 * @adev: ATA device
308 *
309 * Turn the ATA device setup into PCI configuration bits
310 * for register 0x43 and return the two bits needed.
311 */
85cd7251 312
669a5db4
JG
313static u8 optidma_make_bits43(struct ata_device *adev)
314{
315 static const u8 bits43[5] = {
316 0, 0, 0, 1, 2
317 };
318 if (!ata_dev_enabled(adev))
319 return 0;
320 if (adev->dma_mode)
321 return adev->dma_mode - XFER_MW_DMA_0;
322 return bits43[adev->pio_mode - XFER_PIO_0];
323}
324
325/**
5c25bf0d 326 * optidma_set_mode - mode setup
0260731f 327 * @link: link to set up
669a5db4 328 *
5c25bf0d
AC
329 * Use the standard setup to tune the chipset and then finalise the
330 * configuration by writing the nibble of extra bits of data into
331 * the chip.
669a5db4 332 */
85cd7251 333
0260731f 334static int optidma_set_mode(struct ata_link *link, struct ata_device **r_failed)
669a5db4 335{
0260731f 336 struct ata_port *ap = link->ap;
669a5db4
JG
337 u8 r;
338 int nybble = 4 * ap->port_no;
339 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
0260731f 340 int rc = ata_do_set_mode(link, r_failed);
5c25bf0d
AC
341 if (rc == 0) {
342 pci_read_config_byte(pdev, 0x43, &r);
343
344 r &= (0x0F << nybble);
0260731f
TH
345 r |= (optidma_make_bits43(&link->device[0]) +
346 (optidma_make_bits43(&link->device[0]) << 2)) << nybble;
5c25bf0d
AC
347 pci_write_config_byte(pdev, 0x43, r);
348 }
349 return rc;
669a5db4
JG
350}
351
352static struct scsi_host_template optidma_sht = {
353 .module = THIS_MODULE,
354 .name = DRV_NAME,
355 .ioctl = ata_scsi_ioctl,
356 .queuecommand = ata_scsi_queuecmd,
357 .can_queue = ATA_DEF_QUEUE,
358 .this_id = ATA_SHT_THIS_ID,
359 .sg_tablesize = LIBATA_MAX_PRD,
669a5db4
JG
360 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
361 .emulated = ATA_SHT_EMULATED,
362 .use_clustering = ATA_SHT_USE_CLUSTERING,
363 .proc_name = DRV_NAME,
364 .dma_boundary = ATA_DMA_BOUNDARY,
365 .slave_configure = ata_scsi_slave_config,
afdfe899 366 .slave_destroy = ata_scsi_slave_destroy,
669a5db4
JG
367 .bios_param = ata_std_bios_param,
368};
369
370static struct ata_port_operations optidma_port_ops = {
371 .port_disable = ata_port_disable,
372 .set_piomode = optidma_set_pio_mode,
373 .set_dmamode = optidma_set_dma_mode,
374
375 .tf_load = ata_tf_load,
376 .tf_read = ata_tf_read,
377 .check_status = ata_check_status,
378 .exec_command = ata_exec_command,
379 .dev_select = ata_std_dev_select,
380
381 .freeze = ata_bmdma_freeze,
382 .thaw = ata_bmdma_thaw,
383 .post_internal_cmd = ata_bmdma_post_internal_cmd,
384 .error_handler = optidma_error_handler,
5c25bf0d
AC
385 .set_mode = optidma_set_mode,
386 .cable_detect = ata_cable_40wire,
669a5db4
JG
387
388 .bmdma_setup = ata_bmdma_setup,
389 .bmdma_start = ata_bmdma_start,
390 .bmdma_stop = ata_bmdma_stop,
391 .bmdma_status = ata_bmdma_status,
392
393 .qc_prep = ata_qc_prep,
394 .qc_issue = ata_qc_issue_prot,
bda30288 395
0d5ff566 396 .data_xfer = ata_data_xfer,
669a5db4
JG
397
398 .irq_handler = ata_interrupt,
399 .irq_clear = ata_bmdma_irq_clear,
246ce3b6
AI
400 .irq_on = ata_irq_on,
401 .irq_ack = ata_irq_ack,
669a5db4
JG
402
403 .port_start = ata_port_start,
669a5db4
JG
404};
405
406static struct ata_port_operations optiplus_port_ops = {
407 .port_disable = ata_port_disable,
408 .set_piomode = optiplus_set_pio_mode,
409 .set_dmamode = optiplus_set_dma_mode,
410
411 .tf_load = ata_tf_load,
412 .tf_read = ata_tf_read,
413 .check_status = ata_check_status,
414 .exec_command = ata_exec_command,
415 .dev_select = ata_std_dev_select,
416
417 .freeze = ata_bmdma_freeze,
418 .thaw = ata_bmdma_thaw,
419 .post_internal_cmd = ata_bmdma_post_internal_cmd,
420 .error_handler = optidma_error_handler,
5c25bf0d
AC
421 .set_mode = optidma_set_mode,
422 .cable_detect = ata_cable_40wire,
669a5db4
JG
423
424 .bmdma_setup = ata_bmdma_setup,
425 .bmdma_start = ata_bmdma_start,
426 .bmdma_stop = ata_bmdma_stop,
427 .bmdma_status = ata_bmdma_status,
428
429 .qc_prep = ata_qc_prep,
430 .qc_issue = ata_qc_issue_prot,
bda30288 431
0d5ff566 432 .data_xfer = ata_data_xfer,
669a5db4
JG
433
434 .irq_handler = ata_interrupt,
435 .irq_clear = ata_bmdma_irq_clear,
246ce3b6
AI
436 .irq_on = ata_irq_on,
437 .irq_ack = ata_irq_ack,
669a5db4
JG
438
439 .port_start = ata_port_start,
669a5db4
JG
440};
441
442/**
443 * optiplus_with_udma - Look for UDMA capable setup
444 * @pdev; ATA controller
445 */
85cd7251 446
669a5db4
JG
447static int optiplus_with_udma(struct pci_dev *pdev)
448{
449 u8 r;
450 int ret = 0;
451 int ioport = 0x22;
452 struct pci_dev *dev1;
85cd7251 453
669a5db4
JG
454 /* Find function 1 */
455 dev1 = pci_get_device(0x1045, 0xC701, NULL);
456 if(dev1 == NULL)
457 return 0;
85cd7251 458
669a5db4
JG
459 /* Rev must be >= 0x10 */
460 pci_read_config_byte(dev1, 0x08, &r);
461 if (r < 0x10)
462 goto done_nomsg;
463 /* Read the chipset system configuration to check our mode */
464 pci_read_config_byte(dev1, 0x5F, &r);
465 ioport |= (r << 8);
466 outb(0x10, ioport);
467 /* Must be 66Mhz sync */
468 if ((inb(ioport + 2) & 1) == 0)
469 goto done;
470
471 /* Check the ATA arbitration/timing is suitable */
472 pci_read_config_byte(pdev, 0x42, &r);
473 if ((r & 0x36) != 0x36)
474 goto done;
475 pci_read_config_byte(dev1, 0x52, &r);
476 if (r & 0x80) /* IDEDIR disabled */
477 ret = 1;
85cd7251 478done:
669a5db4
JG
479 printk(KERN_WARNING "UDMA not supported in this configuration.\n");
480done_nomsg: /* Wrong chip revision */
481 pci_dev_put(dev1);
482 return ret;
483}
484
485static int optidma_init_one(struct pci_dev *dev, const struct pci_device_id *id)
486{
1626aeb8 487 static const struct ata_port_info info_82c700 = {
669a5db4 488 .sht = &optidma_sht,
1d2808fd 489 .flags = ATA_FLAG_SLAVE_POSS,
669a5db4
JG
490 .pio_mask = 0x1f,
491 .mwdma_mask = 0x07,
492 .port_ops = &optidma_port_ops
493 };
1626aeb8 494 static const struct ata_port_info info_82c700_udma = {
669a5db4 495 .sht = &optidma_sht,
1d2808fd 496 .flags = ATA_FLAG_SLAVE_POSS,
669a5db4
JG
497 .pio_mask = 0x1f,
498 .mwdma_mask = 0x07,
499 .udma_mask = 0x07,
500 .port_ops = &optiplus_port_ops
501 };
1626aeb8 502 const struct ata_port_info *ppi[] = { &info_82c700, NULL };
669a5db4
JG
503 static int printed_version;
504
505 if (!printed_version++)
506 dev_printk(KERN_DEBUG, &dev->dev, "version " DRV_VERSION "\n");
507
508 /* Fixed location chipset magic */
509 inw(0x1F1);
510 inw(0x1F1);
511 pci_clock = inb(0x1F5) & 1; /* 0 = 33Mhz, 1 = 25Mhz */
85cd7251 512
669a5db4 513 if (optiplus_with_udma(dev))
1626aeb8 514 ppi[0] = &info_82c700_udma;
669a5db4 515
1626aeb8 516 return ata_pci_init_one(dev, ppi);
669a5db4
JG
517}
518
519static const struct pci_device_id optidma[] = {
2d2744fc
JG
520 { PCI_VDEVICE(OPTI, 0xD568), }, /* Opti 82C700 */
521
522 { },
669a5db4
JG
523};
524
525static struct pci_driver optidma_pci_driver = {
2d2744fc 526 .name = DRV_NAME,
669a5db4
JG
527 .id_table = optidma,
528 .probe = optidma_init_one,
30ced0f0 529 .remove = ata_pci_remove_one,
438ac6d5 530#ifdef CONFIG_PM
30ced0f0
AC
531 .suspend = ata_pci_device_suspend,
532 .resume = ata_pci_device_resume,
438ac6d5 533#endif
669a5db4
JG
534};
535
536static int __init optidma_init(void)
537{
538 return pci_register_driver(&optidma_pci_driver);
539}
540
669a5db4
JG
541static void __exit optidma_exit(void)
542{
543 pci_unregister_driver(&optidma_pci_driver);
544}
545
669a5db4
JG
546MODULE_AUTHOR("Alan Cox");
547MODULE_DESCRIPTION("low-level driver for Opti Firestar/Firestar Plus");
548MODULE_LICENSE("GPL");
549MODULE_DEVICE_TABLE(pci, optidma);
550MODULE_VERSION(DRV_VERSION);
551
552module_init(optidma_init);
553module_exit(optidma_exit);