blob: b0edc7de7b2df2723cda66d8e9d9d8cbc967cce2 [file] [log] [blame]
Jeff Garzik669a5db2006-08-29 18:12:40 -04001/*
2 * pata_sis.c - SiS ATA driver
3 *
Alan Coxab771632008-10-27 15:09:10 +00004 * (C) 2005 Red Hat
Bartlomiej Zolnierkiewicz750c7132009-12-03 20:32:13 +01005 * (C) 2007,2009 Bartlomiej Zolnierkiewicz
Jeff Garzik669a5db2006-08-29 18:12:40 -04006 *
7 * Based upon linux/drivers/ide/pci/sis5513.c
8 * Copyright (C) 1999-2000 Andre Hedrick <andre@linux-ide.org>
9 * Copyright (C) 2002 Lionel Bouton <Lionel.Bouton@inet6.fr>, Maintainer
10 * Copyright (C) 2003 Vojtech Pavlik <vojtech@suse.cz>
11 * SiS Taiwan : for direct support and hardware.
12 * Daniela Engert : for initial ATA100 advices and numerous others.
13 * John Fremlin, Manfred Spraul, Dave Morgan, Peter Kjellerstedt :
14 * for checking code correctness, providing patches.
15 * Original tests and design on the SiS620 chipset.
16 * ATA100 tests and design on the SiS735 chipset.
17 * ATA16/33 support from specs
18 * ATA133 support for SiS961/962 by L.C. Chang <lcchang@sis.com.tw>
19 *
20 *
21 * TODO
22 * Check MWDMA on drives that don't support MWDMA speed pio cycles ?
23 * More Testing
24 */
25
26#include <linux/kernel.h>
27#include <linux/module.h>
28#include <linux/pci.h>
29#include <linux/init.h>
30#include <linux/blkdev.h>
31#include <linux/delay.h>
32#include <linux/device.h>
33#include <scsi/scsi_host.h>
34#include <linux/libata.h>
35#include <linux/ata.h>
Alan4bb64fb2007-02-16 01:40:04 -080036#include "sis.h"
Jeff Garzik669a5db2006-08-29 18:12:40 -040037
38#define DRV_NAME "pata_sis"
Bartlomiej Zolnierkiewicz4761c062007-07-31 22:02:41 +020039#define DRV_VERSION "0.5.2"
Jeff Garzik669a5db2006-08-29 18:12:40 -040040
41struct sis_chipset {
Tejun Heo1626aeb2007-05-04 12:43:58 +020042 u16 device; /* PCI host ID */
43 const struct ata_port_info *info; /* Info block */
Jeff Garzik669a5db2006-08-29 18:12:40 -040044 /* Probably add family, cable detect type etc here to clean
45 up code later */
46};
47
Jakub W. Jozwicki J7dcbc1f2007-01-09 09:01:19 +090048struct sis_laptop {
49 u16 device;
50 u16 subvendor;
51 u16 subdevice;
52};
53
54static const struct sis_laptop sis_laptop[] = {
55 /* devid, subvendor, subdev */
56 { 0x5513, 0x1043, 0x1107 }, /* ASUS A6K */
Alan Cox4f2d47c2007-08-22 22:56:43 +010057 { 0x5513, 0x1734, 0x105F }, /* FSC Amilo A1630 */
Dan McGeeedc7d122011-09-07 11:23:22 -050058 { 0x5513, 0x1071, 0x8640 }, /* EasyNote K5305 */
Jakub W. Jozwicki J7dcbc1f2007-01-09 09:01:19 +090059 /* end marker */
60 { 0, }
61};
62
63static int sis_short_ata40(struct pci_dev *dev)
64{
65 const struct sis_laptop *lap = &sis_laptop[0];
66
67 while (lap->device) {
68 if (lap->device == dev->device &&
69 lap->subvendor == dev->subsystem_vendor &&
70 lap->subdevice == dev->subsystem_device)
71 return 1;
72 lap++;
73 }
74
75 return 0;
76}
77
Jeff Garzik669a5db2006-08-29 18:12:40 -040078/**
Dan McGeeedc7d122011-09-07 11:23:22 -050079 * sis_old_port_base - return PCI configuration base for dev
Jeff Garzik669a5db2006-08-29 18:12:40 -040080 * @adev: device
81 *
82 * Returns the base of the PCI configuration registers for this port
83 * number.
84 */
85
Alan Coxdd668d12007-05-21 15:00:53 +010086static int sis_old_port_base(struct ata_device *adev)
Jeff Garzik669a5db2006-08-29 18:12:40 -040087{
Dan McGeeedc7d122011-09-07 11:23:22 -050088 return 0x40 + (4 * adev->link->ap->port_no) + (2 * adev->devno);
Jeff Garzik669a5db2006-08-29 18:12:40 -040089}
90
91/**
Dan McGeeedc7d122011-09-07 11:23:22 -050092 * sis_port_base - return PCI configuration base for dev
Dan McGee023a0172011-09-07 11:23:18 -050093 * @adev: device
94 *
95 * Returns the base of the PCI configuration registers for this port
96 * number.
97 */
98
99static int sis_port_base(struct ata_device *adev)
100{
101 struct ata_port *ap = adev->link->ap;
102 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
103 int port = 0x40;
104 u32 reg54;
105
106 /* If bit 30 is set then the registers are mapped at 0x70 not 0x40 */
107 pci_read_config_dword(pdev, 0x54, &reg54);
108 if (reg54 & 0x40000000)
109 port = 0x70;
110
111 return port + (8 * ap->port_no) + (4 * adev->devno);
112}
113
114/**
Dan McGeeedc7d122011-09-07 11:23:22 -0500115 * sis_133_cable_detect - check for 40/80 pin
Jeff Garzik669a5db2006-08-29 18:12:40 -0400116 * @ap: Port
Tejun Heod4b2bab2007-02-02 16:50:52 +0900117 * @deadline: deadline jiffies for the operation
Jeff Garzik669a5db2006-08-29 18:12:40 -0400118 *
119 * Perform cable detection for the later UDMA133 capable
120 * SiS chipset.
121 */
122
Alan Cox2e413f52007-03-07 16:54:24 +0000123static int sis_133_cable_detect(struct ata_port *ap)
124{
125 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
126 u16 tmp;
127
128 /* The top bit of this register is the cable detect bit */
129 pci_read_config_word(pdev, 0x50 + 2 * ap->port_no, &tmp);
130 if ((tmp & 0x8000) && !sis_short_ata40(pdev))
131 return ATA_CBL_PATA40;
132 return ATA_CBL_PATA80;
133}
134
135/**
Dan McGeeedc7d122011-09-07 11:23:22 -0500136 * sis_66_cable_detect - check for 40/80 pin
Alan Cox2e413f52007-03-07 16:54:24 +0000137 * @ap: Port
138 *
139 * Perform cable detection on the UDMA66, UDMA100 and early UDMA133
140 * SiS IDE controllers.
141 */
142
143static int sis_66_cable_detect(struct ata_port *ap)
144{
145 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
146 u8 tmp;
147
148 /* Older chips keep cable detect in bits 4/5 of reg 0x48 */
149 pci_read_config_byte(pdev, 0x48, &tmp);
150 tmp >>= ap->port_no;
151 if ((tmp & 0x10) && !sis_short_ata40(pdev))
152 return ATA_CBL_PATA40;
153 return ATA_CBL_PATA80;
154}
155
156
157/**
Dan McGeeedc7d122011-09-07 11:23:22 -0500158 * sis_pre_reset - probe begin
Tejun Heocc0680a2007-08-06 18:36:23 +0900159 * @link: ATA link
Tejun Heod4b2bab2007-02-02 16:50:52 +0900160 * @deadline: deadline jiffies for the operation
Alan Cox2e413f52007-03-07 16:54:24 +0000161 *
162 * Set up cable type and use generic probe init
163 */
164
Tejun Heocc0680a2007-08-06 18:36:23 +0900165static int sis_pre_reset(struct ata_link *link, unsigned long deadline)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400166{
167 static const struct pci_bits sis_enable_bits[] = {
168 { 0x4aU, 1U, 0x02UL, 0x02UL }, /* port 0 */
169 { 0x4aU, 1U, 0x04UL, 0x04UL }, /* port 1 */
170 };
Jeff Garzik85cd7252006-08-31 00:03:49 -0400171
Tejun Heocc0680a2007-08-06 18:36:23 +0900172 struct ata_port *ap = link->ap;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400173 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400174
Alan Coxc9619222006-09-26 17:53:38 +0100175 if (!pci_test_config_bits(pdev, &sis_enable_bits[ap->port_no]))
176 return -ENOENT;
Tejun Heod4b2bab2007-02-02 16:50:52 +0900177
Alan Cox15ce0942007-05-25 20:50:24 +0100178 /* Clear the FIFO settings. We can't enable the FIFO until
179 we know we are poking at a disk */
180 pci_write_config_byte(pdev, 0x4B, 0);
Tejun Heo9363c382008-04-07 22:47:16 +0900181 return ata_sff_prereset(link, deadline);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400182}
183
Alan Cox2e413f52007-03-07 16:54:24 +0000184
Jeff Garzik669a5db2006-08-29 18:12:40 -0400185/**
Dan McGeeedc7d122011-09-07 11:23:22 -0500186 * sis_set_fifo - Set RWP fifo bits for this device
Jeff Garzik669a5db2006-08-29 18:12:40 -0400187 * @ap: Port
188 * @adev: Device
189 *
190 * SIS chipsets implement prefetch/postwrite bits for each device
191 * on both channels. This functionality is not ATAPI compatible and
192 * must be configured according to the class of device present
193 */
194
195static void sis_set_fifo(struct ata_port *ap, struct ata_device *adev)
196{
197 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
198 u8 fifoctrl;
199 u8 mask = 0x11;
200
201 mask <<= (2 * ap->port_no);
202 mask <<= adev->devno;
203
204 /* This holds various bits including the FIFO control */
205 pci_read_config_byte(pdev, 0x4B, &fifoctrl);
206 fifoctrl &= ~mask;
207
208 /* Enable for ATA (disk) only */
209 if (adev->class == ATA_DEV_ATA)
210 fifoctrl |= mask;
211 pci_write_config_byte(pdev, 0x4B, fifoctrl);
212}
213
214/**
215 * sis_old_set_piomode - Initialize host controller PATA PIO timings
216 * @ap: Port whose timings we are configuring
217 * @adev: Device we are configuring for.
218 *
219 * Set PIO mode for device, in host controller PCI config space. This
220 * function handles PIO set up for all chips that are pre ATA100 and
221 * also early ATA100 devices.
222 *
223 * LOCKING:
224 * None (inherited from caller).
225 */
226
227static void sis_old_set_piomode (struct ata_port *ap, struct ata_device *adev)
228{
Dan McGeeedc7d122011-09-07 11:23:22 -0500229 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Alan Coxdd668d12007-05-21 15:00:53 +0100230 int port = sis_old_port_base(adev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400231 u8 t1, t2;
232 int speed = adev->pio_mode - XFER_PIO_0;
233
Dan McGeec03a4762011-09-07 11:23:21 -0500234 static const u8 active[] = { 0x00, 0x07, 0x04, 0x03, 0x01 };
235 static const u8 recovery[] = { 0x00, 0x06, 0x04, 0x03, 0x03 };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400236
237 sis_set_fifo(ap, adev);
238
239 pci_read_config_byte(pdev, port, &t1);
240 pci_read_config_byte(pdev, port + 1, &t2);
241
242 t1 &= ~0x0F; /* Clear active/recovery timings */
243 t2 &= ~0x07;
244
245 t1 |= active[speed];
246 t2 |= recovery[speed];
247
248 pci_write_config_byte(pdev, port, t1);
249 pci_write_config_byte(pdev, port + 1, t2);
250}
251
252/**
Bartlomiej Zolnierkiewicz4761c062007-07-31 22:02:41 +0200253 * sis_100_set_piomode - Initialize host controller PATA PIO timings
Jeff Garzik669a5db2006-08-29 18:12:40 -0400254 * @ap: Port whose timings we are configuring
255 * @adev: Device we are configuring for.
256 *
257 * Set PIO mode for device, in host controller PCI config space. This
258 * function handles PIO set up for ATA100 devices and early ATA133.
259 *
260 * LOCKING:
261 * None (inherited from caller).
262 */
263
264static void sis_100_set_piomode (struct ata_port *ap, struct ata_device *adev)
265{
Dan McGeeedc7d122011-09-07 11:23:22 -0500266 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Alan Coxdd668d12007-05-21 15:00:53 +0100267 int port = sis_old_port_base(adev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400268 int speed = adev->pio_mode - XFER_PIO_0;
269
Dan McGeec03a4762011-09-07 11:23:21 -0500270 static const u8 actrec[] = { 0x00, 0x67, 0x44, 0x33, 0x31 };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400271
272 sis_set_fifo(ap, adev);
273
274 pci_write_config_byte(pdev, port, actrec[speed]);
275}
276
277/**
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500278 * sis_133_set_piomode - Initialize host controller PATA PIO timings
Jeff Garzik669a5db2006-08-29 18:12:40 -0400279 * @ap: Port whose timings we are configuring
280 * @adev: Device we are configuring for.
281 *
282 * Set PIO mode for device, in host controller PCI config space. This
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500283 * function handles PIO set up for the later ATA133 devices.
Jeff Garzik669a5db2006-08-29 18:12:40 -0400284 *
285 * LOCKING:
286 * None (inherited from caller).
287 */
288
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500289static void sis_133_set_piomode (struct ata_port *ap, struct ata_device *adev)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400290{
Dan McGeeedc7d122011-09-07 11:23:22 -0500291 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Dan McGee023a0172011-09-07 11:23:18 -0500292 int port;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400293 u32 t1;
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500294 int speed = adev->pio_mode - XFER_PIO_0;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400295
Dan McGeec03a4762011-09-07 11:23:21 -0500296 static const u32 timing133[] = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400297 0x28269000, /* Recovery << 24 | Act << 16 | Ini << 12 */
298 0x0C266000,
299 0x04263000,
300 0x0C0A3000,
301 0x05093000
302 };
Dan McGeec03a4762011-09-07 11:23:21 -0500303 static const u32 timing100[] = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400304 0x1E1C6000, /* Recovery << 24 | Act << 16 | Ini << 12 */
305 0x091C4000,
306 0x031C2000,
307 0x09072000,
308 0x04062000
309 };
310
311 sis_set_fifo(ap, adev);
312
Dan McGee023a0172011-09-07 11:23:18 -0500313 port = sis_port_base(adev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400314 pci_read_config_dword(pdev, port, &t1);
315 t1 &= 0xC0C00FFF; /* Mask out timing */
316
317 if (t1 & 0x08) /* 100 or 133 ? */
318 t1 |= timing133[speed];
319 else
320 t1 |= timing100[speed];
321 pci_write_config_byte(pdev, port, t1);
322}
323
324/**
325 * sis_old_set_dmamode - Initialize host controller PATA DMA timings
326 * @ap: Port whose timings we are configuring
327 * @adev: Device to program
328 *
329 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
330 * Handles pre UDMA and UDMA33 devices. Supports MWDMA as well unlike
331 * the old ide/pci driver.
332 *
333 * LOCKING:
334 * None (inherited from caller).
335 */
336
337static void sis_old_set_dmamode (struct ata_port *ap, struct ata_device *adev)
338{
Dan McGeeedc7d122011-09-07 11:23:22 -0500339 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400340 int speed = adev->dma_mode - XFER_MW_DMA_0;
Alan Coxdd668d12007-05-21 15:00:53 +0100341 int drive_pci = sis_old_port_base(adev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400342 u16 timing;
343
Dan McGeec03a4762011-09-07 11:23:21 -0500344 static const u16 mwdma_bits[] = { 0x008, 0x302, 0x301 };
345 static const u16 udma_bits[] = { 0xE000, 0xC000, 0xA000 };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400346
347 pci_read_config_word(pdev, drive_pci, &timing);
348
349 if (adev->dma_mode < XFER_UDMA_0) {
350 /* bits 3-0 hold recovery timing bits 8-10 active timing and
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300351 the higher bits are dependent on the device */
Bartlomiej Zolnierkiewicz4761c062007-07-31 22:02:41 +0200352 timing &= ~0x870F;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400353 timing |= mwdma_bits[speed];
Jeff Garzik669a5db2006-08-29 18:12:40 -0400354 } else {
355 /* Bit 15 is UDMA on/off, bit 13-14 are cycle time */
356 speed = adev->dma_mode - XFER_UDMA_0;
357 timing &= ~0x6000;
358 timing |= udma_bits[speed];
359 }
Bartlomiej Zolnierkiewicz4761c062007-07-31 22:02:41 +0200360 pci_write_config_word(pdev, drive_pci, timing);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400361}
362
363/**
364 * sis_66_set_dmamode - Initialize host controller PATA DMA timings
365 * @ap: Port whose timings we are configuring
366 * @adev: Device to program
367 *
368 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
369 * Handles UDMA66 and early UDMA100 devices. Supports MWDMA as well unlike
370 * the old ide/pci driver.
371 *
372 * LOCKING:
373 * None (inherited from caller).
374 */
375
376static void sis_66_set_dmamode (struct ata_port *ap, struct ata_device *adev)
377{
Dan McGeeedc7d122011-09-07 11:23:22 -0500378 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400379 int speed = adev->dma_mode - XFER_MW_DMA_0;
Alan Coxdd668d12007-05-21 15:00:53 +0100380 int drive_pci = sis_old_port_base(adev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400381 u16 timing;
382
Tejun Heoedeb6142007-09-21 16:29:05 +0900383 /* MWDMA 0-2 and UDMA 0-5 */
Dan McGeec03a4762011-09-07 11:23:21 -0500384 static const u16 mwdma_bits[] = { 0x008, 0x302, 0x301 };
385 static const u16 udma_bits[] = { 0xF000, 0xD000, 0xB000, 0xA000, 0x9000, 0x8000 };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400386
387 pci_read_config_word(pdev, drive_pci, &timing);
388
389 if (adev->dma_mode < XFER_UDMA_0) {
390 /* bits 3-0 hold recovery timing bits 8-10 active timing and
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300391 the higher bits are dependent on the device, bit 15 udma */
Alan Coxdd668d12007-05-21 15:00:53 +0100392 timing &= ~0x870F;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400393 timing |= mwdma_bits[speed];
394 } else {
395 /* Bit 15 is UDMA on/off, bit 12-14 are cycle time */
396 speed = adev->dma_mode - XFER_UDMA_0;
Alan Coxdd668d12007-05-21 15:00:53 +0100397 timing &= ~0xF000;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400398 timing |= udma_bits[speed];
399 }
400 pci_write_config_word(pdev, drive_pci, timing);
401}
402
403/**
404 * sis_100_set_dmamode - Initialize host controller PATA DMA timings
405 * @ap: Port whose timings we are configuring
406 * @adev: Device to program
407 *
408 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500409 * Handles UDMA66 and early UDMA100 devices.
Jeff Garzik669a5db2006-08-29 18:12:40 -0400410 *
411 * LOCKING:
412 * None (inherited from caller).
413 */
414
415static void sis_100_set_dmamode (struct ata_port *ap, struct ata_device *adev)
416{
Dan McGeeedc7d122011-09-07 11:23:22 -0500417 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400418 int speed = adev->dma_mode - XFER_MW_DMA_0;
Alan Coxdd668d12007-05-21 15:00:53 +0100419 int drive_pci = sis_old_port_base(adev);
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500420 u8 timing;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400421
Dan McGeec03a4762011-09-07 11:23:21 -0500422 static const u8 udma_bits[] = { 0x8B, 0x87, 0x85, 0x83, 0x82, 0x81};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400423
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500424 pci_read_config_byte(pdev, drive_pci + 1, &timing);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400425
426 if (adev->dma_mode < XFER_UDMA_0) {
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500427 /* NOT SUPPORTED YET: NEED DATA SHEET. DITTO IN OLD DRIVER */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400428 } else {
Alan Coxdd668d12007-05-21 15:00:53 +0100429 /* Bit 7 is UDMA on/off, bit 0-3 are cycle time */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400430 speed = adev->dma_mode - XFER_UDMA_0;
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500431 timing &= ~0x8F;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400432 timing |= udma_bits[speed];
433 }
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500434 pci_write_config_byte(pdev, drive_pci + 1, timing);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400435}
436
437/**
438 * sis_133_early_set_dmamode - Initialize host controller PATA DMA timings
439 * @ap: Port whose timings we are configuring
440 * @adev: Device to program
441 *
442 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
Bartlomiej Zolnierkiewicz4761c062007-07-31 22:02:41 +0200443 * Handles early SiS 961 bridges.
Jeff Garzik669a5db2006-08-29 18:12:40 -0400444 *
445 * LOCKING:
446 * None (inherited from caller).
447 */
448
449static void sis_133_early_set_dmamode (struct ata_port *ap, struct ata_device *adev)
450{
Dan McGeeedc7d122011-09-07 11:23:22 -0500451 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400452 int speed = adev->dma_mode - XFER_MW_DMA_0;
Alan Coxdd668d12007-05-21 15:00:53 +0100453 int drive_pci = sis_old_port_base(adev);
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500454 u8 timing;
455 /* Low 4 bits are timing */
456 static const u8 udma_bits[] = { 0x8F, 0x8A, 0x87, 0x85, 0x83, 0x82, 0x81};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400457
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500458 pci_read_config_byte(pdev, drive_pci + 1, &timing);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400459
460 if (adev->dma_mode < XFER_UDMA_0) {
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500461 /* NOT SUPPORTED YET: NEED DATA SHEET. DITTO IN OLD DRIVER */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400462 } else {
Alan Coxdd668d12007-05-21 15:00:53 +0100463 /* Bit 7 is UDMA on/off, bit 0-3 are cycle time */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400464 speed = adev->dma_mode - XFER_UDMA_0;
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500465 timing &= ~0x8F;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400466 timing |= udma_bits[speed];
467 }
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500468 pci_write_config_byte(pdev, drive_pci + 1, timing);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400469}
470
471/**
472 * sis_133_set_dmamode - Initialize host controller PATA DMA timings
473 * @ap: Port whose timings we are configuring
474 * @adev: Device to program
475 *
476 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
Jeff Garzik669a5db2006-08-29 18:12:40 -0400477 *
478 * LOCKING:
479 * None (inherited from caller).
480 */
481
482static void sis_133_set_dmamode (struct ata_port *ap, struct ata_device *adev)
483{
Dan McGeeedc7d122011-09-07 11:23:22 -0500484 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Dan McGee023a0172011-09-07 11:23:18 -0500485 int port;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400486 u32 t1;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400487
Dan McGee023a0172011-09-07 11:23:18 -0500488 port = sis_port_base(adev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400489 pci_read_config_dword(pdev, port, &t1);
490
491 if (adev->dma_mode < XFER_UDMA_0) {
Dan McGee14004f02011-09-07 11:23:20 -0500492 /* Recovery << 24 | Act << 16 | Ini << 12, like PIO modes */
493 static const u32 timing_u100[] = { 0x19154000, 0x06072000, 0x04062000 };
494 static const u32 timing_u133[] = { 0x221C6000, 0x0C0A3000, 0x05093000 };
495 int speed = adev->dma_mode - XFER_MW_DMA_0;
496
497 t1 &= 0xC0C00FFF;
498 /* disable UDMA */
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500499 t1 &= ~0x00000004;
Dan McGee14004f02011-09-07 11:23:20 -0500500 if (t1 & 0x08)
501 t1 |= timing_u133[speed];
502 else
503 t1 |= timing_u100[speed];
Jeff Garzik669a5db2006-08-29 18:12:40 -0400504 } else {
Dan McGee14004f02011-09-07 11:23:20 -0500505 /* bits 4- cycle time 8 - cvs time */
506 static const u32 timing_u100[] = { 0x6B0, 0x470, 0x350, 0x140, 0x120, 0x110, 0x000 };
507 static const u32 timing_u133[] = { 0x9F0, 0x6A0, 0x470, 0x250, 0x230, 0x220, 0x210 };
Dan McGee023a0172011-09-07 11:23:18 -0500508 int speed = adev->dma_mode - XFER_UDMA_0;
Dan McGee14004f02011-09-07 11:23:20 -0500509
Jeff Garzik669a5db2006-08-29 18:12:40 -0400510 t1 &= ~0x00000FF0;
Dan McGee14004f02011-09-07 11:23:20 -0500511 /* enable UDMA */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400512 t1 |= 0x00000004;
513 if (t1 & 0x08)
514 t1 |= timing_u133[speed];
515 else
516 t1 |= timing_u100[speed];
517 }
518 pci_write_config_dword(pdev, port, t1);
519}
520
Dan McGeef30f9a52011-09-07 11:23:19 -0500521/**
522 * sis_133_mode_filter - mode selection filter
523 * @adev: ATA device
524 *
525 * Block UDMA6 on devices that do not support it.
526 */
527
528static unsigned long sis_133_mode_filter(struct ata_device *adev, unsigned long mask)
529{
530 struct ata_port *ap = adev->link->ap;
531 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
532 int port = sis_port_base(adev);
533 u32 t1;
534
535 pci_read_config_dword(pdev, port, &t1);
536 /* if ATA133 is disabled, mask it out */
537 if (!(t1 & 0x08))
538 mask &= ~(0xC0 << ATA_SHIFT_UDMA);
539 return mask;
540}
541
Jeff Garzik669a5db2006-08-29 18:12:40 -0400542static struct scsi_host_template sis_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900543 ATA_BMDMA_SHT(DRV_NAME),
Jeff Garzik669a5db2006-08-29 18:12:40 -0400544};
545
Tejun Heo029cfd62008-03-25 12:22:49 +0900546static struct ata_port_operations sis_133_for_sata_ops = {
547 .inherits = &ata_bmdma_port_ops,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400548 .set_piomode = sis_133_set_piomode,
549 .set_dmamode = sis_133_set_dmamode,
Tejun Heo029cfd62008-03-25 12:22:49 +0900550 .cable_detect = sis_133_cable_detect,
551};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400552
Tejun Heo029cfd62008-03-25 12:22:49 +0900553static struct ata_port_operations sis_base_ops = {
554 .inherits = &ata_bmdma_port_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900555 .prereset = sis_pre_reset,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400556};
557
Tejun Heo029cfd62008-03-25 12:22:49 +0900558static struct ata_port_operations sis_133_ops = {
559 .inherits = &sis_base_ops,
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200560 .set_piomode = sis_133_set_piomode,
561 .set_dmamode = sis_133_set_dmamode,
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200562 .cable_detect = sis_133_cable_detect,
Dan McGeef30f9a52011-09-07 11:23:19 -0500563 .mode_filter = sis_133_mode_filter,
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200564};
565
Tejun Heo029cfd62008-03-25 12:22:49 +0900566static struct ata_port_operations sis_133_early_ops = {
567 .inherits = &sis_base_ops,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400568 .set_piomode = sis_100_set_piomode,
569 .set_dmamode = sis_133_early_set_dmamode,
Alan Cox2e413f52007-03-07 16:54:24 +0000570 .cable_detect = sis_66_cable_detect,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400571};
572
Tejun Heo029cfd62008-03-25 12:22:49 +0900573static struct ata_port_operations sis_100_ops = {
574 .inherits = &sis_base_ops,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400575 .set_piomode = sis_100_set_piomode,
576 .set_dmamode = sis_100_set_dmamode,
Alan Cox2e413f52007-03-07 16:54:24 +0000577 .cable_detect = sis_66_cable_detect,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400578};
579
Tejun Heo029cfd62008-03-25 12:22:49 +0900580static struct ata_port_operations sis_66_ops = {
581 .inherits = &sis_base_ops,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400582 .set_piomode = sis_old_set_piomode,
583 .set_dmamode = sis_66_set_dmamode,
Alan Cox2e413f52007-03-07 16:54:24 +0000584 .cable_detect = sis_66_cable_detect,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400585};
586
Tejun Heo029cfd62008-03-25 12:22:49 +0900587static struct ata_port_operations sis_old_ops = {
588 .inherits = &sis_base_ops,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400589 .set_piomode = sis_old_set_piomode,
590 .set_dmamode = sis_old_set_dmamode,
Alan Cox2e413f52007-03-07 16:54:24 +0000591 .cable_detect = ata_cable_40wire,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400592};
593
Tejun Heo1626aeb2007-05-04 12:43:58 +0200594static const struct ata_port_info sis_info = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400595 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100596 .pio_mask = ATA_PIO4,
597 .mwdma_mask = ATA_MWDMA2,
598 /* No UDMA */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400599 .port_ops = &sis_old_ops,
600};
Tejun Heo1626aeb2007-05-04 12:43:58 +0200601static const struct ata_port_info sis_info33 = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400602 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100603 .pio_mask = ATA_PIO4,
604 .mwdma_mask = ATA_MWDMA2,
605 .udma_mask = ATA_UDMA2,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400606 .port_ops = &sis_old_ops,
607};
Tejun Heo1626aeb2007-05-04 12:43:58 +0200608static const struct ata_port_info sis_info66 = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400609 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100610 .pio_mask = ATA_PIO4,
611 /* No MWDMA */
612 .udma_mask = ATA_UDMA4,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400613 .port_ops = &sis_66_ops,
614};
Tejun Heo1626aeb2007-05-04 12:43:58 +0200615static const struct ata_port_info sis_info100 = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400616 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100617 .pio_mask = ATA_PIO4,
618 /* No MWDMA */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400619 .udma_mask = ATA_UDMA5,
620 .port_ops = &sis_100_ops,
621};
Tejun Heo1626aeb2007-05-04 12:43:58 +0200622static const struct ata_port_info sis_info100_early = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400623 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100624 .pio_mask = ATA_PIO4,
625 /* No MWDMA */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400626 .udma_mask = ATA_UDMA5,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400627 .port_ops = &sis_66_ops,
628};
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200629static const struct ata_port_info sis_info133 = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400630 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100631 .pio_mask = ATA_PIO4,
Dan McGee14004f02011-09-07 11:23:20 -0500632 .mwdma_mask = ATA_MWDMA2,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400633 .udma_mask = ATA_UDMA6,
634 .port_ops = &sis_133_ops,
635};
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200636const struct ata_port_info sis_info133_for_sata = {
Sergei Shtylyovc10f97b2011-02-04 22:03:34 +0300637 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100638 .pio_mask = ATA_PIO4,
639 /* No MWDMA */
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200640 .udma_mask = ATA_UDMA6,
641 .port_ops = &sis_133_for_sata_ops,
642};
Tejun Heo1626aeb2007-05-04 12:43:58 +0200643static const struct ata_port_info sis_info133_early = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400644 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100645 .pio_mask = ATA_PIO4,
646 /* No MWDMA */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400647 .udma_mask = ATA_UDMA6,
648 .port_ops = &sis_133_early_ops,
649};
650
Alan9b14dec2007-01-08 16:11:07 +0000651/* Privately shared with the SiS180 SATA driver, not for use elsewhere */
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200652EXPORT_SYMBOL_GPL(sis_info133_for_sata);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400653
654static void sis_fixup(struct pci_dev *pdev, struct sis_chipset *sis)
655{
656 u16 regw;
657 u8 reg;
658
659 if (sis->info == &sis_info133) {
660 pci_read_config_word(pdev, 0x50, &regw);
661 if (regw & 0x08)
662 pci_write_config_word(pdev, 0x50, regw & ~0x08);
663 pci_read_config_word(pdev, 0x52, &regw);
664 if (regw & 0x08)
665 pci_write_config_word(pdev, 0x52, regw & ~0x08);
666 return;
667 }
668
669 if (sis->info == &sis_info133_early || sis->info == &sis_info100) {
670 /* Fix up latency */
671 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0x80);
672 /* Set compatibility bit */
673 pci_read_config_byte(pdev, 0x49, &reg);
674 if (!(reg & 0x01))
675 pci_write_config_byte(pdev, 0x49, reg | 0x01);
676 return;
677 }
678
679 if (sis->info == &sis_info66 || sis->info == &sis_info100_early) {
680 /* Fix up latency */
681 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0x80);
682 /* Set compatibility bit */
683 pci_read_config_byte(pdev, 0x52, &reg);
684 if (!(reg & 0x04))
685 pci_write_config_byte(pdev, 0x52, reg | 0x04);
686 return;
687 }
688
689 if (sis->info == &sis_info33) {
690 pci_read_config_byte(pdev, PCI_CLASS_PROG, &reg);
691 if (( reg & 0x0F ) != 0x00)
692 pci_write_config_byte(pdev, PCI_CLASS_PROG, reg & 0xF0);
693 /* Fall through to ATA16 fixup below */
694 }
695
696 if (sis->info == &sis_info || sis->info == &sis_info33) {
697 /* force per drive recovery and active timings
698 needed on ATA_33 and below chips */
699 pci_read_config_byte(pdev, 0x52, &reg);
700 if (!(reg & 0x08))
701 pci_write_config_byte(pdev, 0x52, reg|0x08);
702 return;
703 }
704
705 BUG();
706}
707
708/**
709 * sis_init_one - Register SiS ATA PCI device with kernel services
710 * @pdev: PCI device to register
711 * @ent: Entry in sis_pci_tbl matching with @pdev
712 *
Dan McGeeedc7d122011-09-07 11:23:22 -0500713 * Called from kernel PCI layer. We probe for combined mode (sigh),
Jeff Garzik669a5db2006-08-29 18:12:40 -0400714 * and then hand over control to libata, for it to do the rest.
715 *
716 * LOCKING:
717 * Inherited from PCI layer (may sleep).
718 *
719 * RETURNS:
720 * Zero on success, or -ERRNO value.
721 */
722
723static int sis_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
724{
Tejun Heo887125e2008-03-25 12:22:49 +0900725 const struct ata_port_info *ppi[] = { NULL, NULL };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400726 struct pci_dev *host = NULL;
727 struct sis_chipset *chipset = NULL;
Alan Coxf3769e92007-04-19 11:09:52 +0100728 struct sis_chipset *sets;
Tejun Heof08048e2008-03-25 12:22:47 +0900729 int rc;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400730
731 static struct sis_chipset sis_chipsets[] = {
Jeff Garzikf20b16f2006-12-11 11:14:06 -0500732
Alan Coxaf323a22006-09-12 17:15:12 +0100733 { 0x0968, &sis_info133 },
734 { 0x0966, &sis_info133 },
735 { 0x0965, &sis_info133 },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400736 { 0x0745, &sis_info100 },
737 { 0x0735, &sis_info100 },
738 { 0x0733, &sis_info100 },
739 { 0x0635, &sis_info100 },
740 { 0x0633, &sis_info100 },
741
742 { 0x0730, &sis_info100_early }, /* 100 with ATA 66 layout */
743 { 0x0550, &sis_info100_early }, /* 100 with ATA 66 layout */
744
745 { 0x0640, &sis_info66 },
746 { 0x0630, &sis_info66 },
747 { 0x0620, &sis_info66 },
748 { 0x0540, &sis_info66 },
749 { 0x0530, &sis_info66 },
750
751 { 0x5600, &sis_info33 },
752 { 0x5598, &sis_info33 },
753 { 0x5597, &sis_info33 },
754 { 0x5591, &sis_info33 },
755 { 0x5582, &sis_info33 },
756 { 0x5581, &sis_info33 },
757
758 { 0x5596, &sis_info },
759 { 0x5571, &sis_info },
760 { 0x5517, &sis_info },
761 { 0x5511, &sis_info },
762
763 {0}
764 };
765 static struct sis_chipset sis133_early = {
766 0x0, &sis_info133_early
767 };
768 static struct sis_chipset sis133 = {
769 0x0, &sis_info133
770 };
771 static struct sis_chipset sis100_early = {
772 0x0, &sis_info100_early
773 };
774 static struct sis_chipset sis100 = {
775 0x0, &sis_info100
776 };
777
Joe Perches06296a12011-04-15 15:52:00 -0700778 ata_print_version_once(&pdev->dev, DRV_VERSION);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400779
Tejun Heof08048e2008-03-25 12:22:47 +0900780 rc = pcim_enable_device(pdev);
781 if (rc)
782 return rc;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400783
Tejun Heof08048e2008-03-25 12:22:47 +0900784 /* We have to find the bridge first */
Alan Coxf3769e92007-04-19 11:09:52 +0100785 for (sets = &sis_chipsets[0]; sets->device; sets++) {
786 host = pci_get_device(PCI_VENDOR_ID_SI, sets->device, NULL);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400787 if (host != NULL) {
Alan Coxf3769e92007-04-19 11:09:52 +0100788 chipset = sets; /* Match found */
789 if (sets->device == 0x630) { /* SIS630 */
Auke Kok44c10132007-06-08 15:46:36 -0700790 if (host->revision >= 0x30) /* 630 ET */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400791 chipset = &sis100_early;
792 }
793 break;
794 }
795 }
796
797 /* Look for concealed bridges */
Alan Coxf3769e92007-04-19 11:09:52 +0100798 if (chipset == NULL) {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400799 /* Second check */
800 u32 idemisc;
801 u16 trueid;
802
803 /* Disable ID masking and register remapping then
804 see what the real ID is */
805
806 pci_read_config_dword(pdev, 0x54, &idemisc);
807 pci_write_config_dword(pdev, 0x54, idemisc & 0x7fffffff);
808 pci_read_config_word(pdev, PCI_DEVICE_ID, &trueid);
809 pci_write_config_dword(pdev, 0x54, idemisc);
810
811 switch(trueid) {
812 case 0x5518: /* SIS 962/963 */
Dan McGeef30f9a52011-09-07 11:23:19 -0500813 dev_info(&pdev->dev,
814 "SiS 962/963 MuTIOL IDE UDMA133 controller\n");
Jeff Garzik669a5db2006-08-29 18:12:40 -0400815 chipset = &sis133;
816 if ((idemisc & 0x40000000) == 0) {
817 pci_write_config_dword(pdev, 0x54, idemisc | 0x40000000);
Dan McGeef30f9a52011-09-07 11:23:19 -0500818 dev_info(&pdev->dev,
819 "Switching to 5513 register mapping\n");
Jeff Garzik669a5db2006-08-29 18:12:40 -0400820 }
821 break;
822 case 0x0180: /* SIS 965/965L */
Dan McGeeedc7d122011-09-07 11:23:22 -0500823 chipset = &sis133;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400824 break;
825 case 0x1180: /* SIS 966/966L */
Dan McGeeedc7d122011-09-07 11:23:22 -0500826 chipset = &sis133;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400827 break;
828 }
829 }
830
831 /* Further check */
832 if (chipset == NULL) {
833 struct pci_dev *lpc_bridge;
834 u16 trueid;
835 u8 prefctl;
836 u8 idecfg;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400837
838 /* Try the second unmasking technique */
839 pci_read_config_byte(pdev, 0x4a, &idecfg);
840 pci_write_config_byte(pdev, 0x4a, idecfg | 0x10);
841 pci_read_config_word(pdev, PCI_DEVICE_ID, &trueid);
842 pci_write_config_byte(pdev, 0x4a, idecfg);
843
844 switch(trueid) {
845 case 0x5517:
846 lpc_bridge = pci_get_slot(pdev->bus, 0x10); /* Bus 0 Dev 2 Fn 0 */
847 if (lpc_bridge == NULL)
848 break;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400849 pci_read_config_byte(pdev, 0x49, &prefctl);
850 pci_dev_put(lpc_bridge);
851
Auke Kok44c10132007-06-08 15:46:36 -0700852 if (lpc_bridge->revision == 0x10 && (prefctl & 0x80)) {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400853 chipset = &sis133_early;
854 break;
855 }
856 chipset = &sis100;
857 break;
858 }
859 }
860 pci_dev_put(host);
861
862 /* No chipset info, no support */
863 if (chipset == NULL)
864 return -ENODEV;
865
Tejun Heo887125e2008-03-25 12:22:49 +0900866 ppi[0] = chipset->info;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400867
868 sis_fixup(pdev, chipset);
869
Tejun Heo1c5afdf2010-05-19 22:10:22 +0200870 return ata_pci_bmdma_init_one(pdev, ppi, &sis_sht, chipset, 0);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400871}
872
Bartlomiej Zolnierkiewicz750c7132009-12-03 20:32:13 +0100873#ifdef CONFIG_PM
874static int sis_reinit_one(struct pci_dev *pdev)
875{
876 struct ata_host *host = dev_get_drvdata(&pdev->dev);
877 int rc;
878
879 rc = ata_pci_device_do_resume(pdev);
880 if (rc)
881 return rc;
882
883 sis_fixup(pdev, host->private_data);
884
885 ata_host_resume(host);
886 return 0;
887}
888#endif
889
Jeff Garzik669a5db2006-08-29 18:12:40 -0400890static const struct pci_device_id sis_pci_tbl[] = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400891 { PCI_VDEVICE(SI, 0x5513), }, /* SiS 5513 */
892 { PCI_VDEVICE(SI, 0x5518), }, /* SiS 5518 */
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200893 { PCI_VDEVICE(SI, 0x1180), }, /* SiS 1180 */
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400894
Jeff Garzik669a5db2006-08-29 18:12:40 -0400895 { }
896};
897
898static struct pci_driver sis_pci_driver = {
899 .name = DRV_NAME,
900 .id_table = sis_pci_tbl,
901 .probe = sis_init_one,
902 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900903#ifdef CONFIG_PM
Alan62d64ae2006-11-27 16:27:20 +0000904 .suspend = ata_pci_device_suspend,
Bartlomiej Zolnierkiewicz750c7132009-12-03 20:32:13 +0100905 .resume = sis_reinit_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900906#endif
Jeff Garzik669a5db2006-08-29 18:12:40 -0400907};
908
909static int __init sis_init(void)
910{
911 return pci_register_driver(&sis_pci_driver);
912}
913
914static void __exit sis_exit(void)
915{
916 pci_unregister_driver(&sis_pci_driver);
917}
918
Jeff Garzik669a5db2006-08-29 18:12:40 -0400919module_init(sis_init);
920module_exit(sis_exit);
921
922MODULE_AUTHOR("Alan Cox");
923MODULE_DESCRIPTION("SCSI low-level driver for SiS ATA");
924MODULE_LICENSE("GPL");
925MODULE_DEVICE_TABLE(pci, sis_pci_tbl);
926MODULE_VERSION(DRV_VERSION);
927