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