blob: d33abb9f6476b041f2ca8829362ba3c16d62278f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Bartlomiej Zolnierkiewicz4960ab72007-10-16 22:29:53 +02002 * linux/drivers/ide/pci/sis5513.c Version 0.29 Aug 1, 2007
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 1999-2000 Andre Hedrick <andre@linux-ide.org>
5 * Copyright (C) 2002 Lionel Bouton <Lionel.Bouton@inet6.fr>, Maintainer
6 * Copyright (C) 2003 Vojtech Pavlik <vojtech@suse.cz>
Bartlomiej Zolnierkiewicz6b8cf772007-05-16 00:51:42 +02007 * Copyright (C) 2007 Bartlomiej Zolnierkiewicz
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * May be copied or modified under the terms of the GNU General Public License
10 *
11 *
12 * Thanks :
13 *
14 * SiS Taiwan : for direct support and hardware.
15 * Daniela Engert : for initial ATA100 advices and numerous others.
16 * John Fremlin, Manfred Spraul, Dave Morgan, Peter Kjellerstedt :
17 * for checking code correctness, providing patches.
18 *
19 *
20 * Original tests and design on the SiS620 chipset.
21 * ATA100 tests and design on the SiS735 chipset.
22 * ATA16/33 support from specs
23 * ATA133 support for SiS961/962 by L.C. Chang <lcchang@sis.com.tw>
24 * ATA133 961/962/963 fixes by Vojtech Pavlik <vojtech@suse.cz>
25 *
26 * Documentation:
27 * SiS chipset documentation available under NDA to companies only
28 * (not to individuals).
29 */
30
31/*
32 * The original SiS5513 comes from a SiS5511/55112/5513 chipset. The original
33 * SiS5513 was also used in the SiS5596/5513 chipset. Thus if we see a SiS5511
34 * or SiS5596, we can assume we see the first MWDMA-16 capable SiS5513 chip.
35 *
36 * Later SiS chipsets integrated the 5513 functionality into the NorthBridge,
37 * starting with SiS5571 and up to SiS745. The PCI ID didn't change, though. We
38 * can figure out that we have a more modern and more capable 5513 by looking
39 * for the respective NorthBridge IDs.
40 *
41 * Even later (96x family) SiS chipsets use the MuTIOL link and place the 5513
42 * into the SouthBrige. Here we cannot rely on looking up the NorthBridge PCI
43 * ID, while the now ATA-133 capable 5513 still has the same PCI ID.
44 * Fortunately the 5513 can be 'unmasked' by fiddling with some config space
45 * bits, changing its device id to the true one - 5517 for 961 and 5518 for
46 * 962/963.
47 */
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/types.h>
50#include <linux/module.h>
51#include <linux/kernel.h>
52#include <linux/delay.h>
53#include <linux/timer.h>
54#include <linux/mm.h>
55#include <linux/ioport.h>
56#include <linux/blkdev.h>
57#include <linux/hdreg.h>
58
59#include <linux/interrupt.h>
60#include <linux/pci.h>
61#include <linux/init.h>
62#include <linux/ide.h>
63
64#include <asm/irq.h>
65
66#include "ide-timing.h"
67
68#define DISPLAY_SIS_TIMINGS
69
70/* registers layout and init values are chipset family dependant */
71
72#define ATA_16 0x01
73#define ATA_33 0x02
74#define ATA_66 0x03
75#define ATA_100a 0x04 // SiS730/SiS550 is ATA100 with ATA66 layout
76#define ATA_100 0x05
77#define ATA_133a 0x06 // SiS961b with 133 support
78#define ATA_133 0x07 // SiS962/963
79
80static u8 chipset_family;
81
82/*
83 * Devices supported
84 */
85static const struct {
86 const char *name;
87 u16 host_id;
88 u8 chipset_family;
89 u8 flags;
90} SiSHostChipInfo[] = {
David Wang47d4b902006-09-08 09:47:51 -070091 { "SiS968", PCI_DEVICE_ID_SI_968, ATA_133 },
92 { "SiS966", PCI_DEVICE_ID_SI_966, ATA_133 },
Aurelien Jarno14351f82005-11-19 21:43:45 +010093 { "SiS965", PCI_DEVICE_ID_SI_965, ATA_133 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 { "SiS745", PCI_DEVICE_ID_SI_745, ATA_100 },
95 { "SiS735", PCI_DEVICE_ID_SI_735, ATA_100 },
96 { "SiS733", PCI_DEVICE_ID_SI_733, ATA_100 },
97 { "SiS635", PCI_DEVICE_ID_SI_635, ATA_100 },
98 { "SiS633", PCI_DEVICE_ID_SI_633, ATA_100 },
99
100 { "SiS730", PCI_DEVICE_ID_SI_730, ATA_100a },
101 { "SiS550", PCI_DEVICE_ID_SI_550, ATA_100a },
102
103 { "SiS640", PCI_DEVICE_ID_SI_640, ATA_66 },
104 { "SiS630", PCI_DEVICE_ID_SI_630, ATA_66 },
105 { "SiS620", PCI_DEVICE_ID_SI_620, ATA_66 },
106 { "SiS540", PCI_DEVICE_ID_SI_540, ATA_66 },
107 { "SiS530", PCI_DEVICE_ID_SI_530, ATA_66 },
108
109 { "SiS5600", PCI_DEVICE_ID_SI_5600, ATA_33 },
110 { "SiS5598", PCI_DEVICE_ID_SI_5598, ATA_33 },
111 { "SiS5597", PCI_DEVICE_ID_SI_5597, ATA_33 },
112 { "SiS5591/2", PCI_DEVICE_ID_SI_5591, ATA_33 },
113 { "SiS5582", PCI_DEVICE_ID_SI_5582, ATA_33 },
114 { "SiS5581", PCI_DEVICE_ID_SI_5581, ATA_33 },
115
116 { "SiS5596", PCI_DEVICE_ID_SI_5596, ATA_16 },
117 { "SiS5571", PCI_DEVICE_ID_SI_5571, ATA_16 },
Alan Coxd266ab82006-03-28 01:56:31 -0800118 { "SiS5517", PCI_DEVICE_ID_SI_5517, ATA_16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 { "SiS551x", PCI_DEVICE_ID_SI_5511, ATA_16 },
120};
121
122/* Cycle time bits and values vary across chip dma capabilities
123 These three arrays hold the register layout and the values to set.
124 Indexed by chipset_family and (dma_mode - XFER_UDMA_0) */
125
126/* {0, ATA_16, ATA_33, ATA_66, ATA_100a, ATA_100, ATA_133} */
127static u8 cycle_time_offset[] = {0,0,5,4,4,0,0};
128static u8 cycle_time_range[] = {0,0,2,3,3,4,4};
129static u8 cycle_time_value[][XFER_UDMA_6 - XFER_UDMA_0 + 1] = {
130 {0,0,0,0,0,0,0}, /* no udma */
131 {0,0,0,0,0,0,0}, /* no udma */
132 {3,2,1,0,0,0,0}, /* ATA_33 */
133 {7,5,3,2,1,0,0}, /* ATA_66 */
134 {7,5,3,2,1,0,0}, /* ATA_100a (730 specific), differences are on cycle_time range and offset */
135 {11,7,5,4,2,1,0}, /* ATA_100 */
136 {15,10,7,5,3,2,1}, /* ATA_133a (earliest 691 southbridges) */
137 {15,10,7,5,3,2,1}, /* ATA_133 */
138};
139/* CRC Valid Setup Time vary across IDE clock setting 33/66/100/133
140 See SiS962 data sheet for more detail */
141static u8 cvs_time_value[][XFER_UDMA_6 - XFER_UDMA_0 + 1] = {
142 {0,0,0,0,0,0,0}, /* no udma */
143 {0,0,0,0,0,0,0}, /* no udma */
144 {2,1,1,0,0,0,0},
145 {4,3,2,1,0,0,0},
146 {4,3,2,1,0,0,0},
147 {6,4,3,1,1,1,0},
148 {9,6,4,2,2,2,2},
149 {9,6,4,2,2,2,2},
150};
151/* Initialize time, Active time, Recovery time vary across
152 IDE clock settings. These 3 arrays hold the register value
153 for PIO0/1/2/3/4 and DMA0/1/2 mode in order */
154static u8 ini_time_value[][8] = {
155 {0,0,0,0,0,0,0,0},
156 {0,0,0,0,0,0,0,0},
157 {2,1,0,0,0,1,0,0},
158 {4,3,1,1,1,3,1,1},
159 {4,3,1,1,1,3,1,1},
160 {6,4,2,2,2,4,2,2},
161 {9,6,3,3,3,6,3,3},
162 {9,6,3,3,3,6,3,3},
163};
164static u8 act_time_value[][8] = {
165 {0,0,0,0,0,0,0,0},
166 {0,0,0,0,0,0,0,0},
167 {9,9,9,2,2,7,2,2},
168 {19,19,19,5,4,14,5,4},
169 {19,19,19,5,4,14,5,4},
170 {28,28,28,7,6,21,7,6},
171 {38,38,38,10,9,28,10,9},
172 {38,38,38,10,9,28,10,9},
173};
174static u8 rco_time_value[][8] = {
175 {0,0,0,0,0,0,0,0},
176 {0,0,0,0,0,0,0,0},
177 {9,2,0,2,0,7,1,1},
178 {19,5,1,5,2,16,3,2},
179 {19,5,1,5,2,16,3,2},
180 {30,9,3,9,4,25,6,4},
181 {40,12,4,12,5,34,12,5},
182 {40,12,4,12,5,34,12,5},
183};
184
185/*
186 * Printing configuration
187 */
188/* Used for chipset type printing at boot time */
189static char* chipset_capability[] = {
190 "ATA", "ATA 16",
191 "ATA 33", "ATA 66",
192 "ATA 100 (1st gen)", "ATA 100 (2nd gen)",
193 "ATA 133 (1st gen)", "ATA 133 (2nd gen)"
194};
195
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +0200196#if defined(DISPLAY_SIS_TIMINGS) && defined(CONFIG_IDE_PROC_FS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197#include <linux/stat.h>
198#include <linux/proc_fs.h>
199
200static u8 sis_proc = 0;
201
202static struct pci_dev *bmide_dev;
203
204static char* cable_type[] = {
205 "80 pins",
206 "40 pins"
207};
208
209static char* recovery_time[] ={
210 "12 PCICLK", "1 PCICLK",
211 "2 PCICLK", "3 PCICLK",
212 "4 PCICLK", "5 PCICLCK",
213 "6 PCICLK", "7 PCICLCK",
214 "8 PCICLK", "9 PCICLCK",
215 "10 PCICLK", "11 PCICLK",
216 "13 PCICLK", "14 PCICLK",
217 "15 PCICLK", "15 PCICLK"
218};
219
220static char* active_time[] = {
221 "8 PCICLK", "1 PCICLCK",
222 "2 PCICLK", "3 PCICLK",
223 "4 PCICLK", "5 PCICLK",
224 "6 PCICLK", "12 PCICLK"
225};
226
227static char* cycle_time[] = {
228 "Reserved", "2 CLK",
229 "3 CLK", "4 CLK",
230 "5 CLK", "6 CLK",
231 "7 CLK", "8 CLK",
232 "9 CLK", "10 CLK",
233 "11 CLK", "12 CLK",
234 "13 CLK", "14 CLK",
235 "15 CLK", "16 CLK"
236};
237
238/* Generic add master or slave info function */
239static char* get_drives_info (char *buffer, u8 pos)
240{
241 u8 reg00, reg01, reg10, reg11; /* timing registers */
242 u32 regdw0, regdw1;
243 char* p = buffer;
244
245/* Postwrite/Prefetch */
246 if (chipset_family < ATA_133) {
247 pci_read_config_byte(bmide_dev, 0x4b, &reg00);
248 p += sprintf(p, "Drive %d: Postwrite %s \t \t Postwrite %s\n",
249 pos, (reg00 & (0x10 << pos)) ? "Enabled" : "Disabled",
250 (reg00 & (0x40 << pos)) ? "Enabled" : "Disabled");
251 p += sprintf(p, " Prefetch %s \t \t Prefetch %s\n",
252 (reg00 & (0x01 << pos)) ? "Enabled" : "Disabled",
253 (reg00 & (0x04 << pos)) ? "Enabled" : "Disabled");
254 pci_read_config_byte(bmide_dev, 0x40+2*pos, &reg00);
255 pci_read_config_byte(bmide_dev, 0x41+2*pos, &reg01);
256 pci_read_config_byte(bmide_dev, 0x44+2*pos, &reg10);
257 pci_read_config_byte(bmide_dev, 0x45+2*pos, &reg11);
258 } else {
259 u32 reg54h;
260 u8 drive_pci = 0x40;
261 pci_read_config_dword(bmide_dev, 0x54, &reg54h);
262 if (reg54h & 0x40000000) {
263 // Configuration space remapped to 0x70
264 drive_pci = 0x70;
265 }
266 pci_read_config_dword(bmide_dev, (unsigned long)drive_pci+4*pos, &regdw0);
267 pci_read_config_dword(bmide_dev, (unsigned long)drive_pci+4*pos+8, &regdw1);
268
269 p += sprintf(p, "Drive %d:\n", pos);
270 }
271
272
273/* UDMA */
274 if (chipset_family >= ATA_133) {
275 p += sprintf(p, " UDMA %s \t \t \t UDMA %s\n",
276 (regdw0 & 0x04) ? "Enabled" : "Disabled",
277 (regdw1 & 0x04) ? "Enabled" : "Disabled");
278 p += sprintf(p, " UDMA Cycle Time %s \t UDMA Cycle Time %s\n",
279 cycle_time[(regdw0 & 0xF0) >> 4],
280 cycle_time[(regdw1 & 0xF0) >> 4]);
281 } else if (chipset_family >= ATA_33) {
282 p += sprintf(p, " UDMA %s \t \t \t UDMA %s\n",
283 (reg01 & 0x80) ? "Enabled" : "Disabled",
284 (reg11 & 0x80) ? "Enabled" : "Disabled");
285
286 p += sprintf(p, " UDMA Cycle Time ");
287 switch(chipset_family) {
288 case ATA_33: p += sprintf(p, cycle_time[(reg01 & 0x60) >> 5]); break;
289 case ATA_66:
290 case ATA_100a: p += sprintf(p, cycle_time[(reg01 & 0x70) >> 4]); break;
291 case ATA_100:
292 case ATA_133a: p += sprintf(p, cycle_time[reg01 & 0x0F]); break;
293 default: p += sprintf(p, "?"); break;
294 }
295 p += sprintf(p, " \t UDMA Cycle Time ");
296 switch(chipset_family) {
297 case ATA_33: p += sprintf(p, cycle_time[(reg11 & 0x60) >> 5]); break;
298 case ATA_66:
299 case ATA_100a: p += sprintf(p, cycle_time[(reg11 & 0x70) >> 4]); break;
300 case ATA_100:
301 case ATA_133a: p += sprintf(p, cycle_time[reg11 & 0x0F]); break;
302 default: p += sprintf(p, "?"); break;
303 }
304 p += sprintf(p, "\n");
305 }
306
307
308 if (chipset_family < ATA_133) { /* else case TODO */
309
310/* Data Active */
311 p += sprintf(p, " Data Active Time ");
312 switch(chipset_family) {
313 case ATA_16: /* confirmed */
314 case ATA_33:
315 case ATA_66:
316 case ATA_100a: p += sprintf(p, active_time[reg01 & 0x07]); break;
317 case ATA_100:
318 case ATA_133a: p += sprintf(p, active_time[(reg00 & 0x70) >> 4]); break;
319 default: p += sprintf(p, "?"); break;
320 }
321 p += sprintf(p, " \t Data Active Time ");
322 switch(chipset_family) {
323 case ATA_16:
324 case ATA_33:
325 case ATA_66:
326 case ATA_100a: p += sprintf(p, active_time[reg11 & 0x07]); break;
327 case ATA_100:
328 case ATA_133a: p += sprintf(p, active_time[(reg10 & 0x70) >> 4]); break;
329 default: p += sprintf(p, "?"); break;
330 }
331 p += sprintf(p, "\n");
332
333/* Data Recovery */
334 /* warning: may need (reg&0x07) for pre ATA66 chips */
335 p += sprintf(p, " Data Recovery Time %s \t Data Recovery Time %s\n",
336 recovery_time[reg00 & 0x0f], recovery_time[reg10 & 0x0f]);
337 }
338
339 return p;
340}
341
342static char* get_masters_info(char* buffer)
343{
344 return get_drives_info(buffer, 0);
345}
346
347static char* get_slaves_info(char* buffer)
348{
349 return get_drives_info(buffer, 1);
350}
351
352/* Main get_info, called on /proc/ide/sis reads */
353static int sis_get_info (char *buffer, char **addr, off_t offset, int count)
354{
355 char *p = buffer;
356 int len;
357 u8 reg;
358 u16 reg2, reg3;
359
360 p += sprintf(p, "\nSiS 5513 ");
361 switch(chipset_family) {
362 case ATA_16: p += sprintf(p, "DMA 16"); break;
363 case ATA_33: p += sprintf(p, "Ultra 33"); break;
364 case ATA_66: p += sprintf(p, "Ultra 66"); break;
365 case ATA_100a:
366 case ATA_100: p += sprintf(p, "Ultra 100"); break;
367 case ATA_133a:
368 case ATA_133: p += sprintf(p, "Ultra 133"); break;
369 default: p+= sprintf(p, "Unknown???"); break;
370 }
371 p += sprintf(p, " chipset\n");
372 p += sprintf(p, "--------------- Primary Channel "
373 "---------------- Secondary Channel "
374 "-------------\n");
375
376/* Status */
377 pci_read_config_byte(bmide_dev, 0x4a, &reg);
378 if (chipset_family == ATA_133) {
379 pci_read_config_word(bmide_dev, 0x50, &reg2);
380 pci_read_config_word(bmide_dev, 0x52, &reg3);
381 }
382 p += sprintf(p, "Channel Status: ");
383 if (chipset_family < ATA_66) {
384 p += sprintf(p, "%s \t \t \t \t %s\n",
385 (reg & 0x04) ? "On" : "Off",
386 (reg & 0x02) ? "On" : "Off");
387 } else if (chipset_family < ATA_133) {
388 p += sprintf(p, "%s \t \t \t \t %s \n",
389 (reg & 0x02) ? "On" : "Off",
390 (reg & 0x04) ? "On" : "Off");
391 } else { /* ATA_133 */
392 p += sprintf(p, "%s \t \t \t \t %s \n",
393 (reg2 & 0x02) ? "On" : "Off",
394 (reg3 & 0x02) ? "On" : "Off");
395 }
396
397/* Operation Mode */
398 pci_read_config_byte(bmide_dev, 0x09, &reg);
399 p += sprintf(p, "Operation Mode: %s \t \t \t %s \n",
400 (reg & 0x01) ? "Native" : "Compatible",
401 (reg & 0x04) ? "Native" : "Compatible");
402
403/* 80-pin cable ? */
404 if (chipset_family >= ATA_133) {
405 p += sprintf(p, "Cable Type: %s \t \t \t %s\n",
406 (reg2 & 0x01) ? cable_type[1] : cable_type[0],
407 (reg3 & 0x01) ? cable_type[1] : cable_type[0]);
408 } else if (chipset_family > ATA_33) {
409 pci_read_config_byte(bmide_dev, 0x48, &reg);
410 p += sprintf(p, "Cable Type: %s \t \t \t %s\n",
411 (reg & 0x10) ? cable_type[1] : cable_type[0],
412 (reg & 0x20) ? cable_type[1] : cable_type[0]);
413 }
414
415/* Prefetch Count */
416 if (chipset_family < ATA_133) {
417 pci_read_config_word(bmide_dev, 0x4c, &reg2);
418 pci_read_config_word(bmide_dev, 0x4e, &reg3);
419 p += sprintf(p, "Prefetch Count: %d \t \t \t \t %d\n",
420 reg2, reg3);
421 }
422
423 p = get_masters_info(p);
424 p = get_slaves_info(p);
425
426 len = (p - buffer) - offset;
427 *addr = buffer + offset;
428
429 return len > count ? count : len;
430}
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +0200431#endif /* defined(DISPLAY_SIS_TIMINGS) && defined(CONFIG_IDE_PROC_FS) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433/*
434 * Configuration functions
435 */
Bartlomiej Zolnierkiewiczc77a89c2007-10-16 22:29:52 +0200436
437static u8 sis_ata133_get_base(ide_drive_t *drive)
438{
439 struct pci_dev *dev = drive->hwif->pci_dev;
440 u32 reg54 = 0;
441
442 pci_read_config_dword(dev, 0x54, &reg54);
443
444 return ((reg54 & 0x40000000) ? 0x70 : 0x40) + drive->dn * 4;
445}
446
447static void sis_ata16_program_timings(ide_drive_t *drive, const u8 mode)
448{
449 struct pci_dev *dev = drive->hwif->pci_dev;
450 u16 t1 = 0;
451 u8 drive_pci = 0x40 + drive->dn * 2;
452
453 const u16 pio_timings[] = { 0x000, 0x607, 0x404, 0x303, 0x301 };
454 const u16 mwdma_timings[] = { 0x008, 0x302, 0x301 };
455
456 pci_read_config_word(dev, drive_pci, &t1);
457
458 /* clear active/recovery timings */
459 t1 &= ~0x070f;
460 if (mode >= XFER_MW_DMA_0) {
461 if (chipset_family > ATA_16)
462 t1 &= ~0x8000; /* disable UDMA */
463 t1 |= mwdma_timings[mode - XFER_MW_DMA_0];
464 } else
465 t1 |= pio_timings[mode - XFER_PIO_0];
466
467 pci_write_config_word(dev, drive_pci, t1);
468}
469
470static void sis_ata100_program_timings(ide_drive_t *drive, const u8 mode)
471{
472 struct pci_dev *dev = drive->hwif->pci_dev;
473 u8 t1, drive_pci = 0x40 + drive->dn * 2;
474
475 /* timing bits: 7:4 active 3:0 recovery */
476 const u8 pio_timings[] = { 0x00, 0x67, 0x44, 0x33, 0x31 };
477 const u8 mwdma_timings[] = { 0x08, 0x32, 0x31 };
478
479 if (mode >= XFER_MW_DMA_0) {
480 u8 t2 = 0;
481
482 pci_read_config_byte(dev, drive_pci, &t2);
483 t2 &= ~0x80; /* disable UDMA */
484 pci_write_config_byte(dev, drive_pci, t2);
485
486 t1 = mwdma_timings[mode - XFER_MW_DMA_0];
487 } else
488 t1 = pio_timings[mode - XFER_PIO_0];
489
490 pci_write_config_byte(dev, drive_pci + 1, t1);
491}
492
493static void sis_ata133_program_timings(ide_drive_t *drive, const u8 mode)
494{
495 struct pci_dev *dev = drive->hwif->pci_dev;
496 u32 t1 = 0;
497 u8 drive_pci = sis_ata133_get_base(drive), clk, idx;
498
499 pci_read_config_dword(dev, drive_pci, &t1);
500
501 t1 &= 0xc0c00fff;
502 clk = (t1 & 0x08) ? ATA_133 : ATA_100;
503 if (mode >= XFER_MW_DMA_0) {
504 t1 &= ~0x04; /* disable UDMA */
505 idx = mode - XFER_MW_DMA_0 + 5;
506 }
507 idx = mode - XFER_PIO_0;
508 t1 |= ini_time_value[clk][idx] << 12;
509 t1 |= act_time_value[clk][idx] << 16;
510 t1 |= rco_time_value[clk][idx] << 24;
511
512 pci_write_config_dword(dev, drive_pci, t1);
513}
514
515static void sis_program_timings(ide_drive_t *drive, const u8 mode)
516{
517 if (chipset_family < ATA_100) /* ATA_16/33/66/100a */
518 sis_ata16_program_timings(drive, mode);
519 else if (chipset_family < ATA_133) /* ATA_100/133a */
520 sis_ata100_program_timings(drive, mode);
521 else /* ATA_133 */
522 sis_ata133_program_timings(drive, mode);
523}
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525/* Enables per-drive prefetch and postwrite */
526static void config_drive_art_rwp (ide_drive_t *drive)
527{
528 ide_hwif_t *hwif = HWIF(drive);
529 struct pci_dev *dev = hwif->pci_dev;
530
531 u8 reg4bh = 0;
532 u8 rw_prefetch = (0x11 << drive->dn);
533
534 if (drive->media != ide_disk)
535 return;
536 pci_read_config_byte(dev, 0x4b, &reg4bh);
537
538 if ((reg4bh & rw_prefetch) != rw_prefetch)
539 pci_write_config_byte(dev, 0x4b, reg4bh|rw_prefetch);
540}
541
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200542static void sis_set_pio_mode(ide_drive_t *drive, const u8 pio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 config_drive_art_rwp(drive);
Bartlomiej Zolnierkiewiczc77a89c2007-10-16 22:29:52 +0200545 sis_program_timings(drive, XFER_PIO_0 + pio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
547
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200548static void sis_set_dma_mode(ide_drive_t *drive, const u8 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
550 ide_hwif_t *hwif = HWIF(drive);
551 struct pci_dev *dev = hwif->pci_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 /* Config chip for mode */
554 switch(speed) {
555 case XFER_UDMA_6:
556 case XFER_UDMA_5:
557 case XFER_UDMA_4:
558 case XFER_UDMA_3:
559 case XFER_UDMA_2:
560 case XFER_UDMA_1:
561 case XFER_UDMA_0:
562 if (chipset_family >= ATA_133) {
Bartlomiej Zolnierkiewiczc77a89c2007-10-16 22:29:52 +0200563 u32 regdw = 0;
564 u8 drive_pci = sis_ata133_get_base(drive);
565
566 pci_read_config_dword(dev, drive_pci, &regdw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 regdw |= 0x04;
568 regdw &= 0xfffff00f;
569 /* check if ATA133 enable */
570 if (regdw & 0x08) {
571 regdw |= (unsigned long)cycle_time_value[ATA_133][speed-XFER_UDMA_0] << 4;
572 regdw |= (unsigned long)cvs_time_value[ATA_133][speed-XFER_UDMA_0] << 8;
573 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 regdw |= (unsigned long)cycle_time_value[ATA_100][speed-XFER_UDMA_0] << 4;
575 regdw |= (unsigned long)cvs_time_value[ATA_100][speed-XFER_UDMA_0] << 8;
576 }
577 pci_write_config_dword(dev, (unsigned long)drive_pci, regdw);
578 } else {
Bartlomiej Zolnierkiewiczc77a89c2007-10-16 22:29:52 +0200579 u8 drive_pci = 0x40 + drive->dn * 2, reg = 0;
580
581 pci_read_config_byte(dev, drive_pci+1, &reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 /* Force the UDMA bit on if we want to use UDMA */
583 reg |= 0x80;
584 /* clean reg cycle time bits */
585 reg &= ~((0xFF >> (8 - cycle_time_range[chipset_family]))
586 << cycle_time_offset[chipset_family]);
587 /* set reg cycle time bits */
588 reg |= cycle_time_value[chipset_family][speed-XFER_UDMA_0]
589 << cycle_time_offset[chipset_family];
590 pci_write_config_byte(dev, drive_pci+1, reg);
591 }
592 break;
593 case XFER_MW_DMA_2:
594 case XFER_MW_DMA_1:
595 case XFER_MW_DMA_0:
Bartlomiej Zolnierkiewiczc77a89c2007-10-16 22:29:52 +0200596 sis_program_timings(drive, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 break;
Bartlomiej Zolnierkiewicz6b8cf772007-05-16 00:51:42 +0200598 default:
599 BUG();
600 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
Bartlomiej Zolnierkiewiczac4a3062007-02-17 02:40:24 +0100604static int sis5513_config_xfer_rate(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 drive->init_speed = 0;
607
Bartlomiej Zolnierkiewicz29e744d2007-05-10 00:01:09 +0200608 if (ide_tune_dma(drive))
Bartlomiej Zolnierkiewicz3608b5d2007-02-17 02:40:26 +0100609 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Bartlomiej Zolnierkiewiczd8f44692007-02-17 02:40:25 +0100611 if (ide_use_fast_pio(drive))
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200612 ide_set_max_pio(drive);
Bartlomiej Zolnierkiewiczd8f44692007-02-17 02:40:25 +0100613
Bartlomiej Zolnierkiewicz3608b5d2007-02-17 02:40:26 +0100614 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616
Bartlomiej Zolnierkiewicz3160d542007-10-11 23:53:59 +0200617static u8 sis5513_ata133_udma_filter(ide_drive_t *drive)
618{
619 struct pci_dev *dev = drive->hwif->pci_dev;
Bartlomiej Zolnierkiewiczc77a89c2007-10-16 22:29:52 +0200620 u32 regdw = 0;
621 u8 drive_pci = sis_ata133_get_base(drive);
Bartlomiej Zolnierkiewicz3160d542007-10-11 23:53:59 +0200622
Bartlomiej Zolnierkiewicz3160d542007-10-11 23:53:59 +0200623 pci_read_config_dword(dev, drive_pci, &regdw);
624
625 /* if ATA133 disable, we should not set speed above UDMA5 */
626 return (regdw & 0x08) ? ATA_UDMA6 : ATA_UDMA5;
627}
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629/* Chip detection and general config */
Adrian Bunk2b0c4be2005-05-05 16:15:49 -0700630static unsigned int __devinit init_chipset_sis5513 (struct pci_dev *dev, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
632 struct pci_dev *host;
633 int i = 0;
634
635 chipset_family = 0;
636
637 for (i = 0; i < ARRAY_SIZE(SiSHostChipInfo) && !chipset_family; i++) {
638
Alan Cox40cddf22006-09-30 23:27:30 -0700639 host = pci_get_device(PCI_VENDOR_ID_SI, SiSHostChipInfo[i].host_id, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 if (!host)
642 continue;
643
644 chipset_family = SiSHostChipInfo[i].chipset_family;
645
646 /* Special case for SiS630 : 630S/ET is ATA_100a */
647 if (SiSHostChipInfo[i].host_id == PCI_DEVICE_ID_SI_630) {
Auke Kok44c10132007-06-08 15:46:36 -0700648 if (host->revision >= 0x30)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 chipset_family = ATA_100a;
650 }
Alan Cox40cddf22006-09-30 23:27:30 -0700651 pci_dev_put(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 printk(KERN_INFO "SIS5513: %s %s controller\n",
654 SiSHostChipInfo[i].name, chipset_capability[chipset_family]);
655 }
656
657 if (!chipset_family) { /* Belongs to pci-quirks */
658
659 u32 idemisc;
660 u16 trueid;
661
662 /* Disable ID masking and register remapping */
663 pci_read_config_dword(dev, 0x54, &idemisc);
664 pci_write_config_dword(dev, 0x54, (idemisc & 0x7fffffff));
665 pci_read_config_word(dev, PCI_DEVICE_ID, &trueid);
666 pci_write_config_dword(dev, 0x54, idemisc);
667
668 if (trueid == 0x5518) {
669 printk(KERN_INFO "SIS5513: SiS 962/963 MuTIOL IDE UDMA133 controller\n");
670 chipset_family = ATA_133;
671
672 /* Check for 5513 compability mapping
673 * We must use this, else the port enabled code will fail,
674 * as it expects the enablebits at 0x4a.
675 */
676 if ((idemisc & 0x40000000) == 0) {
677 pci_write_config_dword(dev, 0x54, idemisc | 0x40000000);
678 printk(KERN_INFO "SIS5513: Switching to 5513 register mapping\n");
679 }
680 }
681 }
682
683 if (!chipset_family) { /* Belongs to pci-quirks */
684
685 struct pci_dev *lpc_bridge;
686 u16 trueid;
687 u8 prefctl;
688 u8 idecfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 pci_read_config_byte(dev, 0x4a, &idecfg);
691 pci_write_config_byte(dev, 0x4a, idecfg | 0x10);
692 pci_read_config_word(dev, PCI_DEVICE_ID, &trueid);
693 pci_write_config_byte(dev, 0x4a, idecfg);
694
695 if (trueid == 0x5517) { /* SiS 961/961B */
696
Alan Coxb1489002006-12-08 02:39:58 -0800697 lpc_bridge = pci_get_slot(dev->bus, 0x10); /* Bus 0, Dev 2, Fn 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 pci_read_config_byte(dev, 0x49, &prefctl);
Alan Coxb1489002006-12-08 02:39:58 -0800699 pci_dev_put(lpc_bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Auke Kok44c10132007-06-08 15:46:36 -0700701 if (lpc_bridge->revision == 0x10 && (prefctl & 0x80)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 printk(KERN_INFO "SIS5513: SiS 961B MuTIOL IDE UDMA133 controller\n");
703 chipset_family = ATA_133a;
704 } else {
705 printk(KERN_INFO "SIS5513: SiS 961 MuTIOL IDE UDMA100 controller\n");
706 chipset_family = ATA_100;
707 }
708 }
709 }
710
711 if (!chipset_family)
712 return -1;
713
714 /* Make general config ops here
715 1/ tell IDE channels to operate in Compatibility mode only
716 2/ tell old chips to allow per drive IDE timings */
717
718 {
719 u8 reg;
720 u16 regw;
721
722 switch(chipset_family) {
723 case ATA_133:
724 /* SiS962 operation mode */
725 pci_read_config_word(dev, 0x50, &regw);
726 if (regw & 0x08)
727 pci_write_config_word(dev, 0x50, regw&0xfff7);
728 pci_read_config_word(dev, 0x52, &regw);
729 if (regw & 0x08)
730 pci_write_config_word(dev, 0x52, regw&0xfff7);
731 break;
732 case ATA_133a:
733 case ATA_100:
734 /* Fixup latency */
735 pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0x80);
736 /* Set compatibility bit */
737 pci_read_config_byte(dev, 0x49, &reg);
738 if (!(reg & 0x01)) {
739 pci_write_config_byte(dev, 0x49, reg|0x01);
740 }
741 break;
742 case ATA_100a:
743 case ATA_66:
744 /* Fixup latency */
745 pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0x10);
746
747 /* On ATA_66 chips the bit was elsewhere */
748 pci_read_config_byte(dev, 0x52, &reg);
749 if (!(reg & 0x04)) {
750 pci_write_config_byte(dev, 0x52, reg|0x04);
751 }
752 break;
753 case ATA_33:
754 /* On ATA_33 we didn't have a single bit to set */
755 pci_read_config_byte(dev, 0x09, &reg);
756 if ((reg & 0x0f) != 0x00) {
757 pci_write_config_byte(dev, 0x09, reg&0xf0);
758 }
759 case ATA_16:
760 /* force per drive recovery and active timings
761 needed on ATA_33 and below chips */
762 pci_read_config_byte(dev, 0x52, &reg);
763 if (!(reg & 0x08)) {
764 pci_write_config_byte(dev, 0x52, reg|0x08);
765 }
766 break;
767 }
768
Bartlomiej Zolnierkiewiczecfd80e2007-05-10 00:01:09 +0200769#if defined(DISPLAY_SIS_TIMINGS) && defined(CONFIG_IDE_PROC_FS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (!sis_proc) {
771 sis_proc = 1;
772 bmide_dev = dev;
773 ide_pci_create_host_proc("sis", sis_get_info);
774 }
775#endif
776 }
777
778 return 0;
779}
780
Bartlomiej Zolnierkiewiczf2befd92007-07-09 23:17:58 +0200781struct sis_laptop {
782 u16 device;
783 u16 subvendor;
784 u16 subdevice;
785};
786
787static const struct sis_laptop sis_laptop[] = {
788 /* devid, subvendor, subdev */
789 { 0x5513, 0x1043, 0x1107 }, /* ASUS A6K */
David Lamparter1955f682007-08-01 23:46:44 +0200790 { 0x5513, 0x1734, 0x105f }, /* FSC Amilo A1630 */
Bartlomiej Zolnierkiewiczf2befd92007-07-09 23:17:58 +0200791 /* end marker */
792 { 0, }
793};
794
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200795static u8 __devinit ata66_sis5513(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
Bartlomiej Zolnierkiewiczf2befd92007-07-09 23:17:58 +0200797 struct pci_dev *pdev = hwif->pci_dev;
798 const struct sis_laptop *lap = &sis_laptop[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 u8 ata66 = 0;
800
Bartlomiej Zolnierkiewiczf2befd92007-07-09 23:17:58 +0200801 while (lap->device) {
802 if (lap->device == pdev->device &&
803 lap->subvendor == pdev->subsystem_vendor &&
804 lap->subdevice == pdev->subsystem_device)
805 return ATA_CBL_PATA40_SHORT;
806 lap++;
807 }
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 if (chipset_family >= ATA_133) {
810 u16 regw = 0;
811 u16 reg_addr = hwif->channel ? 0x52: 0x50;
812 pci_read_config_word(hwif->pci_dev, reg_addr, &regw);
813 ata66 = (regw & 0x8000) ? 0 : 1;
814 } else if (chipset_family >= ATA_66) {
815 u8 reg48h = 0;
816 u8 mask = hwif->channel ? 0x20 : 0x10;
817 pci_read_config_byte(hwif->pci_dev, 0x48, &reg48h);
818 ata66 = (reg48h & mask) ? 0 : 1;
819 }
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200820
821 return ata66 ? ATA_CBL_PATA80 : ATA_CBL_PATA40;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
Adrian Bunk2b0c4be2005-05-05 16:15:49 -0700824static void __devinit init_hwif_sis5513 (ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
Bartlomiej Zolnierkiewicz18137202007-05-10 00:01:07 +0200826 u8 udma_rates[] = { 0x00, 0x00, 0x07, 0x1f, 0x3f, 0x3f, 0x7f, 0x7f };
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 hwif->autodma = 0;
829
830 if (!hwif->irq)
831 hwif->irq = hwif->channel ? 15 : 14;
832
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200833 hwif->set_pio_mode = &sis_set_pio_mode;
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200834 hwif->set_dma_mode = &sis_set_dma_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Bartlomiej Zolnierkiewicz3160d542007-10-11 23:53:59 +0200836 if (chipset_family >= ATA_133)
837 hwif->udma_filter = sis5513_ata133_udma_filter;
838
Bartlomiej Zolnierkiewicz4960ab72007-10-16 22:29:53 +0200839 hwif->drives[0].autotune = 1;
840 hwif->drives[1].autotune = 1;
841
842 if (hwif->dma_base == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
845 hwif->atapi_dma = 1;
Bartlomiej Zolnierkiewicz18137202007-05-10 00:01:07 +0200846
847 hwif->ultra_mask = udma_rates[chipset_family];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 hwif->mwdma_mask = 0x07;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200850 if (hwif->cbl != ATA_CBL_PATA40_SHORT)
851 hwif->cbl = ata66_sis5513(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Bartlomiej Zolnierkiewiczc77a89c2007-10-16 22:29:52 +0200853 hwif->ide_dma_check = &sis5513_config_xfer_rate;
854
855 if (!noautodma)
856 hwif->autodma = 1;
857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 hwif->drives[0].autodma = hwif->autodma;
859 hwif->drives[1].autodma = hwif->autodma;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860}
861
862static ide_pci_device_t sis5513_chipset __devinitdata = {
863 .name = "SIS5513",
864 .init_chipset = init_chipset_sis5513,
865 .init_hwif = init_hwif_sis5513,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 .autodma = NOAUTODMA,
867 .enablebits = {{0x4a,0x02,0x02}, {0x4a,0x04,0x04}},
868 .bootable = ON_BOARD,
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200869 .pio_mask = ATA_PIO4,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870};
871
872static int __devinit sis5513_init_one(struct pci_dev *dev, const struct pci_device_id *id)
873{
874 return ide_setup_pci_device(dev, &sis5513_chipset);
875}
876
877static struct pci_device_id sis5513_pci_tbl[] = {
878 { PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_5513, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
879 { PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_5518, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Uwe Koziolek4c6c9142007-07-08 15:21:58 +0200880 { PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_1180, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 { 0, },
882};
883MODULE_DEVICE_TABLE(pci, sis5513_pci_tbl);
884
885static struct pci_driver driver = {
886 .name = "SIS_IDE",
887 .id_table = sis5513_pci_tbl,
888 .probe = sis5513_init_one,
889};
890
Bartlomiej Zolnierkiewicz82ab1ee2007-01-27 13:46:56 +0100891static int __init sis5513_ide_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
893 return ide_pci_register_driver(&driver);
894}
895
896module_init(sis5513_ide_init);
897
898MODULE_AUTHOR("Lionel Bouton, L C Chang, Andre Hedrick, Vojtech Pavlik");
899MODULE_DESCRIPTION("PCI driver module for SIS IDE");
900MODULE_LICENSE("GPL");
901
902/*
903 * TODO:
904 * - CLEANUP
905 * - Use drivers/ide/ide-timing.h !
906 * - More checks in the config registers (force values instead of
907 * relying on the BIOS setting them correctly).
908 * - Further optimisations ?
909 * . for example ATA66+ regs 0x48 & 0x4A
910 */