blob: 6fda195337c53a92303aaa3450eaafa2feba9b64 [file] [log] [blame]
Thomas Gleixner67c5fc52008-01-30 13:30:15 +01001#ifndef _ASM_X86_APIC_H
2#define _ASM_X86_APIC_H
3
4#include <linux/pm.h>
5#include <linux/delay.h>
6#include <asm/fixmap.h>
7#include <asm/apicdef.h>
8#include <asm/processor.h>
9#include <asm/system.h>
10
11#define ARCH_APICTIMER_STOPS_ON_C3 1
12
13#define Dprintk(x...)
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
34extern void generic_apic_probe(void);
35
36#ifdef CONFIG_X86_LOCAL_APIC
37
38extern int apic_verbosity;
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010039extern int local_apic_timer_c2_ok;
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010040
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010041extern int ioapic_force;
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010042
Yinghai Lu3c999f12008-06-20 16:11:20 -070043extern int disable_apic;
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010044/*
45 * Basic functions accessing APICs.
46 */
47#ifdef CONFIG_PARAVIRT
48#include <asm/paravirt.h>
Thomas Gleixner96a388d2007-10-11 11:20:03 +020049#else
Suresh Siddha1b374e42008-07-10 11:16:49 -070050#ifndef CONFIG_X86_64
51#define apic_write native_apic_mem_write
52#define apic_write_atomic native_apic_mem_write_atomic
53#define apic_read native_apic_mem_read
54#endif
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010055#define setup_boot_clock setup_boot_APIC_clock
56#define setup_secondary_clock setup_secondary_APIC_clock
Thomas Gleixner96a388d2007-10-11 11:20:03 +020057#endif
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010058
Ravikiran G Thirumalaiaa7d8e25e2008-03-20 00:41:16 -070059extern int is_vsmp_box(void);
60
Suresh Siddha1b374e42008-07-10 11:16:49 -070061static inline void native_apic_mem_write(u32 reg, u32 v)
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010062{
63 *((volatile u32 *)(APIC_BASE + reg)) = v;
64}
65
Suresh Siddha1b374e42008-07-10 11:16:49 -070066static inline void native_apic_mem_write_atomic(u32 reg, u32 v)
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010067{
Joe Perches3c311fe2008-03-23 01:01:40 -070068 (void)xchg((u32 *)(APIC_BASE + reg), v);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010069}
70
Suresh Siddha1b374e42008-07-10 11:16:49 -070071static inline u32 native_apic_mem_read(u32 reg)
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010072{
73 return *((volatile u32 *)(APIC_BASE + reg));
74}
75
Suresh Siddha1b374e42008-07-10 11:16:49 -070076#ifdef CONFIG_X86_32
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010077extern void apic_wait_icr_idle(void);
78extern u32 safe_apic_wait_icr_idle(void);
Suresh Siddha1b374e42008-07-10 11:16:49 -070079extern void apic_icr_write(u32 low, u32 id);
80#else
81
82struct apic_ops {
83 u32 (*read)(u32 reg);
84 void (*write)(u32 reg, u32 v);
85 void (*write_atomic)(u32 reg, u32 v);
86 u64 (*icr_read)(void);
87 void (*icr_write)(u32 low, u32 high);
88 void (*wait_icr_idle)(void);
89 u32 (*safe_wait_icr_idle)(void);
90};
91
92extern struct apic_ops *apic_ops;
93
94#define apic_read (apic_ops->read)
95#define apic_write (apic_ops->write)
96#define apic_write_atomic (apic_ops->write_atomic)
97#define apic_icr_read (apic_ops->icr_read)
98#define apic_icr_write (apic_ops->icr_write)
99#define apic_wait_icr_idle (apic_ops->wait_icr_idle)
100#define safe_apic_wait_icr_idle (apic_ops->safe_wait_icr_idle)
101#endif
102
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100103extern int get_physical_broadcast(void);
104
105#ifdef CONFIG_X86_GOOD_APIC
106# define FORCE_READ_AROUND_WRITE 0
107# define apic_read_around(x)
108# define apic_write_around(x, y) apic_write((x), (y))
109#else
110# define FORCE_READ_AROUND_WRITE 1
111# define apic_read_around(x) apic_read(x)
112# define apic_write_around(x, y) apic_write_atomic((x), (y))
113#endif
114
115static inline void ack_APIC_irq(void)
116{
117 /*
118 * ack_APIC_irq() actually gets compiled as a single instruction:
119 * - a single rmw on Pentium/82489DX
120 * - a single write on P6+ cores (CONFIG_X86_GOOD_APIC)
121 * ... yummie.
122 */
123
124 /* Docs say use 0 for future compatibility */
Suresh Siddha1b374e42008-07-10 11:16:49 -0700125#ifdef CONFIG_X86_32
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100126 apic_write_around(APIC_EOI, 0);
Suresh Siddha1b374e42008-07-10 11:16:49 -0700127#else
128 native_apic_mem_write(APIC_EOI, 0);
129#endif
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100130}
131
132extern int lapic_get_maxlvt(void);
133extern void clear_local_APIC(void);
134extern void connect_bsp_APIC(void);
135extern void disconnect_bsp_APIC(int virt_wire_setup);
136extern void disable_local_APIC(void);
137extern void lapic_shutdown(void);
138extern int verify_local_APIC(void);
139extern void cache_APIC_registers(void);
140extern void sync_Arb_IDs(void);
141extern void init_bsp_APIC(void);
142extern void setup_local_APIC(void);
Andi Kleen739f33b2008-01-30 13:30:40 +0100143extern void end_local_APIC_setup(void);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100144extern void init_apic_mappings(void);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100145extern void setup_boot_APIC_clock(void);
146extern void setup_secondary_APIC_clock(void);
147extern int APIC_init_uniprocessor(void);
Jan Beuliche9427102008-01-30 13:31:24 +0100148extern void enable_NMI_through_LVT0(void);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100149
150/*
151 * On 32bit this is mach-xxx local
152 */
153#ifdef CONFIG_X86_64
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800154extern void early_init_lapic_mapping(void);
Alok Kataria8fbbc4b2008-07-01 11:43:34 -0700155extern int apic_is_clustered_box(void);
156#else
157static inline int apic_is_clustered_box(void)
158{
159 return 0;
160}
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100161#endif
162
Robert Richter7b83dae2008-01-30 13:30:40 +0100163extern u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask);
164extern u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100165
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100166
167#else /* !CONFIG_X86_LOCAL_APIC */
168static inline void lapic_shutdown(void) { }
169#define local_apic_timer_c2_ok 1
Yinghai Luf3294a32008-06-27 01:41:56 -0700170static inline void init_apic_mappings(void) { }
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100171
172#endif /* !CONFIG_X86_LOCAL_APIC */
173
174#endif /* __ASM_APIC_H */