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