blob: 65ee2ccabed60e69c9f8408ae116870647eea624 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1999-2000 Andre Hedrick <andre@linux-ide.org>
3 * Copyright (C) 2002 Lionel Bouton <Lionel.Bouton@inet6.fr>, Maintainer
4 * Copyright (C) 2003 Vojtech Pavlik <vojtech@suse.cz>
Bartlomiej Zolnierkiewicz6b8cf772007-05-16 00:51:42 +02005 * Copyright (C) 2007 Bartlomiej Zolnierkiewicz
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * May be copied or modified under the terms of the GNU General Public License
8 *
9 *
10 * Thanks :
11 *
12 * SiS Taiwan : for direct support and hardware.
13 * Daniela Engert : for initial ATA100 advices and numerous others.
14 * John Fremlin, Manfred Spraul, Dave Morgan, Peter Kjellerstedt :
15 * for checking code correctness, providing patches.
16 *
17 *
18 * Original tests and design on the SiS620 chipset.
19 * ATA100 tests and design on the SiS735 chipset.
20 * ATA16/33 support from specs
21 * ATA133 support for SiS961/962 by L.C. Chang <lcchang@sis.com.tw>
22 * ATA133 961/962/963 fixes by Vojtech Pavlik <vojtech@suse.cz>
23 *
24 * Documentation:
25 * SiS chipset documentation available under NDA to companies only
26 * (not to individuals).
27 */
28
29/*
30 * The original SiS5513 comes from a SiS5511/55112/5513 chipset. The original
31 * SiS5513 was also used in the SiS5596/5513 chipset. Thus if we see a SiS5511
32 * or SiS5596, we can assume we see the first MWDMA-16 capable SiS5513 chip.
33 *
34 * Later SiS chipsets integrated the 5513 functionality into the NorthBridge,
35 * starting with SiS5571 and up to SiS745. The PCI ID didn't change, though. We
36 * can figure out that we have a more modern and more capable 5513 by looking
37 * for the respective NorthBridge IDs.
38 *
39 * Even later (96x family) SiS chipsets use the MuTIOL link and place the 5513
40 * into the SouthBrige. Here we cannot rely on looking up the NorthBridge PCI
41 * ID, while the now ATA-133 capable 5513 still has the same PCI ID.
42 * Fortunately the 5513 can be 'unmasked' by fiddling with some config space
43 * bits, changing its device id to the true one - 5517 for 961 and 5518 for
44 * 962/963.
45 */
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/types.h>
48#include <linux/module.h>
49#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/hdreg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/pci.h>
52#include <linux/init.h>
53#include <linux/ide.h>
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include "ide-timing.h"
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/* registers layout and init values are chipset family dependant */
58
59#define ATA_16 0x01
60#define ATA_33 0x02
61#define ATA_66 0x03
Paolo Ciarrocchi1eb3c2e2008-04-26 17:36:39 +020062#define ATA_100a 0x04 /* SiS730/SiS550 is ATA100 with ATA66 layout */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define ATA_100 0x05
Paolo Ciarrocchi1eb3c2e2008-04-26 17:36:39 +020064#define ATA_133a 0x06 /* SiS961b with 133 support */
65#define ATA_133 0x07 /* SiS962/963 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67static u8 chipset_family;
68
69/*
70 * Devices supported
71 */
72static const struct {
73 const char *name;
74 u16 host_id;
75 u8 chipset_family;
76 u8 flags;
77} SiSHostChipInfo[] = {
David Wang47d4b902006-09-08 09:47:51 -070078 { "SiS968", PCI_DEVICE_ID_SI_968, ATA_133 },
79 { "SiS966", PCI_DEVICE_ID_SI_966, ATA_133 },
Aurelien Jarno14351f82005-11-19 21:43:45 +010080 { "SiS965", PCI_DEVICE_ID_SI_965, ATA_133 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 { "SiS745", PCI_DEVICE_ID_SI_745, ATA_100 },
82 { "SiS735", PCI_DEVICE_ID_SI_735, ATA_100 },
83 { "SiS733", PCI_DEVICE_ID_SI_733, ATA_100 },
84 { "SiS635", PCI_DEVICE_ID_SI_635, ATA_100 },
85 { "SiS633", PCI_DEVICE_ID_SI_633, ATA_100 },
86
87 { "SiS730", PCI_DEVICE_ID_SI_730, ATA_100a },
88 { "SiS550", PCI_DEVICE_ID_SI_550, ATA_100a },
89
90 { "SiS640", PCI_DEVICE_ID_SI_640, ATA_66 },
91 { "SiS630", PCI_DEVICE_ID_SI_630, ATA_66 },
92 { "SiS620", PCI_DEVICE_ID_SI_620, ATA_66 },
93 { "SiS540", PCI_DEVICE_ID_SI_540, ATA_66 },
94 { "SiS530", PCI_DEVICE_ID_SI_530, ATA_66 },
95
96 { "SiS5600", PCI_DEVICE_ID_SI_5600, ATA_33 },
97 { "SiS5598", PCI_DEVICE_ID_SI_5598, ATA_33 },
98 { "SiS5597", PCI_DEVICE_ID_SI_5597, ATA_33 },
99 { "SiS5591/2", PCI_DEVICE_ID_SI_5591, ATA_33 },
100 { "SiS5582", PCI_DEVICE_ID_SI_5582, ATA_33 },
101 { "SiS5581", PCI_DEVICE_ID_SI_5581, ATA_33 },
102
103 { "SiS5596", PCI_DEVICE_ID_SI_5596, ATA_16 },
104 { "SiS5571", PCI_DEVICE_ID_SI_5571, ATA_16 },
Alan Coxd266ab82006-03-28 01:56:31 -0800105 { "SiS5517", PCI_DEVICE_ID_SI_5517, ATA_16 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 { "SiS551x", PCI_DEVICE_ID_SI_5511, ATA_16 },
107};
108
109/* Cycle time bits and values vary across chip dma capabilities
110 These three arrays hold the register layout and the values to set.
111 Indexed by chipset_family and (dma_mode - XFER_UDMA_0) */
112
113/* {0, ATA_16, ATA_33, ATA_66, ATA_100a, ATA_100, ATA_133} */
Paolo Ciarrocchi1eb3c2e2008-04-26 17:36:39 +0200114static u8 cycle_time_offset[] = { 0, 0, 5, 4, 4, 0, 0 };
115static u8 cycle_time_range[] = { 0, 0, 2, 3, 3, 4, 4 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116static u8 cycle_time_value[][XFER_UDMA_6 - XFER_UDMA_0 + 1] = {
Paolo Ciarrocchi1eb3c2e2008-04-26 17:36:39 +0200117 { 0, 0, 0, 0, 0, 0, 0 }, /* no UDMA */
118 { 0, 0, 0, 0, 0, 0, 0 }, /* no UDMA */
119 { 3, 2, 1, 0, 0, 0, 0 }, /* ATA_33 */
120 { 7, 5, 3, 2, 1, 0, 0 }, /* ATA_66 */
121 { 7, 5, 3, 2, 1, 0, 0 }, /* ATA_100a (730 specific),
122 different cycle_time range and offset */
123 { 11, 7, 5, 4, 2, 1, 0 }, /* ATA_100 */
124 { 15, 10, 7, 5, 3, 2, 1 }, /* ATA_133a (earliest 691 southbridges) */
125 { 15, 10, 7, 5, 3, 2, 1 }, /* ATA_133 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126};
127/* CRC Valid Setup Time vary across IDE clock setting 33/66/100/133
128 See SiS962 data sheet for more detail */
129static u8 cvs_time_value[][XFER_UDMA_6 - XFER_UDMA_0 + 1] = {
Paolo Ciarrocchi1eb3c2e2008-04-26 17:36:39 +0200130 { 0, 0, 0, 0, 0, 0, 0 }, /* no UDMA */
131 { 0, 0, 0, 0, 0, 0, 0 }, /* no UDMA */
132 { 2, 1, 1, 0, 0, 0, 0 },
133 { 4, 3, 2, 1, 0, 0, 0 },
134 { 4, 3, 2, 1, 0, 0, 0 },
135 { 6, 4, 3, 1, 1, 1, 0 },
136 { 9, 6, 4, 2, 2, 2, 2 },
137 { 9, 6, 4, 2, 2, 2, 2 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138};
139/* Initialize time, Active time, Recovery time vary across
140 IDE clock settings. These 3 arrays hold the register value
141 for PIO0/1/2/3/4 and DMA0/1/2 mode in order */
142static u8 ini_time_value[][8] = {
Paolo Ciarrocchi1eb3c2e2008-04-26 17:36:39 +0200143 { 0, 0, 0, 0, 0, 0, 0, 0 },
144 { 0, 0, 0, 0, 0, 0, 0, 0 },
145 { 2, 1, 0, 0, 0, 1, 0, 0 },
146 { 4, 3, 1, 1, 1, 3, 1, 1 },
147 { 4, 3, 1, 1, 1, 3, 1, 1 },
148 { 6, 4, 2, 2, 2, 4, 2, 2 },
149 { 9, 6, 3, 3, 3, 6, 3, 3 },
150 { 9, 6, 3, 3, 3, 6, 3, 3 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151};
152static u8 act_time_value[][8] = {
Paolo Ciarrocchi1eb3c2e2008-04-26 17:36:39 +0200153 { 0, 0, 0, 0, 0, 0, 0, 0 },
154 { 0, 0, 0, 0, 0, 0, 0, 0 },
155 { 9, 9, 9, 2, 2, 7, 2, 2 },
156 { 19, 19, 19, 5, 4, 14, 5, 4 },
157 { 19, 19, 19, 5, 4, 14, 5, 4 },
158 { 28, 28, 28, 7, 6, 21, 7, 6 },
159 { 38, 38, 38, 10, 9, 28, 10, 9 },
160 { 38, 38, 38, 10, 9, 28, 10, 9 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161};
162static u8 rco_time_value[][8] = {
Paolo Ciarrocchi1eb3c2e2008-04-26 17:36:39 +0200163 { 0, 0, 0, 0, 0, 0, 0, 0 },
164 { 0, 0, 0, 0, 0, 0, 0, 0 },
165 { 9, 2, 0, 2, 0, 7, 1, 1 },
166 { 19, 5, 1, 5, 2, 16, 3, 2 },
167 { 19, 5, 1, 5, 2, 16, 3, 2 },
168 { 30, 9, 3, 9, 4, 25, 6, 4 },
169 { 40, 12, 4, 12, 5, 34, 12, 5 },
170 { 40, 12, 4, 12, 5, 34, 12, 5 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171};
172
173/*
174 * Printing configuration
175 */
176/* Used for chipset type printing at boot time */
Paolo Ciarrocchi1eb3c2e2008-04-26 17:36:39 +0200177static char *chipset_capability[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 "ATA", "ATA 16",
179 "ATA 33", "ATA 66",
180 "ATA 100 (1st gen)", "ATA 100 (2nd gen)",
181 "ATA 133 (1st gen)", "ATA 133 (2nd gen)"
182};
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184/*
185 * Configuration functions
186 */
Bartlomiej Zolnierkiewiczc77a89c2007-10-16 22:29:52 +0200187
188static u8 sis_ata133_get_base(ide_drive_t *drive)
189{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100190 struct pci_dev *dev = to_pci_dev(drive->hwif->dev);
Bartlomiej Zolnierkiewiczc77a89c2007-10-16 22:29:52 +0200191 u32 reg54 = 0;
192
193 pci_read_config_dword(dev, 0x54, &reg54);
194
195 return ((reg54 & 0x40000000) ? 0x70 : 0x40) + drive->dn * 4;
196}
197
198static void sis_ata16_program_timings(ide_drive_t *drive, const u8 mode)
199{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100200 struct pci_dev *dev = to_pci_dev(drive->hwif->dev);
Bartlomiej Zolnierkiewiczc77a89c2007-10-16 22:29:52 +0200201 u16 t1 = 0;
202 u8 drive_pci = 0x40 + drive->dn * 2;
203
204 const u16 pio_timings[] = { 0x000, 0x607, 0x404, 0x303, 0x301 };
205 const u16 mwdma_timings[] = { 0x008, 0x302, 0x301 };
206
207 pci_read_config_word(dev, drive_pci, &t1);
208
209 /* clear active/recovery timings */
210 t1 &= ~0x070f;
211 if (mode >= XFER_MW_DMA_0) {
212 if (chipset_family > ATA_16)
213 t1 &= ~0x8000; /* disable UDMA */
214 t1 |= mwdma_timings[mode - XFER_MW_DMA_0];
215 } else
216 t1 |= pio_timings[mode - XFER_PIO_0];
217
218 pci_write_config_word(dev, drive_pci, t1);
219}
220
221static void sis_ata100_program_timings(ide_drive_t *drive, const u8 mode)
222{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100223 struct pci_dev *dev = to_pci_dev(drive->hwif->dev);
Bartlomiej Zolnierkiewiczc77a89c2007-10-16 22:29:52 +0200224 u8 t1, drive_pci = 0x40 + drive->dn * 2;
225
226 /* timing bits: 7:4 active 3:0 recovery */
227 const u8 pio_timings[] = { 0x00, 0x67, 0x44, 0x33, 0x31 };
228 const u8 mwdma_timings[] = { 0x08, 0x32, 0x31 };
229
230 if (mode >= XFER_MW_DMA_0) {
231 u8 t2 = 0;
232
233 pci_read_config_byte(dev, drive_pci, &t2);
234 t2 &= ~0x80; /* disable UDMA */
235 pci_write_config_byte(dev, drive_pci, t2);
236
237 t1 = mwdma_timings[mode - XFER_MW_DMA_0];
238 } else
239 t1 = pio_timings[mode - XFER_PIO_0];
240
241 pci_write_config_byte(dev, drive_pci + 1, t1);
242}
243
244static void sis_ata133_program_timings(ide_drive_t *drive, const u8 mode)
245{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100246 struct pci_dev *dev = to_pci_dev(drive->hwif->dev);
Bartlomiej Zolnierkiewiczc77a89c2007-10-16 22:29:52 +0200247 u32 t1 = 0;
248 u8 drive_pci = sis_ata133_get_base(drive), clk, idx;
249
250 pci_read_config_dword(dev, drive_pci, &t1);
251
252 t1 &= 0xc0c00fff;
253 clk = (t1 & 0x08) ? ATA_133 : ATA_100;
254 if (mode >= XFER_MW_DMA_0) {
255 t1 &= ~0x04; /* disable UDMA */
256 idx = mode - XFER_MW_DMA_0 + 5;
Adrian Bunk3dfd6432007-10-20 00:32:29 +0200257 } else
Bartlomiej Zolnierkiewiczc77a89c2007-10-16 22:29:52 +0200258 idx = mode - XFER_PIO_0;
259 t1 |= ini_time_value[clk][idx] << 12;
260 t1 |= act_time_value[clk][idx] << 16;
261 t1 |= rco_time_value[clk][idx] << 24;
262
263 pci_write_config_dword(dev, drive_pci, t1);
264}
265
266static void sis_program_timings(ide_drive_t *drive, const u8 mode)
267{
268 if (chipset_family < ATA_100) /* ATA_16/33/66/100a */
269 sis_ata16_program_timings(drive, mode);
270 else if (chipset_family < ATA_133) /* ATA_100/133a */
271 sis_ata100_program_timings(drive, mode);
272 else /* ATA_133 */
273 sis_ata133_program_timings(drive, mode);
274}
275
Paolo Ciarrocchi1eb3c2e2008-04-26 17:36:39 +0200276static void config_drive_art_rwp(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
278 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100279 struct pci_dev *dev = to_pci_dev(hwif->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 u8 reg4bh = 0;
Bartlomiej Zolnierkiewiczd83fca52007-10-16 22:29:56 +0200281 u8 rw_prefetch = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 pci_read_config_byte(dev, 0x4b, &reg4bh);
284
Bartlomiej Zolnierkiewiczd83fca52007-10-16 22:29:56 +0200285 if (drive->media == ide_disk)
286 rw_prefetch = 0x11 << drive->dn;
287
288 if ((reg4bh & (0x11 << drive->dn)) != rw_prefetch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 pci_write_config_byte(dev, 0x4b, reg4bh|rw_prefetch);
290}
291
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200292static void sis_set_pio_mode(ide_drive_t *drive, const u8 pio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 config_drive_art_rwp(drive);
Bartlomiej Zolnierkiewiczc77a89c2007-10-16 22:29:52 +0200295 sis_program_timings(drive, XFER_PIO_0 + pio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
Bartlomiej Zolnierkiewicz428c6442008-01-25 22:17:18 +0100298static void sis_ata133_program_udma_timings(ide_drive_t *drive, const u8 mode)
299{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100300 struct pci_dev *dev = to_pci_dev(drive->hwif->dev);
Bartlomiej Zolnierkiewicz428c6442008-01-25 22:17:18 +0100301 u32 regdw = 0;
302 u8 drive_pci = sis_ata133_get_base(drive), clk, idx;
303
304 pci_read_config_dword(dev, drive_pci, &regdw);
305
306 regdw |= 0x04;
307 regdw &= 0xfffff00f;
308 /* check if ATA133 enable */
309 clk = (regdw & 0x08) ? ATA_133 : ATA_100;
310 idx = mode - XFER_UDMA_0;
311 regdw |= cycle_time_value[clk][idx] << 4;
312 regdw |= cvs_time_value[clk][idx] << 8;
313
314 pci_write_config_dword(dev, drive_pci, regdw);
315}
316
317static void sis_ata33_program_udma_timings(ide_drive_t *drive, const u8 mode)
318{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100319 struct pci_dev *dev = to_pci_dev(drive->hwif->dev);
Bartlomiej Zolnierkiewicz428c6442008-01-25 22:17:18 +0100320 u8 drive_pci = 0x40 + drive->dn * 2, reg = 0, i = chipset_family;
321
322 pci_read_config_byte(dev, drive_pci + 1, &reg);
323
324 /* force the UDMA bit on if we want to use UDMA */
325 reg |= 0x80;
326 /* clean reg cycle time bits */
327 reg &= ~((0xff >> (8 - cycle_time_range[i])) << cycle_time_offset[i]);
328 /* set reg cycle time bits */
329 reg |= cycle_time_value[i][mode - XFER_UDMA_0] << cycle_time_offset[i];
330
331 pci_write_config_byte(dev, drive_pci + 1, reg);
332}
333
334static void sis_program_udma_timings(ide_drive_t *drive, const u8 mode)
335{
336 if (chipset_family >= ATA_133) /* ATA_133 */
337 sis_ata133_program_udma_timings(drive, mode);
338 else /* ATA_33/66/100a/100/133a */
339 sis_ata33_program_udma_timings(drive, mode);
340}
341
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200342static void sis_set_dma_mode(ide_drive_t *drive, const u8 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Bartlomiej Zolnierkiewicz4db90a12008-01-25 22:17:18 +0100344 if (speed >= XFER_UDMA_0)
345 sis_program_udma_timings(drive, speed);
346 else
347 sis_program_timings(drive, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
Bartlomiej Zolnierkiewicz3160d542007-10-11 23:53:59 +0200350static u8 sis5513_ata133_udma_filter(ide_drive_t *drive)
351{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100352 struct pci_dev *dev = to_pci_dev(drive->hwif->dev);
Bartlomiej Zolnierkiewiczc77a89c2007-10-16 22:29:52 +0200353 u32 regdw = 0;
354 u8 drive_pci = sis_ata133_get_base(drive);
Bartlomiej Zolnierkiewicz3160d542007-10-11 23:53:59 +0200355
Bartlomiej Zolnierkiewicz3160d542007-10-11 23:53:59 +0200356 pci_read_config_dword(dev, drive_pci, &regdw);
357
358 /* if ATA133 disable, we should not set speed above UDMA5 */
359 return (regdw & 0x08) ? ATA_UDMA6 : ATA_UDMA5;
360}
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362/* Chip detection and general config */
Paolo Ciarrocchi1eb3c2e2008-04-26 17:36:39 +0200363static unsigned int __devinit init_chipset_sis5513(struct pci_dev *dev,
364 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
366 struct pci_dev *host;
367 int i = 0;
368
369 chipset_family = 0;
370
371 for (i = 0; i < ARRAY_SIZE(SiSHostChipInfo) && !chipset_family; i++) {
372
Alan Cox40cddf22006-09-30 23:27:30 -0700373 host = pci_get_device(PCI_VENDOR_ID_SI, SiSHostChipInfo[i].host_id, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 if (!host)
376 continue;
377
378 chipset_family = SiSHostChipInfo[i].chipset_family;
379
380 /* Special case for SiS630 : 630S/ET is ATA_100a */
381 if (SiSHostChipInfo[i].host_id == PCI_DEVICE_ID_SI_630) {
Auke Kok44c10132007-06-08 15:46:36 -0700382 if (host->revision >= 0x30)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 chipset_family = ATA_100a;
384 }
Alan Cox40cddf22006-09-30 23:27:30 -0700385 pci_dev_put(host);
Paolo Ciarrocchi1eb3c2e2008-04-26 17:36:39 +0200386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 printk(KERN_INFO "SIS5513: %s %s controller\n",
388 SiSHostChipInfo[i].name, chipset_capability[chipset_family]);
389 }
390
391 if (!chipset_family) { /* Belongs to pci-quirks */
392
393 u32 idemisc;
394 u16 trueid;
395
396 /* Disable ID masking and register remapping */
397 pci_read_config_dword(dev, 0x54, &idemisc);
398 pci_write_config_dword(dev, 0x54, (idemisc & 0x7fffffff));
399 pci_read_config_word(dev, PCI_DEVICE_ID, &trueid);
400 pci_write_config_dword(dev, 0x54, idemisc);
401
402 if (trueid == 0x5518) {
403 printk(KERN_INFO "SIS5513: SiS 962/963 MuTIOL IDE UDMA133 controller\n");
404 chipset_family = ATA_133;
405
406 /* Check for 5513 compability mapping
407 * We must use this, else the port enabled code will fail,
408 * as it expects the enablebits at 0x4a.
409 */
410 if ((idemisc & 0x40000000) == 0) {
411 pci_write_config_dword(dev, 0x54, idemisc | 0x40000000);
412 printk(KERN_INFO "SIS5513: Switching to 5513 register mapping\n");
413 }
414 }
415 }
416
417 if (!chipset_family) { /* Belongs to pci-quirks */
418
419 struct pci_dev *lpc_bridge;
420 u16 trueid;
421 u8 prefctl;
422 u8 idecfg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 pci_read_config_byte(dev, 0x4a, &idecfg);
425 pci_write_config_byte(dev, 0x4a, idecfg | 0x10);
426 pci_read_config_word(dev, PCI_DEVICE_ID, &trueid);
427 pci_write_config_byte(dev, 0x4a, idecfg);
428
429 if (trueid == 0x5517) { /* SiS 961/961B */
430
Alan Coxb1489002006-12-08 02:39:58 -0800431 lpc_bridge = pci_get_slot(dev->bus, 0x10); /* Bus 0, Dev 2, Fn 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 pci_read_config_byte(dev, 0x49, &prefctl);
Alan Coxb1489002006-12-08 02:39:58 -0800433 pci_dev_put(lpc_bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Auke Kok44c10132007-06-08 15:46:36 -0700435 if (lpc_bridge->revision == 0x10 && (prefctl & 0x80)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 printk(KERN_INFO "SIS5513: SiS 961B MuTIOL IDE UDMA133 controller\n");
437 chipset_family = ATA_133a;
438 } else {
439 printk(KERN_INFO "SIS5513: SiS 961 MuTIOL IDE UDMA100 controller\n");
440 chipset_family = ATA_100;
441 }
442 }
443 }
444
445 if (!chipset_family)
446 return -1;
447
448 /* Make general config ops here
449 1/ tell IDE channels to operate in Compatibility mode only
450 2/ tell old chips to allow per drive IDE timings */
451
452 {
Paolo Ciarrocchi1eb3c2e2008-04-26 17:36:39 +0200453 u8 reg;
454 u16 regw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Paolo Ciarrocchi1eb3c2e2008-04-26 17:36:39 +0200456 switch (chipset_family) {
457 case ATA_133:
458 /* SiS962 operation mode */
459 pci_read_config_word(dev, 0x50, &regw);
460 if (regw & 0x08)
461 pci_write_config_word(dev, 0x50, regw&0xfff7);
462 pci_read_config_word(dev, 0x52, &regw);
463 if (regw & 0x08)
464 pci_write_config_word(dev, 0x52, regw&0xfff7);
465 break;
466 case ATA_133a:
467 case ATA_100:
468 /* Fixup latency */
469 pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0x80);
470 /* Set compatibility bit */
471 pci_read_config_byte(dev, 0x49, &reg);
472 if (!(reg & 0x01))
473 pci_write_config_byte(dev, 0x49, reg|0x01);
474 break;
475 case ATA_100a:
476 case ATA_66:
477 /* Fixup latency */
478 pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0x10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Paolo Ciarrocchi1eb3c2e2008-04-26 17:36:39 +0200480 /* On ATA_66 chips the bit was elsewhere */
481 pci_read_config_byte(dev, 0x52, &reg);
482 if (!(reg & 0x04))
483 pci_write_config_byte(dev, 0x52, reg|0x04);
484 break;
485 case ATA_33:
486 /* On ATA_33 we didn't have a single bit to set */
487 pci_read_config_byte(dev, 0x09, &reg);
488 if ((reg & 0x0f) != 0x00)
489 pci_write_config_byte(dev, 0x09, reg&0xf0);
490 case ATA_16:
491 /* force per drive recovery and active timings
492 needed on ATA_33 and below chips */
493 pci_read_config_byte(dev, 0x52, &reg);
494 if (!(reg & 0x08))
495 pci_write_config_byte(dev, 0x52, reg|0x08);
496 break;
497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 }
499
500 return 0;
501}
502
Bartlomiej Zolnierkiewiczf2befd92007-07-09 23:17:58 +0200503struct sis_laptop {
504 u16 device;
505 u16 subvendor;
506 u16 subdevice;
507};
508
509static const struct sis_laptop sis_laptop[] = {
510 /* devid, subvendor, subdev */
511 { 0x5513, 0x1043, 0x1107 }, /* ASUS A6K */
David Lamparter1955f682007-08-01 23:46:44 +0200512 { 0x5513, 0x1734, 0x105f }, /* FSC Amilo A1630 */
Gabriel Craciunescua1d85862007-11-27 21:35:52 +0100513 { 0x5513, 0x1071, 0x8640 }, /* EasyNote K5305 */
Bartlomiej Zolnierkiewiczf2befd92007-07-09 23:17:58 +0200514 /* end marker */
515 { 0, }
516};
517
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200518static u8 __devinit ata66_sis5513(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100520 struct pci_dev *pdev = to_pci_dev(hwif->dev);
Bartlomiej Zolnierkiewiczf2befd92007-07-09 23:17:58 +0200521 const struct sis_laptop *lap = &sis_laptop[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 u8 ata66 = 0;
523
Bartlomiej Zolnierkiewiczf2befd92007-07-09 23:17:58 +0200524 while (lap->device) {
525 if (lap->device == pdev->device &&
526 lap->subvendor == pdev->subsystem_vendor &&
527 lap->subdevice == pdev->subsystem_device)
528 return ATA_CBL_PATA40_SHORT;
529 lap++;
530 }
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (chipset_family >= ATA_133) {
533 u16 regw = 0;
534 u16 reg_addr = hwif->channel ? 0x52: 0x50;
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100535 pci_read_config_word(pdev, reg_addr, &regw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 ata66 = (regw & 0x8000) ? 0 : 1;
537 } else if (chipset_family >= ATA_66) {
538 u8 reg48h = 0;
539 u8 mask = hwif->channel ? 0x20 : 0x10;
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100540 pci_read_config_byte(pdev, 0x48, &reg48h);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 ata66 = (reg48h & mask) ? 0 : 1;
542 }
Bartlomiej Zolnierkiewicz49521f92007-07-09 23:17:58 +0200543
544 return ata66 ? ATA_CBL_PATA80 : ATA_CBL_PATA40;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
Paolo Ciarrocchi1eb3c2e2008-04-26 17:36:39 +0200547static void __devinit init_hwif_sis5513(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
Bartlomiej Zolnierkiewicz18137202007-05-10 00:01:07 +0200549 u8 udma_rates[] = { 0x00, 0x00, 0x07, 0x1f, 0x3f, 0x3f, 0x7f, 0x7f };
550
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200551 hwif->set_pio_mode = &sis_set_pio_mode;
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200552 hwif->set_dma_mode = &sis_set_dma_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Bartlomiej Zolnierkiewicz3160d542007-10-11 23:53:59 +0200554 if (chipset_family >= ATA_133)
555 hwif->udma_filter = sis5513_ata133_udma_filter;
556
Bartlomiej Zolnierkiewiczbfa14b42008-02-02 19:56:31 +0100557 hwif->cable_detect = ata66_sis5513;
558
Bartlomiej Zolnierkiewicz4960ab72007-10-16 22:29:53 +0200559 if (hwif->dma_base == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Bartlomiej Zolnierkiewicz18137202007-05-10 00:01:07 +0200562 hwif->ultra_mask = udma_rates[chipset_family];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
Bartlomiej Zolnierkiewicz85620432007-10-20 00:32:34 +0200565static const struct ide_port_info sis5513_chipset __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 .name = "SIS5513",
567 .init_chipset = init_chipset_sis5513,
568 .init_hwif = init_hwif_sis5513,
Paolo Ciarrocchi1eb3c2e2008-04-26 17:36:39 +0200569 .enablebits = { {0x4a, 0x02, 0x02}, {0x4a, 0x04, 0x04} },
Bartlomiej Zolnierkiewicz5e71d9c2008-04-26 17:36:35 +0200570 .host_flags = IDE_HFLAG_LEGACY_IRQS | IDE_HFLAG_NO_AUTODMA,
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200571 .pio_mask = ATA_PIO4,
Bartlomiej Zolnierkiewicz5f8b6c32007-10-19 00:30:07 +0200572 .mwdma_mask = ATA_MWDMA2,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573};
574
575static int __devinit sis5513_init_one(struct pci_dev *dev, const struct pci_device_id *id)
576{
577 return ide_setup_pci_device(dev, &sis5513_chipset);
578}
579
Bartlomiej Zolnierkiewicz9cbcc5e2007-10-16 22:29:56 +0200580static const struct pci_device_id sis5513_pci_tbl[] = {
581 { PCI_VDEVICE(SI, PCI_DEVICE_ID_SI_5513), 0 },
582 { PCI_VDEVICE(SI, PCI_DEVICE_ID_SI_5518), 0 },
583 { PCI_VDEVICE(SI, PCI_DEVICE_ID_SI_1180), 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 { 0, },
585};
586MODULE_DEVICE_TABLE(pci, sis5513_pci_tbl);
587
588static struct pci_driver driver = {
589 .name = "SIS_IDE",
590 .id_table = sis5513_pci_tbl,
591 .probe = sis5513_init_one,
592};
593
Bartlomiej Zolnierkiewicz82ab1ee2007-01-27 13:46:56 +0100594static int __init sis5513_ide_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
596 return ide_pci_register_driver(&driver);
597}
598
599module_init(sis5513_ide_init);
600
601MODULE_AUTHOR("Lionel Bouton, L C Chang, Andre Hedrick, Vojtech Pavlik");
602MODULE_DESCRIPTION("PCI driver module for SIS IDE");
603MODULE_LICENSE("GPL");
604
605/*
606 * TODO:
607 * - CLEANUP
608 * - Use drivers/ide/ide-timing.h !
609 * - More checks in the config registers (force values instead of
610 * relying on the BIOS setting them correctly).
611 * - Further optimisations ?
612 * . for example ATA66+ regs 0x48 & 0x4A
613 */