cmd64x.c 22 KB

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