Blame view

drivers/ide/sis5513.c 18.1 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
   * Copyright (C) 1999-2000	Andre Hedrick <andre@linux-ide.org>
   * Copyright (C) 2002		Lionel Bouton <Lionel.Bouton@inet6.fr>, Maintainer
   * Copyright (C) 2003		Vojtech Pavlik <vojtech@suse.cz>
e13ee546b   Bartlomiej Zolnierkiewicz   sis5513: fix PIO ...
5
   * Copyright (C) 2007-2009	Bartlomiej Zolnierkiewicz
6b8cf7724   Bartlomiej Zolnierkiewicz   sis5513: PIO mode...
6
   *
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
   * May be copied or modified under the terms of the GNU General Public License
   *
   *
   * Thanks :
   *
   * SiS Taiwan		: for direct support and hardware.
   * Daniela Engert	: for initial ATA100 advices and numerous others.
   * John Fremlin, Manfred Spraul, Dave Morgan, Peter Kjellerstedt	:
   *			  for checking code correctness, providing patches.
   *
   *
   * Original tests and design on the SiS620 chipset.
   * ATA100 tests and design on the SiS735 chipset.
   * ATA16/33 support from specs
   * ATA133 support for SiS961/962 by L.C. Chang <lcchang@sis.com.tw>
   * ATA133 961/962/963 fixes by Vojtech Pavlik <vojtech@suse.cz>
   *
   * Documentation:
   *	SiS chipset documentation available under NDA to companies only
   *      (not to individuals).
   */
  
  /*
   * The original SiS5513 comes from a SiS5511/55112/5513 chipset. The original
   * SiS5513 was also used in the SiS5596/5513 chipset. Thus if we see a SiS5511
   * or SiS5596, we can assume we see the first MWDMA-16 capable SiS5513 chip.
   *
   * Later SiS chipsets integrated the 5513 functionality into the NorthBridge,
   * starting with SiS5571 and up to SiS745. The PCI ID didn't change, though. We
   * can figure out that we have a more modern and more capable 5513 by looking
   * for the respective NorthBridge IDs.
   *
   * Even later (96x family) SiS chipsets use the MuTIOL link and place the 5513
   * into the SouthBrige. Here we cannot rely on looking up the NorthBridge PCI
   * ID, while the now ATA-133 capable 5513 still has the same PCI ID.
   * Fortunately the 5513 can be 'unmasked' by fiddling with some config space
   * bits, changing its device id to the true one - 5517 for 961 and 5518 for
   * 962/963.
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
46
47
48
  #include <linux/types.h>
  #include <linux/module.h>
  #include <linux/kernel.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
49
50
51
  #include <linux/pci.h>
  #include <linux/init.h>
  #include <linux/ide.h>
ced3ec8aa   Bartlomiej Zolnierkiewicz   ide: prefix messa...
52
  #define DRV_NAME "sis5513"
25985edce   Lucas De Marchi   Fix common misspe...
53
  /* registers layout and init values are chipset family dependent */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
54
55
56
57
  
  #define ATA_16		0x01
  #define ATA_33		0x02
  #define ATA_66		0x03
1eb3c2ee1   Paolo Ciarrocchi   IDE: Coding Style...
58
  #define ATA_100a	0x04 /* SiS730/SiS550 is ATA100 with ATA66 layout */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
59
  #define ATA_100		0x05
1eb3c2ee1   Paolo Ciarrocchi   IDE: Coding Style...
60
61
  #define ATA_133a	0x06 /* SiS961b with 133 support */
  #define ATA_133		0x07 /* SiS962/963 */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
