blob: bdbd8935612a7d6eaa9f96e63e796abc72cfb66b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ASM_APIC_H
2#define __ASM_APIC_H
3
4#include <linux/config.h>
5#include <linux/pm.h>
6#include <asm/fixmap.h>
7#include <asm/apicdef.h>
8#include <asm/system.h>
9
10#define Dprintk(x...)
11
12/*
13 * Debugging macros
14 */
15#define APIC_QUIET 0
16#define APIC_VERBOSE 1
17#define APIC_DEBUG 2
18
19extern int apic_verbosity;
Andi Kleen73dea472006-02-03 21:50:50 +010020extern int apic_runs_main_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
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#ifdef CONFIG_X86_LOCAL_APIC
34
35struct pt_regs;
36
37/*
38 * Basic functions accessing APICs.
39 */
40
41static __inline void apic_write(unsigned long reg, unsigned int v)
42{
43 *((volatile unsigned int *)(APIC_BASE+reg)) = v;
44}
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static __inline unsigned int apic_read(unsigned long reg)
47{
48 return *((volatile unsigned int *)(APIC_BASE+reg));
49}
50
51static __inline__ void apic_wait_icr_idle(void)
52{
53 while ( apic_read( APIC_ICR ) & APIC_ICR_BUSY );
54}
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056static inline void ack_APIC_irq(void)
57{
58 /*
59 * ack_APIC_irq() actually gets compiled as a single instruction:
60 * - a single rmw on Pentium/82489DX
61 * - a single write on P6+ cores (CONFIG_X86_GOOD_APIC)
62 * ... yummie.
63 */
64
65 /* Docs say use 0 for future compatibility */
Andi Kleen11a8e772006-01-11 22:46:51 +010066 apic_write(APIC_EOI, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
69extern int get_maxlvt (void);
70extern void clear_local_APIC (void);
71extern void connect_bsp_APIC (void);
Eric W. Biederman208fb932005-06-25 14:57:45 -070072extern void disconnect_bsp_APIC (int virt_wire_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073extern void disable_local_APIC (void);
74extern int verify_local_APIC (void);
75extern void cache_APIC_registers (void);
76extern void sync_Arb_IDs (void);
77extern void init_bsp_APIC (void);
78extern void setup_local_APIC (void);
79extern void init_apic_mappings (void);
80extern void smp_local_timer_interrupt (struct pt_regs * regs);
81extern void setup_boot_APIC_clock (void);
82extern void setup_secondary_APIC_clock (void);
83extern void setup_apic_nmi_watchdog (void);
84extern int reserve_lapic_nmi(void);
85extern void release_lapic_nmi(void);
86extern void disable_timer_nmi_watchdog(void);
87extern void enable_timer_nmi_watchdog(void);
88extern void nmi_watchdog_tick (struct pt_regs * regs, unsigned reason);
89extern int APIC_init_uniprocessor (void);
90extern void disable_APIC_timer(void);
91extern void enable_APIC_timer(void);
92extern void clustered_apic_check(void);
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094extern void nmi_watchdog_default(void);
95extern int setup_nmi_watchdog(char *);
96
97extern unsigned int nmi_watchdog;
98#define NMI_DEFAULT -1
99#define NMI_NONE 0
100#define NMI_IO_APIC 1
101#define NMI_LOCAL_APIC 2
102#define NMI_INVALID 3
103
Chuck Ebbert66759a02005-09-12 18:49:25 +0200104extern int disable_timer_pin_1;
105
Jacob Shin89b831e2005-11-05 17:25:53 +0100106extern void setup_threshold_lvt(unsigned long lvt_off);
107
Venkatesh Pallipadid25bf7e2006-01-11 22:44:24 +0100108void smp_send_timer_broadcast_ipi(void);
109void switch_APIC_timer_to_ipi(void *cpumask);
110void switch_ipi_to_APIC_timer(void *cpumask);
111
112#define ARCH_APICTIMER_STOPS_ON_C3 1
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#endif /* CONFIG_X86_LOCAL_APIC */
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116extern unsigned boot_cpu_id;
117
118#endif /* __ASM_APIC_H */