Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
422 | giacomo | 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 APIC_DEBUG 0 |
||
11 | |||
12 | #if APIC_DEBUG |
||
13 | #define Dprintk(x...) printk(x) |
||
14 | #else |
||
15 | #define Dprintk(x...) |
||
16 | #endif |
||
17 | |||
18 | #ifdef CONFIG_X86_LOCAL_APIC |
||
19 | |||
20 | /* |
||
21 | * Basic functions accessing APICs. |
||
22 | */ |
||
23 | |||
24 | static __inline void apic_write(unsigned long reg, unsigned long v) |
||
25 | { |
||
26 | *((volatile unsigned long *)(APIC_BASE+reg)) = v; |
||
27 | } |
||
28 | |||
29 | static __inline void apic_write_atomic(unsigned long reg, unsigned long v) |
||
30 | { |
||
31 | xchg((volatile unsigned long *)(APIC_BASE+reg), v); |
||
32 | } |
||
33 | |||
34 | static __inline unsigned long apic_read(unsigned long reg) |
||
35 | { |
||
36 | return *((volatile unsigned long *)(APIC_BASE+reg)); |
||
37 | } |
||
38 | |||
39 | static __inline__ void apic_wait_icr_idle(void) |
||
40 | { |
||
41 | do { } while ( apic_read( APIC_ICR ) & APIC_ICR_BUSY ); |
||
42 | } |
||
43 | |||
44 | #ifdef CONFIG_X86_GOOD_APIC |
||
45 | # define FORCE_READ_AROUND_WRITE 0 |
||
46 | # define apic_read_around(x) |
||
47 | # define apic_write_around(x,y) apic_write((x),(y)) |
||
48 | #else |
||
49 | # define FORCE_READ_AROUND_WRITE 1 |
||
50 | # define apic_read_around(x) apic_read(x) |
||
51 | # define apic_write_around(x,y) apic_write_atomic((x),(y)) |
||
52 | #endif |
||
53 | |||
54 | static inline void ack_APIC_irq(void) |
||
55 | { |
||
56 | /* |
||
57 | * ack_APIC_irq() actually gets compiled as a single instruction: |
||
58 | * - a single rmw on Pentium/82489DX |
||
59 | * - a single write on P6+ cores (CONFIG_X86_GOOD_APIC) |
||
60 | * ... yummie. |
||
61 | */ |
||
62 | |||
63 | /* Docs say use 0 for future compatibility */ |
||
64 | apic_write_around(APIC_EOI, 0); |
||
65 | } |
||
66 | |||
67 | extern void (*wait_timer_tick)(void); |
||
68 | |||
69 | extern int get_maxlvt(void); |
||
70 | extern void clear_local_APIC(void); |
||
71 | extern void connect_bsp_APIC (void); |
||
72 | extern void disconnect_bsp_APIC (void); |
||
73 | extern void disable_local_APIC (void); |
||
74 | extern int verify_local_APIC (void); |
||
75 | extern void cache_APIC_registers (void); |
||
76 | extern void sync_Arb_IDs (void); |
||
77 | extern void init_bsp_APIC (void); |
||
78 | extern void setup_local_APIC (void); |
||
79 | extern void init_apic_mappings (void); |
||
80 | extern void smp_local_timer_interrupt (struct pt_regs * regs); |
||
81 | extern void setup_boot_APIC_clock (void); |
||
82 | extern void setup_secondary_APIC_clock (void); |
||
83 | extern void setup_apic_nmi_watchdog (void); |
||
84 | extern void disable_lapic_nmi_watchdog(void); |
||
85 | extern void enable_lapic_nmi_watchdog(void); |
||
86 | extern void disable_timer_nmi_watchdog(void); |
||
87 | extern void enable_timer_nmi_watchdog(void); |
||
88 | extern inline void nmi_watchdog_tick (struct pt_regs * regs); |
||
89 | extern int APIC_init_uniprocessor (void); |
||
90 | extern void disable_APIC_timer(void); |
||
91 | extern void enable_APIC_timer(void); |
||
92 | |||
93 | extern int check_nmi_watchdog (void); |
||
94 | extern void enable_NMI_through_LVT0 (void * dummy); |
||
95 | |||
96 | extern unsigned int nmi_watchdog; |
||
97 | #define NMI_NONE 0 |
||
98 | #define NMI_IO_APIC 1 |
||
99 | #define NMI_LOCAL_APIC 2 |
||
100 | #define NMI_INVALID 3 |
||
101 | |||
102 | #endif /* CONFIG_X86_LOCAL_APIC */ |
||
103 | |||
104 | #endif /* __ASM_APIC_H */ |