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

嵌入式Linux

开发平台:

Unix_Linux

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