2 * linux/drivers/ide/pci/cmd64x.c Version 1.51 Nov 8, 2007
4 * cmd64x.c: Enable interrupts at initialization time on Ultra/PCI machines.
5 * Due to massive hardware bugs, UltraDMA is only supported
6 * on the 646U2 and not on the 646U.
8 * Copyright (C) 1998 Eddie C. Dost (ecd@skynet.be)
9 * Copyright (C) 1998 David S. Miller (davem@redhat.com)
11 * Copyright (C) 1999-2002 Andre Hedrick <andre@linux-ide.org>
12 * Copyright (C) 2007 MontaVista Software, Inc. <source@mvista.com>
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>
25 #define DISPLAY_CMD64X_TIMINGS
30 #define cmdprintk(x...) printk(x)
32 #define cmdprintk(x...)
36 * CMD64x specific registers definition.
39 #define CFR_INTR_CH0 0x04
41 #define CNTRL_ENA_1ST 0x04
42 #define CNTRL_ENA_2ND 0x08
43 #define CNTRL_DIS_RA0 0x40
44 #define CNTRL_DIS_RA1 0x80
52 #define ARTTIM23_DIS_RA2 0x04
53 #define ARTTIM23_DIS_RA3 0x08
54 #define ARTTIM23_INTR_CH1 0x10
61 #define MRDMODE_INTR_CH0 0x04
62 #define MRDMODE_INTR_CH1 0x08
63 #define MRDMODE_BLK_CH0 0x10
64 #define MRDMODE_BLK_CH1 0x20
66 #define UDIDETCR0 0x73
71 #define UDIDETCR1 0x7B
74 #if defined(DISPLAY_CMD64X_TIMINGS) && defined(CONFIG_IDE_PROC_FS)
75 #include <linux/stat.h>
76 #include <linux/proc_fs.h>
78 static u8 cmd64x_proc
= 0;
80 #define CMD_MAX_DEVS 5
82 static struct pci_dev
*cmd_devs
[CMD_MAX_DEVS
];
83 static int n_cmd_devs
;
85 static char * print_cmd64x_get_info (char *buf
, struct pci_dev
*dev
, int index
)
88 u8 reg72
= 0, reg73
= 0; /* primary */
89 u8 reg7a
= 0, reg7b
= 0; /* secondary */
90 u8 reg50
= 1, reg51
= 1, reg57
= 0, reg71
= 0; /* extra */
92 p
+= sprintf(p
, "\nController: %d\n", index
);
93 p
+= sprintf(p
, "PCI-%x Chipset.\n", dev
->device
);
95 (void) pci_read_config_byte(dev
, CFR
, ®50
);
96 (void) pci_read_config_byte(dev
, CNTRL
, ®51
);
97 (void) pci_read_config_byte(dev
, ARTTIM23
, ®57
);
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
);
104 /* PCI0643/6 originally didn't have the primary channel enable bit */
105 if ((dev
->device
== PCI_DEVICE_ID_CMD_643
) ||
106 (dev
->device
== PCI_DEVICE_ID_CMD_646
&& dev
->revision
< 3))
107 reg51
|= CNTRL_ENA_1ST
;
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"
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 ");
151 static int cmd64x_get_info (char *buffer
, char **addr
, off_t offset
, int count
)
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
);
160 return p
-buffer
; /* => must be less than 4k! */
163 #endif /* defined(DISPLAY_CMD64X_TIMINGS) && defined(CONFIG_IDE_PROC_FS) */
165 static u8
quantize_timing(int timing
, int quant
)
167 return (timing
+ quant
- 1) / quant
;
171 * This routine calculates active/recovery counts and then writes them into
172 * the chipset registers.
174 static void program_cycle_times (ide_drive_t
*drive
, int cycle_time
, int active_time
)
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
[] =
180 {15, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0};
181 static const u8 drwtim_regs
[4] = {DRWTIM0
, DRWTIM1
, DRWTIM2
, DRWTIM3
};
183 cmdprintk("program_cycle_times parameters: total=%d, active=%d\n",
184 cycle_time
, active_time
);
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
;
191 * In case we've got too long recovery phase, try to lengthen
194 if (recovery_count
> 16) {
195 active_count
+= recovery_count
- 16;
198 if (active_count
> 16) /* shouldn't actually happen... */
201 cmdprintk("Final counts: total=%d, active=%d, recovery=%d\n",
202 cycle_count
, active_count
, recovery_count
);
205 * Convert values to internal chipset representation
207 recovery_count
= recovery_values
[recovery_count
];
208 active_count
&= 0x0f;
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
]);
217 * This routine writes into the chipset registers
218 * PIO setup/active/recovery timings.
220 static void cmd64x_tune_pio(ide_drive_t
*drive
, const u8 pio
)
222 ide_hwif_t
*hwif
= HWIF(drive
);
223 struct pci_dev
*dev
= hwif
->pci_dev
;
224 unsigned int cycle_time
;
225 u8 setup_count
, arttim
= 0;
227 static const u8 setup_values
[] = {0x40, 0x40, 0x40, 0x80, 0, 0xc0};
228 static const u8 arttim_regs
[4] = {ARTTIM0
, ARTTIM1
, ARTTIM23
, ARTTIM23
};
230 cycle_time
= ide_pio_cycle_time(drive
, pio
);
232 program_cycle_times(drive
, cycle_time
,
233 ide_pio_timings
[pio
].active_time
);
235 setup_count
= quantize_timing(ide_pio_timings
[pio
].setup_time
,
236 1000 / system_bus_clock());
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.
245 ide_drive_t
*drives
= hwif
->drives
;
247 drive
->drive_data
= setup_count
;
248 setup_count
= max(drives
[0].drive_data
, drives
[1].drive_data
);
251 if (setup_count
> 5) /* shouldn't actually happen... */
253 cmdprintk("Final address setup count: %d\n", setup_count
);
256 * Program the address setup clocks into the ARTTIM registers.
257 * Avoid clearing the secondary channel's interrupt bit.
259 (void) pci_read_config_byte (dev
, arttim_regs
[drive
->dn
], &arttim
);
261 arttim
&= ~ARTTIM23_INTR_CH1
;
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
]);
269 * Attempts to set drive's PIO mode.
270 * Special cases are 8: prefetch off, 9: prefetch on (both never worked)
273 static void cmd64x_set_pio_mode(ide_drive_t
*drive
, const u8 pio
)
276 * Filter out the prefetch control values
277 * to prevent PIO5 from being programmed
279 if (pio
== 8 || pio
== 9)
282 cmd64x_tune_pio(drive
, pio
);
285 static void cmd64x_set_dma_mode(ide_drive_t
*drive
, const u8 speed
)
287 ide_hwif_t
*hwif
= HWIF(drive
);
288 struct pci_dev
*dev
= hwif
->pci_dev
;
289 u8 unit
= drive
->dn
& 0x01;
290 u8 regU
= 0, pciU
= hwif
->channel
? UDIDETCR1
: UDIDETCR0
;
292 if (speed
>= XFER_SW_DMA_0
) {
293 (void) pci_read_config_byte(dev
, pciU
, ®U
);
294 regU
&= ~(unit
? 0xCA : 0x35);
299 regU
|= unit
? 0x0A : 0x05;
302 regU
|= unit
? 0x4A : 0x15;
305 regU
|= unit
? 0x8A : 0x25;
308 regU
|= unit
? 0x42 : 0x11;
311 regU
|= unit
? 0x82 : 0x21;
314 regU
|= unit
? 0xC2 : 0x31;
317 program_cycle_times(drive
, 120, 70);
320 program_cycle_times(drive
, 150, 80);
323 program_cycle_times(drive
, 480, 215);
329 if (speed
>= XFER_SW_DMA_0
)
330 (void) pci_write_config_byte(dev
, pciU
, regU
);
333 static int cmd648_ide_dma_end (ide_drive_t
*drive
)
335 ide_hwif_t
*hwif
= HWIF(drive
);
336 int err
= __ide_dma_end(drive
);
337 u8 irq_mask
= hwif
->channel
? MRDMODE_INTR_CH1
:
339 u8 mrdmode
= inb(hwif
->dma_master
+ 0x01);
341 /* clear the interrupt bit */
342 outb((mrdmode
& ~(MRDMODE_INTR_CH0
| MRDMODE_INTR_CH1
)) | irq_mask
,
343 hwif
->dma_master
+ 0x01);
348 static int cmd64x_ide_dma_end (ide_drive_t
*drive
)
350 ide_hwif_t
*hwif
= HWIF(drive
);
351 struct pci_dev
*dev
= hwif
->pci_dev
;
352 int irq_reg
= hwif
->channel
? ARTTIM23
: CFR
;
353 u8 irq_mask
= hwif
->channel
? ARTTIM23_INTR_CH1
:
356 int err
= __ide_dma_end(drive
);
358 (void) pci_read_config_byte(dev
, irq_reg
, &irq_stat
);
359 /* clear the interrupt bit */
360 (void) pci_write_config_byte(dev
, irq_reg
, irq_stat
| irq_mask
);
365 static int cmd648_ide_dma_test_irq (ide_drive_t
*drive
)
367 ide_hwif_t
*hwif
= HWIF(drive
);
368 u8 irq_mask
= hwif
->channel
? MRDMODE_INTR_CH1
:
370 u8 dma_stat
= inb(hwif
->dma_status
);
371 u8 mrdmode
= inb(hwif
->dma_master
+ 0x01);
374 printk("%s: dma_stat: 0x%02x mrdmode: 0x%02x irq_mask: 0x%02x\n",
375 drive
->name
, dma_stat
, mrdmode
, irq_mask
);
377 if (!(mrdmode
& irq_mask
))
380 /* return 1 if INTR asserted */
387 static int cmd64x_ide_dma_test_irq (ide_drive_t
*drive
)
389 ide_hwif_t
*hwif
= HWIF(drive
);
390 struct pci_dev
*dev
= hwif
->pci_dev
;
391 int irq_reg
= hwif
->channel
? ARTTIM23
: CFR
;
392 u8 irq_mask
= hwif
->channel
? ARTTIM23_INTR_CH1
:
394 u8 dma_stat
= inb(hwif
->dma_status
);
397 (void) pci_read_config_byte(dev
, irq_reg
, &irq_stat
);
400 printk("%s: dma_stat: 0x%02x irq_stat: 0x%02x irq_mask: 0x%02x\n",
401 drive
->name
, dma_stat
, irq_stat
, irq_mask
);
403 if (!(irq_stat
& irq_mask
))
406 /* return 1 if INTR asserted */
414 * ASUS P55T2P4D with CMD646 chipset revision 0x01 requires the old
415 * event order for DMA transfers.
418 static int cmd646_1_ide_dma_end (ide_drive_t
*drive
)
420 ide_hwif_t
*hwif
= HWIF(drive
);
421 u8 dma_stat
= 0, dma_cmd
= 0;
423 drive
->waiting_for_dma
= 0;
425 dma_stat
= inb(hwif
->dma_status
);
426 /* read DMA command state */
427 dma_cmd
= inb(hwif
->dma_command
);
429 outb(dma_cmd
& ~1, hwif
->dma_command
);
430 /* clear the INTR & ERROR bits */
431 outb(dma_stat
| 6, hwif
->dma_status
);
432 /* and free any DMA resources */
433 ide_destroy_dmatable(drive
);
434 /* verify good DMA status */
435 return (dma_stat
& 7) != 4;
438 static unsigned int __devinit
init_chipset_cmd64x(struct pci_dev
*dev
, const char *name
)
442 if (dev
->device
== PCI_DEVICE_ID_CMD_646
) {
444 switch (dev
->revision
) {
447 printk("%s: UltraDMA capable\n", name
);
451 printk("%s: MultiWord DMA force limited\n", name
);
454 printk("%s: MultiWord DMA limited, "
455 "IRQ workaround enabled\n", name
);
460 /* Set a good latency timer and cache line size value. */
461 (void) pci_write_config_byte(dev
, PCI_LATENCY_TIMER
, 64);
462 /* FIXME: pci_set_master() to ensure a good latency timer value */
465 * Enable interrupts, select MEMORY READ LINE for reads.
467 * NOTE: although not mentioned in the PCI0646U specs,
468 * bits 0-1 are write only and won't be read back as
469 * set or not -- PCI0646U2 specs clarify this point.
471 (void) pci_read_config_byte (dev
, MRDMODE
, &mrdmode
);
473 (void) pci_write_config_byte(dev
, MRDMODE
, (mrdmode
| 0x02));
475 #if defined(DISPLAY_CMD64X_TIMINGS) && defined(CONFIG_IDE_PROC_FS)
477 cmd_devs
[n_cmd_devs
++] = dev
;
481 ide_pci_create_host_proc("cmd64x", cmd64x_get_info
);
483 #endif /* DISPLAY_CMD64X_TIMINGS && CONFIG_IDE_PROC_FS */
488 static u8 __devinit
ata66_cmd64x(ide_hwif_t
*hwif
)
490 struct pci_dev
*dev
= hwif
->pci_dev
;
491 u8 bmidecsr
= 0, mask
= hwif
->channel
? 0x02 : 0x01;
493 switch (dev
->device
) {
494 case PCI_DEVICE_ID_CMD_648
:
495 case PCI_DEVICE_ID_CMD_649
:
496 pci_read_config_byte(dev
, BMIDECSR
, &bmidecsr
);
497 return (bmidecsr
& mask
) ? ATA_CBL_PATA80
: ATA_CBL_PATA40
;
499 return ATA_CBL_PATA40
;
503 static void __devinit
init_hwif_cmd64x(ide_hwif_t
*hwif
)
505 struct pci_dev
*dev
= hwif
->pci_dev
;
507 hwif
->set_pio_mode
= &cmd64x_set_pio_mode
;
508 hwif
->set_dma_mode
= &cmd64x_set_dma_mode
;
514 * UltraDMA only supported on PCI646U and PCI646U2, which
515 * correspond to revisions 0x03, 0x05 and 0x07 respectively.
516 * Actually, although the CMD tech support people won't
517 * tell me the details, the 0x03 revision cannot support
518 * UDMA correctly without hardware modifications, and even
519 * then it only works with Quantum disks due to some
520 * hold time assumptions in the 646U part which are fixed
523 * So we only do UltraDMA on revision 0x05 and 0x07 chipsets.
525 if (dev
->device
== PCI_DEVICE_ID_CMD_646
&& dev
->revision
< 5)
526 hwif
->ultra_mask
= 0x00;
528 if (hwif
->cbl
!= ATA_CBL_PATA40_SHORT
)
529 hwif
->cbl
= ata66_cmd64x(hwif
);
531 switch (dev
->device
) {
532 case PCI_DEVICE_ID_CMD_648
:
533 case PCI_DEVICE_ID_CMD_649
:
535 hwif
->ide_dma_end
= &cmd648_ide_dma_end
;
536 hwif
->ide_dma_test_irq
= &cmd648_ide_dma_test_irq
;
538 case PCI_DEVICE_ID_CMD_646
:
539 if (dev
->revision
== 0x01) {
540 hwif
->ide_dma_end
= &cmd646_1_ide_dma_end
;
542 } else if (dev
->revision
>= 0x03)
546 hwif
->ide_dma_end
= &cmd64x_ide_dma_end
;
547 hwif
->ide_dma_test_irq
= &cmd64x_ide_dma_test_irq
;
552 static const struct ide_port_info cmd64x_chipsets
[] __devinitdata
= {
555 .init_chipset
= init_chipset_cmd64x
,
556 .init_hwif
= init_hwif_cmd64x
,
557 .enablebits
= {{0x00,0x00,0x00}, {0x51,0x08,0x08}},
558 .host_flags
= IDE_HFLAG_ABUSE_PREFETCH
| IDE_HFLAG_BOOTABLE
,
559 .pio_mask
= ATA_PIO5
,
560 .mwdma_mask
= ATA_MWDMA2
,
561 .udma_mask
= 0x00, /* no udma */
564 .init_chipset
= init_chipset_cmd64x
,
565 .init_hwif
= init_hwif_cmd64x
,
566 .enablebits
= {{0x51,0x04,0x04}, {0x51,0x08,0x08}},
567 .host_flags
= IDE_HFLAG_ABUSE_PREFETCH
| IDE_HFLAG_BOOTABLE
,
568 .pio_mask
= ATA_PIO5
,
569 .mwdma_mask
= ATA_MWDMA2
,
570 .udma_mask
= ATA_UDMA2
,
573 .init_chipset
= init_chipset_cmd64x
,
574 .init_hwif
= init_hwif_cmd64x
,
575 .enablebits
= {{0x51,0x04,0x04}, {0x51,0x08,0x08}},
576 .chipset
= ide_cmd646
,
577 .host_flags
= IDE_HFLAG_ABUSE_PREFETCH
| IDE_HFLAG_BOOTABLE
,
578 .pio_mask
= ATA_PIO5
,
579 .mwdma_mask
= ATA_MWDMA2
,
580 .udma_mask
= ATA_UDMA4
,
583 .init_chipset
= init_chipset_cmd64x
,
584 .init_hwif
= init_hwif_cmd64x
,
585 .enablebits
= {{0x51,0x04,0x04}, {0x51,0x08,0x08}},
586 .host_flags
= IDE_HFLAG_ABUSE_PREFETCH
| IDE_HFLAG_BOOTABLE
,
587 .pio_mask
= ATA_PIO5
,
588 .mwdma_mask
= ATA_MWDMA2
,
589 .udma_mask
= ATA_UDMA5
,
593 static int __devinit
cmd64x_init_one(struct pci_dev
*dev
, const struct pci_device_id
*id
)
595 struct ide_port_info d
;
596 u8 idx
= id
->driver_data
;
598 d
= cmd64x_chipsets
[idx
];
601 * The original PCI0646 didn't have the primary channel enable bit,
602 * it appeared starting with PCI0646U (i.e. revision ID 3).
604 if (idx
== 1 && dev
->revision
< 3)
605 d
.enablebits
[0].reg
= 0;
607 return ide_setup_pci_device(dev
, &d
);
610 static const struct pci_device_id cmd64x_pci_tbl
[] = {
611 { PCI_VDEVICE(CMD
, PCI_DEVICE_ID_CMD_643
), 0 },
612 { PCI_VDEVICE(CMD
, PCI_DEVICE_ID_CMD_646
), 1 },
613 { PCI_VDEVICE(CMD
, PCI_DEVICE_ID_CMD_648
), 2 },
614 { PCI_VDEVICE(CMD
, PCI_DEVICE_ID_CMD_649
), 3 },
617 MODULE_DEVICE_TABLE(pci
, cmd64x_pci_tbl
);
619 static struct pci_driver driver
= {
620 .name
= "CMD64x_IDE",
621 .id_table
= cmd64x_pci_tbl
,
622 .probe
= cmd64x_init_one
,
625 static int __init
cmd64x_ide_init(void)
627 return ide_pci_register_driver(&driver
);
630 module_init(cmd64x_ide_init
);
632 MODULE_AUTHOR("Eddie Dost, David Miller, Andre Hedrick");
633 MODULE_DESCRIPTION("PCI driver module for CMD64x IDE");
634 MODULE_LICENSE("GPL");