Kernel bump from 4.1.3-rt to 4.1.7-rt.
[kvmfornfv.git] / kernel / include / linux / interrupt.h
1 /* interrupt.h */
2 #ifndef _LINUX_INTERRUPT_H
3 #define _LINUX_INTERRUPT_H
4
5 #include <linux/kernel.h>
6 #include <linux/linkage.h>
7 #include <linux/bitops.h>
8 #include <linux/preempt.h>
9 #include <linux/cpumask.h>
10 #include <linux/irqreturn.h>
11 #include <linux/irqnr.h>
12 #include <linux/hardirq.h>
13 #include <linux/irqflags.h>
14 #include <linux/hrtimer.h>
15 #include <linux/kref.h>
16 #include <linux/workqueue.h>
17
18 #include <linux/atomic.h>
19 #include <asm/ptrace.h>
20 #include <asm/irq.h>
21
22 /*
23  * These correspond to the IORESOURCE_IRQ_* defines in
24  * linux/ioport.h to select the interrupt line behaviour.  When
25  * requesting an interrupt without specifying a IRQF_TRIGGER, the
26  * setting should be assumed to be "as already configured", which
27  * may be as per machine or firmware initialisation.
28  */
29 #define IRQF_TRIGGER_NONE       0x00000000
30 #define IRQF_TRIGGER_RISING     0x00000001
31 #define IRQF_TRIGGER_FALLING    0x00000002
32 #define IRQF_TRIGGER_HIGH       0x00000004
33 #define IRQF_TRIGGER_LOW        0x00000008
34 #define IRQF_TRIGGER_MASK       (IRQF_TRIGGER_HIGH | IRQF_TRIGGER_LOW | \
35                                  IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING)
36 #define IRQF_TRIGGER_PROBE      0x00000010
37
38 /*
39  * These flags used only by the kernel as part of the
40  * irq handling routines.
41  *
42  * IRQF_SHARED - allow sharing the irq among several devices
43  * IRQF_PROBE_SHARED - set by callers when they expect sharing mismatches to occur
44  * IRQF_TIMER - Flag to mark this interrupt as timer interrupt
45  * IRQF_PERCPU - Interrupt is per cpu
46  * IRQF_NOBALANCING - Flag to exclude this interrupt from irq balancing
47  * IRQF_IRQPOLL - Interrupt is used for polling (only the interrupt that is
48  *                registered first in an shared interrupt is considered for
49  *                performance reasons)
50  * IRQF_ONESHOT - Interrupt is not reenabled after the hardirq handler finished.
51  *                Used by threaded interrupts which need to keep the
52  *                irq line disabled until the threaded handler has been run.
53  * IRQF_NO_SUSPEND - Do not disable this IRQ during suspend.  Does not guarantee
54  *                   that this interrupt will wake the system from a suspended
55  *                   state.  See Documentation/power/suspend-and-interrupts.txt
56  * IRQF_FORCE_RESUME - Force enable it on resume even if IRQF_NO_SUSPEND is set
57  * IRQF_NO_THREAD - Interrupt cannot be threaded
58  * IRQF_EARLY_RESUME - Resume IRQ early during syscore instead of at device
59  *                resume time.
60  * IRQF_COND_SUSPEND - If the IRQ is shared with a NO_SUSPEND user, execute this
61  *                interrupt handler after suspending interrupts. For system
62  *                wakeup devices users need to implement wakeup detection in
63  *                their interrupt handlers.
64  * IRQF_NO_SOFTIRQ_CALL - Do not process softirqs in the irq thread context (RT)
65  */
66 #define IRQF_SHARED             0x00000080
67 #define IRQF_PROBE_SHARED       0x00000100
68 #define __IRQF_TIMER            0x00000200
69 #define IRQF_PERCPU             0x00000400
70 #define IRQF_NOBALANCING        0x00000800
71 #define IRQF_IRQPOLL            0x00001000
72 #define IRQF_ONESHOT            0x00002000
73 #define IRQF_NO_SUSPEND         0x00004000
74 #define IRQF_FORCE_RESUME       0x00008000
75 #define IRQF_NO_THREAD          0x00010000
76 #define IRQF_EARLY_RESUME       0x00020000
77 #define IRQF_COND_SUSPEND       0x00040000
78 #define IRQF_NO_SOFTIRQ_CALL    0x00080000
79
80 #define IRQF_TIMER              (__IRQF_TIMER | IRQF_NO_SUSPEND | IRQF_NO_THREAD)
81
82 /*
83  * These values can be returned by request_any_context_irq() and
84  * describe the context the interrupt will be run in.
85  *
86  * IRQC_IS_HARDIRQ - interrupt runs in hardirq context
87  * IRQC_IS_NESTED - interrupt runs in a nested threaded context
88  */
89 enum {
90         IRQC_IS_HARDIRQ = 0,
91         IRQC_IS_NESTED,
92 };
93
94 typedef irqreturn_t (*irq_handler_t)(int, void *);
95
96 /**
97  * struct irqaction - per interrupt action descriptor
98  * @handler:    interrupt handler function
99  * @name:       name of the device
100  * @dev_id:     cookie to identify the device
101  * @percpu_dev_id:      cookie to identify the device
102  * @next:       pointer to the next irqaction for shared interrupts
103  * @irq:        interrupt number
104  * @flags:      flags (see IRQF_* above)
105  * @thread_fn:  interrupt handler function for threaded interrupts
106  * @thread:     thread pointer for threaded interrupts
107  * @secondary:  pointer to secondary irqaction (force threading)
108  * @thread_flags:       flags related to @thread
109  * @thread_mask:        bitmask for keeping track of @thread activity
110  * @dir:        pointer to the proc/irq/NN/name entry
111  */
112 struct irqaction {
113         irq_handler_t           handler;
114         void                    *dev_id;
115         void __percpu           *percpu_dev_id;
116         struct irqaction        *next;
117         irq_handler_t           thread_fn;
118         struct task_struct      *thread;
119         struct irqaction        *secondary;
120         unsigned int            irq;
121         unsigned int            flags;
122         unsigned long           thread_flags;
123         unsigned long           thread_mask;
124         const char              *name;
125         struct proc_dir_entry   *dir;
126 } ____cacheline_internodealigned_in_smp;
127
128 extern irqreturn_t no_action(int cpl, void *dev_id);
129
130 extern int __must_check
131 request_threaded_irq(unsigned int irq, irq_handler_t handler,
132                      irq_handler_t thread_fn,
133                      unsigned long flags, const char *name, void *dev);
134
135 static inline int __must_check
136 request_irq(unsigned int irq, irq_handler_t handler, unsigned long flags,
137             const char *name, void *dev)
138 {
139         return request_threaded_irq(irq, handler, NULL, flags, name, dev);
140 }
141
142 extern int __must_check
143 request_any_context_irq(unsigned int irq, irq_handler_t handler,
144                         unsigned long flags, const char *name, void *dev_id);
145
146 extern int __must_check
147 request_percpu_irq(unsigned int irq, irq_handler_t handler,
148                    const char *devname, void __percpu *percpu_dev_id);
149
150 extern void free_irq(unsigned int, void *);
151 extern void free_percpu_irq(unsigned int, void __percpu *);
152
153 struct device;
154
155 extern int __must_check
156 devm_request_threaded_irq(struct device *dev, unsigned int irq,
157                           irq_handler_t handler, irq_handler_t thread_fn,
158                           unsigned long irqflags, const char *devname,
159                           void *dev_id);
160
161 static inline int __must_check
162 devm_request_irq(struct device *dev, unsigned int irq, irq_handler_t handler,
163                  unsigned long irqflags, const char *devname, void *dev_id)
164 {
165         return devm_request_threaded_irq(dev, irq, handler, NULL, irqflags,
166                                          devname, dev_id);
167 }
168
169 extern int __must_check
170 devm_request_any_context_irq(struct device *dev, unsigned int irq,
171                  irq_handler_t handler, unsigned long irqflags,
172                  const char *devname, void *dev_id);
173
174 extern void devm_free_irq(struct device *dev, unsigned int irq, void *dev_id);
175
176 /*
177  * On lockdep we dont want to enable hardirqs in hardirq
178  * context. Use local_irq_enable_in_hardirq() to annotate
179  * kernel code that has to do this nevertheless (pretty much
180  * the only valid case is for old/broken hardware that is
181  * insanely slow).
182  *
183  * NOTE: in theory this might break fragile code that relies
184  * on hardirq delivery - in practice we dont seem to have such
185  * places left. So the only effect should be slightly increased
186  * irqs-off latencies.
187  */
188 #ifdef CONFIG_LOCKDEP
189 # define local_irq_enable_in_hardirq()  do { } while (0)
190 #else
191 # define local_irq_enable_in_hardirq()  local_irq_enable_nort()
192 #endif
193
194 extern void disable_irq_nosync(unsigned int irq);
195 extern bool disable_hardirq(unsigned int irq);
196 extern void disable_irq(unsigned int irq);
197 extern void disable_percpu_irq(unsigned int irq);
198 extern void enable_irq(unsigned int irq);
199 extern void enable_percpu_irq(unsigned int irq, unsigned int type);
200 extern void irq_wake_thread(unsigned int irq, void *dev_id);
201
202 /* The following three functions are for the core kernel use only. */
203 extern void suspend_device_irqs(void);
204 extern void resume_device_irqs(void);
205
206 /**
207  * struct irq_affinity_notify - context for notification of IRQ affinity changes
208  * @irq:                Interrupt to which notification applies
209  * @kref:               Reference count, for internal use
210  * @work:               Work item, for internal use
211  * @notify:             Function to be called on change.  This will be
212  *                      called in process context.
213  * @release:            Function to be called on release.  This will be
214  *                      called in process context.  Once registered, the
215  *                      structure must only be freed when this function is
216  *                      called or later.
217  */
218 struct irq_affinity_notify {
219         unsigned int irq;
220         struct kref kref;
221         struct work_struct work;
222         struct list_head list;
223         void (*notify)(struct irq_affinity_notify *, const cpumask_t *mask);
224         void (*release)(struct kref *ref);
225 };
226
227 #if defined(CONFIG_SMP)
228
229 extern cpumask_var_t irq_default_affinity;
230
231 /* Internal implementation. Use the helpers below */
232 extern int __irq_set_affinity(unsigned int irq, const struct cpumask *cpumask,
233                               bool force);
234
235 /**
236  * irq_set_affinity - Set the irq affinity of a given irq
237  * @irq:        Interrupt to set affinity
238  * @cpumask:    cpumask
239  *
240  * Fails if cpumask does not contain an online CPU
241  */
242 static inline int
243 irq_set_affinity(unsigned int irq, const struct cpumask *cpumask)
244 {
245         return __irq_set_affinity(irq, cpumask, false);
246 }
247
248 /**
249  * irq_force_affinity - Force the irq affinity of a given irq
250  * @irq:        Interrupt to set affinity
251  * @cpumask:    cpumask
252  *
253  * Same as irq_set_affinity, but without checking the mask against
254  * online cpus.
255  *
256  * Solely for low level cpu hotplug code, where we need to make per
257  * cpu interrupts affine before the cpu becomes online.
258  */
259 static inline int
260 irq_force_affinity(unsigned int irq, const struct cpumask *cpumask)
261 {
262         return __irq_set_affinity(irq, cpumask, true);
263 }
264
265 extern int irq_can_set_affinity(unsigned int irq);
266 extern int irq_select_affinity(unsigned int irq);
267
268 extern int irq_set_affinity_hint(unsigned int irq, const struct cpumask *m);
269
270 extern int
271 irq_set_affinity_notifier(unsigned int irq, struct irq_affinity_notify *notify);
272
273 #else /* CONFIG_SMP */
274
275 static inline int irq_set_affinity(unsigned int irq, const struct cpumask *m)
276 {
277         return -EINVAL;
278 }
279
280 static inline int irq_force_affinity(unsigned int irq, const struct cpumask *cpumask)
281 {
282         return 0;
283 }
284
285 static inline int irq_can_set_affinity(unsigned int irq)
286 {
287         return 0;
288 }
289
290 static inline int irq_select_affinity(unsigned int irq)  { return 0; }
291
292 static inline int irq_set_affinity_hint(unsigned int irq,
293                                         const struct cpumask *m)
294 {
295         return -EINVAL;
296 }
297
298 static inline int
299 irq_set_affinity_notifier(unsigned int irq, struct irq_affinity_notify *notify)
300 {
301         return 0;
302 }
303 #endif /* CONFIG_SMP */
304
305 /*
306  * Special lockdep variants of irq disabling/enabling.
307  * These should be used for locking constructs that
308  * know that a particular irq context which is disabled,
309  * and which is the only irq-context user of a lock,
310  * that it's safe to take the lock in the irq-disabled
311  * section without disabling hardirqs.
312  *
313  * On !CONFIG_LOCKDEP they are equivalent to the normal
314  * irq disable/enable methods.
315  */
316 static inline void disable_irq_nosync_lockdep(unsigned int irq)
317 {
318         disable_irq_nosync(irq);
319 #ifdef CONFIG_LOCKDEP
320         local_irq_disable();
321 #endif
322 }
323
324 static inline void disable_irq_nosync_lockdep_irqsave(unsigned int irq, unsigned long *flags)
325 {
326         disable_irq_nosync(irq);
327 #ifdef CONFIG_LOCKDEP
328         local_irq_save(*flags);
329 #endif
330 }
331
332 static inline void disable_irq_lockdep(unsigned int irq)
333 {
334         disable_irq(irq);
335 #ifdef CONFIG_LOCKDEP
336         local_irq_disable();
337 #endif
338 }
339
340 static inline void enable_irq_lockdep(unsigned int irq)
341 {
342 #ifdef CONFIG_LOCKDEP
343         local_irq_enable();
344 #endif
345         enable_irq(irq);
346 }
347
348 static inline void enable_irq_lockdep_irqrestore(unsigned int irq, unsigned long *flags)
349 {
350 #ifdef CONFIG_LOCKDEP
351         local_irq_restore(*flags);
352 #endif
353         enable_irq(irq);
354 }
355
356 /* IRQ wakeup (PM) control: */
357 extern int irq_set_irq_wake(unsigned int irq, unsigned int on);
358
359 static inline int enable_irq_wake(unsigned int irq)
360 {
361         return irq_set_irq_wake(irq, 1);
362 }
363
364 static inline int disable_irq_wake(unsigned int irq)
365 {
366         return irq_set_irq_wake(irq, 0);
367 }
368
369 /*
370  * irq_get_irqchip_state/irq_set_irqchip_state specific flags
371  */
372 enum irqchip_irq_state {
373         IRQCHIP_STATE_PENDING,          /* Is interrupt pending? */
374         IRQCHIP_STATE_ACTIVE,           /* Is interrupt in progress? */
375         IRQCHIP_STATE_MASKED,           /* Is interrupt masked? */
376         IRQCHIP_STATE_LINE_LEVEL,       /* Is IRQ line high? */
377 };
378
379 extern int irq_get_irqchip_state(unsigned int irq, enum irqchip_irq_state which,
380                                  bool *state);
381 extern int irq_set_irqchip_state(unsigned int irq, enum irqchip_irq_state which,
382                                  bool state);
383
384 #ifdef CONFIG_IRQ_FORCED_THREADING
385 # ifndef CONFIG_PREEMPT_RT_BASE
386 extern bool force_irqthreads;
387 # else
388 #  define force_irqthreads      (true)
389 # endif
390 #else
391 #define force_irqthreads        (false)
392 #endif
393
394 #ifndef __ARCH_SET_SOFTIRQ_PENDING
395 #define set_softirq_pending(x) (local_softirq_pending() = (x))
396 #define or_softirq_pending(x)  (local_softirq_pending() |= (x))
397 #endif
398
399 /* Some architectures might implement lazy enabling/disabling of
400  * interrupts. In some cases, such as stop_machine, we might want
401  * to ensure that after a local_irq_disable(), interrupts have
402  * really been disabled in hardware. Such architectures need to
403  * implement the following hook.
404  */
405 #ifndef hard_irq_disable
406 #define hard_irq_disable()      do { } while(0)
407 #endif
408
409 /* PLEASE, avoid to allocate new softirqs, if you need not _really_ high
410    frequency threaded job scheduling. For almost all the purposes
411    tasklets are more than enough. F.e. all serial device BHs et
412    al. should be converted to tasklets, not to softirqs.
413  */
414
415 enum
416 {
417         HI_SOFTIRQ=0,
418         TIMER_SOFTIRQ,
419         NET_TX_SOFTIRQ,
420         NET_RX_SOFTIRQ,
421         BLOCK_SOFTIRQ,
422         BLOCK_IOPOLL_SOFTIRQ,
423         TASKLET_SOFTIRQ,
424         SCHED_SOFTIRQ,
425         HRTIMER_SOFTIRQ,
426         RCU_SOFTIRQ,    /* Preferable RCU should always be the last softirq */
427
428         NR_SOFTIRQS
429 };
430
431 #define SOFTIRQ_STOP_IDLE_MASK (~(1 << RCU_SOFTIRQ))
432
433 /* map softirq index to softirq name. update 'softirq_to_name' in
434  * kernel/softirq.c when adding a new softirq.
435  */
436 extern const char * const softirq_to_name[NR_SOFTIRQS];
437
438 /* softirq mask and active fields moved to irq_cpustat_t in
439  * asm/hardirq.h to get better cache usage.  KAO
440  */
441
442 struct softirq_action
443 {
444         void    (*action)(struct softirq_action *);
445 };
446
447 #ifndef CONFIG_PREEMPT_RT_FULL
448 asmlinkage void do_softirq(void);
449 asmlinkage void __do_softirq(void);
450 static inline void thread_do_softirq(void) { do_softirq(); }
451 #ifdef __ARCH_HAS_DO_SOFTIRQ
452 void do_softirq_own_stack(void);
453 #else
454 static inline void do_softirq_own_stack(void)
455 {
456         __do_softirq();
457 }
458 #endif
459 #else
460 extern void thread_do_softirq(void);
461 #endif
462
463 extern void open_softirq(int nr, void (*action)(struct softirq_action *));
464 extern void softirq_init(void);
465 extern void __raise_softirq_irqoff(unsigned int nr);
466
467 extern void raise_softirq_irqoff(unsigned int nr);
468 extern void raise_softirq(unsigned int nr);
469 extern void softirq_check_pending_idle(void);
470
471 DECLARE_PER_CPU(struct task_struct *, ksoftirqd);
472
473 static inline struct task_struct *this_cpu_ksoftirqd(void)
474 {
475         return this_cpu_read(ksoftirqd);
476 }
477
478 /* Tasklets --- multithreaded analogue of BHs.
479
480    Main feature differing them of generic softirqs: tasklet
481    is running only on one CPU simultaneously.
482
483    Main feature differing them of BHs: different tasklets
484    may be run simultaneously on different CPUs.
485
486    Properties:
487    * If tasklet_schedule() is called, then tasklet is guaranteed
488      to be executed on some cpu at least once after this.
489    * If the tasklet is already scheduled, but its execution is still not
490      started, it will be executed only once.
491    * If this tasklet is already running on another CPU, it is rescheduled
492      for later.
493    * Schedule must not be called from the tasklet itself (a lockup occurs)
494    * Tasklet is strictly serialized wrt itself, but not
495      wrt another tasklets. If client needs some intertask synchronization,
496      he makes it with spinlocks.
497  */
498
499 struct tasklet_struct
500 {
501         struct tasklet_struct *next;
502         unsigned long state;
503         atomic_t count;
504         void (*func)(unsigned long);
505         unsigned long data;
506 };
507
508 #define DECLARE_TASKLET(name, func, data) \
509 struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(0), func, data }
510
511 #define DECLARE_TASKLET_DISABLED(name, func, data) \
512 struct tasklet_struct name = { NULL, 0, ATOMIC_INIT(1), func, data }
513
514
515 enum
516 {
517         TASKLET_STATE_SCHED,    /* Tasklet is scheduled for execution */
518         TASKLET_STATE_RUN,      /* Tasklet is running (SMP only) */
519         TASKLET_STATE_PENDING   /* Tasklet is pending */
520 };
521
522 #define TASKLET_STATEF_SCHED    (1 << TASKLET_STATE_SCHED)
523 #define TASKLET_STATEF_RUN      (1 << TASKLET_STATE_RUN)
524 #define TASKLET_STATEF_PENDING  (1 << TASKLET_STATE_PENDING)
525
526 #if defined(CONFIG_SMP) || defined(CONFIG_PREEMPT_RT_FULL)
527 static inline int tasklet_trylock(struct tasklet_struct *t)
528 {
529         return !test_and_set_bit(TASKLET_STATE_RUN, &(t)->state);
530 }
531
532 static inline int tasklet_tryunlock(struct tasklet_struct *t)
533 {
534         return cmpxchg(&t->state, TASKLET_STATEF_RUN, 0) == TASKLET_STATEF_RUN;
535 }
536
537 static inline void tasklet_unlock(struct tasklet_struct *t)
538 {
539         smp_mb__before_atomic();
540         clear_bit(TASKLET_STATE_RUN, &(t)->state);
541 }
542
543 extern void tasklet_unlock_wait(struct tasklet_struct *t);
544
545 #else
546 #define tasklet_trylock(t) 1
547 #define tasklet_tryunlock(t)    1
548 #define tasklet_unlock_wait(t) do { } while (0)
549 #define tasklet_unlock(t) do { } while (0)
550 #endif
551
552 extern void __tasklet_schedule(struct tasklet_struct *t);
553
554 static inline void tasklet_schedule(struct tasklet_struct *t)
555 {
556         if (!test_and_set_bit(TASKLET_STATE_SCHED, &t->state))
557                 __tasklet_schedule(t);
558 }
559
560 extern void __tasklet_hi_schedule(struct tasklet_struct *t);
561
562 static inline void tasklet_hi_schedule(struct tasklet_struct *t)
563 {
564         if (!test_and_set_bit(TASKLET_STATE_SCHED, &t->state))
565                 __tasklet_hi_schedule(t);
566 }
567
568 extern void __tasklet_hi_schedule_first(struct tasklet_struct *t);
569
570 /*
571  * This version avoids touching any other tasklets. Needed for kmemcheck
572  * in order not to take any page faults while enqueueing this tasklet;
573  * consider VERY carefully whether you really need this or
574  * tasklet_hi_schedule()...
575  */
576 static inline void tasklet_hi_schedule_first(struct tasklet_struct *t)
577 {
578         if (!test_and_set_bit(TASKLET_STATE_SCHED, &t->state))
579                 __tasklet_hi_schedule_first(t);
580 }
581
582
583 static inline void tasklet_disable_nosync(struct tasklet_struct *t)
584 {
585         atomic_inc(&t->count);
586         smp_mb__after_atomic();
587 }
588
589 static inline void tasklet_disable(struct tasklet_struct *t)
590 {
591         tasklet_disable_nosync(t);
592         tasklet_unlock_wait(t);
593         smp_mb();
594 }
595
596 extern void tasklet_enable(struct tasklet_struct *t);
597 extern void tasklet_kill(struct tasklet_struct *t);
598 extern void tasklet_kill_immediate(struct tasklet_struct *t, unsigned int cpu);
599 extern void tasklet_init(struct tasklet_struct *t,
600                          void (*func)(unsigned long), unsigned long data);
601
602 struct tasklet_hrtimer {
603         struct hrtimer          timer;
604         struct tasklet_struct   tasklet;
605         enum hrtimer_restart    (*function)(struct hrtimer *);
606 };
607
608 extern void
609 tasklet_hrtimer_init(struct tasklet_hrtimer *ttimer,
610                      enum hrtimer_restart (*function)(struct hrtimer *),
611                      clockid_t which_clock, enum hrtimer_mode mode);
612
613 static inline
614 int tasklet_hrtimer_start(struct tasklet_hrtimer *ttimer, ktime_t time,
615                           const enum hrtimer_mode mode)
616 {
617         return hrtimer_start(&ttimer->timer, time, mode);
618 }
619
620 static inline
621 void tasklet_hrtimer_cancel(struct tasklet_hrtimer *ttimer)
622 {
623         hrtimer_cancel(&ttimer->timer);
624         tasklet_kill(&ttimer->tasklet);
625 }
626
627 #ifdef CONFIG_PREEMPT_RT_FULL
628 extern void softirq_early_init(void);
629 #else
630 static inline void softirq_early_init(void) { }
631 #endif
632
633 /*
634  * Autoprobing for irqs:
635  *
636  * probe_irq_on() and probe_irq_off() provide robust primitives
637  * for accurate IRQ probing during kernel initialization.  They are
638  * reasonably simple to use, are not "fooled" by spurious interrupts,
639  * and, unlike other attempts at IRQ probing, they do not get hung on
640  * stuck interrupts (such as unused PS2 mouse interfaces on ASUS boards).
641  *
642  * For reasonably foolproof probing, use them as follows:
643  *
644  * 1. clear and/or mask the device's internal interrupt.
645  * 2. sti();
646  * 3. irqs = probe_irq_on();      // "take over" all unassigned idle IRQs
647  * 4. enable the device and cause it to trigger an interrupt.
648  * 5. wait for the device to interrupt, using non-intrusive polling or a delay.
649  * 6. irq = probe_irq_off(irqs);  // get IRQ number, 0=none, negative=multiple
650  * 7. service the device to clear its pending interrupt.
651  * 8. loop again if paranoia is required.
652  *
653  * probe_irq_on() returns a mask of allocated irq's.
654  *
655  * probe_irq_off() takes the mask as a parameter,
656  * and returns the irq number which occurred,
657  * or zero if none occurred, or a negative irq number
658  * if more than one irq occurred.
659  */
660
661 #if !defined(CONFIG_GENERIC_IRQ_PROBE) 
662 static inline unsigned long probe_irq_on(void)
663 {
664         return 0;
665 }
666 static inline int probe_irq_off(unsigned long val)
667 {
668         return 0;
669 }
670 static inline unsigned int probe_irq_mask(unsigned long val)
671 {
672         return 0;
673 }
674 #else
675 extern unsigned long probe_irq_on(void);        /* returns 0 on failure */
676 extern int probe_irq_off(unsigned long);        /* returns 0 or negative on failure */
677 extern unsigned int probe_irq_mask(unsigned long);      /* returns mask of ISA interrupts */
678 #endif
679
680 #ifdef CONFIG_PROC_FS
681 /* Initialize /proc/irq/ */
682 extern void init_irq_proc(void);
683 #else
684 static inline void init_irq_proc(void)
685 {
686 }
687 #endif
688
689 struct seq_file;
690 int show_interrupts(struct seq_file *p, void *v);
691 int arch_show_interrupts(struct seq_file *p, int prec);
692
693 extern int early_irq_init(void);
694 extern int arch_probe_nr_irqs(void);
695 extern int arch_early_irq_init(void);
696
697 #endif