OSDN Git Service

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