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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *
  3.  * By Dustin McIntire (dustin@sensoria.com) (c)2001
  4.  * 
  5.  * Setup and IRQ handling code for the HD64465 companion chip.
  6.  * by Greg Banks <gbanks@pocketpenguins.com>
  7.  * Copyright (c) 2000 PocketPenguins Inc
  8.  *
  9.  * Derived from setup_hd64465.c which bore the message:
  10.  * Greg Banks <gbanks@pocketpenguins.com>
  11.  * Copyright (c) 2000 PocketPenguins Inc and
  12.  * Copyright (C) 2000 YAEGASHI Takeshi
  13.  * and setup_cqreek.c which bore message:
  14.  * Copyright (C) 2000  Niibe Yutaka
  15.  * 
  16.  * May be copied or modified under the terms of the GNU General Public
  17.  * License.  See linux/COPYING for more information.
  18.  *
  19.  * Setup and IRQ functions for a Hitachi Big Sur Evaluation Board.
  20.  * 
  21.  */
  22. #include <linux/config.h>
  23. #include <linux/sched.h>
  24. #include <linux/module.h>
  25. #include <linux/kernel.h>
  26. #include <linux/param.h>
  27. #include <linux/ioport.h>
  28. #include <linux/interrupt.h>
  29. #include <linux/init.h>
  30. #include <linux/irq.h>
  31. #include <asm/io.h>
  32. #include <asm/irq.h>
  33. #include <asm/bitops.h>
  34. #include <asm/io_bigsur.h>
  35. #include <asm/hd64465.h>
  36. #include <asm/bigsur.h>
  37. //#define BIGSUR_DEBUG 3
  38. #undef BIGSUR_DEBUG
  39. #ifdef BIGSUR_DEBUG
  40. #define DPRINTK(args...) printk(args)
  41. #define DIPRINTK(n, args...) if (BIGSUR_DEBUG>(n)) printk(args)
  42. #else
  43. #define DPRINTK(args...)
  44. #define DIPRINTK(n, args...)
  45. #endif /* BIGSUR_DEBUG */
  46. #ifdef CONFIG_HD64465
  47. extern int hd64465_irq_demux(int irq);
  48. #endif /* CONFIG_HD64465 */
  49. /*===========================================================*/
  50. // Big Sur CPLD IRQ Routines
  51. /*===========================================================*/
  52. /* Level 1 IRQ routines */
  53. static void disable_bigsur_l1irq(unsigned int irq)
  54. {
  55. unsigned long flags;
  56. unsigned char mask;
  57. unsigned int mask_port = ((irq - BIGSUR_IRQ_LOW)/8) ? BIGSUR_IRLMR1 : BIGSUR_IRLMR0;
  58. unsigned char bit =  (1 << ((irq - MGATE_IRQ_LOW)%8) );
  59. if(irq >= BIGSUR_IRQ_LOW && irq < BIGSUR_IRQ_HIGH) {
  60.     DPRINTK("Disable L1 IRQ %dn", irq);
  61.     DIPRINTK(2,"disable_bigsur_l1irq: IMR=0x%08x mask=0x%xn", 
  62.     mask_port, bit);
  63. save_and_cli(flags);
  64. /* Disable IRQ - set mask bit */
  65. mask = inb(mask_port) | bit;
  66. outb(mask, mask_port);
  67. restore_flags(flags);
  68. return;
  69. }
  70.     DPRINTK("disable_bigsur_l1irq: Invalid IRQ %dn", irq);
  71. }
  72. static void enable_bigsur_l1irq(unsigned int irq)
  73. {
  74. unsigned long flags;
  75. unsigned char mask;
  76. unsigned int mask_port = ((irq - BIGSUR_IRQ_LOW)/8) ? BIGSUR_IRLMR1 : BIGSUR_IRLMR0;
  77. unsigned char bit =  (1 << ((irq - MGATE_IRQ_LOW)%8) );
  78. if(irq >= BIGSUR_IRQ_LOW && irq < BIGSUR_IRQ_HIGH) {
  79.     DPRINTK("Enable L1 IRQ %dn", irq);
  80.     DIPRINTK(2,"enable_bigsur_l1irq: IMR=0x%08x mask=0x%xn", 
  81.     mask_port, bit);
  82. save_and_cli(flags);
  83. /* Enable L1 IRQ - clear mask bit */
  84. mask = inb(mask_port) & ~bit;
  85. outb(mask, mask_port);
  86. restore_flags(flags);
  87. return;
  88. }
  89.     DPRINTK("enable_bigsur_l1irq: Invalid IRQ %dn", irq);
  90. }
  91. /* Level 2 irq masks and registers for L2 decoding */
  92. /* Level2 bitmasks for each level 1 IRQ */
  93. const u32 bigsur_l2irq_mask[] = 
  94.     {0x40,0x80,0x08,0x01,0x01,0x3C,0x3E,0xFF,0x40,0x80,0x06,0x03};
  95. /* Level2 to ISR[n] map for each level 1 IRQ */
  96. const u32 bigsur_l2irq_reg[]  = 
  97.     {   2,   2,   3,   3,   1,   2,   1,   0,   1,   1,   3,   2};
  98. /* Level2 to Level 1 IRQ map */
  99. const u32 bigsur_l2_l1_map[]  = 
  100.     {7,7,7,7,7,7,7,7, 4,6,6,6,6,6,8,9, 11,11,5,5,5,5,0,1, 3,10,10,2,-1,-1,-1,-1};
  101. /* IRQ inactive level (high or low) */
  102. const u32 bigsur_l2_inactv_state[]  =   {0x00, 0xBE, 0xFC, 0xF7};
  103.  
  104. /* CPLD external status and mask registers base and offsets */
  105. static const u32 isr_base = BIGSUR_IRQ0;
  106. static const u32 isr_offset = BIGSUR_IRQ0 - BIGSUR_IRQ1;
  107. static const u32 imr_base = BIGSUR_IMR0;
  108. static const u32 imr_offset = BIGSUR_IMR0 - BIGSUR_IMR1;
  109. #define REG_NUM(irq)  ((irq-BIGSUR_2NDLVL_IRQ_LOW)/8 )
  110. /* Level 2 IRQ routines */
  111. static void disable_bigsur_l2irq(unsigned int irq)
  112. {
  113. unsigned long flags;
  114. unsigned char mask;
  115. unsigned char bit = 1 << ((irq-BIGSUR_2NDLVL_IRQ_LOW)%8);
  116. unsigned int mask_port = imr_base - REG_NUM(irq)*imr_offset;
  117.     if(irq >= BIGSUR_2NDLVL_IRQ_LOW && irq < BIGSUR_2NDLVL_IRQ_HIGH) {
  118.     DPRINTK("Disable L2 IRQ %dn", irq);
  119.     DIPRINTK(2,"disable_bigsur_l2irq: IMR=0x%08x mask=0x%xn", 
  120.     mask_port, bit);
  121. save_and_cli(flags);
  122. /* Disable L2 IRQ - set mask bit */
  123. mask = inb(mask_port) | bit;
  124. outb(mask, mask_port);
  125. restore_flags(flags);
  126. return;
  127. }
  128.   DPRINTK("disable_bigsur_l2irq: Invalid IRQ %dn", irq);
  129. }
  130. static void enable_bigsur_l2irq(unsigned int irq)
  131. {
  132. unsigned long flags;
  133. unsigned char mask;
  134. unsigned char bit = 1 << ((irq-BIGSUR_2NDLVL_IRQ_LOW)%8);
  135. unsigned int mask_port = imr_base - REG_NUM(irq)*imr_offset;
  136.     if(irq >= BIGSUR_2NDLVL_IRQ_LOW && irq < BIGSUR_2NDLVL_IRQ_HIGH) {
  137.     DPRINTK("Enable L2 IRQ %dn", irq);
  138.     DIPRINTK(2,"enable_bigsur_l2irq: IMR=0x%08x mask=0x%xn", 
  139.     mask_port, bit);
  140. save_and_cli(flags);
  141. /* Enable L2 IRQ - clear mask bit */
  142. mask = inb(mask_port) & ~bit;
  143. outb(mask, mask_port);
  144. restore_flags(flags);
  145. return;
  146. }
  147.     DPRINTK("enable_bigsur_l2irq: Invalid IRQ %dn", irq);
  148. }
  149. static void mask_and_ack_bigsur(unsigned int irq)
  150. {
  151.     DPRINTK("mask_and_ack_bigsur IRQ %dn", irq);
  152. if(irq >= BIGSUR_IRQ_LOW && irq < BIGSUR_IRQ_HIGH)
  153. disable_bigsur_l1irq(irq);
  154. else
  155. disable_bigsur_l2irq(irq);
  156. }
  157. static void end_bigsur_irq(unsigned int irq)
  158. {
  159.     DPRINTK("end_bigsur_irq IRQ %dn", irq);
  160. if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS))) {
  161. if(irq >= BIGSUR_IRQ_LOW && irq < BIGSUR_IRQ_HIGH)
  162. enable_bigsur_l1irq(irq);
  163. else
  164. enable_bigsur_l2irq(irq);
  165. }
  166. }
  167. static unsigned int startup_bigsur_irq(unsigned int irq)
  168. u8 mask;
  169. u32 reg;
  170.     DPRINTK("startup_bigsur_irq IRQ %dn", irq);
  171. if(irq >= BIGSUR_IRQ_LOW && irq < BIGSUR_IRQ_HIGH) {
  172. /* Enable the L1 IRQ */
  173. enable_bigsur_l1irq(irq);
  174. /* Enable all L2 IRQs in this L1 IRQ */
  175. mask = ~(bigsur_l2irq_mask[irq-BIGSUR_IRQ_LOW]);
  176. reg = imr_base - bigsur_l2irq_reg[irq-BIGSUR_IRQ_LOW] * imr_offset;
  177. mask &= inb(reg);
  178. outb(mask,reg); 
  179.     DIPRINTK(2,"startup_bigsur_irq: IMR=0x%08x mask=0x%xn",reg,inb(reg));
  180. }
  181. else {
  182. /* Enable the L2 IRQ - clear mask bit */
  183. enable_bigsur_l2irq(irq);
  184. /* Enable the L1 bit masking this L2 IRQ */
  185. enable_bigsur_l1irq(bigsur_l2_l1_map[irq-BIGSUR_2NDLVL_IRQ_LOW]);
  186.     DIPRINTK(2,"startup_bigsur_irq: L1=%d L2=%dn",
  187.     bigsur_l2_l1_map[irq-BIGSUR_2NDLVL_IRQ_LOW],irq);
  188. }
  189. return 0;
  190. }
  191. static void shutdown_bigsur_irq(unsigned int irq)
  192. {
  193.     DPRINTK("shutdown_bigsur_irq IRQ %dn", irq);
  194. if(irq >= BIGSUR_IRQ_LOW && irq < BIGSUR_IRQ_HIGH)
  195. disable_bigsur_l1irq(irq);
  196. else
  197. disable_bigsur_l2irq(irq);
  198. }
  199. /* Define the IRQ structures for the L1 and L2 IRQ types */
  200. static struct hw_interrupt_type bigsur_l1irq_type = {
  201. "BigSur-CPLD-Level1-IRQ",
  202. startup_bigsur_irq,
  203. shutdown_bigsur_irq,
  204. enable_bigsur_l1irq,
  205. disable_bigsur_l1irq,
  206. mask_and_ack_bigsur,
  207. end_bigsur_irq
  208. };
  209. static struct hw_interrupt_type bigsur_l2irq_type = {
  210. "BigSur-CPLD-Level2-IRQ",
  211. startup_bigsur_irq,
  212. shutdown_bigsur_irq,
  213. enable_bigsur_l2irq,
  214. disable_bigsur_l2irq,
  215. mask_and_ack_bigsur,
  216. end_bigsur_irq
  217. };
  218. static void make_bigsur_l1isr(unsigned int irq) {
  219. /* sanity check first */
  220. if(irq >= BIGSUR_IRQ_LOW && irq < BIGSUR_IRQ_HIGH) {
  221. /* save the handler in the main description table */
  222. irq_desc[irq].handler = &bigsur_l1irq_type;
  223. irq_desc[irq].status = IRQ_DISABLED;
  224. irq_desc[irq].action = 0;
  225. irq_desc[irq].depth = 1;
  226. disable_bigsur_l1irq(irq);
  227. return;
  228. }
  229.     DPRINTK("make_bigsur_l1isr: bad irq, %dn", irq);
  230. return;
  231. static void make_bigsur_l2isr(unsigned int irq) {
  232. /* sanity check first */
  233. if(irq >= BIGSUR_2NDLVL_IRQ_LOW && irq < BIGSUR_2NDLVL_IRQ_HIGH) {
  234. /* save the handler in the main description table */
  235. irq_desc[irq].handler = &bigsur_l2irq_type;
  236. irq_desc[irq].status = IRQ_DISABLED;
  237. irq_desc[irq].action = 0;
  238. irq_desc[irq].depth = 1;
  239. disable_bigsur_l2irq(irq);
  240. return;
  241. }
  242.     DPRINTK("make_bigsur_l2isr: bad irq, %dn", irq);
  243. return;
  244. /* The IRQ's will be decoded as follows: 
  245.  * If a level 2 handler exists and there is an unmasked active
  246.  * IRQ, the 2nd level handler will be called.
  247.  * If a level 2 handler does not exist for the active IRQ
  248.  * the 1st level handler will be called.
  249.  */ 
  250. int bigsur_irq_demux(int irq)
  251. {
  252. int dmux_irq = irq;
  253. u8 mask, actv_irqs;
  254. u32 reg_num;
  255.     DIPRINTK(3,"bigsur_irq_demux, irq=%dn", irq);
  256.     /* decode the 1st level IRQ */
  257. if(irq >= BIGSUR_IRQ_LOW && irq < BIGSUR_IRQ_HIGH) {
  258. /* Get corresponding L2 ISR bitmask and ISR number */
  259. mask = bigsur_l2irq_mask[irq-BIGSUR_IRQ_LOW];
  260. reg_num = bigsur_l2irq_reg[irq-BIGSUR_IRQ_LOW];
  261. /* find the active IRQ's (XOR with inactive level)*/
  262. actv_irqs = inb(isr_base-reg_num*isr_offset) ^ 
  263. bigsur_l2_inactv_state[reg_num];
  264. /* decode active IRQ's */
  265. actv_irqs = actv_irqs & mask & ~(inb(imr_base-reg_num*imr_offset));
  266. /* if NEZ then we have an active L2 IRQ */
  267. if(actv_irqs) dmux_irq = ffz(~actv_irqs) + reg_num*8+BIGSUR_2NDLVL_IRQ_LOW;
  268.     /* if no 2nd level IRQ action, but has 1st level, use 1st level handler */
  269. if(!irq_desc[dmux_irq].action && irq_desc[irq].action) 
  270. dmux_irq = irq;
  271.     DIPRINTK(1,"bigsur_irq_demux: irq=%d dmux_irq=%d mask=0x%04x reg=%dn", 
  272.     irq, dmux_irq, mask, reg_num);
  273. }
  274. #ifdef CONFIG_HD64465
  275. dmux_irq = hd64465_irq_demux(dmux_irq);
  276. #endif /* CONFIG_HD64465 */
  277.     DIPRINTK(3,"bigsur_irq_demux, demux_irq=%dn", dmux_irq);
  278. return dmux_irq;
  279. }
  280. /*===========================================================*/
  281. // Big Sur Init Routines
  282. /*===========================================================*/
  283. void __init init_bigsur_IRQ(void)
  284. {
  285. int i;
  286. if (!MACH_BIGSUR) return;
  287. /* Create ISR's for Big Sur CPLD IRQ's */
  288. /*==============================================================*/
  289. for(i=BIGSUR_IRQ_LOW;i<BIGSUR_IRQ_HIGH;i++) 
  290.   make_bigsur_l1isr(i);
  291. printk(KERN_INFO "Big Sur CPLD L1 interrupts %d to %d.n",
  292. BIGSUR_IRQ_LOW,BIGSUR_IRQ_HIGH);
  293. for(i=BIGSUR_2NDLVL_IRQ_LOW;i<BIGSUR_2NDLVL_IRQ_HIGH;i++) 
  294.   make_bigsur_l2isr(i);
  295. printk(KERN_INFO "Big Sur CPLD L2 interrupts %d to %d.n",
  296. BIGSUR_2NDLVL_IRQ_LOW,BIGSUR_2NDLVL_IRQ_HIGH);
  297. }
  298. int __init setup_bigsur(void)
  299. {
  300. static int done = 0; /* run this only once */
  301. if (!MACH_BIGSUR || done) return 0;
  302. done = 1;
  303. /* Mask all 2nd level IRQ's */
  304. outb(-1,BIGSUR_IMR0);
  305. outb(-1,BIGSUR_IMR1);
  306. outb(-1,BIGSUR_IMR2);
  307. outb(-1,BIGSUR_IMR3);
  308. /* Mask 1st level interrupts */
  309. outb(-1,BIGSUR_IRLMR0);
  310. outb(-1,BIGSUR_IRLMR1);
  311. #if defined (CONFIG_HD64465) && defined (CONFIG_SERIAL) 
  312. /* remap IO ports for first ISA serial port to HD64465 UART */
  313. bigsur_port_map(0x3f8, 8, CONFIG_HD64465_IOBASE + 0x8000, 1);
  314. #endif /* CONFIG_HD64465 && CONFIG_SERIAL */
  315. /* TODO: setup IDE registers */
  316. bigsur_port_map(BIGSUR_IDECTL_IOPORT, 2, BIGSUR_ICTL, 8);
  317. /* Setup the Ethernet port to BIGSUR_ETHER_IOPORT */
  318. bigsur_port_map(BIGSUR_ETHER_IOPORT, 16, BIGSUR_ETHR+BIGSUR_ETHER_IOPORT, 0);
  319. /* set page to 1 */
  320. outw(1, BIGSUR_ETHR+0xe);
  321. /* set the IO port to BIGSUR_ETHER_IOPORT */
  322. outw(BIGSUR_ETHER_IOPORT<<3, BIGSUR_ETHR+0x2);
  323.     return 0;
  324. }
  325. module_init(setup_bigsur);