cs5530.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:11k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/drivers/ide/cs5530.c Version 0.6 Mar. 18, 2000
  3.  *
  4.  * Copyright (C) 2000 Andre Hedrick <andre@linux-ide.org>
  5.  * Ditto of GNU General Public License.
  6.  *
  7.  * Copyright (C) 2000 Mark Lord <mlord@pobox.com>
  8.  * May be copied or modified under the terms of the GNU General Public License
  9.  *
  10.  * Development of this chipset driver was funded
  11.  * by the nice folks at National Semiconductor.
  12.  */
  13. #include <linux/config.h>
  14. #include <linux/types.h>
  15. #include <linux/kernel.h>
  16. #include <linux/delay.h>
  17. #include <linux/timer.h>
  18. #include <linux/mm.h>
  19. #include <linux/ioport.h>
  20. #include <linux/blkdev.h>
  21. #include <linux/hdreg.h>
  22. #include <linux/interrupt.h>
  23. #include <linux/pci.h>
  24. #include <linux/init.h>
  25. #include <linux/ide.h>
  26. #include <asm/io.h>
  27. #include <asm/irq.h>
  28. #include "ide_modes.h"
  29. #define DISPLAY_CS5530_TIMINGS
  30. #if defined(DISPLAY_CS5530_TIMINGS) && defined(CONFIG_PROC_FS)
  31. #include <linux/stat.h>
  32. #include <linux/proc_fs.h>
  33. static int cs5530_get_info(char *, char **, off_t, int);
  34. extern int (*cs5530_display_info)(char *, char **, off_t, int); /* ide-proc.c */
  35. extern char *ide_media_verbose(ide_drive_t *);
  36. static struct pci_dev *bmide_dev;
  37. static int cs5530_get_info (char *buffer, char **addr, off_t offset, int count)
  38. {
  39. char *p = buffer;
  40. u32 bibma = pci_resource_start(bmide_dev, 4);
  41. u8  c0 = 0, c1 = 0;
  42. /*
  43.  * at that point bibma+0x2 et bibma+0xa are byte registers
  44.  * to investigate:
  45.  */
  46. c0 = inb_p((unsigned short)bibma + 0x02);
  47. c1 = inb_p((unsigned short)bibma + 0x0a);
  48. p += sprintf(p, "n                                Cyrix 5530 Chipset.n");
  49. p += sprintf(p, "--------------- Primary Channel ---------------- Secondary Channel -------------n");
  50. p += sprintf(p, "                %sabled                         %sabledn",
  51. (c0&0x80) ? "dis" : " en",
  52. (c1&0x80) ? "dis" : " en");
  53. p += sprintf(p, "--------------- drive0 --------- drive1 -------- drive0 ---------- drive1 ------n");
  54. p += sprintf(p, "DMA enabled:    %s              %s             %s               %sn",
  55. (c0&0x20) ? "yes" : "no ", (c0&0x40) ? "yes" : "no ",
  56. (c1&0x20) ? "yes" : "no ", (c1&0x40) ? "yes" : "no " );
  57. p += sprintf(p, "UDMAn");
  58. p += sprintf(p, "DMAn");
  59. p += sprintf(p, "PIOn");
  60. return p-buffer;
  61. }
  62. #endif /* DISPLAY_CS5530_TIMINGS && CONFIG_PROC_FS */
  63. byte cs5530_proc = 0;
  64. extern char *ide_xfer_verbose (byte xfer_rate);
  65. /*
  66.  * Set a new transfer mode at the drive
  67.  */
  68. int cs5530_set_xfer_mode (ide_drive_t *drive, byte mode)
  69. {
  70. int error = 0;
  71. printk("%s: cs5530_set_xfer_mode(%s)n", drive->name, ide_xfer_verbose(mode));
  72. error = ide_config_drive_speed(drive, mode);
  73. return error;
  74. }
  75. /*
  76.  * Here are the standard PIO mode 0-4 timings for each "format".
  77.  * Format-0 uses fast data reg timings, with slower command reg timings.
  78.  * Format-1 uses fast timings for all registers, but won't work with all drives.
  79.  */
  80. static unsigned int cs5530_pio_timings[2][5] =
  81. {{0x00009172, 0x00012171, 0x00020080, 0x00032010, 0x00040010},
  82.  {0xd1329172, 0x71212171, 0x30200080, 0x20102010, 0x00100010}};
  83. /*
  84.  * After chip reset, the PIO timings are set to 0x0000e132, which is not valid.
  85.  */
  86. #define CS5530_BAD_PIO(timings) (((timings)&~0x80000000)==0x0000e132)
  87. #define CS5530_BASEREG(hwif) (((hwif)->dma_base & ~0xf) + ((hwif)->channel ? 0x30 : 0x20))
  88. /*
  89.  * cs5530_tuneproc() handles selection/setting of PIO modes
  90.  * for both the chipset and drive.
  91.  *
  92.  * The ide_init_cs5530() routine guarantees that all drives
  93.  * will have valid default PIO timings set up before we get here.
  94.  */
  95. static void cs5530_tuneproc (ide_drive_t *drive, byte pio) /* pio=255 means "autotune" */
  96. {
  97. ide_hwif_t *hwif = HWIF(drive);
  98. unsigned int format, basereg = CS5530_BASEREG(hwif);
  99. static byte modes[5] = {XFER_PIO_0, XFER_PIO_1, XFER_PIO_2, XFER_PIO_3, XFER_PIO_4};
  100. pio = ide_get_best_pio_mode(drive, pio, 4, NULL);
  101. if (!cs5530_set_xfer_mode(drive, modes[pio])) {
  102. format = (inl(basereg+4) >> 31) & 1;
  103. outl(cs5530_pio_timings[format][pio], basereg+(drive->select.b.unit<<3));
  104. }
  105. }
  106. #ifdef CONFIG_BLK_DEV_IDEDMA
  107. /*
  108.  * cs5530_config_dma() handles selection/setting of DMA/UDMA modes
  109.  * for both the chipset and drive.
  110.  */
  111. static int cs5530_config_dma (ide_drive_t *drive)
  112. {
  113. int udma_ok = 1, mode = 0;
  114. ide_hwif_t *hwif = HWIF(drive);
  115. int unit = drive->select.b.unit;
  116. ide_drive_t *mate = &hwif->drives[unit^1];
  117. struct hd_driveid *id = drive->id;
  118. unsigned int basereg, reg, timings;
  119. /*
  120.  * Default to DMA-off in case we run into trouble here.
  121.  */
  122. (void)hwif->dmaproc(ide_dma_off_quietly, drive); /* turn off DMA while we fiddle */
  123. outb(inb(hwif->dma_base+2)&~(unit?0x40:0x20), hwif->dma_base+2); /* clear DMA_capable bit */
  124. /*
  125.  * The CS5530 specifies that two drives sharing a cable cannot
  126.  * mix UDMA/MDMA.  It has to be one or the other, for the pair,
  127.  * though different timings can still be chosen for each drive.
  128.  * We could set the appropriate timing bits on the fly,
  129.  * but that might be a bit confusing.  So, for now we statically
  130.  * handle this requirement by looking at our mate drive to see
  131.  * what it is capable of, before choosing a mode for our own drive.
  132.  */
  133. if (mate->present) {
  134. struct hd_driveid *mateid = mate->id;
  135. if (mateid && (mateid->capability & 1) && !hwif->dmaproc(ide_dma_bad_drive, mate)) {
  136. if ((mateid->field_valid & 4) && (mateid->dma_ultra & 7))
  137. udma_ok = 1;
  138. else if ((mateid->field_valid & 2) && (mateid->dma_mword & 7))
  139. udma_ok = 0;
  140. else
  141. udma_ok = 1;
  142. }
  143. }
  144. /*
  145.  * Now see what the current drive is capable of,
  146.  * selecting UDMA only if the mate said it was ok.
  147.  */
  148. if (id && (id->capability & 1) && hwif->autodma && !hwif->dmaproc(ide_dma_bad_drive, drive)) {
  149. if (udma_ok && (id->field_valid & 4) && (id->dma_ultra & 7)) {
  150. if      (id->dma_ultra & 4)
  151. mode = XFER_UDMA_2;
  152. else if (id->dma_ultra & 2)
  153. mode = XFER_UDMA_1;
  154. else if (id->dma_ultra & 1)
  155. mode = XFER_UDMA_0;
  156. }
  157. if (!mode && (id->field_valid & 2) && (id->dma_mword & 7)) {
  158. if      (id->dma_mword & 4)
  159. mode = XFER_MW_DMA_2;
  160. else if (id->dma_mword & 2)
  161. mode = XFER_MW_DMA_1;
  162. else if (id->dma_mword & 1)
  163. mode = XFER_MW_DMA_0;
  164. }
  165. }
  166. /*
  167.  * Tell the drive to switch to the new mode; abort on failure.
  168.  */
  169. if (!mode || cs5530_set_xfer_mode(drive, mode))
  170. return 1; /* failure */
  171. /*
  172.  * Now tune the chipset to match the drive:
  173.  */
  174. switch (mode) {
  175. case XFER_UDMA_0: timings = 0x00921250; break;
  176. case XFER_UDMA_1: timings = 0x00911140; break;
  177. case XFER_UDMA_2: timings = 0x00911030; break;
  178. case XFER_MW_DMA_0: timings = 0x00077771; break;
  179. case XFER_MW_DMA_1: timings = 0x00012121; break;
  180. case XFER_MW_DMA_2: timings = 0x00002020; break;
  181. default:
  182. printk("%s: cs5530_config_dma: huh? mode=%02xn", drive->name, mode);
  183. return 1; /* failure */
  184. }
  185. basereg = CS5530_BASEREG(hwif);
  186. reg = inl(basereg+4); /* get drive0 config register */
  187. timings |= reg & 0x80000000; /* preserve PIO format bit */
  188. if (unit == 0) { /* are we configuring drive0? */
  189. outl(timings, basereg+4); /* write drive0 config register */
  190. } else {
  191. if (timings & 0x00100000)
  192. reg |=  0x00100000; /* enable UDMA timings for both drives */
  193. else
  194. reg &= ~0x00100000; /* disable UDMA timings for both drives */
  195. outl(reg,     basereg+4); /* write drive0 config register */
  196. outl(timings, basereg+12); /* write drive1 config register */
  197. }
  198. outb(inb(hwif->dma_base+2)|(unit?0x40:0x20), hwif->dma_base+2); /* set DMA_capable bit */
  199. /*
  200.  * Finally, turn DMA on in software, and exit.
  201.  */
  202. return hwif->dmaproc(ide_dma_on, drive); /* success */
  203. }
  204. /*
  205.  * This is a CS5530-specific wrapper for the standard ide_dmaproc().
  206.  * We need it for our custom "ide_dma_check" function.
  207.  * All other requests are forwarded to the standard ide_dmaproc().
  208.  */
  209. int cs5530_dmaproc (ide_dma_action_t func, ide_drive_t *drive)
  210. {
  211. switch (func) {
  212. case ide_dma_check:
  213. return cs5530_config_dma(drive);
  214. default:
  215. break;
  216. }
  217. /* Other cases are done by generic IDE-DMA code. */
  218. return ide_dmaproc(func, drive);
  219. }
  220. #endif /* CONFIG_BLK_DEV_IDEDMA */
  221. /*
  222.  * Initialize the cs5530 bridge for reliable IDE DMA operation.
  223.  */
  224. unsigned int __init pci_init_cs5530 (struct pci_dev *dev, const char *name)
  225. {
  226. struct pci_dev *master_0 = NULL, *cs5530_0 = NULL;
  227. unsigned short pcicmd = 0;
  228. unsigned long flags;
  229. #if defined(DISPLAY_CS5530_TIMINGS) && defined(CONFIG_PROC_FS)
  230. if (!cs5530_proc) {
  231. cs5530_proc = 1;
  232. bmide_dev = dev;
  233. cs5530_display_info = &cs5530_get_info;
  234. }
  235. #endif /* DISPLAY_CS5530_TIMINGS && CONFIG_PROC_FS */
  236. pci_for_each_dev (dev) {
  237. if (dev->vendor == PCI_VENDOR_ID_CYRIX) {
  238. switch (dev->device) {
  239. case PCI_DEVICE_ID_CYRIX_PCI_MASTER:
  240. master_0 = dev;
  241. break;
  242. case PCI_DEVICE_ID_CYRIX_5530_LEGACY:
  243. cs5530_0 = dev;
  244. break;
  245. }
  246. }
  247. }
  248. if (!master_0) {
  249. printk("%s: unable to locate PCI MASTER functionn", name);
  250. return 0;
  251. }
  252. if (!cs5530_0) {
  253. printk("%s: unable to locate CS5530 LEGACY functionn", name);
  254. return 0;
  255. }
  256. save_flags(flags);
  257. cli(); /* all CPUs (there should only be one CPU with this chipset) */
  258. /*
  259.  * Enable BusMaster and MemoryWriteAndInvalidate for the cs5530:
  260.  * -->  OR 0x14 into 16-bit PCI COMMAND reg of function 0 of the cs5530
  261.  */
  262. pci_read_config_word (cs5530_0, PCI_COMMAND, &pcicmd);
  263. pci_write_config_word(cs5530_0, PCI_COMMAND, pcicmd | PCI_COMMAND_MASTER | PCI_COMMAND_INVALIDATE);
  264. /*
  265.  * Set PCI CacheLineSize to 16-bytes:
  266.  * --> Write 0x04 into 8-bit PCI CACHELINESIZE reg of function 0 of the cs5530
  267.  */
  268. pci_write_config_byte(cs5530_0, PCI_CACHE_LINE_SIZE, 0x04);
  269. /*
  270.  * Disable trapping of UDMA register accesses (Win98 hack):
  271.  * --> Write 0x5006 into 16-bit reg at offset 0xd0 of function 0 of the cs5530
  272.  */
  273. pci_write_config_word(cs5530_0, 0xd0, 0x5006);
  274. /*
  275.  * Bit-1 at 0x40 enables MemoryWriteAndInvalidate on internal X-bus:
  276.  * The other settings are what is necessary to get the register
  277.  * into a sane state for IDE DMA operation.
  278.  */
  279. pci_write_config_byte(master_0, 0x40, 0x1e);
  280. /* 
  281.  * Set max PCI burst size (16-bytes seems to work best):
  282.  *    16bytes: set bit-1 at 0x41 (reg value of 0x16)
  283.  * all others: clear bit-1 at 0x41, and do:
  284.  *   128bytes: OR 0x00 at 0x41
  285.  *   256bytes: OR 0x04 at 0x41
  286.  *   512bytes: OR 0x08 at 0x41
  287.  *  1024bytes: OR 0x0c at 0x41
  288.  */
  289. pci_write_config_byte(master_0, 0x41, 0x14);
  290. /*
  291.  * These settings are necessary to get the chip
  292.  * into a sane state for IDE DMA operation.
  293.  */
  294. pci_write_config_byte(master_0, 0x42, 0x00);
  295. pci_write_config_byte(master_0, 0x43, 0xc1);
  296. restore_flags(flags);
  297. return 0;
  298. }
  299. /*
  300.  * This gets invoked by the IDE driver once for each channel,
  301.  * and performs channel-specific pre-initialization before drive probing.
  302.  */
  303. void __init ide_init_cs5530 (ide_hwif_t *hwif)
  304. {
  305. if (hwif->mate)
  306. hwif->serialized = hwif->mate->serialized = 1;
  307. if (!hwif->dma_base) {
  308. hwif->autodma = 0;
  309. } else {
  310. unsigned int basereg, d0_timings;
  311. #ifdef CONFIG_BLK_DEV_IDEDMA
  312. hwif->dmaproc  = &cs5530_dmaproc;
  313. #else
  314. hwif->autodma = 0;
  315. #endif /* CONFIG_BLK_DEV_IDEDMA */
  316. hwif->tuneproc = &cs5530_tuneproc;
  317. basereg = CS5530_BASEREG(hwif);
  318. d0_timings = inl(basereg+0);
  319. if (CS5530_BAD_PIO(d0_timings)) { /* PIO timings not initialized? */
  320. outl(cs5530_pio_timings[(d0_timings>>31)&1][0], basereg+0);
  321. if (!hwif->drives[0].autotune)
  322. hwif->drives[0].autotune = 1; /* needs autotuning later */
  323. }
  324. if (CS5530_BAD_PIO(inl(basereg+8))) { /* PIO timings not initialized? */
  325. outl(cs5530_pio_timings[(d0_timings>>31)&1][0], basereg+8);
  326. if (!hwif->drives[1].autotune)
  327. hwif->drives[1].autotune = 1; /* needs autotuning later */
  328. }
  329. }
  330. }