2 * pata_sis.c - SiS ATA driver
5 * (C) 2007,2009 Bartlomiej Zolnierkiewicz
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>
22 * Check MWDMA on drives that don't support MWDMA speed pio cycles ?
26 #include <linux/kernel.h>
27 #include <linux/module.h>
28 #include <linux/pci.h>
29 #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>
37 #define DRV_NAME "pata_sis"
38 #define DRV_VERSION "0.5.2"
41 u16 device
; /* PCI host ID */
42 const struct ata_port_info
*info
; /* Info block */
43 /* Probably add family, cable detect type etc here to clean
53 static const struct sis_laptop sis_laptop
[] = {
54 /* devid, subvendor, subdev */
55 { 0x5513, 0x1043, 0x1107 }, /* ASUS A6K */
56 { 0x5513, 0x1734, 0x105F }, /* FSC Amilo A1630 */
57 { 0x5513, 0x1071, 0x8640 }, /* EasyNote K5305 */
62 static int sis_short_ata40(struct pci_dev
*dev
)
64 const struct sis_laptop
*lap
= &sis_laptop
[0];
67 if (lap
->device
== dev
->device
&&
68 lap
->subvendor
== dev
->subsystem_vendor
&&
69 lap
->subdevice
== dev
->subsystem_device
)
78 * sis_old_port_base - return PCI configuration base for dev
81 * Returns the base of the PCI configuration registers for this port
85 static int sis_old_port_base(struct ata_device
*adev
)
87 return 0x40 + (4 * adev
->link
->ap
->port_no
) + (2 * adev
->devno
);
91 * sis_port_base - return PCI configuration base for dev
94 * Returns the base of the PCI configuration registers for this port
98 static int sis_port_base(struct ata_device
*adev
)
100 struct ata_port
*ap
= adev
->link
->ap
;
101 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
105 /* If bit 30 is set then the registers are mapped at 0x70 not 0x40 */
106 pci_read_config_dword(pdev
, 0x54, ®54
);
107 if (reg54
& 0x40000000)
110 return port
+ (8 * ap
->port_no
) + (4 * adev
->devno
);
114 * sis_133_cable_detect - check for 40/80 pin
116 * @deadline: deadline jiffies for the operation
118 * Perform cable detection for the later UDMA133 capable
122 static int sis_133_cable_detect(struct ata_port
*ap
)
124 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
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
;
135 * sis_66_cable_detect - check for 40/80 pin
138 * Perform cable detection on the UDMA66, UDMA100 and early UDMA133
139 * SiS IDE controllers.
142 static int sis_66_cable_detect(struct ata_port
*ap
)
144 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
147 /* Older chips keep cable detect in bits 4/5 of reg 0x48 */
148 pci_read_config_byte(pdev
, 0x48, &tmp
);
150 if ((tmp
& 0x10) && !sis_short_ata40(pdev
))
151 return ATA_CBL_PATA40
;
152 return ATA_CBL_PATA80
;
157 * sis_pre_reset - probe begin
159 * @deadline: deadline jiffies for the operation
161 * Set up cable type and use generic probe init
164 static int sis_pre_reset(struct ata_link
*link
, unsigned long deadline
)
166 static const struct pci_bits sis_enable_bits
[] = {
167 { 0x4aU
, 1U, 0x02UL
, 0x02UL
}, /* port 0 */
168 { 0x4aU
, 1U, 0x04UL
, 0x04UL
}, /* port 1 */
171 struct ata_port
*ap
= link
->ap
;
172 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
174 if (!pci_test_config_bits(pdev
, &sis_enable_bits
[ap
->port_no
]))
177 /* 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);
180 return ata_sff_prereset(link
, deadline
);
185 * sis_set_fifo - Set RWP fifo bits for this device
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
194 static void sis_set_fifo(struct ata_port
*ap
, struct ata_device
*adev
)
196 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
200 mask
<<= (2 * ap
->port_no
);
201 mask
<<= adev
->devno
;
203 /* This holds various bits including the FIFO control */
204 pci_read_config_byte(pdev
, 0x4B, &fifoctrl
);
207 /* Enable for ATA (disk) only */
208 if (adev
->class == ATA_DEV_ATA
)
210 pci_write_config_byte(pdev
, 0x4B, fifoctrl
);
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.
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.
223 * None (inherited from caller).
226 static void sis_old_set_piomode (struct ata_port
*ap
, struct ata_device
*adev
)
228 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
229 int port
= sis_old_port_base(adev
);
231 int speed
= adev
->pio_mode
- XFER_PIO_0
;
233 static const u8 active
[] = { 0x00, 0x07, 0x04, 0x03, 0x01 };
234 static const u8 recovery
[] = { 0x00, 0x06, 0x04, 0x03, 0x03 };
236 sis_set_fifo(ap
, adev
);
238 pci_read_config_byte(pdev
, port
, &t1
);
239 pci_read_config_byte(pdev
, port
+ 1, &t2
);
241 t1
&= ~0x0F; /* Clear active/recovery timings */
245 t2
|= recovery
[speed
];
247 pci_write_config_byte(pdev
, port
, t1
);
248 pci_write_config_byte(pdev
, port
+ 1, t2
);
252 * sis_100_set_piomode - Initialize host controller PATA PIO timings
253 * @ap: Port whose timings we are configuring
254 * @adev: Device we are configuring for.
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.
260 * None (inherited from caller).
263 static void sis_100_set_piomode (struct ata_port
*ap
, struct ata_device
*adev
)
265 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
266 int port
= sis_old_port_base(adev
);
267 int speed
= adev
->pio_mode
- XFER_PIO_0
;
269 static const u8 actrec
[] = { 0x00, 0x67, 0x44, 0x33, 0x31 };
271 sis_set_fifo(ap
, adev
);
273 pci_write_config_byte(pdev
, port
, actrec
[speed
]);
277 * sis_133_set_piomode - Initialize host controller PATA PIO timings
278 * @ap: Port whose timings we are configuring
279 * @adev: Device we are configuring for.
281 * Set PIO mode for device, in host controller PCI config space. This
282 * function handles PIO set up for the later ATA133 devices.
285 * None (inherited from caller).
288 static void sis_133_set_piomode (struct ata_port
*ap
, struct ata_device
*adev
)
290 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
293 int speed
= adev
->pio_mode
- XFER_PIO_0
;
295 static const u32 timing133
[] = {
296 0x28269000, /* Recovery << 24 | Act << 16 | Ini << 12 */
302 static const u32 timing100
[] = {
303 0x1E1C6000, /* Recovery << 24 | Act << 16 | Ini << 12 */
310 sis_set_fifo(ap
, adev
);
312 port
= sis_port_base(adev
);
313 pci_read_config_dword(pdev
, port
, &t1
);
314 t1
&= 0xC0C00FFF; /* Mask out timing */
316 if (t1
& 0x08) /* 100 or 133 ? */
317 t1
|= timing133
[speed
];
319 t1
|= timing100
[speed
];
320 pci_write_config_byte(pdev
, port
, t1
);
324 * sis_old_set_dmamode - Initialize host controller PATA DMA timings
325 * @ap: Port whose timings we are configuring
326 * @adev: Device to program
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.
333 * None (inherited from caller).
336 static void sis_old_set_dmamode (struct ata_port
*ap
, struct ata_device
*adev
)
338 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
339 int speed
= adev
->dma_mode
- XFER_MW_DMA_0
;
340 int drive_pci
= sis_old_port_base(adev
);
343 static const u16 mwdma_bits
[] = { 0x008, 0x302, 0x301 };
344 static const u16 udma_bits
[] = { 0xE000, 0xC000, 0xA000 };
346 pci_read_config_word(pdev
, drive_pci
, &timing
);
348 if (adev
->dma_mode
< XFER_UDMA_0
) {
349 /* bits 3-0 hold recovery timing bits 8-10 active timing and
350 the higher bits are dependent on the device */
352 timing
|= mwdma_bits
[speed
];
354 /* Bit 15 is UDMA on/off, bit 13-14 are cycle time */
355 speed
= adev
->dma_mode
- XFER_UDMA_0
;
357 timing
|= udma_bits
[speed
];
359 pci_write_config_word(pdev
, drive_pci
, timing
);
363 * sis_66_set_dmamode - Initialize host controller PATA DMA timings
364 * @ap: Port whose timings we are configuring
365 * @adev: Device to program
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.
372 * None (inherited from caller).
375 static void sis_66_set_dmamode (struct ata_port
*ap
, struct ata_device
*adev
)
377 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
378 int speed
= adev
->dma_mode
- XFER_MW_DMA_0
;
379 int drive_pci
= sis_old_port_base(adev
);
382 /* MWDMA 0-2 and UDMA 0-5 */
383 static const u16 mwdma_bits
[] = { 0x008, 0x302, 0x301 };
384 static const u16 udma_bits
[] = { 0xF000, 0xD000, 0xB000, 0xA000, 0x9000, 0x8000 };
386 pci_read_config_word(pdev
, drive_pci
, &timing
);
388 if (adev
->dma_mode
< XFER_UDMA_0
) {
389 /* bits 3-0 hold recovery timing bits 8-10 active timing and
390 the higher bits are dependent on the device, bit 15 udma */
392 timing
|= mwdma_bits
[speed
];
394 /* Bit 15 is UDMA on/off, bit 12-14 are cycle time */
395 speed
= adev
->dma_mode
- XFER_UDMA_0
;
397 timing
|= udma_bits
[speed
];
399 pci_write_config_word(pdev
, drive_pci
, timing
);
403 * sis_100_set_dmamode - Initialize host controller PATA DMA timings
404 * @ap: Port whose timings we are configuring
405 * @adev: Device to program
407 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
408 * Handles UDMA66 and early UDMA100 devices.
411 * None (inherited from caller).
414 static void sis_100_set_dmamode (struct ata_port
*ap
, struct ata_device
*adev
)
416 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
417 int speed
= adev
->dma_mode
- XFER_MW_DMA_0
;
418 int drive_pci
= sis_old_port_base(adev
);
421 static const u8 udma_bits
[] = { 0x8B, 0x87, 0x85, 0x83, 0x82, 0x81};
423 pci_read_config_byte(pdev
, drive_pci
+ 1, &timing
);
425 if (adev
->dma_mode
< XFER_UDMA_0
) {
426 /* NOT SUPPORTED YET: NEED DATA SHEET. DITTO IN OLD DRIVER */
428 /* Bit 7 is UDMA on/off, bit 0-3 are cycle time */
429 speed
= adev
->dma_mode
- XFER_UDMA_0
;
431 timing
|= udma_bits
[speed
];
433 pci_write_config_byte(pdev
, drive_pci
+ 1, timing
);
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
441 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
442 * Handles early SiS 961 bridges.
445 * None (inherited from caller).
448 static void sis_133_early_set_dmamode (struct ata_port
*ap
, struct ata_device
*adev
)
450 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
451 int speed
= adev
->dma_mode
- XFER_MW_DMA_0
;
452 int drive_pci
= sis_old_port_base(adev
);
454 /* Low 4 bits are timing */
455 static const u8 udma_bits
[] = { 0x8F, 0x8A, 0x87, 0x85, 0x83, 0x82, 0x81};
457 pci_read_config_byte(pdev
, drive_pci
+ 1, &timing
);
459 if (adev
->dma_mode
< XFER_UDMA_0
) {
460 /* NOT SUPPORTED YET: NEED DATA SHEET. DITTO IN OLD DRIVER */
462 /* Bit 7 is UDMA on/off, bit 0-3 are cycle time */
463 speed
= adev
->dma_mode
- XFER_UDMA_0
;
465 timing
|= udma_bits
[speed
];
467 pci_write_config_byte(pdev
, drive_pci
+ 1, timing
);
471 * sis_133_set_dmamode - Initialize host controller PATA DMA timings
472 * @ap: Port whose timings we are configuring
473 * @adev: Device to program
475 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
478 * None (inherited from caller).
481 static void sis_133_set_dmamode (struct ata_port
*ap
, struct ata_device
*adev
)
483 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
487 port
= sis_port_base(adev
);
488 pci_read_config_dword(pdev
, port
, &t1
);
490 if (adev
->dma_mode
< XFER_UDMA_0
) {
491 /* 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
;
500 t1
|= timing_u133
[speed
];
502 t1
|= timing_u100
[speed
];
504 /* 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 };
507 int speed
= adev
->dma_mode
- XFER_UDMA_0
;
513 t1
|= timing_u133
[speed
];
515 t1
|= timing_u100
[speed
];
517 pci_write_config_dword(pdev
, port
, t1
);
521 * sis_133_mode_filter - mode selection filter
524 * Block UDMA6 on devices that do not support it.
527 static unsigned long sis_133_mode_filter(struct ata_device
*adev
, unsigned long mask
)
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
);
534 pci_read_config_dword(pdev
, port
, &t1
);
535 /* if ATA133 is disabled, mask it out */
537 mask
&= ~(0xC0 << ATA_SHIFT_UDMA
);
541 static struct scsi_host_template sis_sht
= {
542 ATA_BMDMA_SHT(DRV_NAME
),
545 static struct ata_port_operations sis_133_for_sata_ops
= {
546 .inherits
= &ata_bmdma_port_ops
,
547 .set_piomode
= sis_133_set_piomode
,
548 .set_dmamode
= sis_133_set_dmamode
,
549 .cable_detect
= sis_133_cable_detect
,
552 static struct ata_port_operations sis_base_ops
= {
553 .inherits
= &ata_bmdma_port_ops
,
554 .prereset
= sis_pre_reset
,
557 static struct ata_port_operations sis_133_ops
= {
558 .inherits
= &sis_base_ops
,
559 .set_piomode
= sis_133_set_piomode
,
560 .set_dmamode
= sis_133_set_dmamode
,
561 .cable_detect
= sis_133_cable_detect
,
562 .mode_filter
= sis_133_mode_filter
,
565 static struct ata_port_operations sis_133_early_ops
= {
566 .inherits
= &sis_base_ops
,
567 .set_piomode
= sis_100_set_piomode
,
568 .set_dmamode
= sis_133_early_set_dmamode
,
569 .cable_detect
= sis_66_cable_detect
,
572 static struct ata_port_operations sis_100_ops
= {
573 .inherits
= &sis_base_ops
,
574 .set_piomode
= sis_100_set_piomode
,
575 .set_dmamode
= sis_100_set_dmamode
,
576 .cable_detect
= sis_66_cable_detect
,
579 static struct ata_port_operations sis_66_ops
= {
580 .inherits
= &sis_base_ops
,
581 .set_piomode
= sis_old_set_piomode
,
582 .set_dmamode
= sis_66_set_dmamode
,
583 .cable_detect
= sis_66_cable_detect
,
586 static struct ata_port_operations sis_old_ops
= {
587 .inherits
= &sis_base_ops
,
588 .set_piomode
= sis_old_set_piomode
,
589 .set_dmamode
= sis_old_set_dmamode
,
590 .cable_detect
= ata_cable_40wire
,
593 static const struct ata_port_info sis_info
= {
594 .flags
= ATA_FLAG_SLAVE_POSS
,
595 .pio_mask
= ATA_PIO4
,
596 .mwdma_mask
= ATA_MWDMA2
,
598 .port_ops
= &sis_old_ops
,
600 static const struct ata_port_info sis_info33
= {
601 .flags
= ATA_FLAG_SLAVE_POSS
,
602 .pio_mask
= ATA_PIO4
,
603 .mwdma_mask
= ATA_MWDMA2
,
604 .udma_mask
= ATA_UDMA2
,
605 .port_ops
= &sis_old_ops
,
607 static const struct ata_port_info sis_info66
= {
608 .flags
= ATA_FLAG_SLAVE_POSS
,
609 .pio_mask
= ATA_PIO4
,
611 .udma_mask
= ATA_UDMA4
,
612 .port_ops
= &sis_66_ops
,
614 static const struct ata_port_info sis_info100
= {
615 .flags
= ATA_FLAG_SLAVE_POSS
,
616 .pio_mask
= ATA_PIO4
,
618 .udma_mask
= ATA_UDMA5
,
619 .port_ops
= &sis_100_ops
,
621 static const struct ata_port_info sis_info100_early
= {
622 .flags
= ATA_FLAG_SLAVE_POSS
,
623 .pio_mask
= ATA_PIO4
,
625 .udma_mask
= ATA_UDMA5
,
626 .port_ops
= &sis_66_ops
,
628 static const struct ata_port_info sis_info133
= {
629 .flags
= ATA_FLAG_SLAVE_POSS
,
630 .pio_mask
= ATA_PIO4
,
631 .mwdma_mask
= ATA_MWDMA2
,
632 .udma_mask
= ATA_UDMA6
,
633 .port_ops
= &sis_133_ops
,
635 const struct ata_port_info sis_info133_for_sata
= {
636 .flags
= ATA_FLAG_SLAVE_POSS
,
637 .pio_mask
= ATA_PIO4
,
639 .udma_mask
= ATA_UDMA6
,
640 .port_ops
= &sis_133_for_sata_ops
,
642 static const struct ata_port_info sis_info133_early
= {
643 .flags
= ATA_FLAG_SLAVE_POSS
,
644 .pio_mask
= ATA_PIO4
,
646 .udma_mask
= ATA_UDMA6
,
647 .port_ops
= &sis_133_early_ops
,
650 /* Privately shared with the SiS180 SATA driver, not for use elsewhere */
651 EXPORT_SYMBOL_GPL(sis_info133_for_sata
);
653 static void sis_fixup(struct pci_dev
*pdev
, struct sis_chipset
*sis
)
658 if (sis
->info
== &sis_info133
) {
659 pci_read_config_word(pdev
, 0x50, ®w
);
661 pci_write_config_word(pdev
, 0x50, regw
& ~0x08);
662 pci_read_config_word(pdev
, 0x52, ®w
);
664 pci_write_config_word(pdev
, 0x52, regw
& ~0x08);
668 if (sis
->info
== &sis_info133_early
|| sis
->info
== &sis_info100
) {
670 pci_write_config_byte(pdev
, PCI_LATENCY_TIMER
, 0x80);
671 /* Set compatibility bit */
672 pci_read_config_byte(pdev
, 0x49, ®
);
674 pci_write_config_byte(pdev
, 0x49, reg
| 0x01);
678 if (sis
->info
== &sis_info66
|| sis
->info
== &sis_info100_early
) {
680 pci_write_config_byte(pdev
, PCI_LATENCY_TIMER
, 0x80);
681 /* Set compatibility bit */
682 pci_read_config_byte(pdev
, 0x52, ®
);
684 pci_write_config_byte(pdev
, 0x52, reg
| 0x04);
688 if (sis
->info
== &sis_info33
) {
689 pci_read_config_byte(pdev
, PCI_CLASS_PROG
, ®
);
690 if (( reg
& 0x0F ) != 0x00)
691 pci_write_config_byte(pdev
, PCI_CLASS_PROG
, reg
& 0xF0);
692 /* Fall through to ATA16 fixup below */
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, ®
);
700 pci_write_config_byte(pdev
, 0x52, reg
|0x08);
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
712 * Called from kernel PCI layer. We probe for combined mode (sigh),
713 * and then hand over control to libata, for it to do the rest.
716 * Inherited from PCI layer (may sleep).
719 * Zero on success, or -ERRNO value.
722 static int sis_init_one (struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
724 const struct ata_port_info
*ppi
[] = { NULL
, NULL
};
725 struct pci_dev
*host
= NULL
;
726 struct sis_chipset
*chipset
= NULL
;
727 struct sis_chipset
*sets
;
730 static struct sis_chipset sis_chipsets
[] = {
732 { 0x0968, &sis_info133
},
733 { 0x0966, &sis_info133
},
734 { 0x0965, &sis_info133
},
735 { 0x0745, &sis_info100
},
736 { 0x0735, &sis_info100
},
737 { 0x0733, &sis_info100
},
738 { 0x0635, &sis_info100
},
739 { 0x0633, &sis_info100
},
741 { 0x0730, &sis_info100_early
}, /* 100 with ATA 66 layout */
742 { 0x0550, &sis_info100_early
}, /* 100 with ATA 66 layout */
744 { 0x0640, &sis_info66
},
745 { 0x0630, &sis_info66
},
746 { 0x0620, &sis_info66
},
747 { 0x0540, &sis_info66
},
748 { 0x0530, &sis_info66
},
750 { 0x5600, &sis_info33
},
751 { 0x5598, &sis_info33
},
752 { 0x5597, &sis_info33
},
753 { 0x5591, &sis_info33
},
754 { 0x5582, &sis_info33
},
755 { 0x5581, &sis_info33
},
757 { 0x5596, &sis_info
},
758 { 0x5571, &sis_info
},
759 { 0x5517, &sis_info
},
760 { 0x5511, &sis_info
},
764 static struct sis_chipset sis133_early
= {
765 0x0, &sis_info133_early
767 static struct sis_chipset sis133
= {
770 static struct sis_chipset sis100_early
= {
771 0x0, &sis_info100_early
773 static struct sis_chipset sis100
= {
777 ata_print_version_once(&pdev
->dev
, DRV_VERSION
);
779 rc
= pcim_enable_device(pdev
);
783 /* We have to find the bridge first */
784 for (sets
= &sis_chipsets
[0]; sets
->device
; sets
++) {
785 host
= pci_get_device(PCI_VENDOR_ID_SI
, sets
->device
, NULL
);
787 chipset
= sets
; /* Match found */
788 if (sets
->device
== 0x630) { /* SIS630 */
789 if (host
->revision
>= 0x30) /* 630 ET */
790 chipset
= &sis100_early
;
796 /* Look for concealed bridges */
797 if (chipset
== NULL
) {
802 /* Disable ID masking and register remapping then
803 see what the real ID is */
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
);
811 case 0x5518: /* SIS 962/963 */
813 "SiS 962/963 MuTIOL IDE UDMA133 controller\n");
815 if ((idemisc
& 0x40000000) == 0) {
816 pci_write_config_dword(pdev
, 0x54, idemisc
| 0x40000000);
818 "Switching to 5513 register mapping\n");
821 case 0x0180: /* SIS 965/965L */
824 case 0x1180: /* SIS 966/966L */
831 if (chipset
== NULL
) {
832 struct pci_dev
*lpc_bridge
;
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
);
845 lpc_bridge
= pci_get_slot(pdev
->bus
, 0x10); /* Bus 0 Dev 2 Fn 0 */
846 if (lpc_bridge
== NULL
)
848 pci_read_config_byte(pdev
, 0x49, &prefctl
);
849 pci_dev_put(lpc_bridge
);
851 if (lpc_bridge
->revision
== 0x10 && (prefctl
& 0x80)) {
852 chipset
= &sis133_early
;
861 /* No chipset info, no support */
865 ppi
[0] = chipset
->info
;
867 sis_fixup(pdev
, chipset
);
869 return ata_pci_bmdma_init_one(pdev
, ppi
, &sis_sht
, chipset
, 0);
872 #ifdef CONFIG_PM_SLEEP
873 static int sis_reinit_one(struct pci_dev
*pdev
)
875 struct ata_host
*host
= pci_get_drvdata(pdev
);
878 rc
= ata_pci_device_do_resume(pdev
);
882 sis_fixup(pdev
, host
->private_data
);
884 ata_host_resume(host
);
889 static const struct pci_device_id sis_pci_tbl
[] = {
890 { PCI_VDEVICE(SI
, 0x5513), }, /* SiS 5513 */
891 { PCI_VDEVICE(SI
, 0x5518), }, /* SiS 5518 */
892 { PCI_VDEVICE(SI
, 0x1180), }, /* SiS 1180 */
897 static struct pci_driver sis_pci_driver
= {
899 .id_table
= sis_pci_tbl
,
900 .probe
= sis_init_one
,
901 .remove
= ata_pci_remove_one
,
902 #ifdef CONFIG_PM_SLEEP
903 .suspend
= ata_pci_device_suspend
,
904 .resume
= sis_reinit_one
,
908 module_pci_driver(sis_pci_driver
);
910 MODULE_AUTHOR("Alan Cox");
911 MODULE_DESCRIPTION("SCSI low-level driver for SiS ATA");
912 MODULE_LICENSE("GPL");
913 MODULE_DEVICE_TABLE(pci
, sis_pci_tbl
);
914 MODULE_VERSION(DRV_VERSION
);