]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/ide/pci/siimage.c
siimage: add sil_* I/O ops
[mirror_ubuntu-bionic-kernel.git] / drivers / ide / pci / siimage.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * Copyright (C) 2001-2002 Andre Hedrick <andre@linux-ide.org>
3 * Copyright (C) 2003 Red Hat <alan@redhat.com>
075cb655 4 * Copyright (C) 2007 MontaVista Software, Inc.
165701d9 5 * Copyright (C) 2007-2008 Bartlomiej Zolnierkiewicz
1da177e4
LT
6 *
7 * May be copied or modified under the terms of the GNU General Public License
8 *
bf4c796d
JG
9 * Documentation for CMD680:
10 * http://gkernel.sourceforge.net/specs/sii/sii-0680a-v1.31.pdf.bz2
11 *
12 * Documentation for SiI 3112:
13 * http://gkernel.sourceforge.net/specs/sii/3112A_SiI-DS-0095-B2.pdf.bz2
14 *
15 * Errata and other documentation only available under NDA.
1da177e4
LT
16 *
17 *
18 * FAQ Items:
19 * If you are using Marvell SATA-IDE adapters with Maxtor drives
20 * ensure the system is set up for ATA100/UDMA5 not UDMA6.
21 *
22 * If you are using WD drives with SATA bridges you must set the
23 * drive to "Single". "Master" will hang
24 *
25 * If you have strange problems with nVidia chipset systems please
26 * see the SI support documentation and update your system BIOS
3a4fa0a2 27 * if necessary
8693d3e4
AC
28 *
29 * The Dell DRAC4 has some interesting features including effectively hot
30 * unplugging/replugging the virtual CD interface when the DRAC is reset.
31 * This often causes drivers/ide/siimage to panic but is ok with the rather
32 * smarter code in libata.
328dcbb6
BZ
33 *
34 * TODO:
35 * - IORDY fixes
36 * - VDMA support
1da177e4
LT
37 */
38
1da177e4
LT
39#include <linux/types.h>
40#include <linux/module.h>
41#include <linux/pci.h>
1da177e4
LT
42#include <linux/hdreg.h>
43#include <linux/ide.h>
44#include <linux/init.h>
45
46#include <asm/io.h>
47
1da177e4
LT
48/**
49 * pdev_is_sata - check if device is SATA
50 * @pdev: PCI device to check
51 *
52 * Returns true if this is a SATA controller
53 */
54
55static int pdev_is_sata(struct pci_dev *pdev)
56{
438c4702
BZ
57#ifdef CONFIG_BLK_DEV_IDE_SATA
58 switch(pdev->device) {
1da177e4
LT
59 case PCI_DEVICE_ID_SII_3112:
60 case PCI_DEVICE_ID_SII_1210SA:
61 return 1;
62 case PCI_DEVICE_ID_SII_680:
63 return 0;
64 }
65 BUG();
438c4702 66#endif
1da177e4
LT
67 return 0;
68}
438c4702 69
1da177e4
LT
70/**
71 * is_sata - check if hwif is SATA
72 * @hwif: interface to check
73 *
74 * Returns true if this is a SATA controller
75 */
76
77static inline int is_sata(ide_hwif_t *hwif)
78{
36501650 79 return pdev_is_sata(to_pci_dev(hwif->dev));
1da177e4
LT
80}
81
82/**
83 * siimage_selreg - return register base
84 * @hwif: interface
85 * @r: config offset
86 *
87 * Turn a config register offset into the right address in either
88 * PCI space or MMIO space to access the control register in question
89 * Thankfully this is a configuration operation so isnt performance
90 * criticial.
91 */
92
93static unsigned long siimage_selreg(ide_hwif_t *hwif, int r)
94{
95 unsigned long base = (unsigned long)hwif->hwif_data;
96 base += 0xA0 + r;
97 if(hwif->mmio)
98 base += (hwif->channel << 6);
99 else
100 base += (hwif->channel << 4);
101 return base;
102}
103
104/**
105 * siimage_seldev - return register base
106 * @hwif: interface
107 * @r: config offset
108 *
109 * Turn a config register offset into the right address in either
110 * PCI space or MMIO space to access the control register in question
111 * including accounting for the unit shift.
112 */
113
114static inline unsigned long siimage_seldev(ide_drive_t *drive, int r)
115{
116 ide_hwif_t *hwif = HWIF(drive);
117 unsigned long base = (unsigned long)hwif->hwif_data;
118 base += 0xA0 + r;
119 if(hwif->mmio)
120 base += (hwif->channel << 6);
121 else
122 base += (hwif->channel << 4);
123 base |= drive->select.b.unit << drive->select.b.unit;
124 return base;
125}
126
165701d9
BZ
127static u8 sil_ioread8(struct pci_dev *dev, unsigned long addr)
128{
129 u8 tmp = 0;
130
131 if (pci_get_drvdata(dev))
132 tmp = readb((void __iomem *)addr);
133 else
134 pci_read_config_byte(dev, addr, &tmp);
135
136 return tmp;
137}
138
139static u16 sil_ioread16(struct pci_dev *dev, unsigned long addr)
140{
141 u16 tmp = 0;
142
143 if (pci_get_drvdata(dev))
144 tmp = readw((void __iomem *)addr);
145 else
146 pci_read_config_word(dev, addr, &tmp);
147
148 return tmp;
149}
150
151static void sil_iowrite8(struct pci_dev *dev, u8 val, unsigned long addr)
152{
153 if (pci_get_drvdata(dev))
154 writeb(val, (void __iomem *)addr);
155 else
156 pci_write_config_byte(dev, addr, val);
157}
158
159static void sil_iowrite16(struct pci_dev *dev, u16 val, unsigned long addr)
160{
161 if (pci_get_drvdata(dev))
162 writew(val, (void __iomem *)addr);
163 else
164 pci_write_config_word(dev, addr, val);
165}
166
167static void sil_iowrite32(struct pci_dev *dev, u32 val, unsigned long addr)
168{
169 if (pci_get_drvdata(dev))
170 writel(val, (void __iomem *)addr);
171 else
172 pci_write_config_dword(dev, addr, val);
173}
174
1da177e4 175/**
2d5eaa6d
BZ
176 * sil_udma_filter - compute UDMA mask
177 * @drive: IDE device
178 *
179 * Compute the available UDMA speeds for the device on the interface.
1da177e4 180 *
1da177e4 181 * For the CMD680 this depends on the clocking mode (scsc), for the
2d5eaa6d 182 * SI3112 SATA controller life is a bit simpler.
1da177e4 183 */
2d5eaa6d 184
438c4702 185static u8 sil_pata_udma_filter(ide_drive_t *drive)
1da177e4 186{
2d5eaa6d 187 ide_hwif_t *hwif = drive->hwif;
36501650 188 struct pci_dev *dev = to_pci_dev(hwif->dev);
1da177e4 189 unsigned long base = (unsigned long) hwif->hwif_data;
165701d9 190 u8 mask = 0, scsc;
1da177e4 191
165701d9 192 scsc = sil_ioread8(dev, base + (hwif->mmio ? 0x4A : 0x8A));
1da177e4 193
1da177e4 194 if ((scsc & 0x30) == 0x10) /* 133 */
438c4702 195 mask = ATA_UDMA6;
1da177e4 196 else if ((scsc & 0x30) == 0x20) /* 2xPCI */
438c4702 197 mask = ATA_UDMA6;
1da177e4 198 else if ((scsc & 0x30) == 0x00) /* 100 */
438c4702 199 mask = ATA_UDMA5;
1da177e4
LT
200 else /* Disabled ? */
201 BUG();
438c4702 202
2d5eaa6d 203 return mask;
1da177e4
LT
204}
205
438c4702
BZ
206static u8 sil_sata_udma_filter(ide_drive_t *drive)
207{
208 return strstr(drive->id->model, "Maxtor") ? ATA_UDMA5 : ATA_UDMA6;
209}
210
1da177e4 211/**
88b2b32b
BZ
212 * sil_set_pio_mode - set host controller for PIO mode
213 * @drive: drive
214 * @pio: PIO mode number
1da177e4
LT
215 *
216 * Load the timing settings for this device mode into the
217 * controller. If we are in PIO mode 3 or 4 turn on IORDY
218 * monitoring (bit 9). The TF timing is bits 31:16
219 */
328dcbb6 220
88b2b32b 221static void sil_set_pio_mode(ide_drive_t *drive, u8 pio)
1da177e4 222{
328dcbb6
BZ
223 const u16 tf_speed[] = { 0x328a, 0x2283, 0x1281, 0x10c3, 0x10c1 };
224 const u16 data_speed[] = { 0x328a, 0x2283, 0x1104, 0x10c3, 0x10c1 };
225
1da177e4 226 ide_hwif_t *hwif = HWIF(drive);
165701d9 227 struct pci_dev *dev = to_pci_dev(hwif->dev);
a87a87cc 228 ide_drive_t *pair = ide_get_paired_drive(drive);
1da177e4
LT
229 u32 speedt = 0;
230 u16 speedp = 0;
231 unsigned long addr = siimage_seldev(drive, 0x04);
232 unsigned long tfaddr = siimage_selreg(hwif, 0x02);
ffe5415c 233 unsigned long base = (unsigned long)hwif->hwif_data;
328dcbb6 234 u8 tf_pio = pio;
ffe5415c
BZ
235 u8 addr_mask = hwif->channel ? (hwif->mmio ? 0xF4 : 0x84)
236 : (hwif->mmio ? 0xB4 : 0x80);
237 u8 mode = 0;
238 u8 unit = drive->select.b.unit;
328dcbb6
BZ
239
240 /* trim *taskfile* PIO to the slowest of the master/slave */
241 if (pair->present) {
2134758d 242 u8 pair_pio = ide_get_best_pio_mode(pair, 255, 4);
328dcbb6
BZ
243
244 if (pair_pio < tf_pio)
245 tf_pio = pair_pio;
1da177e4 246 }
075cb655 247
328dcbb6
BZ
248 /* cheat for now and use the docs */
249 speedp = data_speed[pio];
250 speedt = tf_speed[tf_pio];
251
165701d9
BZ
252 sil_iowrite16(dev, speedp, addr);
253 sil_iowrite16(dev, speedt, tfaddr);
254
255 /* now set up IORDY */
256 speedp = sil_ioread16(dev, tfaddr - 2);
257 speedp &= ~0x200;
258 if (pio > 2)
259 speedp |= 0x200;
260 sil_iowrite16(dev, speedp, tfaddr - 2);
261
262 mode = sil_ioread8(dev, base + addr_mask);
263 mode &= ~(unit ? 0x30 : 0x03);
264 mode |= (unit ? 0x10 : 0x01);
265 sil_iowrite8(dev, mode, base + addr_mask);
1da177e4
LT
266}
267
1da177e4 268/**
88b2b32b
BZ
269 * sil_set_dma_mode - set host controller for DMA mode
270 * @drive: drive
271 * @speed: DMA mode
1da177e4 272 *
88b2b32b 273 * Tune the SiI chipset for the desired DMA mode.
1da177e4 274 */
f212ff28 275
88b2b32b 276static void sil_set_dma_mode(ide_drive_t *drive, const u8 speed)
1da177e4
LT
277{
278 u8 ultra6[] = { 0x0F, 0x0B, 0x07, 0x05, 0x03, 0x02, 0x01 };
279 u8 ultra5[] = { 0x0C, 0x07, 0x05, 0x04, 0x02, 0x01 };
280 u16 dma[] = { 0x2208, 0x10C2, 0x10C1 };
281
282 ide_hwif_t *hwif = HWIF(drive);
36501650 283 struct pci_dev *dev = to_pci_dev(hwif->dev);
1da177e4
LT
284 u16 ultra = 0, multi = 0;
285 u8 mode = 0, unit = drive->select.b.unit;
1da177e4
LT
286 unsigned long base = (unsigned long)hwif->hwif_data;
287 u8 scsc = 0, addr_mask = ((hwif->channel) ?
288 ((hwif->mmio) ? 0xF4 : 0x84) :
289 ((hwif->mmio) ? 0xB4 : 0x80));
290
291 unsigned long ma = siimage_seldev(drive, 0x08);
292 unsigned long ua = siimage_seldev(drive, 0x0C);
293
165701d9
BZ
294 scsc = sil_ioread8(dev, base + (hwif->mmio ? 0x4A : 0x8A));
295 mode = sil_ioread8(dev, base + addr_mask);
296 multi = sil_ioread16(dev, ma);
297 ultra = sil_ioread16(dev, ua);
1da177e4
LT
298
299 mode &= ~((unit) ? 0x30 : 0x03);
300 ultra &= ~0x3F;
301 scsc = ((scsc & 0x30) == 0x00) ? 0 : 1;
302
303 scsc = is_sata(hwif) ? 1 : scsc;
304
4db90a14
BZ
305 if (speed >= XFER_UDMA_0) {
306 multi = dma[2];
307 ultra |= (scsc ? ultra6[speed - XFER_UDMA_0] :
308 ultra5[speed - XFER_UDMA_0]);
309 mode |= (unit ? 0x30 : 0x03);
310 } else {
311 multi = dma[speed - XFER_MW_DMA_0];
312 mode |= (unit ? 0x20 : 0x02);
1da177e4
LT
313 }
314
165701d9
BZ
315 sil_iowrite8(dev, mode, base + addr_mask);
316 sil_iowrite16(dev, multi, ma);
317 sil_iowrite16(dev, ultra, ua);
1da177e4
LT
318}
319
1da177e4 320/* returns 1 if dma irq issued, 0 otherwise */
5e37bdc0 321static int siimage_io_dma_test_irq(ide_drive_t *drive)
1da177e4
LT
322{
323 ide_hwif_t *hwif = HWIF(drive);
36501650 324 struct pci_dev *dev = to_pci_dev(hwif->dev);
1da177e4
LT
325 u8 dma_altstat = 0;
326 unsigned long addr = siimage_selreg(hwif, 1);
327
328 /* return 1 if INTR asserted */
329 if ((hwif->INB(hwif->dma_status) & 4) == 4)
330 return 1;
331
332 /* return 1 if Device INTR asserted */
36501650 333 pci_read_config_byte(dev, addr, &dma_altstat);
1da177e4
LT
334 if (dma_altstat & 8)
335 return 0; //return 1;
336 return 0;
337}
338
1da177e4 339/**
5e37bdc0 340 * siimage_mmio_dma_test_irq - check we caused an IRQ
1da177e4
LT
341 * @drive: drive we are testing
342 *
343 * Check if we caused an IDE DMA interrupt. We may also have caused
344 * SATA status interrupts, if so we clean them up and continue.
345 */
5e37bdc0
BZ
346
347static int siimage_mmio_dma_test_irq(ide_drive_t *drive)
1da177e4
LT
348{
349 ide_hwif_t *hwif = HWIF(drive);
1da177e4 350 unsigned long addr = siimage_selreg(hwif, 0x1);
835457de
BZ
351 void __iomem *sata_error_addr
352 = (void __iomem *)hwif->sata_scr[SATA_ERROR_OFFSET];
1da177e4 353
835457de 354 if (sata_error_addr) {
438c4702 355 unsigned long base = (unsigned long)hwif->hwif_data;
0ecdca26 356 u32 ext_stat = readl((void __iomem *)(base + 0x10));
1da177e4 357 u8 watchdog = 0;
835457de 358
1da177e4 359 if (ext_stat & ((hwif->channel) ? 0x40 : 0x10)) {
835457de
BZ
360 u32 sata_error = readl(sata_error_addr);
361
362 writel(sata_error, sata_error_addr);
1da177e4 363 watchdog = (sata_error & 0x00680000) ? 1 : 0;
1da177e4
LT
364 printk(KERN_WARNING "%s: sata_error = 0x%08x, "
365 "watchdog = %d, %s\n",
366 drive->name, sata_error, watchdog,
eb63963a 367 __func__);
1da177e4
LT
368
369 } else {
370 watchdog = (ext_stat & 0x8000) ? 1 : 0;
371 }
372 ext_stat >>= 16;
373
374 if (!(ext_stat & 0x0404) && !watchdog)
375 return 0;
376 }
377
378 /* return 1 if INTR asserted */
0ecdca26 379 if ((readb((void __iomem *)hwif->dma_status) & 0x04) == 0x04)
1da177e4
LT
380 return 1;
381
382 /* return 1 if Device INTR asserted */
0ecdca26 383 if ((readb((void __iomem *)addr) & 8) == 8)
1da177e4
LT
384 return 0; //return 1;
385
386 return 0;
387}
388
5e37bdc0
BZ
389static int siimage_dma_test_irq(ide_drive_t *drive)
390{
391 if (drive->hwif->mmio)
392 return siimage_mmio_dma_test_irq(drive);
393 else
394 return siimage_io_dma_test_irq(drive);
395}
396
1da177e4 397/**
438c4702 398 * sil_sata_reset_poll - wait for SATA reset
1da177e4
LT
399 * @drive: drive we are resetting
400 *
401 * Poll the SATA phy and see whether it has come back from the dead
402 * yet.
403 */
438c4702
BZ
404
405static int sil_sata_reset_poll(ide_drive_t *drive)
1da177e4 406{
835457de
BZ
407 ide_hwif_t *hwif = drive->hwif;
408 void __iomem *sata_status_addr
409 = (void __iomem *)hwif->sata_scr[SATA_STATUS_OFFSET];
410
411 if (sata_status_addr) {
412 /* SATA Status is available only when in MMIO mode */
413 u32 sata_stat = readl(sata_status_addr);
1da177e4 414
835457de 415 if ((sata_stat & 0x03) != 0x03) {
1da177e4 416 printk(KERN_WARNING "%s: reset phy dead, status=0x%08x\n",
835457de 417 hwif->name, sata_stat);
1da177e4
LT
418 HWGROUP(drive)->polling = 0;
419 return ide_started;
420 }
1da177e4 421 }
438c4702
BZ
422
423 return 0;
1da177e4
LT
424}
425
426/**
438c4702 427 * sil_sata_pre_reset - reset hook
1da177e4
LT
428 * @drive: IDE device being reset
429 *
430 * For the SATA devices we need to handle recalibration/geometry
431 * differently
432 */
1da177e4 433
438c4702
BZ
434static void sil_sata_pre_reset(ide_drive_t *drive)
435{
436 if (drive->media == ide_disk) {
1da177e4
LT
437 drive->special.b.set_geometry = 0;
438 drive->special.b.recalibrate = 0;
439 }
440}
441
1da177e4
LT
442/**
443 * proc_reports_siimage - add siimage controller to proc
444 * @dev: PCI device
445 * @clocking: SCSC value
446 * @name: controller name
447 *
448 * Report the clocking mode of the controller and add it to
449 * the /proc interface layer
450 */
451
452static void proc_reports_siimage (struct pci_dev *dev, u8 clocking, const char *name)
453{
454 if (!pdev_is_sata(dev)) {
455 printk(KERN_INFO "%s: BASE CLOCK ", name);
456 clocking &= 0x03;
457 switch (clocking) {
458 case 0x03: printk("DISABLED!\n"); break;
459 case 0x02: printk("== 2X PCI\n"); break;
460 case 0x01: printk("== 133\n"); break;
461 case 0x00: printk("== 100\n"); break;
462 }
463 }
464}
465
466/**
467 * setup_mmio_siimage - switch an SI controller into MMIO
468 * @dev: PCI device we are configuring
469 * @name: device name
470 *
471 * Attempt to put the device into mmio mode. There are some slight
472 * complications here with certain systems where the mmio bar isnt
473 * mapped so we have to be sure we can fall back to I/O.
474 */
475
476static unsigned int setup_mmio_siimage (struct pci_dev *dev, const char *name)
477{
c976816b 478 resource_size_t bar5 = pci_resource_start(dev, 5);
1da177e4 479 unsigned long barsize = pci_resource_len(dev, 5);
1da177e4
LT
480 void __iomem *ioaddr;
481
482 /*
483 * Drop back to PIO if we can't map the mmio. Some
484 * systems seem to get terminally confused in the PCI
485 * spaces.
486 */
165701d9 487 if (!request_mem_region(bar5, barsize, name)) {
1da177e4
LT
488 printk(KERN_WARNING "siimage: IDE controller MMIO ports not available.\n");
489 return 0;
490 }
165701d9 491
1da177e4
LT
492 ioaddr = ioremap(bar5, barsize);
493
165701d9 494 if (ioaddr == NULL) {
1da177e4
LT
495 release_mem_region(bar5, barsize);
496 return 0;
497 }
498
499 pci_set_master(dev);
500 pci_set_drvdata(dev, (void *) ioaddr);
501
1da177e4
LT
502 return 1;
503}
504
505/**
506 * init_chipset_siimage - set up an SI device
507 * @dev: PCI device
508 * @name: device name
509 *
510 * Perform the initial PCI set up for this device. Attempt to switch
511 * to 133MHz clocking if the system isn't already set up to do it.
512 */
513
514static unsigned int __devinit init_chipset_siimage(struct pci_dev *dev, const char *name)
515{
165701d9
BZ
516 unsigned long base, scsc_addr;
517 void __iomem *ioaddr = NULL;
518 u8 rev = dev->revision, tmp = 0, BA5_EN = 0;
1da177e4 519
fc212bb1 520 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, rev ? 1 : 255);
1da177e4
LT
521
522 pci_read_config_byte(dev, 0x8A, &BA5_EN);
165701d9
BZ
523
524 if ((BA5_EN & 0x01) || pci_resource_start(dev, 5)) {
525 if (setup_mmio_siimage(dev, name))
526 ioaddr = pci_get_drvdata(dev);
527 }
528
529 base = (unsigned long)ioaddr;
530
531 if (ioaddr && pdev_is_sata(dev)) {
532 u32 tmp32, irq_mask;
533
534 /* make sure IDE0/1 interrupts are not masked */
535 irq_mask = (1 << 22) | (1 << 23);
536 tmp32 = readl(ioaddr + 0x48);
537 if (tmp32 & irq_mask) {
538 tmp32 &= ~irq_mask;
539 writel(tmp32, ioaddr + 0x48);
540 readl(ioaddr + 0x48); /* flush */
1da177e4 541 }
165701d9
BZ
542 writel(0, ioaddr + 0x148);
543 writel(0, ioaddr + 0x1C8);
1da177e4
LT
544 }
545
165701d9
BZ
546 sil_iowrite8(dev, 0, base ? (base + 0xB4) : 0x80);
547 sil_iowrite8(dev, 0, base ? (base + 0xF4) : 0x84);
548
549 scsc_addr = base ? (base + 0x4A) : 0x8A;
550 tmp = sil_ioread8(dev, scsc_addr);
551
552 switch (tmp & 0x30) {
553 case 0x00:
554 /* On 100MHz clocking, try and switch to 133MHz */
555 sil_iowrite8(dev, tmp | 0x10, scsc_addr);
556 break;
557 case 0x30:
558 /* Clocking is disabled, attempt to force 133MHz clocking. */
559 sil_iowrite8(dev, tmp & ~0x20, scsc_addr);
560 case 0x10:
561 /* On 133Mhz clocking. */
562 break;
563 case 0x20:
564 /* On PCIx2 clocking. */
565 break;
1da177e4
LT
566 }
567
165701d9 568 tmp = sil_ioread8(dev, scsc_addr);
1da177e4 569
165701d9
BZ
570 sil_iowrite8(dev, 0x72, base + 0xA1);
571 sil_iowrite16(dev, 0x328A, base + 0xA2);
572 sil_iowrite32(dev, 0x62DD62DD, base + 0xA4);
573 sil_iowrite32(dev, 0x43924392, base + 0xA8);
574 sil_iowrite32(dev, 0x40094009, base + 0xAC);
575 sil_iowrite8(dev, 0x72, base ? (base + 0xE1) : 0xB1);
576 sil_iowrite16(dev, 0x328A, base ? (base + 0xE2) : 0xB2);
577 sil_iowrite32(dev, 0x62DD62DD, base ? (base + 0xE4) : 0xB4);
578 sil_iowrite32(dev, 0x43924392, base ? (base + 0xE8) : 0xB8);
579 sil_iowrite32(dev, 0x40094009, base ? (base + 0xEC) : 0xBC);
580
581 if (base && pdev_is_sata(dev)) {
582 writel(0xFFFF0000, ioaddr + 0x108);
583 writel(0xFFFF0000, ioaddr + 0x188);
584 writel(0x00680000, ioaddr + 0x148);
585 writel(0x00680000, ioaddr + 0x1C8);
586 }
587
588 proc_reports_siimage(dev, tmp >> 4, name);
1da177e4 589
1da177e4
LT
590 return 0;
591}
592
593/**
594 * init_mmio_iops_siimage - set up the iops for MMIO
595 * @hwif: interface to set up
596 *
597 * The basic setup here is fairly simple, we can use standard MMIO
598 * operations. However we do have to set the taskfile register offsets
599 * by hand as there isnt a standard defined layout for them this
600 * time.
601 *
602 * The hardware supports buffered taskfiles and also some rather nice
19c1ef5f 603 * extended PRD tables. For better SI3112 support use the libata driver
1da177e4
LT
604 */
605
606static void __devinit init_mmio_iops_siimage(ide_hwif_t *hwif)
607{
36501650 608 struct pci_dev *dev = to_pci_dev(hwif->dev);
1da177e4
LT
609 void *addr = pci_get_drvdata(dev);
610 u8 ch = hwif->channel;
1da177e4
LT
611 unsigned long base;
612
4c3032d8
BZ
613 struct ide_io_ports *io_ports = &hwif->io_ports;
614
1da177e4
LT
615 /*
616 * Fill in the basic HWIF bits
617 */
618
c5dd43ec 619 hwif->host_flags |= IDE_HFLAG_MMIO;
1da177e4
LT
620 default_hwif_mmiops(hwif);
621 hwif->hwif_data = addr;
622
623 /*
624 * Now set up the hw. We have to do this ourselves as
59c51591 625 * the MMIO layout isnt the same as the standard port
1da177e4
LT
626 * based I/O
627 */
628
4c3032d8 629 memset(io_ports, 0, sizeof(*io_ports));
1da177e4
LT
630
631 base = (unsigned long)addr;
632 if (ch)
633 base += 0xC0;
634 else
635 base += 0x80;
636
637 /*
638 * The buffered task file doesn't have status/control
639 * so we can't currently use it sanely since we want to
640 * use LBA48 mode.
641 */
4c3032d8
BZ
642 io_ports->data_addr = base;
643 io_ports->error_addr = base + 1;
644 io_ports->nsect_addr = base + 2;
645 io_ports->lbal_addr = base + 3;
646 io_ports->lbam_addr = base + 4;
647 io_ports->lbah_addr = base + 5;
648 io_ports->device_addr = base + 6;
649 io_ports->status_addr = base + 7;
650 io_ports->ctl_addr = base + 10;
1da177e4
LT
651
652 if (pdev_is_sata(dev)) {
653 base = (unsigned long)addr;
654 if (ch)
655 base += 0x80;
656 hwif->sata_scr[SATA_STATUS_OFFSET] = base + 0x104;
657 hwif->sata_scr[SATA_ERROR_OFFSET] = base + 0x108;
658 hwif->sata_scr[SATA_CONTROL_OFFSET] = base + 0x100;
1da177e4
LT
659 }
660
9239b333 661 hwif->irq = dev->irq;
1da177e4 662
9239b333 663 hwif->dma_base = (unsigned long)addr + (ch ? 0x08 : 0x00);
2ad1e558
BZ
664
665 hwif->mmio = 1;
1da177e4
LT
666}
667
668static int is_dev_seagate_sata(ide_drive_t *drive)
669{
670 const char *s = &drive->id->model[0];
671 unsigned len;
672
1da177e4
LT
673 len = strnlen(s, sizeof(drive->id->model));
674
675 if ((len > 4) && (!memcmp(s, "ST", 2))) {
676 if ((!memcmp(s + len - 2, "AS", 2)) ||
677 (!memcmp(s + len - 3, "ASL", 3))) {
678 printk(KERN_INFO "%s: applying pessimistic Seagate "
679 "errata fix\n", drive->name);
680 return 1;
681 }
682 }
683 return 0;
684}
685
686/**
f01393e4
BZ
687 * sil_quirkproc - post probe fixups
688 * @drive: drive
1da177e4
LT
689 *
690 * Called after drive probe we use this to decide whether the
691 * Seagate fixup must be applied. This used to be in init_iops but
692 * that can occur before we know what drives are present.
693 */
694
f01393e4 695static void __devinit sil_quirkproc(ide_drive_t *drive)
1da177e4 696{
f01393e4
BZ
697 ide_hwif_t *hwif = drive->hwif;
698
1da177e4 699 /* Try and raise the rqsize */
f01393e4 700 if (!is_sata(hwif) || !is_dev_seagate_sata(drive))
1da177e4
LT
701 hwif->rqsize = 128;
702}
703
704/**
705 * init_iops_siimage - set up iops
706 * @hwif: interface to set up
707 *
708 * Do the basic setup for the SIIMAGE hardware interface
709 * and then do the MMIO setup if we can. This is the first
710 * look in we get for setting up the hwif so that we
711 * can get the iops right before using them.
712 */
713
714static void __devinit init_iops_siimage(ide_hwif_t *hwif)
715{
36501650
BZ
716 struct pci_dev *dev = to_pci_dev(hwif->dev);
717
1da177e4
LT
718 hwif->hwif_data = NULL;
719
720 /* Pessimal until we finish probing */
721 hwif->rqsize = 15;
722
36501650 723 if (pci_get_drvdata(dev) == NULL)
1da177e4 724 return;
fc212bb1 725
1da177e4
LT
726 init_mmio_iops_siimage(hwif);
727}
728
729/**
ac95beed 730 * sil_cable_detect - cable detection
1da177e4
LT
731 * @hwif: interface to check
732 *
733 * Check for the presence of an ATA66 capable cable on the
734 * interface.
735 */
736
ac95beed 737static u8 __devinit sil_cable_detect(ide_hwif_t *hwif)
1da177e4 738{
36501650 739 struct pci_dev *dev = to_pci_dev(hwif->dev);
1da177e4 740 unsigned long addr = siimage_selreg(hwif, 0);
165701d9 741 u8 ata66 = sil_ioread8(dev, addr);
1da177e4 742
49521f97 743 return (ata66 & 0x01) ? ATA_CBL_PATA80 : ATA_CBL_PATA40;
1da177e4
LT
744}
745
ac95beed
BZ
746static const struct ide_port_ops sil_pata_port_ops = {
747 .set_pio_mode = sil_set_pio_mode,
748 .set_dma_mode = sil_set_dma_mode,
749 .quirkproc = sil_quirkproc,
750 .udma_filter = sil_pata_udma_filter,
751 .cable_detect = sil_cable_detect,
752};
753
754static const struct ide_port_ops sil_sata_port_ops = {
755 .set_pio_mode = sil_set_pio_mode,
756 .set_dma_mode = sil_set_dma_mode,
757 .reset_poll = sil_sata_reset_poll,
758 .pre_reset = sil_sata_pre_reset,
759 .quirkproc = sil_quirkproc,
760 .udma_filter = sil_sata_udma_filter,
761 .cable_detect = sil_cable_detect,
762};
763
5e37bdc0
BZ
764static struct ide_dma_ops sil_dma_ops = {
765 .dma_test_irq = siimage_dma_test_irq,
766};
767
ac95beed 768#define DECLARE_SII_DEV(name_str, p_ops) \
1da177e4
LT
769 { \
770 .name = name_str, \
771 .init_chipset = init_chipset_siimage, \
772 .init_iops = init_iops_siimage, \
ac95beed 773 .port_ops = p_ops, \
5e37bdc0 774 .dma_ops = &sil_dma_ops, \
4099d143 775 .pio_mask = ATA_PIO4, \
5f8b6c34
BZ
776 .mwdma_mask = ATA_MWDMA2, \
777 .udma_mask = ATA_UDMA6, \
1da177e4
LT
778 }
779
85620436 780static const struct ide_port_info siimage_chipsets[] __devinitdata = {
ac95beed
BZ
781 /* 0 */ DECLARE_SII_DEV("SiI680", &sil_pata_port_ops),
782 /* 1 */ DECLARE_SII_DEV("SiI3112 Serial ATA", &sil_sata_port_ops),
783 /* 2 */ DECLARE_SII_DEV("Adaptec AAR-1210SA", &sil_sata_port_ops)
1da177e4
LT
784};
785
786/**
787 * siimage_init_one - pci layer discovery entry
788 * @dev: PCI device
789 * @id: ident table entry
790 *
791 * Called by the PCI code when it finds an SI680 or SI3112 controller.
792 * We then use the IDE PCI generic helper to do most of the work.
793 */
794
795static int __devinit siimage_init_one(struct pci_dev *dev, const struct pci_device_id *id)
796{
5e37bdc0
BZ
797 struct ide_port_info d;
798 u8 idx = id->driver_data;
799
800 d = siimage_chipsets[idx];
801
802 if (idx) {
803 static int first = 1;
804
805 if (first) {
806 printk(KERN_INFO "siimage: For full SATA support you "
807 "should use the libata sata_sil module.\n");
808 first = 0;
809 }
810
811 d.host_flags |= IDE_HFLAG_NO_ATAPI_DMA;
812 }
813
814 return ide_setup_pci_device(dev, &d);
1da177e4
LT
815}
816
9cbcc5e3
BZ
817static const struct pci_device_id siimage_pci_tbl[] = {
818 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_680), 0 },
1da177e4 819#ifdef CONFIG_BLK_DEV_IDE_SATA
9cbcc5e3
BZ
820 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_3112), 1 },
821 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_1210SA), 2 },
1da177e4
LT
822#endif
823 { 0, },
824};
825MODULE_DEVICE_TABLE(pci, siimage_pci_tbl);
826
827static struct pci_driver driver = {
828 .name = "SiI_IDE",
829 .id_table = siimage_pci_tbl,
830 .probe = siimage_init_one,
831};
832
82ab1eec 833static int __init siimage_ide_init(void)
1da177e4
LT
834{
835 return ide_pci_register_driver(&driver);
836}
837
838module_init(siimage_ide_init);
839
840MODULE_AUTHOR("Andre Hedrick, Alan Cox");
841MODULE_DESCRIPTION("PCI driver module for SiI IDE");
842MODULE_LICENSE("GPL");