blob: b804238489a1e7559273b9b8a7e30f6ecf4ea63c [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;
39extern int timer_over_8254;
40extern int local_apic_timer_c2_ok;
41extern int local_apic_timer_disabled;
42
43extern int apic_runs_main_timer;
44extern int ioapic_force;
Thomas Gleixnerae9d9832008-01-30 13:30:36 +010045extern int disable_apic;
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010046extern int disable_apic_timer;
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010047
48/*
49 * Basic functions accessing APICs.
50 */
51#ifdef CONFIG_PARAVIRT
52#include <asm/paravirt.h>
Yinghai Luf8fffa42008-02-24 21:36:28 -080053extern int is_vsmp_box(void);
Thomas Gleixner96a388d2007-10-11 11:20:03 +020054#else
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010055#define apic_write native_apic_write
56#define apic_write_atomic native_apic_write_atomic
57#define apic_read native_apic_read
58#define setup_boot_clock setup_boot_APIC_clock
59#define setup_secondary_clock setup_secondary_APIC_clock
Yinghai Luf8fffa42008-02-24 21:36:28 -080060static int inline is_vsmp_box(void)
61{
62 return 0;
63}
Thomas Gleixner96a388d2007-10-11 11:20:03 +020064#endif
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010065
Harvey Harrison341d8852008-01-30 13:31:17 +010066static inline void native_apic_write(unsigned long reg, u32 v)
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010067{
68 *((volatile u32 *)(APIC_BASE + reg)) = v;
69}
70
Harvey Harrison341d8852008-01-30 13:31:17 +010071static inline void native_apic_write_atomic(unsigned long reg, u32 v)
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010072{
73 (void) xchg((u32*)(APIC_BASE + reg), v);
74}
75
Harvey Harrison341d8852008-01-30 13:31:17 +010076static inline u32 native_apic_read(unsigned long reg)
Thomas Gleixner67c5fc52008-01-30 13:30:15 +010077{
78 return *((volatile u32 *)(APIC_BASE + reg));
79}
80
81extern void apic_wait_icr_idle(void);
82extern u32 safe_apic_wait_icr_idle(void);
83extern int get_physical_broadcast(void);
84
85#ifdef CONFIG_X86_GOOD_APIC
86# define FORCE_READ_AROUND_WRITE 0
87# define apic_read_around(x)
88# define apic_write_around(x, y) apic_write((x), (y))
89#else
90# define FORCE_READ_AROUND_WRITE 1
91# define apic_read_around(x) apic_read(x)
92# define apic_write_around(x, y) apic_write_atomic((x), (y))
93#endif
94
95static inline void ack_APIC_irq(void)
96{
97 /*
98 * ack_APIC_irq() actually gets compiled as a single instruction:
99 * - a single rmw on Pentium/82489DX
100 * - a single write on P6+ cores (CONFIG_X86_GOOD_APIC)
101 * ... yummie.
102 */
103
104 /* Docs say use 0 for future compatibility */
105 apic_write_around(APIC_EOI, 0);
106}
107
108extern int lapic_get_maxlvt(void);
109extern void clear_local_APIC(void);
110extern void connect_bsp_APIC(void);
111extern void disconnect_bsp_APIC(int virt_wire_setup);
112extern void disable_local_APIC(void);
113extern void lapic_shutdown(void);
114extern int verify_local_APIC(void);
115extern void cache_APIC_registers(void);
116extern void sync_Arb_IDs(void);
117extern void init_bsp_APIC(void);
118extern void setup_local_APIC(void);
Andi Kleen739f33b2008-01-30 13:30:40 +0100119extern void end_local_APIC_setup(void);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100120extern void init_apic_mappings(void);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100121extern void setup_boot_APIC_clock(void);
122extern void setup_secondary_APIC_clock(void);
123extern int APIC_init_uniprocessor(void);
Jan Beuliche9427102008-01-30 13:31:24 +0100124extern void enable_NMI_through_LVT0(void);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100125
126/*
127 * On 32bit this is mach-xxx local
128 */
129#ifdef CONFIG_X86_64
Yinghai Lu8643f9d2008-02-19 03:21:06 -0800130extern void early_init_lapic_mapping(void);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100131#endif
132
Robert Richter7b83dae2008-01-30 13:30:40 +0100133extern u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask);
134extern u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask);
Thomas Gleixner67c5fc52008-01-30 13:30:15 +0100135
136extern int apic_is_clustered_box(void);
137
138#else /* !CONFIG_X86_LOCAL_APIC */
139static inline void lapic_shutdown(void) { }
140#define local_apic_timer_c2_ok 1
141
142#endif /* !CONFIG_X86_LOCAL_APIC */
143
144#endif /* __ASM_APIC_H */