Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 1 | #ifndef _ASM_X86_APIC_H |
| 2 | #define _ASM_X86_APIC_H |
| 3 | |
| 4 | #include <linux/pm.h> |
| 5 | #include <linux/delay.h> |
Maciej W. Rozycki | 593f4a7 | 2008-07-16 19:15:30 +0100 | [diff] [blame] | 6 | |
| 7 | #include <asm/alternative.h> |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 8 | #include <asm/fixmap.h> |
| 9 | #include <asm/apicdef.h> |
| 10 | #include <asm/processor.h> |
| 11 | #include <asm/system.h> |
| 12 | |
| 13 | #define ARCH_APICTIMER_STOPS_ON_C3 1 |
| 14 | |
| 15 | #define Dprintk(x...) |
| 16 | |
| 17 | /* |
| 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 | |
| 36 | extern void generic_apic_probe(void); |
| 37 | |
| 38 | #ifdef CONFIG_X86_LOCAL_APIC |
| 39 | |
Maciej W. Rozycki | baa1318 | 2008-07-14 18:44:51 +0100 | [diff] [blame^] | 40 | extern unsigned int apic_verbosity; |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 41 | extern int local_apic_timer_c2_ok; |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 42 | |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 43 | extern int ioapic_force; |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 44 | |
Yinghai Lu | 3c999f1 | 2008-06-20 16:11:20 -0700 | [diff] [blame] | 45 | extern int disable_apic; |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 46 | /* |
| 47 | * Basic functions accessing APICs. |
| 48 | */ |
| 49 | #ifdef CONFIG_PARAVIRT |
| 50 | #include <asm/paravirt.h> |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 51 | #else |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 52 | #define apic_write native_apic_write |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 53 | #define apic_read native_apic_read |
| 54 | #define setup_boot_clock setup_boot_APIC_clock |
| 55 | #define setup_secondary_clock setup_secondary_APIC_clock |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 56 | #endif |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 57 | |
Ravikiran G Thirumalai | aa7d8e25e | 2008-03-20 00:41:16 -0700 | [diff] [blame] | 58 | extern int is_vsmp_box(void); |
| 59 | |
Harvey Harrison | 341d885 | 2008-01-30 13:31:17 +0100 | [diff] [blame] | 60 | static inline void native_apic_write(unsigned long reg, u32 v) |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 61 | { |
Maciej W. Rozycki | 593f4a7 | 2008-07-16 19:15:30 +0100 | [diff] [blame] | 62 | volatile u32 *addr = (volatile u32 *)(APIC_BASE + reg); |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 63 | |
Maciej W. Rozycki | 593f4a7 | 2008-07-16 19:15:30 +0100 | [diff] [blame] | 64 | alternative_io("movl %0, %1", "xchgl %0, %1", X86_FEATURE_11AP, |
| 65 | ASM_OUTPUT2("=r" (v), "=m" (*addr)), |
| 66 | ASM_OUTPUT2("0" (v), "m" (*addr))); |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 67 | } |
| 68 | |
Harvey Harrison | 341d885 | 2008-01-30 13:31:17 +0100 | [diff] [blame] | 69 | static inline u32 native_apic_read(unsigned long reg) |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 70 | { |
| 71 | return *((volatile u32 *)(APIC_BASE + reg)); |
| 72 | } |
| 73 | |
| 74 | extern void apic_wait_icr_idle(void); |
| 75 | extern u32 safe_apic_wait_icr_idle(void); |
| 76 | extern int get_physical_broadcast(void); |
| 77 | |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 78 | static inline void ack_APIC_irq(void) |
| 79 | { |
| 80 | /* |
| 81 | * ack_APIC_irq() actually gets compiled as a single instruction: |
| 82 | * - a single rmw on Pentium/82489DX |
| 83 | * - a single write on P6+ cores (CONFIG_X86_GOOD_APIC) |
| 84 | * ... yummie. |
| 85 | */ |
| 86 | |
| 87 | /* Docs say use 0 for future compatibility */ |
Maciej W. Rozycki | 593f4a7 | 2008-07-16 19:15:30 +0100 | [diff] [blame] | 88 | apic_write(APIC_EOI, 0); |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | extern int lapic_get_maxlvt(void); |
| 92 | extern void clear_local_APIC(void); |
| 93 | extern void connect_bsp_APIC(void); |
| 94 | extern void disconnect_bsp_APIC(int virt_wire_setup); |
| 95 | extern void disable_local_APIC(void); |
| 96 | extern void lapic_shutdown(void); |
| 97 | extern int verify_local_APIC(void); |
| 98 | extern void cache_APIC_registers(void); |
| 99 | extern void sync_Arb_IDs(void); |
| 100 | extern void init_bsp_APIC(void); |
| 101 | extern void setup_local_APIC(void); |
Andi Kleen | 739f33b | 2008-01-30 13:30:40 +0100 | [diff] [blame] | 102 | extern void end_local_APIC_setup(void); |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 103 | extern void init_apic_mappings(void); |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 104 | extern void setup_boot_APIC_clock(void); |
| 105 | extern void setup_secondary_APIC_clock(void); |
| 106 | extern int APIC_init_uniprocessor(void); |
Jan Beulich | e942710 | 2008-01-30 13:31:24 +0100 | [diff] [blame] | 107 | extern void enable_NMI_through_LVT0(void); |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 108 | |
| 109 | /* |
| 110 | * On 32bit this is mach-xxx local |
| 111 | */ |
| 112 | #ifdef CONFIG_X86_64 |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 113 | extern void early_init_lapic_mapping(void); |
Alok Kataria | 8fbbc4b | 2008-07-01 11:43:34 -0700 | [diff] [blame] | 114 | extern int apic_is_clustered_box(void); |
| 115 | #else |
| 116 | static inline int apic_is_clustered_box(void) |
| 117 | { |
| 118 | return 0; |
| 119 | } |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 120 | #endif |
| 121 | |
Robert Richter | 7b83dae | 2008-01-30 13:30:40 +0100 | [diff] [blame] | 122 | extern u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask); |
| 123 | extern u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask); |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 124 | |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 125 | |
| 126 | #else /* !CONFIG_X86_LOCAL_APIC */ |
| 127 | static inline void lapic_shutdown(void) { } |
| 128 | #define local_apic_timer_c2_ok 1 |
Yinghai Lu | f3294a3 | 2008-06-27 01:41:56 -0700 | [diff] [blame] | 129 | static inline void init_apic_mappings(void) { } |
Thomas Gleixner | 67c5fc5 | 2008-01-30 13:30:15 +0100 | [diff] [blame] | 130 | |
| 131 | #endif /* !CONFIG_X86_LOCAL_APIC */ |
| 132 | |
| 133 | #endif /* __ASM_APIC_H */ |