cmd64x.c 18 KB

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