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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *
  3.  * BRIEF MODULE DESCRIPTION
  4.  * ITE 8172G interrupt/setup routines.
  5.  *
  6.  * Copyright 2000,2001 MontaVista Software Inc.
  7.  * Author: MontaVista Software, Inc.
  8.  *          ppopov@mvista.com or source@mvista.com
  9.  *
  10.  * Part of this file was derived from Carsten Langgaard's 
  11.  * arch/mips/mips-boards/atlas/atlas_int.c.
  12.  *
  13.  * Carsten Langgaard, carstenl@mips.com
  14.  * Copyright (C) 1999,2000 MIPS Technologies, Inc.  All rights reserved.
  15.  *
  16.  *  This program is free software; you can redistribute  it and/or modify it
  17.  *  under  the terms of  the GNU General  Public License as published by the
  18.  *  Free Software Foundation;  either version 2 of the  License, or (at your
  19.  *  option) any later version.
  20.  *
  21.  *  THIS  SOFTWARE  IS PROVIDED   ``AS  IS'' AND   ANY  EXPRESS OR IMPLIED
  22.  *  WARRANTIES,   INCLUDING, BUT NOT  LIMITED  TO, THE IMPLIED WARRANTIES OF
  23.  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
  24.  *  NO  EVENT  SHALL   THE AUTHOR  BE    LIABLE FOR ANY   DIRECT, INDIRECT,
  25.  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  26.  *  NOT LIMITED   TO, PROCUREMENT OF  SUBSTITUTE GOODS  OR SERVICES; LOSS OF
  27.  *  USE, DATA,  OR PROFITS; OR  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  28.  *  ANY THEORY OF LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT
  29.  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  30.  *  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31.  *
  32.  *  You should have received a copy of the  GNU General Public License along
  33.  *  with this program; if not, write  to the Free Software Foundation, Inc.,
  34.  *  675 Mass Ave, Cambridge, MA 02139, USA.
  35.  */
  36. #include <linux/errno.h>
  37. #include <linux/init.h>
  38. #include <linux/kernel_stat.h>
  39. #include <linux/module.h>
  40. #include <linux/signal.h>
  41. #include <linux/sched.h>
  42. #include <linux/types.h>
  43. #include <linux/interrupt.h>
  44. #include <linux/ioport.h>
  45. #include <linux/timex.h>
  46. #include <linux/slab.h>
  47. #include <linux/random.h>
  48. #include <linux/serial_reg.h>
  49. #include <asm/bitops.h>
  50. #include <asm/bootinfo.h>
  51. #include <asm/io.h>
  52. #include <asm/mipsregs.h>
  53. #include <asm/system.h>
  54. #include <asm/it8172/it8172.h>
  55. #include <asm/it8172/it8172_int.h>
  56. #include <asm/it8172/it8172_dbg.h>
  57. #undef DEBUG_IRQ
  58. #ifdef DEBUG_IRQ
  59. /* note: prints function name for you */
  60. #define DPRINTK(fmt, args...) printk("%s: " fmt, __FUNCTION__ , ## args)
  61. #else
  62. #define DPRINTK(fmt, args...)
  63. #endif
  64. #ifdef CONFIG_REMOTE_DEBUG
  65. extern void breakpoint(void);
  66. #endif
  67. /* revisit */
  68. #define EXT_IRQ0_TO_IP 2 /* IP 2 */
  69. #define EXT_IRQ5_TO_IP 7 /* IP 7 */
  70. extern void set_debug_traps(void);
  71. extern void mips_timer_interrupt(int irq, struct pt_regs *regs);
  72. extern asmlinkage void it8172_IRQ(void);
  73. unsigned int local_bh_count[NR_CPUS];
  74. unsigned int local_irq_count[NR_CPUS];
  75. unsigned long spurious_count = 0;
  76. irq_desc_t irq_desc[NR_IRQS];
  77. irq_desc_t *irq_desc_base=&irq_desc[0];
  78. void disable_it8172_irq(unsigned int irq_nr);
  79. void enable_it8172_irq(unsigned int irq_nr);
  80. struct it8172_intc_regs volatile *it8172_hw0_icregs
  81. = (struct it8172_intc_regs volatile *)(KSEG1ADDR(IT8172_PCI_IO_BASE + IT_INTC_BASE));
  82. /* Function for careful CP0 interrupt mask access */
  83. static inline void modify_cp0_intmask(unsigned clr_mask, unsigned set_mask)
  84. {
  85.         unsigned long status = read_32bit_cp0_register(CP0_STATUS);
  86.         status &= ~((clr_mask & 0xFF) << 8);
  87.         status |=   (set_mask & 0xFF) << 8;
  88.         write_32bit_cp0_register(CP0_STATUS, status);
  89. }
  90. static inline void mask_irq(unsigned int irq_nr)
  91. {
  92.         modify_cp0_intmask(irq_nr, 0);
  93. }
  94. static inline void unmask_irq(unsigned int irq_nr)
  95. {
  96.         modify_cp0_intmask(0, irq_nr);
  97. }
  98. void disable_irq(unsigned int irq_nr)
  99. {
  100.         unsigned long flags;
  101.         save_and_cli(flags);
  102. disable_it8172_irq(irq_nr);
  103.         restore_flags(flags);
  104. }
  105. void enable_irq(unsigned int irq_nr)
  106. {
  107. unsigned long flags;
  108.         save_and_cli(flags);
  109. enable_it8172_irq(irq_nr);
  110.         restore_flags(flags);
  111. }
  112. void disable_it8172_irq(unsigned int irq_nr)
  113. {
  114. DPRINTK("disable_it8172_irq %dn", irq_nr);
  115. if ( (irq_nr >= IT8172_LPC_IRQ_BASE) && (irq_nr <= IT8172_SERIRQ_15)) {
  116. /* LPC interrupt */
  117. DPRINTK("disable, before lpc_mask  %xn", it8172_hw0_icregs->lpc_mask);
  118. it8172_hw0_icregs->lpc_mask |= (1 << (irq_nr - IT8172_LPC_IRQ_BASE));
  119. DPRINTK("disable, after lpc_mask  %xn", it8172_hw0_icregs->lpc_mask);
  120. }
  121. else if ( (irq_nr >= IT8172_LB_IRQ_BASE) && (irq_nr <= IT8172_IOCHK_IRQ)) {
  122. /* Local Bus interrupt */
  123. DPRINTK("before lb_mask  %xn", it8172_hw0_icregs->lb_mask);
  124. it8172_hw0_icregs->lb_mask |= (1 << (irq_nr - IT8172_LB_IRQ_BASE));
  125. DPRINTK("after lb_mask  %xn", it8172_hw0_icregs->lb_mask);
  126. }
  127. else if ( (irq_nr >= IT8172_PCI_DEV_IRQ_BASE) && (irq_nr <= IT8172_DMA_IRQ)) {
  128. /* PCI and other interrupts */
  129. DPRINTK("before pci_mask  %xn", it8172_hw0_icregs->pci_mask);
  130. it8172_hw0_icregs->pci_mask |= (1 << (irq_nr - IT8172_PCI_DEV_IRQ_BASE));
  131. DPRINTK("after pci_mask  %xn", it8172_hw0_icregs->pci_mask);
  132. }
  133. else if ( (irq_nr >= IT8172_NMI_IRQ_BASE) && (irq_nr <= IT8172_POWER_NMI_IRQ)) {
  134. /* NMI interrupts */
  135. DPRINTK("before nmi_mask  %xn", it8172_hw0_icregs->nmi_mask);
  136. it8172_hw0_icregs->nmi_mask |= (1 << (irq_nr - IT8172_NMI_IRQ_BASE));
  137. DPRINTK("after nmi_mask  %xn", it8172_hw0_icregs->nmi_mask);
  138. }
  139. else {
  140. panic("disable_it8172_irq: bad irq %dn", irq_nr);
  141. }
  142. }
  143. void enable_it8172_irq(unsigned int irq_nr)
  144. {
  145. DPRINTK("enable_it8172_irq %dn", irq_nr);
  146. if ( (irq_nr >= IT8172_LPC_IRQ_BASE) && (irq_nr <= IT8172_SERIRQ_15)) {
  147. /* LPC interrupt */
  148. DPRINTK("enable, before lpc_mask  %xn", it8172_hw0_icregs->lpc_mask);
  149. it8172_hw0_icregs->lpc_mask &= ~(1 << (irq_nr - IT8172_LPC_IRQ_BASE));
  150. DPRINTK("enable, after lpc_mask  %xn", it8172_hw0_icregs->lpc_mask);
  151. }
  152. else if ( (irq_nr >= IT8172_LB_IRQ_BASE) && (irq_nr <= IT8172_IOCHK_IRQ)) {
  153. /* Local Bus interrupt */
  154. DPRINTK("before lb_mask  %xn", it8172_hw0_icregs->lb_mask);
  155. it8172_hw0_icregs->lb_mask &= ~(1 << (irq_nr - IT8172_LB_IRQ_BASE));
  156. DPRINTK("after lb_mask  %xn", it8172_hw0_icregs->lb_mask);
  157. }
  158. else if ( (irq_nr >= IT8172_PCI_DEV_IRQ_BASE) && (irq_nr <= IT8172_DMA_IRQ)) {
  159. /* PCI and other interrupts */
  160. DPRINTK("before pci_mask  %xn", it8172_hw0_icregs->pci_mask);
  161. it8172_hw0_icregs->pci_mask &= ~(1 << (irq_nr - IT8172_PCI_DEV_IRQ_BASE));
  162. DPRINTK("after pci_mask  %xn", it8172_hw0_icregs->pci_mask);
  163. }
  164. else if ( (irq_nr >= IT8172_NMI_IRQ_BASE) && (irq_nr <= IT8172_POWER_NMI_IRQ)) {
  165. /* NMI interrupts */
  166. DPRINTK("before nmi_mask  %xn", it8172_hw0_icregs->nmi_mask);
  167. it8172_hw0_icregs->nmi_mask &= ~(1 << (irq_nr - IT8172_NMI_IRQ_BASE));
  168. DPRINTK("after nmi_mask  %xn", it8172_hw0_icregs->nmi_mask);
  169. }
  170. else {
  171. panic("enable_it8172_irq: bad irq %dn", irq_nr);
  172. }
  173. }
  174. static unsigned int startup_ite_irq(unsigned int irq)
  175. {
  176. enable_it8172_irq(irq);
  177. return 0; 
  178. }
  179. #define shutdown_ite_irq disable_it8172_irq
  180. #define mask_and_ack_ite_irq    disable_it8172_irq
  181. static void end_ite_irq(unsigned int irq)
  182. {
  183. if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS)))
  184. enable_it8172_irq(irq);
  185. }
  186. static struct hw_interrupt_type it8172_irq_type = {
  187. "ITE8172",
  188. startup_ite_irq,
  189. shutdown_ite_irq,
  190. enable_it8172_irq,
  191. disable_it8172_irq,
  192. mask_and_ack_ite_irq,
  193. end_ite_irq,
  194. NULL
  195. };
  196. int get_irq_list(char *buf)
  197. {
  198.         int i, len = 0, j;
  199.         struct irqaction * action;
  200.         len += sprintf(buf+len, "           ");
  201.         for (j=0; j<smp_num_cpus; j++)
  202.                 len += sprintf(buf+len, "CPU%d       ",j);
  203.         *(char *)(buf+len++) = 'n';
  204.         for (i = 0 ; i < NR_IRQS ; i++) {
  205.                 action = irq_desc[i].action;
  206.                 if ( !action || !action->handler )
  207.                         continue;
  208.                 len += sprintf(buf+len, "%3d: ", i);
  209.                 len += sprintf(buf+len, "%10u ", kstat_irqs(i));
  210.                 if ( irq_desc[i].handler )
  211.                         len += sprintf(buf+len, " %s ", irq_desc[i].handler->typename );
  212.                 else
  213.                         len += sprintf(buf+len, "  None      ");
  214.                 len += sprintf(buf+len, "    %s",action->name);
  215.                 for (action=action->next; action; action = action->next) {
  216.                         len += sprintf(buf+len, ", %s", action->name);
  217.                 }
  218.                 len += sprintf(buf+len, "n");
  219.         }
  220.         len += sprintf(buf+len, "BAD: %10lun", spurious_count);
  221.         return len;
  222. }
  223. asmlinkage void do_IRQ(int irq, struct pt_regs *regs)
  224. {
  225. struct irqaction *action;
  226. int cpu;
  227. cpu = smp_processor_id();
  228. irq_enter(cpu, irq);
  229. kstat.irqs[cpu][irq]++;
  230. #if 0
  231. if (irq_desc[irq].handler && irq_desc[irq].handler->ack) {
  232. // printk("invoking ack handlern");
  233. irq_desc[irq].handler->ack(irq);
  234. }
  235. #endif
  236. action = irq_desc[irq].action;
  237. if (action && action->handler)
  238. {
  239. //mask_irq(1<<irq);
  240. //printk("action->handler %xn", action->handler);
  241. disable_it8172_irq(irq);
  242. //if (!(action->flags & SA_INTERRUPT)) __sti(); /* reenable ints */
  243. do { 
  244. action->handler(irq, action->dev_id, regs);
  245. action = action->next;
  246. } while ( action );
  247. //__cli(); /* disable ints */
  248. if (irq_desc[irq].handler)
  249. {
  250. }
  251. //unmask_irq(1<<irq);
  252. enable_it8172_irq(irq);
  253. }
  254. else
  255. {
  256. spurious_count++;
  257. printk("Unhandled interrupt %d, cause %x, disabledn", 
  258. (unsigned)irq, (unsigned)regs->cp0_cause);
  259. disable_it8172_irq(irq);
  260. }
  261. irq_exit(cpu, irq);
  262. }
  263. int request_irq(unsigned int irq, void (*handler)(int, void *, struct pt_regs *),
  264. unsigned long irqflags, const char * devname, void *dev_id)
  265. {
  266.         struct irqaction *old, **p, *action;
  267.         unsigned long flags;
  268.         /*
  269.          * IP0 and IP1 are software interrupts. IP7 is typically the timer interrupt.
  270.  *
  271.  * The ITE QED-4N-S01B board has one single interrupt line going from
  272.  * the system controller to the CPU. It's connected to the CPU external
  273.  * irq pin 1, which is IP2.  The interrupt numbers are listed in it8172_int.h;
  274.  * the ISA interrupts are numbered from 0 to 15, and the rest go from
  275.  * there.  
  276.          */
  277. //printk("request_irq: %d handler %xn", irq, handler);
  278.         if (irq >= NR_IRQS) 
  279.                 return -EINVAL;
  280.         if (!handler)
  281.         {
  282.                 /* Free */
  283.                 for (p = &irq_desc[irq].action; (action = *p) != NULL; p = &action->next)
  284.                 {
  285.                         /* Found it - now free it */
  286.                         save_flags(flags);
  287.                         cli();
  288.                         *p = action->next;
  289. disable_it8172_irq(irq);
  290.                         restore_flags(flags);
  291.                         kfree(action);
  292.                         return 0;
  293.                 }
  294.                 return -ENOENT;
  295.         }
  296.         
  297.         action = (struct irqaction *)
  298.                 kmalloc(sizeof(struct irqaction), GFP_KERNEL);
  299.         if (!action)
  300.                 return -ENOMEM;
  301.         memset(action, 0, sizeof(struct irqaction));
  302.         
  303.         save_flags(flags);
  304.         cli();
  305.         
  306.         action->handler = handler;
  307.         action->flags = irqflags;
  308.         action->mask = 0;
  309.         action->name = devname;
  310.         action->dev_id = dev_id;
  311.         action->next = NULL;
  312.         p = &irq_desc[irq].action;
  313.         
  314.         if ((old = *p) != NULL) {
  315.                 /* Can't share interrupts unless both agree to */
  316.                 if (!(old->flags & action->flags & SA_SHIRQ))
  317.                         return -EBUSY;
  318.                 /* add new interrupt at end of irq queue */
  319.                 do {
  320.                         p = &old->next;
  321.                         old = *p;
  322.                 } while (old);
  323.         }
  324.         *p = action;
  325. enable_it8172_irq(irq);
  326.         restore_flags(flags);
  327. #if 0
  328. printk("request_irq: status %x cause %xn", 
  329. read_32bit_cp0_register(CP0_STATUS), read_32bit_cp0_register(CP0_CAUSE));
  330. #endif
  331.         return 0;
  332. }
  333. void free_irq(unsigned int irq, void *dev_id)
  334. {
  335.         request_irq(irq, NULL, 0, NULL, dev_id);
  336. }
  337. void enable_cpu_timer(void)
  338. {
  339.         unsigned long flags;
  340.         save_and_cli(flags);
  341. unmask_irq(1<<EXT_IRQ5_TO_IP); /* timer interrupt */
  342.         restore_flags(flags);
  343. }
  344. unsigned long probe_irq_on (void)
  345. {
  346.         return 0;
  347. }
  348. int probe_irq_off (unsigned long irqs)
  349. {
  350.         return 0;
  351. }
  352. void __init init_IRQ(void)
  353. {
  354. int i;
  355.         unsigned long flags;
  356.         memset(irq_desc, 0, sizeof(irq_desc));
  357.         set_except_vector(0, it8172_IRQ);
  358. /* mask all interrupts */
  359. it8172_hw0_icregs->lb_mask  = 0xffff;
  360. it8172_hw0_icregs->lpc_mask = 0xffff;
  361. it8172_hw0_icregs->pci_mask = 0xffff;
  362. it8172_hw0_icregs->nmi_mask = 0xffff;
  363. /* make all interrupts level triggered */
  364. it8172_hw0_icregs->lb_trigger  = 0;
  365. it8172_hw0_icregs->lpc_trigger = 0;
  366. it8172_hw0_icregs->pci_trigger = 0;
  367. it8172_hw0_icregs->nmi_trigger = 0;
  368. /* active level setting */
  369. /* uart, keyboard, and mouse are active high */
  370. it8172_hw0_icregs->lpc_level = (0x10 | 0x2 | 0x1000);
  371. it8172_hw0_icregs->lb_level |= 0x20;
  372. /* keyboard and mouse are edge triggered */
  373. it8172_hw0_icregs->lpc_trigger |= (0x2 | 0x1000); 
  374. #if 0
  375. // Enable this piece of code to make internal USB interrupt
  376. // edge triggered.
  377. it8172_hw0_icregs->pci_trigger |= 
  378. (1 << (IT8172_USB_IRQ - IT8172_PCI_DEV_IRQ_BASE));
  379. it8172_hw0_icregs->pci_level &= 
  380. ~(1 << (IT8172_USB_IRQ - IT8172_PCI_DEV_IRQ_BASE));
  381. #endif
  382. for (i = 0; i <= IT8172_INT_END; i++) {
  383. irq_desc[i].status = IRQ_DISABLED;
  384. irq_desc[i].action = 0;
  385. irq_desc[i].depth = 1;
  386. irq_desc[i].handler = &it8172_irq_type;
  387. }
  388. /*
  389.  * Enable external int line 2
  390.  * All ITE interrupts are masked for now.
  391.  */
  392.         save_and_cli(flags);
  393. unmask_irq(1<<EXT_IRQ0_TO_IP);
  394.         restore_flags(flags);
  395. #ifdef CONFIG_REMOTE_DEBUG
  396. /* If local serial I/O used for debug port, enter kgdb at once */
  397. puts("Waiting for kgdb to connect...");
  398. set_debug_traps();
  399. breakpoint(); 
  400. #endif
  401. }
  402. void mips_spurious_interrupt(struct pt_regs *regs)
  403. {
  404. #if 1
  405. return;
  406. #else
  407. unsigned long status, cause;
  408. printk("got spurious interruptn");
  409. status = read_32bit_cp0_register(CP0_STATUS);
  410. cause = read_32bit_cp0_register(CP0_CAUSE);
  411. printk("status %x cause %xn", status, cause);
  412. printk("epc %x badvaddr %x n", regs->cp0_epc, regs->cp0_badvaddr);
  413. // while(1);
  414. #endif
  415. }
  416. void it8172_hw0_irqdispatch(struct pt_regs *regs)
  417. {
  418. int irq;
  419. unsigned short intstatus, status;
  420. intstatus = it8172_hw0_icregs->intstatus;
  421. if (intstatus & 0x8) {
  422. panic("Got NMI interruptn");
  423. }
  424. else if (intstatus & 0x4) {
  425. /* PCI interrupt */
  426. irq = 0;
  427. status = it8172_hw0_icregs->pci_req;
  428. while (!(status & 0x1)) {
  429. irq++;
  430. status >>= 1;
  431. }
  432. irq += IT8172_PCI_DEV_IRQ_BASE;
  433. //printk("pci int %dn", irq);
  434. }
  435. else if (intstatus & 0x1) {
  436. /* Local Bus interrupt */
  437. irq = 0;
  438. status = it8172_hw0_icregs->lb_req;
  439. while (!(status & 0x1)) {
  440. irq++;
  441. status >>= 1;
  442. }
  443. irq += IT8172_LB_IRQ_BASE;
  444. //printk("lb int %dn", irq);
  445. }
  446. else if (intstatus & 0x2) {
  447. /* LPC interrupt */
  448. /* Since some lpc interrupts are edge triggered,
  449.  * we could lose an interrupt this way because
  450.  * we acknowledge all ints at onces. Revisit.
  451.  */
  452. status = it8172_hw0_icregs->lpc_req;
  453. it8172_hw0_icregs->lpc_req = 0; /* acknowledge ints */
  454. irq = 0;
  455. while (!(status & 0x1)) {
  456. irq++;
  457. status >>= 1;
  458. }
  459. irq += IT8172_LPC_IRQ_BASE;
  460. //printk("LPC int %dn", irq);
  461. }
  462. else {
  463. return;
  464. }
  465. do_IRQ(irq, regs);
  466. }
  467. void show_pending_irqs(void)
  468. {
  469. fputs("intstatus:  ");
  470. put32(it8172_hw0_icregs->intstatus);
  471. puts("");
  472. fputs("pci_req:  ");
  473. put32(it8172_hw0_icregs->pci_req);
  474. puts("");
  475. fputs("lb_req:  ");
  476. put32(it8172_hw0_icregs->lb_req);
  477. puts("");
  478. fputs("lpc_req:  ");
  479. put32(it8172_hw0_icregs->lpc_req);
  480. puts("");
  481. }