]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/asm-x86/apic.h
Merge branch 'linus' into x86/cleanups
[linux-2.6-omap-h63xx.git] / include / asm-x86 / apic.h
1 #ifndef _ASM_X86_APIC_H
2 #define _ASM_X86_APIC_H
3
4 #include <linux/pm.h>
5 #include <linux/delay.h>
6
7 #include <asm/alternative.h>
8 #include <asm/fixmap.h>
9 #include <asm/apicdef.h>
10 #include <asm/processor.h>
11 #include <asm/system.h>
12
13 #define ARCH_APICTIMER_STOPS_ON_C3      1
14
15 /*
16  * Debugging macros
17  */
18 #define APIC_QUIET   0
19 #define APIC_VERBOSE 1
20 #define APIC_DEBUG   2
21
22 /*
23  * Define the default level of output to be very little
24  * This can be turned up by using apic=verbose for more
25  * information and apic=debug for _lots_ of information.
26  * apic_verbosity is defined in apic.c
27  */
28 #define apic_printk(v, s, a...) do {       \
29                 if ((v) <= apic_verbosity) \
30                         printk(s, ##a);    \
31         } while (0)
32
33
34 extern void generic_apic_probe(void);
35
36 #ifdef CONFIG_X86_LOCAL_APIC
37
38 extern unsigned int apic_verbosity;
39 extern int local_apic_timer_c2_ok;
40
41 extern int ioapic_force;
42
43 extern int disable_apic;
44 /*
45  * Basic functions accessing APICs.
46  */
47 #ifdef CONFIG_PARAVIRT
48 #include <asm/paravirt.h>
49 #else
50 #define apic_write native_apic_write
51 #define apic_read native_apic_read
52 #define setup_boot_clock setup_boot_APIC_clock
53 #define setup_secondary_clock setup_secondary_APIC_clock
54 #endif
55
56 extern int is_vsmp_box(void);
57
58 static inline void native_apic_write(unsigned long reg, u32 v)
59 {
60         volatile u32 *addr = (volatile u32 *)(APIC_BASE + reg);
61
62         alternative_io("movl %0, %1", "xchgl %0, %1", X86_FEATURE_11AP,
63                        ASM_OUTPUT2("=r" (v), "=m" (*addr)),
64                        ASM_OUTPUT2("0" (v), "m" (*addr)));
65 }
66
67 static inline u32 native_apic_read(unsigned long reg)
68 {
69         return *((volatile u32 *)(APIC_BASE + reg));
70 }
71
72 extern void apic_wait_icr_idle(void);
73 extern u32 safe_apic_wait_icr_idle(void);
74 extern int get_physical_broadcast(void);
75
76 static inline void ack_APIC_irq(void)
77 {
78         /*
79          * ack_APIC_irq() actually gets compiled as a single instruction
80          * ... yummie.
81          */
82
83         /* Docs say use 0 for future compatibility */
84         apic_write(APIC_EOI, 0);
85 }
86
87 extern int lapic_get_maxlvt(void);
88 extern void clear_local_APIC(void);
89 extern void connect_bsp_APIC(void);
90 extern void disconnect_bsp_APIC(int virt_wire_setup);
91 extern void disable_local_APIC(void);
92 extern void lapic_shutdown(void);
93 extern int verify_local_APIC(void);
94 extern void cache_APIC_registers(void);
95 extern void sync_Arb_IDs(void);
96 extern void init_bsp_APIC(void);
97 extern void setup_local_APIC(void);
98 extern void end_local_APIC_setup(void);
99 extern void init_apic_mappings(void);
100 extern void setup_boot_APIC_clock(void);
101 extern void setup_secondary_APIC_clock(void);
102 extern int APIC_init_uniprocessor(void);
103 extern void enable_NMI_through_LVT0(void);
104
105 /*
106  * On 32bit this is mach-xxx local
107  */
108 #ifdef CONFIG_X86_64
109 extern void early_init_lapic_mapping(void);
110 extern int apic_is_clustered_box(void);
111 #else
112 static inline int apic_is_clustered_box(void)
113 {
114         return 0;
115 }
116 #endif
117
118 extern u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask);
119 extern u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask);
120
121
122 #else /* !CONFIG_X86_LOCAL_APIC */
123 static inline void lapic_shutdown(void) { }
124 #define local_apic_timer_c2_ok          1
125 static inline void init_apic_mappings(void) { }
126
127 #endif /* !CONFIG_X86_LOCAL_APIC */
128
129 #endif /* __ASM_APIC_H */