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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: irq.c,v 1.21 2001/07/17 02:26:53 gniibe Exp $
  2.  *
  3.  * linux/arch/sh/kernel/irq.c
  4.  *
  5.  * Copyright (C) 1992, 1998 Linus Torvalds, Ingo Molnar
  6.  *
  7.  *
  8.  * SuperH version:  Copyright (C) 1999  Niibe Yutaka
  9.  */
  10. /*
  11.  * IRQs are in fact implemented a bit like signal handlers for the kernel.
  12.  * Naturally it's not a 1:1 relation, but there are similarities.
  13.  */
  14. #include <linux/config.h>
  15. #include <linux/ptrace.h>
  16. #include <linux/errno.h>
  17. #include <linux/kernel_stat.h>
  18. #include <linux/signal.h>
  19. #include <linux/sched.h>
  20. #include <linux/ioport.h>
  21. #include <linux/interrupt.h>
  22. #include <linux/timex.h>
  23. #include <linux/slab.h>
  24. #include <linux/random.h>
  25. #include <linux/smp.h>
  26. #include <linux/smp_lock.h>
  27. #include <linux/init.h>
  28. #include <asm/system.h>
  29. #include <asm/io.h>
  30. #include <asm/bitops.h>
  31. #include <asm/pgalloc.h>
  32. #include <asm/delay.h>
  33. #include <asm/irq.h>
  34. #include <linux/irq.h>
  35. /*
  36.  * Controller mappings for all interrupt sources:
  37.  */
  38. irq_desc_t irq_desc[NR_IRQS] __cacheline_aligned =
  39. { [0 ... NR_IRQS-1] = { 0, &no_irq_type, }};
  40. /*
  41.  * Special irq handlers.
  42.  */
  43. void no_action(int cpl, void *dev_id, struct pt_regs *regs) { }
  44. /*
  45.  * Generic no controller code
  46.  */
  47. static void enable_none(unsigned int irq) { }
  48. static unsigned int startup_none(unsigned int irq) { return 0; }
  49. static void disable_none(unsigned int irq) { }
  50. static void ack_none(unsigned int irq)
  51. {
  52. /*
  53.  * 'what should we do if we get a hw irq event on an illegal vector'.
  54.  * each architecture has to answer this themselves, it doesnt deserve
  55.  * a generic callback i think.
  56.  */
  57. printk("unexpected IRQ trap at vector %02xn", irq);
  58. }
  59. /* startup is the same as "enable", shutdown is same as "disable" */
  60. #define shutdown_none disable_none
  61. #define end_none enable_none
  62. struct hw_interrupt_type no_irq_type = {
  63. "none",
  64. startup_none,
  65. shutdown_none,
  66. enable_none,
  67. disable_none,
  68. ack_none,
  69. end_none
  70. };
  71. /*
  72.  * Generic, controller-independent functions:
  73.  */
  74. #if defined(CONFIG_PROC_FS)
  75. int get_irq_list(char *buf)
  76. {
  77. int i, j;
  78. struct irqaction * action;
  79. char *p = buf;
  80. p += sprintf(p, "           ");
  81. for (j=0; j<smp_num_cpus; j++)
  82. p += sprintf(p, "CPU%d       ",j);
  83. *p++ = 'n';
  84. for (i = 0 ; i < ACTUAL_NR_IRQS ; i++) {
  85. action = irq_desc[i].action;
  86. if (!action) 
  87. continue;
  88. p += sprintf(p, "%3d: ",i);
  89. p += sprintf(p, "%10u ", kstat_irqs(i));
  90. p += sprintf(p, " %14s", irq_desc[i].handler->typename);
  91. p += sprintf(p, "  %s", action->name);
  92. for (action=action->next; action; action = action->next)
  93. p += sprintf(p, ", %s", action->name);
  94. *p++ = 'n';
  95. }
  96. return p - buf;
  97. }
  98. #endif
  99. /*
  100.  * This should really return information about whether
  101.  * we should do bottom half handling etc. Right now we
  102.  * end up _always_ checking the bottom half, which is a
  103.  * waste of time and is not what some drivers would
  104.  * prefer.
  105.  */
  106. int handle_IRQ_event(unsigned int irq, struct pt_regs * regs, struct irqaction * action)
  107. {
  108. int status;
  109. int cpu = smp_processor_id();
  110. irq_enter(cpu, irq);
  111. status = 1; /* Force the "do bottom halves" bit */
  112. if (!(action->flags & SA_INTERRUPT))
  113. __sti();
  114. do {
  115. status |= action->flags;
  116. action->handler(irq, action->dev_id, regs);
  117. action = action->next;
  118. } while (action);
  119. if (status & SA_SAMPLE_RANDOM)
  120. add_interrupt_randomness(irq);
  121. __cli();
  122. irq_exit(cpu, irq);
  123. return status;
  124. }
  125. /*
  126.  * Generic enable/disable code: this just calls
  127.  * down into the PIC-specific version for the actual
  128.  * hardware disable after having gotten the irq
  129.  * controller lock. 
  130.  */
  131. void disable_irq_nosync(unsigned int irq)
  132. {
  133. irq_desc_t *desc = irq_desc + irq;
  134. unsigned long flags;
  135. spin_lock_irqsave(&desc->lock, flags);
  136. if (!desc->depth++) {
  137. desc->status |= IRQ_DISABLED;
  138. desc->handler->disable(irq);
  139. }
  140. spin_unlock_irqrestore(&desc->lock, flags);
  141. }
  142. /*
  143.  * Synchronous version of the above, making sure the IRQ is
  144.  * no longer running on any other IRQ..
  145.  */
  146. void disable_irq(unsigned int irq)
  147. {
  148. disable_irq_nosync(irq);
  149. if (!local_irq_count(smp_processor_id())) {
  150. do {
  151. barrier();
  152. } while (irq_desc[irq].status & IRQ_INPROGRESS);
  153. }
  154. }
  155. void enable_irq(unsigned int irq)
  156. {
  157. irq_desc_t *desc = irq_desc + irq;
  158. unsigned long flags;
  159. spin_lock_irqsave(&desc->lock, flags);
  160. switch (desc->depth) {
  161. case 1: {
  162. unsigned int status = desc->status & ~IRQ_DISABLED;
  163. desc->status = status;
  164. if ((status & (IRQ_PENDING | IRQ_REPLAY)) == IRQ_PENDING) {
  165. desc->status = status | IRQ_REPLAY;
  166. hw_resend_irq(desc->handler,irq);
  167. }
  168. desc->handler->enable(irq);
  169. /* fall-through */
  170. }
  171. default:
  172. desc->depth--;
  173. break;
  174. case 0:
  175. printk("enable_irq() unbalanced from %pn",
  176.        __builtin_return_address(0));
  177. }
  178. spin_unlock_irqrestore(&desc->lock, flags);
  179. }
  180. /*
  181.  * do_IRQ handles all normal device IRQ's.
  182.  */
  183. asmlinkage int do_IRQ(unsigned long r4, unsigned long r5,
  184.       unsigned long r6, unsigned long r7,
  185.       struct pt_regs regs)
  186. {
  187. /* 
  188.  * We ack quickly, we don't want the irq controller
  189.  * thinking we're snobs just because some other CPU has
  190.  * disabled global interrupts (we have already done the
  191.  * INT_ACK cycles, it's too late to try to pretend to the
  192.  * controller that we aren't taking the interrupt).
  193.  *
  194.  * 0 return value means that this irq is already being
  195.  * handled by some other CPU. (or is disabled)
  196.  */
  197. int irq;
  198. int cpu = smp_processor_id();
  199. irq_desc_t *desc;
  200. struct irqaction * action;
  201. unsigned int status;
  202. /* Get IRQ number */
  203. asm volatile("stc r2_bank, %0nt"
  204.      "shlr2 %0nt"
  205.      "shlr2 %0nt"
  206.      "shlr %0nt"
  207.      "add #-16, %0nt"
  208.      :"=z" (irq));
  209. irq = irq_demux(irq);
  210. kstat.irqs[cpu][irq]++;
  211. desc = irq_desc + irq;
  212. spin_lock(&desc->lock);
  213. desc->handler->ack(irq);
  214. /*
  215.    REPLAY is when Linux resends an IRQ that was dropped earlier
  216.    WAITING is used by probe to mark irqs that are being tested
  217.    */
  218. status = desc->status & ~(IRQ_REPLAY | IRQ_WAITING);
  219. status |= IRQ_PENDING; /* we _want_ to handle it */
  220. /*
  221.  * If the IRQ is disabled for whatever reason, we cannot
  222.  * use the action we have.
  223.  */
  224. action = NULL;
  225. if (!(status & (IRQ_DISABLED | IRQ_INPROGRESS))) {
  226. action = desc->action;
  227. status &= ~IRQ_PENDING; /* we commit to handling */
  228. status |= IRQ_INPROGRESS; /* we are handling it */
  229. }
  230. desc->status = status;
  231. /*
  232.  * If there is no IRQ handler or it was disabled, exit early.
  233.    Since we set PENDING, if another processor is handling
  234.    a different instance of this same irq, the other processor
  235.    will take care of it.
  236.  */
  237. if (!action)
  238. goto out;
  239. /*
  240.  * Edge triggered interrupts need to remember
  241.  * pending events.
  242.  * This applies to any hw interrupts that allow a second
  243.  * instance of the same irq to arrive while we are in do_IRQ
  244.  * or in the handler. But the code here only handles the _second_
  245.  * instance of the irq, not the third or fourth. So it is mostly
  246.  * useful for irq hardware that does not mask cleanly in an
  247.  * SMP environment.
  248.  */
  249. for (;;) {
  250. spin_unlock(&desc->lock);
  251. handle_IRQ_event(irq, &regs, action);
  252. spin_lock(&desc->lock);
  253. if (!(desc->status & IRQ_PENDING))
  254. break;
  255. desc->status &= ~IRQ_PENDING;
  256. }
  257. desc->status &= ~IRQ_INPROGRESS;
  258. out:
  259. /*
  260.  * The ->end() handler has to deal with interrupts which got
  261.  * disabled while the handler was running.
  262.  */
  263. desc->handler->end(irq);
  264. spin_unlock(&desc->lock);
  265. if (softirq_pending(cpu))
  266. do_softirq();
  267. return 1;
  268. }
  269. int request_irq(unsigned int irq, 
  270. void (*handler)(int, void *, struct pt_regs *),
  271. unsigned long irqflags, 
  272. const char * devname,
  273. void *dev_id)
  274. {
  275. int retval;
  276. struct irqaction * action;
  277. if (irq >= ACTUAL_NR_IRQS)
  278. return -EINVAL;
  279. if (!handler)
  280. return -EINVAL;
  281. action = (struct irqaction *)
  282. kmalloc(sizeof(struct irqaction), GFP_KERNEL);
  283. if (!action)
  284. return -ENOMEM;
  285. action->handler = handler;
  286. action->flags = irqflags;
  287. action->mask = 0;
  288. action->name = devname;
  289. action->next = NULL;
  290. action->dev_id = dev_id;
  291. retval = setup_irq(irq, action);
  292. if (retval)
  293. kfree(action);
  294. return retval;
  295. }
  296. void free_irq(unsigned int irq, void *dev_id)
  297. {
  298. irq_desc_t *desc;
  299. struct irqaction **p;
  300. unsigned long flags;
  301. if (irq >= ACTUAL_NR_IRQS)
  302. return;
  303. desc = irq_desc + irq;
  304. spin_lock_irqsave(&desc->lock,flags);
  305. p = &desc->action;
  306. for (;;) {
  307. struct irqaction * action = *p;
  308. if (action) {
  309. struct irqaction **pp = p;
  310. p = &action->next;
  311. if (action->dev_id != dev_id)
  312. continue;
  313. /* Found it - now remove it from the list of entries */
  314. *pp = action->next;
  315. if (!desc->action) {
  316. desc->status |= IRQ_DISABLED;
  317. desc->handler->shutdown(irq);
  318. }
  319. spin_unlock_irqrestore(&desc->lock,flags);
  320. kfree(action);
  321. return;
  322. }
  323. printk("Trying to free free IRQ%dn",irq);
  324. spin_unlock_irqrestore(&desc->lock,flags);
  325. return;
  326. }
  327. }
  328. static DECLARE_MUTEX(probe_sem);
  329. /*
  330.  * IRQ autodetection code..
  331.  *
  332.  * This depends on the fact that any interrupt that
  333.  * comes in on to an unassigned handler will get stuck
  334.  * with "IRQ_WAITING" cleared and the interrupt
  335.  * disabled.
  336.  */
  337. unsigned long probe_irq_on(void)
  338. {
  339. unsigned int i;
  340. irq_desc_t *desc;
  341. unsigned long val;
  342. unsigned long delay;
  343. down(&probe_sem);
  344. /* 
  345.  * something may have generated an irq long ago and we want to
  346.  * flush such a longstanding irq before considering it as spurious. 
  347.  */
  348. for (i = NR_IRQS-1; i > 0; i--) {
  349. desc = irq_desc + i;
  350. spin_lock_irq(&desc->lock);
  351. if (!desc->action)
  352. desc->handler->startup(i);
  353. spin_unlock_irq(&desc->lock);
  354. }
  355. /* Wait for longstanding interrupts to trigger. */
  356. for (delay = jiffies + HZ/50; time_after(delay, jiffies); )
  357. /* about 20ms delay */ synchronize_irq();
  358. /*
  359.  * enable any unassigned irqs
  360.  * (we must startup again here because if a longstanding irq
  361.  * happened in the previous stage, it may have masked itself)
  362.  */
  363. for (i = NR_IRQS-1; i > 0; i--) {
  364. desc = irq_desc + i;
  365. spin_lock_irq(&desc->lock);
  366. if (!desc->action) {
  367. desc->status |= IRQ_AUTODETECT | IRQ_WAITING;
  368. if (desc->handler->startup(i))
  369. desc->status |= IRQ_PENDING;
  370. }
  371. spin_unlock_irq(&desc->lock);
  372. }
  373. /*
  374.  * Wait for spurious interrupts to trigger
  375.  */
  376. for (delay = jiffies + HZ/10; time_after(delay, jiffies); )
  377. /* about 100ms delay */ synchronize_irq();
  378. /*
  379.  * Now filter out any obviously spurious interrupts
  380.  */
  381. val = 0;
  382. for (i=0; i<NR_IRQS; i++) {
  383. desc = irq_desc + i;
  384. unsigned int status;
  385. spin_lock_irq(&desc->lock);
  386. status = desc->status;
  387. if (status & IRQ_AUTODETECT) {
  388. /* It triggered already - consider it spurious. */
  389. if (!(status & IRQ_WAITING)) {
  390. desc->status = status & ~IRQ_AUTODETECT;
  391. desc->handler->shutdown(i);
  392. } else
  393. if (i < 32)
  394. val |= 1 << i;
  395. }
  396. spin_unlock_irq(&desc->lock);
  397. }
  398. return val;
  399. }
  400. int probe_irq_off(unsigned long val)
  401. {
  402. int i, irq_found, nr_irqs;
  403. nr_irqs = 0;
  404. irq_found = 0;
  405. for (i=0; i<NR_IRQS; i++) {
  406. irq_desc_t *desc = irq_desc + i;
  407. unsigned int status;
  408. spin_lock_irq(&desc->lock);
  409. status = desc->status;
  410. if (status & IRQ_AUTODETECT) {
  411. if (!(status & IRQ_WAITING)) {
  412. if (!nr_irqs)
  413. irq_found = i;
  414. nr_irqs++;
  415. }
  416. desc->status = status & ~IRQ_AUTODETECT;
  417. desc->handler->shutdown(i);
  418. }
  419. spin_unlock_irq(&desc->lock);
  420. }
  421. up(&probe_sem);
  422. if (nr_irqs > 1)
  423. irq_found = -irq_found;
  424. return irq_found;
  425. }
  426. int setup_irq(unsigned int irq, struct irqaction * new)
  427. {
  428. int shared = 0;
  429. struct irqaction *old, **p;
  430. unsigned long flags;
  431. irq_desc_t *desc = irq_desc + irq;
  432. /*
  433.  * Some drivers like serial.c use request_irq() heavily,
  434.  * so we have to be careful not to interfere with a
  435.  * running system.
  436.  */
  437. if (new->flags & SA_SAMPLE_RANDOM) {
  438. /*
  439.  * This function might sleep, we want to call it first,
  440.  * outside of the atomic block.
  441.  * Yes, this might clear the entropy pool if the wrong
  442.  * driver is attempted to be loaded, without actually
  443.  * installing a new handler, but is this really a problem,
  444.  * only the sysadmin is able to do this.
  445.  */
  446. rand_initialize_irq(irq);
  447. }
  448. /*
  449.  * The following block of code has to be executed atomically
  450.  */
  451. spin_lock_irqsave(&desc->lock,flags);
  452. p = &desc->action;
  453. if ((old = *p) != NULL) {
  454. /* Can't share interrupts unless both agree to */
  455. if (!(old->flags & new->flags & SA_SHIRQ)) {
  456. spin_unlock_irqrestore(&desc->lock,flags);
  457. return -EBUSY;
  458. }
  459. /* add new interrupt at end of irq queue */
  460. do {
  461. p = &old->next;
  462. old = *p;
  463. } while (old);
  464. shared = 1;
  465. }
  466. *p = new;
  467. if (!shared) {
  468. desc->depth = 0;
  469. desc->status &= ~(IRQ_DISABLED | IRQ_AUTODETECT | IRQ_WAITING);
  470. desc->handler->startup(irq);
  471. }
  472. spin_unlock_irqrestore(&desc->lock,flags);
  473. return 0;
  474. }
  475. #if defined(CONFIG_PROC_FS) && defined(CONFIG_SYSCTL)
  476. void init_irq_proc(void)
  477. {
  478. }
  479. #endif