[PATCH] x86_64: Allow to run main time keeping from the local APIC interrupt
[linux-2.6-block.git] / include / asm-x86_64 / apic.h
CommitLineData
1da177e4
LT
1#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;
73dea47f 20extern int apic_runs_main_timer;
1da177e4
LT
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#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
1da177e4
LT
46static __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
1da177e4
LT
56static 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 */
11a8e778 66 apic_write(APIC_EOI, 0);
1da177e4
LT
67}
68
69extern int get_maxlvt (void);
70extern void clear_local_APIC (void);
71extern void connect_bsp_APIC (void);
208fb931 72extern void disconnect_bsp_APIC (int virt_wire_setup);
1da177e4
LT
73extern 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
1da177e4
LT
94extern 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
66759a01
CE
104extern int disable_timer_pin_1;
105
89b831ef
JS
106extern void setup_threshold_lvt(unsigned long lvt_off);
107
d25bf7e5
VP
108void 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
1da177e4
LT
114#endif /* CONFIG_X86_LOCAL_APIC */
115
1da177e4
LT
116extern unsigned boot_cpu_id;
117
118#endif /* __ASM_APIC_H */