blob: 793e6714df8c55d1bbfbb6d18058a6d9e36615d2 [file] [log] [blame]
Jeff Garzik669a5db2006-08-29 18:12:40 -04001/*
2 * pata_sis.c - SiS ATA driver
3 *
4 * (C) 2005 Red Hat <alan@redhat.com>
Bartlomiej Zolnierkiewicz4761c062007-07-31 22:02:41 +02005 * (C) 2007 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 */
Gabriel C1f71d062007-11-15 13:14:00 +090058 { 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/**
Alan Coxdd668d12007-05-21 15:00:53 +010079 * 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{
Tejun Heo9af5c9c2007-08-06 18:36:22 +090088 return 0x40 + (4 * adev->link->ap->port_no) + (2 * adev->devno);
Jeff Garzik669a5db2006-08-29 18:12:40 -040089}
90
91/**
Alan Cox2e413f52007-03-07 16:54:24 +000092 * sis_133_cable_detect - check for 40/80 pin
Jeff Garzik669a5db2006-08-29 18:12:40 -040093 * @ap: Port
Tejun Heod4b2bab2007-02-02 16:50:52 +090094 * @deadline: deadline jiffies for the operation
Jeff Garzik669a5db2006-08-29 18:12:40 -040095 *
96 * Perform cable detection for the later UDMA133 capable
97 * SiS chipset.
98 */
99
Alan Cox2e413f52007-03-07 16:54:24 +0000100static int sis_133_cable_detect(struct ata_port *ap)
101{
102 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
103 u16 tmp;
104
105 /* The top bit of this register is the cable detect bit */
106 pci_read_config_word(pdev, 0x50 + 2 * ap->port_no, &tmp);
107 if ((tmp & 0x8000) && !sis_short_ata40(pdev))
108 return ATA_CBL_PATA40;
109 return ATA_CBL_PATA80;
110}
111
112/**
113 * sis_66_cable_detect - check for 40/80 pin
114 * @ap: Port
Tejun Heod4b2bab2007-02-02 16:50:52 +0900115 * @deadline: deadline jiffies for the operation
Alan Cox2e413f52007-03-07 16:54:24 +0000116 *
117 * Perform cable detection on the UDMA66, UDMA100 and early UDMA133
118 * SiS IDE controllers.
119 */
120
121static int sis_66_cable_detect(struct ata_port *ap)
122{
123 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
124 u8 tmp;
125
126 /* Older chips keep cable detect in bits 4/5 of reg 0x48 */
127 pci_read_config_byte(pdev, 0x48, &tmp);
128 tmp >>= ap->port_no;
129 if ((tmp & 0x10) && !sis_short_ata40(pdev))
130 return ATA_CBL_PATA40;
131 return ATA_CBL_PATA80;
132}
133
134
135/**
136 * sis_pre_reset - probe begin
Tejun Heocc0680a2007-08-06 18:36:23 +0900137 * @link: ATA link
Tejun Heod4b2bab2007-02-02 16:50:52 +0900138 * @deadline: deadline jiffies for the operation
Alan Cox2e413f52007-03-07 16:54:24 +0000139 *
140 * Set up cable type and use generic probe init
141 */
142
Tejun Heocc0680a2007-08-06 18:36:23 +0900143static int sis_pre_reset(struct ata_link *link, unsigned long deadline)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400144{
145 static const struct pci_bits sis_enable_bits[] = {
146 { 0x4aU, 1U, 0x02UL, 0x02UL }, /* port 0 */
147 { 0x4aU, 1U, 0x04UL, 0x04UL }, /* port 1 */
148 };
Jeff Garzik85cd7252006-08-31 00:03:49 -0400149
Tejun Heocc0680a2007-08-06 18:36:23 +0900150 struct ata_port *ap = link->ap;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400151 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400152
Alan Coxc9619222006-09-26 17:53:38 +0100153 if (!pci_test_config_bits(pdev, &sis_enable_bits[ap->port_no]))
154 return -ENOENT;
Tejun Heod4b2bab2007-02-02 16:50:52 +0900155
Alan Cox15ce0942007-05-25 20:50:24 +0100156 /* Clear the FIFO settings. We can't enable the FIFO until
157 we know we are poking at a disk */
158 pci_write_config_byte(pdev, 0x4B, 0);
Tejun Heocc0680a2007-08-06 18:36:23 +0900159 return ata_std_prereset(link, deadline);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400160}
161
Alan Cox2e413f52007-03-07 16:54:24 +0000162
Jeff Garzik669a5db2006-08-29 18:12:40 -0400163/**
Jeff Garzik669a5db2006-08-29 18:12:40 -0400164 * sis_set_fifo - Set RWP fifo bits for this device
165 * @ap: Port
166 * @adev: Device
167 *
168 * SIS chipsets implement prefetch/postwrite bits for each device
169 * on both channels. This functionality is not ATAPI compatible and
170 * must be configured according to the class of device present
171 */
172
173static void sis_set_fifo(struct ata_port *ap, struct ata_device *adev)
174{
175 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
176 u8 fifoctrl;
177 u8 mask = 0x11;
178
179 mask <<= (2 * ap->port_no);
180 mask <<= adev->devno;
181
182 /* This holds various bits including the FIFO control */
183 pci_read_config_byte(pdev, 0x4B, &fifoctrl);
184 fifoctrl &= ~mask;
185
186 /* Enable for ATA (disk) only */
187 if (adev->class == ATA_DEV_ATA)
188 fifoctrl |= mask;
189 pci_write_config_byte(pdev, 0x4B, fifoctrl);
190}
191
192/**
193 * sis_old_set_piomode - Initialize host controller PATA PIO timings
194 * @ap: Port whose timings we are configuring
195 * @adev: Device we are configuring for.
196 *
197 * Set PIO mode for device, in host controller PCI config space. This
198 * function handles PIO set up for all chips that are pre ATA100 and
199 * also early ATA100 devices.
200 *
201 * LOCKING:
202 * None (inherited from caller).
203 */
204
205static void sis_old_set_piomode (struct ata_port *ap, struct ata_device *adev)
206{
207 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Alan Coxdd668d12007-05-21 15:00:53 +0100208 int port = sis_old_port_base(adev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400209 u8 t1, t2;
210 int speed = adev->pio_mode - XFER_PIO_0;
211
212 const u8 active[] = { 0x00, 0x07, 0x04, 0x03, 0x01 };
213 const u8 recovery[] = { 0x00, 0x06, 0x04, 0x03, 0x03 };
214
215 sis_set_fifo(ap, adev);
216
217 pci_read_config_byte(pdev, port, &t1);
218 pci_read_config_byte(pdev, port + 1, &t2);
219
220 t1 &= ~0x0F; /* Clear active/recovery timings */
221 t2 &= ~0x07;
222
223 t1 |= active[speed];
224 t2 |= recovery[speed];
225
226 pci_write_config_byte(pdev, port, t1);
227 pci_write_config_byte(pdev, port + 1, t2);
228}
229
230/**
Bartlomiej Zolnierkiewicz4761c062007-07-31 22:02:41 +0200231 * sis_100_set_piomode - Initialize host controller PATA PIO timings
Jeff Garzik669a5db2006-08-29 18:12:40 -0400232 * @ap: Port whose timings we are configuring
233 * @adev: Device we are configuring for.
234 *
235 * Set PIO mode for device, in host controller PCI config space. This
236 * function handles PIO set up for ATA100 devices and early ATA133.
237 *
238 * LOCKING:
239 * None (inherited from caller).
240 */
241
242static void sis_100_set_piomode (struct ata_port *ap, struct ata_device *adev)
243{
244 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
Alan Coxdd668d12007-05-21 15:00:53 +0100245 int port = sis_old_port_base(adev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400246 int speed = adev->pio_mode - XFER_PIO_0;
247
248 const u8 actrec[] = { 0x00, 0x67, 0x44, 0x33, 0x31 };
249
250 sis_set_fifo(ap, adev);
251
252 pci_write_config_byte(pdev, port, actrec[speed]);
253}
254
255/**
Bartlomiej Zolnierkiewicz4761c062007-07-31 22:02:41 +0200256 * sis_133_set_piomode - Initialize host controller PATA PIO timings
Jeff Garzik669a5db2006-08-29 18:12:40 -0400257 * @ap: Port whose timings we are configuring
258 * @adev: Device we are configuring for.
259 *
260 * Set PIO mode for device, in host controller PCI config space. This
261 * function handles PIO set up for the later ATA133 devices.
262 *
263 * LOCKING:
264 * None (inherited from caller).
265 */
266
267static void sis_133_set_piomode (struct ata_port *ap, struct ata_device *adev)
268{
269 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
270 int port = 0x40;
271 u32 t1;
272 u32 reg54;
273 int speed = adev->pio_mode - XFER_PIO_0;
274
275 const u32 timing133[] = {
276 0x28269000, /* Recovery << 24 | Act << 16 | Ini << 12 */
277 0x0C266000,
278 0x04263000,
279 0x0C0A3000,
280 0x05093000
281 };
282 const u32 timing100[] = {
283 0x1E1C6000, /* Recovery << 24 | Act << 16 | Ini << 12 */
284 0x091C4000,
285 0x031C2000,
286 0x09072000,
287 0x04062000
288 };
289
290 sis_set_fifo(ap, adev);
291
292 /* If bit 14 is set then the registers are mapped at 0x70 not 0x40 */
293 pci_read_config_dword(pdev, 0x54, &reg54);
294 if (reg54 & 0x40000000)
295 port = 0x70;
296 port += 8 * ap->port_no + 4 * adev->devno;
297
298 pci_read_config_dword(pdev, port, &t1);
299 t1 &= 0xC0C00FFF; /* Mask out timing */
300
301 if (t1 & 0x08) /* 100 or 133 ? */
302 t1 |= timing133[speed];
303 else
304 t1 |= timing100[speed];
305 pci_write_config_byte(pdev, port, t1);
306}
307
308/**
309 * sis_old_set_dmamode - Initialize host controller PATA DMA timings
310 * @ap: Port whose timings we are configuring
311 * @adev: Device to program
312 *
313 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
314 * Handles pre UDMA and UDMA33 devices. Supports MWDMA as well unlike
315 * the old ide/pci driver.
316 *
317 * LOCKING:
318 * None (inherited from caller).
319 */
320
321static void sis_old_set_dmamode (struct ata_port *ap, struct ata_device *adev)
322{
323 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
324 int speed = adev->dma_mode - XFER_MW_DMA_0;
Alan Coxdd668d12007-05-21 15:00:53 +0100325 int drive_pci = sis_old_port_base(adev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400326 u16 timing;
327
Bartlomiej Zolnierkiewicz4761c062007-07-31 22:02:41 +0200328 const u16 mwdma_bits[] = { 0x008, 0x302, 0x301 };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400329 const u16 udma_bits[] = { 0xE000, 0xC000, 0xA000 };
330
331 pci_read_config_word(pdev, drive_pci, &timing);
332
333 if (adev->dma_mode < XFER_UDMA_0) {
334 /* bits 3-0 hold recovery timing bits 8-10 active timing and
Joe Perches1967b7f2008-02-03 17:08:11 +0200335 the higher bits are dependant on the device */
Bartlomiej Zolnierkiewicz4761c062007-07-31 22:02:41 +0200336 timing &= ~0x870F;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400337 timing |= mwdma_bits[speed];
Jeff Garzik669a5db2006-08-29 18:12:40 -0400338 } else {
339 /* Bit 15 is UDMA on/off, bit 13-14 are cycle time */
340 speed = adev->dma_mode - XFER_UDMA_0;
341 timing &= ~0x6000;
342 timing |= udma_bits[speed];
343 }
Bartlomiej Zolnierkiewicz4761c062007-07-31 22:02:41 +0200344 pci_write_config_word(pdev, drive_pci, timing);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400345}
346
347/**
348 * sis_66_set_dmamode - Initialize host controller PATA DMA timings
349 * @ap: Port whose timings we are configuring
350 * @adev: Device to program
351 *
352 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
353 * Handles UDMA66 and early UDMA100 devices. Supports MWDMA as well unlike
354 * the old ide/pci driver.
355 *
356 * LOCKING:
357 * None (inherited from caller).
358 */
359
360static void sis_66_set_dmamode (struct ata_port *ap, struct ata_device *adev)
361{
362 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
363 int speed = adev->dma_mode - XFER_MW_DMA_0;
Alan Coxdd668d12007-05-21 15:00:53 +0100364 int drive_pci = sis_old_port_base(adev);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400365 u16 timing;
366
Tejun Heoedeb6142007-09-21 16:29:05 +0900367 /* MWDMA 0-2 and UDMA 0-5 */
Bartlomiej Zolnierkiewicz4761c062007-07-31 22:02:41 +0200368 const u16 mwdma_bits[] = { 0x008, 0x302, 0x301 };
Tejun Heoedeb6142007-09-21 16:29:05 +0900369 const u16 udma_bits[] = { 0xF000, 0xD000, 0xB000, 0xA000, 0x9000, 0x8000 };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400370
371 pci_read_config_word(pdev, drive_pci, &timing);
372
373 if (adev->dma_mode < XFER_UDMA_0) {
374 /* bits 3-0 hold recovery timing bits 8-10 active timing and
Joe Perches1967b7f2008-02-03 17:08:11 +0200375 the higher bits are dependant on the device, bit 15 udma */
Alan Coxdd668d12007-05-21 15:00:53 +0100376 timing &= ~0x870F;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400377 timing |= mwdma_bits[speed];
378 } else {
379 /* Bit 15 is UDMA on/off, bit 12-14 are cycle time */
380 speed = adev->dma_mode - XFER_UDMA_0;
Alan Coxdd668d12007-05-21 15:00:53 +0100381 timing &= ~0xF000;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400382 timing |= udma_bits[speed];
383 }
384 pci_write_config_word(pdev, drive_pci, timing);
385}
386
387/**
388 * sis_100_set_dmamode - Initialize host controller PATA DMA timings
389 * @ap: Port whose timings we are configuring
390 * @adev: Device to program
391 *
392 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
393 * Handles UDMA66 and early UDMA100 devices.
394 *
395 * LOCKING:
396 * None (inherited from caller).
397 */
398
399static void sis_100_set_dmamode (struct ata_port *ap, struct ata_device *adev)
400{
401 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
402 int speed = adev->dma_mode - XFER_MW_DMA_0;
Alan Coxdd668d12007-05-21 15:00:53 +0100403 int drive_pci = sis_old_port_base(adev);
404 u8 timing;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400405
Alan Coxdd668d12007-05-21 15:00:53 +0100406 const u8 udma_bits[] = { 0x8B, 0x87, 0x85, 0x83, 0x82, 0x81};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400407
Alan Coxdd668d12007-05-21 15:00:53 +0100408 pci_read_config_byte(pdev, drive_pci + 1, &timing);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400409
410 if (adev->dma_mode < XFER_UDMA_0) {
411 /* NOT SUPPORTED YET: NEED DATA SHEET. DITTO IN OLD DRIVER */
412 } else {
Alan Coxdd668d12007-05-21 15:00:53 +0100413 /* Bit 7 is UDMA on/off, bit 0-3 are cycle time */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400414 speed = adev->dma_mode - XFER_UDMA_0;
Alan Coxdd668d12007-05-21 15:00:53 +0100415 timing &= ~0x8F;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400416 timing |= udma_bits[speed];
417 }
Alan Coxdd668d12007-05-21 15:00:53 +0100418 pci_write_config_byte(pdev, drive_pci + 1, timing);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400419}
420
421/**
422 * sis_133_early_set_dmamode - Initialize host controller PATA DMA timings
423 * @ap: Port whose timings we are configuring
424 * @adev: Device to program
425 *
426 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
Bartlomiej Zolnierkiewicz4761c062007-07-31 22:02:41 +0200427 * Handles early SiS 961 bridges.
Jeff Garzik669a5db2006-08-29 18:12:40 -0400428 *
429 * LOCKING:
430 * None (inherited from caller).
431 */
432
433static void sis_133_early_set_dmamode (struct ata_port *ap, struct ata_device *adev)
434{
435 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
436 int speed = adev->dma_mode - XFER_MW_DMA_0;
Alan Coxdd668d12007-05-21 15:00:53 +0100437 int drive_pci = sis_old_port_base(adev);
438 u8 timing;
439 /* Low 4 bits are timing */
440 static const u8 udma_bits[] = { 0x8F, 0x8A, 0x87, 0x85, 0x83, 0x82, 0x81};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400441
Alan Coxdd668d12007-05-21 15:00:53 +0100442 pci_read_config_byte(pdev, drive_pci + 1, &timing);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400443
444 if (adev->dma_mode < XFER_UDMA_0) {
445 /* NOT SUPPORTED YET: NEED DATA SHEET. DITTO IN OLD DRIVER */
446 } else {
Alan Coxdd668d12007-05-21 15:00:53 +0100447 /* Bit 7 is UDMA on/off, bit 0-3 are cycle time */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400448 speed = adev->dma_mode - XFER_UDMA_0;
Alan Coxdd668d12007-05-21 15:00:53 +0100449 timing &= ~0x8F;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400450 timing |= udma_bits[speed];
451 }
Alan Coxdd668d12007-05-21 15:00:53 +0100452 pci_write_config_byte(pdev, drive_pci + 1, timing);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400453}
454
455/**
456 * sis_133_set_dmamode - Initialize host controller PATA DMA timings
457 * @ap: Port whose timings we are configuring
458 * @adev: Device to program
459 *
460 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
Jeff Garzik669a5db2006-08-29 18:12:40 -0400461 *
462 * LOCKING:
463 * None (inherited from caller).
464 */
465
466static void sis_133_set_dmamode (struct ata_port *ap, struct ata_device *adev)
467{
468 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
469 int speed = adev->dma_mode - XFER_MW_DMA_0;
470 int port = 0x40;
471 u32 t1;
472 u32 reg54;
473
474 /* bits 4- cycle time 8 - cvs time */
Alan Cox2e413f52007-03-07 16:54:24 +0000475 static const u32 timing_u100[] = { 0x6B0, 0x470, 0x350, 0x140, 0x120, 0x110, 0x000 };
476 static const u32 timing_u133[] = { 0x9F0, 0x6A0, 0x470, 0x250, 0x230, 0x220, 0x210 };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400477
478 /* If bit 14 is set then the registers are mapped at 0x70 not 0x40 */
479 pci_read_config_dword(pdev, 0x54, &reg54);
480 if (reg54 & 0x40000000)
481 port = 0x70;
482 port += (8 * ap->port_no) + (4 * adev->devno);
483
484 pci_read_config_dword(pdev, port, &t1);
485
486 if (adev->dma_mode < XFER_UDMA_0) {
487 t1 &= ~0x00000004;
488 /* FIXME: need data sheet to add MWDMA here. Also lacking on
489 ide/pci driver */
490 } else {
491 speed = adev->dma_mode - XFER_UDMA_0;
492 /* if & 8 no UDMA133 - need info for ... */
493 t1 &= ~0x00000FF0;
494 t1 |= 0x00000004;
495 if (t1 & 0x08)
496 t1 |= timing_u133[speed];
497 else
498 t1 |= timing_u100[speed];
499 }
500 pci_write_config_dword(pdev, port, t1);
501}
502
503static struct scsi_host_template sis_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900504 ATA_BMDMA_SHT(DRV_NAME),
Jeff Garzik669a5db2006-08-29 18:12:40 -0400505};
506
Tejun Heo029cfd62008-03-25 12:22:49 +0900507static struct ata_port_operations sis_133_for_sata_ops = {
508 .inherits = &ata_bmdma_port_ops,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400509 .set_piomode = sis_133_set_piomode,
510 .set_dmamode = sis_133_set_dmamode,
Tejun Heo029cfd62008-03-25 12:22:49 +0900511 .cable_detect = sis_133_cable_detect,
512};
Jeff Garzik669a5db2006-08-29 18:12:40 -0400513
Tejun Heo029cfd62008-03-25 12:22:49 +0900514static struct ata_port_operations sis_base_ops = {
515 .inherits = &ata_bmdma_port_ops,
Tejun Heoa1efdab2008-03-25 12:22:50 +0900516 .prereset = sis_pre_reset,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400517};
518
Tejun Heo029cfd62008-03-25 12:22:49 +0900519static struct ata_port_operations sis_133_ops = {
520 .inherits = &sis_base_ops,
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200521 .set_piomode = sis_133_set_piomode,
522 .set_dmamode = sis_133_set_dmamode,
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200523 .cable_detect = sis_133_cable_detect,
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200524};
525
Tejun Heo029cfd62008-03-25 12:22:49 +0900526static struct ata_port_operations sis_133_early_ops = {
527 .inherits = &sis_base_ops,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400528 .set_piomode = sis_100_set_piomode,
529 .set_dmamode = sis_133_early_set_dmamode,
Alan Cox2e413f52007-03-07 16:54:24 +0000530 .cable_detect = sis_66_cable_detect,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400531};
532
Tejun Heo029cfd62008-03-25 12:22:49 +0900533static struct ata_port_operations sis_100_ops = {
534 .inherits = &sis_base_ops,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400535 .set_piomode = sis_100_set_piomode,
536 .set_dmamode = sis_100_set_dmamode,
Alan Cox2e413f52007-03-07 16:54:24 +0000537 .cable_detect = sis_66_cable_detect,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400538};
539
Tejun Heo029cfd62008-03-25 12:22:49 +0900540static struct ata_port_operations sis_66_ops = {
541 .inherits = &sis_base_ops,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400542 .set_piomode = sis_old_set_piomode,
543 .set_dmamode = sis_66_set_dmamode,
Alan Cox2e413f52007-03-07 16:54:24 +0000544 .cable_detect = sis_66_cable_detect,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400545};
546
Tejun Heo029cfd62008-03-25 12:22:49 +0900547static struct ata_port_operations sis_old_ops = {
548 .inherits = &sis_base_ops,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400549 .set_piomode = sis_old_set_piomode,
550 .set_dmamode = sis_old_set_dmamode,
Alan Cox2e413f52007-03-07 16:54:24 +0000551 .cable_detect = ata_cable_40wire,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400552};
553
Tejun Heo1626aeb2007-05-04 12:43:58 +0200554static const struct ata_port_info sis_info = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400555 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400556 .pio_mask = 0x1f, /* pio0-4 */
557 .mwdma_mask = 0x07,
558 .udma_mask = 0,
559 .port_ops = &sis_old_ops,
560};
Tejun Heo1626aeb2007-05-04 12:43:58 +0200561static const struct ata_port_info sis_info33 = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400562 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400563 .pio_mask = 0x1f, /* pio0-4 */
564 .mwdma_mask = 0x07,
565 .udma_mask = ATA_UDMA2, /* UDMA 33 */
566 .port_ops = &sis_old_ops,
567};
Tejun Heo1626aeb2007-05-04 12:43:58 +0200568static const struct ata_port_info sis_info66 = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400569 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400570 .pio_mask = 0x1f, /* pio0-4 */
571 .udma_mask = ATA_UDMA4, /* UDMA 66 */
572 .port_ops = &sis_66_ops,
573};
Tejun Heo1626aeb2007-05-04 12:43:58 +0200574static const struct ata_port_info sis_info100 = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400575 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400576 .pio_mask = 0x1f, /* pio0-4 */
577 .udma_mask = ATA_UDMA5,
578 .port_ops = &sis_100_ops,
579};
Tejun Heo1626aeb2007-05-04 12:43:58 +0200580static const struct ata_port_info sis_info100_early = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400581 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400582 .udma_mask = ATA_UDMA5,
583 .pio_mask = 0x1f, /* pio0-4 */
584 .port_ops = &sis_66_ops,
585};
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200586static const struct ata_port_info sis_info133 = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400587 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400588 .pio_mask = 0x1f, /* pio0-4 */
589 .udma_mask = ATA_UDMA6,
590 .port_ops = &sis_133_ops,
591};
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200592const struct ata_port_info sis_info133_for_sata = {
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200593 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
594 .pio_mask = 0x1f, /* pio0-4 */
595 .udma_mask = ATA_UDMA6,
596 .port_ops = &sis_133_for_sata_ops,
597};
Tejun Heo1626aeb2007-05-04 12:43:58 +0200598static const struct ata_port_info sis_info133_early = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400599 .flags = ATA_FLAG_SLAVE_POSS,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400600 .pio_mask = 0x1f, /* pio0-4 */
601 .udma_mask = ATA_UDMA6,
602 .port_ops = &sis_133_early_ops,
603};
604
Alan9b14dec2007-01-08 16:11:07 +0000605/* Privately shared with the SiS180 SATA driver, not for use elsewhere */
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200606EXPORT_SYMBOL_GPL(sis_info133_for_sata);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400607
608static void sis_fixup(struct pci_dev *pdev, struct sis_chipset *sis)
609{
610 u16 regw;
611 u8 reg;
612
613 if (sis->info == &sis_info133) {
614 pci_read_config_word(pdev, 0x50, &regw);
615 if (regw & 0x08)
616 pci_write_config_word(pdev, 0x50, regw & ~0x08);
617 pci_read_config_word(pdev, 0x52, &regw);
618 if (regw & 0x08)
619 pci_write_config_word(pdev, 0x52, regw & ~0x08);
620 return;
621 }
622
623 if (sis->info == &sis_info133_early || sis->info == &sis_info100) {
624 /* Fix up latency */
625 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0x80);
626 /* Set compatibility bit */
627 pci_read_config_byte(pdev, 0x49, &reg);
628 if (!(reg & 0x01))
629 pci_write_config_byte(pdev, 0x49, reg | 0x01);
630 return;
631 }
632
633 if (sis->info == &sis_info66 || sis->info == &sis_info100_early) {
634 /* Fix up latency */
635 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0x80);
636 /* Set compatibility bit */
637 pci_read_config_byte(pdev, 0x52, &reg);
638 if (!(reg & 0x04))
639 pci_write_config_byte(pdev, 0x52, reg | 0x04);
640 return;
641 }
642
643 if (sis->info == &sis_info33) {
644 pci_read_config_byte(pdev, PCI_CLASS_PROG, &reg);
645 if (( reg & 0x0F ) != 0x00)
646 pci_write_config_byte(pdev, PCI_CLASS_PROG, reg & 0xF0);
647 /* Fall through to ATA16 fixup below */
648 }
649
650 if (sis->info == &sis_info || sis->info == &sis_info33) {
651 /* force per drive recovery and active timings
652 needed on ATA_33 and below chips */
653 pci_read_config_byte(pdev, 0x52, &reg);
654 if (!(reg & 0x08))
655 pci_write_config_byte(pdev, 0x52, reg|0x08);
656 return;
657 }
658
659 BUG();
660}
661
662/**
663 * sis_init_one - Register SiS ATA PCI device with kernel services
664 * @pdev: PCI device to register
665 * @ent: Entry in sis_pci_tbl matching with @pdev
666 *
667 * Called from kernel PCI layer. We probe for combined mode (sigh),
668 * and then hand over control to libata, for it to do the rest.
669 *
670 * LOCKING:
671 * Inherited from PCI layer (may sleep).
672 *
673 * RETURNS:
674 * Zero on success, or -ERRNO value.
675 */
676
677static int sis_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
678{
679 static int printed_version;
Tejun Heo887125e2008-03-25 12:22:49 +0900680 const struct ata_port_info *ppi[] = { NULL, NULL };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400681 struct pci_dev *host = NULL;
682 struct sis_chipset *chipset = NULL;
Alan Coxf3769e92007-04-19 11:09:52 +0100683 struct sis_chipset *sets;
Tejun Heof08048e2008-03-25 12:22:47 +0900684 int rc;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400685
686 static struct sis_chipset sis_chipsets[] = {
Jeff Garzikf20b16f2006-12-11 11:14:06 -0500687
Alan Coxaf323a22006-09-12 17:15:12 +0100688 { 0x0968, &sis_info133 },
689 { 0x0966, &sis_info133 },
690 { 0x0965, &sis_info133 },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400691 { 0x0745, &sis_info100 },
692 { 0x0735, &sis_info100 },
693 { 0x0733, &sis_info100 },
694 { 0x0635, &sis_info100 },
695 { 0x0633, &sis_info100 },
696
697 { 0x0730, &sis_info100_early }, /* 100 with ATA 66 layout */
698 { 0x0550, &sis_info100_early }, /* 100 with ATA 66 layout */
699
700 { 0x0640, &sis_info66 },
701 { 0x0630, &sis_info66 },
702 { 0x0620, &sis_info66 },
703 { 0x0540, &sis_info66 },
704 { 0x0530, &sis_info66 },
705
706 { 0x5600, &sis_info33 },
707 { 0x5598, &sis_info33 },
708 { 0x5597, &sis_info33 },
709 { 0x5591, &sis_info33 },
710 { 0x5582, &sis_info33 },
711 { 0x5581, &sis_info33 },
712
713 { 0x5596, &sis_info },
714 { 0x5571, &sis_info },
715 { 0x5517, &sis_info },
716 { 0x5511, &sis_info },
717
718 {0}
719 };
720 static struct sis_chipset sis133_early = {
721 0x0, &sis_info133_early
722 };
723 static struct sis_chipset sis133 = {
724 0x0, &sis_info133
725 };
726 static struct sis_chipset sis100_early = {
727 0x0, &sis_info100_early
728 };
729 static struct sis_chipset sis100 = {
730 0x0, &sis_info100
731 };
732
733 if (!printed_version++)
734 dev_printk(KERN_DEBUG, &pdev->dev,
735 "version " DRV_VERSION "\n");
736
Tejun Heof08048e2008-03-25 12:22:47 +0900737 rc = pcim_enable_device(pdev);
738 if (rc)
739 return rc;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400740
Tejun Heof08048e2008-03-25 12:22:47 +0900741 /* We have to find the bridge first */
Alan Coxf3769e92007-04-19 11:09:52 +0100742 for (sets = &sis_chipsets[0]; sets->device; sets++) {
743 host = pci_get_device(PCI_VENDOR_ID_SI, sets->device, NULL);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400744 if (host != NULL) {
Alan Coxf3769e92007-04-19 11:09:52 +0100745 chipset = sets; /* Match found */
746 if (sets->device == 0x630) { /* SIS630 */
Auke Kok44c10132007-06-08 15:46:36 -0700747 if (host->revision >= 0x30) /* 630 ET */
Jeff Garzik669a5db2006-08-29 18:12:40 -0400748 chipset = &sis100_early;
749 }
750 break;
751 }
752 }
753
754 /* Look for concealed bridges */
Alan Coxf3769e92007-04-19 11:09:52 +0100755 if (chipset == NULL) {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400756 /* Second check */
757 u32 idemisc;
758 u16 trueid;
759
760 /* Disable ID masking and register remapping then
761 see what the real ID is */
762
763 pci_read_config_dword(pdev, 0x54, &idemisc);
764 pci_write_config_dword(pdev, 0x54, idemisc & 0x7fffffff);
765 pci_read_config_word(pdev, PCI_DEVICE_ID, &trueid);
766 pci_write_config_dword(pdev, 0x54, idemisc);
767
768 switch(trueid) {
769 case 0x5518: /* SIS 962/963 */
770 chipset = &sis133;
771 if ((idemisc & 0x40000000) == 0) {
772 pci_write_config_dword(pdev, 0x54, idemisc | 0x40000000);
773 printk(KERN_INFO "SIS5513: Switching to 5513 register mapping\n");
774 }
775 break;
776 case 0x0180: /* SIS 965/965L */
777 chipset = &sis133;
778 break;
779 case 0x1180: /* SIS 966/966L */
780 chipset = &sis133;
781 break;
782 }
783 }
784
785 /* Further check */
786 if (chipset == NULL) {
787 struct pci_dev *lpc_bridge;
788 u16 trueid;
789 u8 prefctl;
790 u8 idecfg;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400791
792 /* Try the second unmasking technique */
793 pci_read_config_byte(pdev, 0x4a, &idecfg);
794 pci_write_config_byte(pdev, 0x4a, idecfg | 0x10);
795 pci_read_config_word(pdev, PCI_DEVICE_ID, &trueid);
796 pci_write_config_byte(pdev, 0x4a, idecfg);
797
798 switch(trueid) {
799 case 0x5517:
800 lpc_bridge = pci_get_slot(pdev->bus, 0x10); /* Bus 0 Dev 2 Fn 0 */
801 if (lpc_bridge == NULL)
802 break;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400803 pci_read_config_byte(pdev, 0x49, &prefctl);
804 pci_dev_put(lpc_bridge);
805
Auke Kok44c10132007-06-08 15:46:36 -0700806 if (lpc_bridge->revision == 0x10 && (prefctl & 0x80)) {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400807 chipset = &sis133_early;
808 break;
809 }
810 chipset = &sis100;
811 break;
812 }
813 }
814 pci_dev_put(host);
815
816 /* No chipset info, no support */
817 if (chipset == NULL)
818 return -ENODEV;
819
Tejun Heo887125e2008-03-25 12:22:49 +0900820 ppi[0] = chipset->info;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400821
822 sis_fixup(pdev, chipset);
823
Tejun Heo887125e2008-03-25 12:22:49 +0900824 return ata_pci_init_one(pdev, ppi, &sis_sht, chipset);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400825}
826
827static const struct pci_device_id sis_pci_tbl[] = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400828 { PCI_VDEVICE(SI, 0x5513), }, /* SiS 5513 */
829 { PCI_VDEVICE(SI, 0x5518), }, /* SiS 5518 */
Uwe Kozioleka3cabb22007-06-14 23:40:43 +0200830 { PCI_VDEVICE(SI, 0x1180), }, /* SiS 1180 */
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400831
Jeff Garzik669a5db2006-08-29 18:12:40 -0400832 { }
833};
834
835static struct pci_driver sis_pci_driver = {
836 .name = DRV_NAME,
837 .id_table = sis_pci_tbl,
838 .probe = sis_init_one,
839 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900840#ifdef CONFIG_PM
Alan62d64ae2006-11-27 16:27:20 +0000841 .suspend = ata_pci_device_suspend,
842 .resume = ata_pci_device_resume,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900843#endif
Jeff Garzik669a5db2006-08-29 18:12:40 -0400844};
845
846static int __init sis_init(void)
847{
848 return pci_register_driver(&sis_pci_driver);
849}
850
851static void __exit sis_exit(void)
852{
853 pci_unregister_driver(&sis_pci_driver);
854}
855
Jeff Garzik669a5db2006-08-29 18:12:40 -0400856module_init(sis_init);
857module_exit(sis_exit);
858
859MODULE_AUTHOR("Alan Cox");
860MODULE_DESCRIPTION("SCSI low-level driver for SiS ATA");
861MODULE_LICENSE("GPL");
862MODULE_DEVICE_TABLE(pci, sis_pci_tbl);
863MODULE_VERSION(DRV_VERSION);
864