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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Basic EISA bus support for the SGI Indigo-2.
  3.  *
  4.  * (C) 2002 Pascal Dameme <netinet@freesurf.fr>
  5.  *      and Marc Zyngier <mzyngier@freesurf.fr>
  6.  *
  7.  * This code is released under both the GPL version 2 and BSD
  8.  * licenses.  Either license may be used.
  9.  *
  10.  * This code offers a very basic support for this EISA bus present in
  11.  * the SGI Indigo-2. It currently only supports PIO (forget about DMA
  12.  * for the time being). This is enough for a low-end ethernet card,
  13.  * but forget about your favorite SCSI card...
  14.  *
  15.  * TODO :
  16.  * - Fix bugs...
  17.  * - Add ISA support
  18.  * - Add DMA (yeah, right...).
  19.  * - Fix more bugs.
  20.  */
  21. #include <linux/config.h>
  22. #include <linux/types.h>
  23. #include <linux/init.h>
  24. #include <linux/kernel_stat.h>
  25. #include <linux/signal.h>
  26. #include <linux/sched.h>
  27. #include <linux/interrupt.h>
  28. #include <linux/delay.h>
  29. #include <asm/irq.h>
  30. #include <asm/mipsregs.h>
  31. #include <asm/addrspace.h>
  32. #include <asm/sgi/sgint23.h>
  33. extern int EISA_bus;
  34. extern void do_IRQ(int irq, struct pt_regs *regs);
  35. #define EISA_MAX_SLOTS   4
  36. #define EISA_MAX_IRQ             16
  37. #define EISA_TO_PHYS(x)  (0x00080000 | (x))
  38. #define EISA_TO_KSEG1(x) ((void *) KSEG1ADDR(EISA_TO_PHYS((x))))
  39. #define EIU_MODE_REG     0x0009ffc0
  40. #define EIU_STAT_REG     0x0009ffc4
  41. #define EIU_PREMPT_REG   0x0009ffc8
  42. #define EIU_QUIET_REG    0x0009ffcc
  43. #define EIU_INTRPT_ACK   0x00090004
  44. #define EISA_DMA1_STATUS            8
  45. #define EISA_INT1_CTRL           0x20
  46. #define EISA_INT1_MASK           0x21
  47. #define EISA_INT2_CTRL           0xA0
  48. #define EISA_INT2_MASK           0xA1
  49. #define EISA_DMA2_STATUS         0xD0
  50. #define EISA_DMA2_WRITE_SINGLE   0xD4
  51. #define EISA_EXT_NMI_RESET_CTRL 0x461
  52. #define EISA_INT1_EDGE_LEVEL    0x4D0
  53. #define EISA_INT2_EDGE_LEVEL    0x4D1
  54. #define EISA_VENDOR_ID_OFFSET   0xC80
  55. #define EIU_WRITE_32(x,y) { *((u32 *) KSEG1ADDR(x)) = (u32) (y); mb(); }
  56. #define EIU_READ_8(x) *((u8 *) KSEG1ADDR(x))
  57. #define EISA_WRITE_8(x,y) { *((u8 *) EISA_TO_KSEG1(x)) = (u8) (y); mb(); }
  58. #define EISA_READ_8(x) *((u8 *) EISA_TO_KSEG1(x))
  59. static char *decode_eisa_sig(u8 * sig)
  60. {
  61. static char sig_str[8];
  62. u16 rev;
  63. if (sig[0] & 0x80)
  64. return NULL;
  65. sig_str[0] = ((sig[0] >> 2) & 0x1f) + ('A' - 1);
  66. sig_str[1] = (((sig[0] & 3) << 3) | (sig[1] >> 5)) + ('A' - 1);
  67. sig_str[2] = (sig[1] & 0x1f) + ('A' - 1);
  68. rev = (sig[2] << 8) | sig[3];
  69. sprintf(sig_str + 3, "%04X", rev);
  70. return sig_str;
  71. }
  72. static void ip22_eisa_intr(int irq, void *dev_id, struct pt_regs *regs)
  73. {
  74. u8 eisa_irq;
  75. u8 dma1, dma2;
  76. eisa_irq = EIU_READ_8(EIU_INTRPT_ACK);
  77. dma1 = EISA_READ_8(EISA_DMA1_STATUS);
  78. dma2 = EISA_READ_8(EISA_DMA2_STATUS);
  79. if (eisa_irq >= EISA_MAX_IRQ) {
  80. /* Oops, Bad Stuff Happened... */
  81. printk("eisa_irq %d out of boundn", eisa_irq);
  82. EISA_WRITE_8(EISA_INT2_CTRL, 0x20);
  83. EISA_WRITE_8(EISA_INT1_CTRL, 0x20);
  84. } else
  85. do_IRQ(eisa_irq, regs);
  86. }
  87. static void enable_eisa1_irq(unsigned int irq)
  88. {
  89. unsigned long flags;
  90. u8 mask;
  91. save_and_cli(flags);
  92. mask = EISA_READ_8(EISA_INT1_MASK);
  93. mask &= ~((u8) (1 << irq));
  94. EISA_WRITE_8(EISA_INT1_MASK, mask);
  95. restore_flags(flags);
  96. }
  97. static unsigned int startup_eisa1_irq(unsigned int irq)
  98. {
  99. u8 edge;
  100. /* Only use edge interrupts for EISA */
  101. edge = EISA_READ_8(EISA_INT1_EDGE_LEVEL);
  102. edge &= ~((u8) (1 << irq));
  103. EISA_WRITE_8(EISA_INT1_EDGE_LEVEL, edge);
  104. enable_eisa1_irq(irq);
  105. return 0;
  106. }
  107. static void disable_eisa1_irq(unsigned int irq)
  108. {
  109. u8 mask;
  110. mask = EISA_READ_8(EISA_INT1_MASK);
  111. mask |= ((u8) (1 << irq));
  112. EISA_WRITE_8(EISA_INT1_MASK, mask);
  113. }
  114. #define shutdown_eisa1_irq disable_eisa1_irq
  115. static void mask_and_ack_eisa1_irq(unsigned int irq)
  116. {
  117. disable_eisa1_irq(irq);
  118. EISA_WRITE_8(EISA_INT1_CTRL, 0x20);
  119. }
  120. static void end_eisa1_irq(unsigned int irq)
  121. {
  122. if (!(irq_desc[irq].status & (IRQ_DISABLED | IRQ_INPROGRESS)))
  123. enable_eisa1_irq(irq);
  124. }
  125. static struct hw_interrupt_type ip22_eisa1_irq_type = {
  126. "IP22 EISA",
  127. startup_eisa1_irq,
  128. shutdown_eisa1_irq,
  129. enable_eisa1_irq,
  130. disable_eisa1_irq,
  131. mask_and_ack_eisa1_irq,
  132. end_eisa1_irq,
  133. NULL
  134. };
  135. static void enable_eisa2_irq(unsigned int irq)
  136. {
  137. unsigned long flags;
  138. u8 mask;
  139. save_and_cli(flags);
  140. mask = EISA_READ_8(EISA_INT2_MASK);
  141. mask &= ~((u8) (1 << (irq - 8)));
  142. EISA_WRITE_8(EISA_INT2_MASK, mask);
  143. restore_flags(flags);
  144. }
  145. static unsigned int startup_eisa2_irq(unsigned int irq)
  146. {
  147. u8 edge;
  148. /* Only use edge interrupts for EISA */
  149. edge = EISA_READ_8(EISA_INT2_EDGE_LEVEL);
  150. edge &= ~((u8) (1 << (irq - 8)));
  151. EISA_WRITE_8(EISA_INT2_EDGE_LEVEL, edge);
  152. enable_eisa2_irq(irq);
  153. return 0;
  154. }
  155. static void disable_eisa2_irq(unsigned int irq)
  156. {
  157. u8 mask;
  158. mask = EISA_READ_8(EISA_INT2_MASK);
  159. mask |= ((u8) (1 << (irq - 8)));
  160. EISA_WRITE_8(EISA_INT2_MASK, mask);
  161. }
  162. #define shutdown_eisa2_irq disable_eisa2_irq
  163. static void mask_and_ack_eisa2_irq(unsigned int irq)
  164. {
  165. disable_eisa2_irq(irq);
  166. EISA_WRITE_8(EISA_INT2_CTRL, 0x20);
  167. EISA_WRITE_8(EISA_INT1_CTRL, 0x20);
  168. }
  169. static void end_eisa2_irq(unsigned int irq)
  170. {
  171. if (!(irq_desc[irq].status & (IRQ_DISABLED | IRQ_INPROGRESS)))
  172. enable_eisa2_irq(irq);
  173. }
  174. static struct hw_interrupt_type ip22_eisa2_irq_type = {
  175. "IP22 EISA",
  176. startup_eisa2_irq,
  177. shutdown_eisa2_irq,
  178. enable_eisa2_irq,
  179. disable_eisa2_irq,
  180. mask_and_ack_eisa2_irq,
  181. end_eisa2_irq,
  182. NULL
  183. };
  184. static struct irqaction eisa_action = {
  185. ip22_eisa_intr, 0, 0, "EISA", NULL, NULL
  186. };
  187. static struct irqaction cascade_action = {
  188. no_action, 0, 0, "EISA cascade", NULL, NULL
  189. };
  190. int __init ip22_eisa_init(void)
  191. {
  192. int i, c;
  193. char *str;
  194. u8 *slot_addr;
  195. printk("EISA: Probing bus...n");
  196. for (c = 0, i = 1; i <= EISA_MAX_SLOTS; i++) {
  197. slot_addr =
  198.     (u8 *) EISA_TO_KSEG1((0x1000 * i) +
  199.  EISA_VENDOR_ID_OFFSET);
  200. if ((str = decode_eisa_sig(slot_addr))) {
  201. printk("EISA: slot %d : %s detected.n", i, str);
  202. c++;
  203. }
  204. }
  205. printk("EISA: Detected %d card%s.n", c, c < 2 ? "" : "s");
  206. #ifdef CONFIG_ISA
  207. printk("ISA support compiled in.n");
  208. #endif
  209. /* Warning : BlackMagicAhead(tm).
  210.    Please wave your favorite dead chicken over the busses */
  211. /* First say hello to the EIU */
  212. EIU_WRITE_32(EIU_PREMPT_REG, 0x0000FFFF);
  213. EIU_WRITE_32(EIU_QUIET_REG, 1);
  214. EIU_WRITE_32(EIU_MODE_REG, 0x40f3c07F);
  215. /* Now be nice to the EISA chipset */
  216. EISA_WRITE_8(EISA_EXT_NMI_RESET_CTRL, 1);
  217. for (i = 0; i < 10000; i++); /* Wait long enough for the dust to settle */
  218. EISA_WRITE_8(EISA_EXT_NMI_RESET_CTRL, 0);
  219. EISA_WRITE_8(EISA_INT1_CTRL, 0x11);
  220. EISA_WRITE_8(EISA_INT2_CTRL, 0x11);
  221. EISA_WRITE_8(EISA_INT1_MASK, 0);
  222. EISA_WRITE_8(EISA_INT2_MASK, 8);
  223. EISA_WRITE_8(EISA_INT1_MASK, 4);
  224. EISA_WRITE_8(EISA_INT2_MASK, 2);
  225. EISA_WRITE_8(EISA_INT1_MASK, 1);
  226. EISA_WRITE_8(EISA_INT2_MASK, 1);
  227. EISA_WRITE_8(EISA_INT1_MASK, 0xfb);
  228. EISA_WRITE_8(EISA_INT2_MASK, 0xff);
  229. EISA_WRITE_8(EISA_DMA2_WRITE_SINGLE, 0);
  230. for (i = SGINT_EISA; i < (SGINT_EISA + EISA_MAX_IRQ); i++) {
  231. irq_desc[i].status = IRQ_DISABLED;
  232. irq_desc[i].action = 0;
  233. irq_desc[i].depth = 1;
  234. if (i < (SGINT_EISA + 8))
  235. irq_desc[i].handler = &ip22_eisa1_irq_type;
  236. else
  237. irq_desc[i].handler = &ip22_eisa2_irq_type;
  238. }
  239. /* Cannot use request_irq because of kmalloc not being ready at such
  240.  * an early stage. Yes, I've been bitten... */
  241. setup_irq(SGI_EISA_IRQ, &eisa_action);
  242. setup_irq(SGINT_EISA + 2, &cascade_action);
  243. EISA_bus = 1;
  244. return 0;
  245. }