62
63
64
65
66
67
68
69
70
71
72
73
  
  static u8 chipset_family;
  
  /*
   * Devices supported
   */
  static const struct {
  	const char *name;
  	u16 host_id;
  	u8 chipset_family;
  	u8 flags;
  } SiSHostChipInfo[] = {
47d4b9066   David Wang   [PATCH] sis5513: ...
74
75
  	{ "SiS968",	PCI_DEVICE_ID_SI_968,	ATA_133  },
  	{ "SiS966",	PCI_DEVICE_ID_SI_966,	ATA_133  },
14351f8e5   Aurelien Jarno   [PATCH] sis5513: ...
76
  	{ "SiS965",	PCI_DEVICE_ID_SI_965,	ATA_133  },
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
  	{ "SiS745",	PCI_DEVICE_ID_SI_745,	ATA_100  },
  	{ "SiS735",	PCI_DEVICE_ID_SI_735,	ATA_100  },
  	{ "SiS733",	PCI_DEVICE_ID_SI_733,	ATA_100  },
  	{ "SiS635",	PCI_DEVICE_ID_SI_635,	ATA_100  },
  	{ "SiS633",	PCI_DEVICE_ID_SI_633,	ATA_100  },
  
  	{ "SiS730",	PCI_DEVICE_ID_SI_730,	ATA_100a },
  	{ "SiS550",	PCI_DEVICE_ID_SI_550,	ATA_100a },
  
  	{ "SiS640",	PCI_DEVICE_ID_SI_640,	ATA_66   },
  	{ "SiS630",	PCI_DEVICE_ID_SI_630,	ATA_66   },
  	{ "SiS620",	PCI_DEVICE_ID_SI_620,	ATA_66   },
  	{ "SiS540",	PCI_DEVICE_ID_SI_540,	ATA_66   },
  	{ "SiS530",	PCI_DEVICE_ID_SI_530,	ATA_66   },
  
  	{ "SiS5600",	PCI_DEVICE_ID_SI_5600,	ATA_33   },
  	{ "SiS5598",	PCI_DEVICE_ID_SI_5598,	ATA_33   },
  	{ "SiS5597",	PCI_DEVICE_ID_SI_5597,	ATA_33   },
  	{ "SiS5591/2",	PCI_DEVICE_ID_SI_5591,	ATA_33   },
  	{ "SiS5582",	PCI_DEVICE_ID_SI_5582,	ATA_33   },
  	{ "SiS5581",	PCI_DEVICE_ID_SI_5581,	ATA_33   },
  
  	{ "SiS5596",	PCI_DEVICE_ID_SI_5596,	ATA_16   },
  	{ "SiS5571",	PCI_DEVICE_ID_SI_5571,	ATA_16   },
d266ab889   Alan Cox   [PATCH] Small fix...
101
  	{ "SiS5517",	PCI_DEVICE_ID_SI_5517,	ATA_16   },
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
102
103
104
105
106
107
108
109
  	{ "SiS551x",	PCI_DEVICE_ID_SI_5511,	ATA_16   },
  };
  
  /* Cycle time bits and values vary across chip dma capabilities
     These three arrays hold the register layout and the values to set.
     Indexed by chipset_family and (dma_mode - XFER_UDMA_0) */
  
  /* {0, ATA_16, ATA_33, ATA_66, ATA_100a, ATA_100, ATA_133} */
1eb3c2ee1   Paolo Ciarrocchi   IDE: Coding Style...
110
111
  static u8 cycle_time_offset[] = { 0, 0, 5, 4, 4, 0, 0 };
  static u8 cycle_time_range[]  = { 0, 0, 2, 3, 3, 4, 4 };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
112
  static u8 cycle_time_value[][XFER_UDMA_6 - XFER_UDMA_0 + 1] = {
1eb3c2ee1   Paolo Ciarrocchi   IDE: Coding Style...
113
114
115
116
117
118
119
120
121
  	{  0,  0, 0, 0, 0, 0, 0 }, /* no UDMA */
  	{  0,  0, 0, 0, 0, 0, 0 }, /* no UDMA */
  	{  3,  2, 1, 0, 0, 0, 0 }, /* ATA_33 */
  	{  7,  5, 3, 2, 1, 0, 0 }, /* ATA_66 */
  	{  7,  5, 3, 2, 1, 0, 0 }, /* ATA_100a (730 specific),
  				      different cycle_time range and offset */
  	{ 11,  7, 5, 4, 2, 1, 0 }, /* ATA_100 */
  	{ 15, 10, 7, 5, 3, 2, 1 }, /* ATA_133a (earliest 691 southbridges) */
  	{ 15, 10, 7, 5, 3, 2, 1 }, /* ATA_133 */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
122
123
124
125
  };
  /* CRC Valid Setup Time vary across IDE clock setting 33/66/100/133
     See SiS962 data sheet for more detail */
  static u8 cvs_time_value[][XFER_UDMA_6 - XFER_UDMA_0 + 1] = {
1eb3c2ee1   Paolo Ciarrocchi   IDE: Coding Style...
126
127
128
129
130
131
132
133
  	{ 0, 0, 0, 0, 0, 0, 0 }, /* no UDMA */
  	{ 0, 0, 0, 0, 0, 0, 0 }, /* no UDMA */
  	{ 2, 1, 1, 0, 0, 0, 0 },
  	{ 4, 3, 2, 1, 0, 0, 0 },
  	{ 4, 3, 2, 1, 0, 0, 0 },
  	{ 6, 4, 3, 1, 1, 1, 0 },
  	{ 9, 6, 4, 2, 2, 2, 2 },
  	{ 9, 6, 4, 2, 2, 2, 2 },
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
134
135
136
137
138
  };
  /* Initialize time, Active time, Recovery time vary across
     IDE clock settings. These 3 arrays hold the register value
     for PIO0/1/2/3/4 and DMA0/1/2 mode in order */
  static u8 ini_time_value[][8] = {
1eb3c2ee1   Paolo Ciarrocchi   IDE: Coding Style...
139
140
141
142
143
144
145
146
  	{ 0, 0, 0, 0, 0, 0, 0, 0 },
  	{ 0, 0, 0, 0, 0, 0, 0, 0 },
  	{ 2, 1, 0, 0, 0, 1, 0, 0 },
  	{ 4, 3, 1, 1, 1, 3, 1, 1 },
  	{ 4, 3, 1, 1, 1, 3, 1, 1 },
  	{ 6, 4, 2, 2, 2, 4, 2, 2 },
  	{ 9, 6, 3, 3, 3, 6, 3, 3 },
  	{ 9, 6, 3, 3, 3, 6, 3, 3 },
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
147
148
  };
  static u8 act_time_value[][8] = {
1eb3c2ee1   Paolo Ciarrocchi   IDE: Coding Style...
149
150
151
152
153
154
155
156
  	{  0,  0,  0,  0, 0,  0,  0, 0 },
  	{  0,  0,  0,  0, 0,  0,  0, 0 },
  	{  9,  9,  9,  2, 2,  7,  2, 2 },
  	{ 19, 19, 19,  5, 4, 14,  5, 4 },
  	{ 19, 19, 19,  5, 4, 14,  5, 4 },
  	{ 28, 28, 28,  7, 6, 21,  7, 6 },
  	{ 38, 38, 38, 10, 9, 28, 10, 9 },
  	{ 38, 38, 38, 10, 9, 28, 10, 9 },
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
157
158
  };
  static u8 rco_time_value[][8] = {
1eb3c2ee1   Paolo Ciarrocchi   IDE: Coding Style...
159
160
161
162
163
164
165
166
  	{  0,  0, 0,  0, 0,  0,  0, 0 },
  	{  0,  0, 0,  0, 0,  0,  0, 0 },
  	{  9,  2, 0,  2, 0,  7,  1, 1 },
  	{ 19,  5, 1,  5, 2, 16,  3, 2 },
  	{ 19,  5, 1,  5, 2, 16,  3, 2 },
  	{ 30,  9, 3,  9, 4, 25,  6, 4 },
  	{ 40, 12, 4, 12, 5, 34, 12, 5 },
  	{ 40, 12, 4, 12, 5, 34, 12, 5 },
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
167
168
169
170
171
172
  };
  
  /*
   * Printing configuration
   */
  /* Used for chipset type printing at boot time */
