]>
Commit | Line | Data |
---|---|---|
60e7a82f | 1 | /* |
83a6d4ab | 2 | * linux/drivers/ide/pci/cmd64x.c Version 1.50 May 10, 2007 |
1da177e4 LT |
3 | * |
4 | * cmd64x.c: Enable interrupts at initialization time on Ultra/PCI machines. | |
1da177e4 LT |
5 | * Due to massive hardware bugs, UltraDMA is only supported |
6 | * on the 646U2 and not on the 646U. | |
7 | * | |
8 | * Copyright (C) 1998 Eddie C. Dost ([email protected]) | |
9 | * Copyright (C) 1998 David S. Miller ([email protected]) | |
10 | * | |
11 | * Copyright (C) 1999-2002 Andre Hedrick <[email protected]> | |
f92d50e6 | 12 | * Copyright (C) 2007 MontaVista Software, Inc. <[email protected]> |
1da177e4 LT |
13 | */ |
14 | ||
1da177e4 LT |
15 | #include <linux/module.h> |
16 | #include <linux/types.h> | |
17 | #include <linux/pci.h> | |
18 | #include <linux/delay.h> | |
19 | #include <linux/hdreg.h> | |
20 | #include <linux/ide.h> | |
21 | #include <linux/init.h> | |
22 | ||
23 | #include <asm/io.h> | |
24 | ||
25 | #define DISPLAY_CMD64X_TIMINGS | |
26 | ||
27 | #define CMD_DEBUG 0 | |
28 | ||
29 | #if CMD_DEBUG | |
30 | #define cmdprintk(x...) printk(x) | |
31 | #else | |
32 | #define cmdprintk(x...) | |
33 | #endif | |
34 | ||
35 | /* | |
36 | * CMD64x specific registers definition. | |
37 | */ | |
38 | #define CFR 0x50 | |
e51e2528 | 39 | #define CFR_INTR_CH0 0x04 |
1da177e4 | 40 | #define CNTRL 0x51 |
5826b318 SS |
41 | #define CNTRL_ENA_1ST 0x04 |
42 | #define CNTRL_ENA_2ND 0x08 | |
43 | #define CNTRL_DIS_RA0 0x40 | |
44 | #define CNTRL_DIS_RA1 0x80 | |
1da177e4 LT |
45 | |
46 | #define CMDTIM 0x52 | |
47 | #define ARTTIM0 0x53 | |
48 | #define DRWTIM0 0x54 | |
49 | #define ARTTIM1 0x55 | |
50 | #define DRWTIM1 0x56 | |
51 | #define ARTTIM23 0x57 | |
52 | #define ARTTIM23_DIS_RA2 0x04 | |
53 | #define ARTTIM23_DIS_RA3 0x08 | |
54 | #define ARTTIM23_INTR_CH1 0x10 | |
1da177e4 LT |
55 | #define DRWTIM2 0x58 |
56 | #define BRST 0x59 | |
57 | #define DRWTIM3 0x5b | |
58 | ||
59 | #define BMIDECR0 0x70 | |
60 | #define MRDMODE 0x71 | |
61 | #define MRDMODE_INTR_CH0 0x04 | |
62 | #define MRDMODE_INTR_CH1 0x08 | |
63 | #define MRDMODE_BLK_CH0 0x10 | |
64 | #define MRDMODE_BLK_CH1 0x20 | |
65 | #define BMIDESR0 0x72 | |
66 | #define UDIDETCR0 0x73 | |
67 | #define DTPR0 0x74 | |
68 | #define BMIDECR1 0x78 | |
69 | #define BMIDECSR 0x79 | |
70 | #define BMIDESR1 0x7A | |
71 | #define UDIDETCR1 0x7B | |
72 | #define DTPR1 0x7C | |
73 | ||
ecfd80e4 | 74 | #if defined(DISPLAY_CMD64X_TIMINGS) && defined(CONFIG_IDE_PROC_FS) |
1da177e4 LT |
75 | #include <linux/stat.h> |
76 | #include <linux/proc_fs.h> | |
77 | ||
78 | static u8 cmd64x_proc = 0; | |
79 | ||
80 | #define CMD_MAX_DEVS 5 | |
81 | ||
82 | static struct pci_dev *cmd_devs[CMD_MAX_DEVS]; | |
83 | static int n_cmd_devs; | |
84 | ||
85 | static char * print_cmd64x_get_info (char *buf, struct pci_dev *dev, int index) | |
86 | { | |
87 | char *p = buf; | |
1da177e4 LT |
88 | u8 reg72 = 0, reg73 = 0; /* primary */ |
89 | u8 reg7a = 0, reg7b = 0; /* secondary */ | |
5826b318 | 90 | u8 reg50 = 1, reg51 = 1, reg57 = 0, reg71 = 0; /* extra */ |
1da177e4 LT |
91 | |
92 | p += sprintf(p, "\nController: %d\n", index); | |
5826b318 SS |
93 | p += sprintf(p, "PCI-%x Chipset.\n", dev->device); |
94 | ||
1da177e4 | 95 | (void) pci_read_config_byte(dev, CFR, ®50); |
5826b318 SS |
96 | (void) pci_read_config_byte(dev, CNTRL, ®51); |
97 | (void) pci_read_config_byte(dev, ARTTIM23, ®57); | |
1da177e4 LT |
98 | (void) pci_read_config_byte(dev, MRDMODE, ®71); |
99 | (void) pci_read_config_byte(dev, BMIDESR0, ®72); | |
100 | (void) pci_read_config_byte(dev, UDIDETCR0, ®73); | |
101 | (void) pci_read_config_byte(dev, BMIDESR1, ®7a); | |
102 | (void) pci_read_config_byte(dev, UDIDETCR1, ®7b); | |
103 | ||
5826b318 | 104 | /* PCI0643/6 originally didn't have the primary channel enable bit */ |
5826b318 | 105 | if ((dev->device == PCI_DEVICE_ID_CMD_643) || |
44c10138 | 106 | (dev->device == PCI_DEVICE_ID_CMD_646 && dev->revision < 3)) |
5826b318 SS |
107 | reg51 |= CNTRL_ENA_1ST; |
108 | ||
109 | p += sprintf(p, "---------------- Primary Channel " | |
110 | "---------------- Secondary Channel ------------\n"); | |
111 | p += sprintf(p, " %s %s\n", | |
112 | (reg51 & CNTRL_ENA_1ST) ? "enabled " : "disabled", | |
113 | (reg51 & CNTRL_ENA_2ND) ? "enabled " : "disabled"); | |
114 | p += sprintf(p, "---------------- drive0 --------- drive1 " | |
115 | "-------- drive0 --------- drive1 ------\n"); | |
116 | p += sprintf(p, "DMA enabled: %s %s" | |
117 | " %s %s\n", | |
118 | (reg72 & 0x20) ? "yes" : "no ", (reg72 & 0x40) ? "yes" : "no ", | |
119 | (reg7a & 0x20) ? "yes" : "no ", (reg7a & 0x40) ? "yes" : "no "); | |
120 | p += sprintf(p, "UltraDMA mode: %s (%c) %s (%c)", | |
121 | ( reg73 & 0x01) ? " on" : "off", | |
122 | ((reg73 & 0x30) == 0x30) ? ((reg73 & 0x04) ? '3' : '0') : | |
123 | ((reg73 & 0x30) == 0x20) ? ((reg73 & 0x04) ? '3' : '1') : | |
124 | ((reg73 & 0x30) == 0x10) ? ((reg73 & 0x04) ? '4' : '2') : | |
125 | ((reg73 & 0x30) == 0x00) ? ((reg73 & 0x04) ? '5' : '2') : '?', | |
126 | ( reg73 & 0x02) ? " on" : "off", | |
127 | ((reg73 & 0xC0) == 0xC0) ? ((reg73 & 0x08) ? '3' : '0') : | |
128 | ((reg73 & 0xC0) == 0x80) ? ((reg73 & 0x08) ? '3' : '1') : | |
129 | ((reg73 & 0xC0) == 0x40) ? ((reg73 & 0x08) ? '4' : '2') : | |
130 | ((reg73 & 0xC0) == 0x00) ? ((reg73 & 0x08) ? '5' : '2') : '?'); | |
131 | p += sprintf(p, " %s (%c) %s (%c)\n", | |
132 | ( reg7b & 0x01) ? " on" : "off", | |
133 | ((reg7b & 0x30) == 0x30) ? ((reg7b & 0x04) ? '3' : '0') : | |
134 | ((reg7b & 0x30) == 0x20) ? ((reg7b & 0x04) ? '3' : '1') : | |
135 | ((reg7b & 0x30) == 0x10) ? ((reg7b & 0x04) ? '4' : '2') : | |
136 | ((reg7b & 0x30) == 0x00) ? ((reg7b & 0x04) ? '5' : '2') : '?', | |
137 | ( reg7b & 0x02) ? " on" : "off", | |
138 | ((reg7b & 0xC0) == 0xC0) ? ((reg7b & 0x08) ? '3' : '0') : | |
139 | ((reg7b & 0xC0) == 0x80) ? ((reg7b & 0x08) ? '3' : '1') : | |
140 | ((reg7b & 0xC0) == 0x40) ? ((reg7b & 0x08) ? '4' : '2') : | |
141 | ((reg7b & 0xC0) == 0x00) ? ((reg7b & 0x08) ? '5' : '2') : '?'); | |
142 | p += sprintf(p, "Interrupt: %s, %s %s, %s\n", | |
143 | (reg71 & MRDMODE_BLK_CH0 ) ? "blocked" : "enabled", | |
144 | (reg50 & CFR_INTR_CH0 ) ? "pending" : "clear ", | |
145 | (reg71 & MRDMODE_BLK_CH1 ) ? "blocked" : "enabled", | |
146 | (reg57 & ARTTIM23_INTR_CH1) ? "pending" : "clear "); | |
1da177e4 LT |
147 | |
148 | return (char *)p; | |
149 | } | |
150 | ||
151 | static int cmd64x_get_info (char *buffer, char **addr, off_t offset, int count) | |
152 | { | |
153 | char *p = buffer; | |
154 | int i; | |
155 | ||
1da177e4 LT |
156 | for (i = 0; i < n_cmd_devs; i++) { |
157 | struct pci_dev *dev = cmd_devs[i]; | |
158 | p = print_cmd64x_get_info(p, dev, i); | |
159 | } | |
160 | return p-buffer; /* => must be less than 4k! */ | |
161 | } | |
162 | ||
ecfd80e4 | 163 | #endif /* defined(DISPLAY_CMD64X_TIMINGS) && defined(CONFIG_IDE_PROC_FS) */ |
1da177e4 | 164 | |
e277a1aa SS |
165 | static u8 quantize_timing(int timing, int quant) |
166 | { | |
167 | return (timing + quant - 1) / quant; | |
168 | } | |
169 | ||
1da177e4 | 170 | /* |
60e7a82f SS |
171 | * This routine calculates active/recovery counts and then writes them into |
172 | * the chipset registers. | |
1da177e4 | 173 | */ |
60e7a82f | 174 | static void program_cycle_times (ide_drive_t *drive, int cycle_time, int active_time) |
1da177e4 | 175 | { |
60e7a82f SS |
176 | struct pci_dev *dev = HWIF(drive)->pci_dev; |
177 | int clock_time = 1000 / system_bus_clock(); | |
178 | u8 cycle_count, active_count, recovery_count, drwtim; | |
179 | static const u8 recovery_values[] = | |
1da177e4 | 180 | {15, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0}; |
60e7a82f SS |
181 | static const u8 drwtim_regs[4] = {DRWTIM0, DRWTIM1, DRWTIM2, DRWTIM3}; |
182 | ||
183 | cmdprintk("program_cycle_times parameters: total=%d, active=%d\n", | |
184 | cycle_time, active_time); | |
185 | ||
186 | cycle_count = quantize_timing( cycle_time, clock_time); | |
187 | active_count = quantize_timing(active_time, clock_time); | |
188 | recovery_count = cycle_count - active_count; | |
189 | ||
1da177e4 | 190 | /* |
60e7a82f SS |
191 | * In case we've got too long recovery phase, try to lengthen |
192 | * the active phase | |
1da177e4 | 193 | */ |
60e7a82f SS |
194 | if (recovery_count > 16) { |
195 | active_count += recovery_count - 16; | |
196 | recovery_count = 16; | |
1da177e4 | 197 | } |
60e7a82f SS |
198 | if (active_count > 16) /* shouldn't actually happen... */ |
199 | active_count = 16; | |
200 | ||
201 | cmdprintk("Final counts: total=%d, active=%d, recovery=%d\n", | |
202 | cycle_count, active_count, recovery_count); | |
1da177e4 LT |
203 | |
204 | /* | |
205 | * Convert values to internal chipset representation | |
206 | */ | |
60e7a82f SS |
207 | recovery_count = recovery_values[recovery_count]; |
208 | active_count &= 0x0f; | |
1da177e4 | 209 | |
60e7a82f SS |
210 | /* Program the active/recovery counts into the DRWTIM register */ |
211 | drwtim = (active_count << 4) | recovery_count; | |
212 | (void) pci_write_config_byte(dev, drwtim_regs[drive->dn], drwtim); | |
213 | cmdprintk("Write 0x%02x to reg 0x%x\n", drwtim, drwtim_regs[drive->dn]); | |
1da177e4 LT |
214 | } |
215 | ||
216 | /* | |
26bcb879 BZ |
217 | * This routine writes into the chipset registers |
218 | * PIO setup/active/recovery timings. | |
1da177e4 | 219 | */ |
26bcb879 | 220 | static void cmd64x_tune_pio(ide_drive_t *drive, const u8 pio) |
1da177e4 | 221 | { |
60e7a82f SS |
222 | ide_hwif_t *hwif = HWIF(drive); |
223 | struct pci_dev *dev = hwif->pci_dev; | |
7dd00083 | 224 | unsigned int cycle_time; |
26bcb879 BZ |
225 | u8 setup_count, arttim = 0; |
226 | ||
60e7a82f SS |
227 | static const u8 setup_values[] = {0x40, 0x40, 0x40, 0x80, 0, 0xc0}; |
228 | static const u8 arttim_regs[4] = {ARTTIM0, ARTTIM1, ARTTIM23, ARTTIM23}; | |
7dd00083 | 229 | |
26bcb879 | 230 | cycle_time = ide_pio_cycle_time(drive, pio); |
1da177e4 | 231 | |
7dd00083 | 232 | program_cycle_times(drive, cycle_time, |
26bcb879 | 233 | ide_pio_timings[pio].active_time); |
1da177e4 | 234 | |
26bcb879 | 235 | setup_count = quantize_timing(ide_pio_timings[pio].setup_time, |
60e7a82f SS |
236 | 1000 / system_bus_clock()); |
237 | ||
238 | /* | |
239 | * The primary channel has individual address setup timing registers | |
240 | * for each drive and the hardware selects the slowest timing itself. | |
241 | * The secondary channel has one common register and we have to select | |
242 | * the slowest address setup timing ourselves. | |
243 | */ | |
244 | if (hwif->channel) { | |
245 | ide_drive_t *drives = hwif->drives; | |
246 | ||
247 | drive->drive_data = setup_count; | |
248 | setup_count = max(drives[0].drive_data, drives[1].drive_data); | |
1da177e4 | 249 | } |
1da177e4 | 250 | |
60e7a82f SS |
251 | if (setup_count > 5) /* shouldn't actually happen... */ |
252 | setup_count = 5; | |
253 | cmdprintk("Final address setup count: %d\n", setup_count); | |
1da177e4 | 254 | |
60e7a82f SS |
255 | /* |
256 | * Program the address setup clocks into the ARTTIM registers. | |
257 | * Avoid clearing the secondary channel's interrupt bit. | |
258 | */ | |
259 | (void) pci_read_config_byte (dev, arttim_regs[drive->dn], &arttim); | |
260 | if (hwif->channel) | |
261 | arttim &= ~ARTTIM23_INTR_CH1; | |
262 | arttim &= ~0xc0; | |
263 | arttim |= setup_values[setup_count]; | |
264 | (void) pci_write_config_byte(dev, arttim_regs[drive->dn], arttim); | |
265 | cmdprintk("Write 0x%02x to reg 0x%x\n", arttim, arttim_regs[drive->dn]); | |
f92d50e6 SS |
266 | } |
267 | ||
268 | /* | |
269 | * Attempts to set drive's PIO mode. | |
26bcb879 | 270 | * Special cases are 8: prefetch off, 9: prefetch on (both never worked) |
f92d50e6 | 271 | */ |
26bcb879 BZ |
272 | |
273 | static void cmd64x_set_pio_mode(ide_drive_t *drive, const u8 pio) | |
f92d50e6 SS |
274 | { |
275 | /* | |
276 | * Filter out the prefetch control values | |
277 | * to prevent PIO5 from being programmed | |
278 | */ | |
279 | if (pio == 8 || pio == 9) | |
280 | return; | |
281 | ||
26bcb879 | 282 | cmd64x_tune_pio(drive, pio); |
f92d50e6 | 283 | (void) ide_config_drive_speed(drive, XFER_PIO_0 + pio); |
1da177e4 LT |
284 | } |
285 | ||
f212ff28 | 286 | static int cmd64x_tune_chipset(ide_drive_t *drive, const u8 speed) |
1da177e4 LT |
287 | { |
288 | ide_hwif_t *hwif = HWIF(drive); | |
289 | struct pci_dev *dev = hwif->pci_dev; | |
60e7a82f SS |
290 | u8 unit = drive->dn & 0x01; |
291 | u8 regU = 0, pciU = hwif->channel ? UDIDETCR1 : UDIDETCR0; | |
1da177e4 | 292 | |
f92d50e6 | 293 | if (speed >= XFER_SW_DMA_0) { |
1da177e4 | 294 | (void) pci_read_config_byte(dev, pciU, ®U); |
1da177e4 | 295 | regU &= ~(unit ? 0xCA : 0x35); |
1da177e4 LT |
296 | } |
297 | ||
298 | switch(speed) { | |
60e7a82f SS |
299 | case XFER_UDMA_5: |
300 | regU |= unit ? 0x0A : 0x05; | |
301 | break; | |
302 | case XFER_UDMA_4: | |
303 | regU |= unit ? 0x4A : 0x15; | |
304 | break; | |
305 | case XFER_UDMA_3: | |
306 | regU |= unit ? 0x8A : 0x25; | |
307 | break; | |
308 | case XFER_UDMA_2: | |
309 | regU |= unit ? 0x42 : 0x11; | |
310 | break; | |
311 | case XFER_UDMA_1: | |
312 | regU |= unit ? 0x82 : 0x21; | |
313 | break; | |
314 | case XFER_UDMA_0: | |
315 | regU |= unit ? 0xC2 : 0x31; | |
316 | break; | |
317 | case XFER_MW_DMA_2: | |
318 | program_cycle_times(drive, 120, 70); | |
319 | break; | |
320 | case XFER_MW_DMA_1: | |
321 | program_cycle_times(drive, 150, 80); | |
322 | break; | |
323 | case XFER_MW_DMA_0: | |
324 | program_cycle_times(drive, 480, 215); | |
325 | break; | |
60e7a82f SS |
326 | default: |
327 | return 1; | |
1da177e4 LT |
328 | } |
329 | ||
60e7a82f | 330 | if (speed >= XFER_SW_DMA_0) |
1da177e4 | 331 | (void) pci_write_config_byte(dev, pciU, regU); |
1da177e4 | 332 | |
60e7a82f | 333 | return ide_config_drive_speed(drive, speed); |
1da177e4 LT |
334 | } |
335 | ||
1da177e4 LT |
336 | static int cmd64x_config_drive_for_dma (ide_drive_t *drive) |
337 | { | |
4728d546 | 338 | if (ide_tune_dma(drive)) |
3608b5d7 | 339 | return 0; |
1da177e4 | 340 | |
d8f4469d | 341 | if (ide_use_fast_pio(drive)) |
26bcb879 | 342 | ide_set_max_pio(drive); |
d8f4469d | 343 | |
3608b5d7 | 344 | return -1; |
1da177e4 LT |
345 | } |
346 | ||
66602c83 | 347 | static int cmd648_ide_dma_end (ide_drive_t *drive) |
1da177e4 | 348 | { |
66602c83 SS |
349 | ide_hwif_t *hwif = HWIF(drive); |
350 | int err = __ide_dma_end(drive); | |
351 | u8 irq_mask = hwif->channel ? MRDMODE_INTR_CH1 : | |
352 | MRDMODE_INTR_CH0; | |
353 | u8 mrdmode = inb(hwif->dma_master + 0x01); | |
354 | ||
355 | /* clear the interrupt bit */ | |
356 | outb(mrdmode | irq_mask, hwif->dma_master + 0x01); | |
357 | ||
358 | return err; | |
1da177e4 LT |
359 | } |
360 | ||
361 | static int cmd64x_ide_dma_end (ide_drive_t *drive) | |
362 | { | |
1da177e4 LT |
363 | ide_hwif_t *hwif = HWIF(drive); |
364 | struct pci_dev *dev = hwif->pci_dev; | |
66602c83 SS |
365 | int irq_reg = hwif->channel ? ARTTIM23 : CFR; |
366 | u8 irq_mask = hwif->channel ? ARTTIM23_INTR_CH1 : | |
367 | CFR_INTR_CH0; | |
368 | u8 irq_stat = 0; | |
369 | int err = __ide_dma_end(drive); | |
1da177e4 | 370 | |
66602c83 SS |
371 | (void) pci_read_config_byte(dev, irq_reg, &irq_stat); |
372 | /* clear the interrupt bit */ | |
373 | (void) pci_write_config_byte(dev, irq_reg, irq_stat | irq_mask); | |
374 | ||
375 | return err; | |
376 | } | |
377 | ||
378 | static int cmd648_ide_dma_test_irq (ide_drive_t *drive) | |
379 | { | |
380 | ide_hwif_t *hwif = HWIF(drive); | |
381 | u8 irq_mask = hwif->channel ? MRDMODE_INTR_CH1 : | |
382 | MRDMODE_INTR_CH0; | |
383 | u8 dma_stat = inb(hwif->dma_status); | |
384 | u8 mrdmode = inb(hwif->dma_master + 0x01); | |
385 | ||
386 | #ifdef DEBUG | |
387 | printk("%s: dma_stat: 0x%02x mrdmode: 0x%02x irq_mask: 0x%02x\n", | |
388 | drive->name, dma_stat, mrdmode, irq_mask); | |
389 | #endif | |
390 | if (!(mrdmode & irq_mask)) | |
391 | return 0; | |
392 | ||
393 | /* return 1 if INTR asserted */ | |
394 | if (dma_stat & 4) | |
395 | return 1; | |
396 | ||
397 | return 0; | |
1da177e4 LT |
398 | } |
399 | ||
400 | static int cmd64x_ide_dma_test_irq (ide_drive_t *drive) | |
401 | { | |
e51e2528 SS |
402 | ide_hwif_t *hwif = HWIF(drive); |
403 | struct pci_dev *dev = hwif->pci_dev; | |
66602c83 SS |
404 | int irq_reg = hwif->channel ? ARTTIM23 : CFR; |
405 | u8 irq_mask = hwif->channel ? ARTTIM23_INTR_CH1 : | |
406 | CFR_INTR_CH0; | |
407 | u8 dma_stat = inb(hwif->dma_status); | |
408 | u8 irq_stat = 0; | |
e51e2528 SS |
409 | |
410 | (void) pci_read_config_byte(dev, irq_reg, &irq_stat); | |
1da177e4 | 411 | |
1da177e4 | 412 | #ifdef DEBUG |
66602c83 SS |
413 | printk("%s: dma_stat: 0x%02x irq_stat: 0x%02x irq_mask: 0x%02x\n", |
414 | drive->name, dma_stat, irq_stat, irq_mask); | |
1da177e4 | 415 | #endif |
66602c83 | 416 | if (!(irq_stat & irq_mask)) |
1da177e4 LT |
417 | return 0; |
418 | ||
419 | /* return 1 if INTR asserted */ | |
66602c83 | 420 | if (dma_stat & 4) |
1da177e4 LT |
421 | return 1; |
422 | ||
423 | return 0; | |
424 | } | |
425 | ||
426 | /* | |
427 | * ASUS P55T2P4D with CMD646 chipset revision 0x01 requires the old | |
428 | * event order for DMA transfers. | |
429 | */ | |
430 | ||
431 | static int cmd646_1_ide_dma_end (ide_drive_t *drive) | |
432 | { | |
433 | ide_hwif_t *hwif = HWIF(drive); | |
434 | u8 dma_stat = 0, dma_cmd = 0; | |
435 | ||
436 | drive->waiting_for_dma = 0; | |
437 | /* get DMA status */ | |
0ecdca26 | 438 | dma_stat = inb(hwif->dma_status); |
1da177e4 | 439 | /* read DMA command state */ |
0ecdca26 | 440 | dma_cmd = inb(hwif->dma_command); |
1da177e4 | 441 | /* stop DMA */ |
0ecdca26 | 442 | outb(dma_cmd & ~1, hwif->dma_command); |
1da177e4 | 443 | /* clear the INTR & ERROR bits */ |
0ecdca26 | 444 | outb(dma_stat | 6, hwif->dma_status); |
1da177e4 LT |
445 | /* and free any DMA resources */ |
446 | ide_destroy_dmatable(drive); | |
447 | /* verify good DMA status */ | |
448 | return (dma_stat & 7) != 4; | |
449 | } | |
450 | ||
451 | static unsigned int __devinit init_chipset_cmd64x(struct pci_dev *dev, const char *name) | |
452 | { | |
1da177e4 LT |
453 | u8 mrdmode = 0; |
454 | ||
83a6d4ab SS |
455 | if (dev->device == PCI_DEVICE_ID_CMD_646) { |
456 | u8 rev = 0; | |
1da177e4 | 457 | |
83a6d4ab SS |
458 | pci_read_config_byte(dev, PCI_REVISION_ID, &rev); |
459 | ||
460 | switch (rev) { | |
461 | case 0x07: | |
462 | case 0x05: | |
b37c6b84 | 463 | printk("%s: UltraDMA capable\n", name); |
1da177e4 | 464 | break; |
83a6d4ab | 465 | case 0x03: |
1da177e4 | 466 | default: |
b37c6b84 | 467 | printk("%s: MultiWord DMA force limited\n", name); |
83a6d4ab SS |
468 | break; |
469 | case 0x01: | |
470 | printk("%s: MultiWord DMA limited, " | |
471 | "IRQ workaround enabled\n", name); | |
1da177e4 | 472 | break; |
83a6d4ab | 473 | } |
1da177e4 LT |
474 | } |
475 | ||
476 | /* Set a good latency timer and cache line size value. */ | |
477 | (void) pci_write_config_byte(dev, PCI_LATENCY_TIMER, 64); | |
478 | /* FIXME: pci_set_master() to ensure a good latency timer value */ | |
479 | ||
83a6d4ab SS |
480 | /* |
481 | * Enable interrupts, select MEMORY READ LINE for reads. | |
482 | * | |
483 | * NOTE: although not mentioned in the PCI0646U specs, | |
484 | * bits 0-1 are write only and won't be read back as | |
485 | * set or not -- PCI0646U2 specs clarify this point. | |
1da177e4 | 486 | */ |
83a6d4ab SS |
487 | (void) pci_read_config_byte (dev, MRDMODE, &mrdmode); |
488 | mrdmode &= ~0x30; | |
489 | (void) pci_write_config_byte(dev, MRDMODE, (mrdmode | 0x02)); | |
1da177e4 | 490 | |
ecfd80e4 | 491 | #if defined(DISPLAY_CMD64X_TIMINGS) && defined(CONFIG_IDE_PROC_FS) |
1da177e4 LT |
492 | |
493 | cmd_devs[n_cmd_devs++] = dev; | |
494 | ||
495 | if (!cmd64x_proc) { | |
496 | cmd64x_proc = 1; | |
497 | ide_pci_create_host_proc("cmd64x", cmd64x_get_info); | |
498 | } | |
ecfd80e4 | 499 | #endif /* DISPLAY_CMD64X_TIMINGS && CONFIG_IDE_PROC_FS */ |
1da177e4 LT |
500 | |
501 | return 0; | |
502 | } | |
503 | ||
49521f97 | 504 | static u8 __devinit ata66_cmd64x(ide_hwif_t *hwif) |
1da177e4 | 505 | { |
83a6d4ab SS |
506 | struct pci_dev *dev = hwif->pci_dev; |
507 | u8 bmidecsr = 0, mask = hwif->channel ? 0x02 : 0x01; | |
1da177e4 | 508 | |
83a6d4ab SS |
509 | switch (dev->device) { |
510 | case PCI_DEVICE_ID_CMD_648: | |
511 | case PCI_DEVICE_ID_CMD_649: | |
512 | pci_read_config_byte(dev, BMIDECSR, &bmidecsr); | |
49521f97 | 513 | return (bmidecsr & mask) ? ATA_CBL_PATA80 : ATA_CBL_PATA40; |
83a6d4ab | 514 | default: |
49521f97 | 515 | return ATA_CBL_PATA40; |
1da177e4 | 516 | } |
1da177e4 LT |
517 | } |
518 | ||
519 | static void __devinit init_hwif_cmd64x(ide_hwif_t *hwif) | |
520 | { | |
521 | struct pci_dev *dev = hwif->pci_dev; | |
83a6d4ab | 522 | u8 rev = 0; |
1da177e4 | 523 | |
83a6d4ab | 524 | pci_read_config_byte(dev, PCI_REVISION_ID, &rev); |
1da177e4 | 525 | |
26bcb879 | 526 | hwif->set_pio_mode = &cmd64x_set_pio_mode; |
1da177e4 LT |
527 | hwif->speedproc = &cmd64x_tune_chipset; |
528 | ||
f92d50e6 SS |
529 | hwif->drives[0].autotune = hwif->drives[1].autotune = 1; |
530 | ||
531 | if (!hwif->dma_base) | |
1da177e4 | 532 | return; |
1da177e4 | 533 | |
83a6d4ab SS |
534 | hwif->atapi_dma = 1; |
535 | hwif->mwdma_mask = 0x07; | |
18137207 BZ |
536 | hwif->ultra_mask = hwif->cds->udma_mask; |
537 | ||
2d5eaa6d BZ |
538 | /* |
539 | * UltraDMA only supported on PCI646U and PCI646U2, which | |
540 | * correspond to revisions 0x03, 0x05 and 0x07 respectively. | |
541 | * Actually, although the CMD tech support people won't | |
542 | * tell me the details, the 0x03 revision cannot support | |
543 | * UDMA correctly without hardware modifications, and even | |
544 | * then it only works with Quantum disks due to some | |
545 | * hold time assumptions in the 646U part which are fixed | |
546 | * in the 646U2. | |
547 | * | |
548 | * So we only do UltraDMA on revision 0x05 and 0x07 chipsets. | |
549 | */ | |
83a6d4ab | 550 | if (dev->device == PCI_DEVICE_ID_CMD_646 && rev < 5) |
18137207 | 551 | hwif->ultra_mask = 0x00; |
1da177e4 | 552 | |
1da177e4 | 553 | hwif->ide_dma_check = &cmd64x_config_drive_for_dma; |
83a6d4ab | 554 | |
49521f97 BZ |
555 | if (hwif->cbl != ATA_CBL_PATA40_SHORT) |
556 | hwif->cbl = ata66_cmd64x(hwif); | |
1da177e4 | 557 | |
83a6d4ab | 558 | switch (dev->device) { |
66602c83 SS |
559 | case PCI_DEVICE_ID_CMD_648: |
560 | case PCI_DEVICE_ID_CMD_649: | |
561 | alt_irq_bits: | |
562 | hwif->ide_dma_end = &cmd648_ide_dma_end; | |
563 | hwif->ide_dma_test_irq = &cmd648_ide_dma_test_irq; | |
564 | break; | |
565 | case PCI_DEVICE_ID_CMD_646: | |
1da177e4 | 566 | hwif->chipset = ide_cmd646; |
83a6d4ab | 567 | if (rev == 0x01) { |
1da177e4 | 568 | hwif->ide_dma_end = &cmd646_1_ide_dma_end; |
66602c83 | 569 | break; |
83a6d4ab | 570 | } else if (rev >= 0x03) |
66602c83 SS |
571 | goto alt_irq_bits; |
572 | /* fall thru */ | |
573 | default: | |
574 | hwif->ide_dma_end = &cmd64x_ide_dma_end; | |
575 | hwif->ide_dma_test_irq = &cmd64x_ide_dma_test_irq; | |
576 | break; | |
1da177e4 LT |
577 | } |
578 | ||
1da177e4 LT |
579 | if (!noautodma) |
580 | hwif->autodma = 1; | |
83a6d4ab | 581 | hwif->drives[0].autodma = hwif->drives[1].autodma = hwif->autodma; |
1da177e4 LT |
582 | } |
583 | ||
7accbffd SS |
584 | static int __devinit init_setup_cmd64x(struct pci_dev *dev, ide_pci_device_t *d) |
585 | { | |
586 | return ide_setup_pci_device(dev, d); | |
587 | } | |
588 | ||
589 | static int __devinit init_setup_cmd646(struct pci_dev *dev, ide_pci_device_t *d) | |
590 | { | |
7accbffd SS |
591 | /* |
592 | * The original PCI0646 didn't have the primary channel enable bit, | |
593 | * it appeared starting with PCI0646U (i.e. revision ID 3). | |
594 | */ | |
44c10138 | 595 | if (dev->revision < 3) |
7accbffd SS |
596 | d->enablebits[0].reg = 0; |
597 | ||
598 | return ide_setup_pci_device(dev, d); | |
599 | } | |
600 | ||
1da177e4 LT |
601 | static ide_pci_device_t cmd64x_chipsets[] __devinitdata = { |
602 | { /* 0 */ | |
603 | .name = "CMD643", | |
7accbffd | 604 | .init_setup = init_setup_cmd64x, |
1da177e4 LT |
605 | .init_chipset = init_chipset_cmd64x, |
606 | .init_hwif = init_hwif_cmd64x, | |
1da177e4 | 607 | .autodma = AUTODMA, |
7accbffd | 608 | .enablebits = {{0x00,0x00,0x00}, {0x51,0x08,0x08}}, |
1da177e4 | 609 | .bootable = ON_BOARD, |
26bcb879 | 610 | .host_flags = IDE_HFLAG_ABUSE_PREFETCH, |
4099d143 | 611 | .pio_mask = ATA_PIO5, |
18137207 | 612 | .udma_mask = 0x00, /* no udma */ |
1da177e4 LT |
613 | },{ /* 1 */ |
614 | .name = "CMD646", | |
7accbffd | 615 | .init_setup = init_setup_cmd646, |
1da177e4 LT |
616 | .init_chipset = init_chipset_cmd64x, |
617 | .init_hwif = init_hwif_cmd64x, | |
1da177e4 | 618 | .autodma = AUTODMA, |
7accbffd | 619 | .enablebits = {{0x51,0x04,0x04}, {0x51,0x08,0x08}}, |
1da177e4 | 620 | .bootable = ON_BOARD, |
26bcb879 | 621 | .host_flags = IDE_HFLAG_ABUSE_PREFETCH, |
4099d143 | 622 | .pio_mask = ATA_PIO5, |
18137207 | 623 | .udma_mask = 0x07, /* udma0-2 */ |
1da177e4 LT |
624 | },{ /* 2 */ |
625 | .name = "CMD648", | |
7accbffd | 626 | .init_setup = init_setup_cmd64x, |
1da177e4 LT |
627 | .init_chipset = init_chipset_cmd64x, |
628 | .init_hwif = init_hwif_cmd64x, | |
1da177e4 | 629 | .autodma = AUTODMA, |
7accbffd | 630 | .enablebits = {{0x51,0x04,0x04}, {0x51,0x08,0x08}}, |
1da177e4 | 631 | .bootable = ON_BOARD, |
26bcb879 | 632 | .host_flags = IDE_HFLAG_ABUSE_PREFETCH, |
4099d143 | 633 | .pio_mask = ATA_PIO5, |
18137207 | 634 | .udma_mask = 0x1f, /* udma0-4 */ |
1da177e4 LT |
635 | },{ /* 3 */ |
636 | .name = "CMD649", | |
7accbffd | 637 | .init_setup = init_setup_cmd64x, |
1da177e4 LT |
638 | .init_chipset = init_chipset_cmd64x, |
639 | .init_hwif = init_hwif_cmd64x, | |
1da177e4 | 640 | .autodma = AUTODMA, |
7accbffd | 641 | .enablebits = {{0x51,0x04,0x04}, {0x51,0x08,0x08}}, |
1da177e4 | 642 | .bootable = ON_BOARD, |
26bcb879 | 643 | .host_flags = IDE_HFLAG_ABUSE_PREFETCH, |
4099d143 | 644 | .pio_mask = ATA_PIO5, |
18137207 | 645 | .udma_mask = 0x3f, /* udma0-5 */ |
1da177e4 LT |
646 | } |
647 | }; | |
648 | ||
7accbffd SS |
649 | /* |
650 | * We may have to modify enablebits for PCI0646, so we'd better pass | |
651 | * a local copy of the ide_pci_device_t structure down the call chain... | |
652 | */ | |
1da177e4 LT |
653 | static int __devinit cmd64x_init_one(struct pci_dev *dev, const struct pci_device_id *id) |
654 | { | |
7accbffd SS |
655 | ide_pci_device_t d = cmd64x_chipsets[id->driver_data]; |
656 | ||
657 | return d.init_setup(dev, &d); | |
1da177e4 LT |
658 | } |
659 | ||
660 | static struct pci_device_id cmd64x_pci_tbl[] = { | |
661 | { PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_CMD_643, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, | |
662 | { PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_CMD_646, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1}, | |
663 | { PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_CMD_648, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2}, | |
664 | { PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_CMD_649, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 3}, | |
665 | { 0, }, | |
666 | }; | |
667 | MODULE_DEVICE_TABLE(pci, cmd64x_pci_tbl); | |
668 | ||
669 | static struct pci_driver driver = { | |
670 | .name = "CMD64x_IDE", | |
671 | .id_table = cmd64x_pci_tbl, | |
672 | .probe = cmd64x_init_one, | |
673 | }; | |
674 | ||
82ab1eec | 675 | static int __init cmd64x_ide_init(void) |
1da177e4 LT |
676 | { |
677 | return ide_pci_register_driver(&driver); | |
678 | } | |
679 | ||
680 | module_init(cmd64x_ide_init); | |
681 | ||
682 | MODULE_AUTHOR("Eddie Dost, David Miller, Andre Hedrick"); | |
683 | MODULE_DESCRIPTION("PCI driver module for CMD64x IDE"); | |
684 | MODULE_LICENSE("GPL"); |