Merge git://git.kernel.org/pub/scm/linux/kernel/git/agk/linux-2.6-dm
[deliverable/linux.git] / include / asm-x86 / apic.h
CommitLineData
77ef50a5
VN
1#ifndef ASM_X86__APIC_H
2#define ASM_X86__APIC_H
67c5fc5c
TG
3
4#include <linux/pm.h>
5#include <linux/delay.h>
593f4a78
MR
6
7#include <asm/alternative.h>
67c5fc5c
TG
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
67c5fc5c
TG
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
34extern void generic_apic_probe(void);
35
36#ifdef CONFIG_X86_LOCAL_APIC
37
baa13188 38extern unsigned int apic_verbosity;
67c5fc5c 39extern int local_apic_timer_c2_ok;
67c5fc5c 40
67c5fc5c 41extern int ioapic_force;
67c5fc5c 42
3c999f14 43extern int disable_apic;
67c5fc5c
TG
44/*
45 * Basic functions accessing APICs.
46 */
47#ifdef CONFIG_PARAVIRT
48#include <asm/paravirt.h>
96a388de 49#else
67c5fc5c 50#define apic_write native_apic_write
67c5fc5c
TG
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
96a388de 54#endif
67c5fc5c 55
aa7d8e25 56extern int is_vsmp_box(void);
2b97df06
JS
57extern void xapic_wait_icr_idle(void);
58extern u32 safe_xapic_wait_icr_idle(void);
59extern u64 xapic_icr_read(void);
60extern void xapic_icr_write(u32, u32);
61extern int setup_profiling_timer(unsigned int);
aa7d8e25 62
341d8854 63static inline void native_apic_write(unsigned long reg, u32 v)
67c5fc5c 64{
593f4a78 65 volatile u32 *addr = (volatile u32 *)(APIC_BASE + reg);
67c5fc5c 66
593f4a78
MR
67 alternative_io("movl %0, %1", "xchgl %0, %1", X86_FEATURE_11AP,
68 ASM_OUTPUT2("=r" (v), "=m" (*addr)),
69 ASM_OUTPUT2("0" (v), "m" (*addr)));
67c5fc5c
TG
70}
71
341d8854 72static inline u32 native_apic_read(unsigned long reg)
67c5fc5c
TG
73{
74 return *((volatile u32 *)(APIC_BASE + reg));
75}
76
77extern void apic_wait_icr_idle(void);
78extern u32 safe_apic_wait_icr_idle(void);
79extern int get_physical_broadcast(void);
80
67c5fc5c
TG
81static inline void ack_APIC_irq(void)
82{
83 /*
0791e13f 84 * ack_APIC_irq() actually gets compiled as a single instruction
67c5fc5c
TG
85 * ... yummie.
86 */
87
88 /* Docs say use 0 for future compatibility */
593f4a78 89 apic_write(APIC_EOI, 0);
67c5fc5c
TG
90}
91
92extern int lapic_get_maxlvt(void);
93extern void clear_local_APIC(void);
94extern void connect_bsp_APIC(void);
95extern void disconnect_bsp_APIC(int virt_wire_setup);
96extern void disable_local_APIC(void);
97extern void lapic_shutdown(void);
98extern int verify_local_APIC(void);
99extern void cache_APIC_registers(void);
100extern void sync_Arb_IDs(void);
101extern void init_bsp_APIC(void);
102extern void setup_local_APIC(void);
739f33b3 103extern void end_local_APIC_setup(void);
67c5fc5c 104extern void init_apic_mappings(void);
67c5fc5c
TG
105extern void setup_boot_APIC_clock(void);
106extern void setup_secondary_APIC_clock(void);
107extern int APIC_init_uniprocessor(void);
e9427101 108extern void enable_NMI_through_LVT0(void);
67c5fc5c
TG
109
110/*
111 * On 32bit this is mach-xxx local
112 */
113#ifdef CONFIG_X86_64
8643f9d0 114extern void early_init_lapic_mapping(void);
8fbbc4b4
AK
115extern int apic_is_clustered_box(void);
116#else
117static inline int apic_is_clustered_box(void)
118{
119 return 0;
120}
67c5fc5c
TG
121#endif
122
7b83dae7
RR
123extern u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask);
124extern u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask);
67c5fc5c 125
67c5fc5c
TG
126
127#else /* !CONFIG_X86_LOCAL_APIC */
128static inline void lapic_shutdown(void) { }
129#define local_apic_timer_c2_ok 1
f3294a33 130static inline void init_apic_mappings(void) { }
67c5fc5c
TG
131
132#endif /* !CONFIG_X86_LOCAL_APIC */
133
77ef50a5 134#endif /* ASM_X86__APIC_H */
This page took 0.224994 seconds and 5 git commands to generate.