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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Carsten Langgaard, carstenl@mips.com
  3.  * Copyright (C) 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. #ifdef CONFIG_REMOTE_DEBUG
  36. #include <asm/gdb-stub.h>
  37. #endif
  38. struct atlas_ictrl_regs *atlas_hw0_icregs
  39. = (struct atlas_ictrl_regs *)ATLAS_ICTRL_REGS_BASE;
  40. extern asmlinkage void mipsIRQ(void);
  41. extern void do_IRQ(int irq, struct pt_regs *regs);
  42. unsigned long spurious_count = 0;
  43. irq_desc_t irq_desc[NR_IRQS];
  44. #if 0
  45. #define DEBUG_INT(x...) printk(x)
  46. #else
  47. #define DEBUG_INT(x...)
  48. #endif
  49. void disable_atlas_irq(unsigned int irq_nr)
  50. {
  51. atlas_hw0_icregs->intrsten = (1 << irq_nr);
  52. }
  53. void enable_atlas_irq(unsigned int irq_nr)
  54. {
  55. atlas_hw0_icregs->intseten = (1 << irq_nr);
  56. }
  57. static unsigned int startup_atlas_irq(unsigned int irq)
  58. {
  59. enable_atlas_irq(irq);
  60. return 0; /* never anything pending */
  61. }
  62. #define shutdown_atlas_irq disable_atlas_irq
  63. #define mask_and_ack_atlas_irq disable_atlas_irq
  64. static void end_atlas_irq(unsigned int irq)
  65. {
  66. if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS)))
  67. enable_atlas_irq(irq);
  68. }
  69. static struct hw_interrupt_type atlas_irq_type = {
  70. "Atlas",
  71. startup_atlas_irq,
  72. shutdown_atlas_irq,
  73. enable_atlas_irq,
  74. disable_atlas_irq,
  75. mask_and_ack_atlas_irq,
  76. end_atlas_irq,
  77. NULL
  78. };
  79. int get_irq_list(char *buf)
  80. {
  81. int i, len = 0;
  82. int num = 0;
  83. struct irqaction *action;
  84. for (i = 0; i < ATLASINT_END; i++, num++) {
  85. action = irq_desc[i].action;
  86. if (!action) 
  87. continue;
  88. len += sprintf(buf+len, "%2d: %8d %c %s",
  89. num, kstat.irqs[0][num],
  90. (action->flags & SA_INTERRUPT) ? '+' : ' ',
  91. action->name);
  92. for (action=action->next; action; action = action->next) {
  93. len += sprintf(buf+len, ",%s %s",
  94. (action->flags & SA_INTERRUPT) ? " +" : "",
  95. action->name);
  96. }
  97. len += sprintf(buf+len, " [hw0]n");
  98. }
  99. return len;
  100. }
  101. int request_irq(unsigned int irq, 
  102. void (*handler)(int, void *, struct pt_regs *),
  103. unsigned long irqflags, 
  104. const char * devname,
  105. void *dev_id)
  106. {  
  107.         struct irqaction *action;
  108. DEBUG_INT("request_irq: irq=%d, devname = %sn", irq, devname);
  109.         if (irq >= ATLASINT_END)
  110.         return -EINVAL;
  111. if (!handler)
  112.         return -EINVAL;
  113. action = (struct irqaction *)kmalloc(sizeof(struct irqaction), GFP_KERNEL);
  114. if(!action)
  115.         return -ENOMEM;
  116. action->handler = handler;
  117. action->flags = irqflags;
  118. action->mask = 0;
  119. action->name = devname;
  120. action->dev_id = dev_id;
  121. action->next = 0;
  122. irq_desc[irq].action = action;
  123. enable_atlas_irq(irq);
  124. return 0;
  125. }
  126. void free_irq(unsigned int irq, void *dev_id)
  127. {
  128. struct irqaction *action;
  129. if (irq >= ATLASINT_END) {
  130. printk("Trying to free IRQ%dn",irq);
  131. return;
  132. }
  133. action = irq_desc[irq].action;
  134. irq_desc[irq].action = NULL;
  135. disable_atlas_irq(irq);
  136. kfree(action);
  137. }
  138. static inline int ls1bit32(unsigned int x)
  139. {
  140. int b = 31, s;
  141. s = 16; if (x << 16 == 0) s = 0; b -= s; x <<= s;
  142. s =  8; if (x <<  8 == 0) s = 0; b -= s; x <<= s;
  143. s =  4; if (x <<  4 == 0) s = 0; b -= s; x <<= s;
  144. s =  2; if (x <<  2 == 0) s = 0; b -= s; x <<= s;
  145. s =  1; if (x <<  1 == 0) s = 0; b -= s;
  146. return b;
  147. }
  148. void atlas_hw0_irqdispatch(struct pt_regs *regs)
  149. {
  150. struct irqaction *action;
  151. unsigned long int_status;
  152. int irq, cpu = smp_processor_id();
  153. int_status = atlas_hw0_icregs->intstatus; 
  154. /* if int_status == 0, then the interrupt has already been cleared */
  155. if (int_status == 0)
  156. return;
  157. irq = ls1bit32(int_status);
  158. action = irq_desc[irq].action;
  159. DEBUG_INT("atlas_hw0_irqdispatch: irq=%dn", irq);
  160. /* if action == NULL, then we don't have a handler for the irq */
  161. if ( action == NULL ) {
  162.         printk("No handler for hw0 irq: %in", irq);
  163. spurious_count++;
  164. return;
  165. }
  166. irq_enter(cpu, irq);
  167. kstat.irqs[0][irq]++;
  168. action->handler(irq, action->dev_id, regs);
  169. irq_exit(cpu, irq);
  170. return;
  171. }
  172. unsigned long probe_irq_on (void)
  173. {
  174. return 0;
  175. }
  176. int probe_irq_off (unsigned long irqs)
  177. {
  178. return 0;
  179. }
  180. #ifdef CONFIG_REMOTE_DEBUG
  181. extern void breakpoint(void);
  182. extern int remote_debug;
  183. #endif
  184. void __init init_IRQ(void)
  185. {
  186. int i;
  187. /* 
  188.  * Mask out all interrupt by writing "1" to all bit position in 
  189.  * the interrupt reset reg. 
  190.  */
  191. atlas_hw0_icregs->intrsten = 0xffffffff;    
  192. /* Now safe to set the exception vector. */
  193. set_except_vector(0, mipsIRQ);
  194. for (i = 0; i <= ATLASINT_END; i++) {
  195. irq_desc[i].status = IRQ_DISABLED;
  196. irq_desc[i].action = 0;
  197. irq_desc[i].depth = 1;
  198. irq_desc[i].handler = &atlas_irq_type;
  199. }
  200. #ifdef CONFIG_REMOTE_DEBUG
  201. if (remote_debug) {
  202. set_debug_traps();
  203. breakpoint();
  204. }
  205. #endif
  206. }