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

Linux/Unix编程

开发平台:

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. #define ALLINTS_NOTIMER (IE_IRQ0 | IE_IRQ1 | IE_IRQ2 | IE_IRQ3 | IE_IRQ4)
  71. unsigned int local_bh_count[NR_CPUS];
  72. unsigned int local_irq_count[NR_CPUS];
  73. void disable_it8172_irq(unsigned int irq_nr);
  74. void enable_it8172_irq(unsigned int irq_nr);
  75. extern void set_debug_traps(void);
  76. extern void mips_timer_interrupt(int irq, struct pt_regs *regs);
  77. extern asmlinkage void it8172_IRQ(void);
  78. struct it8172_intc_regs volatile *it8172_hw0_icregs
  79. = (struct it8172_intc_regs volatile *)(KSEG1ADDR(IT8172_PCI_IO_BASE + IT_INTC_BASE));
  80. /* Function for careful CP0 interrupt mask access */
  81. static inline void modify_cp0_intmask(unsigned clr_mask, unsigned set_mask)
  82. {
  83.         unsigned long status = read_32bit_cp0_register(CP0_STATUS);
  84.         status &= ~((clr_mask & 0xFF) << 8);
  85.         status |=   (set_mask & 0xFF) << 8;
  86.         write_32bit_cp0_register(CP0_STATUS, status);
  87. }
  88. static inline void mask_irq(unsigned int irq_nr)
  89. {
  90.         modify_cp0_intmask(irq_nr, 0);
  91. }
  92. static inline void unmask_irq(unsigned int irq_nr)
  93. {
  94.         modify_cp0_intmask(0, irq_nr);
  95. }
  96. void local_disable_irq(unsigned int irq_nr)
  97. {
  98.         unsigned long flags;
  99.         save_and_cli(flags);
  100. disable_it8172_irq(irq_nr);
  101.         restore_flags(flags);
  102. }
  103. void local_enable_irq(unsigned int irq_nr)
  104. {
  105. unsigned long flags;
  106.         save_and_cli(flags);
  107. enable_it8172_irq(irq_nr);
  108.         restore_flags(flags);
  109. }
  110. void disable_it8172_irq(unsigned int irq_nr)
  111. {
  112. DPRINTK("disable_it8172_irq %dn", irq_nr);
  113. if ( (irq_nr >= IT8172_LPC_IRQ_BASE) && (irq_nr <= IT8172_SERIRQ_15)) {
  114. /* LPC interrupt */
  115. DPRINTK("DB lpc_mask  %xn", it8172_hw0_icregs->lpc_mask);
  116. it8172_hw0_icregs->lpc_mask |= 
  117. (1 << (irq_nr - IT8172_LPC_IRQ_BASE));
  118. DPRINTK("DA lpc_mask  %xn", it8172_hw0_icregs->lpc_mask);
  119. }
  120. else if ( (irq_nr >= IT8172_LB_IRQ_BASE) && (irq_nr <= IT8172_IOCHK_IRQ)) {
  121. /* Local Bus interrupt */
  122. DPRINTK("DB lb_mask  %xn", it8172_hw0_icregs->lb_mask);
  123. it8172_hw0_icregs->lb_mask |= 
  124. (1 << (irq_nr - IT8172_LB_IRQ_BASE));
  125. DPRINTK("DA 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("DB pci_mask  %xn", it8172_hw0_icregs->pci_mask);
  130. it8172_hw0_icregs->pci_mask |= 
  131. (1 << (irq_nr - IT8172_PCI_DEV_IRQ_BASE));
  132. DPRINTK("DA pci_mask  %xn", it8172_hw0_icregs->pci_mask);
  133. }
  134. else if ( (irq_nr >= IT8172_NMI_IRQ_BASE) && (irq_nr <= IT8172_POWER_NMI_IRQ)) {
  135. /* NMI interrupts */
  136. DPRINTK("DB nmi_mask  %xn", it8172_hw0_icregs->nmi_mask);
  137. it8172_hw0_icregs->nmi_mask |= 
  138. (1 << (irq_nr - IT8172_NMI_IRQ_BASE));
  139. DPRINTK("DA nmi_mask  %xn", it8172_hw0_icregs->nmi_mask);
  140. }
  141. else {
  142. panic("disable_it8172_irq: bad irq %d", irq_nr);
  143. }
  144. }
  145. void enable_it8172_irq(unsigned int irq_nr)
  146. {
  147. DPRINTK("enable_it8172_irq %dn", irq_nr);
  148. if ( (irq_nr >= IT8172_LPC_IRQ_BASE) && (irq_nr <= IT8172_SERIRQ_15)) {
  149. /* LPC interrupt */
  150. DPRINTK("EB before lpc_mask  %xn", it8172_hw0_icregs->lpc_mask);
  151. it8172_hw0_icregs->lpc_mask &= 
  152. ~(1 << (irq_nr - IT8172_LPC_IRQ_BASE));
  153. DPRINTK("EA after lpc_mask  %xn", it8172_hw0_icregs->lpc_mask);
  154. }
  155. else if ( (irq_nr >= IT8172_LB_IRQ_BASE) && (irq_nr <= IT8172_IOCHK_IRQ)) {
  156. /* Local Bus interrupt */
  157. DPRINTK("EB lb_mask  %xn", it8172_hw0_icregs->lb_mask);
  158. it8172_hw0_icregs->lb_mask &= 
  159. ~(1 << (irq_nr - IT8172_LB_IRQ_BASE));
  160. DPRINTK("EA lb_mask  %xn", it8172_hw0_icregs->lb_mask);
  161. }
  162. else if ( (irq_nr >= IT8172_PCI_DEV_IRQ_BASE) && (irq_nr <= IT8172_DMA_IRQ)) {
  163. /* PCI and other interrupts */
  164. DPRINTK("EB pci_mask  %xn", it8172_hw0_icregs->pci_mask);
  165. it8172_hw0_icregs->pci_mask &= 
  166. ~(1 << (irq_nr - IT8172_PCI_DEV_IRQ_BASE));
  167. DPRINTK("EA pci_mask  %xn", it8172_hw0_icregs->pci_mask);
  168. }
  169. else if ( (irq_nr >= IT8172_NMI_IRQ_BASE) && (irq_nr <= IT8172_POWER_NMI_IRQ)) {
  170. /* NMI interrupts */
  171. DPRINTK("EB nmi_mask  %xn", it8172_hw0_icregs->nmi_mask);
  172. it8172_hw0_icregs->nmi_mask &= 
  173. ~(1 << (irq_nr - IT8172_NMI_IRQ_BASE));
  174. DPRINTK("EA nmi_mask  %xn", it8172_hw0_icregs->nmi_mask);
  175. }
  176. else {
  177. panic("enable_it8172_irq: bad irq %d", irq_nr);
  178. }
  179. }
  180. static unsigned int startup_ite_irq(unsigned int irq)
  181. {
  182. enable_it8172_irq(irq);
  183. return 0; 
  184. }
  185. #define shutdown_ite_irq disable_it8172_irq
  186. #define mask_and_ack_ite_irq    disable_it8172_irq
  187. static void end_ite_irq(unsigned int irq)
  188. {
  189. if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS)))
  190. enable_it8172_irq(irq);
  191. }
  192. static struct hw_interrupt_type it8172_irq_type = {
  193. "ITE8172",
  194. startup_ite_irq,
  195. shutdown_ite_irq,
  196. enable_it8172_irq,
  197. disable_it8172_irq,
  198. mask_and_ack_ite_irq,
  199. end_ite_irq,
  200. NULL
  201. };
  202. static void enable_none(unsigned int irq) { }
  203. static unsigned int startup_none(unsigned int irq) { return 0; }
  204. static void disable_none(unsigned int irq) { }
  205. static void ack_none(unsigned int irq) { }
  206. /* startup is the same as "enable", shutdown is same as "disable" */
  207. #define shutdown_none disable_none
  208. #define end_none enable_none
  209. static struct hw_interrupt_type cp0_irq_type = {
  210. "CP0 Count",
  211. startup_none,
  212. shutdown_none,
  213. enable_none,
  214. disable_none,
  215. ack_none,
  216. end_none
  217. };
  218. void enable_cpu_timer(void)
  219. {
  220.         unsigned long flags;
  221.         save_and_cli(flags);
  222. unmask_irq(1<<EXT_IRQ5_TO_IP); /* timer interrupt */
  223.         restore_flags(flags);
  224. }
  225. void __init init_IRQ(void)
  226. {
  227. int i;
  228.         unsigned long flags;
  229.         memset(irq_desc, 0, sizeof(irq_desc));
  230.         set_except_vector(0, it8172_IRQ);
  231. init_generic_irq();
  232. /* mask all interrupts */
  233. it8172_hw0_icregs->lb_mask  = 0xffff;
  234. it8172_hw0_icregs->lpc_mask = 0xffff;
  235. it8172_hw0_icregs->pci_mask = 0xffff;
  236. it8172_hw0_icregs->nmi_mask = 0xffff;
  237. /* make all interrupts level triggered */
  238. it8172_hw0_icregs->lb_trigger  = 0;
  239. it8172_hw0_icregs->lpc_trigger = 0;
  240. it8172_hw0_icregs->pci_trigger = 0;
  241. it8172_hw0_icregs->nmi_trigger = 0;
  242. /* active level setting */
  243. /* uart, keyboard, and mouse are active high */
  244. it8172_hw0_icregs->lpc_level = (0x10 | 0x2 | 0x1000);
  245. it8172_hw0_icregs->lb_level |= 0x20;
  246. /* keyboard and mouse are edge triggered */
  247. it8172_hw0_icregs->lpc_trigger |= (0x2 | 0x1000); 
  248. #if 0
  249. // Enable this piece of code to make internal USB interrupt
  250. // edge triggered.
  251. it8172_hw0_icregs->pci_trigger |= 
  252. (1 << (IT8172_USB_IRQ - IT8172_PCI_DEV_IRQ_BASE));
  253. it8172_hw0_icregs->pci_level &= 
  254. ~(1 << (IT8172_USB_IRQ - IT8172_PCI_DEV_IRQ_BASE));
  255. #endif
  256. for (i = 0; i <= IT8172_LAST_IRQ; i++) {
  257. irq_desc[i].handler = &it8172_irq_type;
  258. }
  259. irq_desc[MIPS_CPU_TIMER_IRQ].handler = &cp0_irq_type;
  260. set_cp0_status(ALLINTS_NOTIMER);
  261. #ifdef CONFIG_REMOTE_DEBUG
  262. /* If local serial I/O used for debug port, enter kgdb at once */
  263. puts("Waiting for kgdb to connect...");
  264. set_debug_traps();
  265. breakpoint(); 
  266. #endif
  267. }
  268. void mips_spurious_interrupt(struct pt_regs *regs)
  269. {
  270. #if 1
  271. return;
  272. #else
  273. unsigned long status, cause;
  274. printk("got spurious interruptn");
  275. status = read_32bit_cp0_register(CP0_STATUS);
  276. cause = read_32bit_cp0_register(CP0_CAUSE);
  277. printk("status %x cause %xn", status, cause);
  278. printk("epc %x badvaddr %x n", regs->cp0_epc, regs->cp0_badvaddr);
  279. // while(1);
  280. #endif
  281. }
  282. void it8172_hw0_irqdispatch(struct pt_regs *regs)
  283. {
  284. int irq;
  285. unsigned short intstatus = 0, status = 0;
  286. intstatus = it8172_hw0_icregs->intstatus;
  287. if (intstatus & 0x8) {
  288. panic("Got NMI interrupt");
  289. }
  290. else if (intstatus & 0x4) {
  291. /* PCI interrupt */
  292. irq = 0;
  293. status |= it8172_hw0_icregs->pci_req;
  294. while (!(status & 0x1)) {
  295. irq++;
  296. status >>= 1;
  297. }
  298. irq += IT8172_PCI_DEV_IRQ_BASE;
  299. //printk("pci int %dn", irq);
  300. }
  301. else if (intstatus & 0x1) {
  302. /* Local Bus interrupt */
  303. irq = 0;
  304. status |= it8172_hw0_icregs->lb_req;
  305. while (!(status & 0x1)) {
  306. irq++;
  307. status >>= 1;
  308. }
  309. irq += IT8172_LB_IRQ_BASE;
  310. //printk("lb int %dn", irq);
  311. }
  312. else if (intstatus & 0x2) {
  313. /* LPC interrupt */
  314. /* Since some lpc interrupts are edge triggered,
  315.  * we could lose an interrupt this way because
  316.  * we acknowledge all ints at onces. Revisit.
  317.  */
  318. status |= it8172_hw0_icregs->lpc_req;
  319. it8172_hw0_icregs->lpc_req = 0; /* acknowledge ints */
  320. irq = 0;
  321. while (!(status & 0x1)) {
  322. irq++;
  323. status >>= 1;
  324. }
  325. irq += IT8172_LPC_IRQ_BASE;
  326. //printk("LPC int %dn", irq);
  327. }
  328. else {
  329. return;
  330. }
  331. do_IRQ(irq, regs);
  332. }
  333. void show_pending_irqs(void)
  334. {
  335. fputs("intstatus:  ");
  336. put32(it8172_hw0_icregs->intstatus);
  337. puts("");
  338. fputs("pci_req:  ");
  339. put32(it8172_hw0_icregs->pci_req);
  340. puts("");
  341. fputs("lb_req:  ");
  342. put32(it8172_hw0_icregs->lb_req);
  343. puts("");
  344. fputs("lpc_req:  ");
  345. put32(it8172_hw0_icregs->lpc_req);
  346. puts("");
  347. }