1eb3c2ee1   Paolo Ciarrocchi   IDE: Coding Style...
173
  static char *chipset_capability[] = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
174
175
176
177
178
  	"ATA", "ATA 16",
  	"ATA 33", "ATA 66",
  	"ATA 100 (1st gen)", "ATA 100 (2nd gen)",
  	"ATA 133 (1st gen)", "ATA 133 (2nd gen)"
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
179
180
181
  /*
   * Configuration functions
   */
c77a89cd9   Bartlomiej Zolnierkiewicz   sis5513: DMA setu...
182
183
184
  
  static u8 sis_ata133_get_base(ide_drive_t *drive)
  {
36501650e   Bartlomiej Zolnierkiewicz   ide: keep pointer...
185
  	struct pci_dev *dev = to_pci_dev(drive->hwif->dev);
c77a89cd9   Bartlomiej Zolnierkiewicz   sis5513: DMA setu...
186
187
188
189
190
191
192
193
194
  	u32 reg54 = 0;
  
  	pci_read_config_dword(dev, 0x54, &reg54);
  
  	return ((reg54 & 0x40000000) ? 0x70 : 0x40) + drive->dn * 4;
  }
  
  static void sis_ata16_program_timings(ide_drive_t *drive, const u8 mode)
  {
36501650e   Bartlomiej Zolnierkiewicz   ide: keep pointer...
195
  	struct pci_dev *dev = to_pci_dev(drive->hwif->dev);
c77a89cd9   Bartlomiej Zolnierkiewicz   sis5513: DMA setu...
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
  	u16 t1 = 0;
  	u8 drive_pci = 0x40 + drive->dn * 2;
  
  	const u16 pio_timings[]   = { 0x000, 0x607, 0x404, 0x303, 0x301 };
  	const u16 mwdma_timings[] = { 0x008, 0x302, 0x301 };
  
  	pci_read_config_word(dev, drive_pci, &t1);
  
  	/* clear active/recovery timings */
  	t1 &= ~0x070f;
  	if (mode >= XFER_MW_DMA_0) {
  		if (chipset_family > ATA_16)
  			t1 &= ~0x8000;	/* disable UDMA */
  		t1 |= mwdma_timings[mode - XFER_MW_DMA_0];
  	} else
  		t1 |= pio_timings[mode - XFER_PIO_0];
  
  	pci_write_config_word(dev, drive_pci, t1);
  }
  
  static void sis_ata100_program_timings(ide_drive_t *drive, const u8 mode)
  {
36501650e   Bartlomiej Zolnierkiewicz   ide: keep pointer...
218
  	struct pci_dev *dev = to_pci_dev(drive->hwif->dev);
c77a89cd9   Bartlomiej Zolnierkiewicz   sis5513: DMA setu...
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
  	u8 t1, drive_pci = 0x40 + drive->dn * 2;
  
  	/* timing bits: 7:4 active 3:0 recovery */
  	const u8 pio_timings[]   = { 0x00, 0x67, 0x44, 0x33, 0x31 };
  	const u8 mwdma_timings[] = { 0x08, 0x32, 0x31 };
  
  	if (mode >= XFER_MW_DMA_0) {
  		u8 t2 = 0;
  
  		pci_read_config_byte(dev, drive_pci, &t2);
  		t2 &= ~0x80;	/* disable UDMA */
  		pci_write_config_byte(dev, drive_pci, t2);
  
  		t1 = mwdma_timings[mode - XFER_MW_DMA_0];
  	} else
  		t1 = pio_timings[mode - XFER_PIO_0];
  
  	pci_write_config_byte(dev, drive_pci + 1, t1);
  }
  
  static void sis_ata133_program_timings(ide_drive_t *drive, const u8 mode)
  {
36501650e   Bartlomiej Zolnierkiewicz   ide: keep pointer...
241
  	struct pci_dev *dev = to_pci_dev(drive->hwif->dev);
c77a89cd9   Bartlomiej Zolnierkiewicz   sis5513: DMA setu...
242
243
244
245
246
247
248
249
250
251
  	u32 t1 = 0;
  	u8 drive_pci = sis_ata133_get_base(drive), clk, idx;
  
  	pci_read_config_dword(dev, drive_pci, &t1);
  
  	t1 &= 0xc0c00fff;
  	clk = (t1 & 0x08) ? ATA_133 : ATA_100;
  	if (mode >= XFER_MW_DMA_0) {
  		t1 &= ~0x04;	/* disable UDMA */
  		idx = mode - XFER_MW_DMA_0 + 5;
3dfd6433f   Adrian Bunk   ide/pci/sis5513.c...
252
  	} else
c77a89cd9   Bartlomiej Zolnierkiewicz   sis5513: DMA setu...
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
  		idx = mode - XFER_PIO_0;
  	t1 |= ini_time_value[clk][idx] << 12;
  	t1 |= act_time_value[clk][idx] << 16;
  	t1 |= rco_time_value[clk][idx] << 24;
  
  	pci_write_config_dword(dev, drive_pci, t1);
  }
  
  static void sis_program_timings(ide_drive_t *drive, const u8 mode)
  {
  	if (chipset_family < ATA_100)		/* ATA_16/33/66/100a */
  		sis_ata16_program_timings(drive, mode);
  	else if (chipset_family < ATA_133)	/* ATA_100/133a */
  		sis_ata100_program_timings(drive, mode);
  	else					/* ATA_133 */
  		sis_ata133_program_timings(drive, mode);
  }
