blob: 6a643fdf0e6ea1ba89553ce60e2b8f1c4a7308e8 [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>
Alan Coxccd32e22008-11-02 21:40:08 +01003 * Copyright (C) 2003 Red Hat
Sergei Shtylyov7b255432008-04-28 23:44:44 +02004 * Copyright (C) 2007-2008 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
Sergei Shtylyov7b255432008-04-28 23:44:44 +020020 * ensure the system is set up for ATA100/UDMA5, not UDMA6.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 *
22 * If you are using WD drives with SATA bridges you must set the
Sergei Shtylyov7b255432008-04-28 23:44:44 +020023 * drive to "Single". "Master" will hang.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 *
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:
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +020035 * - VDMA support
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 */
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/types.h>
39#include <linux/module.h>
40#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/ide.h>
42#include <linux/init.h>
Sergei Shtylyov7b255432008-04-28 23:44:44 +020043#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +020045#define DRV_NAME "siimage"
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/**
48 * pdev_is_sata - check if device is SATA
49 * @pdev: PCI device to check
Sergei Shtylyov7b255432008-04-28 23:44:44 +020050 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 * Returns true if this is a SATA controller
52 */
Sergei Shtylyov7b255432008-04-28 23:44:44 +020053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054static int pdev_is_sata(struct pci_dev *pdev)
55{
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +020056#ifdef CONFIG_BLK_DEV_IDE_SATA
Sergei Shtylyov7b255432008-04-28 23:44:44 +020057 switch (pdev->device) {
58 case PCI_DEVICE_ID_SII_3112:
59 case PCI_DEVICE_ID_SII_1210SA:
60 return 1;
61 case PCI_DEVICE_ID_SII_680:
62 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 }
64 BUG();
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +020065#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 return 0;
67}
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +020068
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/**
70 * is_sata - check if hwif is SATA
71 * @hwif: interface to check
Sergei Shtylyov7b255432008-04-28 23:44:44 +020072 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 * Returns true if this is a SATA controller
74 */
Sergei Shtylyov7b255432008-04-28 23:44:44 +020075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static inline int is_sata(ide_hwif_t *hwif)
77{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +010078 return pdev_is_sata(to_pci_dev(hwif->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
80
81/**
82 * siimage_selreg - return register base
83 * @hwif: interface
84 * @r: config offset
85 *
86 * Turn a config register offset into the right address in either
87 * PCI space or MMIO space to access the control register in question
Sergei Shtylyov7b255432008-04-28 23:44:44 +020088 * Thankfully this is a configuration operation, so isn't performance
89 * critical.
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 */
Sergei Shtylyov7b255432008-04-28 23:44:44 +020091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092static unsigned long siimage_selreg(ide_hwif_t *hwif, int r)
93{
94 unsigned long base = (unsigned long)hwif->hwif_data;
Sergei Shtylyov7b255432008-04-28 23:44:44 +020095
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 base += 0xA0 + r;
Bartlomiej Zolnierkiewicz13572142008-07-15 21:21:49 +020097 if (hwif->host_flags & IDE_HFLAG_MMIO)
Sergei Shtylyov7b255432008-04-28 23:44:44 +020098 base += hwif->channel << 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 else
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200100 base += hwif->channel << 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return base;
102}
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/**
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 */
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114static inline unsigned long siimage_seldev(ide_drive_t *drive, int r)
115{
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +0100116 ide_hwif_t *hwif = drive->hwif;
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200117 unsigned long base = (unsigned long)hwif->hwif_data;
Bartlomiej Zolnierkiewicz123995b2008-10-13 21:39:40 +0200118 u8 unit = drive->dn & 1;
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 base += 0xA0 + r;
Bartlomiej Zolnierkiewicz13572142008-07-15 21:21:49 +0200121 if (hwif->host_flags & IDE_HFLAG_MMIO)
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200122 base += hwif->channel << 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 else
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200124 base += hwif->channel << 4;
Bartlomiej Zolnierkiewicz123995b2008-10-13 21:39:40 +0200125 base |= unit << unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return base;
127}
128
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200129static u8 sil_ioread8(struct pci_dev *dev, unsigned long addr)
130{
Bartlomiej Zolnierkiewicz4c674232008-07-24 22:53:16 +0200131 struct ide_host *host = pci_get_drvdata(dev);
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200132 u8 tmp = 0;
133
Bartlomiej Zolnierkiewicz4c674232008-07-24 22:53:16 +0200134 if (host->host_priv)
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200135 tmp = readb((void __iomem *)addr);
136 else
137 pci_read_config_byte(dev, addr, &tmp);
138
139 return tmp;
140}
141
142static u16 sil_ioread16(struct pci_dev *dev, unsigned long addr)
143{
Bartlomiej Zolnierkiewicz4c674232008-07-24 22:53:16 +0200144 struct ide_host *host = pci_get_drvdata(dev);
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200145 u16 tmp = 0;
146
Bartlomiej Zolnierkiewicz4c674232008-07-24 22:53:16 +0200147 if (host->host_priv)
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200148 tmp = readw((void __iomem *)addr);
149 else
150 pci_read_config_word(dev, addr, &tmp);
151
152 return tmp;
153}
154
155static void sil_iowrite8(struct pci_dev *dev, u8 val, unsigned long addr)
156{
Bartlomiej Zolnierkiewicz4c674232008-07-24 22:53:16 +0200157 struct ide_host *host = pci_get_drvdata(dev);
158
159 if (host->host_priv)
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200160 writeb(val, (void __iomem *)addr);
161 else
162 pci_write_config_byte(dev, addr, val);
163}
164
165static void sil_iowrite16(struct pci_dev *dev, u16 val, unsigned long addr)
166{
Bartlomiej Zolnierkiewicz4c674232008-07-24 22:53:16 +0200167 struct ide_host *host = pci_get_drvdata(dev);
168
169 if (host->host_priv)
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200170 writew(val, (void __iomem *)addr);
171 else
172 pci_write_config_word(dev, addr, val);
173}
174
175static void sil_iowrite32(struct pci_dev *dev, u32 val, unsigned long addr)
176{
Bartlomiej Zolnierkiewicz4c674232008-07-24 22:53:16 +0200177 struct ide_host *host = pci_get_drvdata(dev);
178
179 if (host->host_priv)
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200180 writel(val, (void __iomem *)addr);
181 else
182 pci_write_config_dword(dev, addr, val);
183}
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/**
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200186 * sil_udma_filter - compute UDMA mask
187 * @drive: IDE device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 *
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200189 * Compute the available UDMA speeds for the device on the interface.
190 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 * For the CMD680 this depends on the clocking mode (scsc), for the
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200192 * SI3112 SATA controller life is a bit simpler.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 */
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200194
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200195static u8 sil_pata_udma_filter(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200197 ide_hwif_t *hwif = drive->hwif;
198 struct pci_dev *dev = to_pci_dev(hwif->dev);
199 unsigned long base = (unsigned long)hwif->hwif_data;
200 u8 scsc, mask = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Bartlomiej Zolnierkiewicz13572142008-07-15 21:21:49 +0200202 base += (hwif->host_flags & IDE_HFLAG_MMIO) ? 0x4A : 0x8A;
203
204 scsc = sil_ioread8(dev, base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200206 switch (scsc & 0x30) {
207 case 0x10: /* 133 */
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200208 mask = ATA_UDMA6;
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200209 break;
210 case 0x20: /* 2xPCI */
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200211 mask = ATA_UDMA6;
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200212 break;
213 case 0x00: /* 100 */
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200214 mask = ATA_UDMA5;
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200215 break;
216 default: /* Disabled ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 BUG();
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200218 }
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200219
Bartlomiej Zolnierkiewicz2d5eaa62007-05-10 00:01:08 +0200220 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200223static u8 sil_sata_udma_filter(ide_drive_t *drive)
224{
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200225 char *m = (char *)&drive->id[ATA_ID_PROD];
226
227 return strstr(m, "Maxtor") ? ATA_UDMA5 : ATA_UDMA6;
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200228}
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230/**
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200231 * sil_set_pio_mode - set host controller for PIO mode
232 * @drive: drive
233 * @pio: PIO mode number
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 *
235 * Load the timing settings for this device mode into the
Bartlomiej Zolnierkiewiczc9ef59f2009-06-15 18:52:53 +0200236 * controller.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 */
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200238
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200239static void sil_set_pio_mode(ide_drive_t *drive, u8 pio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200241 static const u16 tf_speed[] = { 0x328a, 0x2283, 0x1281, 0x10c3, 0x10c1 };
242 static const u16 data_speed[] = { 0x328a, 0x2283, 0x1104, 0x10c3, 0x10c1 };
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200243
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +0100244 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200245 struct pci_dev *dev = to_pci_dev(hwif->dev);
Bartlomiej Zolnierkiewicz7e59ea22008-10-10 22:39:26 +0200246 ide_drive_t *pair = ide_get_pair_dev(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 u32 speedt = 0;
248 u16 speedp = 0;
249 unsigned long addr = siimage_seldev(drive, 0x04);
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200250 unsigned long tfaddr = siimage_selreg(hwif, 0x02);
Bartlomiej Zolnierkiewiczffe54152007-10-11 23:54:01 +0200251 unsigned long base = (unsigned long)hwif->hwif_data;
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200252 u8 tf_pio = pio;
Bartlomiej Zolnierkiewicz13572142008-07-15 21:21:49 +0200253 u8 mmio = (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0;
254 u8 addr_mask = hwif->channel ? (mmio ? 0xF4 : 0x84)
255 : (mmio ? 0xB4 : 0x80);
Bartlomiej Zolnierkiewiczffe54152007-10-11 23:54:01 +0200256 u8 mode = 0;
Bartlomiej Zolnierkiewicz123995b2008-10-13 21:39:40 +0200257 u8 unit = drive->dn & 1;
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200258
259 /* trim *taskfile* PIO to the slowest of the master/slave */
Bartlomiej Zolnierkiewicz7e59ea22008-10-10 22:39:26 +0200260 if (pair) {
Bartlomiej Zolnierkiewicz21347582007-07-20 01:11:58 +0200261 u8 pair_pio = ide_get_best_pio_mode(pair, 255, 4);
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200262
263 if (pair_pio < tf_pio)
264 tf_pio = pair_pio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
Sergei Shtylyov075cb652007-02-17 02:40:22 +0100266
Bartlomiej Zolnierkiewicz328dcbb2007-07-20 01:11:54 +0200267 /* cheat for now and use the docs */
268 speedp = data_speed[pio];
269 speedt = tf_speed[tf_pio];
270
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200271 sil_iowrite16(dev, speedp, addr);
272 sil_iowrite16(dev, speedt, tfaddr);
Bartlomiej Zolnierkiewiczffe54152007-10-11 23:54:01 +0200273
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200274 /* now set up IORDY */
275 speedp = sil_ioread16(dev, tfaddr - 2);
276 speedp &= ~0x200;
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100277
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200278 mode = sil_ioread8(dev, base + addr_mask);
279 mode &= ~(unit ? 0x30 : 0x03);
Bartlomiej Zolnierkiewiczc9ef59f2009-06-15 18:52:53 +0200280
281 if (ide_pio_need_iordy(drive, pio)) {
282 speedp |= 0x200;
283 mode |= unit ? 0x10 : 0x01;
284 }
285
286 sil_iowrite16(dev, speedp, tfaddr - 2);
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200287 sil_iowrite8(dev, mode, base + addr_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290/**
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200291 * sil_set_dma_mode - set host controller for DMA mode
292 * @drive: drive
293 * @speed: DMA mode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 *
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200295 * Tune the SiI chipset for the desired DMA mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 */
Bartlomiej Zolnierkiewiczf212ff22007-10-11 23:53:59 +0200297
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200298static void sil_set_dma_mode(ide_drive_t *drive, const u8 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200300 static const u8 ultra6[] = { 0x0F, 0x0B, 0x07, 0x05, 0x03, 0x02, 0x01 };
301 static const u8 ultra5[] = { 0x0C, 0x07, 0x05, 0x04, 0x02, 0x01 };
302 static const u16 dma[] = { 0x2208, 0x10C2, 0x10C1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +0100304 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100305 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 unsigned long base = (unsigned long)hwif->hwif_data;
Bartlomiej Zolnierkiewicz123995b2008-10-13 21:39:40 +0200307 u16 ultra = 0, multi = 0;
308 u8 mode = 0, unit = drive->dn & 1;
Bartlomiej Zolnierkiewicz13572142008-07-15 21:21:49 +0200309 u8 mmio = (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0;
310 u8 scsc = 0, addr_mask = hwif->channel ? (mmio ? 0xF4 : 0x84)
311 : (mmio ? 0xB4 : 0x80);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 unsigned long ma = siimage_seldev(drive, 0x08);
313 unsigned long ua = siimage_seldev(drive, 0x0C);
314
Bartlomiej Zolnierkiewicz13572142008-07-15 21:21:49 +0200315 scsc = sil_ioread8 (dev, base + (mmio ? 0x4A : 0x8A));
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200316 mode = sil_ioread8 (dev, base + addr_mask);
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200317 multi = sil_ioread16(dev, ma);
318 ultra = sil_ioread16(dev, ua);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200320 mode &= ~(unit ? 0x30 : 0x03);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 ultra &= ~0x3F;
322 scsc = ((scsc & 0x30) == 0x00) ? 0 : 1;
323
324 scsc = is_sata(hwif) ? 1 : scsc;
325
Bartlomiej Zolnierkiewicz4db90a12008-01-25 22:17:18 +0100326 if (speed >= XFER_UDMA_0) {
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200327 multi = dma[2];
328 ultra |= scsc ? ultra6[speed - XFER_UDMA_0] :
329 ultra5[speed - XFER_UDMA_0];
330 mode |= unit ? 0x30 : 0x03;
Bartlomiej Zolnierkiewicz4db90a12008-01-25 22:17:18 +0100331 } else {
332 multi = dma[speed - XFER_MW_DMA_0];
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200333 mode |= unit ? 0x20 : 0x02;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
335
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200336 sil_iowrite8 (dev, mode, base + addr_mask);
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200337 sil_iowrite16(dev, multi, ma);
338 sil_iowrite16(dev, ultra, ua);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341/* returns 1 if dma irq issued, 0 otherwise */
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200342static int siimage_io_dma_test_irq(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +0100344 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100345 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 u8 dma_altstat = 0;
347 unsigned long addr = siimage_selreg(hwif, 1);
348
349 /* return 1 if INTR asserted */
Bartlomiej Zolnierkiewiczcab7f8e2008-07-23 19:55:51 +0200350 if (inb(hwif->dma_base + ATA_DMA_STATUS) & 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return 1;
352
353 /* return 1 if Device INTR asserted */
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100354 pci_read_config_byte(dev, addr, &dma_altstat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (dma_altstat & 8)
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200356 return 0; /* return 1; */
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return 0;
359}
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361/**
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200362 * siimage_mmio_dma_test_irq - check we caused an IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 * @drive: drive we are testing
364 *
365 * Check if we caused an IDE DMA interrupt. We may also have caused
366 * SATA status interrupts, if so we clean them up and continue.
367 */
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200368
369static int siimage_mmio_dma_test_irq(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Bartlomiej Zolnierkiewicz898ec222009-01-06 17:20:52 +0100371 ide_hwif_t *hwif = drive->hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 unsigned long addr = siimage_selreg(hwif, 0x1);
Bartlomiej Zolnierkiewicz835457d2008-02-02 19:56:45 +0100373 void __iomem *sata_error_addr
374 = (void __iomem *)hwif->sata_scr[SATA_ERROR_OFFSET];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Bartlomiej Zolnierkiewicz835457d2008-02-02 19:56:45 +0100376 if (sata_error_addr) {
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200377 unsigned long base = (unsigned long)hwif->hwif_data;
378 u32 ext_stat = readl((void __iomem *)(base + 0x10));
379 u8 watchdog = 0;
Bartlomiej Zolnierkiewicz835457d2008-02-02 19:56:45 +0100380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 if (ext_stat & ((hwif->channel) ? 0x40 : 0x10)) {
Bartlomiej Zolnierkiewicz835457d2008-02-02 19:56:45 +0100382 u32 sata_error = readl(sata_error_addr);
383
384 writel(sata_error, sata_error_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 watchdog = (sata_error & 0x00680000) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 printk(KERN_WARNING "%s: sata_error = 0x%08x, "
387 "watchdog = %d, %s\n",
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200388 drive->name, sata_error, watchdog, __func__);
389 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 watchdog = (ext_stat & 0x8000) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200392 ext_stat >>= 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 if (!(ext_stat & 0x0404) && !watchdog)
394 return 0;
395 }
396
397 /* return 1 if INTR asserted */
Bartlomiej Zolnierkiewiczcab7f8e2008-07-23 19:55:51 +0200398 if (readb((void __iomem *)(hwif->dma_base + ATA_DMA_STATUS)) & 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return 1;
400
401 /* return 1 if Device INTR asserted */
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200402 if (readb((void __iomem *)addr) & 8)
403 return 0; /* return 1; */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 return 0;
406}
407
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200408static int siimage_dma_test_irq(ide_drive_t *drive)
409{
Bartlomiej Zolnierkiewicz13572142008-07-15 21:21:49 +0200410 if (drive->hwif->host_flags & IDE_HFLAG_MMIO)
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200411 return siimage_mmio_dma_test_irq(drive);
412 else
413 return siimage_io_dma_test_irq(drive);
414}
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416/**
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200417 * sil_sata_reset_poll - wait for SATA reset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 * @drive: drive we are resetting
419 *
420 * Poll the SATA phy and see whether it has come back from the dead
421 * yet.
422 */
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200423
424static int sil_sata_reset_poll(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Bartlomiej Zolnierkiewicz835457d2008-02-02 19:56:45 +0100426 ide_hwif_t *hwif = drive->hwif;
427 void __iomem *sata_status_addr
428 = (void __iomem *)hwif->sata_scr[SATA_STATUS_OFFSET];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Bartlomiej Zolnierkiewicz835457d2008-02-02 19:56:45 +0100430 if (sata_status_addr) {
431 /* SATA Status is available only when in MMIO mode */
432 u32 sata_stat = readl(sata_status_addr);
433
434 if ((sata_stat & 0x03) != 0x03) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 printk(KERN_WARNING "%s: reset phy dead, status=0x%08x\n",
Bartlomiej Zolnierkiewicz835457d2008-02-02 19:56:45 +0100436 hwif->name, sata_stat);
Elias Oltmanns64a8f002008-07-16 20:33:48 +0200437 return -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200440
441 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
444/**
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200445 * sil_sata_pre_reset - reset hook
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 * @drive: IDE device being reset
447 *
448 * For the SATA devices we need to handle recalibration/geometry
449 * differently
450 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Bartlomiej Zolnierkiewicz438c4702007-10-20 00:32:31 +0200452static void sil_sata_pre_reset(ide_drive_t *drive)
453{
454 if (drive->media == ide_disk) {
Bartlomiej Zolnierkiewiczca1b96e2009-05-17 19:12:21 +0200455 drive->special_flags &=
456 ~(IDE_SFLAG_SET_GEOMETRY | IDE_SFLAG_RECALIBRATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458}
459
460/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 * init_chipset_siimage - set up an SI device
462 * @dev: PCI device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 *
464 * Perform the initial PCI set up for this device. Attempt to switch
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200465 * to 133 MHz clocking if the system isn't already set up to do it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 */
467
Bartlomiej Zolnierkiewicz2ed0ef52009-03-24 23:22:53 +0100468static int init_chipset_siimage(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Bartlomiej Zolnierkiewicz4c674232008-07-24 22:53:16 +0200470 struct ide_host *host = pci_get_drvdata(dev);
471 void __iomem *ioaddr = host->host_priv;
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200472 unsigned long base, scsc_addr;
Bartlomiej Zolnierkiewicz4c674232008-07-24 22:53:16 +0200473 u8 rev = dev->revision, tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Bartlomiej Zolnierkiewiczfc212bb2007-10-19 00:30:08 +0200475 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, rev ? 1 : 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Bartlomiej Zolnierkiewicz4c674232008-07-24 22:53:16 +0200477 if (ioaddr)
478 pci_set_master(dev);
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200479
480 base = (unsigned long)ioaddr;
481
482 if (ioaddr && pdev_is_sata(dev)) {
483 u32 tmp32, irq_mask;
484
485 /* make sure IDE0/1 interrupts are not masked */
486 irq_mask = (1 << 22) | (1 << 23);
487 tmp32 = readl(ioaddr + 0x48);
488 if (tmp32 & irq_mask) {
489 tmp32 &= ~irq_mask;
490 writel(tmp32, ioaddr + 0x48);
491 readl(ioaddr + 0x48); /* flush */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200493 writel(0, ioaddr + 0x148);
494 writel(0, ioaddr + 0x1C8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
496
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200497 sil_iowrite8(dev, 0, base ? (base + 0xB4) : 0x80);
498 sil_iowrite8(dev, 0, base ? (base + 0xF4) : 0x84);
499
500 scsc_addr = base ? (base + 0x4A) : 0x8A;
501 tmp = sil_ioread8(dev, scsc_addr);
502
503 switch (tmp & 0x30) {
504 case 0x00:
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200505 /* On 100 MHz clocking, try and switch to 133 MHz */
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200506 sil_iowrite8(dev, tmp | 0x10, scsc_addr);
507 break;
508 case 0x30:
509 /* Clocking is disabled, attempt to force 133MHz clocking. */
510 sil_iowrite8(dev, tmp & ~0x20, scsc_addr);
511 case 0x10:
512 /* On 133Mhz clocking. */
513 break;
514 case 0x20:
515 /* On PCIx2 clocking. */
516 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200519 tmp = sil_ioread8(dev, scsc_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200521 sil_iowrite8 (dev, 0x72, base + 0xA1);
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200522 sil_iowrite16(dev, 0x328A, base + 0xA2);
523 sil_iowrite32(dev, 0x62DD62DD, base + 0xA4);
524 sil_iowrite32(dev, 0x43924392, base + 0xA8);
525 sil_iowrite32(dev, 0x40094009, base + 0xAC);
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200526 sil_iowrite8 (dev, 0x72, base ? (base + 0xE1) : 0xB1);
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200527 sil_iowrite16(dev, 0x328A, base ? (base + 0xE2) : 0xB2);
528 sil_iowrite32(dev, 0x62DD62DD, base ? (base + 0xE4) : 0xB4);
529 sil_iowrite32(dev, 0x43924392, base ? (base + 0xE8) : 0xB8);
530 sil_iowrite32(dev, 0x40094009, base ? (base + 0xEC) : 0xBC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200532 if (base && pdev_is_sata(dev)) {
533 writel(0xFFFF0000, ioaddr + 0x108);
534 writel(0xFFFF0000, ioaddr + 0x188);
535 writel(0x00680000, ioaddr + 0x148);
536 writel(0x00680000, ioaddr + 0x1C8);
537 }
538
Bartlomiej Zolnierkiewicz24cc4342008-04-28 23:44:38 +0200539 /* report the clocking mode of the controller */
540 if (!pdev_is_sata(dev)) {
541 static const char *clk_str[] =
542 { "== 100", "== 133", "== 2X PCI", "DISABLED!" };
543
544 tmp >>= 4;
Bartlomiej Zolnierkiewicza326b022008-07-24 22:53:33 +0200545 printk(KERN_INFO DRV_NAME " %s: BASE CLOCK %s\n",
546 pci_name(dev), clk_str[tmp & 3]);
Bartlomiej Zolnierkiewicz24cc4342008-04-28 23:44:38 +0200547 }
Bartlomiej Zolnierkiewicz165701d2008-04-28 23:44:38 +0200548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 return 0;
550}
551
552/**
553 * init_mmio_iops_siimage - set up the iops for MMIO
554 * @hwif: interface to set up
555 *
556 * The basic setup here is fairly simple, we can use standard MMIO
557 * operations. However we do have to set the taskfile register offsets
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200558 * by hand as there isn't a standard defined layout for them this time.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 *
560 * The hardware supports buffered taskfiles and also some rather nice
Alan Cox19c1ef52006-06-28 04:26:59 -0700561 * extended PRD tables. For better SI3112 support use the libata driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 */
563
564static void __devinit init_mmio_iops_siimage(ide_hwif_t *hwif)
565{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100566 struct pci_dev *dev = to_pci_dev(hwif->dev);
Bartlomiej Zolnierkiewicz4c674232008-07-24 22:53:16 +0200567 struct ide_host *host = pci_get_drvdata(dev);
568 void *addr = host->host_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 u8 ch = hwif->channel;
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200570 struct ide_io_ports *io_ports = &hwif->io_ports;
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200571 unsigned long base;
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 /*
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200574 * Fill in the basic hwif bits
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 */
Bartlomiej Zolnierkiewiczc5dd43e2008-04-28 23:44:37 +0200576 hwif->host_flags |= IDE_HFLAG_MMIO;
Bartlomiej Zolnierkiewicz761052e2008-07-23 19:55:54 +0200577
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200578 hwif->hwif_data = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 /*
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200581 * Now set up the hw. We have to do this ourselves as the
582 * MMIO layout isn't the same as the standard port based I/O.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 */
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200584 memset(io_ports, 0, sizeof(*io_ports));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 base = (unsigned long)addr;
587 if (ch)
588 base += 0xC0;
589 else
590 base += 0x80;
591
592 /*
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200593 * The buffered task file doesn't have status/control, so we
594 * can't currently use it sanely since we want to use LBA48 mode.
595 */
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200596 io_ports->data_addr = base;
597 io_ports->error_addr = base + 1;
598 io_ports->nsect_addr = base + 2;
599 io_ports->lbal_addr = base + 3;
600 io_ports->lbam_addr = base + 4;
601 io_ports->lbah_addr = base + 5;
602 io_ports->device_addr = base + 6;
603 io_ports->status_addr = base + 7;
604 io_ports->ctl_addr = base + 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 if (pdev_is_sata(dev)) {
607 base = (unsigned long)addr;
608 if (ch)
609 base += 0x80;
610 hwif->sata_scr[SATA_STATUS_OFFSET] = base + 0x104;
611 hwif->sata_scr[SATA_ERROR_OFFSET] = base + 0x108;
612 hwif->sata_scr[SATA_CONTROL_OFFSET] = base + 0x100;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
614
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200615 hwif->irq = dev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200617 hwif->dma_base = (unsigned long)addr + (ch ? 0x08 : 0x00);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
620static int is_dev_seagate_sata(ide_drive_t *drive)
621{
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200622 const char *s = (const char *)&drive->id[ATA_ID_PROD];
623 unsigned len = strnlen(s, ATA_ID_PROD_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200625 if ((len > 4) && (!memcmp(s, "ST", 2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if ((!memcmp(s + len - 2, "AS", 2)) ||
627 (!memcmp(s + len - 3, "ASL", 3))) {
628 printk(KERN_INFO "%s: applying pessimistic Seagate "
629 "errata fix\n", drive->name);
630 return 1;
631 }
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return 0;
634}
635
636/**
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100637 * sil_quirkproc - post probe fixups
638 * @drive: drive
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 *
640 * Called after drive probe we use this to decide whether the
641 * Seagate fixup must be applied. This used to be in init_iops but
642 * that can occur before we know what drives are present.
643 */
644
Bartlomiej Zolnierkiewicz36de9942008-08-05 18:17:03 +0200645static void sil_quirkproc(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100647 ide_hwif_t *hwif = drive->hwif;
648
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200649 /* Try and rise the rqsize */
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100650 if (!is_sata(hwif) || !is_dev_seagate_sata(drive))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 hwif->rqsize = 128;
652}
653
654/**
655 * init_iops_siimage - set up iops
656 * @hwif: interface to set up
657 *
658 * Do the basic setup for the SIIMAGE hardware interface
659 * and then do the MMIO setup if we can. This is the first
660 * look in we get for setting up the hwif so that we
661 * can get the iops right before using them.
662 */
663
664static void __devinit init_iops_siimage(ide_hwif_t *hwif)
665{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100666 struct pci_dev *dev = to_pci_dev(hwif->dev);
Bartlomiej Zolnierkiewicz4c674232008-07-24 22:53:16 +0200667 struct ide_host *host = pci_get_drvdata(dev);
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 hwif->hwif_data = NULL;
670
671 /* Pessimal until we finish probing */
672 hwif->rqsize = 15;
673
Bartlomiej Zolnierkiewicz4c674232008-07-24 22:53:16 +0200674 if (host->host_priv)
675 init_mmio_iops_siimage(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
678/**
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200679 * sil_cable_detect - cable detection
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 * @hwif: interface to check
681 *
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200682 * Check for the presence of an ATA66 capable cable on the interface.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 */
684
Bartlomiej Zolnierkiewiczf454cbe2008-08-05 18:17:04 +0200685static u8 sil_cable_detect(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200687 struct pci_dev *dev = to_pci_dev(hwif->dev);
688 unsigned long addr = siimage_selreg(hwif, 0);
689 u8 ata66 = sil_ioread8(dev, addr);
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200690
691 return (ata66 & 0x01) ? ATA_CBL_PATA80 : ATA_CBL_PATA40;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200694static const struct ide_port_ops sil_pata_port_ops = {
695 .set_pio_mode = sil_set_pio_mode,
696 .set_dma_mode = sil_set_dma_mode,
697 .quirkproc = sil_quirkproc,
698 .udma_filter = sil_pata_udma_filter,
699 .cable_detect = sil_cable_detect,
700};
701
702static const struct ide_port_ops sil_sata_port_ops = {
703 .set_pio_mode = sil_set_pio_mode,
704 .set_dma_mode = sil_set_dma_mode,
705 .reset_poll = sil_sata_reset_poll,
706 .pre_reset = sil_sata_pre_reset,
707 .quirkproc = sil_quirkproc,
708 .udma_filter = sil_sata_udma_filter,
709 .cable_detect = sil_cable_detect,
710};
711
Benjamin Herrenschmidtb26b0c52008-04-29 22:57:37 +0200712static const struct ide_dma_ops sil_dma_ops = {
713 .dma_host_set = ide_dma_host_set,
714 .dma_setup = ide_dma_setup,
Benjamin Herrenschmidtb26b0c52008-04-29 22:57:37 +0200715 .dma_start = ide_dma_start,
Bartlomiej Zolnierkiewicz653bcf52008-10-13 21:39:46 +0200716 .dma_end = ide_dma_end,
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200717 .dma_test_irq = siimage_dma_test_irq,
Bartlomiej Zolnierkiewicz22117d62009-03-27 12:46:47 +0100718 .dma_timer_expiry = ide_dma_sff_timer_expiry,
Benjamin Herrenschmidtb26b0c52008-04-29 22:57:37 +0200719 .dma_lost_irq = ide_dma_lost_irq,
Sergei Shtylyov592b5312009-01-06 17:21:02 +0100720 .dma_sff_read_status = ide_dma_sff_read_status,
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200721};
722
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +0200723#define DECLARE_SII_DEV(p_ops) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 { \
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +0200725 .name = DRV_NAME, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 .init_chipset = init_chipset_siimage, \
727 .init_iops = init_iops_siimage, \
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200728 .port_ops = p_ops, \
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200729 .dma_ops = &sil_dma_ops, \
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200730 .pio_mask = ATA_PIO4, \
Bartlomiej Zolnierkiewicz5f8b6c32007-10-19 00:30:07 +0200731 .mwdma_mask = ATA_MWDMA2, \
732 .udma_mask = ATA_UDMA6, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
734
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200735static const struct ide_port_info siimage_chipsets[] __devinitdata = {
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +0200736 /* 0: SiI680 */ DECLARE_SII_DEV(&sil_pata_port_ops),
737 /* 1: SiI3112 */ DECLARE_SII_DEV(&sil_sata_port_ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738};
739
740/**
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200741 * siimage_init_one - PCI layer discovery entry
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 * @dev: PCI device
743 * @id: ident table entry
744 *
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200745 * Called by the PCI code when it finds an SiI680 or SiI3112 controller.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 * We then use the IDE PCI generic helper to do most of the work.
747 */
Sergei Shtylyov7b255432008-04-28 23:44:44 +0200748
749static int __devinit siimage_init_one(struct pci_dev *dev,
750 const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
Bartlomiej Zolnierkiewicz4c674232008-07-24 22:53:16 +0200752 void __iomem *ioaddr = NULL;
753 resource_size_t bar5 = pci_resource_start(dev, 5);
754 unsigned long barsize = pci_resource_len(dev, 5);
755 int rc;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200756 struct ide_port_info d;
757 u8 idx = id->driver_data;
Bartlomiej Zolnierkiewicz4c674232008-07-24 22:53:16 +0200758 u8 BA5_EN;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200759
760 d = siimage_chipsets[idx];
761
762 if (idx) {
763 static int first = 1;
764
765 if (first) {
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +0200766 printk(KERN_INFO DRV_NAME ": For full SATA support you "
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200767 "should use the libata sata_sil module.\n");
768 first = 0;
769 }
770
771 d.host_flags |= IDE_HFLAG_NO_ATAPI_DMA;
772 }
773
Bartlomiej Zolnierkiewicz4c674232008-07-24 22:53:16 +0200774 rc = pci_enable_device(dev);
775 if (rc)
776 return rc;
777
778 pci_read_config_byte(dev, 0x8A, &BA5_EN);
779 if ((BA5_EN & 0x01) || bar5) {
780 /*
781 * Drop back to PIO if we can't map the MMIO. Some systems
782 * seem to get terminally confused in the PCI spaces.
783 */
784 if (!request_mem_region(bar5, barsize, d.name)) {
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +0200785 printk(KERN_WARNING DRV_NAME " %s: MMIO ports not "
Bartlomiej Zolnierkiewicz28cfd8a2008-07-24 22:53:31 +0200786 "available\n", pci_name(dev));
Bartlomiej Zolnierkiewicz4c674232008-07-24 22:53:16 +0200787 } else {
Arjan van de Ven1f1ab272008-10-23 23:22:07 +0200788 ioaddr = pci_ioremap_bar(dev, 5);
Bartlomiej Zolnierkiewicz4c674232008-07-24 22:53:16 +0200789 if (ioaddr == NULL)
790 release_mem_region(bar5, barsize);
791 }
792 }
793
794 rc = ide_pci_init_one(dev, &d, ioaddr);
795 if (rc) {
796 if (ioaddr) {
797 iounmap(ioaddr);
798 release_mem_region(bar5, barsize);
799 }
800 pci_disable_device(dev);
801 }
802
803 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
805
Bartlomiej Zolnierkiewiczfe382582008-07-24 22:53:25 +0200806static void __devexit siimage_remove(struct pci_dev *dev)
807{
808 struct ide_host *host = pci_get_drvdata(dev);
809 void __iomem *ioaddr = host->host_priv;
810
811 ide_pci_remove(dev);
812
813 if (ioaddr) {
814 resource_size_t bar5 = pci_resource_start(dev, 5);
815 unsigned long barsize = pci_resource_len(dev, 5);
816
817 iounmap(ioaddr);
818 release_mem_region(bar5, barsize);
819 }
820
821 pci_disable_device(dev);
822}
823
Bartlomiej Zolnierkiewicz9cbcc5e2007-10-16 22:29:56 +0200824static const struct pci_device_id siimage_pci_tbl[] = {
825 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_680), 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826#ifdef CONFIG_BLK_DEV_IDE_SATA
Bartlomiej Zolnierkiewicz9cbcc5e2007-10-16 22:29:56 +0200827 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_3112), 1 },
Bartlomiej Zolnierkiewiczced3ec82008-07-24 22:53:32 +0200828 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_1210SA), 1 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829#endif
830 { 0, },
831};
832MODULE_DEVICE_TABLE(pci, siimage_pci_tbl);
833
Bartlomiej Zolnierkiewicza9ab09e2008-10-13 21:39:41 +0200834static struct pci_driver siimage_pci_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 .name = "SiI_IDE",
836 .id_table = siimage_pci_tbl,
837 .probe = siimage_init_one,
Adrian Bunka69999e2008-08-18 21:40:03 +0200838 .remove = __devexit_p(siimage_remove),
Bartlomiej Zolnierkiewiczfeb22b72008-10-10 22:39:32 +0200839 .suspend = ide_pci_suspend,
840 .resume = ide_pci_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841};
842
Bartlomiej Zolnierkiewicz82ab1ee2007-01-27 13:46:56 +0100843static int __init siimage_ide_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
Bartlomiej Zolnierkiewicza9ab09e2008-10-13 21:39:41 +0200845 return ide_pci_register_driver(&siimage_pci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846}
847
Bartlomiej Zolnierkiewiczfe382582008-07-24 22:53:25 +0200848static void __exit siimage_ide_exit(void)
849{
Bartlomiej Zolnierkiewicza9ab09e2008-10-13 21:39:41 +0200850 pci_unregister_driver(&siimage_pci_driver);
Bartlomiej Zolnierkiewiczfe382582008-07-24 22:53:25 +0200851}
852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853module_init(siimage_ide_init);
Bartlomiej Zolnierkiewiczfe382582008-07-24 22:53:25 +0200854module_exit(siimage_ide_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856MODULE_AUTHOR("Andre Hedrick, Alan Cox");
857MODULE_DESCRIPTION("PCI driver module for SiI IDE");
858MODULE_LICENSE("GPL");