blob: d76a0839abe932c789738f0b0ec5b81c79f96b6c [file] [log] [blame]
Vegard Nossum77ef50a2008-06-18 17:08:48 +02001#ifndef ASM_X86__APIC_H
2#define ASM_X86__APIC_H
Thomas Gleixner67c5fc52008-01-30 13:30:15 +01003
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>
Suresh Siddha13c88fb52008-07-10 11:16:52 -070012#include <asm/cpufeature.h>
13#include <asm/msr.h>
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010014
15#define ARCH_APICTIMER_STOPS_ON_C3 1
16
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010017/*
18 * Debugging macros
19 */
20#define APIC_QUIET 0
21#define APIC_VERBOSE 1
22#define APIC_DEBUG 2
23
24/*
25 * Define the default level of output to be very little
26 * This can be turned up by using apic=verbose for more
27 * information and apic=debug for _lots_ of information.
28 * apic_verbosity is defined in apic.c
29 */
30#define apic_printk(v, s, a...) do { \
31 if ((v) <= apic_verbosity) \
32 printk(s, ##a); \
33 } while (0)
34
35
36extern void generic_apic_probe(void);
37
38#ifdef CONFIG_X86_LOCAL_APIC
39
Maciej W. Rozyckibaa13182008-07-14 18:44:51 +010040extern unsigned int apic_verbosity;
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010041extern int local_apic_timer_c2_ok;
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010042
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010043extern int ioapic_force;
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010044
Yinghai Lu3c999f12008-06-20 16:11:20 -070045extern int disable_apic;
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010046/*
47 * Basic functions accessing APICs.
48 */
49#ifdef CONFIG_PARAVIRT
50#include <asm/paravirt.h>
Thomas Gleixner96a388d2007-10-11 11:20:03 +020051#else
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010052#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
Suresh Siddha1b374e42008-07-10 11:16:49 -070063static inline void native_apic_mem_write(u32 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
Suresh Siddha1b374e42008-07-10 11:16:49 -070072static inline u32 native_apic_mem_read(u32 reg)
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010073{
74 return *((volatile u32 *)(APIC_BASE + reg));
75}
76
Suresh Siddha13c88fb52008-07-10 11:16:52 -070077static inline void native_apic_msr_write(u32 reg, u32 v)
78{
79 if (reg == APIC_DFR || reg == APIC_ID || reg == APIC_LDR ||
80 reg == APIC_LVR)
81 return;
82
83 wrmsr(APIC_BASE_MSR + (reg >> 4), v, 0);
84}
85
86static inline u32 native_apic_msr_read(u32 reg)
87{
88 u32 low, high;
89
90 if (reg == APIC_DFR)
91 return -1;
92
93 rdmsr(APIC_BASE_MSR + (reg >> 4), low, high);
94 return low;
95}
96
Yinghai Luc535b6a2008-07-11 18:41:54 -070097#ifndef CONFIG_X86_32
Suresh Siddha6e1cb382008-07-10 11:16:58 -070098extern int x2apic, x2apic_preenabled;
99extern void check_x2apic(void);
100extern void enable_x2apic(void);
101extern void enable_IR_x2apic(void);
102extern void x2apic_icr_write(u32 low, u32 id);
Yinghai Luc535b6a2008-07-11 18:41:54 -0700103#endif
Suresh Siddha1b374e42008-07-10 11:16:49 -0700104
105struct apic_ops {
106 u32 (*read)(u32 reg);
107 void (*write)(u32 reg, u32 v);
Suresh Siddha1b374e42008-07-10 11:16:49 -0700108 u64 (*icr_read)(void);
109 void (*icr_write)(u32 low, u32 high);
110 void (*wait_icr_idle)(void);
111 u32 (*safe_wait_icr_idle)(void);
112};
113
114extern struct apic_ops *apic_ops;
115
116#define apic_read (apic_ops->read)
117#define apic_write (apic_ops->write)
Suresh Siddha1b374e42008-07-10 11:16:49 -0700118#define apic_icr_read (apic_ops->icr_read)
119#define apic_icr_write (apic_ops->icr_write)
120#define apic_wait_icr_idle (apic_ops->wait_icr_idle)
121#define safe_apic_wait_icr_idle (apic_ops->safe_wait_icr_idle)
Suresh Siddha1b374e42008-07-10 11:16:49 -0700122
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100123extern int get_physical_broadcast(void);
124
Suresh Siddha89027d32008-07-10 11:16:56 -0700125#ifdef CONFIG_X86_64
126static inline void ack_x2APIC_irq(void)
127{
128 /* Docs say use 0 for future compatibility */
129 native_apic_msr_write(APIC_EOI, 0);
130}
131#endif
132
133
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100134static inline void ack_APIC_irq(void)
135{
136 /*
Maciej W. Rozycki0791e132008-07-21 01:28:43 +0100137 * ack_APIC_irq() actually gets compiled as a single instruction
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100138 * ... yummie.
139 */
140
141 /* Docs say use 0 for future compatibility */
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100142 apic_write(APIC_EOI, 0);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100143}
144
145extern int lapic_get_maxlvt(void);
146extern void clear_local_APIC(void);
147extern void connect_bsp_APIC(void);
148extern void disconnect_bsp_APIC(int virt_wire_setup);
149extern void disable_local_APIC(void);
150extern void lapic_shutdown(void);
151extern int verify_local_APIC(void);
152extern void cache_APIC_registers(void);
153extern void sync_Arb_IDs(void);
154extern void init_bsp_APIC(void);
155extern void setup_local_APIC(void);
Andi Kleen739f33b2008-01-30 13:30:40 +0100156extern void end_local_APIC_setup(void);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100157extern void init_apic_mappings(void);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100158extern void setup_boot_APIC_clock(void);
159extern void setup_secondary_APIC_clock(void);
160extern int APIC_init_uniprocessor(void);
Jan Beuliche9427102008-01-30 13:31:24 +0100161extern void enable_NMI_through_LVT0(void);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100162
163/*
164 * On 32bit this is mach-xxx local
165 */
166#ifdef CONFIG_X86_64
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800167extern void early_init_lapic_mapping(void);
Alok Kataria8fbbc4b2008-07-01 11:43:34 -0700168extern int apic_is_clustered_box(void);
169#else
170static inline int apic_is_clustered_box(void)
171{
172 return 0;
173}
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100174#endif
175
Robert Richter7b83dae2008-01-30 13:30:40 +0100176extern u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask);
177extern u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100178
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100179
180#else /* !CONFIG_X86_LOCAL_APIC */
181static inline void lapic_shutdown(void) { }
182#define local_apic_timer_c2_ok 1
Yinghai Luf3294a32008-06-27 01:41:56 -0700183static inline void init_apic_mappings(void) { }
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100184
185#endif /* !CONFIG_X86_LOCAL_APIC */
186
Vegard Nossum77ef50a2008-06-18 17:08:48 +0200187#endif /* ASM_X86__APIC_H */