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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright 2001 MontaVista Software Inc.
  3.  * Author: MontaVista Software, Inc.
  4.  *              ahennessy@mvista.com       
  5.  *
  6.  * This file is subject to the terms and conditions of the GNU General Public
  7.  * License.  See the file "COPYING" in the main directory of this archive
  8.  * for more details.
  9.  *
  10.  * Copyright (C) 2000-2001 Toshiba Corporation
  11.  *
  12.  *  This program is free software; you can redistribute  it and/or modify it
  13.  *  under  the terms of  the GNU General  Public License as published by the
  14.  *  Free Software Foundation;  either version 2 of the  License, or (at your
  15.  *  option) any later version.
  16.  *
  17.  *  THIS  SOFTWARE  IS PROVIDED   ``AS  IS'' AND   ANY  EXPRESS OR IMPLIED
  18.  *  WARRANTIES,   INCLUDING, BUT NOT  LIMITED  TO, THE IMPLIED WARRANTIES OF
  19.  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
  20.  *  NO  EVENT  SHALL   THE AUTHOR  BE    LIABLE FOR ANY   DIRECT, INDIRECT,
  21.  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  22.  *  NOT LIMITED   TO, PROCUREMENT OF  SUBSTITUTE GOODS  OR SERVICES; LOSS OF
  23.  *  USE, DATA,  OR PROFITS; OR  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  24.  *  ANY THEORY OF LIABILITY, WHETHER IN  CONTRACT, STRICT LIABILITY, OR TORT
  25.  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  26.  *  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27.  *
  28.  *  You should have received a copy of the  GNU General Public License along
  29.  *  with this program; if not, write  to the Free Software Foundation, Inc.,
  30.  *  675 Mass Ave, Cambridge, MA 02139, USA.
  31.  */
  32. #include <linux/config.h>
  33. #include <linux/init.h>
  34. #include <linux/errno.h>
  35. #include <linux/kernel_stat.h>
  36. #include <linux/signal.h>
  37. #include <linux/sched.h>
  38. #include <linux/types.h>
  39. #include <linux/interrupt.h>
  40. #include <linux/ioport.h>
  41. #include <linux/timex.h>
  42. #include <linux/slab.h>
  43. #include <linux/random.h>
  44. #include <linux/smp.h>
  45. #include <linux/smp_lock.h>
  46. #include <asm/bitops.h>
  47. #include <asm/io.h>
  48. #include <asm/irq.h>
  49. #include <asm/mipsregs.h>
  50. #include <asm/system.h>
  51. #include <asm/ptrace.h>
  52. #include <asm/processor.h>
  53. #include <asm/jmr3927/irq.h>
  54. #include <asm/debug.h>
  55. #include <asm/jmr3927/jmr3927.h>
  56. #if JMR3927_IRQ_END > NR_IRQS
  57. #error JMR3927_IRQ_END > NR_IRQS
  58. #endif
  59. struct tb_irq_space* tb_irq_spaces;
  60. unsigned int local_bh_count[NR_CPUS];
  61. unsigned int local_irq_count[NR_CPUS];
  62. static int jmr3927_irq_base=-1;
  63. #ifdef CONFIG_PCI
  64. static int jmr3927_gen_iack(void)
  65. {
  66. /* generate ACK cycle */
  67. #ifdef __BIG_ENDIAN
  68. return (tx3927_pcicptr->iiadp >> 24) & 0xff;
  69. #else
  70. return tx3927_pcicptr->iiadp & 0xff;
  71. #endif
  72. }
  73. #endif
  74. extern asmlinkage void jmr3927_IRQ(void);
  75. #define irc_dlevel 0
  76. #define irc_elevel 1
  77. static unsigned char irc_level[TX3927_NUM_IR] = {
  78. 5, 5, 5, 5, 5, 5, /* INT[5:0] */
  79. 7, 7, /* SIO */
  80. 5, 5, 5, 0, 0, /* DMA, PIO, PCI */
  81. 6, 6, 6 /* TMR */
  82. };
  83. static inline void mask_irq(unsigned int irq_nr)
  84. {
  85. struct tb_irq_space* sp;
  86. for (sp = tb_irq_spaces; sp; sp = sp->next) {
  87. if (sp->start_irqno <= irq_nr &&
  88.     irq_nr < sp->start_irqno + sp->nr_irqs) {
  89. if (sp->mask_func)
  90. sp->mask_func(irq_nr - sp->start_irqno,
  91.       sp->space_id);
  92. break;
  93. }
  94. }
  95. }
  96. static inline void unmask_irq(unsigned int irq_nr)
  97. {
  98. struct tb_irq_space* sp;
  99. for (sp = tb_irq_spaces; sp; sp = sp->next) {
  100. if (sp->start_irqno <= irq_nr &&
  101.     irq_nr < sp->start_irqno + sp->nr_irqs) {
  102. if (sp->unmask_func)
  103. sp->unmask_func(irq_nr - sp->start_irqno,
  104. sp->space_id);
  105. break;
  106. }
  107. }
  108. }
  109. static void jmr3927_irq_disable(unsigned int irq_nr);
  110. static void jmr3927_irq_enable(unsigned int irq_nr);
  111. static unsigned int jmr3927_irq_startup(unsigned int irq)
  112. {
  113. jmr3927_irq_enable(irq);
  114. return 0;
  115. }
  116. #define jmr3927_irq_shutdown jmr3927_irq_disable
  117. static void jmr3927_irq_ack(unsigned int irq)
  118. {
  119. db_assert(jmr3927_irq_base != -1);
  120. db_assert(irq >= jmr3927_irq_base);
  121. db_assert(irq < jmr3927_irq_base + JMR3927_NR_IRQ_IRC + JMR3927_NR_IRQ_IOC);
  122. if (irq == JMR3927_IRQ_IRC_TMR0) {
  123. jmr3927_tmrptr->tisr = 0;       /* ack interrupt */  
  124. }
  125. jmr3927_irq_disable(irq);
  126. }
  127. static void jmr3927_irq_end(unsigned int irq)
  128. {
  129. db_assert(jmr3927_irq_base != -1);
  130. db_assert(irq >= jmr3927_irq_base);
  131. db_assert(irq < jmr3927_irq_base + JMR3927_NR_IRQ_IRC + JMR3927_NR_IRQ_IOC);
  132. jmr3927_irq_enable(irq);
  133. }
  134. static void jmr3927_irq_disable(unsigned int irq_nr)
  135. {
  136. unsigned long flags;
  137. db_assert(jmr3927_irq_base != -1);
  138. db_assert(irq >= jmr3927_irq_base);
  139. db_assert(irq < jmr3927_irq_base + JMR3927_NR_IRQ_IRC + JMR3927_NR_IRQ_IOC);
  140. save_and_cli(flags);
  141. mask_irq(irq_nr);
  142. restore_flags(flags);
  143. }
  144. static void jmr3927_irq_enable(unsigned int irq_nr)
  145. {
  146. unsigned long flags;
  147. db_assert(jmr3927_irq_base != -1);
  148. db_assert(irq >= jmr3927_irq_base);
  149. db_assert(irq < jmr3927_irq_base + JMR3927_NR_IRQ_IRC + JMR3927_NR_IRQ_IOC);
  150. save_and_cli(flags);
  151. unmask_irq(irq_nr);
  152. restore_flags(flags);
  153. }
  154. /*
  155.  * CP0_STATUS is a thread's resource (saved/restored on context switch).
  156.  * So disable_irq/enable_irq MUST handle IOC/ISAC/IRC registers.
  157.  */
  158. static void mask_irq_isac(int irq_nr, int space_id)
  159. {
  160. /* 0: mask */
  161. unsigned char imask =
  162. jmr3927_isac_reg_in(JMR3927_ISAC_INTM_ADDR);
  163. unsigned int bit  = 1 << irq_nr;
  164. jmr3927_isac_reg_out(imask & ~bit, JMR3927_ISAC_INTM_ADDR);
  165. /* flush write buffer */
  166. (void)jmr3927_ioc_reg_in(JMR3927_IOC_REV_ADDR);
  167. }
  168. static void unmask_irq_isac(int irq_nr, int space_id)
  169. {
  170. /* 0: mask */
  171. unsigned char imask =
  172. jmr3927_isac_reg_in(JMR3927_ISAC_INTM_ADDR);
  173. unsigned int bit  = 1 << irq_nr;
  174. jmr3927_isac_reg_out(imask | bit, JMR3927_ISAC_INTM_ADDR);
  175. /* flush write buffer */
  176. (void)jmr3927_ioc_reg_in(JMR3927_IOC_REV_ADDR);
  177. }
  178. static void mask_irq_ioc(int irq_nr, int space_id)
  179. {
  180. /* 0: mask */
  181. unsigned char imask =
  182. jmr3927_ioc_reg_in(JMR3927_IOC_INTM_ADDR);
  183. unsigned int bit = 1 << irq_nr;
  184. jmr3927_ioc_reg_out(imask & ~bit, JMR3927_IOC_INTM_ADDR);
  185. /* flush write buffer */
  186. (void)jmr3927_ioc_reg_in(JMR3927_IOC_REV_ADDR);
  187. }
  188. static void unmask_irq_ioc(int irq_nr, int space_id)
  189. {
  190. /* 0: mask */
  191. unsigned char imask =
  192. jmr3927_ioc_reg_in(JMR3927_IOC_INTM_ADDR);
  193. unsigned int bit = 1 << irq_nr;
  194. jmr3927_ioc_reg_out(imask | bit, JMR3927_IOC_INTM_ADDR);
  195. /* flush write buffer */
  196. (void)jmr3927_ioc_reg_in(JMR3927_IOC_REV_ADDR);
  197. }
  198. static void mask_irq_irc(int irq_nr, int space_id)
  199. {
  200. volatile unsigned long *ilrp = &tx3927_ircptr->ilr[irq_nr / 2];
  201. if (irq_nr & 1)
  202. *ilrp = (*ilrp & 0x00ff) | (irc_dlevel << 8);
  203. else
  204. *ilrp = (*ilrp & 0xff00) | irc_dlevel;
  205. /* update IRCSR */
  206. tx3927_ircptr->imr = 0;
  207. tx3927_ircptr->imr = irc_elevel;
  208. }
  209. static void unmask_irq_irc(int irq_nr, int space_id)
  210. {
  211. volatile unsigned long *ilrp = &tx3927_ircptr->ilr[irq_nr / 2];
  212. if (irq_nr & 1)
  213. *ilrp = (*ilrp & 0x00ff) | (irc_level[irq_nr] << 8);
  214. else
  215. *ilrp = (*ilrp & 0xff00) | irc_level[irq_nr];
  216. /* update IRCSR */
  217. tx3927_ircptr->imr = 0;
  218. tx3927_ircptr->imr = irc_elevel;
  219. }
  220. struct tb_irq_space jmr3927_isac_irqspace = {
  221. next: NULL,
  222. start_irqno: JMR3927_IRQ_ISAC,
  223. nr_irqs : JMR3927_NR_IRQ_ISAC,
  224. mask_func: mask_irq_isac,
  225. unmask_func: unmask_irq_isac,
  226. name: "ISAC",
  227. space_id: 0,
  228. can_share : 0
  229. };
  230. struct tb_irq_space jmr3927_ioc_irqspace = {
  231. next: NULL,
  232. start_irqno: JMR3927_IRQ_IOC,
  233. nr_irqs : JMR3927_NR_IRQ_IOC,
  234. mask_func: mask_irq_ioc,
  235. unmask_func: unmask_irq_ioc,
  236. name: "IOC",
  237. space_id: 0,
  238. can_share : 1
  239. };
  240. struct tb_irq_space jmr3927_irc_irqspace = {
  241. next: NULL,
  242. start_irqno: JMR3927_IRQ_IRC,
  243. nr_irqs : JMR3927_NR_IRQ_IRC,
  244. mask_func: mask_irq_irc,
  245. unmask_func: unmask_irq_irc,
  246. name: "on-chip",
  247. space_id: 0,
  248. can_share : 0
  249. };
  250. void jmr3927_spurious(struct pt_regs *regs)
  251. {
  252. #ifdef CONFIG_TX_BRANCH_LIKELY_BUG_WORKAROUND
  253. tx_branch_likely_bug_fixup(regs);
  254. #endif
  255. printk(KERN_WARNING "spurious interrupt (cause 0x%lx, pc 0x%lx, ra 0x%lx).n",
  256.        regs->cp0_cause, regs->cp0_epc, regs->regs[31]);
  257. }
  258. extern asmlinkage void do_IRQ(int irq, struct pt_regs *regs);
  259. void jmr3927_irc_irqdispatch(struct pt_regs *regs)
  260. {
  261. int irq;
  262. #ifdef CONFIG_TX_BRANCH_LIKELY_BUG_WORKAROUND
  263. tx_branch_likely_bug_fixup(regs);
  264. #endif
  265. if ((regs->cp0_cause & CAUSEF_IP7) == 0) {
  266. #if 0
  267. jmr3927_spurious(regs);
  268. #endif
  269. return;
  270. }
  271. irq = (regs->cp0_cause >> CAUSEB_IP2) & 0x0f;
  272. do_IRQ(irq + JMR3927_IRQ_IRC, regs);
  273. }
  274. static void jmr3927_ioc_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  275. {
  276. unsigned char istat = jmr3927_ioc_reg_in(JMR3927_IOC_INTS2_ADDR);
  277. int i;
  278. for (i = 0; i < JMR3927_NR_IRQ_IOC; i++) {
  279. if (istat & (1 << i)) {
  280. irq = JMR3927_IRQ_IOC + i;
  281. do_IRQ(irq, regs);
  282. }
  283. }
  284. }
  285. static struct irqaction ioc_action = {
  286. jmr3927_ioc_interrupt, 0, 0, "IOC", NULL, NULL,
  287. };
  288. static void jmr3927_isac_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  289. {
  290. unsigned char istat = jmr3927_isac_reg_in(JMR3927_ISAC_INTS2_ADDR);
  291. int i;
  292. for (i = 0; i < JMR3927_NR_IRQ_ISAC; i++) {
  293. if (istat & (1 << i)) {
  294. irq = JMR3927_IRQ_ISAC + i;
  295. do_IRQ(irq, regs);
  296. }
  297. }
  298. }
  299. static struct irqaction isac_action = {
  300. jmr3927_isac_interrupt, 0, 0, "ISAC", NULL, NULL,
  301. };
  302. static void jmr3927_isaerr_interrupt(int irq, void * dev_id, struct pt_regs * regs)
  303. {
  304. printk(KERN_WARNING "ISA error interrupt (irq 0x%x).n", irq);
  305. }
  306. static struct irqaction isaerr_action = {
  307. jmr3927_isaerr_interrupt, 0, 0, "ISA error", NULL, NULL,
  308. };
  309. static void jmr3927_pcierr_interrupt(int irq, void * dev_id, struct pt_regs * regs)
  310. {
  311. printk(KERN_WARNING "PCI error interrupt (irq 0x%x).n", irq);
  312. printk(KERN_WARNING "pcistat:%02x, lbstat:%04lxn",
  313.        tx3927_pcicptr->pcistat, tx3927_pcicptr->lbstat);
  314. }
  315. static struct irqaction pcierr_action = {
  316. jmr3927_pcierr_interrupt, 0, 0, "PCI error", NULL, NULL,
  317. };
  318. int jmr3927_ether1_irq = 0;
  319. void jmr3927_irq_init(u32 irq_base);
  320. void jmr3927_irq_setup(void)
  321. {
  322. /* look for io board's presence */
  323. int have_isac = jmr3927_have_isac();
  324. /* Now, interrupt control disabled, */
  325. /* all IRC interrupts are masked, */
  326. /* all IRC interrupt mode are Low Active. */
  327. if (have_isac) {
  328. /* ETHER1 (NE2000 compatible 10M-Ether) parameter setup */
  329. /* temporary enable interrupt control */
  330. tx3927_ircptr->cer = 1;
  331. /* ETHER1 Int. Is High-Active. */
  332. if (tx3927_ircptr->ssr & (1 << 0))
  333. jmr3927_ether1_irq = JMR3927_IRQ_IRC_INT0;
  334. #if 0 /* INT3 may be asserted by ether0 (even after reboot...) */
  335. else if (tx3927_ircptr->ssr & (1 << 3))
  336. jmr3927_ether1_irq = JMR3927_IRQ_IRC_INT3;
  337. #endif
  338. /* disable interrupt control */
  339. tx3927_ircptr->cer = 0;
  340. /* Ether1: High Active */
  341. if (jmr3927_ether1_irq) {
  342. int ether1_irc = jmr3927_ether1_irq - JMR3927_IRQ_IRC;
  343. tx3927_ircptr->cr[ether1_irc / 8] |=
  344. TX3927_IRCR_HIGH << ((ether1_irc % 8) * 2);
  345. }
  346. }
  347. /* mask all IOC interrupts */
  348. jmr3927_ioc_reg_out(0, JMR3927_IOC_INTM_ADDR);
  349. /* setup IOC interrupt mode (SOFT:High Active, Others:Low Active) */
  350. jmr3927_ioc_reg_out(JMR3927_IOC_INTF_SOFT, JMR3927_IOC_INTP_ADDR);
  351. if (have_isac) {
  352. /* mask all ISAC interrupts */
  353. jmr3927_isac_reg_out(0, JMR3927_ISAC_INTM_ADDR);
  354. /* setup ISAC interrupt mode (ISAIRQ3,ISAIRQ5:Low Active ???) */
  355. jmr3927_isac_reg_out(JMR3927_ISAC_INTF_IRQ3|JMR3927_ISAC_INTF_IRQ5, JMR3927_ISAC_INTP_ADDR);
  356. }
  357. /* clear PCI Soft interrupts */
  358. jmr3927_ioc_reg_out(0, JMR3927_IOC_INTS1_ADDR);
  359. /* clear PCI Reset interrupts */
  360. jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
  361. /* enable interrupt control */
  362. tx3927_ircptr->cer = TX3927_IRCER_ICE;
  363. tx3927_ircptr->imr = irc_elevel;
  364. jmr3927_irq_init(NR_ISA_IRQS);
  365. set_except_vector(0, jmr3927_IRQ);
  366. /* setup irq space */
  367. add_tb_irq_space(&jmr3927_isac_irqspace);
  368. add_tb_irq_space(&jmr3927_ioc_irqspace);
  369. add_tb_irq_space(&jmr3927_irc_irqspace);
  370. /* setup IOC interrupt 1 (PCI, MODEM) */
  371. setup_irq(JMR3927_IRQ_IOCINT, &ioc_action);
  372. if (have_isac) {
  373. setup_irq(JMR3927_IRQ_ISACINT, &isac_action);
  374. setup_irq(JMR3927_IRQ_ISAC_ISAER, &isaerr_action);
  375. }
  376. #ifdef CONFIG_PCI
  377. setup_irq(JMR3927_IRQ_IRC_PCI, &pcierr_action);
  378. #endif
  379. /* enable all CPU interrupt bits. */
  380. set_cp0_status(ST0_IM); /* IE bit is still 0. */
  381. }
  382. void (*irq_setup)(void);
  383. void __init init_IRQ(void)
  384. {
  385. #ifdef CONFIG_REMOTE_DEBUG
  386.         extern void breakpoint(void);
  387.         extern void set_debug_traps(void);
  388.         puts("Wait for gdb client connection ...n");
  389.         set_debug_traps();
  390.         breakpoint();
  391. #endif
  392.         /* invoke board-specific irq setup */
  393.         irq_setup();
  394. }
  395. hw_irq_controller jmr3927_irq_controller = {
  396. "jmr3927_irq",
  397. jmr3927_irq_startup,
  398. jmr3927_irq_shutdown,
  399. jmr3927_irq_enable,
  400. jmr3927_irq_disable,
  401. jmr3927_irq_ack,
  402. jmr3927_irq_end,
  403. NULL /* no affinity stuff for UP */
  404. };
  405. void 
  406. jmr3927_irq_init(u32 irq_base)
  407. {
  408. extern irq_desc_t irq_desc[];
  409. u32 i;
  410. for (i= irq_base; i< irq_base + JMR3927_NR_IRQ_IRC + JMR3927_NR_IRQ_IOC; i++) {
  411. irq_desc[i].status = IRQ_DISABLED;
  412. irq_desc[i].action = NULL;
  413. irq_desc[i].depth = 1;
  414. irq_desc[i].handler = &jmr3927_irq_controller;
  415. }
  416. jmr3927_irq_base = irq_base;
  417. }
  418. #ifdef CONFIG_TX_BRANCH_LIKELY_BUG_WORKAROUND
  419. static int tx_branch_likely_bug_count = 0;
  420. static int have_tx_branch_likely_bug = 0;
  421. void tx_branch_likely_bug_fixup(struct pt_regs *regs)
  422. {
  423. /* TX39/49-BUG: Under this condition, the insn in delay slot
  424.            of the branch likely insn is executed (not nullified) even
  425.            the branch condition is false. */
  426. if (!have_tx_branch_likely_bug)
  427. return;
  428. if ((regs->cp0_epc & 0xfff) == 0xffc &&
  429.     KSEGX(regs->cp0_epc) != KSEG0 &&
  430.     KSEGX(regs->cp0_epc) != KSEG1) {
  431. unsigned int insn = *(unsigned int*)(regs->cp0_epc - 4);
  432. /* beql,bnel,blezl,bgtzl */
  433. /* bltzl,bgezl,blezall,bgezall */
  434. /* bczfl, bcztl */
  435. if ((insn & 0xf0000000) == 0x50000000 ||
  436.     (insn & 0xfc0e0000) == 0x04020000 ||
  437.     (insn & 0xf3fe0000) == 0x41020000) {
  438. regs->cp0_epc -= 4;
  439. tx_branch_likely_bug_count++;
  440. printk(KERN_INFO
  441.        "fix branch-likery bug in %s (insn %08x)n",
  442.        current->comm, insn);
  443. }
  444. }
  445. }
  446. #endif