blob: 626f989d5c6a7f30994d56128332251310d625b5 [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>
Jeff Garzik669a5db2006-08-29 18:12:40 -040029#include <linux/blkdev.h>
30#include <linux/delay.h>
31#include <linux/device.h>
32#include <scsi/scsi_host.h>
33#include <linux/libata.h>
34#include <linux/ata.h>
Alan4bb64fb2007-02-16 01:40:04 -080035#include "sis.h"
Jeff Garzik669a5db2006-08-29 18:12:40 -040036
37#define DRV_NAME "pata_sis"
Bartlomiej Zolnierkiewicz4761c062007-07-31 22:02:41 +020038#define DRV_VERSION "0.5.2"
Jeff Garzik669a5db2006-08-29 18:12:40 -040039
40struct sis_chipset {
Tejun Heo1626aeb2007-05-04 12:43:58 +020041 u16 device; /* PCI host ID */
42 const struct ata_port_info *info; /* Info block */
Jeff Garzik669a5db2006-08-29 18:12:40 -040043 /* Probably add family, cable detect type etc here to clean
44 up code later */
45};
46
Jakub W. Jozwicki J7dcbc1f2007-01-09 09:01:19 +090047struct sis_laptop {
48 u16 device;
49 u16 subvendor;
50 u16 subdevice;
51};
52
53static const struct sis_laptop sis_laptop[] = {
54 /* devid, subvendor, subdev */
55 { 0x5513, 0x1043, 0x1107 }, /* ASUS A6K */
Alan Cox4f2d47c2007-08-22 22:56:43 +010056 { 0x5513, 0x1734, 0x105F }, /* FSC Amilo A1630 */
Dan McGeeedc7d122011-09-07 11:23:22 -050057 { 0x5513, 0x1071, 0x8640 }, /* EasyNote K5305 */
Jakub W. Jozwicki J7dcbc1f2007-01-09 09:01:19 +090058 /* end marker */
59 { 0, }
60};
61
62static int sis_short_ata40(struct pci_dev *dev)
63{
64 const struct sis_laptop *lap = &sis_laptop[0];
65
66 while (lap->device) {
67 if (lap->device == dev->device &&
68 lap->subvendor == dev->subsystem_vendor &&
69 lap->subdevice == dev->subsystem_device)
70 return 1;
71 lap++;
72 }
73
74 return 0;
75}
76
Jeff Garzik669a5db2006-08-29 18:12:40 -040077/**
Dan McGeeedc7d122011-09-07 11:23:22 -050078 * sis_old_port_base - return PCI configuration base for dev
Jeff Garzik669a5db2006-08-29 18:12:40 -040079 * @adev: device
80 *
81 * Returns the base of the PCI configuration registers for this port
82 * number.
83 */
84
Alan Coxdd668d12007-05-21 15:00:53 +010085static int sis_old_port_base(struct ata_device *adev)
Jeff Garzik669a5db2006-08-29 18:12:40 -040086{
Dan McGeeedc7d122011-09-07 11:23:22 -050087 return 0x40 + (4 * adev->link->ap->port_no) + (2 * adev->devno);
Jeff Garzik669a5db2006-08-29 18:12:40 -040088}
89
90/**
Dan McGeeedc7d122011-09-07 11:23:22 -050091 * sis_port_base - return PCI configuration base for dev
Dan McGee023a0172011-09-07 11:23:18 -050092 * @adev: device
93 *
94 * Returns the base of the PCI configuration registers for this port
95 * number.
96 */
97
98static int sis_port_base(struct ata_device *adev)
99{
100 struct ata_port *ap = adev->link->ap;
101 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
102 int port = 0x40;
103 u32 reg54;
104
105 /* If bit 30 is set then the registers are mapped at 0x70 not 0x40 */
106 pci_read_config_dword(pdev, 0x54, &reg54);
107 if (reg54 & 0x40000000)
108 port = 0x70;
109
110 return port + (8 * ap->port_no) + (4 * adev->devno);
111}
112
113/**
Dan McGeeedc7d122011-09-07 11:23:22 -0500114 * sis_133_cable_detect - check for 40/80 pin
Jeff Garzik669a5db2006-08-29 18:12:40 -0400115 * @ap: Port
Tejun Heod4b2bab2007-02-02 16:50:52 +0900116 * @deadline: deadline jiffies for the operation
Jeff Garzik669a5db2006-08-29 18:12:40 -0400117 *
118 * Perform cable detection for the later UDMA133 capable
119 * SiS chipset.
120 */
121
Alan Cox2e413f52007-03-07 16:54:24 +0000122static int sis_133_cable_detect(struct ata_port *ap)
123{
124 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
125 u16 tmp;
126
127 /* The top bit of this register is the cable detect bit */
128 pci_read_config_word(pdev, 0x50 + 2 * ap->port_no, &tmp);
129 if ((tmp & 0x8000) && !sis_short_ata40(pdev))
130 return ATA_CBL_PATA40;
131 return ATA_CBL_PATA80;
132}
133
134/**
Dan McGeeedc7d122011-09-07 11:23:22 -0500135 * sis_66_cable_detect - check for 40/80 pin
Alan Cox2e413f52007-03-07 16:54:24 +0000136 * @ap: Port
137 *
138 * Perform cable detection on the UDMA66, UDMA100 and early UDMA133
139 * SiS IDE controllers.
140 */
141
142static int sis_66_cable_detect(struct ata_port *ap)
143{
144 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
145 u8 tmp;
146
147 /* Older chips keep cable detect in bits 4/5 of reg 0x48 */
148 pci_read_config_byte(pdev, 0x48, &tmp);
149 tmp >>= ap->port_no;
150 if ((tmp & 0x10) && !sis_short_ata40(pdev))
151 return ATA_CBL_PATA40;
152 return ATA_CBL_PATA80;
153}
154
155
156/**
Dan McGeeedc7d122011-09-07 11:23:22 -0500157 * sis_pre_reset - probe begin
Tejun Heocc0680a2007-08-06 18:36:23 +0900158 * @link: ATA link
Tejun Heod4b2bab2007-02-02 16:50:52 +0900159 * @deadline: deadline jiffies for the operation
Alan Cox2e413f52007-03-07 16:54:24 +0000160 *
161 * Set up cable type and use generic probe init
162 */
163
Tejun Heocc0680a2007-08-06 18:36:23 +0900164static int sis_pre_reset(struct ata_link *link, unsigned long deadline)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400165{
166 static const struct pci_bits sis_enable_bits[] = {
167 { 0x4aU, 1U, 0x02UL, 0x02UL }, /* port 0 */
168 { 0x4aU, 1U, 0x04UL, 0x04UL }, /* port 1 */
169 };
Jeff Garzik85cd7252006-08-31 00:03:49 -0400170
Tejun Heocc0680a2007-08-06 18:36:23 +0900171 struct ata_port *ap = link->ap;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400172 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400173
Alan Coxc9619222006-09-26 17:53:38 +0100174 if (!pci_test_config_bits(pdev, &sis_enable_bits[ap->port_no]))
175 return -ENOENT;
Tejun Heod4b2bab2007-02-02 16:50:52 +0900176
Alan Cox15ce0942007-05-25 20:50:24 +0100177 /* Clear the FIFO settings. We can't enable the FIFO until
178 we know we are poking at a disk */
179 pci_write_config_byte(pdev, 0x4B, 0);
Tejun Heo9363c382008-04-07 22:47:16 +0900180 return ata_sff_prereset(link, deadline);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400181}
182
Alan Cox2e413f52007-03-07 16:54:24 +0000183
Jeff Garzik669a5db2006-08-29 18:12:40 -0400184/**
Dan McGeeedc7d122011-09-07 11:23:22 -0500185 * sis_set_fifo - Set RWP fifo bits for this device
Jeff Garzik669a5db2006-08-29 18:12:40 -0400186 * @ap: Port
187 * @adev: Device
188 *
189 * SIS chipsets implement prefetch/postwrite bits for each device
190 * on both channels. This functionality is not ATAPI compatible and
191 * must be configured according to the class of device present
192 */
193
194static void sis_set_fifo(struct ata_port *ap, struct ata_device *adev)
195{
196 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
197 u8 fifoctrl;
198 u8 mask = 0x11;
199
200 mask <<= (2 * ap->port_no);
201 mask <<= adev->devno;
202
203 /* This holds various bits including the FIFO control */
204 pci_read_config_byte(pdev, 0x4B, &fifoctrl);
205 fifoctrl &= ~mask;
206
207 /* Enable for ATA (disk) only */
208 if (adev->class == ATA_DEV_ATA)
209 fifoctrl |= mask;
210 pci_write_config_byte(pdev, 0x4B, fifoctrl);
211}
212
213/**
214 * sis_old_set_piomode - Initialize host controller PATA PIO timings
215 * @ap: Port whose timings we are configuring
216 * @adev: Device we are configuring for.
217 *
218 * Set PIO mode for device, in host controller PCI config space. This
219 * function handles PIO set up for all chips that are pre ATA100 and
220 * also early ATA100 devices.
221 *
222 * LOCKING:
223 * None (inherited from caller).
224 */
225
226static void sis_old_set_piomode (struct ata_port *ap, struct ata_device *adev)
227{
Dan McGeeedc7d122011-09-07 11:23:22 -0500228 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Alan Coxdd668d12007-05-21 15:00:53 +0100229 int port = sis_old_port_base(adev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400230 u8 t1, t2;
231 int speed = adev->pio_mode - XFER_PIO_0;
232
Dan McGeec03a4762011-09-07 11:23:21 -0500233 static const u8 active[] = { 0x00, 0x07, 0x04, 0x03, 0x01 };
234 static const u8 recovery[] = { 0x00, 0x06, 0x04, 0x03, 0x03 };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400235
236 sis_set_fifo(ap, adev);
237
238 pci_read_config_byte(pdev, port, &t1);
239 pci_read_config_byte(pdev, port + 1, &t2);
240
241 t1 &= ~0x0F; /* Clear active/recovery timings */
242 t2 &= ~0x07;
243
244 t1 |= active[speed];
245 t2 |= recovery[speed];
246
247 pci_write_config_byte(pdev, port, t1);
248 pci_write_config_byte(pdev, port + 1, t2);
249}
250
251/**
Bartlomiej Zolnierkiewicz4761c062007-07-31 22:02:41 +0200252 * sis_100_set_piomode - Initialize host controller PATA PIO timings
Jeff Garzik669a5db2006-08-29 18:12:40 -0400253 * @ap: Port whose timings we are configuring
254 * @adev: Device we are configuring for.
255 *
256 * Set PIO mode for device, in host controller PCI config space. This
257 * function handles PIO set up for ATA100 devices and early ATA133.
258 *
259 * LOCKING:
260 * None (inherited from caller).
261 */
262
263static void sis_100_set_piomode (struct ata_port *ap, struct ata_device *adev)
264{
Dan McGeeedc7d122011-09-07 11:23:22 -0500265 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Alan Coxdd668d12007-05-21 15:00:53 +0100266 int port = sis_old_port_base(adev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400267 int speed = adev->pio_mode - XFER_PIO_0;
268
Dan McGeec03a4762011-09-07 11:23:21 -0500269 static const u8 actrec[] = { 0x00, 0x67, 0x44, 0x33, 0x31 };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400270
271 sis_set_fifo(ap, adev);
272
273 pci_write_config_byte(pdev, port, actrec[speed]);
274}
275
276/**
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500277 * sis_133_set_piomode - Initialize host controller PATA PIO timings
Jeff Garzik669a5db2006-08-29 18:12:40 -0400278 * @ap: Port whose timings we are configuring
279 * @adev: Device we are configuring for.
280 *
281 * Set PIO mode for device, in host controller PCI config space. This
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500282 * function handles PIO set up for the later ATA133 devices.
Jeff Garzik669a5db2006-08-29 18:12:40 -0400283 *
284 * LOCKING:
285 * None (inherited from caller).
286 */
287
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500288static void sis_133_set_piomode (struct ata_port *ap, struct ata_device *adev)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400289{
Dan McGeeedc7d122011-09-07 11:23:22 -0500290 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Dan McGee023a0172011-09-07 11:23:18 -0500291 int port;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400292 u32 t1;
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500293 int speed = adev->pio_mode - XFER_PIO_0;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400294
Dan McGeec03a4762011-09-07 11:23:21 -0500295 static const u32 timing133[] = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400296 0x28269000, /* Recovery << 24 | Act << 16 | Ini << 12 */
297 0x0C266000,
298 0x04263000,
299 0x0C0A3000,
300 0x05093000
301 };
Dan McGeec03a4762011-09-07 11:23:21 -0500302 static const u32 timing100[] = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400303 0x1E1C6000, /* Recovery << 24 | Act << 16 | Ini << 12 */
304 0x091C4000,
305 0x031C2000,
306 0x09072000,
307 0x04062000
308 };
309
310 sis_set_fifo(ap, adev);
311
Dan McGee023a0172011-09-07 11:23:18 -0500312 port = sis_port_base(adev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400313 pci_read_config_dword(pdev, port, &t1);
314 t1 &= 0xC0C00FFF; /* Mask out timing */
315
316 if (t1 & 0x08) /* 100 or 133 ? */
317 t1 |= timing133[speed];
318 else
319 t1 |= timing100[speed];
320 pci_write_config_byte(pdev, port, t1);
321}
322
323/**
324 * sis_old_set_dmamode - Initialize host controller PATA DMA timings
325 * @ap: Port whose timings we are configuring
326 * @adev: Device to program
327 *
328 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
329 * Handles pre UDMA and UDMA33 devices. Supports MWDMA as well unlike
330 * the old ide/pci driver.
331 *
332 * LOCKING:
333 * None (inherited from caller).
334 */
335
336static void sis_old_set_dmamode (struct ata_port *ap, struct ata_device *adev)
337{
Dan McGeeedc7d122011-09-07 11:23:22 -0500338 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400339 int speed = adev->dma_mode - XFER_MW_DMA_0;
Alan Coxdd668d12007-05-21 15:00:53 +0100340 int drive_pci = sis_old_port_base(adev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400341 u16 timing;
342
Dan McGeec03a4762011-09-07 11:23:21 -0500343 static const u16 mwdma_bits[] = { 0x008, 0x302, 0x301 };
344 static const u16 udma_bits[] = { 0xE000, 0xC000, 0xA000 };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400345
346 pci_read_config_word(pdev, drive_pci, &timing);
347
348 if (adev->dma_mode < XFER_UDMA_0) {
349 /* bits 3-0 hold recovery timing bits 8-10 active timing and
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300350 the higher bits are dependent on the device */
Bartlomiej Zolnierkiewicz4761c062007-07-31 22:02:41 +0200351 timing &= ~0x870F;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400352 timing |= mwdma_bits[speed];
Jeff Garzik669a5db2006-08-29 18:12:40 -0400353 } else {
354 /* Bit 15 is UDMA on/off, bit 13-14 are cycle time */
355 speed = adev->dma_mode - XFER_UDMA_0;
356 timing &= ~0x6000;
357 timing |= udma_bits[speed];
358 }
Bartlomiej Zolnierkiewicz4761c062007-07-31 22:02:41 +0200359 pci_write_config_word(pdev, drive_pci, timing);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400360}
361
362/**
363 * sis_66_set_dmamode - Initialize host controller PATA DMA timings
364 * @ap: Port whose timings we are configuring
365 * @adev: Device to program
366 *
367 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
368 * Handles UDMA66 and early UDMA100 devices. Supports MWDMA as well unlike
369 * the old ide/pci driver.
370 *
371 * LOCKING:
372 * None (inherited from caller).
373 */
374
375static void sis_66_set_dmamode (struct ata_port *ap, struct ata_device *adev)
376{
Dan McGeeedc7d122011-09-07 11:23:22 -0500377 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400378 int speed = adev->dma_mode - XFER_MW_DMA_0;
Alan Coxdd668d12007-05-21 15:00:53 +0100379 int drive_pci = sis_old_port_base(adev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400380 u16 timing;
381
Tejun Heoedeb6142007-09-21 16:29:05 +0900382 /* MWDMA 0-2 and UDMA 0-5 */
Dan McGeec03a4762011-09-07 11:23:21 -0500383 static const u16 mwdma_bits[] = { 0x008, 0x302, 0x301 };
384 static const u16 udma_bits[] = { 0xF000, 0xD000, 0xB000, 0xA000, 0x9000, 0x8000 };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400385
386 pci_read_config_word(pdev, drive_pci, &timing);
387
388 if (adev->dma_mode < XFER_UDMA_0) {
389 /* bits 3-0 hold recovery timing bits 8-10 active timing and
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300390 the higher bits are dependent on the device, bit 15 udma */
Alan Coxdd668d12007-05-21 15:00:53 +0100391 timing &= ~0x870F;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400392 timing |= mwdma_bits[speed];
393 } else {
394 /* Bit 15 is UDMA on/off, bit 12-14 are cycle time */
395 speed = adev->dma_mode - XFER_UDMA_0;
Alan Coxdd668d12007-05-21 15:00:53 +0100396 timing &= ~0xF000;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400397 timing |= udma_bits[speed];
398 }
399 pci_write_config_word(pdev, drive_pci, timing);
400}
401
402/**
403 * sis_100_set_dmamode - Initialize host controller PATA DMA timings
404 * @ap: Port whose timings we are configuring
405 * @adev: Device to program
406 *
407 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500408 * Handles UDMA66 and early UDMA100 devices.
Jeff Garzik669a5db2006-08-29 18:12:40 -0400409 *
410 * LOCKING:
411 * None (inherited from caller).
412 */
413
414static void sis_100_set_dmamode (struct ata_port *ap, struct ata_device *adev)
415{
Dan McGeeedc7d122011-09-07 11:23:22 -0500416 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400417 int speed = adev->dma_mode - XFER_MW_DMA_0;
Alan Coxdd668d12007-05-21 15:00:53 +0100418 int drive_pci = sis_old_port_base(adev);
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500419 u8 timing;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400420
Dan McGeec03a4762011-09-07 11:23:21 -0500421 static const u8 udma_bits[] = { 0x8B, 0x87, 0x85, 0x83, 0x82, 0x81};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400422
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500423 pci_read_config_byte(pdev, drive_pci + 1, &timing);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400424
425 if (adev->dma_mode < XFER_UDMA_0) {
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500426 /* NOT SUPPORTED YET: NEED DATA SHEET. DITTO IN OLD DRIVER */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400427 } else {
Alan Coxdd668d12007-05-21 15:00:53 +0100428 /* Bit 7 is UDMA on/off, bit 0-3 are cycle time */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400429 speed = adev->dma_mode - XFER_UDMA_0;
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500430 timing &= ~0x8F;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400431 timing |= udma_bits[speed];
432 }
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500433 pci_write_config_byte(pdev, drive_pci + 1, timing);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400434}
435
436/**
437 * sis_133_early_set_dmamode - Initialize host controller PATA DMA timings
438 * @ap: Port whose timings we are configuring
439 * @adev: Device to program
440 *
441 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
Bartlomiej Zolnierkiewicz4761c062007-07-31 22:02:41 +0200442 * Handles early SiS 961 bridges.
Jeff Garzik669a5db2006-08-29 18:12:40 -0400443 *
444 * LOCKING:
445 * None (inherited from caller).
446 */
447
448static void sis_133_early_set_dmamode (struct ata_port *ap, struct ata_device *adev)
449{
Dan McGeeedc7d122011-09-07 11:23:22 -0500450 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400451 int speed = adev->dma_mode - XFER_MW_DMA_0;
Alan Coxdd668d12007-05-21 15:00:53 +0100452 int drive_pci = sis_old_port_base(adev);
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500453 u8 timing;
454 /* Low 4 bits are timing */
455 static const u8 udma_bits[] = { 0x8F, 0x8A, 0x87, 0x85, 0x83, 0x82, 0x81};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400456
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500457 pci_read_config_byte(pdev, drive_pci + 1, &timing);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400458
459 if (adev->dma_mode < XFER_UDMA_0) {
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500460 /* NOT SUPPORTED YET: NEED DATA SHEET. DITTO IN OLD DRIVER */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400461 } else {
Alan Coxdd668d12007-05-21 15:00:53 +0100462 /* Bit 7 is UDMA on/off, bit 0-3 are cycle time */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400463 speed = adev->dma_mode - XFER_UDMA_0;
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500464 timing &= ~0x8F;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400465 timing |= udma_bits[speed];
466 }
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500467 pci_write_config_byte(pdev, drive_pci + 1, timing);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400468}
469
470/**
471 * sis_133_set_dmamode - Initialize host controller PATA DMA timings
472 * @ap: Port whose timings we are configuring
473 * @adev: Device to program
474 *
475 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
Jeff Garzik669a5db2006-08-29 18:12:40 -0400476 *
477 * LOCKING:
478 * None (inherited from caller).
479 */
480
481static void sis_133_set_dmamode (struct ata_port *ap, struct ata_device *adev)
482{
Dan McGeeedc7d122011-09-07 11:23:22 -0500483 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Dan McGee023a0172011-09-07 11:23:18 -0500484 int port;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400485 u32 t1;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400486
Dan McGee023a0172011-09-07 11:23:18 -0500487 port = sis_port_base(adev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400488 pci_read_config_dword(pdev, port, &t1);
489
490 if (adev->dma_mode < XFER_UDMA_0) {
Dan McGee14004f02011-09-07 11:23:20 -0500491 /* Recovery << 24 | Act << 16 | Ini << 12, like PIO modes */
492 static const u32 timing_u100[] = { 0x19154000, 0x06072000, 0x04062000 };
493 static const u32 timing_u133[] = { 0x221C6000, 0x0C0A3000, 0x05093000 };
494 int speed = adev->dma_mode - XFER_MW_DMA_0;
495
496 t1 &= 0xC0C00FFF;
497 /* disable UDMA */
Jeff Garzik1b52f2a2009-12-07 11:41:25 -0500498 t1 &= ~0x00000004;
Dan McGee14004f02011-09-07 11:23:20 -0500499 if (t1 & 0x08)
500 t1 |= timing_u133[speed];
501 else
502 t1 |= timing_u100[speed];
Jeff Garzik669a5db2006-08-29 18:12:40 -0400503 } else {
Dan McGee14004f02011-09-07 11:23:20 -0500504 /* bits 4- cycle time 8 - cvs time */
505 static const u32 timing_u100[] = { 0x6B0, 0x470, 0x350, 0x140, 0x120, 0x110, 0x000 };
506 static const u32 timing_u133[] = { 0x9F0, 0x6A0, 0x470, 0x250, 0x230, 0x220, 0x210 };
Dan McGee023a0172011-09-07 11:23:18 -0500507 int speed = adev->dma_mode - XFER_UDMA_0;
Dan McGee14004f02011-09-07 11:23:20 -0500508
Jeff Garzik669a5db2006-08-29 18:12:40 -0400509 t1 &= ~0x00000FF0;
Dan McGee14004f02011-09-07 11:23:20 -0500510 /* enable UDMA */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400511 t1 |= 0x00000004;
512 if (t1 & 0x08)
513 t1 |= timing_u133[speed];
514 else
515 t1 |= timing_u100[speed];
516 }
517 pci_write_config_dword(pdev, port, t1);
518}
519
Dan McGeef30f9a52011-09-07 11:23:19 -0500520/**
521 * sis_133_mode_filter - mode selection filter
522 * @adev: ATA device
523 *
524 * Block UDMA6 on devices that do not support it.
525 */
526
527static unsigned long sis_133_mode_filter(struct ata_device *adev, unsigned long mask)
528{
529 struct ata_port *ap = adev->link->ap;
530 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
531 int port = sis_port_base(adev);
532 u32 t1;
533
534 pci_read_config_dword(pdev, port, &t1);
535 /* if ATA133 is disabled, mask it out */
536 if (!(t1 & 0x08))
537 mask &= ~(0xC0 << ATA_SHIFT_UDMA);
538 return mask;
539}
540
Jeff Garzik669a5db2006-08-29 18:12:40 -0400541static struct scsi_host_template sis_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900542 ATA_BMDMA_SHT(DRV_NAME),
Jeff Garzik669a5db2006-08-29 18:12:40 -0400543};
544
Tejun Heo029cfd62008-03-25 12:22:49 +0900545static struct ata_port_operations sis_133_for_sata_ops = {
546 .inherits = &ata_bmdma_port_ops,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400547 .set_piomode = sis_133_set_piomode,
548 .set_dmamode = sis_133_set_dmamode,
Tejun Heo029cfd62008-03-25 12:22:49 +0900549 .cable_detect = sis_133_cable_detect,
550};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400551
Tejun Heo029cfd62008-03-25 12:22:49 +0900552static struct ata_port_operations sis_base_ops = {
553 .inherits = &ata_bmdma_port_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900554 .prereset = sis_pre_reset,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400555};
556
Tejun Heo029cfd62008-03-25 12:22:49 +0900557static struct ata_port_operations sis_133_ops = {
558 .inherits = &sis_base_ops,
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200559 .set_piomode = sis_133_set_piomode,
560 .set_dmamode = sis_133_set_dmamode,
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200561 .cable_detect = sis_133_cable_detect,
Dan McGeef30f9a52011-09-07 11:23:19 -0500562 .mode_filter = sis_133_mode_filter,
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200563};
564
Tejun Heo029cfd62008-03-25 12:22:49 +0900565static struct ata_port_operations sis_133_early_ops = {
566 .inherits = &sis_base_ops,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400567 .set_piomode = sis_100_set_piomode,
568 .set_dmamode = sis_133_early_set_dmamode,
Alan Cox2e413f52007-03-07 16:54:24 +0000569 .cable_detect = sis_66_cable_detect,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400570};
571
Tejun Heo029cfd62008-03-25 12:22:49 +0900572static struct ata_port_operations sis_100_ops = {
573 .inherits = &sis_base_ops,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400574 .set_piomode = sis_100_set_piomode,
575 .set_dmamode = sis_100_set_dmamode,
Alan Cox2e413f52007-03-07 16:54:24 +0000576 .cable_detect = sis_66_cable_detect,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400577};
578
Tejun Heo029cfd62008-03-25 12:22:49 +0900579static struct ata_port_operations sis_66_ops = {
580 .inherits = &sis_base_ops,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400581 .set_piomode = sis_old_set_piomode,
582 .set_dmamode = sis_66_set_dmamode,
Alan Cox2e413f52007-03-07 16:54:24 +0000583 .cable_detect = sis_66_cable_detect,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400584};
585
Tejun Heo029cfd62008-03-25 12:22:49 +0900586static struct ata_port_operations sis_old_ops = {
587 .inherits = &sis_base_ops,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400588 .set_piomode = sis_old_set_piomode,
589 .set_dmamode = sis_old_set_dmamode,
Alan Cox2e413f52007-03-07 16:54:24 +0000590 .cable_detect = ata_cable_40wire,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400591};
592
Tejun Heo1626aeb2007-05-04 12:43:58 +0200593static const struct ata_port_info sis_info = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400594 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100595 .pio_mask = ATA_PIO4,
596 .mwdma_mask = ATA_MWDMA2,
597 /* No UDMA */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400598 .port_ops = &sis_old_ops,
599};
Tejun Heo1626aeb2007-05-04 12:43:58 +0200600static const struct ata_port_info sis_info33 = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400601 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100602 .pio_mask = ATA_PIO4,
603 .mwdma_mask = ATA_MWDMA2,
604 .udma_mask = ATA_UDMA2,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400605 .port_ops = &sis_old_ops,
606};
Tejun Heo1626aeb2007-05-04 12:43:58 +0200607static const struct ata_port_info sis_info66 = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400608 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100609 .pio_mask = ATA_PIO4,
610 /* No MWDMA */
611 .udma_mask = ATA_UDMA4,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400612 .port_ops = &sis_66_ops,
613};
Tejun Heo1626aeb2007-05-04 12:43:58 +0200614static const struct ata_port_info sis_info100 = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400615 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100616 .pio_mask = ATA_PIO4,
617 /* No MWDMA */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400618 .udma_mask = ATA_UDMA5,
619 .port_ops = &sis_100_ops,
620};
Tejun Heo1626aeb2007-05-04 12:43:58 +0200621static const struct ata_port_info sis_info100_early = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400622 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100623 .pio_mask = ATA_PIO4,
624 /* No MWDMA */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400625 .udma_mask = ATA_UDMA5,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400626 .port_ops = &sis_66_ops,
627};
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200628static const struct ata_port_info sis_info133 = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400629 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100630 .pio_mask = ATA_PIO4,
Dan McGee14004f02011-09-07 11:23:20 -0500631 .mwdma_mask = ATA_MWDMA2,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400632 .udma_mask = ATA_UDMA6,
633 .port_ops = &sis_133_ops,
634};
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200635const struct ata_port_info sis_info133_for_sata = {
Sergei Shtylyovc10f97b2011-02-04 22:03:34 +0300636 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100637 .pio_mask = ATA_PIO4,
638 /* No MWDMA */
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200639 .udma_mask = ATA_UDMA6,
640 .port_ops = &sis_133_for_sata_ops,
641};
Tejun Heo1626aeb2007-05-04 12:43:58 +0200642static const struct ata_port_info sis_info133_early = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400643 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100644 .pio_mask = ATA_PIO4,
645 /* No MWDMA */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400646 .udma_mask = ATA_UDMA6,
647 .port_ops = &sis_133_early_ops,
648};
649
Alan9b14dec2007-01-08 16:11:07 +0000650/* Privately shared with the SiS180 SATA driver, not for use elsewhere */
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200651EXPORT_SYMBOL_GPL(sis_info133_for_sata);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400652
653static void sis_fixup(struct pci_dev *pdev, struct sis_chipset *sis)
654{
655 u16 regw;
656 u8 reg;
657
658 if (sis->info == &sis_info133) {
659 pci_read_config_word(pdev, 0x50, &regw);
660 if (regw & 0x08)
661 pci_write_config_word(pdev, 0x50, regw & ~0x08);
662 pci_read_config_word(pdev, 0x52, &regw);
663 if (regw & 0x08)
664 pci_write_config_word(pdev, 0x52, regw & ~0x08);
665 return;
666 }
667
668 if (sis->info == &sis_info133_early || sis->info == &sis_info100) {
669 /* Fix up latency */
670 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0x80);
671 /* Set compatibility bit */
672 pci_read_config_byte(pdev, 0x49, &reg);
673 if (!(reg & 0x01))
674 pci_write_config_byte(pdev, 0x49, reg | 0x01);
675 return;
676 }
677
678 if (sis->info == &sis_info66 || sis->info == &sis_info100_early) {
679 /* Fix up latency */
680 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0x80);
681 /* Set compatibility bit */
682 pci_read_config_byte(pdev, 0x52, &reg);
683 if (!(reg & 0x04))
684 pci_write_config_byte(pdev, 0x52, reg | 0x04);
685 return;
686 }
687
688 if (sis->info == &sis_info33) {
689 pci_read_config_byte(pdev, PCI_CLASS_PROG, &reg);
690 if (( reg & 0x0F ) != 0x00)
691 pci_write_config_byte(pdev, PCI_CLASS_PROG, reg & 0xF0);
692 /* Fall through to ATA16 fixup below */
693 }
694
695 if (sis->info == &sis_info || sis->info == &sis_info33) {
696 /* force per drive recovery and active timings
697 needed on ATA_33 and below chips */
698 pci_read_config_byte(pdev, 0x52, &reg);
699 if (!(reg & 0x08))
700 pci_write_config_byte(pdev, 0x52, reg|0x08);
701 return;
702 }
703
704 BUG();
705}
706
707/**
708 * sis_init_one - Register SiS ATA PCI device with kernel services
709 * @pdev: PCI device to register
710 * @ent: Entry in sis_pci_tbl matching with @pdev
711 *
Dan McGeeedc7d122011-09-07 11:23:22 -0500712 * Called from kernel PCI layer. We probe for combined mode (sigh),
Jeff Garzik669a5db2006-08-29 18:12:40 -0400713 * and then hand over control to libata, for it to do the rest.
714 *
715 * LOCKING:
716 * Inherited from PCI layer (may sleep).
717 *
718 * RETURNS:
719 * Zero on success, or -ERRNO value.
720 */
721
722static int sis_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
723{
Tejun Heo887125e2008-03-25 12:22:49 +0900724 const struct ata_port_info *ppi[] = { NULL, NULL };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400725 struct pci_dev *host = NULL;
726 struct sis_chipset *chipset = NULL;
Alan Coxf3769e92007-04-19 11:09:52 +0100727 struct sis_chipset *sets;
Tejun Heof08048e2008-03-25 12:22:47 +0900728 int rc;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400729
730 static struct sis_chipset sis_chipsets[] = {
Jeff Garzikf20b16f2006-12-11 11:14:06 -0500731
Alan Coxaf323a22006-09-12 17:15:12 +0100732 { 0x0968, &sis_info133 },
733 { 0x0966, &sis_info133 },
734 { 0x0965, &sis_info133 },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400735 { 0x0745, &sis_info100 },
736 { 0x0735, &sis_info100 },
737 { 0x0733, &sis_info100 },
738 { 0x0635, &sis_info100 },
739 { 0x0633, &sis_info100 },
740
741 { 0x0730, &sis_info100_early }, /* 100 with ATA 66 layout */
742 { 0x0550, &sis_info100_early }, /* 100 with ATA 66 layout */
743
744 { 0x0640, &sis_info66 },
745 { 0x0630, &sis_info66 },
746 { 0x0620, &sis_info66 },
747 { 0x0540, &sis_info66 },
748 { 0x0530, &sis_info66 },
749
750 { 0x5600, &sis_info33 },
751 { 0x5598, &sis_info33 },
752 { 0x5597, &sis_info33 },
753 { 0x5591, &sis_info33 },
754 { 0x5582, &sis_info33 },
755 { 0x5581, &sis_info33 },
756
757 { 0x5596, &sis_info },
758 { 0x5571, &sis_info },
759 { 0x5517, &sis_info },
760 { 0x5511, &sis_info },
761
762 {0}
763 };
764 static struct sis_chipset sis133_early = {
765 0x0, &sis_info133_early
766 };
767 static struct sis_chipset sis133 = {
768 0x0, &sis_info133
769 };
770 static struct sis_chipset sis100_early = {
771 0x0, &sis_info100_early
772 };
773 static struct sis_chipset sis100 = {
774 0x0, &sis_info100
775 };
776
Joe Perches06296a12011-04-15 15:52:00 -0700777 ata_print_version_once(&pdev->dev, DRV_VERSION);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400778
Tejun Heof08048e2008-03-25 12:22:47 +0900779 rc = pcim_enable_device(pdev);
780 if (rc)
781 return rc;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400782
Tejun Heof08048e2008-03-25 12:22:47 +0900783 /* We have to find the bridge first */
Alan Coxf3769e92007-04-19 11:09:52 +0100784 for (sets = &sis_chipsets[0]; sets->device; sets++) {
785 host = pci_get_device(PCI_VENDOR_ID_SI, sets->device, NULL);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400786 if (host != NULL) {
Alan Coxf3769e92007-04-19 11:09:52 +0100787 chipset = sets; /* Match found */
788 if (sets->device == 0x630) { /* SIS630 */
Auke Kok44c10132007-06-08 15:46:36 -0700789 if (host->revision >= 0x30) /* 630 ET */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400790 chipset = &sis100_early;
791 }
792 break;
793 }
794 }
795
796 /* Look for concealed bridges */
Alan Coxf3769e92007-04-19 11:09:52 +0100797 if (chipset == NULL) {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400798 /* Second check */
799 u32 idemisc;
800 u16 trueid;
801
802 /* Disable ID masking and register remapping then
803 see what the real ID is */
804
805 pci_read_config_dword(pdev, 0x54, &idemisc);
806 pci_write_config_dword(pdev, 0x54, idemisc & 0x7fffffff);
807 pci_read_config_word(pdev, PCI_DEVICE_ID, &trueid);
808 pci_write_config_dword(pdev, 0x54, idemisc);
809
810 switch(trueid) {
811 case 0x5518: /* SIS 962/963 */
Dan McGeef30f9a52011-09-07 11:23:19 -0500812 dev_info(&pdev->dev,
813 "SiS 962/963 MuTIOL IDE UDMA133 controller\n");
Jeff Garzik669a5db2006-08-29 18:12:40 -0400814 chipset = &sis133;
815 if ((idemisc & 0x40000000) == 0) {
816 pci_write_config_dword(pdev, 0x54, idemisc | 0x40000000);
Dan McGeef30f9a52011-09-07 11:23:19 -0500817 dev_info(&pdev->dev,
818 "Switching to 5513 register mapping\n");
Jeff Garzik669a5db2006-08-29 18:12:40 -0400819 }
820 break;
821 case 0x0180: /* SIS 965/965L */
Dan McGeeedc7d122011-09-07 11:23:22 -0500822 chipset = &sis133;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400823 break;
824 case 0x1180: /* SIS 966/966L */
Dan McGeeedc7d122011-09-07 11:23:22 -0500825 chipset = &sis133;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400826 break;
827 }
828 }
829
830 /* Further check */
831 if (chipset == NULL) {
832 struct pci_dev *lpc_bridge;
833 u16 trueid;
834 u8 prefctl;
835 u8 idecfg;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400836
837 /* Try the second unmasking technique */
838 pci_read_config_byte(pdev, 0x4a, &idecfg);
839 pci_write_config_byte(pdev, 0x4a, idecfg | 0x10);
840 pci_read_config_word(pdev, PCI_DEVICE_ID, &trueid);
841 pci_write_config_byte(pdev, 0x4a, idecfg);
842
843 switch(trueid) {
844 case 0x5517:
845 lpc_bridge = pci_get_slot(pdev->bus, 0x10); /* Bus 0 Dev 2 Fn 0 */
846 if (lpc_bridge == NULL)
847 break;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400848 pci_read_config_byte(pdev, 0x49, &prefctl);
849 pci_dev_put(lpc_bridge);
850
Auke Kok44c10132007-06-08 15:46:36 -0700851 if (lpc_bridge->revision == 0x10 && (prefctl & 0x80)) {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400852 chipset = &sis133_early;
853 break;
854 }
855 chipset = &sis100;
856 break;
857 }
858 }
859 pci_dev_put(host);
860
861 /* No chipset info, no support */
862 if (chipset == NULL)
863 return -ENODEV;
864
Tejun Heo887125e2008-03-25 12:22:49 +0900865 ppi[0] = chipset->info;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400866
867 sis_fixup(pdev, chipset);
868
Tejun Heo1c5afdf2010-05-19 22:10:22 +0200869 return ata_pci_bmdma_init_one(pdev, ppi, &sis_sht, chipset, 0);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400870}
871
Bartlomiej Zolnierkiewicz58eb8cd2014-05-07 17:17:44 +0200872#ifdef CONFIG_PM_SLEEP
Bartlomiej Zolnierkiewicz750c7132009-12-03 20:32:13 +0100873static int sis_reinit_one(struct pci_dev *pdev)
874{
Jingoo Han0a86e1c2013-06-03 14:05:36 +0900875 struct ata_host *host = pci_get_drvdata(pdev);
Bartlomiej Zolnierkiewicz750c7132009-12-03 20:32:13 +0100876 int rc;
877
878 rc = ata_pci_device_do_resume(pdev);
879 if (rc)
880 return rc;
881
882 sis_fixup(pdev, host->private_data);
883
884 ata_host_resume(host);
885 return 0;
886}
887#endif
888
Jeff Garzik669a5db2006-08-29 18:12:40 -0400889static const struct pci_device_id sis_pci_tbl[] = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400890 { PCI_VDEVICE(SI, 0x5513), }, /* SiS 5513 */
891 { PCI_VDEVICE(SI, 0x5518), }, /* SiS 5518 */
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200892 { PCI_VDEVICE(SI, 0x1180), }, /* SiS 1180 */
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400893
Jeff Garzik669a5db2006-08-29 18:12:40 -0400894 { }
895};
896
897static struct pci_driver sis_pci_driver = {
898 .name = DRV_NAME,
899 .id_table = sis_pci_tbl,
900 .probe = sis_init_one,
901 .remove = ata_pci_remove_one,
Bartlomiej Zolnierkiewicz58eb8cd2014-05-07 17:17:44 +0200902#ifdef CONFIG_PM_SLEEP
Alan62d64ae2006-11-27 16:27:20 +0000903 .suspend = ata_pci_device_suspend,
Bartlomiej Zolnierkiewicz750c7132009-12-03 20:32:13 +0100904 .resume = sis_reinit_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900905#endif
Jeff Garzik669a5db2006-08-29 18:12:40 -0400906};
907
Axel Lin2fc75da2012-04-19 13:43:05 +0800908module_pci_driver(sis_pci_driver);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400909
910MODULE_AUTHOR("Alan Cox");
911MODULE_DESCRIPTION("SCSI low-level driver for SiS ATA");
912MODULE_LICENSE("GPL");
913MODULE_DEVICE_TABLE(pci, sis_pci_tbl);
914MODULE_VERSION(DRV_VERSION);