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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Code to handle x86 style IRQs plus some generic interrupt stuff.
  7.  *
  8.  * Copyright (C) 1992 Linus Torvalds
  9.  * Copyright (C) 1994 - 2000 Ralf Baechle
  10.  */
  11. #include <linux/config.h>
  12. #include <linux/kernel.h>
  13. #include <linux/delay.h>
  14. #include <linux/init.h>
  15. #include <linux/interrupt.h>
  16. #include <linux/kernel_stat.h>
  17. #include <linux/module.h>
  18. #include <linux/proc_fs.h>
  19. #include <linux/slab.h>
  20. #include <linux/mm.h>
  21. #include <linux/random.h>
  22. #include <linux/sched.h>
  23. #include <asm/atomic.h>
  24. #include <asm/system.h>
  25. #include <asm/uaccess.h>
  26. /*
  27.  * Controller mappings for all interrupt sources:
  28.  */
  29. irq_desc_t irq_desc[NR_IRQS] __cacheline_aligned =
  30. { [0 ... NR_IRQS-1] = { 0, &no_irq_type, NULL, 0, SPIN_LOCK_UNLOCKED}};
  31. static void register_irq_proc (unsigned int irq);
  32. /*
  33.  * Special irq handlers.
  34.  */
  35. void no_action(int cpl, void *dev_id, struct pt_regs *regs) { }
  36. /*
  37.  * Generic no controller code
  38.  */
  39. static void enable_none(unsigned int irq) { }
  40. static unsigned int startup_none(unsigned int irq) { return 0; }
  41. static void disable_none(unsigned int irq) { }
  42. static void ack_none(unsigned int irq)
  43. {
  44. /*
  45.  * 'what should we do if we get a hw irq event on an illegal vector'.
  46.  * each architecture has to answer this themselves, it doesn't deserve
  47.  * a generic callback i think.
  48.  */
  49. printk("unexpected interrupt %dn", irq);
  50. }
  51. /* startup is the same as "enable", shutdown is same as "disable" */
  52. #define shutdown_none disable_none
  53. #define end_none enable_none
  54. struct hw_interrupt_type no_irq_type = {
  55. "none",
  56. startup_none,
  57. shutdown_none,
  58. enable_none,
  59. disable_none,
  60. ack_none,
  61. end_none
  62. };
  63. atomic_t irq_err_count;
  64. /*
  65.  * Generic, controller-independent functions:
  66.  */
  67. int get_irq_list(char *buf)
  68. {
  69. int i, j;
  70. struct irqaction * action;
  71. char *p = buf;
  72. p += sprintf(p, "           ");
  73. for (j=0; j<smp_num_cpus; j++)
  74. p += sprintf(p, "CPU%d       ",j);
  75. *p++ = 'n';
  76. for (i = 0 ; i < NR_IRQS ; i++) {
  77. action = irq_desc[i].action;
  78. if (!action)
  79. continue;
  80. p += sprintf(p, "%3d: ",i);
  81. #ifndef CONFIG_SMP
  82. p += sprintf(p, "%10u ", kstat_irqs(i));
  83. #else
  84. for (j = 0; j < smp_num_cpus; j++)
  85. p += sprintf(p, "%10u ",
  86. kstat.irqs[cpu_logical_map(j)][i]);
  87. #endif
  88. p += sprintf(p, " %14s", irq_desc[i].handler->typename);
  89. p += sprintf(p, "  %s", action->name);
  90. for (action=action->next; action; action = action->next)
  91. p += sprintf(p, ", %s", action->name);
  92. *p++ = 'n';
  93. }
  94. p += sprintf(p, "n");
  95. p += sprintf(p, "ERR: %10un", atomic_read(&irq_err_count));
  96. return p - buf;
  97. }
  98. #ifdef CONFIG_SMP
  99. int global_irq_holder = NO_PROC_ID;
  100. spinlock_t global_irq_lock = SPIN_LOCK_UNLOCKED;
  101. /*
  102.  * Most of this code is take from the mips64 tree (ip27-irq.c).  It's virtually
  103.  * identical to the i386 implentation in arh/i386/irq.c, with translations for
  104.  * the interrupt enable bit
  105.  */
  106. #define MAXCOUNT  100000000
  107. #define SYNC_OTHER_CORES(x) udelay(x+1)
  108. static inline void wait_on_irq(int cpu)
  109. {
  110. int count = MAXCOUNT;
  111. for (;;) {
  112. /*
  113.  * Wait until all interrupts are gone. Wait
  114.  * for bottom half handlers unless we're
  115.  * already executing in one..
  116.  */
  117. if (!irqs_running())
  118. if (local_bh_count(cpu) || !spin_is_locked(&global_bh_lock))
  119. break;
  120. /* Duh, we have to loop. Release the lock to avoid deadlocks */
  121. spin_unlock(&global_irq_lock);
  122. for (;;) {
  123. if (!--count) {
  124. printk("Count spun out.  Huh?n");
  125. count = ~0;
  126. }
  127. __sti();
  128. SYNC_OTHER_CORES(cpu);
  129. __cli();
  130. if (irqs_running())
  131. continue;
  132. if (spin_is_locked(&global_irq_lock))
  133. continue;
  134. if (!local_bh_count(cpu) && spin_is_locked(&global_bh_lock))
  135. continue;
  136. if (spin_trylock(&global_irq_lock))
  137. break;
  138. }
  139. }
  140. }
  141. /*
  142.  * This is called when we want to synchronize with
  143.  * interrupts. We may for example tell a device to
  144.  * stop sending interrupts: but to make sure there
  145.  * are no interrupts that are executing on another
  146.  * CPU we need to call this function.
  147.  */
  148. void synchronize_irq(void)
  149. {
  150. if (irqs_running()) {
  151. /* Stupid approach */
  152. cli();
  153. sti();
  154. }
  155. }
  156. static inline void get_irqlock(int cpu)
  157. {
  158. if (!spin_trylock(&global_irq_lock)) {
  159. /* do we already hold the lock? */
  160. if ((unsigned char) cpu == global_irq_holder)
  161. return;
  162. /* Uhhuh.. Somebody else got it. Wait.. */
  163. spin_lock(&global_irq_lock);
  164. }
  165. /*
  166.  * We also to make sure that nobody else is running
  167.  * in an interrupt context.
  168.  */
  169. wait_on_irq(cpu);
  170. /*
  171.  * Ok, finally..
  172.  */
  173. global_irq_holder = cpu;
  174. }
  175. /*
  176.  * A global "cli()" while in an interrupt context turns into just a local
  177.  * cli(). Interrupts should use spinlocks for the (very unlikely) case that
  178.  * they ever want to protect against each other.
  179.  *
  180.  * If we already have local interrupts disabled, this will not turn a local
  181.  * disable into a global one (problems with spinlocks: this makes
  182.  * save_flags+cli+sti usable inside a spinlock).
  183.  */
  184. void __global_cli(void)
  185. {
  186. unsigned int flags;
  187. __save_flags(flags);
  188. if (flags & ST0_IE) {
  189. int cpu = smp_processor_id();
  190. __cli();
  191. if (!local_irq_count(cpu))
  192. get_irqlock(cpu);
  193. }
  194. }
  195. void __global_sti(void)
  196. {
  197. int cpu = smp_processor_id();
  198. if (!local_irq_count(cpu))
  199. release_irqlock(cpu);
  200. __sti();
  201. }
  202. /*
  203.  * SMP flags value to restore to:
  204.  * 0 - global cli
  205.  * 1 - global sti
  206.  * 2 - local cli
  207.  * 3 - local sti
  208.  */
  209. unsigned long __global_save_flags(void)
  210. {
  211. int retval;
  212. int local_enabled;
  213. unsigned long flags;
  214. int cpu = smp_processor_id();
  215. __save_flags(flags);
  216. local_enabled = (flags & ST0_IE);
  217. /* default to local */
  218. retval = 2 + local_enabled;
  219. /* check for global flags if we're not in an interrupt */
  220. if (!local_irq_count(cpu)) {
  221. if (local_enabled)
  222. retval = 1;
  223. if (global_irq_holder == cpu)
  224. retval = 0;
  225. }
  226. return retval;
  227. }
  228. void __global_restore_flags(unsigned long flags)
  229. {
  230. switch (flags) {
  231. case 0:
  232. __global_cli();
  233. break;
  234. case 1:
  235. __global_sti();
  236. break;
  237. case 2:
  238. __cli();
  239. break;
  240. case 3:
  241. __sti();
  242. break;
  243. default:
  244. printk("global_restore_flags: %08lxn", flags);
  245. }
  246. }
  247. #endif /* CONFIG_SMP */
  248. /*
  249.  * This should really return information about whether
  250.  * we should do bottom half handling etc. Right now we
  251.  * end up _always_ checking the bottom half, which is a
  252.  * waste of time and is not what some drivers would
  253.  * prefer.
  254.  */
  255. int handle_IRQ_event(unsigned int irq, struct pt_regs * regs, struct irqaction * action)
  256. {
  257. int status;
  258. int cpu = smp_processor_id();
  259. irq_enter(cpu, irq);
  260. status = 1; /* Force the "do bottom halves" bit */
  261. if (!(action->flags & SA_INTERRUPT))
  262. __sti();
  263. do {
  264. status |= action->flags;
  265. action->handler(irq, action->dev_id, regs);
  266. action = action->next;
  267. } while (action);
  268. if (status & SA_SAMPLE_RANDOM)
  269. add_interrupt_randomness(irq);
  270. __cli();
  271. irq_exit(cpu, irq);
  272. return status;
  273. }
  274. /*
  275.  * Generic enable/disable code: this just calls
  276.  * down into the PIC-specific version for the actual
  277.  * hardware disable after having gotten the irq
  278.  * controller lock.
  279.  */
  280. /**
  281.  * disable_irq_nosync - disable an irq without waiting
  282.  * @irq: Interrupt to disable
  283.  *
  284.  * Disable the selected interrupt line. Disables of an interrupt
  285.  * stack. Unlike disable_irq(), this function does not ensure existing
  286.  * instances of the IRQ handler have completed before returning.
  287.  *
  288.  * This function may be called from IRQ context.
  289.  */
  290. void inline disable_irq_nosync(unsigned int irq)
  291. {
  292. irq_desc_t *desc = irq_desc + irq;
  293. unsigned long flags;
  294. spin_lock_irqsave(&desc->lock, flags);
  295. if (!desc->depth++) {
  296. desc->status |= IRQ_DISABLED;
  297. desc->handler->disable(irq);
  298. }
  299. spin_unlock_irqrestore(&desc->lock, flags);
  300. }
  301. /**
  302.  * disable_irq - disable an irq and wait for completion
  303.  * @irq: Interrupt to disable
  304.  *
  305.  * Disable the selected interrupt line. Disables of an interrupt
  306.  * stack. That is for two disables you need two enables. This
  307.  * function waits for any pending IRQ handlers for this interrupt
  308.  * to complete before returning. If you use this function while
  309.  * holding a resource the IRQ handler may need you will deadlock.
  310.  *
  311.  * This function may be called - with care - from IRQ context.
  312.  */
  313. void disable_irq(unsigned int irq)
  314. {
  315. disable_irq_nosync(irq);
  316. if (!local_irq_count(smp_processor_id())) {
  317. do {
  318. barrier();
  319. } while (irq_desc[irq].status & IRQ_INPROGRESS);
  320. }
  321. }
  322. /**
  323.  * enable_irq - enable interrupt handling on an irq
  324.  * @irq: Interrupt to enable
  325.  *
  326.  * Re-enables the processing of interrupts on this IRQ line
  327.  * providing no disable_irq calls are now in effect.
  328.  *
  329.  * This function may be called from IRQ context.
  330.  */
  331. void enable_irq(unsigned int irq)
  332. {
  333. irq_desc_t *desc = irq_desc + irq;
  334. unsigned long flags;
  335. spin_lock_irqsave(&desc->lock, flags);
  336. switch (desc->depth) {
  337. case 1: {
  338. unsigned int status = desc->status & ~IRQ_DISABLED;
  339. desc->status = status;
  340. if ((status & (IRQ_PENDING | IRQ_REPLAY)) == IRQ_PENDING) {
  341. desc->status = status | IRQ_REPLAY;
  342. hw_resend_irq(desc->handler,irq);
  343. }
  344. desc->handler->enable(irq);
  345. /* fall-through */
  346. }
  347. default:
  348. desc->depth--;
  349. break;
  350. case 0:
  351. printk("enable_irq(%u) unbalanced from %pn", irq,
  352.        __builtin_return_address(0));
  353. }
  354. spin_unlock_irqrestore(&desc->lock, flags);
  355. }
  356. /*
  357.  * do_IRQ handles all normal device IRQ's (the special
  358.  * SMP cross-CPU interrupts have their own specific
  359.  * handlers).
  360.  */
  361. asmlinkage unsigned int do_IRQ(int irq, struct pt_regs *regs)
  362. {
  363. /*
  364.  * We ack quickly, we don't want the irq controller
  365.  * thinking we're snobs just because some other CPU has
  366.  * disabled global interrupts (we have already done the
  367.  * INT_ACK cycles, it's too late to try to pretend to the
  368.  * controller that we aren't taking the interrupt).
  369.  *
  370.  * 0 return value means that this irq is already being
  371.  * handled by some other CPU. (or is disabled)
  372.  */
  373. int cpu = smp_processor_id();
  374. irq_desc_t *desc = irq_desc + irq;
  375. struct irqaction * action;
  376. unsigned int status;
  377. kstat.irqs[cpu][irq]++;
  378. spin_lock(&desc->lock);
  379. desc->handler->ack(irq);
  380. /*
  381.    REPLAY is when Linux resends an IRQ that was dropped earlier
  382.    WAITING is used by probe to mark irqs that are being tested
  383.    */
  384. status = desc->status & ~(IRQ_REPLAY | IRQ_WAITING);
  385. status |= IRQ_PENDING; /* we _want_ to handle it */
  386. /*
  387.  * If the IRQ is disabled for whatever reason, we cannot
  388.  * use the action we have.
  389.  */
  390. action = NULL;
  391. if (!(status & (IRQ_DISABLED | IRQ_INPROGRESS))) {
  392. action = desc->action;
  393. status &= ~IRQ_PENDING; /* we commit to handling */
  394. status |= IRQ_INPROGRESS; /* we are handling it */
  395. }
  396. desc->status = status;
  397. /*
  398.  * If there is no IRQ handler or it was disabled, exit early.
  399.    Since we set PENDING, if another processor is handling
  400.    a different instance of this same irq, the other processor
  401.    will take care of it.
  402.  */
  403. if (!action)
  404. goto out;
  405. /*
  406.  * Edge triggered interrupts need to remember
  407.  * pending events.
  408.  * This applies to any hw interrupts that allow a second
  409.  * instance of the same irq to arrive while we are in do_IRQ
  410.  * or in the handler. But the code here only handles the _second_
  411.  * instance of the irq, not the third or fourth. So it is mostly
  412.  * useful for irq hardware that does not mask cleanly in an
  413.  * SMP environment.
  414.  */
  415. for (;;) {
  416. spin_unlock(&desc->lock);
  417. handle_IRQ_event(irq, regs, action);
  418. spin_lock(&desc->lock);
  419. if (!(desc->status & IRQ_PENDING))
  420. break;
  421. desc->status &= ~IRQ_PENDING;
  422. }
  423. desc->status &= ~IRQ_INPROGRESS;
  424. out:
  425. /*
  426.  * The ->end() handler has to deal with interrupts which got
  427.  * disabled while the handler was running.
  428.  */
  429. desc->handler->end(irq);
  430. spin_unlock(&desc->lock);
  431. if (softirq_pending(cpu))
  432. do_softirq();
  433. return 1;
  434. }
  435. /**
  436.  * request_irq - allocate an interrupt line
  437.  * @irq: Interrupt line to allocate
  438.  * @handler: Function to be called when the IRQ occurs
  439.  * @irqflags: Interrupt type flags
  440.  * @devname: An ascii name for the claiming device
  441.  * @dev_id: A cookie passed back to the handler function
  442.  *
  443.  * This call allocates interrupt resources and enables the
  444.  * interrupt line and IRQ handling. From the point this
  445.  * call is made your handler function may be invoked. Since
  446.  * your handler function must clear any interrupt the board
  447.  * raises, you must take care both to initialise your hardware
  448.  * and to set up the interrupt handler in the right order.
  449.  *
  450.  * Dev_id must be globally unique. Normally the address of the
  451.  * device data structure is used as the cookie. Since the handler
  452.  * receives this value it makes sense to use it.
  453.  *
  454.  * If your interrupt is shared you must pass a non NULL dev_id
  455.  * as this is required when freeing the interrupt.
  456.  *
  457.  * Flags:
  458.  *
  459.  * SA_SHIRQ Interrupt is shared
  460.  *
  461.  * SA_INTERRUPT Disable local interrupts while processing
  462.  *
  463.  * SA_SAMPLE_RANDOM The interrupt can be used for entropy
  464.  *
  465.  */
  466. int request_irq(unsigned int irq,
  467. void (*handler)(int, void *, struct pt_regs *),
  468. unsigned long irqflags,
  469. const char * devname,
  470. void *dev_id)
  471. {
  472. int retval;
  473. struct irqaction * action;
  474. #if 1
  475. /*
  476.  * Sanity-check: shared interrupts should REALLY pass in
  477.  * a real dev-ID, otherwise we'll have trouble later trying
  478.  * to figure out which interrupt is which (messes up the
  479.  * interrupt freeing logic etc).
  480.  */
  481. if (irqflags & SA_SHIRQ) {
  482. if (!dev_id)
  483. printk("Bad boy: %s (at 0x%x) called us without a dev_id!n", devname, (&irq)[-1]);
  484. }
  485. #endif
  486. if (irq >= NR_IRQS)
  487. return -EINVAL;
  488. if (!handler)
  489. return -EINVAL;
  490. action = (struct irqaction *)
  491. kmalloc(sizeof(struct irqaction), GFP_KERNEL);
  492. if (!action)
  493. return -ENOMEM;
  494. action->handler = handler;
  495. action->flags = irqflags;
  496. action->mask = 0;
  497. action->name = devname;
  498. action->next = NULL;
  499. action->dev_id = dev_id;
  500. retval = setup_irq(irq, action);
  501. if (retval)
  502. kfree(action);
  503. return retval;
  504. }
  505. /**
  506.  * free_irq - free an interrupt
  507.  * @irq: Interrupt line to free
  508.  * @dev_id: Device identity to free
  509.  *
  510.  * Remove an interrupt handler. The handler is removed and if the
  511.  * interrupt line is no longer in use by any driver it is disabled.
  512.  * On a shared IRQ the caller must ensure the interrupt is disabled
  513.  * on the card it drives before calling this function. The function
  514.  * does not return until any executing interrupts for this IRQ
  515.  * have completed.
  516.  *
  517.  * This function may be called from interrupt context.
  518.  *
  519.  * Bugs: Attempting to free an irq in a handler for the same irq hangs
  520.  *       the machine.
  521.  */
  522. void free_irq(unsigned int irq, void *dev_id)
  523. {
  524. irq_desc_t *desc;
  525. struct irqaction **p;
  526. unsigned long flags;
  527. if (irq >= NR_IRQS)
  528. return;
  529. desc = irq_desc + irq;
  530. spin_lock_irqsave(&desc->lock,flags);
  531. p = &desc->action;
  532. for (;;) {
  533. struct irqaction * action = *p;
  534. if (action) {
  535. struct irqaction **pp = p;
  536. p = &action->next;
  537. if (action->dev_id != dev_id)
  538. continue;
  539. /* Found it - now remove it from the list of entries */
  540. *pp = action->next;
  541. if (!desc->action) {
  542. desc->status |= IRQ_DISABLED;
  543. desc->handler->shutdown(irq);
  544. }
  545. spin_unlock_irqrestore(&desc->lock,flags);
  546. #ifdef CONFIG_SMP
  547. /* Wait to make sure it's not being used on another CPU */
  548. while (desc->status & IRQ_INPROGRESS)
  549. barrier();
  550. #endif
  551. kfree(action);
  552. return;
  553. }
  554. printk("Trying to free free IRQ%dn",irq);
  555. spin_unlock_irqrestore(&desc->lock,flags);
  556. return;
  557. }
  558. }
  559. /*
  560.  * IRQ autodetection code..
  561.  *
  562.  * This depends on the fact that any interrupt that
  563.  * comes in on to an unassigned handler will get stuck
  564.  * with "IRQ_WAITING" cleared and the interrupt
  565.  * disabled.
  566.  */
  567. static DECLARE_MUTEX(probe_sem);
  568. /**
  569.  * probe_irq_on - begin an interrupt autodetect
  570.  *
  571.  * Commence probing for an interrupt. The interrupts are scanned
  572.  * and a mask of potential interrupt lines is returned.
  573.  *
  574.  */
  575. unsigned long probe_irq_on(void)
  576. {
  577. unsigned int i;
  578. irq_desc_t *desc;
  579. unsigned long val;
  580. unsigned long delay;
  581. down(&probe_sem);
  582. /*
  583.  * something may have generated an irq long ago and we want to
  584.  * flush such a longstanding irq before considering it as spurious.
  585.  */
  586. for (i = NR_IRQS-1; i > 0; i--)  {
  587. desc = irq_desc + i;
  588. spin_lock_irq(&desc->lock);
  589. if (!irq_desc[i].action)
  590. irq_desc[i].handler->startup(i);
  591. spin_unlock_irq(&desc->lock);
  592. }
  593. /* Wait for longstanding interrupts to trigger. */
  594. for (delay = jiffies + HZ/50; time_after(delay, jiffies); )
  595. /* about 20ms delay */ synchronize_irq();
  596. /*
  597.  * enable any unassigned irqs
  598.  * (we must startup again here because if a longstanding irq
  599.  * happened in the previous stage, it may have masked itself)
  600.  */
  601. for (i = NR_IRQS-1; i > 0; i--) {
  602. desc = irq_desc + i;
  603. spin_lock_irq(&desc->lock);
  604. if (!desc->action) {
  605. desc->status |= IRQ_AUTODETECT | IRQ_WAITING;
  606. if (desc->handler->startup(i))
  607. desc->status |= IRQ_PENDING;
  608. }
  609. spin_unlock_irq(&desc->lock);
  610. }
  611. /*
  612.  * Wait for spurious interrupts to trigger
  613.  */
  614. for (delay = jiffies + HZ/10; time_after(delay, jiffies); )
  615. /* about 100ms delay */ synchronize_irq();
  616. /*
  617.  * Now filter out any obviously spurious interrupts
  618.  */
  619. val = 0;
  620. for (i = 0; i < NR_IRQS; i++) {
  621. irq_desc_t *desc = irq_desc + i;
  622. unsigned int status;
  623. spin_lock_irq(&desc->lock);
  624. status = desc->status;
  625. if (status & IRQ_AUTODETECT) {
  626. /* It triggered already - consider it spurious. */
  627. if (!(status & IRQ_WAITING)) {
  628. desc->status = status & ~IRQ_AUTODETECT;
  629. desc->handler->shutdown(i);
  630. } else
  631. if (i < 32)
  632. val |= 1 << i;
  633. }
  634. spin_unlock_irq(&desc->lock);
  635. }
  636. return val;
  637. }
  638. /*
  639.  * Return a mask of triggered interrupts (this
  640.  * can handle only legacy ISA interrupts).
  641.  */
  642. /**
  643.  * probe_irq_mask - scan a bitmap of interrupt lines
  644.  * @val: mask of interrupts to consider
  645.  *
  646.  * Scan the ISA bus interrupt lines and return a bitmap of
  647.  * active interrupts. The interrupt probe logic state is then
  648.  * returned to its previous value.
  649.  *
  650.  * Note: we need to scan all the irq's even though we will
  651.  * only return ISA irq numbers - just so that we reset them
  652.  * all to a known state.
  653.  */
  654. unsigned int probe_irq_mask(unsigned long val)
  655. {
  656. int i;
  657. unsigned int mask;
  658. mask = 0;
  659. for (i = 0; i < NR_IRQS; i++) {
  660. irq_desc_t *desc = irq_desc + i;
  661. unsigned int status;
  662. spin_lock_irq(&desc->lock);
  663. status = desc->status;
  664. if (status & IRQ_AUTODETECT) {
  665. if (i < 16 && !(status & IRQ_WAITING))
  666. mask |= 1 << i;
  667. desc->status = status & ~IRQ_AUTODETECT;
  668. desc->handler->shutdown(i);
  669. }
  670. spin_unlock_irq(&desc->lock);
  671. }
  672. up(&probe_sem);
  673. return mask & val;
  674. }
  675. /*
  676.  * Return the one interrupt that triggered (this can
  677.  * handle any interrupt source).
  678.  */
  679. /**
  680.  * probe_irq_off - end an interrupt autodetect
  681.  * @val: mask of potential interrupts (unused)
  682.  *
  683.  * Scans the unused interrupt lines and returns the line which
  684.  * appears to have triggered the interrupt. If no interrupt was
  685.  * found then zero is returned. If more than one interrupt is
  686.  * found then minus the first candidate is returned to indicate
  687.  * their is doubt.
  688.  *
  689.  * The interrupt probe logic state is returned to its previous
  690.  * value.
  691.  *
  692.  * BUGS: When used in a module (which arguably shouldnt happen)
  693.  * nothing prevents two IRQ probe callers from overlapping. The
  694.  * results of this are non-optimal.
  695.  */
  696. int probe_irq_off(unsigned long val)
  697. {
  698. int i, irq_found, nr_irqs;
  699. nr_irqs = 0;
  700. irq_found = 0;
  701. for (i = 0; i < NR_IRQS; i++) {
  702. irq_desc_t *desc = irq_desc + i;
  703. unsigned int status;
  704. spin_lock_irq(&desc->lock);
  705. status = desc->status;
  706. if (status & IRQ_AUTODETECT) {
  707. if (!(status & IRQ_WAITING)) {
  708. if (!nr_irqs)
  709. irq_found = i;
  710. nr_irqs++;
  711. }
  712. desc->status = status & ~IRQ_AUTODETECT;
  713. desc->handler->shutdown(i);
  714. }
  715. spin_unlock_irq(&desc->lock);
  716. }
  717. up(&probe_sem);
  718. if (nr_irqs > 1)
  719. irq_found = -irq_found;
  720. return irq_found;
  721. }
  722. /* this was setup_x86_irq but it seems pretty generic */
  723. int setup_irq(unsigned int irq, struct irqaction * new)
  724. {
  725. int shared = 0;
  726. unsigned long flags;
  727. struct irqaction *old, **p;
  728. irq_desc_t *desc = irq_desc + irq;
  729. /*
  730.  * Some drivers like serial.c use request_irq() heavily,
  731.  * so we have to be careful not to interfere with a
  732.  * running system.
  733.  */
  734. if (new->flags & SA_SAMPLE_RANDOM) {
  735. /*
  736.  * This function might sleep, we want to call it first,
  737.  * outside of the atomic block.
  738.  * Yes, this might clear the entropy pool if the wrong
  739.  * driver is attempted to be loaded, without actually
  740.  * installing a new handler, but is this really a problem,
  741.  * only the sysadmin is able to do this.
  742.  */
  743. rand_initialize_irq(irq);
  744. }
  745. /*
  746.  * The following block of code has to be executed atomically
  747.  */
  748. spin_lock_irqsave(&desc->lock,flags);
  749. p = &desc->action;
  750. if ((old = *p) != NULL) {
  751. /* Can't share interrupts unless both agree to */
  752. if (!(old->flags & new->flags & SA_SHIRQ)) {
  753. spin_unlock_irqrestore(&desc->lock,flags);
  754. return -EBUSY;
  755. }
  756. /* add new interrupt at end of irq queue */
  757. do {
  758. p = &old->next;
  759. old = *p;
  760. } while (old);
  761. shared = 1;
  762. }
  763. *p = new;
  764. if (!shared) {
  765. desc->depth = 0;
  766. desc->status &= ~(IRQ_DISABLED | IRQ_AUTODETECT | IRQ_WAITING);
  767. desc->handler->startup(irq);
  768. }
  769. spin_unlock_irqrestore(&desc->lock,flags);
  770. register_irq_proc(irq);
  771. return 0;
  772. }
  773. void __init init_generic_irq(void)
  774. {
  775. int i;
  776. for (i = 0; i < NR_IRQS; i++) {
  777. irq_desc[i].status  = IRQ_DISABLED;
  778. irq_desc[i].action  = NULL;
  779. irq_desc[i].depth   = 1;
  780. irq_desc[i].handler = &no_irq_type;
  781. }
  782. }
  783. EXPORT_SYMBOL(disable_irq_nosync);
  784. EXPORT_SYMBOL(disable_irq);
  785. EXPORT_SYMBOL(enable_irq);
  786. EXPORT_SYMBOL(probe_irq_mask);
  787. static struct proc_dir_entry * root_irq_dir;
  788. static struct proc_dir_entry * irq_dir [NR_IRQS];
  789. #define HEX_DIGITS 8
  790. static unsigned int parse_hex_value (const char *buffer,
  791. unsigned long count, unsigned long *ret)
  792. {
  793. unsigned char hexnum [HEX_DIGITS];
  794. unsigned long value;
  795. int i;
  796. if (!count)
  797. return -EINVAL;
  798. if (count > HEX_DIGITS)
  799. count = HEX_DIGITS;
  800. if (copy_from_user(hexnum, buffer, count))
  801. return -EFAULT;
  802. /*
  803.  * Parse the first 8 characters as a hex string, any non-hex char
  804.  * is end-of-string. '00e1', 'e1', '00E1', 'E1' are all the same.
  805.  */
  806. value = 0;
  807. for (i = 0; i < count; i++) {
  808. unsigned int c = hexnum[i];
  809. switch (c) {
  810. case '0' ... '9': c -= '0'; break;
  811. case 'a' ... 'f': c -= 'a'-10; break;
  812. case 'A' ... 'F': c -= 'A'-10; break;
  813. default:
  814. goto out;
  815. }
  816. value = (value << 4) | c;
  817. }
  818. out:
  819. *ret = value;
  820. return 0;
  821. }
  822. #if CONFIG_SMP
  823. static struct proc_dir_entry * smp_affinity_entry [NR_IRQS];
  824. static unsigned long irq_affinity [NR_IRQS] = { [0 ... NR_IRQS-1] = ~0UL };
  825. static int irq_affinity_read_proc (char *page, char **start, off_t off,
  826. int count, int *eof, void *data)
  827. {
  828. if (count < HEX_DIGITS+1)
  829. return -EINVAL;
  830. return sprintf (page, "%08lxn", irq_affinity[(long)data]);
  831. }
  832. static int irq_affinity_write_proc (struct file *file, const char *buffer,
  833. unsigned long count, void *data)
  834. {
  835. int irq = (long) data, full_count = count, err;
  836. unsigned long new_value;
  837. if (!irq_desc[irq].handler->set_affinity)
  838. return -EIO;
  839. err = parse_hex_value(buffer, count, &new_value);
  840. /*
  841.  * Do not allow disabling IRQs completely - it's a too easy
  842.  * way to make the system unusable accidentally :-) At least
  843.  * one online CPU still has to be targeted.
  844.  */
  845. if (!(new_value & cpu_online_map))
  846. return -EINVAL;
  847. irq_affinity[irq] = new_value;
  848. irq_desc[irq].handler->set_affinity(irq, new_value);
  849. return full_count;
  850. }
  851. #endif
  852. static int prof_cpu_mask_read_proc (char *page, char **start, off_t off,
  853. int count, int *eof, void *data)
  854. {
  855. unsigned long *mask = (unsigned long *) data;
  856. if (count < HEX_DIGITS+1)
  857. return -EINVAL;
  858. return sprintf (page, "%08lxn", *mask);
  859. }
  860. static int prof_cpu_mask_write_proc (struct file *file, const char *buffer,
  861. unsigned long count, void *data)
  862. {
  863. unsigned long *mask = (unsigned long *) data, full_count = count, err;
  864. unsigned long new_value;
  865. err = parse_hex_value(buffer, count, &new_value);
  866. if (err)
  867. return err;
  868. *mask = new_value;
  869. return full_count;
  870. }
  871. #define MAX_NAMELEN 10
  872. static void register_irq_proc (unsigned int irq)
  873. {
  874. char name [MAX_NAMELEN];
  875. if (!root_irq_dir || (irq_desc[irq].handler == &no_irq_type) ||
  876. irq_dir[irq])
  877. return;
  878. memset(name, 0, MAX_NAMELEN);
  879. sprintf(name, "%d", irq);
  880. /* create /proc/irq/1234 */
  881. irq_dir[irq] = proc_mkdir(name, root_irq_dir);
  882. #if CONFIG_SMP
  883. {
  884. struct proc_dir_entry *entry;
  885. /* create /proc/irq/1234/smp_affinity */
  886. entry = create_proc_entry("smp_affinity", 0600, irq_dir[irq]);
  887. if (entry) {
  888. entry->nlink = 1;
  889. entry->data = (void *)(long)irq;
  890. entry->read_proc = irq_affinity_read_proc;
  891. entry->write_proc = irq_affinity_write_proc;
  892. }
  893. smp_affinity_entry[irq] = entry;
  894. }
  895. #endif
  896. }
  897. unsigned long prof_cpu_mask = -1;
  898. void init_irq_proc (void)
  899. {
  900. struct proc_dir_entry *entry;
  901. int i;
  902. /* create /proc/irq */
  903. root_irq_dir = proc_mkdir("irq", 0);
  904. /* create /proc/irq/prof_cpu_mask */
  905. entry = create_proc_entry("prof_cpu_mask", 0600, root_irq_dir);
  906. if (!entry)
  907.     return;
  908. entry->nlink = 1;
  909. entry->data = (void *)&prof_cpu_mask;
  910. entry->read_proc = prof_cpu_mask_read_proc;
  911. entry->write_proc = prof_cpu_mask_write_proc;
  912. /*
  913.  * Create entries for all existing IRQs.
  914.  */
  915. for (i = 0; i < NR_IRQS; i++)
  916. register_irq_proc(i);
  917. }