ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / asm-m68k / hardirq.h
1 #ifndef __M68K_HARDIRQ_H
2 #define __M68K_HARDIRQ_H
3
4 #include <linux/threads.h>
5 #include <linux/cache.h>
6
7 /* entry.S is sensitive to the offsets of these fields */
8 typedef struct {
9         unsigned int __softirq_pending;
10 } ____cacheline_aligned irq_cpustat_t;
11
12 #include <linux/irq_cpustat.h>  /* Standard mappings for irq_cpustat_t above */
13
14 /*
15  * We put the hardirq and softirq counter into the preemption
16  * counter. The bitmask has the following meaning:
17  *
18  * - bits 0-7 are the preemption count (max preemption depth: 256)
19  * - bits 8-15 are the softirq count (max # of softirqs: 256)
20  * - bits 16-23 are the hardirq count (max # of hardirqs: 256)
21  *
22  * - ( bit 26 is the PREEMPT_ACTIVE flag. )
23  *
24  * PREEMPT_MASK: 0x000000ff
25  * HARDIRQ_MASK: 0x0000ff00
26  * SOFTIRQ_MASK: 0x00ff0000
27  */
28
29 #define PREEMPT_BITS    8
30 #define SOFTIRQ_BITS    8
31 #define HARDIRQ_BITS    8
32
33 #define PREEMPT_SHIFT   0
34 #define SOFTIRQ_SHIFT   (PREEMPT_SHIFT + PREEMPT_BITS)
35 #define HARDIRQ_SHIFT   (SOFTIRQ_SHIFT + SOFTIRQ_BITS)
36
37 #define __MASK(x)       ((1UL << (x))-1)
38
39 #define PREEMPT_MASK    (__MASK(PREEMPT_BITS) << PREEMPT_SHIFT)
40 #define HARDIRQ_MASK    (__MASK(HARDIRQ_BITS) << HARDIRQ_SHIFT)
41 #define SOFTIRQ_MASK    (__MASK(SOFTIRQ_BITS) << SOFTIRQ_SHIFT)
42
43 #define hardirq_count() (preempt_count() & HARDIRQ_MASK)
44 #define softirq_count() (preempt_count() & SOFTIRQ_MASK)
45 #define irq_count()     (preempt_count() & (HARDIRQ_MASK | SOFTIRQ_MASK))
46
47 #define PREEMPT_OFFSET  (1UL << PREEMPT_SHIFT)
48 #define SOFTIRQ_OFFSET  (1UL << SOFTIRQ_SHIFT)
49 #define HARDIRQ_OFFSET  (1UL << HARDIRQ_SHIFT)
50
51 /*
52  * The hardirq mask has to be large enough to have
53  * space for potentially all IRQ sources in the system
54  * nesting on a single CPU:
55  */
56 #if (1 << HARDIRQ_BITS) < NR_IRQS
57 # error HARDIRQ_BITS is too low!
58 #endif
59
60 /*
61  * Are we doing bottom half or hardware interrupt processing?
62  * Are we in a softirq context? Interrupt context?
63  */
64 #define in_irq()                (hardirq_count())
65 #define in_softirq()            (softirq_count())
66 #define in_interrupt()          (irq_count())
67
68
69 #define hardirq_trylock()       (!in_interrupt())
70 #define hardirq_endlock()       do { } while (0)
71
72 #define irq_enter()             (preempt_count() += HARDIRQ_OFFSET)
73
74 #ifdef CONFIG_PREEMPT
75 # define in_atomic()    (preempt_count() != kernel_locked())
76 # define IRQ_EXIT_OFFSET (HARDIRQ_OFFSET-1)
77 #else
78 # define in_atomic()    (preempt_count() != 0)
79 # define IRQ_EXIT_OFFSET HARDIRQ_OFFSET
80 #endif
81 #define irq_exit()                                                      \
82 do {                                                                    \
83                 preempt_count() -= IRQ_EXIT_OFFSET;                     \
84                 if (!in_interrupt() && softirq_pending(smp_processor_id())) \
85                         do_softirq();                                   \
86                 preempt_enable_no_resched();                            \
87 } while (0)
88
89 #define synchronize_irq(irq)    barrier()
90
91 #endif