ali14xx.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. /*
  2. * linux/drivers/ide/legacy/ali14xx.c Version 0.03 Feb 09, 1996
  3. *
  4. * Copyright (C) 1996 Linus Torvalds & author (see below)
  5. */
  6. /*
  7. * ALI M14xx chipset EIDE controller
  8. *
  9. * Works for ALI M1439/1443/1445/1487/1489 chipsets.
  10. *
  11. * Adapted from code developed by derekn@vw.ece.cmu.edu. -ml
  12. * Derek's notes follow:
  13. *
  14. * I think the code should be pretty understandable,
  15. * but I'll be happy to (try to) answer questions.
  16. *
  17. * The critical part is in the setupDrive function. The initRegisters
  18. * function doesn't seem to be necessary, but the DOS driver does it, so
  19. * I threw it in.
  20. *
  21. * I've only tested this on my system, which only has one disk. I posted
  22. * it to comp.sys.linux.hardware, so maybe some other people will try it
  23. * out.
  24. *
  25. * Derek Noonburg (derekn@ece.cmu.edu)
  26. * 95-sep-26
  27. *
  28. * Update 96-jul-13:
  29. *
  30. * I've since upgraded to two disks and a CD-ROM, with no trouble, and
  31. * I've also heard from several others who have used it successfully.
  32. * This driver appears to work with both the 1443/1445 and the 1487/1489
  33. * chipsets. I've added support for PIO mode 4 for the 1487. This
  34. * seems to work just fine on the 1443 also, although I'm not sure it's
  35. * advertised as supporting mode 4. (I've been running a WDC AC21200 in
  36. * mode 4 for a while now with no trouble.) -Derek
  37. */
  38. #undef REALLY_SLOW_IO /* most systems can safely undef this */
  39. #include <linux/module.h>
  40. #include <linux/config.h>
  41. #include <linux/types.h>
  42. #include <linux/kernel.h>
  43. #include <linux/delay.h>
  44. #include <linux/timer.h>
  45. #include <linux/mm.h>
  46. #include <linux/ioport.h>
  47. #include <linux/blkdev.h>
  48. #include <linux/hdreg.h>
  49. #include <linux/ide.h>
  50. #include <linux/init.h>
  51. #include <asm/io.h>
  52. /* port addresses for auto-detection */
  53. #define ALI_NUM_PORTS 4
  54. static int ports[ALI_NUM_PORTS] __initdata = {0x074, 0x0f4, 0x034, 0x0e4};
  55. /* register initialization data */
  56. typedef struct { u8 reg, data; } RegInitializer;
  57. static RegInitializer initData[] __initdata = {
  58. {0x01, 0x0f}, {0x02, 0x00}, {0x03, 0x00}, {0x04, 0x00},
  59. {0x05, 0x00}, {0x06, 0x00}, {0x07, 0x2b}, {0x0a, 0x0f},
  60. {0x25, 0x00}, {0x26, 0x00}, {0x27, 0x00}, {0x28, 0x00},
  61. {0x29, 0x00}, {0x2a, 0x00}, {0x2f, 0x00}, {0x2b, 0x00},
  62. {0x2c, 0x00}, {0x2d, 0x00}, {0x2e, 0x00}, {0x30, 0x00},
  63. {0x31, 0x00}, {0x32, 0x00}, {0x33, 0x00}, {0x34, 0xff},
  64. {0x35, 0x03}, {0x00, 0x00}
  65. };
  66. #define ALI_MAX_PIO 4
  67. /* timing parameter registers for each drive */
  68. static struct { u8 reg1, reg2, reg3, reg4; } regTab[4] = {
  69. {0x03, 0x26, 0x04, 0x27}, /* drive 0 */
  70. {0x05, 0x28, 0x06, 0x29}, /* drive 1 */
  71. {0x2b, 0x30, 0x2c, 0x31}, /* drive 2 */
  72. {0x2d, 0x32, 0x2e, 0x33}, /* drive 3 */
  73. };
  74. static int basePort; /* base port address */
  75. static int regPort; /* port for register number */
  76. static int dataPort; /* port for register data */
  77. static u8 regOn; /* output to base port to access registers */
  78. static u8 regOff; /* output to base port to close registers */
  79. /*------------------------------------------------------------------------*/
  80. /*
  81. * Read a controller register.
  82. */
  83. static inline u8 inReg (u8 reg)
  84. {
  85. outb_p(reg, regPort);
  86. return inb(dataPort);
  87. }
  88. /*
  89. * Write a controller register.
  90. */
  91. static void outReg (u8 data, u8 reg)
  92. {
  93. outb_p(reg, regPort);
  94. outb_p(data, dataPort);
  95. }
  96. /*
  97. * Set PIO mode for the specified drive.
  98. * This function computes timing parameters
  99. * and sets controller registers accordingly.
  100. */
  101. static void ali14xx_tune_drive (ide_drive_t *drive, u8 pio)
  102. {
  103. int driveNum;
  104. int time1, time2;
  105. u8 param1, param2, param3, param4;
  106. unsigned long flags;
  107. ide_pio_data_t d;
  108. int bus_speed = system_bus_clock();
  109. pio = ide_get_best_pio_mode(drive, pio, ALI_MAX_PIO, &d);
  110. /* calculate timing, according to PIO mode */
  111. time1 = d.cycle_time;
  112. time2 = ide_pio_timings[pio].active_time;
  113. param3 = param1 = (time2 * bus_speed + 999) / 1000;
  114. param4 = param2 = (time1 * bus_speed + 999) / 1000 - param1;
  115. if (pio < 3) {
  116. param3 += 8;
  117. param4 += 8;
  118. }
  119. printk(KERN_DEBUG "%s: PIO mode%d, t1=%dns, t2=%dns, cycles = %d+%d, %d+%d\n",
  120. drive->name, pio, time1, time2, param1, param2, param3, param4);
  121. /* stuff timing parameters into controller registers */
  122. driveNum = (HWIF(drive)->index << 1) + drive->select.b.unit;
  123. spin_lock_irqsave(&ide_lock, flags);
  124. outb_p(regOn, basePort);
  125. outReg(param1, regTab[driveNum].reg1);
  126. outReg(param2, regTab[driveNum].reg2);
  127. outReg(param3, regTab[driveNum].reg3);
  128. outReg(param4, regTab[driveNum].reg4);
  129. outb_p(regOff, basePort);
  130. spin_unlock_irqrestore(&ide_lock, flags);
  131. }
  132. /*
  133. * Auto-detect the IDE controller port.
  134. */
  135. static int __init findPort (void)
  136. {
  137. int i;
  138. u8 t;
  139. unsigned long flags;
  140. local_irq_save(flags);
  141. for (i = 0; i < ALI_NUM_PORTS; ++i) {
  142. basePort = ports[i];
  143. regOff = inb(basePort);
  144. for (regOn = 0x30; regOn <= 0x33; ++regOn) {
  145. outb_p(regOn, basePort);
  146. if (inb(basePort) == regOn) {
  147. regPort = basePort + 4;
  148. dataPort = basePort + 8;
  149. t = inReg(0) & 0xf0;
  150. outb_p(regOff, basePort);
  151. local_irq_restore(flags);
  152. if (t != 0x50)
  153. return 0;
  154. return 1; /* success */
  155. }
  156. }
  157. outb_p(regOff, basePort);
  158. }
  159. local_irq_restore(flags);
  160. return 0;
  161. }
  162. /*
  163. * Initialize controller registers with default values.
  164. */
  165. static int __init initRegisters (void) {
  166. RegInitializer *p;
  167. u8 t;
  168. unsigned long flags;
  169. local_irq_save(flags);
  170. outb_p(regOn, basePort);
  171. for (p = initData; p->reg != 0; ++p)
  172. outReg(p->data, p->reg);
  173. outb_p(0x01, regPort);
  174. t = inb(regPort) & 0x01;
  175. outb_p(regOff, basePort);
  176. local_irq_restore(flags);
  177. return t;
  178. }
  179. static int __init ali14xx_probe(void)
  180. {
  181. ide_hwif_t *hwif, *mate;
  182. printk(KERN_DEBUG "ali14xx: base=0x%03x, regOn=0x%02x.\n",
  183. basePort, regOn);
  184. /* initialize controller registers */
  185. if (!initRegisters()) {
  186. printk(KERN_ERR "ali14xx: Chip initialization failed.\n");
  187. return 1;
  188. }
  189. hwif = &ide_hwifs[0];
  190. mate = &ide_hwifs[1];
  191. hwif->chipset = ide_ali14xx;
  192. hwif->tuneproc = &ali14xx_tune_drive;
  193. hwif->mate = mate;
  194. mate->chipset = ide_ali14xx;
  195. mate->tuneproc = &ali14xx_tune_drive;
  196. mate->mate = hwif;
  197. mate->channel = 1;
  198. probe_hwif_init(hwif);
  199. probe_hwif_init(mate);
  200. create_proc_ide_interfaces();
  201. return 0;
  202. }
  203. /* Can be called directly from ide.c. */
  204. int __init ali14xx_init(void)
  205. {
  206. /* auto-detect IDE controller port */
  207. if (findPort()) {
  208. if (ali14xx_probe())
  209. return -ENODEV;
  210. return 0;
  211. }
  212. printk(KERN_ERR "ali14xx: not found.\n");
  213. return -ENODEV;
  214. }
  215. #ifdef MODULE
  216. module_init(ali14xx_init);
  217. #endif
  218. MODULE_AUTHOR("see local file");
  219. MODULE_DESCRIPTION("support of ALI 14XX IDE chipsets");
  220. MODULE_LICENSE("GPL");