blob: 519ad65708e7e6ea408f94ddd8c35c733ed015d4 [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>
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +01006
7#include <asm/alternative.h>
Thomas Gleixner67c5fc52008-01-30 13:30:15 +01008#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
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010015/*
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
Maciej W. Rozyckibaa13182008-07-14 18:44:51 +010038extern unsigned 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
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010050#define apic_write native_apic_write
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010051#define apic_read native_apic_read
52#define setup_boot_clock setup_boot_APIC_clock
53#define setup_secondary_clock setup_secondary_APIC_clock
Thomas Gleixner96a388d2007-10-11 11:20:03 +020054#endif
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010055
Ravikiran G Thirumalaiaa7d8e25e2008-03-20 00:41:16 -070056extern int is_vsmp_box(void);
Jaswinder Singh2b97df02008-07-23 17:13:14 +053057extern 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);
Ravikiran G Thirumalaiaa7d8e25e2008-03-20 00:41:16 -070062
Harvey Harrison341d8852008-01-30 13:31:17 +010063static inline void native_apic_write(unsigned long reg, u32 v)
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010064{
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +010065 volatile u32 *addr = (volatile u32 *)(APIC_BASE + reg);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010066
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +010067 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)));
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010070}
71
Harvey Harrison341d8852008-01-30 13:31:17 +010072static inline u32 native_apic_read(unsigned long reg)
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010073{
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
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010081static inline void ack_APIC_irq(void)
82{
83 /*
84 * ack_APIC_irq() actually gets compiled as a single instruction:
85 * - a single rmw on Pentium/82489DX
86 * - a single write on P6+ cores (CONFIG_X86_GOOD_APIC)
87 * ... yummie.
88 */
89
90 /* Docs say use 0 for future compatibility */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +010091 apic_write(APIC_EOI, 0);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010092}
93
94extern int lapic_get_maxlvt(void);
95extern void clear_local_APIC(void);
96extern void connect_bsp_APIC(void);
97extern void disconnect_bsp_APIC(int virt_wire_setup);
98extern void disable_local_APIC(void);
99extern void lapic_shutdown(void);
100extern int verify_local_APIC(void);
101extern void cache_APIC_registers(void);
102extern void sync_Arb_IDs(void);
103extern void init_bsp_APIC(void);
104extern void setup_local_APIC(void);
Andi Kleen739f33b2008-01-30 13:30:40 +0100105extern void end_local_APIC_setup(void);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100106extern void init_apic_mappings(void);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100107extern void setup_boot_APIC_clock(void);
108extern void setup_secondary_APIC_clock(void);
109extern int APIC_init_uniprocessor(void);
Jan Beuliche9427102008-01-30 13:31:24 +0100110extern void enable_NMI_through_LVT0(void);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100111
112/*
113 * On 32bit this is mach-xxx local
114 */
115#ifdef CONFIG_X86_64
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800116extern void early_init_lapic_mapping(void);
Alok Kataria8fbbc4b2008-07-01 11:43:34 -0700117extern int apic_is_clustered_box(void);
118#else
119static inline int apic_is_clustered_box(void)
120{
121 return 0;
122}
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100123#endif
124
Robert Richter7b83dae2008-01-30 13:30:40 +0100125extern u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask);
126extern u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100127
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100128
129#else /* !CONFIG_X86_LOCAL_APIC */
130static inline void lapic_shutdown(void) { }
131#define local_apic_timer_c2_ok 1
Yinghai Luf3294a32008-06-27 01:41:56 -0700132static inline void init_apic_mappings(void) { }
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100133
134#endif /* !CONFIG_X86_LOCAL_APIC */
135
136#endif /* __ASM_APIC_H */