blob: 560103d55b2e9a09e784ea6882fc0d0fc5e7149a [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>
5 *
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>
18 *
19 *
20 * TODO
21 * Check MWDMA on drives that don't support MWDMA speed pio cycles ?
22 * More Testing
23 */
24
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>
Adrian Bunk77a527e2007-01-30 00:59:17 -080035#include "libata.h"
Jeff Garzik669a5db2006-08-29 18:12:40 -040036
Jeff Garzikfda0efc2007-01-31 07:43:15 -050037#undef DRV_NAME /* already defined in libata.h, for libata-core */
Jeff Garzik669a5db2006-08-29 18:12:40 -040038#define DRV_NAME "pata_sis"
Alan62d64ae2006-11-27 16:27:20 +000039#define DRV_VERSION "0.4.5"
Jeff Garzik669a5db2006-08-29 18:12:40 -040040
41struct sis_chipset {
42 u16 device; /* PCI host ID */
43 struct ata_port_info *info; /* Info block */
44 /* 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 */
57 /* end marker */
58 { 0, }
59};
60
61static int sis_short_ata40(struct pci_dev *dev)
62{
63 const struct sis_laptop *lap = &sis_laptop[0];
64
65 while (lap->device) {
66 if (lap->device == dev->device &&
67 lap->subvendor == dev->subsystem_vendor &&
68 lap->subdevice == dev->subsystem_device)
69 return 1;
70 lap++;
71 }
72
73 return 0;
74}
75
Jeff Garzik669a5db2006-08-29 18:12:40 -040076/**
77 * sis_port_base - return PCI configuration base for dev
78 * @adev: device
79 *
80 * Returns the base of the PCI configuration registers for this port
81 * number.
82 */
83
84static int sis_port_base(struct ata_device *adev)
85{
86 return 0x40 + (4 * adev->ap->port_no) + (2 * adev->devno);
87}
88
89/**
90 * sis_133_pre_reset - check for 40/80 pin
91 * @ap: Port
92 *
93 * Perform cable detection for the later UDMA133 capable
94 * SiS chipset.
95 */
96
97static int sis_133_pre_reset(struct ata_port *ap)
98{
99 static const struct pci_bits sis_enable_bits[] = {
100 { 0x4aU, 1U, 0x02UL, 0x02UL }, /* port 0 */
101 { 0x4aU, 1U, 0x04UL, 0x04UL }, /* port 1 */
102 };
Jeff Garzik85cd7252006-08-31 00:03:49 -0400103
Jeff Garzik669a5db2006-08-29 18:12:40 -0400104 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
105 u16 tmp;
106
Alan Coxc9619222006-09-26 17:53:38 +0100107 if (!pci_test_config_bits(pdev, &sis_enable_bits[ap->port_no]))
108 return -ENOENT;
109
Jeff Garzik669a5db2006-08-29 18:12:40 -0400110 /* The top bit of this register is the cable detect bit */
111 pci_read_config_word(pdev, 0x50 + 2 * ap->port_no, &tmp);
Jakub W. Jozwicki J7dcbc1f2007-01-09 09:01:19 +0900112 if ((tmp & 0x8000) && !sis_short_ata40(pdev))
Jeff Garzik669a5db2006-08-29 18:12:40 -0400113 ap->cbl = ATA_CBL_PATA40;
114 else
115 ap->cbl = ATA_CBL_PATA80;
116
117 return ata_std_prereset(ap);
118}
119
120/**
121 * sis_error_handler - Probe specified port on PATA host controller
122 * @ap: Port to probe
123 *
124 * LOCKING:
125 * None (inherited from caller).
126 */
127
128static void sis_133_error_handler(struct ata_port *ap)
129{
130 ata_bmdma_drive_eh(ap, sis_133_pre_reset, ata_std_softreset, NULL, ata_std_postreset);
131}
132
133
134/**
135 * sis_66_pre_reset - check for 40/80 pin
136 * @ap: Port
137 *
138 * Perform cable detection on the UDMA66, UDMA100 and early UDMA133
139 * SiS IDE controllers.
140 */
141
142static int sis_66_pre_reset(struct ata_port *ap)
143{
144 static const struct pci_bits sis_enable_bits[] = {
145 { 0x4aU, 1U, 0x02UL, 0x02UL }, /* port 0 */
146 { 0x4aU, 1U, 0x04UL, 0x04UL }, /* port 1 */
147 };
148
149 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
150 u8 tmp;
151
152 if (!pci_test_config_bits(pdev, &sis_enable_bits[ap->port_no])) {
153 ata_port_disable(ap);
154 printk(KERN_INFO "ata%u: port disabled. ignoring.\n", ap->id);
155 return 0;
156 }
157 /* Older chips keep cable detect in bits 4/5 of reg 0x48 */
158 pci_read_config_byte(pdev, 0x48, &tmp);
159 tmp >>= ap->port_no;
Jakub W. Jozwicki J7dcbc1f2007-01-09 09:01:19 +0900160 if ((tmp & 0x10) && !sis_short_ata40(pdev))
Jeff Garzik669a5db2006-08-29 18:12:40 -0400161 ap->cbl = ATA_CBL_PATA40;
162 else
163 ap->cbl = ATA_CBL_PATA80;
164
165 return ata_std_prereset(ap);
166}
167
168/**
169 * sis_66_error_handler - Probe specified port on PATA host controller
170 * @ap: Port to probe
171 * @classes:
172 *
173 * LOCKING:
174 * None (inherited from caller).
175 */
176
177static void sis_66_error_handler(struct ata_port *ap)
178{
179 ata_bmdma_drive_eh(ap, sis_66_pre_reset, ata_std_softreset, NULL, ata_std_postreset);
180}
181
182/**
183 * sis_old_pre_reset - probe begin
184 * @ap: ATA port
185 *
186 * Set up cable type and use generic probe init
187 */
188
189static int sis_old_pre_reset(struct ata_port *ap)
190{
191 static const struct pci_bits sis_enable_bits[] = {
192 { 0x4aU, 1U, 0x02UL, 0x02UL }, /* port 0 */
193 { 0x4aU, 1U, 0x04UL, 0x04UL }, /* port 1 */
194 };
Jeff Garzik85cd7252006-08-31 00:03:49 -0400195
Jeff Garzik669a5db2006-08-29 18:12:40 -0400196 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
197
198 if (!pci_test_config_bits(pdev, &sis_enable_bits[ap->port_no])) {
199 ata_port_disable(ap);
200 printk(KERN_INFO "ata%u: port disabled. ignoring.\n", ap->id);
201 return 0;
202 }
203 ap->cbl = ATA_CBL_PATA40;
204 return ata_std_prereset(ap);
205}
206
207
208/**
209 * sis_old_error_handler - Probe specified port on PATA host controller
210 * @ap: Port to probe
211 *
212 * LOCKING:
213 * None (inherited from caller).
214 */
215
216static void sis_old_error_handler(struct ata_port *ap)
217{
218 ata_bmdma_drive_eh(ap, sis_old_pre_reset, ata_std_softreset, NULL, ata_std_postreset);
219}
220
221/**
222 * sis_set_fifo - Set RWP fifo bits for this device
223 * @ap: Port
224 * @adev: Device
225 *
226 * SIS chipsets implement prefetch/postwrite bits for each device
227 * on both channels. This functionality is not ATAPI compatible and
228 * must be configured according to the class of device present
229 */
230
231static void sis_set_fifo(struct ata_port *ap, struct ata_device *adev)
232{
233 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
234 u8 fifoctrl;
235 u8 mask = 0x11;
236
237 mask <<= (2 * ap->port_no);
238 mask <<= adev->devno;
239
240 /* This holds various bits including the FIFO control */
241 pci_read_config_byte(pdev, 0x4B, &fifoctrl);
242 fifoctrl &= ~mask;
243
244 /* Enable for ATA (disk) only */
245 if (adev->class == ATA_DEV_ATA)
246 fifoctrl |= mask;
247 pci_write_config_byte(pdev, 0x4B, fifoctrl);
248}
249
250/**
251 * sis_old_set_piomode - Initialize host controller PATA PIO timings
252 * @ap: Port whose timings we are configuring
253 * @adev: Device we are configuring for.
254 *
255 * Set PIO mode for device, in host controller PCI config space. This
256 * function handles PIO set up for all chips that are pre ATA100 and
257 * also early ATA100 devices.
258 *
259 * LOCKING:
260 * None (inherited from caller).
261 */
262
263static void sis_old_set_piomode (struct ata_port *ap, struct ata_device *adev)
264{
265 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
266 int port = sis_port_base(adev);
267 u8 t1, t2;
268 int speed = adev->pio_mode - XFER_PIO_0;
269
270 const u8 active[] = { 0x00, 0x07, 0x04, 0x03, 0x01 };
271 const u8 recovery[] = { 0x00, 0x06, 0x04, 0x03, 0x03 };
272
273 sis_set_fifo(ap, adev);
274
275 pci_read_config_byte(pdev, port, &t1);
276 pci_read_config_byte(pdev, port + 1, &t2);
277
278 t1 &= ~0x0F; /* Clear active/recovery timings */
279 t2 &= ~0x07;
280
281 t1 |= active[speed];
282 t2 |= recovery[speed];
283
284 pci_write_config_byte(pdev, port, t1);
285 pci_write_config_byte(pdev, port + 1, t2);
286}
287
288/**
289 * sis_100_set_pioode - Initialize host controller PATA PIO timings
290 * @ap: Port whose timings we are configuring
291 * @adev: Device we are configuring for.
292 *
293 * Set PIO mode for device, in host controller PCI config space. This
294 * function handles PIO set up for ATA100 devices and early ATA133.
295 *
296 * LOCKING:
297 * None (inherited from caller).
298 */
299
300static void sis_100_set_piomode (struct ata_port *ap, struct ata_device *adev)
301{
302 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
303 int port = sis_port_base(adev);
304 int speed = adev->pio_mode - XFER_PIO_0;
305
306 const u8 actrec[] = { 0x00, 0x67, 0x44, 0x33, 0x31 };
307
308 sis_set_fifo(ap, adev);
309
310 pci_write_config_byte(pdev, port, actrec[speed]);
311}
312
313/**
314 * sis_133_set_pioode - Initialize host controller PATA PIO timings
315 * @ap: Port whose timings we are configuring
316 * @adev: Device we are configuring for.
317 *
318 * Set PIO mode for device, in host controller PCI config space. This
319 * function handles PIO set up for the later ATA133 devices.
320 *
321 * LOCKING:
322 * None (inherited from caller).
323 */
324
325static void sis_133_set_piomode (struct ata_port *ap, struct ata_device *adev)
326{
327 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
328 int port = 0x40;
329 u32 t1;
330 u32 reg54;
331 int speed = adev->pio_mode - XFER_PIO_0;
332
333 const u32 timing133[] = {
334 0x28269000, /* Recovery << 24 | Act << 16 | Ini << 12 */
335 0x0C266000,
336 0x04263000,
337 0x0C0A3000,
338 0x05093000
339 };
340 const u32 timing100[] = {
341 0x1E1C6000, /* Recovery << 24 | Act << 16 | Ini << 12 */
342 0x091C4000,
343 0x031C2000,
344 0x09072000,
345 0x04062000
346 };
347
348 sis_set_fifo(ap, adev);
349
350 /* If bit 14 is set then the registers are mapped at 0x70 not 0x40 */
351 pci_read_config_dword(pdev, 0x54, &reg54);
352 if (reg54 & 0x40000000)
353 port = 0x70;
354 port += 8 * ap->port_no + 4 * adev->devno;
355
356 pci_read_config_dword(pdev, port, &t1);
357 t1 &= 0xC0C00FFF; /* Mask out timing */
358
359 if (t1 & 0x08) /* 100 or 133 ? */
360 t1 |= timing133[speed];
361 else
362 t1 |= timing100[speed];
363 pci_write_config_byte(pdev, port, t1);
364}
365
366/**
367 * sis_old_set_dmamode - Initialize host controller PATA DMA timings
368 * @ap: Port whose timings we are configuring
369 * @adev: Device to program
370 *
371 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
372 * Handles pre UDMA and UDMA33 devices. Supports MWDMA as well unlike
373 * the old ide/pci driver.
374 *
375 * LOCKING:
376 * None (inherited from caller).
377 */
378
379static void sis_old_set_dmamode (struct ata_port *ap, struct ata_device *adev)
380{
381 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
382 int speed = adev->dma_mode - XFER_MW_DMA_0;
383 int drive_pci = sis_port_base(adev);
384 u16 timing;
385
386 const u16 mwdma_bits[] = { 0x707, 0x202, 0x202 };
387 const u16 udma_bits[] = { 0xE000, 0xC000, 0xA000 };
388
389 pci_read_config_word(pdev, drive_pci, &timing);
390
391 if (adev->dma_mode < XFER_UDMA_0) {
392 /* bits 3-0 hold recovery timing bits 8-10 active timing and
393 the higer bits are dependant on the device */
394 timing &= ~ 0x870F;
395 timing |= mwdma_bits[speed];
396 pci_write_config_word(pdev, drive_pci, timing);
397 } else {
398 /* Bit 15 is UDMA on/off, bit 13-14 are cycle time */
399 speed = adev->dma_mode - XFER_UDMA_0;
400 timing &= ~0x6000;
401 timing |= udma_bits[speed];
402 }
403}
404
405/**
406 * sis_66_set_dmamode - Initialize host controller PATA DMA timings
407 * @ap: Port whose timings we are configuring
408 * @adev: Device to program
409 *
410 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
411 * Handles UDMA66 and early UDMA100 devices. Supports MWDMA as well unlike
412 * the old ide/pci driver.
413 *
414 * LOCKING:
415 * None (inherited from caller).
416 */
417
418static void sis_66_set_dmamode (struct ata_port *ap, struct ata_device *adev)
419{
420 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
421 int speed = adev->dma_mode - XFER_MW_DMA_0;
422 int drive_pci = sis_port_base(adev);
423 u16 timing;
424
425 const u16 mwdma_bits[] = { 0x707, 0x202, 0x202 };
426 const u16 udma_bits[] = { 0xF000, 0xD000, 0xB000, 0xA000, 0x9000};
427
428 pci_read_config_word(pdev, drive_pci, &timing);
429
430 if (adev->dma_mode < XFER_UDMA_0) {
431 /* bits 3-0 hold recovery timing bits 8-10 active timing and
432 the higer bits are dependant on the device, bit 15 udma */
433 timing &= ~ 0x870F;
434 timing |= mwdma_bits[speed];
435 } else {
436 /* Bit 15 is UDMA on/off, bit 12-14 are cycle time */
437 speed = adev->dma_mode - XFER_UDMA_0;
438 timing &= ~0x6000;
439 timing |= udma_bits[speed];
440 }
441 pci_write_config_word(pdev, drive_pci, timing);
442}
443
444/**
445 * sis_100_set_dmamode - Initialize host controller PATA DMA timings
446 * @ap: Port whose timings we are configuring
447 * @adev: Device to program
448 *
449 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
450 * Handles UDMA66 and early UDMA100 devices.
451 *
452 * LOCKING:
453 * None (inherited from caller).
454 */
455
456static void sis_100_set_dmamode (struct ata_port *ap, struct ata_device *adev)
457{
458 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
459 int speed = adev->dma_mode - XFER_MW_DMA_0;
460 int drive_pci = sis_port_base(adev);
461 u16 timing;
462
463 const u16 udma_bits[] = { 0x8B00, 0x8700, 0x8500, 0x8300, 0x8200, 0x8100};
464
465 pci_read_config_word(pdev, drive_pci, &timing);
466
467 if (adev->dma_mode < XFER_UDMA_0) {
468 /* NOT SUPPORTED YET: NEED DATA SHEET. DITTO IN OLD DRIVER */
469 } else {
470 /* Bit 15 is UDMA on/off, bit 12-14 are cycle time */
471 speed = adev->dma_mode - XFER_UDMA_0;
472 timing &= ~0x0F00;
473 timing |= udma_bits[speed];
474 }
475 pci_write_config_word(pdev, drive_pci, timing);
476}
477
478/**
479 * sis_133_early_set_dmamode - Initialize host controller PATA DMA timings
480 * @ap: Port whose timings we are configuring
481 * @adev: Device to program
482 *
483 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
484 * Handles early SiS 961 bridges. Supports MWDMA as well unlike
485 * the old ide/pci driver.
486 *
487 * LOCKING:
488 * None (inherited from caller).
489 */
490
491static void sis_133_early_set_dmamode (struct ata_port *ap, struct ata_device *adev)
492{
493 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
494 int speed = adev->dma_mode - XFER_MW_DMA_0;
495 int drive_pci = sis_port_base(adev);
496 u16 timing;
497
498 const u16 udma_bits[] = { 0x8F00, 0x8A00, 0x8700, 0x8500, 0x8300, 0x8200, 0x8100};
499
500 pci_read_config_word(pdev, drive_pci, &timing);
501
502 if (adev->dma_mode < XFER_UDMA_0) {
503 /* NOT SUPPORTED YET: NEED DATA SHEET. DITTO IN OLD DRIVER */
504 } else {
505 /* Bit 15 is UDMA on/off, bit 12-14 are cycle time */
506 speed = adev->dma_mode - XFER_UDMA_0;
507 timing &= ~0x0F00;
508 timing |= udma_bits[speed];
509 }
510 pci_write_config_word(pdev, drive_pci, timing);
511}
512
513/**
514 * sis_133_set_dmamode - Initialize host controller PATA DMA timings
515 * @ap: Port whose timings we are configuring
516 * @adev: Device to program
517 *
518 * Set UDMA/MWDMA mode for device, in host controller PCI config space.
519 * Handles early SiS 961 bridges. Supports MWDMA as well unlike
520 * the old ide/pci driver.
521 *
522 * LOCKING:
523 * None (inherited from caller).
524 */
525
526static void sis_133_set_dmamode (struct ata_port *ap, struct ata_device *adev)
527{
528 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
529 int speed = adev->dma_mode - XFER_MW_DMA_0;
530 int port = 0x40;
531 u32 t1;
532 u32 reg54;
533
534 /* bits 4- cycle time 8 - cvs time */
535 const u32 timing_u100[] = { 0x6B0, 0x470, 0x350, 0x140, 0x120, 0x110, 0x000 };
536 const u32 timing_u133[] = { 0x9F0, 0x6A0, 0x470, 0x250, 0x230, 0x220, 0x210 };
537
538 /* If bit 14 is set then the registers are mapped at 0x70 not 0x40 */
539 pci_read_config_dword(pdev, 0x54, &reg54);
540 if (reg54 & 0x40000000)
541 port = 0x70;
542 port += (8 * ap->port_no) + (4 * adev->devno);
543
544 pci_read_config_dword(pdev, port, &t1);
545
546 if (adev->dma_mode < XFER_UDMA_0) {
547 t1 &= ~0x00000004;
548 /* FIXME: need data sheet to add MWDMA here. Also lacking on
549 ide/pci driver */
550 } else {
551 speed = adev->dma_mode - XFER_UDMA_0;
552 /* if & 8 no UDMA133 - need info for ... */
553 t1 &= ~0x00000FF0;
554 t1 |= 0x00000004;
555 if (t1 & 0x08)
556 t1 |= timing_u133[speed];
557 else
558 t1 |= timing_u100[speed];
559 }
560 pci_write_config_dword(pdev, port, t1);
561}
562
563static struct scsi_host_template sis_sht = {
564 .module = THIS_MODULE,
565 .name = DRV_NAME,
566 .ioctl = ata_scsi_ioctl,
567 .queuecommand = ata_scsi_queuecmd,
568 .can_queue = ATA_DEF_QUEUE,
569 .this_id = ATA_SHT_THIS_ID,
570 .sg_tablesize = LIBATA_MAX_PRD,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400571 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
572 .emulated = ATA_SHT_EMULATED,
573 .use_clustering = ATA_SHT_USE_CLUSTERING,
574 .proc_name = DRV_NAME,
575 .dma_boundary = ATA_DMA_BOUNDARY,
576 .slave_configure = ata_scsi_slave_config,
Tejun Heoafdfe892006-11-29 11:26:47 +0900577 .slave_destroy = ata_scsi_slave_destroy,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400578 .bios_param = ata_std_bios_param,
Alan62d64ae2006-11-27 16:27:20 +0000579 .resume = ata_scsi_device_resume,
580 .suspend = ata_scsi_device_suspend,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400581};
582
583static const struct ata_port_operations sis_133_ops = {
584 .port_disable = ata_port_disable,
585 .set_piomode = sis_133_set_piomode,
586 .set_dmamode = sis_133_set_dmamode,
587 .mode_filter = ata_pci_default_filter,
588
589 .tf_load = ata_tf_load,
590 .tf_read = ata_tf_read,
591 .check_status = ata_check_status,
592 .exec_command = ata_exec_command,
593 .dev_select = ata_std_dev_select,
594
595 .freeze = ata_bmdma_freeze,
596 .thaw = ata_bmdma_thaw,
597 .error_handler = sis_133_error_handler,
598 .post_internal_cmd = ata_bmdma_post_internal_cmd,
599
600 .bmdma_setup = ata_bmdma_setup,
601 .bmdma_start = ata_bmdma_start,
602 .bmdma_stop = ata_bmdma_stop,
603 .bmdma_status = ata_bmdma_status,
604 .qc_prep = ata_qc_prep,
605 .qc_issue = ata_qc_issue_prot,
Tejun Heo0d5ff562007-02-01 15:06:36 +0900606 .data_xfer = ata_data_xfer,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400607
Jeff Garzik669a5db2006-08-29 18:12:40 -0400608 .irq_handler = ata_interrupt,
609 .irq_clear = ata_bmdma_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900610 .irq_on = ata_irq_on,
611 .irq_ack = ata_irq_ack,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400612
613 .port_start = ata_port_start,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400614};
615
616static const struct ata_port_operations sis_133_early_ops = {
617 .port_disable = ata_port_disable,
618 .set_piomode = sis_100_set_piomode,
619 .set_dmamode = sis_133_early_set_dmamode,
620 .mode_filter = ata_pci_default_filter,
621
622 .tf_load = ata_tf_load,
623 .tf_read = ata_tf_read,
624 .check_status = ata_check_status,
625 .exec_command = ata_exec_command,
626 .dev_select = ata_std_dev_select,
627
628 .freeze = ata_bmdma_freeze,
629 .thaw = ata_bmdma_thaw,
630 .error_handler = sis_66_error_handler,
631 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400632
Jeff Garzik669a5db2006-08-29 18:12:40 -0400633 .bmdma_setup = ata_bmdma_setup,
634 .bmdma_start = ata_bmdma_start,
635 .bmdma_stop = ata_bmdma_stop,
636 .bmdma_status = ata_bmdma_status,
637 .qc_prep = ata_qc_prep,
638 .qc_issue = ata_qc_issue_prot,
Tejun Heo0d5ff562007-02-01 15:06:36 +0900639 .data_xfer = ata_data_xfer,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400640
Jeff Garzik669a5db2006-08-29 18:12:40 -0400641 .irq_handler = ata_interrupt,
642 .irq_clear = ata_bmdma_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900643 .irq_on = ata_irq_on,
644 .irq_ack = ata_irq_ack,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400645
646 .port_start = ata_port_start,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400647};
648
649static const struct ata_port_operations sis_100_ops = {
650 .port_disable = ata_port_disable,
651 .set_piomode = sis_100_set_piomode,
652 .set_dmamode = sis_100_set_dmamode,
653 .mode_filter = ata_pci_default_filter,
654
655 .tf_load = ata_tf_load,
656 .tf_read = ata_tf_read,
657 .check_status = ata_check_status,
658 .exec_command = ata_exec_command,
659 .dev_select = ata_std_dev_select,
660
661 .freeze = ata_bmdma_freeze,
662 .thaw = ata_bmdma_thaw,
663 .error_handler = sis_66_error_handler,
664 .post_internal_cmd = ata_bmdma_post_internal_cmd,
Jeff Garzik85cd7252006-08-31 00:03:49 -0400665
Jeff Garzik669a5db2006-08-29 18:12:40 -0400666
667 .bmdma_setup = ata_bmdma_setup,
668 .bmdma_start = ata_bmdma_start,
669 .bmdma_stop = ata_bmdma_stop,
670 .bmdma_status = ata_bmdma_status,
671 .qc_prep = ata_qc_prep,
672 .qc_issue = ata_qc_issue_prot,
Tejun Heo0d5ff562007-02-01 15:06:36 +0900673 .data_xfer = ata_data_xfer,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400674
Jeff Garzik669a5db2006-08-29 18:12:40 -0400675 .irq_handler = ata_interrupt,
676 .irq_clear = ata_bmdma_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900677 .irq_on = ata_irq_on,
678 .irq_ack = ata_irq_ack,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400679
680 .port_start = ata_port_start,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400681};
682
683static const struct ata_port_operations sis_66_ops = {
684 .port_disable = ata_port_disable,
685 .set_piomode = sis_old_set_piomode,
686 .set_dmamode = sis_66_set_dmamode,
687 .mode_filter = ata_pci_default_filter,
688
689 .tf_load = ata_tf_load,
690 .tf_read = ata_tf_read,
691 .check_status = ata_check_status,
692 .exec_command = ata_exec_command,
693 .dev_select = ata_std_dev_select,
694
695 .freeze = ata_bmdma_freeze,
696 .thaw = ata_bmdma_thaw,
697 .error_handler = sis_66_error_handler,
698 .post_internal_cmd = ata_bmdma_post_internal_cmd,
699
700 .bmdma_setup = ata_bmdma_setup,
701 .bmdma_start = ata_bmdma_start,
702 .bmdma_stop = ata_bmdma_stop,
703 .bmdma_status = ata_bmdma_status,
704 .qc_prep = ata_qc_prep,
705 .qc_issue = ata_qc_issue_prot,
Tejun Heo0d5ff562007-02-01 15:06:36 +0900706 .data_xfer = ata_data_xfer,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400707
Jeff Garzik669a5db2006-08-29 18:12:40 -0400708 .irq_handler = ata_interrupt,
709 .irq_clear = ata_bmdma_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900710 .irq_on = ata_irq_on,
711 .irq_ack = ata_irq_ack,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400712
713 .port_start = ata_port_start,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400714};
715
716static const struct ata_port_operations sis_old_ops = {
717 .port_disable = ata_port_disable,
718 .set_piomode = sis_old_set_piomode,
719 .set_dmamode = sis_old_set_dmamode,
720 .mode_filter = ata_pci_default_filter,
721
722 .tf_load = ata_tf_load,
723 .tf_read = ata_tf_read,
724 .check_status = ata_check_status,
725 .exec_command = ata_exec_command,
726 .dev_select = ata_std_dev_select,
727
728 .freeze = ata_bmdma_freeze,
729 .thaw = ata_bmdma_thaw,
730 .error_handler = sis_old_error_handler,
731 .post_internal_cmd = ata_bmdma_post_internal_cmd,
732
733 .bmdma_setup = ata_bmdma_setup,
734 .bmdma_start = ata_bmdma_start,
735 .bmdma_stop = ata_bmdma_stop,
736 .bmdma_status = ata_bmdma_status,
737 .qc_prep = ata_qc_prep,
738 .qc_issue = ata_qc_issue_prot,
Tejun Heo0d5ff562007-02-01 15:06:36 +0900739 .data_xfer = ata_data_xfer,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400740
Jeff Garzik669a5db2006-08-29 18:12:40 -0400741 .irq_handler = ata_interrupt,
742 .irq_clear = ata_bmdma_irq_clear,
Akira Iguchi246ce3b2007-01-26 16:27:58 +0900743 .irq_on = ata_irq_on,
744 .irq_ack = ata_irq_ack,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400745
746 .port_start = ata_port_start,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400747};
748
749static struct ata_port_info sis_info = {
750 .sht = &sis_sht,
751 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
752 .pio_mask = 0x1f, /* pio0-4 */
753 .mwdma_mask = 0x07,
754 .udma_mask = 0,
755 .port_ops = &sis_old_ops,
756};
757static struct ata_port_info sis_info33 = {
758 .sht = &sis_sht,
759 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
760 .pio_mask = 0x1f, /* pio0-4 */
761 .mwdma_mask = 0x07,
762 .udma_mask = ATA_UDMA2, /* UDMA 33 */
763 .port_ops = &sis_old_ops,
764};
765static struct ata_port_info sis_info66 = {
766 .sht = &sis_sht,
767 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
768 .pio_mask = 0x1f, /* pio0-4 */
769 .udma_mask = ATA_UDMA4, /* UDMA 66 */
770 .port_ops = &sis_66_ops,
771};
772static struct ata_port_info sis_info100 = {
773 .sht = &sis_sht,
774 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
775 .pio_mask = 0x1f, /* pio0-4 */
776 .udma_mask = ATA_UDMA5,
777 .port_ops = &sis_100_ops,
778};
779static struct ata_port_info sis_info100_early = {
780 .sht = &sis_sht,
781 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
782 .udma_mask = ATA_UDMA5,
783 .pio_mask = 0x1f, /* pio0-4 */
784 .port_ops = &sis_66_ops,
785};
Adrian Bunk77a527e2007-01-30 00:59:17 -0800786struct ata_port_info sis_info133 = {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400787 .sht = &sis_sht,
788 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
789 .pio_mask = 0x1f, /* pio0-4 */
790 .udma_mask = ATA_UDMA6,
791 .port_ops = &sis_133_ops,
792};
793static struct ata_port_info sis_info133_early = {
794 .sht = &sis_sht,
795 .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
796 .pio_mask = 0x1f, /* pio0-4 */
797 .udma_mask = ATA_UDMA6,
798 .port_ops = &sis_133_early_ops,
799};
800
Alan9b14dec2007-01-08 16:11:07 +0000801/* Privately shared with the SiS180 SATA driver, not for use elsewhere */
802EXPORT_SYMBOL_GPL(sis_info133);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400803
804static void sis_fixup(struct pci_dev *pdev, struct sis_chipset *sis)
805{
806 u16 regw;
807 u8 reg;
808
809 if (sis->info == &sis_info133) {
810 pci_read_config_word(pdev, 0x50, &regw);
811 if (regw & 0x08)
812 pci_write_config_word(pdev, 0x50, regw & ~0x08);
813 pci_read_config_word(pdev, 0x52, &regw);
814 if (regw & 0x08)
815 pci_write_config_word(pdev, 0x52, regw & ~0x08);
816 return;
817 }
818
819 if (sis->info == &sis_info133_early || sis->info == &sis_info100) {
820 /* Fix up latency */
821 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0x80);
822 /* Set compatibility bit */
823 pci_read_config_byte(pdev, 0x49, &reg);
824 if (!(reg & 0x01))
825 pci_write_config_byte(pdev, 0x49, reg | 0x01);
826 return;
827 }
828
829 if (sis->info == &sis_info66 || sis->info == &sis_info100_early) {
830 /* Fix up latency */
831 pci_write_config_byte(pdev, PCI_LATENCY_TIMER, 0x80);
832 /* Set compatibility bit */
833 pci_read_config_byte(pdev, 0x52, &reg);
834 if (!(reg & 0x04))
835 pci_write_config_byte(pdev, 0x52, reg | 0x04);
836 return;
837 }
838
839 if (sis->info == &sis_info33) {
840 pci_read_config_byte(pdev, PCI_CLASS_PROG, &reg);
841 if (( reg & 0x0F ) != 0x00)
842 pci_write_config_byte(pdev, PCI_CLASS_PROG, reg & 0xF0);
843 /* Fall through to ATA16 fixup below */
844 }
845
846 if (sis->info == &sis_info || sis->info == &sis_info33) {
847 /* force per drive recovery and active timings
848 needed on ATA_33 and below chips */
849 pci_read_config_byte(pdev, 0x52, &reg);
850 if (!(reg & 0x08))
851 pci_write_config_byte(pdev, 0x52, reg|0x08);
852 return;
853 }
854
855 BUG();
856}
857
858/**
859 * sis_init_one - Register SiS ATA PCI device with kernel services
860 * @pdev: PCI device to register
861 * @ent: Entry in sis_pci_tbl matching with @pdev
862 *
863 * Called from kernel PCI layer. We probe for combined mode (sigh),
864 * and then hand over control to libata, for it to do the rest.
865 *
866 * LOCKING:
867 * Inherited from PCI layer (may sleep).
868 *
869 * RETURNS:
870 * Zero on success, or -ERRNO value.
871 */
872
873static int sis_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
874{
875 static int printed_version;
876 static struct ata_port_info *port_info[2];
877 struct ata_port_info *port;
878 struct pci_dev *host = NULL;
879 struct sis_chipset *chipset = NULL;
880
881 static struct sis_chipset sis_chipsets[] = {
Jeff Garzikf20b16f2006-12-11 11:14:06 -0500882
Alan Coxaf323a22006-09-12 17:15:12 +0100883 { 0x0968, &sis_info133 },
884 { 0x0966, &sis_info133 },
885 { 0x0965, &sis_info133 },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400886 { 0x0745, &sis_info100 },
887 { 0x0735, &sis_info100 },
888 { 0x0733, &sis_info100 },
889 { 0x0635, &sis_info100 },
890 { 0x0633, &sis_info100 },
891
892 { 0x0730, &sis_info100_early }, /* 100 with ATA 66 layout */
893 { 0x0550, &sis_info100_early }, /* 100 with ATA 66 layout */
894
895 { 0x0640, &sis_info66 },
896 { 0x0630, &sis_info66 },
897 { 0x0620, &sis_info66 },
898 { 0x0540, &sis_info66 },
899 { 0x0530, &sis_info66 },
900
901 { 0x5600, &sis_info33 },
902 { 0x5598, &sis_info33 },
903 { 0x5597, &sis_info33 },
904 { 0x5591, &sis_info33 },
905 { 0x5582, &sis_info33 },
906 { 0x5581, &sis_info33 },
907
908 { 0x5596, &sis_info },
909 { 0x5571, &sis_info },
910 { 0x5517, &sis_info },
911 { 0x5511, &sis_info },
912
913 {0}
914 };
915 static struct sis_chipset sis133_early = {
916 0x0, &sis_info133_early
917 };
918 static struct sis_chipset sis133 = {
919 0x0, &sis_info133
920 };
921 static struct sis_chipset sis100_early = {
922 0x0, &sis_info100_early
923 };
924 static struct sis_chipset sis100 = {
925 0x0, &sis_info100
926 };
927
928 if (!printed_version++)
929 dev_printk(KERN_DEBUG, &pdev->dev,
930 "version " DRV_VERSION "\n");
931
932 /* We have to find the bridge first */
933
934 for (chipset = &sis_chipsets[0]; chipset->device; chipset++) {
935 host = pci_get_device(PCI_VENDOR_ID_SI, chipset->device, NULL);
936 if (host != NULL) {
937 if (chipset->device == 0x630) { /* SIS630 */
938 u8 host_rev;
939 pci_read_config_byte(host, PCI_REVISION_ID, &host_rev);
940 if (host_rev >= 0x30) /* 630 ET */
941 chipset = &sis100_early;
942 }
943 break;
944 }
945 }
946
947 /* Look for concealed bridges */
948 if (host == NULL) {
949 /* Second check */
950 u32 idemisc;
951 u16 trueid;
952
953 /* Disable ID masking and register remapping then
954 see what the real ID is */
955
956 pci_read_config_dword(pdev, 0x54, &idemisc);
957 pci_write_config_dword(pdev, 0x54, idemisc & 0x7fffffff);
958 pci_read_config_word(pdev, PCI_DEVICE_ID, &trueid);
959 pci_write_config_dword(pdev, 0x54, idemisc);
960
961 switch(trueid) {
962 case 0x5518: /* SIS 962/963 */
963 chipset = &sis133;
964 if ((idemisc & 0x40000000) == 0) {
965 pci_write_config_dword(pdev, 0x54, idemisc | 0x40000000);
966 printk(KERN_INFO "SIS5513: Switching to 5513 register mapping\n");
967 }
968 break;
969 case 0x0180: /* SIS 965/965L */
970 chipset = &sis133;
971 break;
972 case 0x1180: /* SIS 966/966L */
973 chipset = &sis133;
974 break;
975 }
976 }
977
978 /* Further check */
979 if (chipset == NULL) {
980 struct pci_dev *lpc_bridge;
981 u16 trueid;
982 u8 prefctl;
983 u8 idecfg;
984 u8 sbrev;
985
986 /* Try the second unmasking technique */
987 pci_read_config_byte(pdev, 0x4a, &idecfg);
988 pci_write_config_byte(pdev, 0x4a, idecfg | 0x10);
989 pci_read_config_word(pdev, PCI_DEVICE_ID, &trueid);
990 pci_write_config_byte(pdev, 0x4a, idecfg);
991
992 switch(trueid) {
993 case 0x5517:
994 lpc_bridge = pci_get_slot(pdev->bus, 0x10); /* Bus 0 Dev 2 Fn 0 */
995 if (lpc_bridge == NULL)
996 break;
997 pci_read_config_byte(lpc_bridge, PCI_REVISION_ID, &sbrev);
998 pci_read_config_byte(pdev, 0x49, &prefctl);
999 pci_dev_put(lpc_bridge);
1000
1001 if (sbrev == 0x10 && (prefctl & 0x80)) {
1002 chipset = &sis133_early;
1003 break;
1004 }
1005 chipset = &sis100;
1006 break;
1007 }
1008 }
1009 pci_dev_put(host);
1010
1011 /* No chipset info, no support */
1012 if (chipset == NULL)
1013 return -ENODEV;
1014
1015 port = chipset->info;
1016 port->private_data = chipset;
1017
1018 sis_fixup(pdev, chipset);
1019
1020 port_info[0] = port_info[1] = port;
1021 return ata_pci_init_one(pdev, port_info, 2);
1022}
1023
1024static const struct pci_device_id sis_pci_tbl[] = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -04001025 { PCI_VDEVICE(SI, 0x5513), }, /* SiS 5513 */
1026 { PCI_VDEVICE(SI, 0x5518), }, /* SiS 5518 */
1027
Jeff Garzik669a5db2006-08-29 18:12:40 -04001028 { }
1029};
1030
1031static struct pci_driver sis_pci_driver = {
1032 .name = DRV_NAME,
1033 .id_table = sis_pci_tbl,
1034 .probe = sis_init_one,
1035 .remove = ata_pci_remove_one,
Alan62d64ae2006-11-27 16:27:20 +00001036 .suspend = ata_pci_device_suspend,
1037 .resume = ata_pci_device_resume,
Jeff Garzik669a5db2006-08-29 18:12:40 -04001038};
1039
1040static int __init sis_init(void)
1041{
1042 return pci_register_driver(&sis_pci_driver);
1043}
1044
1045static void __exit sis_exit(void)
1046{
1047 pci_unregister_driver(&sis_pci_driver);
1048}
1049
Jeff Garzik669a5db2006-08-29 18:12:40 -04001050module_init(sis_init);
1051module_exit(sis_exit);
1052
1053MODULE_AUTHOR("Alan Cox");
1054MODULE_DESCRIPTION("SCSI low-level driver for SiS ATA");
1055MODULE_LICENSE("GPL");
1056MODULE_DEVICE_TABLE(pci, sis_pci_tbl);
1057MODULE_VERSION(DRV_VERSION);
1058