patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / include / asm-sparc64 / hardirq.h
1 /* hardirq.h: 64-bit Sparc hard IRQ support.
2  *
3  * Copyright (C) 1997, 1998 David S. Miller (davem@caip.rutgers.edu)
4  */
5
6 #ifndef __SPARC64_HARDIRQ_H
7 #define __SPARC64_HARDIRQ_H
8
9 #include <linux/config.h>
10 #include <linux/threads.h>
11 #include <linux/spinlock.h>
12 #include <linux/cache.h>
13
14 /* rtrap.S is sensitive to the offsets of these fields */
15 typedef struct {
16         unsigned int __softirq_pending;
17 } ____cacheline_aligned irq_cpustat_t;
18
19 #include <linux/irq_cpustat.h>  /* Standard mappings for irq_cpustat_t above */
20
21 /*
22  * We put the hardirq and softirq counter into the preemption
23  * counter. The bitmask has the following meaning:
24  *
25  * - bits 0-7 are the preemption count (max preemption depth: 256)
26  * - bits 8-15 are the softirq count (max # of softirqs: 256)
27  * - bits 16-23 are the hardirq count (max # of hardirqs: 256)
28  *
29  * - ( bit 26 is the PREEMPT_ACTIVE flag. )
30  *
31  * PREEMPT_MASK: 0x000000ff
32  * SOFTIRQ_MASK: 0x0000ff00
33  * HARDIRQ_MASK: 0x00ff0000
34  */
35
36 #define PREEMPT_BITS    8
37 #define SOFTIRQ_BITS    8
38 #define HARDIRQ_BITS    8
39
40 #define PREEMPT_SHIFT   0
41 #define SOFTIRQ_SHIFT   (PREEMPT_SHIFT + PREEMPT_BITS)
42 #define HARDIRQ_SHIFT   (SOFTIRQ_SHIFT + SOFTIRQ_BITS)
43
44 #define __MASK(x)       ((1UL << (x))-1)
45
46 #define PREEMPT_MASK    (__MASK(PREEMPT_BITS) << PREEMPT_SHIFT)
47 #define HARDIRQ_MASK    (__MASK(HARDIRQ_BITS) << HARDIRQ_SHIFT)
48 #define SOFTIRQ_MASK    (__MASK(SOFTIRQ_BITS) << SOFTIRQ_SHIFT)
49
50 #define hardirq_count() (preempt_count() & HARDIRQ_MASK)
51 #define softirq_count() (preempt_count() & SOFTIRQ_MASK)
52 #define irq_count()     (preempt_count() & (HARDIRQ_MASK | SOFTIRQ_MASK))
53
54 #define PREEMPT_OFFSET  (1UL << PREEMPT_SHIFT)
55 #define SOFTIRQ_OFFSET  (1UL << SOFTIRQ_SHIFT)
56 #define HARDIRQ_OFFSET  (1UL << HARDIRQ_SHIFT)
57
58 /*
59  * Are we doing bottom half or hardware interrupt processing?
60  * Are we in a softirq context? Interrupt context?
61  */
62 #define in_irq()                (hardirq_count())
63 #define in_softirq()            (softirq_count())
64 #define in_interrupt()          (irq_count())
65
66
67 #define hardirq_trylock()       (!in_interrupt())
68 #define hardirq_endlock()       do { } while (0)
69
70 #define irq_enter()             (preempt_count() += HARDIRQ_OFFSET)
71
72 #ifdef CONFIG_PREEMPT
73 # include <linux/smp_lock.h>
74 # define in_atomic()    ((preempt_count() & ~PREEMPT_ACTIVE) != kernel_locked())
75 # define IRQ_EXIT_OFFSET (HARDIRQ_OFFSET-1)
76 #else
77 # define in_atomic()    (preempt_count() != 0)
78 # define IRQ_EXIT_OFFSET HARDIRQ_OFFSET
79 #endif
80 #define irq_exit()                                                      \
81 do {                                                                    \
82                 preempt_count() -= IRQ_EXIT_OFFSET;                     \
83                 if (!in_interrupt() && softirq_pending(smp_processor_id())) \
84                         do_softirq();                                   \
85                 preempt_enable_no_resched();                            \
86 } while (0)
87
88 #ifndef CONFIG_SMP
89 # define synchronize_irq(irq)   barrier()
90 #else
91   extern void synchronize_irq(unsigned int irq);
92 #endif /* CONFIG_SMP */
93
94 #endif /* !(__SPARC64_HARDIRQ_H) */