amd74xx.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:12k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/drivers/ide/amd74xx.c Version 0.05 June 9, 2000
  3.  *
  4.  * Copyright (C) 1999-2000 Andre Hedrick <andre@linux-ide.org>
  5.  * May be copied or modified under the terms of the GNU General Public License
  6.  *
  7.  */
  8. #include <linux/config.h>
  9. #include <linux/types.h>
  10. #include <linux/kernel.h>
  11. #include <linux/delay.h>
  12. #include <linux/timer.h>
  13. #include <linux/mm.h>
  14. #include <linux/ioport.h>
  15. #include <linux/blkdev.h>
  16. #include <linux/hdreg.h>
  17. #include <linux/interrupt.h>
  18. #include <linux/init.h>
  19. #include <linux/pci.h>
  20. #include <linux/ide.h>
  21. #include <asm/io.h>
  22. #include <asm/irq.h>
  23. #include "ide_modes.h"
  24. #define DISPLAY_VIPER_TIMINGS
  25. #if defined(DISPLAY_VIPER_TIMINGS) && defined(CONFIG_PROC_FS)
  26. #include <linux/stat.h>
  27. #include <linux/proc_fs.h>
  28. static int amd74xx_get_info(char *, char **, off_t, int);
  29. extern int (*amd74xx_display_info)(char *, char **, off_t, int); /* ide-proc.c */
  30. extern char *ide_media_verbose(ide_drive_t *);
  31. static struct pci_dev *bmide_dev;
  32. static int amd74xx_get_info (char *buffer, char **addr, off_t offset, int count)
  33. {
  34. char *p = buffer;
  35. u32 bibma = pci_resource_start(bmide_dev, 4);
  36. u8 c0 = 0, c1 = 0;
  37. /*
  38.  * at that point bibma+0x2 et bibma+0xa are byte registers
  39.  * to investigate:
  40.  */
  41. c0 = inb_p((unsigned short)bibma + 0x02);
  42. c1 = inb_p((unsigned short)bibma + 0x0a);
  43. p += sprintf(p, "n                                AMD %04X VIPER Chipset.n", bmide_dev->device);
  44. p += sprintf(p, "--------------- Primary Channel ---------------- Secondary Channel -------------n");
  45. p += sprintf(p, "                %sabled                         %sabledn",
  46. (c0&0x80) ? "dis" : " en",
  47. (c1&0x80) ? "dis" : " en");
  48. p += sprintf(p, "--------------- drive0 --------- drive1 -------- drive0 ---------- drive1 ------n");
  49. p += sprintf(p, "DMA enabled:    %s              %s             %s               %sn",
  50. (c0&0x20) ? "yes" : "no ", (c0&0x40) ? "yes" : "no ",
  51. (c1&0x20) ? "yes" : "no ", (c1&0x40) ? "yes" : "no " );
  52. p += sprintf(p, "UDMAn");
  53. p += sprintf(p, "DMAn");
  54. p += sprintf(p, "PIOn");
  55. return p-buffer; /* => must be less than 4k! */
  56. }
  57. #endif  /* defined(DISPLAY_VIPER_TIMINGS) && defined(CONFIG_PROC_FS) */
  58. byte amd74xx_proc = 0;
  59. extern char *ide_xfer_verbose (byte xfer_rate);
  60. static unsigned int amd74xx_swdma_check (struct pci_dev *dev)
  61. {
  62. unsigned int class_rev;
  63. if (dev->device == PCI_DEVICE_ID_AMD_VIPER_7411)
  64. return 0;
  65. pci_read_config_dword(dev, PCI_CLASS_REVISION, &class_rev);
  66. class_rev &= 0xff;
  67. return ((int) (class_rev >= 7) ? 1 : 0);
  68. }
  69. static int amd74xx_swdma_error(ide_drive_t *drive)
  70. {
  71. printk("%s: single-word DMA not support (revision < C4)n", drive->name);
  72. return 0;
  73. }
  74. /*
  75.  * Here is where all the hard work goes to program the chipset.
  76.  *
  77.  */
  78. static int amd74xx_tune_chipset (ide_drive_t *drive, byte speed)
  79. {
  80. ide_hwif_t *hwif = HWIF(drive);
  81. struct pci_dev *dev = hwif->pci_dev;
  82. int err = 0;
  83. byte unit = (drive->select.b.unit & 0x01);
  84. #ifdef CONFIG_BLK_DEV_IDEDMA
  85. unsigned long dma_base = hwif->dma_base;
  86. #endif /* CONFIG_BLK_DEV_IDEDMA */
  87. byte drive_pci = 0x00;
  88. byte drive_pci2 = 0x00;
  89. byte ultra_timing = 0x00;
  90. byte dma_pio_timing = 0x00;
  91. byte pio_timing = 0x00;
  92.         switch (drive->dn) {
  93. case 0: drive_pci = 0x53; drive_pci2 = 0x4b; break;
  94. case 1: drive_pci = 0x52; drive_pci2 = 0x4a; break;
  95. case 2: drive_pci = 0x51; drive_pci2 = 0x49; break;
  96. case 3: drive_pci = 0x50; drive_pci2 = 0x48; break;
  97. default:
  98.                         return -1;
  99.         }
  100. pci_read_config_byte(dev, drive_pci, &ultra_timing);
  101. pci_read_config_byte(dev, drive_pci2, &dma_pio_timing);
  102. pci_read_config_byte(dev, 0x4c, &pio_timing);
  103. #ifdef DEBUG
  104. printk("%s: UDMA 0x%02x DMAPIO 0x%02x PIO 0x%02x ",
  105. drive->name, ultra_timing, dma_pio_timing, pio_timing);
  106. #endif
  107. ultra_timing &= ~0xC7;
  108. dma_pio_timing &= ~0xFF;
  109. pio_timing &= ~(0x03 << drive->dn);
  110. #ifdef DEBUG
  111. printk(":: UDMA 0x%02x DMAPIO 0x%02x PIO 0x%02x ",
  112. ultra_timing, dma_pio_timing, pio_timing);
  113. #endif
  114. switch(speed) {
  115. #ifdef CONFIG_BLK_DEV_IDEDMA
  116. case XFER_UDMA_5:
  117. #undef __CAN_MODE_5
  118. #ifdef __CAN_MODE_5
  119. ultra_timing |= 0x46;
  120. dma_pio_timing |= 0x20;
  121. break;
  122. #else
  123. printk("%s: setting to mode 4, driver problems in mode 5.n", drive->name);
  124. speed = XFER_UDMA_4;
  125. #endif /* __CAN_MODE_5 */
  126. case XFER_UDMA_4:
  127. ultra_timing |= 0x45;
  128. dma_pio_timing |= 0x20;
  129. break;
  130. case XFER_UDMA_3:
  131. ultra_timing |= 0x44;
  132. dma_pio_timing |= 0x20;
  133. break;
  134. case XFER_UDMA_2:
  135. ultra_timing |= 0x40;
  136. dma_pio_timing |= 0x20;
  137. break;
  138. case XFER_UDMA_1:
  139. ultra_timing |= 0x41;
  140. dma_pio_timing |= 0x20;
  141. break;
  142. case XFER_UDMA_0:
  143. ultra_timing |= 0x42;
  144. dma_pio_timing |= 0x20;
  145. break;
  146. case XFER_MW_DMA_2:
  147. dma_pio_timing |= 0x20;
  148. break;
  149. case XFER_MW_DMA_1:
  150. dma_pio_timing |= 0x21;
  151. break;
  152. case XFER_MW_DMA_0:
  153. dma_pio_timing |= 0x77;
  154. break;
  155. case XFER_SW_DMA_2:
  156. if (!amd74xx_swdma_check(dev))
  157. return amd74xx_swdma_error(drive);
  158. dma_pio_timing |= 0x42;
  159. break;
  160. case XFER_SW_DMA_1:
  161. if (!amd74xx_swdma_check(dev))
  162. return amd74xx_swdma_error(drive);
  163. dma_pio_timing |= 0x65;
  164. break;
  165. case XFER_SW_DMA_0:
  166. if (!amd74xx_swdma_check(dev))
  167. return amd74xx_swdma_error(drive);
  168. dma_pio_timing |= 0xA8;
  169. break;
  170. #endif /* CONFIG_BLK_DEV_IDEDMA */
  171. case XFER_PIO_4:
  172. dma_pio_timing |= 0x20;
  173. break;
  174. case XFER_PIO_3:
  175. dma_pio_timing |= 0x22;
  176. break;
  177. case XFER_PIO_2:
  178. dma_pio_timing |= 0x42;
  179. break;
  180. case XFER_PIO_1:
  181. dma_pio_timing |= 0x65;
  182. break;
  183. case XFER_PIO_0:
  184. default:
  185. dma_pio_timing |= 0xA8;
  186. break;
  187.         }
  188. pio_timing |= (0x03 << drive->dn);
  189. if (!drive->init_speed)
  190. drive->init_speed = speed;
  191. #ifdef CONFIG_BLK_DEV_IDEDMA
  192. pci_write_config_byte(dev, drive_pci, ultra_timing);
  193. #endif /* CONFIG_BLK_DEV_IDEDMA */
  194. pci_write_config_byte(dev, drive_pci2, dma_pio_timing);
  195. pci_write_config_byte(dev, 0x4c, pio_timing);
  196. #ifdef DEBUG
  197. printk(":: UDMA 0x%02x DMAPIO 0x%02x PIO 0x%02xn",
  198. ultra_timing, dma_pio_timing, pio_timing);
  199. #endif
  200. #ifdef CONFIG_BLK_DEV_IDEDMA
  201. if (speed > XFER_PIO_4) {
  202. outb(inb(dma_base+2)|(1<<(5+unit)), dma_base+2);
  203. } else {
  204. outb(inb(dma_base+2) & ~(1<<(5+unit)), dma_base+2);
  205. }
  206. #endif /* CONFIG_BLK_DEV_IDEDMA */
  207. err = ide_config_drive_speed(drive, speed);
  208. drive->current_speed = speed;
  209. return (err);
  210. }
  211. static void config_chipset_for_pio (ide_drive_t *drive)
  212. {
  213. unsigned short eide_pio_timing[6] = {960, 480, 240, 180, 120, 90};
  214. unsigned short xfer_pio = drive->id->eide_pio_modes;
  215. byte timing, speed, pio;
  216. pio = ide_get_best_pio_mode(drive, 255, 5, NULL);
  217. if (xfer_pio> 4)
  218. xfer_pio = 0;
  219. if (drive->id->eide_pio_iordy > 0) {
  220. for (xfer_pio = 5;
  221. xfer_pio>0 &&
  222. drive->id->eide_pio_iordy>eide_pio_timing[xfer_pio];
  223. xfer_pio--);
  224. } else {
  225. xfer_pio = (drive->id->eide_pio_modes & 4) ? 0x05 :
  226.    (drive->id->eide_pio_modes & 2) ? 0x04 :
  227.    (drive->id->eide_pio_modes & 1) ? 0x03 :
  228.    (drive->id->tPIO & 2) ? 0x02 :
  229.    (drive->id->tPIO & 1) ? 0x01 : xfer_pio;
  230. }
  231. timing = (xfer_pio >= pio) ? xfer_pio : pio;
  232. switch(timing) {
  233. case 4: speed = XFER_PIO_4;break;
  234. case 3: speed = XFER_PIO_3;break;
  235. case 2: speed = XFER_PIO_2;break;
  236. case 1: speed = XFER_PIO_1;break;
  237. default:
  238. speed = (!drive->id->tPIO) ? XFER_PIO_0 : XFER_PIO_SLOW;
  239. break;
  240. }
  241. (void) amd74xx_tune_chipset(drive, speed);
  242. drive->current_speed = speed;
  243. }
  244. static void amd74xx_tune_drive (ide_drive_t *drive, byte pio)
  245. {
  246. byte speed;
  247. switch(pio) {
  248. case 4: speed = XFER_PIO_4;break;
  249. case 3: speed = XFER_PIO_3;break;
  250. case 2: speed = XFER_PIO_2;break;
  251. case 1: speed = XFER_PIO_1;break;
  252. default: speed = XFER_PIO_0;break;
  253. }
  254. (void) amd74xx_tune_chipset(drive, speed);
  255. }
  256. #ifdef CONFIG_BLK_DEV_IDEDMA
  257. /*
  258.  * This allows the configuration of ide_pci chipset registers
  259.  * for cards that learn about the drive's UDMA, DMA, PIO capabilities
  260.  * after the drive is reported by the OS.
  261.  */
  262. static int config_chipset_for_dma (ide_drive_t *drive)
  263. {
  264. ide_hwif_t *hwif = HWIF(drive);
  265. struct pci_dev *dev = hwif->pci_dev;
  266. struct hd_driveid *id = drive->id;
  267. byte udma_66 = eighty_ninty_three(drive);
  268. byte udma_100 = (dev->device==PCI_DEVICE_ID_AMD_VIPER_7411) ? 1 : 0;
  269. byte speed = 0x00;
  270. int  rval;
  271. if ((id->dma_ultra & 0x0020) && (udma_66)&& (udma_100)) {
  272. speed = XFER_UDMA_5;
  273. } else if ((id->dma_ultra & 0x0010) && (udma_66)) {
  274. speed = XFER_UDMA_4;
  275. } else if ((id->dma_ultra & 0x0008) && (udma_66)) {
  276. speed = XFER_UDMA_3;
  277. } else if (id->dma_ultra & 0x0004) {
  278. speed = XFER_UDMA_2;
  279. } else if (id->dma_ultra & 0x0002) {
  280. speed = XFER_UDMA_1;
  281. } else if (id->dma_ultra & 0x0001) {
  282. speed = XFER_UDMA_0;
  283. } else if (id->dma_mword & 0x0004) {
  284. speed = XFER_MW_DMA_2;
  285. } else if (id->dma_mword & 0x0002) {
  286. speed = XFER_MW_DMA_1;
  287. } else if (id->dma_mword & 0x0001) {
  288. speed = XFER_MW_DMA_0;
  289. } else {
  290. return ((int) ide_dma_off_quietly);
  291. }
  292. (void) amd74xx_tune_chipset(drive, speed);
  293. rval = (int)( ((id->dma_ultra >> 11) & 3) ? ide_dma_on :
  294. ((id->dma_ultra >> 8) & 7) ? ide_dma_on :
  295. ((id->dma_mword >> 8) & 7) ? ide_dma_on :
  296.      ide_dma_off_quietly);
  297. return rval;
  298. }
  299. static int config_drive_xfer_rate (ide_drive_t *drive)
  300. {
  301. struct hd_driveid *id = drive->id;
  302. ide_dma_action_t dma_func = ide_dma_on;
  303. if (id && (id->capability & 1) && HWIF(drive)->autodma) {
  304. /* Consult the list of known "bad" drives */
  305. if (ide_dmaproc(ide_dma_bad_drive, drive)) {
  306. dma_func = ide_dma_off;
  307. goto fast_ata_pio;
  308. }
  309. dma_func = ide_dma_off_quietly;
  310. if (id->field_valid & 4) {
  311. if (id->dma_ultra & 0x002F) {
  312. /* Force if Capable UltraDMA */
  313. dma_func = config_chipset_for_dma(drive);
  314. if ((id->field_valid & 2) &&
  315.     (dma_func != ide_dma_on))
  316. goto try_dma_modes;
  317. }
  318. } else if (id->field_valid & 2) {
  319. try_dma_modes:
  320. if ((id->dma_mword & 0x0007) ||
  321.     ((id->dma_1word & 0x007) &&
  322.      (amd74xx_swdma_check(HWIF(drive)->pci_dev)))) {
  323. /* Force if Capable regular DMA modes */
  324. dma_func = config_chipset_for_dma(drive);
  325. if (dma_func != ide_dma_on)
  326. goto no_dma_set;
  327. }
  328. } else if (ide_dmaproc(ide_dma_good_drive, drive)) {
  329. if (id->eide_dma_time > 150) {
  330. goto no_dma_set;
  331. }
  332. /* Consult the list of known "good" drives */
  333. dma_func = config_chipset_for_dma(drive);
  334. if (dma_func != ide_dma_on)
  335. goto no_dma_set;
  336. } else {
  337. goto fast_ata_pio;
  338. }
  339. } else if ((id->capability & 8) || (id->field_valid & 2)) {
  340. fast_ata_pio:
  341. dma_func = ide_dma_off_quietly;
  342. no_dma_set:
  343. config_chipset_for_pio(drive);
  344. }
  345. return HWIF(drive)->dmaproc(dma_func, drive);
  346. }
  347. /*
  348.  * amd74xx_dmaproc() initiates/aborts (U)DMA read/write operations on a drive.
  349.  */
  350. int amd74xx_dmaproc (ide_dma_action_t func, ide_drive_t *drive)
  351. {
  352. switch (func) {
  353. case ide_dma_check:
  354. return config_drive_xfer_rate(drive);
  355. default:
  356. break;
  357. }
  358. return ide_dmaproc(func, drive); /* use standard DMA stuff */
  359. }
  360. #endif /* CONFIG_BLK_DEV_IDEDMA */
  361. unsigned int __init pci_init_amd74xx (struct pci_dev *dev, const char *name)
  362. {
  363. unsigned long fixdma_base = pci_resource_start(dev, 4);
  364. #ifdef CONFIG_BLK_DEV_IDEDMA
  365. if (!amd74xx_swdma_check(dev))
  366. printk("%s: disabling single-word DMA support (revision < C4)n", name);
  367. #endif /* CONFIG_BLK_DEV_IDEDMA */
  368. if (!fixdma_base) {
  369. /*
  370.  *
  371.  */
  372. } else {
  373. /*
  374.  * enable DMA capable bit, and "not" simplex only
  375.  */
  376. outb(inb(fixdma_base+2) & 0x60, fixdma_base+2);
  377. if (inb(fixdma_base+2) & 0x80)
  378. printk("%s: simplex device: DMA will fail!!n", name);
  379. }
  380. #if defined(DISPLAY_VIPER_TIMINGS) && defined(CONFIG_PROC_FS)
  381. if (!amd74xx_proc) {
  382. amd74xx_proc = 1;
  383. bmide_dev = dev;
  384. amd74xx_display_info = &amd74xx_get_info;
  385. }
  386. #endif /* DISPLAY_VIPER_TIMINGS && CONFIG_PROC_FS */
  387. return 0;
  388. }
  389. unsigned int __init ata66_amd74xx (ide_hwif_t *hwif)
  390. {
  391. #ifdef CONFIG_AMD74XX_OVERRIDE
  392. byte ata66 = 1;
  393. #else
  394. byte ata66 = 0;
  395. #endif /* CONFIG_AMD74XX_OVERRIDE */
  396. #if 0
  397. pci_read_config_byte(hwif->pci_dev, 0x48, &ata66);
  398. return ((ata66 & 0x02) ? 0 : 1);
  399. #endif
  400. return ata66;
  401. }
  402. void __init ide_init_amd74xx (ide_hwif_t *hwif)
  403. {
  404. hwif->tuneproc = &amd74xx_tune_drive;
  405. hwif->speedproc = &amd74xx_tune_chipset;
  406. #ifndef CONFIG_BLK_DEV_IDEDMA
  407. hwif->drives[0].autotune = 1;
  408. hwif->drives[1].autotune = 1;
  409. hwif->autodma = 0;
  410. return;
  411. #else
  412. if (hwif->dma_base) {
  413. hwif->dmaproc = &amd74xx_dmaproc;
  414. if (!noautodma)
  415. hwif->autodma = 1;
  416. } else {
  417. hwif->autodma = 0;
  418. hwif->drives[0].autotune = 1;
  419. hwif->drives[1].autotune = 1;
  420. }
  421. #endif /* CONFIG_BLK_DEV_IDEDMA */
  422. }
  423. void __init ide_dmacapable_amd74xx (ide_hwif_t *hwif, unsigned long dmabase)
  424. {
  425. ide_setup_dma(hwif, dmabase, 8);
  426. }