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

Linux/Unix编程

开发平台:

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. #ifdef CONFIG_DEBUG_STACKOVERFLOW
  519. long esp;
  520. /* Debugging check for stack overflow: is there less than 1KB free? */
  521. __asm__ __volatile__("andl %%esp,%0" : "=r" (esp) : "0" (8191));
  522. if (unlikely(esp < (sizeof(struct task_struct) + 1024))) {
  523. extern void show_stack(unsigned long *);
  524. printk("do_IRQ: stack overflow: %ldn",
  525. esp - sizeof(struct task_struct));
  526. __asm__ __volatile__("movl %%esp,%0" : "=r" (esp));
  527. show_stack((void *)esp);
  528. }
  529. #endif
  530. kstat.irqs[cpu][irq]++;
  531. spin_lock(&desc->lock);
  532. desc->handler->ack(irq);
  533. /*
  534.    REPLAY is when Linux resends an IRQ that was dropped earlier
  535.    WAITING is used by probe to mark irqs that are being tested
  536.    */
  537. status = desc->status & ~(IRQ_REPLAY | IRQ_WAITING);
  538. status |= IRQ_PENDING; /* we _want_ to handle it */
  539. /*
  540.  * If the IRQ is disabled for whatever reason, we cannot
  541.  * use the action we have.
  542.  */
  543. action = NULL;
  544. if (!(status & (IRQ_DISABLED | IRQ_INPROGRESS))) {
  545. action = desc->action;
  546. status &= ~IRQ_PENDING; /* we commit to handling */
  547. status |= IRQ_INPROGRESS; /* we are handling it */
  548. }
  549. desc->status = status;
  550. /*
  551.  * If there is no IRQ handler or it was disabled, exit early.
  552.    Since we set PENDING, if another processor is handling
  553.    a different instance of this same irq, the other processor
  554.    will take care of it.
  555.  */
  556. if (!action)
  557. goto out;
  558. /*
  559.  * Edge triggered interrupts need to remember
  560.  * pending events.
  561.  * This applies to any hw interrupts that allow a second
  562.  * instance of the same irq to arrive while we are in do_IRQ
  563.  * or in the handler. But the code here only handles the _second_
  564.  * instance of the irq, not the third or fourth. So it is mostly
  565.  * useful for irq hardware that does not mask cleanly in an
  566.  * SMP environment.
  567.  */
  568. for (;;) {
  569. spin_unlock(&desc->lock);
  570. handle_IRQ_event(irq, &regs, action);
  571. spin_lock(&desc->lock);
  572. if (!(desc->status & IRQ_PENDING))
  573. break;
  574. desc->status &= ~IRQ_PENDING;
  575. }
  576. desc->status &= ~IRQ_INPROGRESS;
  577. out:
  578. /*
  579.  * The ->end() handler has to deal with interrupts which got
  580.  * disabled while the handler was running.
  581.  */
  582. desc->handler->end(irq);
  583. spin_unlock(&desc->lock);
  584. if (softirq_pending(cpu))
  585. do_softirq();
  586. return 1;
  587. }
  588. /**
  589.  * request_irq - allocate an interrupt line
  590.  * @irq: Interrupt line to allocate
  591.  * @handler: Function to be called when the IRQ occurs
  592.  * @irqflags: Interrupt type flags
  593.  * @devname: An ascii name for the claiming device
  594.  * @dev_id: A cookie passed back to the handler function
  595.  *
  596.  * This call allocates interrupt resources and enables the
  597.  * interrupt line and IRQ handling. From the point this
  598.  * call is made your handler function may be invoked. Since
  599.  * your handler function must clear any interrupt the board 
  600.  * raises, you must take care both to initialise your hardware
  601.  * and to set up the interrupt handler in the right order.
  602.  *
  603.  * Dev_id must be globally unique. Normally the address of the
  604.  * device data structure is used as the cookie. Since the handler
  605.  * receives this value it makes sense to use it.
  606.  *
  607.  * If your interrupt is shared you must pass a non NULL dev_id
  608.  * as this is required when freeing the interrupt.
  609.  *
  610.  * Flags:
  611.  *
  612.  * SA_SHIRQ Interrupt is shared
  613.  *
  614.  * SA_INTERRUPT Disable local interrupts while processing
  615.  *
  616.  * SA_SAMPLE_RANDOM The interrupt can be used for entropy
  617.  *
  618.  */
  619.  
  620. int request_irq(unsigned int irq, 
  621. void (*handler)(int, void *, struct pt_regs *),
  622. unsigned long irqflags, 
  623. const char * devname,
  624. void *dev_id)
  625. {
  626. int retval;
  627. struct irqaction * action;
  628. #if 1
  629. /*
  630.  * Sanity-check: shared interrupts should REALLY pass in
  631.  * a real dev-ID, otherwise we'll have trouble later trying
  632.  * to figure out which interrupt is which (messes up the
  633.  * interrupt freeing logic etc).
  634.  */
  635. if (irqflags & SA_SHIRQ) {
  636. if (!dev_id)
  637. printk("Bad boy: %s (at 0x%x) called us without a dev_id!n", devname, (&irq)[-1]);
  638. }
  639. #endif
  640. if (irq >= NR_IRQS)
  641. return -EINVAL;
  642. if (!handler)
  643. return -EINVAL;
  644. action = (struct irqaction *)
  645. kmalloc(sizeof(struct irqaction), GFP_KERNEL);
  646. if (!action)
  647. return -ENOMEM;
  648. action->handler = handler;
  649. action->flags = irqflags;
  650. action->mask = 0;
  651. action->name = devname;
  652. action->next = NULL;
  653. action->dev_id = dev_id;
  654. retval = setup_irq(irq, action);
  655. if (retval)
  656. kfree(action);
  657. return retval;
  658. }
  659. /**
  660.  * free_irq - free an interrupt
  661.  * @irq: Interrupt line to free
  662.  * @dev_id: Device identity to free
  663.  *
  664.  * Remove an interrupt handler. The handler is removed and if the
  665.  * interrupt line is no longer in use by any driver it is disabled.
  666.  * On a shared IRQ the caller must ensure the interrupt is disabled
  667.  * on the card it drives before calling this function. The function
  668.  * does not return until any executing interrupts for this IRQ
  669.  * have completed.
  670.  *
  671.  * This function may be called from interrupt context. 
  672.  *
  673.  * Bugs: Attempting to free an irq in a handler for the same irq hangs
  674.  *       the machine.
  675.  */
  676.  
  677. void free_irq(unsigned int irq, void *dev_id)
  678. {
  679. irq_desc_t *desc;
  680. struct irqaction **p;
  681. unsigned long flags;
  682. if (irq >= NR_IRQS)
  683. return;
  684. desc = irq_desc + irq;
  685. spin_lock_irqsave(&desc->lock,flags);
  686. p = &desc->action;
  687. for (;;) {
  688. struct irqaction * action = *p;
  689. if (action) {
  690. struct irqaction **pp = p;
  691. p = &action->next;
  692. if (action->dev_id != dev_id)
  693. continue;
  694. /* Found it - now remove it from the list of entries */
  695. *pp = action->next;
  696. if (!desc->action) {
  697. desc->status |= IRQ_DISABLED;
  698. desc->handler->shutdown(irq);
  699. }
  700. spin_unlock_irqrestore(&desc->lock,flags);
  701. #ifdef CONFIG_SMP
  702. /* Wait to make sure it's not being used on another CPU */
  703. while (desc->status & IRQ_INPROGRESS) {
  704. barrier();
  705. cpu_relax();
  706. }
  707. #endif
  708. kfree(action);
  709. return;
  710. }
  711. printk("Trying to free free IRQ%dn",irq);
  712. spin_unlock_irqrestore(&desc->lock,flags);
  713. return;
  714. }
  715. }
  716. /*
  717.  * IRQ autodetection code..
  718.  *
  719.  * This depends on the fact that any interrupt that
  720.  * comes in on to an unassigned handler will get stuck
  721.  * with "IRQ_WAITING" cleared and the interrupt
  722.  * disabled.
  723.  */
  724. static DECLARE_MUTEX(probe_sem);
  725. /**
  726.  * probe_irq_on - begin an interrupt autodetect
  727.  *
  728.  * Commence probing for an interrupt. The interrupts are scanned
  729.  * and a mask of potential interrupt lines is returned.
  730.  *
  731.  */
  732.  
  733. unsigned long probe_irq_on(void)
  734. {
  735. unsigned int i;
  736. irq_desc_t *desc;
  737. unsigned long val;
  738. unsigned long delay;
  739. down(&probe_sem);
  740. /* 
  741.  * something may have generated an irq long ago and we want to
  742.  * flush such a longstanding irq before considering it as spurious. 
  743.  */
  744. for (i = NR_IRQS-1; i > 0; i--)  {
  745. desc = irq_desc + i;
  746. spin_lock_irq(&desc->lock);
  747. if (!irq_desc[i].action) 
  748. irq_desc[i].handler->startup(i);
  749. spin_unlock_irq(&desc->lock);
  750. }
  751. /* Wait for longstanding interrupts to trigger. */
  752. for (delay = jiffies + HZ/50; time_after(delay, jiffies); )
  753. /* about 20ms delay */ synchronize_irq();
  754. /*
  755.  * enable any unassigned irqs
  756.  * (we must startup again here because if a longstanding irq
  757.  * happened in the previous stage, it may have masked itself)
  758.  */
  759. for (i = NR_IRQS-1; i > 0; i--) {
  760. desc = irq_desc + i;
  761. spin_lock_irq(&desc->lock);
  762. if (!desc->action) {
  763. desc->status |= IRQ_AUTODETECT | IRQ_WAITING;
  764. if (desc->handler->startup(i))
  765. desc->status |= IRQ_PENDING;
  766. }
  767. spin_unlock_irq(&desc->lock);
  768. }
  769. /*
  770.  * Wait for spurious interrupts to trigger
  771.  */
  772. for (delay = jiffies + HZ/10; time_after(delay, jiffies); )
  773. /* about 100ms delay */ synchronize_irq();
  774. /*
  775.  * Now filter out any obviously spurious interrupts
  776.  */
  777. val = 0;
  778. for (i = 0; i < NR_IRQS; i++) {
  779. irq_desc_t *desc = irq_desc + i;
  780. unsigned int status;
  781. spin_lock_irq(&desc->lock);
  782. status = desc->status;
  783. if (status & IRQ_AUTODETECT) {
  784. /* It triggered already - consider it spurious. */
  785. if (!(status & IRQ_WAITING)) {
  786. desc->status = status & ~IRQ_AUTODETECT;
  787. desc->handler->shutdown(i);
  788. } else
  789. if (i < 32)
  790. val |= 1 << i;
  791. }
  792. spin_unlock_irq(&desc->lock);
  793. }
  794. return val;
  795. }
  796. /*
  797.  * Return a mask of triggered interrupts (this
  798.  * can handle only legacy ISA interrupts).
  799.  */
  800.  
  801. /**
  802.  * probe_irq_mask - scan a bitmap of interrupt lines
  803.  * @val: mask of interrupts to consider
  804.  *
  805.  * Scan the ISA bus interrupt lines and return a bitmap of
  806.  * active interrupts. The interrupt probe logic state is then
  807.  * returned to its previous value.
  808.  *
  809.  * Note: we need to scan all the irq's even though we will
  810.  * only return ISA irq numbers - just so that we reset them
  811.  * all to a known state.
  812.  */
  813. unsigned int probe_irq_mask(unsigned long val)
  814. {
  815. int i;
  816. unsigned int mask;
  817. mask = 0;
  818. for (i = 0; i < NR_IRQS; i++) {
  819. irq_desc_t *desc = irq_desc + i;
  820. unsigned int status;
  821. spin_lock_irq(&desc->lock);
  822. status = desc->status;
  823. if (status & IRQ_AUTODETECT) {
  824. if (i < 16 && !(status & IRQ_WAITING))
  825. mask |= 1 << i;
  826. desc->status = status & ~IRQ_AUTODETECT;
  827. desc->handler->shutdown(i);
  828. }
  829. spin_unlock_irq(&desc->lock);
  830. }
  831. up(&probe_sem);
  832. return mask & val;
  833. }
  834. /*
  835.  * Return the one interrupt that triggered (this can
  836.  * handle any interrupt source).
  837.  */
  838. /**
  839.  * probe_irq_off - end an interrupt autodetect
  840.  * @val: mask of potential interrupts (unused)
  841.  *
  842.  * Scans the unused interrupt lines and returns the line which
  843.  * appears to have triggered the interrupt. If no interrupt was
  844.  * found then zero is returned. If more than one interrupt is
  845.  * found then minus the first candidate is returned to indicate
  846.  * their is doubt.
  847.  *
  848.  * The interrupt probe logic state is returned to its previous
  849.  * value.
  850.  *
  851.  * BUGS: When used in a module (which arguably shouldnt happen)
  852.  * nothing prevents two IRQ probe callers from overlapping. The
  853.  * results of this are non-optimal.
  854.  */
  855.  
  856. int probe_irq_off(unsigned long val)
  857. {
  858. int i, irq_found, nr_irqs;
  859. nr_irqs = 0;
  860. irq_found = 0;
  861. for (i = 0; i < NR_IRQS; i++) {
  862. irq_desc_t *desc = irq_desc + i;
  863. unsigned int status;
  864. spin_lock_irq(&desc->lock);
  865. status = desc->status;
  866. if (status & IRQ_AUTODETECT) {
  867. if (!(status & IRQ_WAITING)) {
  868. if (!nr_irqs)
  869. irq_found = i;
  870. nr_irqs++;
  871. }
  872. desc->status = status & ~IRQ_AUTODETECT;
  873. desc->handler->shutdown(i);
  874. }
  875. spin_unlock_irq(&desc->lock);
  876. }
  877. up(&probe_sem);
  878. if (nr_irqs > 1)
  879. irq_found = -irq_found;
  880. return irq_found;
  881. }
  882. /* this was setup_x86_irq but it seems pretty generic */
  883. int setup_irq(unsigned int irq, struct irqaction * new)
  884. {
  885. int shared = 0;
  886. unsigned long flags;
  887. struct irqaction *old, **p;
  888. irq_desc_t *desc = irq_desc + irq;
  889. /*
  890.  * Some drivers like serial.c use request_irq() heavily,
  891.  * so we have to be careful not to interfere with a
  892.  * running system.
  893.  */
  894. if (new->flags & SA_SAMPLE_RANDOM) {
  895. /*
  896.  * This function might sleep, we want to call it first,
  897.  * outside of the atomic block.
  898.  * Yes, this might clear the entropy pool if the wrong
  899.  * driver is attempted to be loaded, without actually
  900.  * installing a new handler, but is this really a problem,
  901.  * only the sysadmin is able to do this.
  902.  */
  903. rand_initialize_irq(irq);
  904. }
  905. /*
  906.  * The following block of code has to be executed atomically
  907.  */
  908. spin_lock_irqsave(&desc->lock,flags);
  909. p = &desc->action;
  910. if ((old = *p) != NULL) {
  911. /* Can't share interrupts unless both agree to */
  912. if (!(old->flags & new->flags & SA_SHIRQ)) {
  913. spin_unlock_irqrestore(&desc->lock,flags);
  914. return -EBUSY;
  915. }
  916. /* add new interrupt at end of irq queue */
  917. do {
  918. p = &old->next;
  919. old = *p;
  920. } while (old);
  921. shared = 1;
  922. }
  923. *p = new;
  924. if (!shared) {
  925. desc->depth = 0;
  926. desc->status &= ~(IRQ_DISABLED | IRQ_AUTODETECT | IRQ_WAITING);
  927. desc->handler->startup(irq);
  928. }
  929. spin_unlock_irqrestore(&desc->lock,flags);
  930. register_irq_proc(irq);
  931. return 0;
  932. }
  933. static struct proc_dir_entry * root_irq_dir;
  934. static struct proc_dir_entry * irq_dir [NR_IRQS];
  935. #define HEX_DIGITS 8
  936. static unsigned int parse_hex_value (const char *buffer,
  937. unsigned long count, unsigned long *ret)
  938. {
  939. unsigned char hexnum [HEX_DIGITS];
  940. unsigned long value;
  941. int i;
  942. if (!count)
  943. return -EINVAL;
  944. if (count > HEX_DIGITS)
  945. count = HEX_DIGITS;
  946. if (copy_from_user(hexnum, buffer, count))
  947. return -EFAULT;
  948. /*
  949.  * Parse the first 8 characters as a hex string, any non-hex char
  950.  * is end-of-string. '00e1', 'e1', '00E1', 'E1' are all the same.
  951.  */
  952. value = 0;
  953. for (i = 0; i < count; i++) {
  954. unsigned int c = hexnum[i];
  955. switch (c) {
  956. case '0' ... '9': c -= '0'; break;
  957. case 'a' ... 'f': c -= 'a'-10; break;
  958. case 'A' ... 'F': c -= 'A'-10; break;
  959. default:
  960. goto out;
  961. }
  962. value = (value << 4) | c;
  963. }
  964. out:
  965. *ret = value;
  966. return 0;
  967. }
  968. #if CONFIG_SMP
  969. static struct proc_dir_entry * smp_affinity_entry [NR_IRQS];
  970. static unsigned long irq_affinity [NR_IRQS] = { [0 ... NR_IRQS-1] = ~0UL };
  971. static int irq_affinity_read_proc (char *page, char **start, off_t off,
  972. int count, int *eof, void *data)
  973. {
  974. if (count < HEX_DIGITS+1)
  975. return -EINVAL;
  976. return sprintf (page, "%08lxn", irq_affinity[(long)data]);
  977. }
  978. static int irq_affinity_write_proc (struct file *file, const char *buffer,
  979. unsigned long count, void *data)
  980. {
  981. int irq = (long) data, full_count = count, err;
  982. unsigned long new_value;
  983. if (!irq_desc[irq].handler->set_affinity)
  984. return -EIO;
  985. err = parse_hex_value(buffer, count, &new_value);
  986. /*
  987.  * Do not allow disabling IRQs completely - it's a too easy
  988.  * way to make the system unusable accidentally :-) At least
  989.  * one online CPU still has to be targeted.
  990.  */
  991. if (!(new_value & cpu_online_map))
  992. return -EINVAL;
  993. irq_affinity[irq] = new_value;
  994. irq_desc[irq].handler->set_affinity(irq, new_value);
  995. return full_count;
  996. }
  997. #endif
  998. static int prof_cpu_mask_read_proc (char *page, char **start, off_t off,
  999. int count, int *eof, void *data)
  1000. {
  1001. unsigned long *mask = (unsigned long *) data;
  1002. if (count < HEX_DIGITS+1)
  1003. return -EINVAL;
  1004. return sprintf (page, "%08lxn", *mask);
  1005. }
  1006. static int prof_cpu_mask_write_proc (struct file *file, const char *buffer,
  1007. unsigned long count, void *data)
  1008. {
  1009. unsigned long *mask = (unsigned long *) data, full_count = count, err;
  1010. unsigned long new_value;
  1011. err = parse_hex_value(buffer, count, &new_value);
  1012. if (err)
  1013. return err;
  1014. *mask = new_value;
  1015. return full_count;
  1016. }
  1017. #define MAX_NAMELEN 10
  1018. static void register_irq_proc (unsigned int irq)
  1019. {
  1020. char name [MAX_NAMELEN];
  1021. if (!root_irq_dir || (irq_desc[irq].handler == &no_irq_type) ||
  1022. irq_dir[irq])
  1023. return;
  1024. memset(name, 0, MAX_NAMELEN);
  1025. sprintf(name, "%d", irq);
  1026. /* create /proc/irq/1234 */
  1027. irq_dir[irq] = proc_mkdir(name, root_irq_dir);
  1028. #if CONFIG_SMP
  1029. {
  1030. struct proc_dir_entry *entry;
  1031. /* create /proc/irq/1234/smp_affinity */
  1032. entry = create_proc_entry("smp_affinity", 0600, irq_dir[irq]);
  1033. if (entry) {
  1034. entry->nlink = 1;
  1035. entry->data = (void *)(long)irq;
  1036. entry->read_proc = irq_affinity_read_proc;
  1037. entry->write_proc = irq_affinity_write_proc;
  1038. }
  1039. smp_affinity_entry[irq] = entry;
  1040. }
  1041. #endif
  1042. }
  1043. unsigned long prof_cpu_mask = -1;
  1044. void init_irq_proc (void)
  1045. {
  1046. struct proc_dir_entry *entry;
  1047. int i;
  1048. /* create /proc/irq */
  1049. root_irq_dir = proc_mkdir("irq", 0);
  1050. /* create /proc/irq/prof_cpu_mask */
  1051. entry = create_proc_entry("prof_cpu_mask", 0600, root_irq_dir);
  1052. if (!entry)
  1053.     return;
  1054. entry->nlink = 1;
  1055. entry->data = (void *)&prof_cpu_mask;
  1056. entry->read_proc = prof_cpu_mask_read_proc;
  1057. entry->write_proc = prof_cpu_mask_write_proc;
  1058. /*
  1059.  * Create entries for all existing IRQs.
  1060.  */
  1061. for (i = 0; i < NR_IRQS; i++)
  1062. register_irq_proc(i);
  1063. }