]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/ide/pci/cmd64x.c
cmd64x: fix multiword and remove single-word DMA support
[mirror_ubuntu-bionic-kernel.git] / drivers / ide / pci / cmd64x.c
CommitLineData
60e7a82f
SS
1/*
2 * linux/drivers/ide/pci/cmd64x.c Version 1.43 Mar 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 (ecd@skynet.be)
9 * Copyright (C) 1998 David S. Miller (davem@redhat.com)
10 *
11 * Copyright (C) 1999-2002 Andre Hedrick <andre@linux-ide.org>
f92d50e6 12 * Copyright (C) 2007 MontaVista Software, Inc. <source@mvista.com>
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
39#define CFR_INTR_CH0 0x02
40#define CNTRL 0x51
41#define CNTRL_DIS_RA0 0x40
42#define CNTRL_DIS_RA1 0x80
43#define CNTRL_ENA_2ND 0x08
44
45#define CMDTIM 0x52
46#define ARTTIM0 0x53
47#define DRWTIM0 0x54
48#define ARTTIM1 0x55
49#define DRWTIM1 0x56
50#define ARTTIM23 0x57
51#define ARTTIM23_DIS_RA2 0x04
52#define ARTTIM23_DIS_RA3 0x08
53#define ARTTIM23_INTR_CH1 0x10
54#define ARTTIM2 0x57
55#define ARTTIM3 0x57
56#define DRWTIM23 0x58
57#define DRWTIM2 0x58
58#define BRST 0x59
59#define DRWTIM3 0x5b
60
61#define BMIDECR0 0x70
62#define MRDMODE 0x71
63#define MRDMODE_INTR_CH0 0x04
64#define MRDMODE_INTR_CH1 0x08
65#define MRDMODE_BLK_CH0 0x10
66#define MRDMODE_BLK_CH1 0x20
67#define BMIDESR0 0x72
68#define UDIDETCR0 0x73
69#define DTPR0 0x74
70#define BMIDECR1 0x78
71#define BMIDECSR 0x79
72#define BMIDESR1 0x7A
73#define UDIDETCR1 0x7B
74#define DTPR1 0x7C
75
76#if defined(DISPLAY_CMD64X_TIMINGS) && defined(CONFIG_PROC_FS)
77#include <linux/stat.h>
78#include <linux/proc_fs.h>
79
80static u8 cmd64x_proc = 0;
81
82#define CMD_MAX_DEVS 5
83
84static struct pci_dev *cmd_devs[CMD_MAX_DEVS];
85static int n_cmd_devs;
86
87static char * print_cmd64x_get_info (char *buf, struct pci_dev *dev, int index)
88{
89 char *p = buf;
90
91 u8 reg53 = 0, reg54 = 0, reg55 = 0, reg56 = 0; /* primary */
92 u8 reg57 = 0, reg58 = 0, reg5b; /* secondary */
93 u8 reg72 = 0, reg73 = 0; /* primary */
94 u8 reg7a = 0, reg7b = 0; /* secondary */
95 u8 reg50 = 0, reg71 = 0; /* extra */
96
97 p += sprintf(p, "\nController: %d\n", index);
98 p += sprintf(p, "CMD%x Chipset.\n", dev->device);
99 (void) pci_read_config_byte(dev, CFR, &reg50);
100 (void) pci_read_config_byte(dev, ARTTIM0, &reg53);
101 (void) pci_read_config_byte(dev, DRWTIM0, &reg54);
102 (void) pci_read_config_byte(dev, ARTTIM1, &reg55);
103 (void) pci_read_config_byte(dev, DRWTIM1, &reg56);
104 (void) pci_read_config_byte(dev, ARTTIM2, &reg57);
105 (void) pci_read_config_byte(dev, DRWTIM2, &reg58);
106 (void) pci_read_config_byte(dev, DRWTIM3, &reg5b);
107 (void) pci_read_config_byte(dev, MRDMODE, &reg71);
108 (void) pci_read_config_byte(dev, BMIDESR0, &reg72);
109 (void) pci_read_config_byte(dev, UDIDETCR0, &reg73);
110 (void) pci_read_config_byte(dev, BMIDESR1, &reg7a);
111 (void) pci_read_config_byte(dev, UDIDETCR1, &reg7b);
112
113 p += sprintf(p, "--------------- Primary Channel "
114 "---------------- Secondary Channel "
115 "-------------\n");
116 p += sprintf(p, " %sabled "
117 " %sabled\n",
118 (reg72&0x80)?"dis":" en",
119 (reg7a&0x80)?"dis":" en");
120 p += sprintf(p, "--------------- drive0 "
121 "--------- drive1 -------- drive0 "
122 "---------- drive1 ------\n");
123 p += sprintf(p, "DMA enabled: %s %s"
124 " %s %s\n",
125 (reg72&0x20)?"yes":"no ", (reg72&0x40)?"yes":"no ",
126 (reg7a&0x20)?"yes":"no ", (reg7a&0x40)?"yes":"no ");
127
128 p += sprintf(p, "DMA Mode: %s(%s) %s(%s)",
129 (reg72&0x20)?((reg73&0x01)?"UDMA":" DMA"):" PIO",
130 (reg72&0x20)?(
131 ((reg73&0x30)==0x30)?(((reg73&0x35)==0x35)?"3":"0"):
132 ((reg73&0x20)==0x20)?(((reg73&0x25)==0x25)?"3":"1"):
133 ((reg73&0x10)==0x10)?(((reg73&0x15)==0x15)?"4":"2"):
134 ((reg73&0x00)==0x00)?(((reg73&0x05)==0x05)?"5":"2"):
135 "X"):"?",
136 (reg72&0x40)?((reg73&0x02)?"UDMA":" DMA"):" PIO",
137 (reg72&0x40)?(
138 ((reg73&0xC0)==0xC0)?(((reg73&0xC5)==0xC5)?"3":"0"):
139 ((reg73&0x80)==0x80)?(((reg73&0x85)==0x85)?"3":"1"):
140 ((reg73&0x40)==0x40)?(((reg73&0x4A)==0x4A)?"4":"2"):
141 ((reg73&0x00)==0x00)?(((reg73&0x0A)==0x0A)?"5":"2"):
142 "X"):"?");
143 p += sprintf(p, " %s(%s) %s(%s)\n",
144 (reg7a&0x20)?((reg7b&0x01)?"UDMA":" DMA"):" PIO",
145 (reg7a&0x20)?(
146 ((reg7b&0x30)==0x30)?(((reg7b&0x35)==0x35)?"3":"0"):
147 ((reg7b&0x20)==0x20)?(((reg7b&0x25)==0x25)?"3":"1"):
148 ((reg7b&0x10)==0x10)?(((reg7b&0x15)==0x15)?"4":"2"):
149 ((reg7b&0x00)==0x00)?(((reg7b&0x05)==0x05)?"5":"2"):
150 "X"):"?",
151 (reg7a&0x40)?((reg7b&0x02)?"UDMA":" DMA"):" PIO",
152 (reg7a&0x40)?(
153 ((reg7b&0xC0)==0xC0)?(((reg7b&0xC5)==0xC5)?"3":"0"):
154 ((reg7b&0x80)==0x80)?(((reg7b&0x85)==0x85)?"3":"1"):
155 ((reg7b&0x40)==0x40)?(((reg7b&0x4A)==0x4A)?"4":"2"):
156 ((reg7b&0x00)==0x00)?(((reg7b&0x0A)==0x0A)?"5":"2"):
157 "X"):"?" );
158 p += sprintf(p, "PIO Mode: %s %s"
159 " %s %s\n",
160 "?", "?", "?", "?");
161 p += sprintf(p, " %s %s\n",
162 (reg50 & CFR_INTR_CH0) ? "interrupting" : "polling ",
163 (reg57 & ARTTIM23_INTR_CH1) ? "interrupting" : "polling");
164 p += sprintf(p, " %s %s\n",
165 (reg71 & MRDMODE_INTR_CH0) ? "pending" : "clear ",
166 (reg71 & MRDMODE_INTR_CH1) ? "pending" : "clear");
167 p += sprintf(p, " %s %s\n",
168 (reg71 & MRDMODE_BLK_CH0) ? "blocked" : "enabled",
169 (reg71 & MRDMODE_BLK_CH1) ? "blocked" : "enabled");
170
171 return (char *)p;
172}
173
174static int cmd64x_get_info (char *buffer, char **addr, off_t offset, int count)
175{
176 char *p = buffer;
177 int i;
178
179 p += sprintf(p, "\n");
180 for (i = 0; i < n_cmd_devs; i++) {
181 struct pci_dev *dev = cmd_devs[i];
182 p = print_cmd64x_get_info(p, dev, i);
183 }
184 return p-buffer; /* => must be less than 4k! */
185}
186
187#endif /* defined(DISPLAY_CMD64X_TIMINGS) && defined(CONFIG_PROC_FS) */
188
e277a1aa
SS
189static u8 quantize_timing(int timing, int quant)
190{
191 return (timing + quant - 1) / quant;
192}
193
1da177e4 194/*
60e7a82f
SS
195 * This routine calculates active/recovery counts and then writes them into
196 * the chipset registers.
1da177e4 197 */
60e7a82f 198static void program_cycle_times (ide_drive_t *drive, int cycle_time, int active_time)
1da177e4 199{
60e7a82f
SS
200 struct pci_dev *dev = HWIF(drive)->pci_dev;
201 int clock_time = 1000 / system_bus_clock();
202 u8 cycle_count, active_count, recovery_count, drwtim;
203 static const u8 recovery_values[] =
1da177e4 204 {15, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0};
60e7a82f
SS
205 static const u8 drwtim_regs[4] = {DRWTIM0, DRWTIM1, DRWTIM2, DRWTIM3};
206
207 cmdprintk("program_cycle_times parameters: total=%d, active=%d\n",
208 cycle_time, active_time);
209
210 cycle_count = quantize_timing( cycle_time, clock_time);
211 active_count = quantize_timing(active_time, clock_time);
212 recovery_count = cycle_count - active_count;
213
1da177e4 214 /*
60e7a82f
SS
215 * In case we've got too long recovery phase, try to lengthen
216 * the active phase
1da177e4 217 */
60e7a82f
SS
218 if (recovery_count > 16) {
219 active_count += recovery_count - 16;
220 recovery_count = 16;
1da177e4 221 }
60e7a82f
SS
222 if (active_count > 16) /* shouldn't actually happen... */
223 active_count = 16;
224
225 cmdprintk("Final counts: total=%d, active=%d, recovery=%d\n",
226 cycle_count, active_count, recovery_count);
1da177e4
LT
227
228 /*
229 * Convert values to internal chipset representation
230 */
60e7a82f
SS
231 recovery_count = recovery_values[recovery_count];
232 active_count &= 0x0f;
1da177e4 233
60e7a82f
SS
234 /* Program the active/recovery counts into the DRWTIM register */
235 drwtim = (active_count << 4) | recovery_count;
236 (void) pci_write_config_byte(dev, drwtim_regs[drive->dn], drwtim);
237 cmdprintk("Write 0x%02x to reg 0x%x\n", drwtim, drwtim_regs[drive->dn]);
1da177e4
LT
238}
239
240/*
60e7a82f
SS
241 * This routine selects drive's best PIO mode and writes into the chipset
242 * registers setup/active/recovery timings.
1da177e4 243 */
f92d50e6 244static u8 cmd64x_tune_pio (ide_drive_t *drive, u8 mode_wanted)
1da177e4 245{
60e7a82f
SS
246 ide_hwif_t *hwif = HWIF(drive);
247 struct pci_dev *dev = hwif->pci_dev;
e277a1aa 248 ide_pio_data_t pio;
60e7a82f
SS
249 u8 pio_mode, setup_count, arttim = 0;
250 static const u8 setup_values[] = {0x40, 0x40, 0x40, 0x80, 0, 0xc0};
251 static const u8 arttim_regs[4] = {ARTTIM0, ARTTIM1, ARTTIM23, ARTTIM23};
e277a1aa 252 pio_mode = ide_get_best_pio_mode(drive, mode_wanted, 5, &pio);
1da177e4 253
60e7a82f
SS
254 cmdprintk("%s: PIO mode wanted %d, selected %d (%d ns)%s\n",
255 drive->name, mode_wanted, pio_mode, pio.cycle_time,
256 pio.overridden ? " (overriding vendor mode)" : "");
1da177e4 257
60e7a82f
SS
258 program_cycle_times(drive, pio.cycle_time,
259 ide_pio_timings[pio_mode].active_time);
1da177e4 260
60e7a82f
SS
261 setup_count = quantize_timing(ide_pio_timings[pio_mode].setup_time,
262 1000 / system_bus_clock());
263
264 /*
265 * The primary channel has individual address setup timing registers
266 * for each drive and the hardware selects the slowest timing itself.
267 * The secondary channel has one common register and we have to select
268 * the slowest address setup timing ourselves.
269 */
270 if (hwif->channel) {
271 ide_drive_t *drives = hwif->drives;
272
273 drive->drive_data = setup_count;
274 setup_count = max(drives[0].drive_data, drives[1].drive_data);
1da177e4 275 }
1da177e4 276
60e7a82f
SS
277 if (setup_count > 5) /* shouldn't actually happen... */
278 setup_count = 5;
279 cmdprintk("Final address setup count: %d\n", setup_count);
1da177e4 280
60e7a82f
SS
281 /*
282 * Program the address setup clocks into the ARTTIM registers.
283 * Avoid clearing the secondary channel's interrupt bit.
284 */
285 (void) pci_read_config_byte (dev, arttim_regs[drive->dn], &arttim);
286 if (hwif->channel)
287 arttim &= ~ARTTIM23_INTR_CH1;
288 arttim &= ~0xc0;
289 arttim |= setup_values[setup_count];
290 (void) pci_write_config_byte(dev, arttim_regs[drive->dn], arttim);
291 cmdprintk("Write 0x%02x to reg 0x%x\n", arttim, arttim_regs[drive->dn]);
f92d50e6
SS
292
293 return pio_mode;
294}
295
296/*
297 * Attempts to set drive's PIO mode.
298 * Special cases are 8: prefetch off, 9: prefetch on (both never worked),
299 * and 255: auto-select best mode (used at boot time).
300 */
301static void cmd64x_tune_drive (ide_drive_t *drive, u8 pio)
302{
303 /*
304 * Filter out the prefetch control values
305 * to prevent PIO5 from being programmed
306 */
307 if (pio == 8 || pio == 9)
308 return;
309
310 pio = cmd64x_tune_pio(drive, pio);
311 (void) ide_config_drive_speed(drive, XFER_PIO_0 + pio);
1da177e4
LT
312}
313
314static u8 cmd64x_ratemask (ide_drive_t *drive)
315{
316 struct pci_dev *dev = HWIF(drive)->pci_dev;
317 u8 mode = 0;
318
319 switch(dev->device) {
320 case PCI_DEVICE_ID_CMD_649:
321 mode = 3;
322 break;
323 case PCI_DEVICE_ID_CMD_648:
324 mode = 2;
325 break;
326 case PCI_DEVICE_ID_CMD_643:
327 return 0;
328
329 case PCI_DEVICE_ID_CMD_646:
330 {
331 unsigned int class_rev = 0;
332 pci_read_config_dword(dev,
333 PCI_CLASS_REVISION, &class_rev);
334 class_rev &= 0xff;
335 /*
336 * UltraDMA only supported on PCI646U and PCI646U2, which
337 * correspond to revisions 0x03, 0x05 and 0x07 respectively.
338 * Actually, although the CMD tech support people won't
339 * tell me the details, the 0x03 revision cannot support
340 * UDMA correctly without hardware modifications, and even
341 * then it only works with Quantum disks due to some
342 * hold time assumptions in the 646U part which are fixed
343 * in the 646U2.
344 *
345 * So we only do UltraDMA on revision 0x05 and 0x07 chipsets.
346 */
347 switch(class_rev) {
348 case 0x07:
349 case 0x05:
350 return 1;
351 case 0x03:
352 case 0x01:
353 default:
354 return 0;
355 }
356 }
357 }
358 if (!eighty_ninty_three(drive))
359 mode = min(mode, (u8)1);
360 return mode;
361}
362
60e7a82f 363static int cmd64x_tune_chipset (ide_drive_t *drive, u8 speed)
1da177e4
LT
364{
365 ide_hwif_t *hwif = HWIF(drive);
366 struct pci_dev *dev = hwif->pci_dev;
60e7a82f
SS
367 u8 unit = drive->dn & 0x01;
368 u8 regU = 0, pciU = hwif->channel ? UDIDETCR1 : UDIDETCR0;
1da177e4 369
60e7a82f 370 speed = ide_rate_filter(cmd64x_ratemask(drive), speed);
1da177e4 371
f92d50e6 372 if (speed >= XFER_SW_DMA_0) {
1da177e4 373 (void) pci_read_config_byte(dev, pciU, &regU);
1da177e4 374 regU &= ~(unit ? 0xCA : 0x35);
1da177e4
LT
375 }
376
377 switch(speed) {
60e7a82f
SS
378 case XFER_UDMA_5:
379 regU |= unit ? 0x0A : 0x05;
380 break;
381 case XFER_UDMA_4:
382 regU |= unit ? 0x4A : 0x15;
383 break;
384 case XFER_UDMA_3:
385 regU |= unit ? 0x8A : 0x25;
386 break;
387 case XFER_UDMA_2:
388 regU |= unit ? 0x42 : 0x11;
389 break;
390 case XFER_UDMA_1:
391 regU |= unit ? 0x82 : 0x21;
392 break;
393 case XFER_UDMA_0:
394 regU |= unit ? 0xC2 : 0x31;
395 break;
396 case XFER_MW_DMA_2:
397 program_cycle_times(drive, 120, 70);
398 break;
399 case XFER_MW_DMA_1:
400 program_cycle_times(drive, 150, 80);
401 break;
402 case XFER_MW_DMA_0:
403 program_cycle_times(drive, 480, 215);
404 break;
405 case XFER_PIO_5:
406 case XFER_PIO_4:
407 case XFER_PIO_3:
408 case XFER_PIO_2:
409 case XFER_PIO_1:
410 case XFER_PIO_0:
411 (void) cmd64x_tune_pio(drive, speed - XFER_PIO_0);
412 break;
413 default:
414 return 1;
1da177e4
LT
415 }
416
60e7a82f 417 if (speed >= XFER_SW_DMA_0)
1da177e4 418 (void) pci_write_config_byte(dev, pciU, regU);
1da177e4 419
60e7a82f 420 return ide_config_drive_speed(drive, speed);
1da177e4
LT
421}
422
423static int config_chipset_for_dma (ide_drive_t *drive)
424{
425 u8 speed = ide_dma_speed(drive, cmd64x_ratemask(drive));
426
1da177e4
LT
427 if (!speed)
428 return 0;
429
056a697b
BZ
430 if (cmd64x_tune_chipset(drive, speed))
431 return 0;
1da177e4
LT
432
433 return ide_dma_enable(drive);
434}
435
436static int cmd64x_config_drive_for_dma (ide_drive_t *drive)
437{
7569e8dc 438 if (ide_use_dma(drive) && config_chipset_for_dma(drive))
3608b5d7 439 return 0;
1da177e4 440
d8f4469d 441 if (ide_use_fast_pio(drive))
f92d50e6 442 cmd64x_tune_drive(drive, 255);
d8f4469d 443
3608b5d7 444 return -1;
1da177e4
LT
445}
446
447static int cmd64x_alt_dma_status (struct pci_dev *dev)
448{
449 switch(dev->device) {
450 case PCI_DEVICE_ID_CMD_648:
451 case PCI_DEVICE_ID_CMD_649:
452 return 1;
453 default:
454 break;
455 }
456 return 0;
457}
458
459static int cmd64x_ide_dma_end (ide_drive_t *drive)
460{
461 u8 dma_stat = 0, dma_cmd = 0;
462 ide_hwif_t *hwif = HWIF(drive);
463 struct pci_dev *dev = hwif->pci_dev;
464
465 drive->waiting_for_dma = 0;
466 /* read DMA command state */
0ecdca26 467 dma_cmd = inb(hwif->dma_command);
1da177e4 468 /* stop DMA */
0ecdca26 469 outb(dma_cmd & ~1, hwif->dma_command);
1da177e4 470 /* get DMA status */
0ecdca26 471 dma_stat = inb(hwif->dma_status);
1da177e4 472 /* clear the INTR & ERROR bits */
0ecdca26 473 outb(dma_stat | 6, hwif->dma_status);
1da177e4
LT
474 if (cmd64x_alt_dma_status(dev)) {
475 u8 dma_intr = 0;
476 u8 dma_mask = (hwif->channel) ? ARTTIM23_INTR_CH1 :
477 CFR_INTR_CH0;
478 u8 dma_reg = (hwif->channel) ? ARTTIM2 : CFR;
479 (void) pci_read_config_byte(dev, dma_reg, &dma_intr);
480 /* clear the INTR bit */
481 (void) pci_write_config_byte(dev, dma_reg, dma_intr|dma_mask);
482 }
483 /* purge DMA mappings */
484 ide_destroy_dmatable(drive);
485 /* verify good DMA status */
486 return (dma_stat & 7) != 4;
487}
488
489static int cmd64x_ide_dma_test_irq (ide_drive_t *drive)
490{
491 ide_hwif_t *hwif = HWIF(drive);
492 struct pci_dev *dev = hwif->pci_dev;
493 u8 dma_alt_stat = 0, mask = (hwif->channel) ? MRDMODE_INTR_CH1 :
494 MRDMODE_INTR_CH0;
0ecdca26 495 u8 dma_stat = inb(hwif->dma_status);
1da177e4
LT
496
497 (void) pci_read_config_byte(dev, MRDMODE, &dma_alt_stat);
498#ifdef DEBUG
499 printk("%s: dma_stat: 0x%02x dma_alt_stat: "
500 "0x%02x mask: 0x%02x\n", drive->name,
501 dma_stat, dma_alt_stat, mask);
502#endif
503 if (!(dma_alt_stat & mask))
504 return 0;
505
506 /* return 1 if INTR asserted */
507 if ((dma_stat & 4) == 4)
508 return 1;
509
510 return 0;
511}
512
513/*
514 * ASUS P55T2P4D with CMD646 chipset revision 0x01 requires the old
515 * event order for DMA transfers.
516 */
517
518static int cmd646_1_ide_dma_end (ide_drive_t *drive)
519{
520 ide_hwif_t *hwif = HWIF(drive);
521 u8 dma_stat = 0, dma_cmd = 0;
522
523 drive->waiting_for_dma = 0;
524 /* get DMA status */
0ecdca26 525 dma_stat = inb(hwif->dma_status);
1da177e4 526 /* read DMA command state */
0ecdca26 527 dma_cmd = inb(hwif->dma_command);
1da177e4 528 /* stop DMA */
0ecdca26 529 outb(dma_cmd & ~1, hwif->dma_command);
1da177e4 530 /* clear the INTR & ERROR bits */
0ecdca26 531 outb(dma_stat | 6, hwif->dma_status);
1da177e4
LT
532 /* and free any DMA resources */
533 ide_destroy_dmatable(drive);
534 /* verify good DMA status */
535 return (dma_stat & 7) != 4;
536}
537
538static unsigned int __devinit init_chipset_cmd64x(struct pci_dev *dev, const char *name)
539{
540 u32 class_rev = 0;
541 u8 mrdmode = 0;
542
543 pci_read_config_dword(dev, PCI_CLASS_REVISION, &class_rev);
544 class_rev &= 0xff;
545
1da177e4
LT
546 switch(dev->device) {
547 case PCI_DEVICE_ID_CMD_643:
548 break;
549 case PCI_DEVICE_ID_CMD_646:
550 printk(KERN_INFO "%s: chipset revision 0x%02X, ", name, class_rev);
551 switch(class_rev) {
552 case 0x07:
553 case 0x05:
554 printk("UltraDMA Capable");
555 break;
556 case 0x03:
557 printk("MultiWord DMA Force Limited");
558 break;
559 case 0x01:
560 default:
561 printk("MultiWord DMA Limited, IRQ workaround enabled");
562 break;
563 }
564 printk("\n");
565 break;
566 case PCI_DEVICE_ID_CMD_648:
567 case PCI_DEVICE_ID_CMD_649:
568 break;
569 default:
570 break;
571 }
572
573 /* Set a good latency timer and cache line size value. */
574 (void) pci_write_config_byte(dev, PCI_LATENCY_TIMER, 64);
575 /* FIXME: pci_set_master() to ensure a good latency timer value */
576
577 /* Setup interrupts. */
578 (void) pci_read_config_byte(dev, MRDMODE, &mrdmode);
579 mrdmode &= ~(0x30);
580 (void) pci_write_config_byte(dev, MRDMODE, mrdmode);
581
582 /* Use MEMORY READ LINE for reads.
583 * NOTE: Although not mentioned in the PCI0646U specs,
584 * these bits are write only and won't be read
585 * back as set or not. The PCI0646U2 specs clarify
586 * this point.
587 */
588 (void) pci_write_config_byte(dev, MRDMODE, mrdmode | 0x02);
589
590 /* Set reasonable active/recovery/address-setup values. */
591 (void) pci_write_config_byte(dev, ARTTIM0, 0x40);
592 (void) pci_write_config_byte(dev, DRWTIM0, 0x3f);
593 (void) pci_write_config_byte(dev, ARTTIM1, 0x40);
594 (void) pci_write_config_byte(dev, DRWTIM1, 0x3f);
595#ifdef __i386__
596 (void) pci_write_config_byte(dev, ARTTIM23, 0x1c);
597#else
598 (void) pci_write_config_byte(dev, ARTTIM23, 0x5c);
599#endif
600 (void) pci_write_config_byte(dev, DRWTIM23, 0x3f);
601 (void) pci_write_config_byte(dev, DRWTIM3, 0x3f);
602#ifdef CONFIG_PPC
603 (void) pci_write_config_byte(dev, UDIDETCR0, 0xf0);
604#endif /* CONFIG_PPC */
605
606#if defined(DISPLAY_CMD64X_TIMINGS) && defined(CONFIG_PROC_FS)
607
608 cmd_devs[n_cmd_devs++] = dev;
609
610 if (!cmd64x_proc) {
611 cmd64x_proc = 1;
612 ide_pci_create_host_proc("cmd64x", cmd64x_get_info);
613 }
614#endif /* DISPLAY_CMD64X_TIMINGS && CONFIG_PROC_FS */
615
616 return 0;
617}
618
619static unsigned int __devinit ata66_cmd64x(ide_hwif_t *hwif)
620{
621 u8 ata66 = 0, mask = (hwif->channel) ? 0x02 : 0x01;
622
623 switch(hwif->pci_dev->device) {
624 case PCI_DEVICE_ID_CMD_643:
625 case PCI_DEVICE_ID_CMD_646:
626 return ata66;
627 default:
628 break;
629 }
630 pci_read_config_byte(hwif->pci_dev, BMIDECSR, &ata66);
631 return (ata66 & mask) ? 1 : 0;
632}
633
634static void __devinit init_hwif_cmd64x(ide_hwif_t *hwif)
635{
636 struct pci_dev *dev = hwif->pci_dev;
637 unsigned int class_rev;
638
639 hwif->autodma = 0;
640 pci_read_config_dword(dev, PCI_CLASS_REVISION, &class_rev);
641 class_rev &= 0xff;
642
f92d50e6 643 hwif->tuneproc = &cmd64x_tune_drive;
1da177e4
LT
644 hwif->speedproc = &cmd64x_tune_chipset;
645
f92d50e6
SS
646 hwif->drives[0].autotune = hwif->drives[1].autotune = 1;
647
648 if (!hwif->dma_base)
1da177e4 649 return;
1da177e4
LT
650
651 hwif->atapi_dma = 1;
652
653 hwif->ultra_mask = 0x3f;
654 hwif->mwdma_mask = 0x07;
1da177e4
LT
655
656 if (dev->device == PCI_DEVICE_ID_CMD_643)
657 hwif->ultra_mask = 0x80;
658 if (dev->device == PCI_DEVICE_ID_CMD_646)
659 hwif->ultra_mask = (class_rev > 0x04) ? 0x07 : 0x80;
660 if (dev->device == PCI_DEVICE_ID_CMD_648)
661 hwif->ultra_mask = 0x1f;
662
663 hwif->ide_dma_check = &cmd64x_config_drive_for_dma;
664 if (!(hwif->udma_four))
665 hwif->udma_four = ata66_cmd64x(hwif);
666
667 if (dev->device == PCI_DEVICE_ID_CMD_646) {
668 hwif->chipset = ide_cmd646;
669 if (class_rev == 0x01) {
670 hwif->ide_dma_end = &cmd646_1_ide_dma_end;
671 } else {
672 hwif->ide_dma_end = &cmd64x_ide_dma_end;
673 hwif->ide_dma_test_irq = &cmd64x_ide_dma_test_irq;
674 }
675 } else {
676 hwif->ide_dma_end = &cmd64x_ide_dma_end;
677 hwif->ide_dma_test_irq = &cmd64x_ide_dma_test_irq;
678 }
679
680
681 if (!noautodma)
682 hwif->autodma = 1;
683 hwif->drives[0].autodma = hwif->autodma;
684 hwif->drives[1].autodma = hwif->autodma;
685}
686
687static ide_pci_device_t cmd64x_chipsets[] __devinitdata = {
688 { /* 0 */
689 .name = "CMD643",
690 .init_chipset = init_chipset_cmd64x,
691 .init_hwif = init_hwif_cmd64x,
692 .channels = 2,
693 .autodma = AUTODMA,
694 .bootable = ON_BOARD,
695 },{ /* 1 */
696 .name = "CMD646",
697 .init_chipset = init_chipset_cmd64x,
698 .init_hwif = init_hwif_cmd64x,
699 .channels = 2,
700 .autodma = AUTODMA,
701 .enablebits = {{0x00,0x00,0x00}, {0x51,0x80,0x80}},
702 .bootable = ON_BOARD,
703 },{ /* 2 */
704 .name = "CMD648",
705 .init_chipset = init_chipset_cmd64x,
706 .init_hwif = init_hwif_cmd64x,
707 .channels = 2,
708 .autodma = AUTODMA,
709 .bootable = ON_BOARD,
710 },{ /* 3 */
711 .name = "CMD649",
712 .init_chipset = init_chipset_cmd64x,
713 .init_hwif = init_hwif_cmd64x,
714 .channels = 2,
715 .autodma = AUTODMA,
716 .bootable = ON_BOARD,
717 }
718};
719
720static int __devinit cmd64x_init_one(struct pci_dev *dev, const struct pci_device_id *id)
721{
722 return ide_setup_pci_device(dev, &cmd64x_chipsets[id->driver_data]);
723}
724
725static struct pci_device_id cmd64x_pci_tbl[] = {
726 { PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_CMD_643, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
727 { PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_CMD_646, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1},
728 { PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_CMD_648, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 2},
729 { PCI_VENDOR_ID_CMD, PCI_DEVICE_ID_CMD_649, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 3},
730 { 0, },
731};
732MODULE_DEVICE_TABLE(pci, cmd64x_pci_tbl);
733
734static struct pci_driver driver = {
735 .name = "CMD64x_IDE",
736 .id_table = cmd64x_pci_tbl,
737 .probe = cmd64x_init_one,
738};
739
82ab1eec 740static int __init cmd64x_ide_init(void)
1da177e4
LT
741{
742 return ide_pci_register_driver(&driver);
743}
744
745module_init(cmd64x_ide_init);
746
747MODULE_AUTHOR("Eddie Dost, David Miller, Andre Hedrick");
748MODULE_DESCRIPTION("PCI driver module for CMD64x IDE");
749MODULE_LICENSE("GPL");