1eb3c2ee1   Paolo Ciarrocchi   IDE: Coding Style...
270
  static void config_drive_art_rwp(ide_drive_t *drive)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
271
  {
898ec223f   Bartlomiej Zolnierkiewicz   ide: remove HWIF(...
272
  	ide_hwif_t *hwif	= drive->hwif;
36501650e   Bartlomiej Zolnierkiewicz   ide: keep pointer...
273
  	struct pci_dev *dev	= to_pci_dev(hwif->dev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
274
  	u8 reg4bh		= 0;
d83fca58d   Bartlomiej Zolnierkiewicz   sis5513: clear pr...
275
  	u8 rw_prefetch		= 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
276

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
277
  	pci_read_config_byte(dev, 0x4b, &reg4bh);
e13ee546b   Bartlomiej Zolnierkiewicz   sis5513: fix PIO ...
278
  	rw_prefetch = reg4bh & ~(0x11 << drive->dn);
d83fca58d   Bartlomiej Zolnierkiewicz   sis5513: clear pr...
279
  	if (drive->media == ide_disk)
e13ee546b   Bartlomiej Zolnierkiewicz   sis5513: fix PIO ...
280
  		rw_prefetch |= 0x11 << drive->dn;
d83fca58d   Bartlomiej Zolnierkiewicz   sis5513: clear pr...
281

e13ee546b   Bartlomiej Zolnierkiewicz   sis5513: fix PIO ...
282
283
  	if (reg4bh != rw_prefetch)
  		pci_write_config_byte(dev, 0x4b, rw_prefetch);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
284
  }
e085b3cae   Bartlomiej Zolnierkiewicz   ide: change ->set...
285
  static void sis_set_pio_mode(ide_hwif_t *hwif, ide_drive_t *drive)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
286
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
287
  	config_drive_art_rwp(drive);
e085b3cae   Bartlomiej Zolnierkiewicz   ide: change ->set...
288
  	sis_program_timings(drive, drive->pio_mode);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
289
  }
428c6440e   Bartlomiej Zolnierkiewicz   sis5513: factor o...
290
  static void sis_ata133_program_udma_timings(ide_drive_t *drive, const u8 mode)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
291
  {
36501650e   Bartlomiej Zolnierkiewicz   ide: keep pointer...
292
  	struct pci_dev *dev = to_pci_dev(drive->hwif->dev);
428c6440e   Bartlomiej Zolnierkiewicz   sis5513: factor o...
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
  	u32 regdw = 0;
  	u8 drive_pci = sis_ata133_get_base(drive), clk, idx;
  
  	pci_read_config_dword(dev, drive_pci, &regdw);
  
  	regdw |= 0x04;
  	regdw &= 0xfffff00f;
  	/* check if ATA133 enable */
  	clk = (regdw & 0x08) ? ATA_133 : ATA_100;
  	idx = mode - XFER_UDMA_0;
  	regdw |= cycle_time_value[clk][idx] << 4;
  	regdw |= cvs_time_value[clk][idx] << 8;
  
  	pci_write_config_dword(dev, drive_pci, regdw);
  }
  
  static void sis_ata33_program_udma_timings(ide_drive_t *drive, const u8 mode)
  {
36501650e   Bartlomiej Zolnierkiewicz   ide: keep pointer...
311
  	struct pci_dev *dev = to_pci_dev(drive->hwif->dev);
428c6440e   Bartlomiej Zolnierkiewicz   sis5513: factor o...
312
313
314
315
316
317
318
319
320
321
322
323
324
  	u8 drive_pci = 0x40 + drive->dn * 2, reg = 0, i = chipset_family;
  
  	pci_read_config_byte(dev, drive_pci + 1, &reg);
  
  	/* force the UDMA bit on if we want to use UDMA */
  	reg |= 0x80;
  	/* clean reg cycle time bits */
  	reg &= ~((0xff >> (8 - cycle_time_range[i])) << cycle_time_offset[i]);
  	/* set reg cycle time bits */
  	reg |= cycle_time_value[i][mode - XFER_UDMA_0] << cycle_time_offset[i];
  
  	pci_write_config_byte(dev, drive_pci + 1, reg);
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
325

428c6440e   Bartlomiej Zolnierkiewicz   sis5513: factor o...
326
327
328
329
330
331
332
  static void sis_program_udma_timings(ide_drive_t *drive, const u8 mode)
  {
  	if (chipset_family >= ATA_133)	/* ATA_133 */
  		sis_ata133_program_udma_timings(drive, mode);
  	else				/* ATA_33/66/100a/100/133a */
  		sis_ata33_program_udma_timings(drive, mode);
  }
8776168ca   Bartlomiej Zolnierkiewicz   ide: change ->set...
333
  static void sis_set_dma_mode(ide_hwif_t *hwif, ide_drive_t *drive)
428c6440e   Bartlomiej Zolnierkiewicz   sis5513: factor o...
334
  {
8776168ca   Bartlomiej Zolnierkiewicz   ide: change ->set...
335
  	const u8 speed = drive->dma_mode;
4db90a145   Bartlomiej Zolnierkiewicz   ide: add IDE_HFLA...
336
337
338
339
  	if (speed >= XFER_UDMA_0)
  		sis_program_udma_timings(drive, speed);
  	else
  		sis_program_timings(drive, speed);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
340
  }
ac95beedf   Bartlomiej Zolnierkiewicz   ide: add struct i...
341
  static u8 sis_ata133_udma_filter(ide_drive_t *drive)
3160d5416   Bartlomiej Zolnierkiewicz   sis5513: add ->ud...
342
  {
36501650e   Bartlomiej Zolnierkiewicz   ide: keep pointer...
343
  	struct pci_dev *dev = to_pci_dev(drive->hwif->dev);
c77a89cd9   Bartlomiej Zolnierkiewicz   sis5513: DMA setu...
344
345
  	u32 regdw = 0;
  	u8 drive_pci = sis_ata133_get_base(drive);
3160d5416   Bartlomiej Zolnierkiewicz   sis5513: add ->ud...
346

3160d5416   Bartlomiej Zolnierkiewicz   sis5513: add ->ud...
347
348
349
350
351
  	pci_read_config_dword(dev, drive_pci, &regdw);
  
  	/* if ATA133 disable, we should not set speed above UDMA5 */
  	return (regdw & 0x08) ? ATA_UDMA6 : ATA_UDMA5;
  }
4764b6840   Bartlomiej Zolnierkiewicz   sis5513: fail ear...
352
  static int __devinit sis_find_family(struct pci_dev *dev)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
353
354
355
356
357
358
359
  {
  	struct pci_dev *host;
  	int i = 0;
  
  	chipset_family = 0;
  
  	for (i = 0; i < ARRAY_SIZE(SiSHostChipInfo) && !chipset_family; i++) {
40cddf2cb   Alan Cox   [PATCH] sis5513: ...
360
  		host = pci_get_device(PCI_VENDOR_ID_SI, SiSHostChipInfo[i].host_id, NULL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
361
362
363
364
365
366
367
368
  
  		if (!host)
  			continue;
  
  		chipset_family = SiSHostChipInfo[i].chipset_family;
  
  		/* Special case for SiS630 : 630S/ET is ATA_100a */
  		if (SiSHostChipInfo[i].host_id == PCI_DEVICE_ID_SI_630) {
44c10138f   Auke Kok   PCI: Change all d...
369
  			if (host->revision >= 0x30)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
370
371
  				chipset_family = ATA_100a;
  		}
40cddf2cb   Alan Cox   [PATCH] sis5513: ...
372
  		pci_dev_put(host);
1eb3c2ee1   Paolo Ciarrocchi   IDE: Coding Style...
373

ced3ec8aa   Bartlomiej Zolnierkiewicz   ide: prefix messa...
374
375
  		printk(KERN_INFO DRV_NAME " %s: %s %s controller
  ",
28cfd8af5   Bartlomiej Zolnierkiewicz   ide: include PCI ...
376
377
  			pci_name(dev), SiSHostChipInfo[i].name,
  			chipset_capability[chipset_family]);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
378
379
380
381
382
383
384
385
386
387
388
389
390
391
  	}
  
  	if (!chipset_family) { /* Belongs to pci-quirks */
  
  			u32 idemisc;
  			u16 trueid;
  
  			/* Disable ID masking and register remapping */
  			pci_read_config_dword(dev, 0x54, &idemisc);
  			pci_write_config_dword(dev, 0x54, (idemisc & 0x7fffffff));
  			pci_read_config_word(dev, PCI_DEVICE_ID, &trueid);
  			pci_write_config_dword(dev, 0x54, idemisc);
  
  			if (trueid == 0x5518) {
ced3ec8aa   Bartlomiej Zolnierkiewicz   ide: prefix messa...
392
393
  				printk(KERN_INFO DRV_NAME " %s: SiS 962/963 MuTIOL IDE UDMA133 controller
  ",
28cfd8af5   Bartlomiej Zolnierkiewicz   ide: include PCI ...
394
  					pci_name(dev));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
395
  				chipset_family = ATA_133;
25985edce   Lucas De Marchi   Fix common misspe...
396
  				/* Check for 5513 compatibility mapping
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
397
398
399
400
401
  				 * We must use this, else the port enabled code will fail,
  				 * as it expects the enablebits at 0x4a.
  				 */
  				if ((idemisc & 0x40000000) == 0) {
  					pci_write_config_dword(dev, 0x54, idemisc | 0x40000000);
ced3ec8aa   Bartlomiej Zolnierkiewicz   ide: prefix messa...
402
403
  					printk(KERN_INFO DRV_NAME " %s: Switching to 5513 register mapping
  ",
28cfd8af5   Bartlomiej Zolnierkiewicz   ide: include PCI ...
404
  						pci_name(dev));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
405
406
407
408
409
410
411
412
413
414
  				}
  			}
  	}
  
  	if (!chipset_family) { /* Belongs to pci-quirks */
  
  			struct pci_dev *lpc_bridge;
  			u16 trueid;
  			u8 prefctl;
  			u8 idecfg;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
415
416
417
418
419
420
421
  
  			pci_read_config_byte(dev, 0x4a, &idecfg);
  			pci_write_config_byte(dev, 0x4a, idecfg | 0x10);
  			pci_read_config_word(dev, PCI_DEVICE_ID, &trueid);
  			pci_write_config_byte(dev, 0x4a, idecfg);
  
  			if (trueid == 0x5517) { /* SiS 961/961B */
b14890099   Alan Cox   [PATCH] ide: more...
422
  				lpc_bridge = pci_get_slot(dev->bus, 0x10); /* Bus 0, Dev 2, Fn 0 */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
423
  				pci_read_config_byte(dev, 0x49, &prefctl);
b14890099   Alan Cox   [PATCH] ide: more...
424
  				pci_dev_put(lpc_bridge);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
425

44c10138f   Auke Kok   PCI: Change all d...
426
  				if (lpc_bridge->revision == 0x10 && (prefctl & 0x80)) {
ced3ec8aa   Bartlomiej Zolnierkiewicz   ide: prefix messa...
427
428
  					printk(KERN_INFO DRV_NAME " %s: SiS 961B MuTIOL IDE UDMA133 controller
  ",
28cfd8af5   Bartlomiej Zolnierkiewicz   ide: include PCI ...
429
  						pci_name(dev));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
430
431
  					chipset_family = ATA_133a;
  				} else {
ced3ec8aa   Bartlomiej Zolnierkiewicz   ide: prefix messa...
432
433
  					printk(KERN_INFO DRV_NAME " %s: SiS 961 MuTIOL IDE UDMA100 controller
  ",
28cfd8af5   Bartlomiej Zolnierkiewicz   ide: include PCI ...
434
  						pci_name(dev));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
435
436
437
438
  					chipset_family = ATA_100;
  				}
  			}
  	}
4764b6840   Bartlomiej Zolnierkiewicz   sis5513: fail ear...
439
440
  	return chipset_family;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
441

2ed0ef543   Bartlomiej Zolnierkiewicz   ide: fix ->init_c...
442
  static int init_chipset_sis5513(struct pci_dev *dev)
4764b6840   Bartlomiej Zolnierkiewicz   sis5513: fail ear...
443
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
444
445
446
  	/* Make general config ops here
  	   1/ tell IDE channels to operate in Compatibility mode only
  	   2/ tell old chips to allow per drive IDE timings */
1eb3c2ee1   Paolo Ciarrocchi   IDE: Coding Style...
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
  	u8 reg;
  	u16 regw;
  
  	switch (chipset_family) {
  	case ATA_133:
  		/* SiS962 operation mode */
  		pci_read_config_word(dev, 0x50, &regw);
  		if (regw & 0x08)
  			pci_write_config_word(dev, 0x50, regw&0xfff7);
  		pci_read_config_word(dev, 0x52, &regw);
  		if (regw & 0x08)
  			pci_write_config_word(dev, 0x52, regw&0xfff7);
  		break;
  	case ATA_133a:
  	case ATA_100:
  		/* Fixup latency */
  		pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0x80);
  		/* Set compatibility bit */
  		pci_read_config_byte(dev, 0x49, &reg);
  		if (!(reg & 0x01))
  			pci_write_config_byte(dev, 0x49, reg|0x01);
  		break;
  	case ATA_100a:
  	case ATA_66:
  		/* Fixup latency */
  		pci_write_config_byte(dev, PCI_LATENCY_TIMER, 0x10);
  
  		/* On ATA_66 chips the bit was elsewhere */
  		pci_read_config_byte(dev, 0x52, &reg);
  		if (!(reg & 0x04))
  			pci_write_config_byte(dev, 0x52, reg|0x04);
  		break;
  	case ATA_33:
  		/* On ATA_33 we didn't have a single bit to set */
  		pci_read_config_byte(dev, 0x09, &reg);
  		if ((reg & 0x0f) != 0x00)
  			pci_write_config_byte(dev, 0x09, reg&0xf0);
  	case ATA_16:
  		/* force per drive recovery and active timings
  		   needed on ATA_33 and below chips */
  		pci_read_config_byte(dev, 0x52, &reg);
  		if (!(reg & 0x08))
  			pci_write_config_byte(dev, 0x52, reg|0x08);
  		break;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
492
493
494
  
  	return 0;
  }
f2befd9e8   Bartlomiej Zolnierkiewicz   sis5513: backport...
495
496
497
498
499
500
501
502
503
  struct sis_laptop {
  	u16 device;
  	u16 subvendor;
  	u16 subdevice;
  };
  
  static const struct sis_laptop sis_laptop[] = {
  	/* devid, subvendor, subdev */
  	{ 0x5513, 0x1043, 0x1107 },	/* ASUS A6K */
1955f6814   David Lamparter   sis5513: Add FSC ...
504
  	{ 0x5513, 0x1734, 0x105f },	/* FSC Amilo A1630 */
a1d85864d   Gabriel Craciunescu   sis5513.c: Add Pa...
505
  	{ 0x5513, 0x1071, 0x8640 },     /* EasyNote K5305 */
f2befd9e8   Bartlomiej Zolnierkiewicz   sis5513: backport...
506
507
508
  	/* end marker */
  	{ 0, }
  };
f454cbe8c   Bartlomiej Zolnierkiewicz   ide: ->cable_dete...
509
  static u8 sis_cable_detect(ide_hwif_t *hwif)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
510
  {
36501650e   Bartlomiej Zolnierkiewicz   ide: keep pointer...
511
  	struct pci_dev *pdev = to_pci_dev(hwif->dev);
f2befd9e8   Bartlomiej Zolnierkiewicz   sis5513: backport...
512
  	const struct sis_laptop *lap = &sis_laptop[0];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
513
  	u8 ata66 = 0;
f2befd9e8   Bartlomiej Zolnierkiewicz   sis5513: backport...
514
515
516
517
518
519
520
  	while (lap->device) {
  		if (lap->device == pdev->device &&
  		    lap->subvendor == pdev->subsystem_vendor &&
  		    lap->subdevice == pdev->subsystem_device)
  			return ATA_CBL_PATA40_SHORT;
  		lap++;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
521
522
523
  	if (chipset_family >= ATA_133) {
  		u16 regw = 0;
  		u16 reg_addr = hwif->channel ? 0x52: 0x50;
36501650e   Bartlomiej Zolnierkiewicz   ide: keep pointer...
524
  		pci_read_config_word(pdev, reg_addr, &regw);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
525
526
527
528
  		ata66 = (regw & 0x8000) ? 0 : 1;
  	} else if (chipset_family >= ATA_66) {
  		u8 reg48h = 0;
  		u8 mask = hwif->channel ? 0x20 : 0x10;
36501650e   Bartlomiej Zolnierkiewicz   ide: keep pointer...
529
  		pci_read_config_byte(pdev, 0x48, &reg48h);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
530
531
  		ata66 = (reg48h & mask) ? 0 : 1;
  	}
49521f97c   Bartlomiej Zolnierkiewicz   ide: add short ca...
532
533
  
  	return ata66 ? ATA_CBL_PATA80 : ATA_CBL_PATA40;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
534
  }
ac95beedf   Bartlomiej Zolnierkiewicz   ide: add struct i...
535
536
537
538
539
  static const struct ide_port_ops sis_port_ops = {
  	.set_pio_mode		= sis_set_pio_mode,
  	.set_dma_mode		= sis_set_dma_mode,
  	.cable_detect		= sis_cable_detect,
  };
3160d5416   Bartlomiej Zolnierkiewicz   sis5513: add ->ud...
540

ac95beedf   Bartlomiej Zolnierkiewicz   ide: add struct i...
541
542
543
544
545
546
  static const struct ide_port_ops sis_ata133_port_ops = {
  	.set_pio_mode		= sis_set_pio_mode,
  	.set_dma_mode		= sis_set_dma_mode,
  	.udma_filter		= sis_ata133_udma_filter,
  	.cable_detect		= sis_cable_detect,
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
547

856204360   Bartlomiej Zolnierkiewicz   ide: constify str...
548
  static const struct ide_port_info sis5513_chipset __devinitdata = {
ced3ec8aa   Bartlomiej Zolnierkiewicz   ide: prefix messa...
549
  	.name		= DRV_NAME,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
550
  	.init_chipset	= init_chipset_sis5513,
1eb3c2ee1   Paolo Ciarrocchi   IDE: Coding Style...
551
  	.enablebits	= { {0x4a, 0x02, 0x02}, {0x4a, 0x04, 0x04} },
2467922a5   Bartlomiej Zolnierkiewicz   ide: remove no lo...
552
  	.host_flags	= IDE_HFLAG_NO_AUTODMA,
4099d1432   Bartlomiej Zolnierkiewicz   ide: add PIO masks
553
  	.pio_mask	= ATA_PIO4,
5f8b6c348   Bartlomiej Zolnierkiewicz   ide: add ->mwdma_...
554
  	.mwdma_mask	= ATA_MWDMA2,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
555
556
557
558
  };
  
  static int __devinit sis5513_init_one(struct pci_dev *dev, const struct pci_device_id *id)
  {
4764b6840   Bartlomiej Zolnierkiewicz   sis5513: fail ear...
559
560
  	struct ide_port_info d = sis5513_chipset;
  	u8 udma_rates[] = { 0x00, 0x00, 0x07, 0x1f, 0x3f, 0x3f, 0x7f, 0x7f };
cd18f69f8   Bartlomiej Zolnierkiewicz   sis5513: add miss...
561
562
563
564
565
  	int rc;
  
  	rc = pci_enable_device(dev);
  	if (rc)
  		return rc;
4764b6840   Bartlomiej Zolnierkiewicz   sis5513: fail ear...
566
567
568
  
  	if (sis_find_family(dev) == 0)
  		return -ENOTSUPP;
ac95beedf   Bartlomiej Zolnierkiewicz   ide: add struct i...
569
570
571
572
  	if (chipset_family >= ATA_133)
  		d.port_ops = &sis_ata133_port_ops;
  	else
  		d.port_ops = &sis_port_ops;
4764b6840   Bartlomiej Zolnierkiewicz   sis5513: fail ear...
573
  	d.udma_mask = udma_rates[chipset_family];
6cdf6eb35   Bartlomiej Zolnierkiewicz   ide: add ->dev an...
574
  	return ide_pci_init_one(dev, &d, NULL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
575
  }
1ceb906b4   Bartlomiej Zolnierkiewicz   sis5513: add ->re...
576
577
578
579
580
  static void __devexit sis5513_remove(struct pci_dev *dev)
  {
  	ide_pci_remove(dev);
  	pci_disable_device(dev);
  }
9cbcc5e3c   Bartlomiej Zolnierkiewicz   ide: use PCI_VDEV...
581
582
583
584
  static const struct pci_device_id sis5513_pci_tbl[] = {
  	{ PCI_VDEVICE(SI, PCI_DEVICE_ID_SI_5513), 0 },
  	{ PCI_VDEVICE(SI, PCI_DEVICE_ID_SI_5518), 0 },
  	{ PCI_VDEVICE(SI, PCI_DEVICE_ID_SI_1180), 0 },
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
585
586
587
  	{ 0, },
  };
  MODULE_DEVICE_TABLE(pci, sis5513_pci_tbl);
a9ab09e26   Bartlomiej Zolnierkiewicz   ide: use unique n...
588
  static struct pci_driver sis5513_pci_driver = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
589
590
591
  	.name		= "SIS_IDE",
  	.id_table	= sis5513_pci_tbl,
  	.probe		= sis5513_init_one,
a69999e28   Adrian Bunk   drivers/ide/pci/:...
592
  	.remove		= __devexit_p(sis5513_remove),
feb22b7f8   Bartlomiej Zolnierkiewicz   ide: add proper P...
593
594
  	.suspend	= ide_pci_suspend,
  	.resume		= ide_pci_resume,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
595
  };
82ab1eece   Bartlomiej Zolnierkiewicz   ide: add missing ...
596
  static int __init sis5513_ide_init(void)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
597
  {
a9ab09e26   Bartlomiej Zolnierkiewicz   ide: use unique n...
598
  	return ide_pci_register_driver(&sis5513_pci_driver);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
599
  }
1ceb906b4   Bartlomiej Zolnierkiewicz   sis5513: add ->re...
600
601
  static void __exit sis5513_ide_exit(void)
  {
a9ab09e26   Bartlomiej Zolnierkiewicz   ide: use unique n...
602
  	pci_unregister_driver(&sis5513_pci_driver);
1ceb906b4   Bartlomiej Zolnierkiewicz   sis5513: add ->re...
603
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
604
  module_init(sis5513_ide_init);
1ceb906b4   Bartlomiej Zolnierkiewicz   sis5513: add ->re...
605
  module_exit(sis5513_ide_exit);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
606
607
608
609
  
  MODULE_AUTHOR("Lionel Bouton, L C Chang, Andre Hedrick, Vojtech Pavlik");
  MODULE_DESCRIPTION("PCI driver module for SIS IDE");
  MODULE_LICENSE("GPL");