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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Carsten Langgaard, carstenl@mips.com
  3.  * Copyright (C) 1999,2000 MIPS Technologies, Inc.  All rights reserved.
  4.  *
  5.  * ########################################################################
  6.  *
  7.  *  This program is free software; you can distribute it and/or modify it
  8.  *  under the terms of the GNU General Public License (Version 2) as
  9.  *  published by the Free Software Foundation.
  10.  *
  11.  *  This program is distributed in the hope it will be useful, but WITHOUT
  12.  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13.  *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14.  *  for more details.
  15.  *
  16.  *  You should have received a copy of the GNU General Public License along
  17.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  18.  *  59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  19.  *
  20.  * ########################################################################
  21.  *
  22.  * Routines for generic manipulation of the interrupts found on the MIPS 
  23.  * Atlas board.
  24.  *
  25.  */
  26. #include <linux/config.h>
  27. #include <linux/init.h>
  28. #include <linux/sched.h>
  29. #include <linux/slab.h>
  30. #include <linux/interrupt.h>
  31. #include <linux/kernel_stat.h>
  32. #include <asm/irq.h>
  33. #include <asm/mips-boards/atlas.h>
  34. #include <asm/mips-boards/atlasint.h>
  35. #include <asm/gdb-stub.h>
  36. struct atlas_ictrl_regs *atlas_hw0_icregs
  37. = (struct atlas_ictrl_regs *)ATLAS_ICTRL_REGS_BASE;
  38. extern asmlinkage void mipsIRQ(void);
  39. extern void do_IRQ(int irq, struct pt_regs *regs);
  40. unsigned long spurious_count = 0;
  41. irq_desc_t irq_desc[NR_IRQS];
  42. #if 0
  43. #define DEBUG_INT(x...) printk(x)
  44. #else
  45. #define DEBUG_INT(x...)
  46. #endif
  47. void inline disable_irq_nosync(unsigned int irq_nr)
  48. {
  49. disable_atlas_irq(irq_nr);
  50. }
  51. void disable_atlas_irq(unsigned int irq_nr)
  52. {
  53. atlas_hw0_icregs->intrsten = (1 << irq_nr);
  54. }
  55. void enable_atlas_irq(unsigned int irq_nr)
  56. {
  57. atlas_hw0_icregs->intseten = (1 << irq_nr);
  58. }
  59. static unsigned int startup_atlas_irq(unsigned int irq)
  60. {
  61. enable_atlas_irq(irq);
  62. return 0; /* never anything pending */
  63. }
  64. #define shutdown_atlas_irq disable_atlas_irq
  65. #define mask_and_ack_atlas_irq disable_atlas_irq
  66. static void end_atlas_irq(unsigned int irq)
  67. {
  68. if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS)))
  69. enable_atlas_irq(irq);
  70. }
  71. static struct hw_interrupt_type atlas_irq_type = {
  72. "Atlas",
  73. startup_atlas_irq,
  74. shutdown_atlas_irq,
  75. enable_atlas_irq,
  76. disable_atlas_irq,
  77. mask_and_ack_atlas_irq,
  78. end_atlas_irq,
  79. NULL
  80. };
  81. int get_irq_list(char *buf)
  82. {
  83. int i, len = 0;
  84. int num = 0;
  85. struct irqaction *action;
  86. for (i = 0; i < ATLASINT_END; i++, num++) {
  87. action = irq_desc[i].action;
  88. if (!action) 
  89. continue;
  90. len += sprintf(buf+len, "%2d: %8d %c %s",
  91. num, kstat.irqs[0][num],
  92. (action->flags & SA_INTERRUPT) ? '+' : ' ',
  93. action->name);
  94. for (action=action->next; action; action = action->next) {
  95. len += sprintf(buf+len, ",%s %s",
  96. (action->flags & SA_INTERRUPT) ? " +" : "",
  97. action->name);
  98. }
  99. len += sprintf(buf+len, " [hw0]n");
  100. }
  101. return len;
  102. }
  103. int request_irq(unsigned int irq, 
  104. void (*handler)(int, void *, struct pt_regs *),
  105. unsigned long irqflags, 
  106. const char * devname,
  107. void *dev_id)
  108. {  
  109.         struct irqaction *action;
  110. DEBUG_INT("request_irq: irq=%d, devname = %sn", irq, devname);
  111. if (irq >= ATLASINT_END)
  112. return -EINVAL;
  113. if (!handler)
  114. return -EINVAL;
  115. action = (struct irqaction *)kmalloc(sizeof(struct irqaction), GFP_KERNEL);
  116. if(!action)
  117. return -ENOMEM;
  118. action->handler = handler;
  119. action->flags = irqflags;
  120. action->mask = 0;
  121. action->name = devname;
  122. action->dev_id = dev_id;
  123. action->next = 0;
  124. irq_desc[irq].action = action;
  125. enable_atlas_irq(irq);
  126. return 0;
  127. }
  128. void free_irq(unsigned int irq, void *dev_id)
  129. {
  130. struct irqaction *action;
  131. if (irq >= ATLASINT_END) {
  132. printk("Trying to free IRQ%dn",irq);
  133. return;
  134. }
  135. action = irq_desc[irq].action;
  136. irq_desc[irq].action = NULL;
  137. disable_atlas_irq(irq);
  138. kfree(action);
  139. }
  140. static inline int ls1bit32(unsigned int x)
  141. {
  142. int b = 31, s;
  143. s = 16; if (x << 16 == 0) s = 0; b -= s; x <<= s;
  144. s =  8; if (x <<  8 == 0) s = 0; b -= s; x <<= s;
  145. s =  4; if (x <<  4 == 0) s = 0; b -= s; x <<= s;
  146. s =  2; if (x <<  2 == 0) s = 0; b -= s; x <<= s;
  147. s =  1; if (x <<  1 == 0) s = 0; b -= s;
  148. return b;
  149. }
  150. void atlas_hw0_irqdispatch(struct pt_regs *regs)
  151. {
  152. struct irqaction *action;
  153. unsigned long int_status;
  154. int irq, cpu = smp_processor_id();
  155. int_status = atlas_hw0_icregs->intstatus; 
  156. /* if int_status == 0, then the interrupt has already been cleared */
  157. if (int_status == 0)
  158. return;
  159. irq = ls1bit32(int_status);
  160. action = irq_desc[irq].action;
  161. DEBUG_INT("atlas_hw0_irqdispatch: irq=%dn", irq);
  162. /* if action == NULL, then we don't have a handler for the irq */
  163. if ( action == NULL ) {
  164. printk("No handler for hw0 irq: %in", irq);
  165. spurious_count++;
  166. return;
  167. }
  168. irq_enter(cpu, irq);
  169. kstat.irqs[0][irq]++;
  170. action->handler(irq, action->dev_id, regs);
  171. irq_exit(cpu, irq);
  172. return;
  173. }
  174. unsigned long probe_irq_on (void)
  175. {
  176. return 0;
  177. }
  178. int probe_irq_off (unsigned long irqs)
  179. {
  180. return 0;
  181. }
  182. #ifdef CONFIG_REMOTE_DEBUG
  183. extern void breakpoint(void);
  184. extern int remote_debug;
  185. #endif
  186. void __init init_IRQ(void)
  187. {
  188. int i;
  189. /* 
  190.  * Mask out all interrupt by writing "1" to all bit position in 
  191.  * the interrupt reset reg. 
  192.  */
  193. atlas_hw0_icregs->intrsten = 0xffffffff;    
  194. /* Now safe to set the exception vector. */
  195. set_except_vector(0, mipsIRQ);
  196. for (i = 0; i <= ATLASINT_END; i++) {
  197. irq_desc[i].status = IRQ_DISABLED;
  198. irq_desc[i].action = 0;
  199. irq_desc[i].depth = 1;
  200. irq_desc[i].handler = &atlas_irq_type;
  201. }
  202. #ifdef CONFIG_REMOTE_DEBUG
  203. if (remote_debug) {
  204. set_debug_traps();
  205. breakpoint();
  206. }
  207. #endif
  208. }