blob: cf8a7594ba3d3058b34c20de502bd2ace32b0445 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 2001-2002 Andre Hedrick <andre@linux-ide.org>
3 * Copyright (C) 2003 Red Hat <alan@redhat.com>
Sergei Shtylyov075cb652007-02-17 02:40:22 +01004 * Copyright (C) 2007 MontaVista Software, Inc.
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +02005 * Copyright (C) 2007-2008 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * May be copied or modified under the terms of the GNU General Public License
8 *
Jeff Garzikbf4c7962005-11-18 22:55:47 +01009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
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
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +020027 * if necessary
Alan Cox8693d3e2007-03-03 17:48:54 +010028 *
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.
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +020033 *
34 * TODO:
35 * - IORDY fixes
36 * - VDMA support
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 */
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/types.h>
40#include <linux/module.h>
41#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/hdreg.h>
43#include <linux/ide.h>
44#include <linux/init.h>
45
46#include <asm/io.h>
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/**
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{
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +020057#ifdef CONFIG_BLK_DEV_IDE_SATA
58 switch(pdev->device) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 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();
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +020066#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 return 0;
68}
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +020069
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/**
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{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +010079 return pdev_is_sata(to_pci_dev(hwif->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070080}
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
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200127static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/**
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200176 * sil_udma_filter - compute UDMA mask
177 * @drive: IDE device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 *
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200179 * Compute the available UDMA speeds for the device on the interface.
180 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 * For the CMD680 this depends on the clocking mode (scsc), for the
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200182 * SI3112 SATA controller life is a bit simpler.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 */
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200184
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200185static u8 sil_pata_udma_filter(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200187 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100188 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 unsigned long base = (unsigned long) hwif->hwif_data;
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200190 u8 mask = 0, scsc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200192 scsc = sil_ioread8(dev, base + (hwif->mmio ? 0x4A : 0x8A));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if ((scsc & 0x30) == 0x10) /* 133 */
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200195 mask = ATA_UDMA6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 else if ((scsc & 0x30) == 0x20) /* 2xPCI */
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200197 mask = ATA_UDMA6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 else if ((scsc & 0x30) == 0x00) /* 100 */
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200199 mask = ATA_UDMA5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 else /* Disabled ? */
201 BUG();
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200202
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200203 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200206static u8 sil_sata_udma_filter(ide_drive_t *drive)
207{
208 return strstr(drive->id->model, "Maxtor") ? ATA_UDMA5 : ATA_UDMA6;
209}
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211/**
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200212 * sil_set_pio_mode - set host controller for PIO mode
213 * @drive: drive
214 * @pio: PIO mode number
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 *
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 */
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200220
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200221static void sil_set_pio_mode(ide_drive_t *drive, u8 pio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200223 const u16 tf_speed[] = { 0x328a, 0x2283, 0x1281, 0x10c3, 0x10c1 };
224 const u16 data_speed[] = { 0x328a, 0x2283, 0x1104, 0x10c3, 0x10c1 };
225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200227 struct pci_dev *dev = to_pci_dev(hwif->dev);
Benjamin Herrenschmidta87a87c2007-10-19 00:30:05 +0200228 ide_drive_t *pair = ide_get_paired_drive(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 u32 speedt = 0;
230 u16 speedp = 0;
231 unsigned long addr = siimage_seldev(drive, 0x04);
232 unsigned long tfaddr = siimage_selreg(hwif, 0x02);
Bartlomiej Zolnierkiewiczffe54152007-10-11 23:54:01 +0200233 unsigned long base = (unsigned long)hwif->hwif_data;
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200234 u8 tf_pio = pio;
Bartlomiej Zolnierkiewiczffe54152007-10-11 23:54:01 +0200235 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;
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200239
240 /* trim *taskfile* PIO to the slowest of the master/slave */
241 if (pair->present) {
Bartlomiej Zolnierkiewicz21347582007-07-20 01:11:58 +0200242 u8 pair_pio = ide_get_best_pio_mode(pair, 255, 4);
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200243
244 if (pair_pio < tf_pio)
245 tf_pio = pair_pio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
Sergei Shtylyov075cb652007-02-17 02:40:22 +0100247
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200248 /* cheat for now and use the docs */
249 speedp = data_speed[pio];
250 speedt = tf_speed[tf_pio];
251
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200252 sil_iowrite16(dev, speedp, addr);
253 sil_iowrite16(dev, speedt, tfaddr);
Bartlomiej Zolnierkiewiczffe54152007-10-11 23:54:01 +0200254
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200255 /* 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);
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100261
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200262 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268/**
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200269 * sil_set_dma_mode - set host controller for DMA mode
270 * @drive: drive
271 * @speed: DMA mode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 *
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200273 * Tune the SiI chipset for the desired DMA mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 */
Bartlomiej Zolnierkiewiczf212ff22007-10-11 23:53:59 +0200275
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200276static void sil_set_dma_mode(ide_drive_t *drive, const u8 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
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);
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100283 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 u16 ultra = 0, multi = 0;
285 u8 mode = 0, unit = drive->select.b.unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 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
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200294 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 mode &= ~((unit) ? 0x30 : 0x03);
300 ultra &= ~0x3F;
301 scsc = ((scsc & 0x30) == 0x00) ? 0 : 1;
302
303 scsc = is_sata(hwif) ? 1 : scsc;
304
Bartlomiej Zolnierkiewicz4db90a12008-01-25 22:17:18 +0100305 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 }
314
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200315 sil_iowrite8(dev, mode, base + addr_mask);
316 sil_iowrite16(dev, multi, ma);
317 sil_iowrite16(dev, ultra, ua);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320/* returns 1 if dma irq issued, 0 otherwise */
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200321static int siimage_io_dma_test_irq(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100324 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 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 */
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100333 pci_read_config_byte(dev, addr, &dma_altstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (dma_altstat & 8)
335 return 0; //return 1;
336 return 0;
337}
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339/**
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200340 * siimage_mmio_dma_test_irq - check we caused an IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 * @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 */
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200346
347static int siimage_mmio_dma_test_irq(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
349 ide_hwif_t *hwif = HWIF(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 unsigned long addr = siimage_selreg(hwif, 0x1);
Bartlomiej Zolnierkiewicz835457d2008-02-02 19:56:45 +0100351 void __iomem *sata_error_addr
352 = (void __iomem *)hwif->sata_scr[SATA_ERROR_OFFSET];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Bartlomiej Zolnierkiewicz835457d2008-02-02 19:56:45 +0100354 if (sata_error_addr) {
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200355 unsigned long base = (unsigned long)hwif->hwif_data;
Bartlomiej Zolnierkiewicz0ecdca22007-02-17 02:40:25 +0100356 u32 ext_stat = readl((void __iomem *)(base + 0x10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 u8 watchdog = 0;
Bartlomiej Zolnierkiewicz835457d2008-02-02 19:56:45 +0100358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (ext_stat & ((hwif->channel) ? 0x40 : 0x10)) {
Bartlomiej Zolnierkiewicz835457d2008-02-02 19:56:45 +0100360 u32 sata_error = readl(sata_error_addr);
361
362 writel(sata_error, sata_error_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 watchdog = (sata_error & 0x00680000) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 printk(KERN_WARNING "%s: sata_error = 0x%08x, "
365 "watchdog = %d, %s\n",
366 drive->name, sata_error, watchdog,
Harvey Harrisoneb639632008-04-26 22:25:20 +0200367 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
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 */
Bartlomiej Zolnierkiewicz0ecdca22007-02-17 02:40:25 +0100379 if ((readb((void __iomem *)hwif->dma_status) & 0x04) == 0x04)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return 1;
381
382 /* return 1 if Device INTR asserted */
Bartlomiej Zolnierkiewicz0ecdca22007-02-17 02:40:25 +0100383 if ((readb((void __iomem *)addr) & 8) == 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 return 0; //return 1;
385
386 return 0;
387}
388
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200389static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397/**
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200398 * sil_sata_reset_poll - wait for SATA reset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 * @drive: drive we are resetting
400 *
401 * Poll the SATA phy and see whether it has come back from the dead
402 * yet.
403 */
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200404
405static int sil_sata_reset_poll(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Bartlomiej Zolnierkiewicz835457d2008-02-02 19:56:45 +0100407 ide_hwif_t *hwif = drive->hwif;
408 void __iomem *sata_status_addr
409 = (void __iomem *)hwif->sata_scr[SATA_STATUS_OFFSET];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Bartlomiej Zolnierkiewicz835457d2008-02-02 19:56:45 +0100411 if (sata_status_addr) {
412 /* SATA Status is available only when in MMIO mode */
413 u32 sata_stat = readl(sata_status_addr);
414
415 if ((sata_stat & 0x03) != 0x03) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 printk(KERN_WARNING "%s: reset phy dead, status=0x%08x\n",
Bartlomiej Zolnierkiewicz835457d2008-02-02 19:56:45 +0100417 hwif->name, sata_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 HWGROUP(drive)->polling = 0;
419 return ide_started;
420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200422
423 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
426/**
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200427 * sil_sata_pre_reset - reset hook
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 * @drive: IDE device being reset
429 *
430 * For the SATA devices we need to handle recalibration/geometry
431 * differently
432 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200434static void sil_sata_pre_reset(ide_drive_t *drive)
435{
436 if (drive->media == ide_disk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 drive->special.b.set_geometry = 0;
438 drive->special.b.recalibrate = 0;
439 }
440}
441
442/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 * 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{
Sergei Shtylyovc9768162008-04-07 23:30:10 +0200478 resource_size_t bar5 = pci_resource_start(dev, 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 unsigned long barsize = pci_resource_len(dev, 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 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 */
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200487 if (!request_mem_region(bar5, barsize, name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 printk(KERN_WARNING "siimage: IDE controller MMIO ports not available.\n");
489 return 0;
490 }
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 ioaddr = ioremap(bar5, barsize);
493
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200494 if (ioaddr == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 release_mem_region(bar5, barsize);
496 return 0;
497 }
498
499 pci_set_master(dev);
500 pci_set_drvdata(dev, (void *) ioaddr);
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 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{
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200516 unsigned long base, scsc_addr;
517 void __iomem *ioaddr = NULL;
518 u8 rev = dev->revision, tmp = 0, BA5_EN = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Bartlomiej Zolnierkiewiczfc212bb2007-10-19 00:30:08 +0200520 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, rev ? 1 : 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
522 pci_read_config_byte(dev, 0x8A, &BA5_EN);
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200523
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 }
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200542 writel(0, ioaddr + 0x148);
543 writel(0, ioaddr + 0x1C8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
545
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200546 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
567
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200568 tmp = sil_ioread8(dev, scsc_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200570 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200581 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);
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 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
Alan Cox19c1ef52006-06-28 04:26:59 -0700603 * extended PRD tables. For better SI3112 support use the libata driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 */
605
606static void __devinit init_mmio_iops_siimage(ide_hwif_t *hwif)
607{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100608 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 void *addr = pci_get_drvdata(dev);
610 u8 ch = hwif->channel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 unsigned long base;
612
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200613 struct ide_io_ports *io_ports = &hwif->io_ports;
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 /*
616 * Fill in the basic HWIF bits
617 */
618
Bartlomiej Zolnierkiewiczc5dd43e2008-04-28 23:44:37 +0200619 hwif->host_flags |= IDE_HFLAG_MMIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 default_hwif_mmiops(hwif);
621 hwif->hwif_data = addr;
622
623 /*
624 * Now set up the hw. We have to do this ourselves as
Michael Opdenacker59c51592007-05-09 08:57:56 +0200625 * the MMIO layout isnt the same as the standard port
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 * based I/O
627 */
628
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200629 memset(io_ports, 0, sizeof(*io_ports));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
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 */
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200642 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
660
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200661 hwif->irq = dev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200663 hwif->dma_base = (unsigned long)addr + (ch ? 0x08 : 0x00);
Bartlomiej Zolnierkiewicz2ad1e552007-02-17 02:40:25 +0100664
665 hwif->mmio = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
667
668static int is_dev_seagate_sata(ide_drive_t *drive)
669{
670 const char *s = &drive->id->model[0];
671 unsigned len;
672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 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/**
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100687 * sil_quirkproc - post probe fixups
688 * @drive: drive
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 *
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
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100695static void __devinit sil_quirkproc(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100697 ide_hwif_t *hwif = drive->hwif;
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 /* Try and raise the rqsize */
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100700 if (!is_sata(hwif) || !is_dev_seagate_sata(drive))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 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{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100716 struct pci_dev *dev = to_pci_dev(hwif->dev);
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 hwif->hwif_data = NULL;
719
720 /* Pessimal until we finish probing */
721 hwif->rqsize = 15;
722
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100723 if (pci_get_drvdata(dev) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 return;
Bartlomiej Zolnierkiewiczfc212bb2007-10-19 00:30:08 +0200725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 init_mmio_iops_siimage(hwif);
727}
728
729/**
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200730 * sil_cable_detect - cable detection
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 * @hwif: interface to check
732 *
733 * Check for the presence of an ATA66 capable cable on the
734 * interface.
735 */
736
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200737static u8 __devinit sil_cable_detect(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100739 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 unsigned long addr = siimage_selreg(hwif, 0);
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200741 u8 ata66 = sil_ioread8(dev, addr);
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200742
743 return (ata66 & 0x01) ? ATA_CBL_PATA80 : ATA_CBL_PATA40;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200746static 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
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200764static struct ide_dma_ops sil_dma_ops = {
765 .dma_test_irq = siimage_dma_test_irq,
766};
767
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200768#define DECLARE_SII_DEV(name_str, p_ops) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 { \
770 .name = name_str, \
771 .init_chipset = init_chipset_siimage, \
772 .init_iops = init_iops_siimage, \
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200773 .port_ops = p_ops, \
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200774 .dma_ops = &sil_dma_ops, \
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200775 .pio_mask = ATA_PIO4, \
Bartlomiej Zolnierkiewicz5f8b6c32007-10-19 00:30:07 +0200776 .mwdma_mask = ATA_MWDMA2, \
777 .udma_mask = ATA_UDMA6, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
779
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200780static const struct ide_port_info siimage_chipsets[] __devinitdata = {
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200781 /* 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784};
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{
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200797 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815}
816
Bartlomiej Zolnierkiewicz9cbcc5e2007-10-16 22:29:56 +0200817static const struct pci_device_id siimage_pci_tbl[] = {
818 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_680), 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819#ifdef CONFIG_BLK_DEV_IDE_SATA
Bartlomiej Zolnierkiewicz9cbcc5e2007-10-16 22:29:56 +0200820 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_3112), 1 },
821 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_1210SA), 2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822#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
Bartlomiej Zolnierkiewicz82ab1ee2007-01-27 13:46:56 +0100833static int __init siimage_ide_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
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");