2 * pata_sis.c - SiS ATA driver
4 * (C) 2005 Red Hat <alan@redhat.com>
6 * Based upon linux/drivers/ide/pci/sis5513.c
7 * Copyright (C) 1999-2000 Andre Hedrick <andre@linux-ide.org>
8 * Copyright (C) 2002 Lionel Bouton <Lionel.Bouton@inet6.fr>, Maintainer
9 * Copyright (C) 2003 Vojtech Pavlik <vojtech@suse.cz>
10 * SiS Taiwan : for direct support and hardware.
11 * Daniela Engert : for initial ATA100 advices and numerous others.
12 * John Fremlin, Manfred Spraul, Dave Morgan, Peter Kjellerstedt :
13 * for checking code correctness, providing patches.
14 * Original tests and design on the SiS620 chipset.
15 * ATA100 tests and design on the SiS735 chipset.
16 * ATA16/33 support from specs
17 * ATA133 support for SiS961/962 by L.C. Chang <lcchang@sis.com.tw>
21 * Check MWDMA on drives that don't support MWDMA speed pio cycles ?
25 #include <linux/kernel.h>
26 #include <linux/module.h>
27 #include <linux/pci.h>
28 #include <linux/init.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.1"
41 u16 device
; /* PCI host ID */
42 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 */
60 static int sis_short_ata40(struct pci_dev
*dev
)
62 const struct sis_laptop
*lap
= &sis_laptop
[0];
65 if (lap
->device
== dev
->device
&&
66 lap
->subvendor
== dev
->subsystem_vendor
&&
67 lap
->subdevice
== dev
->subsystem_device
)
76 * sis_port_base - return PCI configuration base for dev
79 * Returns the base of the PCI configuration registers for this port
83 static int sis_port_base(struct ata_device
*adev
)
85 return 0x40 + (4 * adev
->ap
->port_no
) + (2 * adev
->devno
);
89 * sis_133_cable_detect - check for 40/80 pin
92 * Perform cable detection for the later UDMA133 capable
96 static int sis_133_cable_detect(struct ata_port
*ap
)
98 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
101 /* The top bit of this register is the cable detect bit */
102 pci_read_config_word(pdev
, 0x50 + 2 * ap
->port_no
, &tmp
);
103 if ((tmp
& 0x8000) && !sis_short_ata40(pdev
))
104 return ATA_CBL_PATA40
;
105 return ATA_CBL_PATA80
;
109 * sis_66_cable_detect - check for 40/80 pin
112 * Perform cable detection on the UDMA66, UDMA100 and early UDMA133
113 * SiS IDE controllers.
116 static int sis_66_cable_detect(struct ata_port
*ap
)
118 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
121 /* Older chips keep cable detect in bits 4/5 of reg 0x48 */
122 pci_read_config_byte(pdev
, 0x48, &tmp
);
124 if ((tmp
& 0x10) && !sis_short_ata40(pdev
))
125 return ATA_CBL_PATA40
;
126 return ATA_CBL_PATA80
;
131 * sis_pre_reset - probe begin
134 * Set up cable type and use generic probe init
137 static int sis_pre_reset(struct ata_port
*ap
)
139 static const struct pci_bits sis_enable_bits
[] = {
140 { 0x4aU
, 1U, 0x02UL
, 0x02UL
}, /* port 0 */
141 { 0x4aU
, 1U, 0x04UL
, 0x04UL
}, /* port 1 */
144 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
146 if (!pci_test_config_bits(pdev
, &sis_enable_bits
[ap
->port_no
]))
148 return ata_std_prereset(ap
);
153 * sis_error_handler - Probe specified port on PATA host controller
157 * None (inherited from caller).
160 static void sis_error_handler(struct ata_port
*ap
)
162 ata_bmdma_drive_eh(ap
, sis_pre_reset
, ata_std_softreset
, NULL
, ata_std_postreset
);
166 * sis_set_fifo - Set RWP fifo bits for this device
170 * SIS chipsets implement prefetch/postwrite bits for each device
171 * on both channels. This functionality is not ATAPI compatible and
172 * must be configured according to the class of device present
175 static void sis_set_fifo(struct ata_port
*ap
, struct ata_device
*adev
)
177 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
181 mask
<<= (2 * ap
->port_no
);
182 mask
<<= adev
->devno
;
184 /* This holds various bits including the FIFO control */
185 pci_read_config_byte(pdev
, 0x4B, &fifoctrl
);
188 /* Enable for ATA (disk) only */
189 if (adev
->class == ATA_DEV_ATA
)
191 pci_write_config_byte(pdev
, 0x4B, fifoctrl
);
195 * sis_old_set_piomode - Initialize host controller PATA PIO timings
196 * @ap: Port whose timings we are configuring
197 * @adev: Device we are configuring for.
199 * Set PIO mode for device, in host controller PCI config space. This
200 * function handles PIO set up for all chips that are pre ATA100 and
201 * also early ATA100 devices.
204 * None (inherited from caller).
207 static void sis_old_set_piomode (struct ata_port
*ap
, struct ata_device
*adev
)
209 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
210 int port
= sis_port_base(adev
);
212 int speed
= adev
->pio_mode
- XFER_PIO_0
;
214 const u8 active
[] = { 0x00, 0x07, 0x04, 0x03, 0x01 };
215 const u8 recovery
[] = { 0x00, 0x06, 0x04, 0x03, 0x03 };
217 sis_set_fifo(ap
, adev
);
219 pci_read_config_byte(pdev
, port
, &t1
);
220 pci_read_config_byte(pdev
, port
+ 1, &t2
);
222 t1
&= ~0x0F; /* Clear active/recovery timings */
226 t2
|= recovery
[speed
];
228 pci_write_config_byte(pdev
, port
, t1
);
229 pci_write_config_byte(pdev
, port
+ 1, t2
);
233 * sis_100_set_pioode - Initialize host controller PATA PIO timings
234 * @ap: Port whose timings we are configuring
235 * @adev: Device we are configuring for.
237 * Set PIO mode for device, in host controller PCI config space. This
238 * function handles PIO set up for ATA100 devices and early ATA133.
241 * None (inherited from caller).
244 static void sis_100_set_piomode (struct ata_port
*ap
, struct ata_device
*adev
)
246 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
247 int port
= sis_port_base(adev
);
248 int speed
= adev
->pio_mode
- XFER_PIO_0
;
250 const u8 actrec
[] = { 0x00, 0x67, 0x44, 0x33, 0x31 };
252 sis_set_fifo(ap
, adev
);
254 pci_write_config_byte(pdev
, port
, actrec
[speed
]);
258 * sis_133_set_pioode - Initialize host controller PATA PIO timings
259 * @ap: Port whose timings we are configuring
260 * @adev: Device we are configuring for.
262 * Set PIO mode for device, in host controller PCI config space. This
263 * function handles PIO set up for the later ATA133 devices.
266 * None (inherited from caller).
269 static void sis_133_set_piomode (struct ata_port
*ap
, struct ata_device
*adev
)
271 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
275 int speed
= adev
->pio_mode
- XFER_PIO_0
;
277 const u32 timing133
[] = {
278 0x28269000, /* Recovery << 24 | Act << 16 | Ini << 12 */
284 const u32 timing100
[] = {
285 0x1E1C6000, /* Recovery << 24 | Act << 16 | Ini << 12 */
292 sis_set_fifo(ap
, adev
);
294 /* If bit 14 is set then the registers are mapped at 0x70 not 0x40 */
295 pci_read_config_dword(pdev
, 0x54, ®54
);
296 if (reg54
& 0x40000000)
298 port
+= 8 * ap
->port_no
+ 4 * adev
->devno
;
300 pci_read_config_dword(pdev
, port
, &t1
);
301 t1
&= 0xC0C00FFF; /* Mask out timing */
303 if (t1
& 0x08) /* 100 or 133 ? */
304 t1
|= timing133
[speed
];
306 t1
|= timing100
[speed
];
307 pci_write_config_byte(pdev
, port
, t1
);
311 * sis_old_set_dmamode - Initialize host controller PATA DMA timings
312 * @ap: Port whose timings we are configuring
313 * @adev: Device to program
315 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
316 * Handles pre UDMA and UDMA33 devices. Supports MWDMA as well unlike
317 * the old ide/pci driver.
320 * None (inherited from caller).
323 static void sis_old_set_dmamode (struct ata_port
*ap
, struct ata_device
*adev
)
325 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
326 int speed
= adev
->dma_mode
- XFER_MW_DMA_0
;
327 int drive_pci
= sis_port_base(adev
);
330 const u16 mwdma_bits
[] = { 0x707, 0x202, 0x202 };
331 const u16 udma_bits
[] = { 0xE000, 0xC000, 0xA000 };
333 pci_read_config_word(pdev
, drive_pci
, &timing
);
335 if (adev
->dma_mode
< XFER_UDMA_0
) {
336 /* bits 3-0 hold recovery timing bits 8-10 active timing and
337 the higer bits are dependant on the device */
339 timing
|= mwdma_bits
[speed
];
340 pci_write_config_word(pdev
, drive_pci
, timing
);
342 /* Bit 15 is UDMA on/off, bit 13-14 are cycle time */
343 speed
= adev
->dma_mode
- XFER_UDMA_0
;
345 timing
|= udma_bits
[speed
];
350 * sis_66_set_dmamode - Initialize host controller PATA DMA timings
351 * @ap: Port whose timings we are configuring
352 * @adev: Device to program
354 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
355 * Handles UDMA66 and early UDMA100 devices. Supports MWDMA as well unlike
356 * the old ide/pci driver.
359 * None (inherited from caller).
362 static void sis_66_set_dmamode (struct ata_port
*ap
, struct ata_device
*adev
)
364 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
365 int speed
= adev
->dma_mode
- XFER_MW_DMA_0
;
366 int drive_pci
= sis_port_base(adev
);
369 const u16 mwdma_bits
[] = { 0x707, 0x202, 0x202 };
370 const u16 udma_bits
[] = { 0xF000, 0xD000, 0xB000, 0xA000, 0x9000};
372 pci_read_config_word(pdev
, drive_pci
, &timing
);
374 if (adev
->dma_mode
< XFER_UDMA_0
) {
375 /* bits 3-0 hold recovery timing bits 8-10 active timing and
376 the higer bits are dependant on the device, bit 15 udma */
378 timing
|= mwdma_bits
[speed
];
380 /* Bit 15 is UDMA on/off, bit 12-14 are cycle time */
381 speed
= adev
->dma_mode
- XFER_UDMA_0
;
383 timing
|= udma_bits
[speed
];
385 pci_write_config_word(pdev
, drive_pci
, timing
);
389 * sis_100_set_dmamode - Initialize host controller PATA DMA timings
390 * @ap: Port whose timings we are configuring
391 * @adev: Device to program
393 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
394 * Handles UDMA66 and early UDMA100 devices.
397 * None (inherited from caller).
400 static void sis_100_set_dmamode (struct ata_port
*ap
, struct ata_device
*adev
)
402 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
403 int speed
= adev
->dma_mode
- XFER_MW_DMA_0
;
404 int drive_pci
= sis_port_base(adev
);
407 const u16 udma_bits
[] = { 0x8B00, 0x8700, 0x8500, 0x8300, 0x8200, 0x8100};
409 pci_read_config_word(pdev
, drive_pci
, &timing
);
411 if (adev
->dma_mode
< XFER_UDMA_0
) {
412 /* NOT SUPPORTED YET: NEED DATA SHEET. DITTO IN OLD DRIVER */
414 /* Bit 15 is UDMA on/off, bit 12-14 are cycle time */
415 speed
= adev
->dma_mode
- XFER_UDMA_0
;
417 timing
|= udma_bits
[speed
];
419 pci_write_config_word(pdev
, drive_pci
, timing
);
423 * sis_133_early_set_dmamode - Initialize host controller PATA DMA timings
424 * @ap: Port whose timings we are configuring
425 * @adev: Device to program
427 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
428 * Handles early SiS 961 bridges. Supports MWDMA as well unlike
429 * the old ide/pci driver.
432 * None (inherited from caller).
435 static void sis_133_early_set_dmamode (struct ata_port
*ap
, struct ata_device
*adev
)
437 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
438 int speed
= adev
->dma_mode
- XFER_MW_DMA_0
;
439 int drive_pci
= sis_port_base(adev
);
442 static const u16 udma_bits
[] = { 0x8F00, 0x8A00, 0x8700, 0x8500, 0x8300, 0x8200, 0x8100};
444 pci_read_config_word(pdev
, drive_pci
, &timing
);
446 if (adev
->dma_mode
< XFER_UDMA_0
) {
447 /* NOT SUPPORTED YET: NEED DATA SHEET. DITTO IN OLD DRIVER */
449 /* Bit 15 is UDMA on/off, bit 12-14 are cycle time */
450 speed
= adev
->dma_mode
- XFER_UDMA_0
;
452 timing
|= udma_bits
[speed
];
454 pci_write_config_word(pdev
, drive_pci
, timing
);
458 * sis_133_set_dmamode - Initialize host controller PATA DMA timings
459 * @ap: Port whose timings we are configuring
460 * @adev: Device to program
462 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
463 * Handles early SiS 961 bridges. Supports MWDMA as well unlike
464 * the old ide/pci driver.
467 * None (inherited from caller).
470 static void sis_133_set_dmamode (struct ata_port
*ap
, struct ata_device
*adev
)
472 struct pci_dev
*pdev
= to_pci_dev(ap
->host
->dev
);
473 int speed
= adev
->dma_mode
- XFER_MW_DMA_0
;
478 /* bits 4- cycle time 8 - cvs time */
479 static const u32 timing_u100
[] = { 0x6B0, 0x470, 0x350, 0x140, 0x120, 0x110, 0x000 };
480 static const u32 timing_u133
[] = { 0x9F0, 0x6A0, 0x470, 0x250, 0x230, 0x220, 0x210 };
482 /* If bit 14 is set then the registers are mapped at 0x70 not 0x40 */
483 pci_read_config_dword(pdev
, 0x54, ®54
);
484 if (reg54
& 0x40000000)
486 port
+= (8 * ap
->port_no
) + (4 * adev
->devno
);
488 pci_read_config_dword(pdev
, port
, &t1
);
490 if (adev
->dma_mode
< XFER_UDMA_0
) {
492 /* FIXME: need data sheet to add MWDMA here. Also lacking on
495 speed
= adev
->dma_mode
- XFER_UDMA_0
;
496 /* if & 8 no UDMA133 - need info for ... */
500 t1
|= timing_u133
[speed
];
502 t1
|= timing_u100
[speed
];
504 pci_write_config_dword(pdev
, port
, t1
);
507 static struct scsi_host_template sis_sht
= {
508 .module
= THIS_MODULE
,
510 .ioctl
= ata_scsi_ioctl
,
511 .queuecommand
= ata_scsi_queuecmd
,
512 .can_queue
= ATA_DEF_QUEUE
,
513 .this_id
= ATA_SHT_THIS_ID
,
514 .sg_tablesize
= LIBATA_MAX_PRD
,
515 .cmd_per_lun
= ATA_SHT_CMD_PER_LUN
,
516 .emulated
= ATA_SHT_EMULATED
,
517 .use_clustering
= ATA_SHT_USE_CLUSTERING
,
518 .proc_name
= DRV_NAME
,
519 .dma_boundary
= ATA_DMA_BOUNDARY
,
520 .slave_configure
= ata_scsi_slave_config
,
521 .slave_destroy
= ata_scsi_slave_destroy
,
522 .bios_param
= ata_std_bios_param
,
524 .resume
= ata_scsi_device_resume
,
525 .suspend
= ata_scsi_device_suspend
,
529 static const struct ata_port_operations sis_133_ops
= {
530 .port_disable
= ata_port_disable
,
531 .set_piomode
= sis_133_set_piomode
,
532 .set_dmamode
= sis_133_set_dmamode
,
533 .mode_filter
= ata_pci_default_filter
,
535 .tf_load
= ata_tf_load
,
536 .tf_read
= ata_tf_read
,
537 .check_status
= ata_check_status
,
538 .exec_command
= ata_exec_command
,
539 .dev_select
= ata_std_dev_select
,
541 .freeze
= ata_bmdma_freeze
,
542 .thaw
= ata_bmdma_thaw
,
543 .error_handler
= sis_error_handler
,
544 .post_internal_cmd
= ata_bmdma_post_internal_cmd
,
545 .cable_detect
= sis_133_cable_detect
,
547 .bmdma_setup
= ata_bmdma_setup
,
548 .bmdma_start
= ata_bmdma_start
,
549 .bmdma_stop
= ata_bmdma_stop
,
550 .bmdma_status
= ata_bmdma_status
,
551 .qc_prep
= ata_qc_prep
,
552 .qc_issue
= ata_qc_issue_prot
,
553 .data_xfer
= ata_data_xfer
,
555 .irq_handler
= ata_interrupt
,
556 .irq_clear
= ata_bmdma_irq_clear
,
557 .irq_on
= ata_irq_on
,
558 .irq_ack
= ata_irq_ack
,
560 .port_start
= ata_port_start
,
563 static const struct ata_port_operations sis_133_early_ops
= {
564 .port_disable
= ata_port_disable
,
565 .set_piomode
= sis_100_set_piomode
,
566 .set_dmamode
= sis_133_early_set_dmamode
,
567 .mode_filter
= ata_pci_default_filter
,
569 .tf_load
= ata_tf_load
,
570 .tf_read
= ata_tf_read
,
571 .check_status
= ata_check_status
,
572 .exec_command
= ata_exec_command
,
573 .dev_select
= ata_std_dev_select
,
575 .freeze
= ata_bmdma_freeze
,
576 .thaw
= ata_bmdma_thaw
,
577 .error_handler
= sis_error_handler
,
578 .post_internal_cmd
= ata_bmdma_post_internal_cmd
,
579 .cable_detect
= sis_66_cable_detect
,
581 .bmdma_setup
= ata_bmdma_setup
,
582 .bmdma_start
= ata_bmdma_start
,
583 .bmdma_stop
= ata_bmdma_stop
,
584 .bmdma_status
= ata_bmdma_status
,
585 .qc_prep
= ata_qc_prep
,
586 .qc_issue
= ata_qc_issue_prot
,
587 .data_xfer
= ata_data_xfer
,
589 .irq_handler
= ata_interrupt
,
590 .irq_clear
= ata_bmdma_irq_clear
,
591 .irq_on
= ata_irq_on
,
592 .irq_ack
= ata_irq_ack
,
594 .port_start
= ata_port_start
,
597 static const struct ata_port_operations sis_100_ops
= {
598 .port_disable
= ata_port_disable
,
599 .set_piomode
= sis_100_set_piomode
,
600 .set_dmamode
= sis_100_set_dmamode
,
601 .mode_filter
= ata_pci_default_filter
,
603 .tf_load
= ata_tf_load
,
604 .tf_read
= ata_tf_read
,
605 .check_status
= ata_check_status
,
606 .exec_command
= ata_exec_command
,
607 .dev_select
= ata_std_dev_select
,
609 .freeze
= ata_bmdma_freeze
,
610 .thaw
= ata_bmdma_thaw
,
611 .error_handler
= sis_error_handler
,
612 .post_internal_cmd
= ata_bmdma_post_internal_cmd
,
613 .cable_detect
= sis_66_cable_detect
,
615 .bmdma_setup
= ata_bmdma_setup
,
616 .bmdma_start
= ata_bmdma_start
,
617 .bmdma_stop
= ata_bmdma_stop
,
618 .bmdma_status
= ata_bmdma_status
,
619 .qc_prep
= ata_qc_prep
,
620 .qc_issue
= ata_qc_issue_prot
,
621 .data_xfer
= ata_data_xfer
,
623 .irq_handler
= ata_interrupt
,
624 .irq_clear
= ata_bmdma_irq_clear
,
625 .irq_on
= ata_irq_on
,
626 .irq_ack
= ata_irq_ack
,
628 .port_start
= ata_port_start
,
631 static const struct ata_port_operations sis_66_ops
= {
632 .port_disable
= ata_port_disable
,
633 .set_piomode
= sis_old_set_piomode
,
634 .set_dmamode
= sis_66_set_dmamode
,
635 .mode_filter
= ata_pci_default_filter
,
637 .tf_load
= ata_tf_load
,
638 .tf_read
= ata_tf_read
,
639 .check_status
= ata_check_status
,
640 .exec_command
= ata_exec_command
,
641 .dev_select
= ata_std_dev_select
,
642 .cable_detect
= sis_66_cable_detect
,
644 .freeze
= ata_bmdma_freeze
,
645 .thaw
= ata_bmdma_thaw
,
646 .error_handler
= sis_error_handler
,
647 .post_internal_cmd
= ata_bmdma_post_internal_cmd
,
649 .bmdma_setup
= ata_bmdma_setup
,
650 .bmdma_start
= ata_bmdma_start
,
651 .bmdma_stop
= ata_bmdma_stop
,
652 .bmdma_status
= ata_bmdma_status
,
653 .qc_prep
= ata_qc_prep
,
654 .qc_issue
= ata_qc_issue_prot
,
655 .data_xfer
= ata_data_xfer
,
657 .irq_handler
= ata_interrupt
,
658 .irq_clear
= ata_bmdma_irq_clear
,
659 .irq_on
= ata_irq_on
,
660 .irq_ack
= ata_irq_ack
,
662 .port_start
= ata_port_start
,
665 static const struct ata_port_operations sis_old_ops
= {
666 .port_disable
= ata_port_disable
,
667 .set_piomode
= sis_old_set_piomode
,
668 .set_dmamode
= sis_old_set_dmamode
,
669 .mode_filter
= ata_pci_default_filter
,
671 .tf_load
= ata_tf_load
,
672 .tf_read
= ata_tf_read
,
673 .check_status
= ata_check_status
,
674 .exec_command
= ata_exec_command
,
675 .dev_select
= ata_std_dev_select
,
677 .freeze
= ata_bmdma_freeze
,
678 .thaw
= ata_bmdma_thaw
,
679 .error_handler
= sis_error_handler
,
680 .post_internal_cmd
= ata_bmdma_post_internal_cmd
,
681 .cable_detect
= ata_cable_40wire
,
683 .bmdma_setup
= ata_bmdma_setup
,
684 .bmdma_start
= ata_bmdma_start
,
685 .bmdma_stop
= ata_bmdma_stop
,
686 .bmdma_status
= ata_bmdma_status
,
687 .qc_prep
= ata_qc_prep
,
688 .qc_issue
= ata_qc_issue_prot
,
689 .data_xfer
= ata_data_xfer
,
691 .irq_handler
= ata_interrupt
,
692 .irq_clear
= ata_bmdma_irq_clear
,
693 .irq_on
= ata_irq_on
,
694 .irq_ack
= ata_irq_ack
,
696 .port_start
= ata_port_start
,
699 static struct ata_port_info sis_info
= {
701 .flags
= ATA_FLAG_SLAVE_POSS
| ATA_FLAG_SRST
,
702 .pio_mask
= 0x1f, /* pio0-4 */
705 .port_ops
= &sis_old_ops
,
707 static struct ata_port_info sis_info33
= {
709 .flags
= ATA_FLAG_SLAVE_POSS
| ATA_FLAG_SRST
,
710 .pio_mask
= 0x1f, /* pio0-4 */
712 .udma_mask
= ATA_UDMA2
, /* UDMA 33 */
713 .port_ops
= &sis_old_ops
,
715 static struct ata_port_info sis_info66
= {
717 .flags
= ATA_FLAG_SLAVE_POSS
| ATA_FLAG_SRST
,
718 .pio_mask
= 0x1f, /* pio0-4 */
719 .udma_mask
= ATA_UDMA4
, /* UDMA 66 */
720 .port_ops
= &sis_66_ops
,
722 static struct ata_port_info sis_info100
= {
724 .flags
= ATA_FLAG_SLAVE_POSS
| ATA_FLAG_SRST
,
725 .pio_mask
= 0x1f, /* pio0-4 */
726 .udma_mask
= ATA_UDMA5
,
727 .port_ops
= &sis_100_ops
,
729 static struct ata_port_info sis_info100_early
= {
731 .flags
= ATA_FLAG_SLAVE_POSS
| ATA_FLAG_SRST
,
732 .udma_mask
= ATA_UDMA5
,
733 .pio_mask
= 0x1f, /* pio0-4 */
734 .port_ops
= &sis_66_ops
,
736 struct ata_port_info sis_info133
= {
738 .flags
= ATA_FLAG_SLAVE_POSS
| ATA_FLAG_SRST
,
739 .pio_mask
= 0x1f, /* pio0-4 */
740 .udma_mask
= ATA_UDMA6
,
741 .port_ops
= &sis_133_ops
,
743 static struct ata_port_info sis_info133_early
= {
745 .flags
= ATA_FLAG_SLAVE_POSS
| ATA_FLAG_SRST
,
746 .pio_mask
= 0x1f, /* pio0-4 */
747 .udma_mask
= ATA_UDMA6
,
748 .port_ops
= &sis_133_early_ops
,
751 /* Privately shared with the SiS180 SATA driver, not for use elsewhere */
752 EXPORT_SYMBOL_GPL(sis_info133
);
754 static void sis_fixup(struct pci_dev
*pdev
, struct sis_chipset
*sis
)
759 if (sis
->info
== &sis_info133
) {
760 pci_read_config_word(pdev
, 0x50, ®w
);
762 pci_write_config_word(pdev
, 0x50, regw
& ~0x08);
763 pci_read_config_word(pdev
, 0x52, ®w
);
765 pci_write_config_word(pdev
, 0x52, regw
& ~0x08);
769 if (sis
->info
== &sis_info133_early
|| sis
->info
== &sis_info100
) {
771 pci_write_config_byte(pdev
, PCI_LATENCY_TIMER
, 0x80);
772 /* Set compatibility bit */
773 pci_read_config_byte(pdev
, 0x49, ®
);
775 pci_write_config_byte(pdev
, 0x49, reg
| 0x01);
779 if (sis
->info
== &sis_info66
|| sis
->info
== &sis_info100_early
) {
781 pci_write_config_byte(pdev
, PCI_LATENCY_TIMER
, 0x80);
782 /* Set compatibility bit */
783 pci_read_config_byte(pdev
, 0x52, ®
);
785 pci_write_config_byte(pdev
, 0x52, reg
| 0x04);
789 if (sis
->info
== &sis_info33
) {
790 pci_read_config_byte(pdev
, PCI_CLASS_PROG
, ®
);
791 if (( reg
& 0x0F ) != 0x00)
792 pci_write_config_byte(pdev
, PCI_CLASS_PROG
, reg
& 0xF0);
793 /* Fall through to ATA16 fixup below */
796 if (sis
->info
== &sis_info
|| sis
->info
== &sis_info33
) {
797 /* force per drive recovery and active timings
798 needed on ATA_33 and below chips */
799 pci_read_config_byte(pdev
, 0x52, ®
);
801 pci_write_config_byte(pdev
, 0x52, reg
|0x08);
809 * sis_init_one - Register SiS ATA PCI device with kernel services
810 * @pdev: PCI device to register
811 * @ent: Entry in sis_pci_tbl matching with @pdev
813 * Called from kernel PCI layer. We probe for combined mode (sigh),
814 * and then hand over control to libata, for it to do the rest.
817 * Inherited from PCI layer (may sleep).
820 * Zero on success, or -ERRNO value.
823 static int sis_init_one (struct pci_dev
*pdev
, const struct pci_device_id
*ent
)
825 static int printed_version
;
826 static struct ata_port_info
*port_info
[2];
827 struct ata_port_info
*port
;
828 struct pci_dev
*host
= NULL
;
829 struct sis_chipset
*chipset
= NULL
;
830 struct sis_chipset
*sets
;
832 static struct sis_chipset sis_chipsets
[] = {
834 { 0x0968, &sis_info133
},
835 { 0x0966, &sis_info133
},
836 { 0x0965, &sis_info133
},
837 { 0x0745, &sis_info100
},
838 { 0x0735, &sis_info100
},
839 { 0x0733, &sis_info100
},
840 { 0x0635, &sis_info100
},
841 { 0x0633, &sis_info100
},
843 { 0x0730, &sis_info100_early
}, /* 100 with ATA 66 layout */
844 { 0x0550, &sis_info100_early
}, /* 100 with ATA 66 layout */
846 { 0x0640, &sis_info66
},
847 { 0x0630, &sis_info66
},
848 { 0x0620, &sis_info66
},
849 { 0x0540, &sis_info66
},
850 { 0x0530, &sis_info66
},
852 { 0x5600, &sis_info33
},
853 { 0x5598, &sis_info33
},
854 { 0x5597, &sis_info33
},
855 { 0x5591, &sis_info33
},
856 { 0x5582, &sis_info33
},
857 { 0x5581, &sis_info33
},
859 { 0x5596, &sis_info
},
860 { 0x5571, &sis_info
},
861 { 0x5517, &sis_info
},
862 { 0x5511, &sis_info
},
866 static struct sis_chipset sis133_early
= {
867 0x0, &sis_info133_early
869 static struct sis_chipset sis133
= {
872 static struct sis_chipset sis100_early
= {
873 0x0, &sis_info100_early
875 static struct sis_chipset sis100
= {
879 if (!printed_version
++)
880 dev_printk(KERN_DEBUG
, &pdev
->dev
,
881 "version " DRV_VERSION
"\n");
883 /* We have to find the bridge first */
885 for (sets
= &sis_chipsets
[0]; sets
->device
; sets
++) {
886 host
= pci_get_device(PCI_VENDOR_ID_SI
, sets
->device
, NULL
);
888 chipset
= sets
; /* Match found */
889 if (sets
->device
== 0x630) { /* SIS630 */
891 pci_read_config_byte(host
, PCI_REVISION_ID
, &host_rev
);
892 if (host_rev
>= 0x30) /* 630 ET */
893 chipset
= &sis100_early
;
899 /* Look for concealed bridges */
900 if (chipset
== NULL
) {
905 /* Disable ID masking and register remapping then
906 see what the real ID is */
908 pci_read_config_dword(pdev
, 0x54, &idemisc
);
909 pci_write_config_dword(pdev
, 0x54, idemisc
& 0x7fffffff);
910 pci_read_config_word(pdev
, PCI_DEVICE_ID
, &trueid
);
911 pci_write_config_dword(pdev
, 0x54, idemisc
);
914 case 0x5518: /* SIS 962/963 */
916 if ((idemisc
& 0x40000000) == 0) {
917 pci_write_config_dword(pdev
, 0x54, idemisc
| 0x40000000);
918 printk(KERN_INFO
"SIS5513: Switching to 5513 register mapping\n");
921 case 0x0180: /* SIS 965/965L */
924 case 0x1180: /* SIS 966/966L */
931 if (chipset
== NULL
) {
932 struct pci_dev
*lpc_bridge
;
938 /* Try the second unmasking technique */
939 pci_read_config_byte(pdev
, 0x4a, &idecfg
);
940 pci_write_config_byte(pdev
, 0x4a, idecfg
| 0x10);
941 pci_read_config_word(pdev
, PCI_DEVICE_ID
, &trueid
);
942 pci_write_config_byte(pdev
, 0x4a, idecfg
);
946 lpc_bridge
= pci_get_slot(pdev
->bus
, 0x10); /* Bus 0 Dev 2 Fn 0 */
947 if (lpc_bridge
== NULL
)
949 pci_read_config_byte(lpc_bridge
, PCI_REVISION_ID
, &sbrev
);
950 pci_read_config_byte(pdev
, 0x49, &prefctl
);
951 pci_dev_put(lpc_bridge
);
953 if (sbrev
== 0x10 && (prefctl
& 0x80)) {
954 chipset
= &sis133_early
;
963 /* No chipset info, no support */
967 port
= chipset
->info
;
968 port
->private_data
= chipset
;
970 sis_fixup(pdev
, chipset
);
972 port_info
[0] = port_info
[1] = port
;
973 return ata_pci_init_one(pdev
, port_info
, 2);
976 static const struct pci_device_id sis_pci_tbl
[] = {
977 { PCI_VDEVICE(SI
, 0x5513), }, /* SiS 5513 */
978 { PCI_VDEVICE(SI
, 0x5518), }, /* SiS 5518 */
983 static struct pci_driver sis_pci_driver
= {
985 .id_table
= sis_pci_tbl
,
986 .probe
= sis_init_one
,
987 .remove
= ata_pci_remove_one
,
989 .suspend
= ata_pci_device_suspend
,
990 .resume
= ata_pci_device_resume
,
994 static int __init
sis_init(void)
996 return pci_register_driver(&sis_pci_driver
);
999 static void __exit
sis_exit(void)
1001 pci_unregister_driver(&sis_pci_driver
);
1004 module_init(sis_init
);
1005 module_exit(sis_exit
);
1007 MODULE_AUTHOR("Alan Cox");
1008 MODULE_DESCRIPTION("SCSI low-level driver for SiS ATA");
1009 MODULE_LICENSE("GPL");
1010 MODULE_DEVICE_TABLE(pci
, sis_pci_tbl
);
1011 MODULE_VERSION(DRV_VERSION
);