Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Local APIC handling, local APIC timers |
| 3 | * |
Ingo Molnar | 8f47e16 | 2009-01-31 02:03:42 +0100 | [diff] [blame] | 4 | * (c) 1999, 2000, 2009 Ingo Molnar <mingo@redhat.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 6 | * Fixes |
| 7 | * Maciej W. Rozycki : Bits for genuine 82489DX APICs; |
| 8 | * thanks to Eric Gilmore |
| 9 | * and Rolf G. Tews |
| 10 | * for testing these extensively. |
| 11 | * Maciej W. Rozycki : Various updates and fixes. |
| 12 | * Mikael Pettersson : Power Management for UP-APIC. |
| 13 | * Pavel Machek and |
| 14 | * Mikael Pettersson : PM converted to driver model. |
| 15 | */ |
| 16 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 17 | #include <linux/perf_event.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/kernel_stat.h> |
Ingo Molnar | d1de36f | 2009-01-31 01:59:14 +0100 | [diff] [blame] | 19 | #include <linux/mc146818rtc.h> |
Thomas Gleixner | 70a2002 | 2008-01-30 13:30:18 +0100 | [diff] [blame] | 20 | #include <linux/acpi_pmtmr.h> |
Ingo Molnar | d1de36f | 2009-01-31 01:59:14 +0100 | [diff] [blame] | 21 | #include <linux/clockchips.h> |
| 22 | #include <linux/interrupt.h> |
| 23 | #include <linux/bootmem.h> |
Frederic Weisbecker | bcbc4f2 | 2008-12-09 23:54:20 +0100 | [diff] [blame] | 24 | #include <linux/ftrace.h> |
Ingo Molnar | d1de36f | 2009-01-31 01:59:14 +0100 | [diff] [blame] | 25 | #include <linux/ioport.h> |
| 26 | #include <linux/module.h> |
| 27 | #include <linux/sysdev.h> |
| 28 | #include <linux/delay.h> |
Jaswinder Singh Rajput | e423e33 | 2009-01-04 16:16:25 +0530 | [diff] [blame] | 29 | #include <linux/timex.h> |
Ingo Molnar | d1de36f | 2009-01-31 01:59:14 +0100 | [diff] [blame] | 30 | #include <linux/dmar.h> |
| 31 | #include <linux/init.h> |
| 32 | #include <linux/cpu.h> |
| 33 | #include <linux/dmi.h> |
| 34 | #include <linux/nmi.h> |
| 35 | #include <linux/smp.h> |
| 36 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 38 | #include <asm/perf_event.h> |
Thomas Gleixner | 736deca | 2009-08-19 12:35:53 +0200 | [diff] [blame] | 39 | #include <asm/x86_init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <asm/pgalloc.h> |
Ingo Molnar | d1de36f | 2009-01-31 01:59:14 +0100 | [diff] [blame] | 41 | #include <asm/atomic.h> |
| 42 | #include <asm/mpspec.h> |
Yinghai Lu | 773763d | 2008-08-24 02:01:52 -0700 | [diff] [blame] | 43 | #include <asm/i8253.h> |
Ingo Molnar | d1de36f | 2009-01-31 01:59:14 +0100 | [diff] [blame] | 44 | #include <asm/i8259.h> |
Andi Kleen | 73dea47 | 2006-02-03 21:50:50 +0100 | [diff] [blame] | 45 | #include <asm/proto.h> |
Andi Kleen | 2c8c0e6 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 46 | #include <asm/apic.h> |
Ingo Molnar | d1de36f | 2009-01-31 01:59:14 +0100 | [diff] [blame] | 47 | #include <asm/desc.h> |
| 48 | #include <asm/hpet.h> |
| 49 | #include <asm/idle.h> |
| 50 | #include <asm/mtrr.h> |
Jaswinder Singh Rajput | 2bc1379 | 2009-01-11 20:34:47 +0530 | [diff] [blame] | 51 | #include <asm/smp.h> |
Andi Kleen | be71b85 | 2009-02-12 13:49:38 +0100 | [diff] [blame] | 52 | #include <asm/mce.h> |
Gleb Natapov | ce69a78 | 2009-07-20 15:24:17 +0300 | [diff] [blame] | 53 | #include <asm/kvm_para.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Brian Gerst | ec70de8 | 2009-01-27 12:56:47 +0900 | [diff] [blame] | 55 | unsigned int num_processors; |
Ingo Molnar | fdbecd9 | 2009-01-31 03:57:12 +0100 | [diff] [blame] | 56 | |
Brian Gerst | ec70de8 | 2009-01-27 12:56:47 +0900 | [diff] [blame] | 57 | unsigned disabled_cpus __cpuinitdata; |
Ingo Molnar | fdbecd9 | 2009-01-31 03:57:12 +0100 | [diff] [blame] | 58 | |
Brian Gerst | ec70de8 | 2009-01-27 12:56:47 +0900 | [diff] [blame] | 59 | /* Processor that is doing the boot up */ |
| 60 | unsigned int boot_cpu_physical_apicid = -1U; |
Glauber Costa | 5af5573 | 2008-03-25 13:28:56 -0300 | [diff] [blame] | 61 | |
Cyrill Gorcunov | 80e5609 | 2008-08-24 02:01:42 -0700 | [diff] [blame] | 62 | /* |
Ingo Molnar | fdbecd9 | 2009-01-31 03:57:12 +0100 | [diff] [blame] | 63 | * The highest APIC ID seen during enumeration. |
| 64 | * |
Suresh Siddha | 2fbd07a | 2009-09-18 19:29:59 -0700 | [diff] [blame] | 65 | * On AMD, this determines the messaging protocol we can use: if all APIC IDs |
Ingo Molnar | fdbecd9 | 2009-01-31 03:57:12 +0100 | [diff] [blame] | 66 | * are in the 0 ... 7 range, then we can use logical addressing which |
| 67 | * has some performance advantages (better broadcasting). |
| 68 | * |
| 69 | * If there's an APIC ID above 8, we use physical addressing. |
Cyrill Gorcunov | 80e5609 | 2008-08-24 02:01:42 -0700 | [diff] [blame] | 70 | */ |
Brian Gerst | ec70de8 | 2009-01-27 12:56:47 +0900 | [diff] [blame] | 71 | unsigned int max_physical_apicid; |
| 72 | |
Ingo Molnar | fdbecd9 | 2009-01-31 03:57:12 +0100 | [diff] [blame] | 73 | /* |
| 74 | * Bitmask of physically existing CPUs: |
| 75 | */ |
Brian Gerst | ec70de8 | 2009-01-27 12:56:47 +0900 | [diff] [blame] | 76 | physid_mask_t phys_cpu_present_map; |
| 77 | |
| 78 | /* |
| 79 | * Map cpu index to physical APIC ID |
| 80 | */ |
| 81 | DEFINE_EARLY_PER_CPU(u16, x86_cpu_to_apicid, BAD_APICID); |
| 82 | DEFINE_EARLY_PER_CPU(u16, x86_bios_cpu_apicid, BAD_APICID); |
| 83 | EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_apicid); |
| 84 | EXPORT_EARLY_PER_CPU_SYMBOL(x86_bios_cpu_apicid); |
Cyrill Gorcunov | 80e5609 | 2008-08-24 02:01:42 -0700 | [diff] [blame] | 85 | |
Yinghai Lu | b3c5117 | 2008-08-24 02:01:46 -0700 | [diff] [blame] | 86 | #ifdef CONFIG_X86_32 |
| 87 | /* |
| 88 | * Knob to control our willingness to enable the local APIC. |
| 89 | * |
| 90 | * +1=force-enable |
| 91 | */ |
| 92 | static int force_enable_local_apic; |
| 93 | /* |
| 94 | * APIC command line parameters |
| 95 | */ |
| 96 | static int __init parse_lapic(char *arg) |
| 97 | { |
| 98 | force_enable_local_apic = 1; |
| 99 | return 0; |
| 100 | } |
| 101 | early_param("lapic", parse_lapic); |
Yinghai Lu | f28c0ae | 2008-08-24 02:01:49 -0700 | [diff] [blame] | 102 | /* Local APIC was disabled by the BIOS and enabled by the kernel */ |
| 103 | static int enabled_via_apicbase; |
| 104 | |
Cyrill Gorcunov | c0eaa45 | 2009-04-12 20:47:40 +0400 | [diff] [blame] | 105 | /* |
| 106 | * Handle interrupt mode configuration register (IMCR). |
| 107 | * This register controls whether the interrupt signals |
| 108 | * that reach the BSP come from the master PIC or from the |
| 109 | * local APIC. Before entering Symmetric I/O Mode, either |
| 110 | * the BIOS or the operating system must switch out of |
| 111 | * PIC Mode by changing the IMCR. |
| 112 | */ |
Alexander van Heukelum | 5cda395 | 2009-04-13 17:39:24 +0200 | [diff] [blame] | 113 | static inline void imcr_pic_to_apic(void) |
Cyrill Gorcunov | c0eaa45 | 2009-04-12 20:47:40 +0400 | [diff] [blame] | 114 | { |
| 115 | /* select IMCR register */ |
| 116 | outb(0x70, 0x22); |
| 117 | /* NMI and 8259 INTR go through APIC */ |
| 118 | outb(0x01, 0x23); |
| 119 | } |
| 120 | |
Alexander van Heukelum | 5cda395 | 2009-04-13 17:39:24 +0200 | [diff] [blame] | 121 | static inline void imcr_apic_to_pic(void) |
Cyrill Gorcunov | c0eaa45 | 2009-04-12 20:47:40 +0400 | [diff] [blame] | 122 | { |
| 123 | /* select IMCR register */ |
| 124 | outb(0x70, 0x22); |
| 125 | /* NMI and 8259 INTR go directly to BSP */ |
| 126 | outb(0x00, 0x23); |
| 127 | } |
Yinghai Lu | b3c5117 | 2008-08-24 02:01:46 -0700 | [diff] [blame] | 128 | #endif |
| 129 | |
| 130 | #ifdef CONFIG_X86_64 |
Chris Wright | bc1d99c | 2007-10-12 23:04:23 +0200 | [diff] [blame] | 131 | static int apic_calibrate_pmtmr __initdata; |
Yinghai Lu | b3c5117 | 2008-08-24 02:01:46 -0700 | [diff] [blame] | 132 | static __init int setup_apicpmtimer(char *s) |
| 133 | { |
| 134 | apic_calibrate_pmtmr = 1; |
| 135 | notsc_setup(NULL); |
| 136 | return 0; |
| 137 | } |
| 138 | __setup("apicpmtimer", setup_apicpmtimer); |
| 139 | #endif |
| 140 | |
Suresh Siddha | fc1edaf | 2009-04-20 13:02:27 -0700 | [diff] [blame] | 141 | int x2apic_mode; |
Yinghai Lu | 06cd9a7 | 2009-02-16 17:29:58 -0800 | [diff] [blame] | 142 | #ifdef CONFIG_X86_X2APIC |
Suresh Siddha | 6e1cb38 | 2008-07-10 11:16:58 -0700 | [diff] [blame] | 143 | /* x2apic enabled before OS handover */ |
Jaswinder Singh | b6b301a | 2008-12-23 21:52:33 +0530 | [diff] [blame] | 144 | static int x2apic_preenabled; |
Yinghai Lu | 49899ea | 2008-08-24 02:01:47 -0700 | [diff] [blame] | 145 | static __init int setup_nox2apic(char *str) |
| 146 | { |
Suresh Siddha | 39d83a5 | 2009-04-20 13:02:29 -0700 | [diff] [blame] | 147 | if (x2apic_enabled()) { |
| 148 | pr_warning("Bios already enabled x2apic, " |
| 149 | "can't enforce nox2apic"); |
| 150 | return 0; |
| 151 | } |
| 152 | |
Yinghai Lu | 49899ea | 2008-08-24 02:01:47 -0700 | [diff] [blame] | 153 | setup_clear_cpu_cap(X86_FEATURE_X2APIC); |
| 154 | return 0; |
| 155 | } |
| 156 | early_param("nox2apic", setup_nox2apic); |
| 157 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | |
Yinghai Lu | b3c5117 | 2008-08-24 02:01:46 -0700 | [diff] [blame] | 159 | unsigned long mp_lapic_addr; |
| 160 | int disable_apic; |
| 161 | /* Disable local APIC timer from the kernel commandline or via dmi quirk */ |
| 162 | static int disable_apic_timer __cpuinitdata; |
Hiroshi Shimamoto | e83a5fd | 2008-01-30 13:32:35 +0100 | [diff] [blame] | 163 | /* Local APIC timer works in C2 */ |
Linus Torvalds | 2e7c283 | 2007-03-23 11:32:31 -0700 | [diff] [blame] | 164 | int local_apic_timer_c2_ok; |
| 165 | EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok); |
| 166 | |
Yinghai Lu | efa2559 | 2008-08-19 20:50:36 -0700 | [diff] [blame] | 167 | int first_system_vector = 0xfe; |
| 168 | |
Hiroshi Shimamoto | e83a5fd | 2008-01-30 13:32:35 +0100 | [diff] [blame] | 169 | /* |
| 170 | * Debug level, exported for io_apic.c |
| 171 | */ |
Maciej W. Rozycki | baa1318 | 2008-07-14 18:44:51 +0100 | [diff] [blame] | 172 | unsigned int apic_verbosity; |
Hiroshi Shimamoto | e83a5fd | 2008-01-30 13:32:35 +0100 | [diff] [blame] | 173 | |
Cyrill Gorcunov | 89c38c2 | 2008-08-24 02:01:43 -0700 | [diff] [blame] | 174 | int pic_mode; |
| 175 | |
Alexey Starikovskiy | bab4b27 | 2008-05-19 19:47:03 +0400 | [diff] [blame] | 176 | /* Have we found an MP table */ |
| 177 | int smp_found_config; |
| 178 | |
Aaron Durbin | 3992872 | 2006-12-07 02:14:01 +0100 | [diff] [blame] | 179 | static struct resource lapic_resource = { |
| 180 | .name = "Local APIC", |
| 181 | .flags = IORESOURCE_MEM | IORESOURCE_BUSY, |
| 182 | }; |
| 183 | |
Thomas Gleixner | d03030e | 2007-10-12 23:04:06 +0200 | [diff] [blame] | 184 | static unsigned int calibration_result; |
| 185 | |
Thomas Gleixner | ba7eda4 | 2007-10-12 23:04:07 +0200 | [diff] [blame] | 186 | static int lapic_next_event(unsigned long delta, |
| 187 | struct clock_event_device *evt); |
| 188 | static void lapic_timer_setup(enum clock_event_mode mode, |
| 189 | struct clock_event_device *evt); |
Mike Travis | 9628937 | 2008-12-31 18:08:46 -0800 | [diff] [blame] | 190 | static void lapic_timer_broadcast(const struct cpumask *mask); |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 191 | static void apic_pm_activate(void); |
Thomas Gleixner | ba7eda4 | 2007-10-12 23:04:07 +0200 | [diff] [blame] | 192 | |
Cyrill Gorcunov | 274cfe5 | 2008-08-16 23:21:53 +0400 | [diff] [blame] | 193 | /* |
| 194 | * The local apic timer can be used for any function which is CPU local. |
| 195 | */ |
Thomas Gleixner | ba7eda4 | 2007-10-12 23:04:07 +0200 | [diff] [blame] | 196 | static struct clock_event_device lapic_clockevent = { |
| 197 | .name = "lapic", |
| 198 | .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT |
| 199 | | CLOCK_EVT_FEAT_C3STOP | CLOCK_EVT_FEAT_DUMMY, |
| 200 | .shift = 32, |
| 201 | .set_mode = lapic_timer_setup, |
| 202 | .set_next_event = lapic_next_event, |
| 203 | .broadcast = lapic_timer_broadcast, |
| 204 | .rating = 100, |
| 205 | .irq = -1, |
| 206 | }; |
| 207 | static DEFINE_PER_CPU(struct clock_event_device, lapic_events); |
| 208 | |
Andi Kleen | d343289 | 2008-01-30 13:33:17 +0100 | [diff] [blame] | 209 | static unsigned long apic_phys; |
| 210 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 211 | /* |
| 212 | * Get the LAPIC version |
| 213 | */ |
| 214 | static inline int lapic_get_version(void) |
| 215 | { |
| 216 | return GET_APIC_VERSION(apic_read(APIC_LVR)); |
| 217 | } |
| 218 | |
| 219 | /* |
Cyrill Gorcunov | 9c80386 | 2008-08-16 23:21:54 +0400 | [diff] [blame] | 220 | * Check, if the APIC is integrated or a separate chip |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 221 | */ |
| 222 | static inline int lapic_is_integrated(void) |
| 223 | { |
Cyrill Gorcunov | 9c80386 | 2008-08-16 23:21:54 +0400 | [diff] [blame] | 224 | #ifdef CONFIG_X86_64 |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 225 | return 1; |
Cyrill Gorcunov | 9c80386 | 2008-08-16 23:21:54 +0400 | [diff] [blame] | 226 | #else |
| 227 | return APIC_INTEGRATED(lapic_get_version()); |
| 228 | #endif |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | /* |
| 232 | * Check, whether this is a modern or a first generation APIC |
| 233 | */ |
| 234 | static int modern_apic(void) |
| 235 | { |
| 236 | /* AMD systems use old APIC versions, so check the CPU */ |
| 237 | if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD && |
| 238 | boot_cpu_data.x86 >= 0xf) |
| 239 | return 1; |
| 240 | return lapic_get_version() >= 0x14; |
| 241 | } |
| 242 | |
Cyrill Gorcunov | 08306ce | 2009-04-12 20:47:41 +0400 | [diff] [blame] | 243 | /* |
Cyrill Gorcunov | a933c61 | 2009-10-14 00:07:04 +0400 | [diff] [blame] | 244 | * right after this call apic become NOOP driven |
| 245 | * so apic->write/read doesn't do anything |
Cyrill Gorcunov | 08306ce | 2009-04-12 20:47:41 +0400 | [diff] [blame] | 246 | */ |
| 247 | void apic_disable(void) |
| 248 | { |
Cyrill Gorcunov | f88f2b4 | 2009-10-15 19:04:16 +0400 | [diff] [blame] | 249 | pr_info("APIC: switched to apic NOOP\n"); |
Cyrill Gorcunov | a933c61 | 2009-10-14 00:07:04 +0400 | [diff] [blame] | 250 | apic = &apic_noop; |
Cyrill Gorcunov | 08306ce | 2009-04-12 20:47:41 +0400 | [diff] [blame] | 251 | } |
| 252 | |
Yinghai Lu | c1eeb2d | 2009-02-16 23:02:14 -0800 | [diff] [blame] | 253 | void native_apic_wait_icr_idle(void) |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 254 | { |
| 255 | while (apic_read(APIC_ICR) & APIC_ICR_BUSY) |
| 256 | cpu_relax(); |
| 257 | } |
| 258 | |
Yinghai Lu | c1eeb2d | 2009-02-16 23:02:14 -0800 | [diff] [blame] | 259 | u32 native_safe_apic_wait_icr_idle(void) |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 260 | { |
| 261 | u32 send_status; |
| 262 | int timeout; |
| 263 | |
| 264 | timeout = 0; |
| 265 | do { |
| 266 | send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY; |
| 267 | if (!send_status) |
| 268 | break; |
| 269 | udelay(100); |
| 270 | } while (timeout++ < 1000); |
| 271 | |
| 272 | return send_status; |
| 273 | } |
| 274 | |
Yinghai Lu | c1eeb2d | 2009-02-16 23:02:14 -0800 | [diff] [blame] | 275 | void native_apic_icr_write(u32 low, u32 id) |
Suresh Siddha | 1b374e4 | 2008-07-10 11:16:49 -0700 | [diff] [blame] | 276 | { |
Cyrill Gorcunov | ed4e5ec | 2008-08-15 13:51:20 +0200 | [diff] [blame] | 277 | apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id)); |
Suresh Siddha | 1b374e4 | 2008-07-10 11:16:49 -0700 | [diff] [blame] | 278 | apic_write(APIC_ICR, low); |
| 279 | } |
| 280 | |
Yinghai Lu | c1eeb2d | 2009-02-16 23:02:14 -0800 | [diff] [blame] | 281 | u64 native_apic_icr_read(void) |
Suresh Siddha | 1b374e4 | 2008-07-10 11:16:49 -0700 | [diff] [blame] | 282 | { |
| 283 | u32 icr1, icr2; |
| 284 | |
| 285 | icr2 = apic_read(APIC_ICR2); |
| 286 | icr1 = apic_read(APIC_ICR); |
| 287 | |
Cyrill Gorcunov | cf9768d7 | 2008-08-16 23:21:55 +0400 | [diff] [blame] | 288 | return icr1 | ((u64)icr2 << 32); |
Suresh Siddha | 1b374e4 | 2008-07-10 11:16:49 -0700 | [diff] [blame] | 289 | } |
| 290 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 291 | /** |
| 292 | * enable_NMI_through_LVT0 - enable NMI through local vector table 0 |
| 293 | */ |
Jan Beulich | e942710 | 2008-01-30 13:31:24 +0100 | [diff] [blame] | 294 | void __cpuinit enable_NMI_through_LVT0(void) |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 295 | { |
| 296 | unsigned int v; |
| 297 | |
| 298 | /* unmask and set to NMI */ |
| 299 | v = APIC_DM_NMI; |
Cyrill Gorcunov | d4c63ec | 2008-07-24 13:52:29 +0200 | [diff] [blame] | 300 | |
| 301 | /* Level triggered for 82489DX (32bit mode) */ |
| 302 | if (!lapic_is_integrated()) |
| 303 | v |= APIC_LVT_LEVEL_TRIGGER; |
| 304 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 305 | apic_write(APIC_LVT0, v); |
| 306 | } |
| 307 | |
Cyrill Gorcunov | 7c37e48 | 2008-08-24 02:01:40 -0700 | [diff] [blame] | 308 | #ifdef CONFIG_X86_32 |
| 309 | /** |
| 310 | * get_physical_broadcast - Get number of physical broadcast IDs |
| 311 | */ |
| 312 | int get_physical_broadcast(void) |
| 313 | { |
| 314 | return modern_apic() ? 0xff : 0xf; |
| 315 | } |
| 316 | #endif |
| 317 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 318 | /** |
| 319 | * lapic_get_maxlvt - get the maximum number of local vector table entries |
| 320 | */ |
| 321 | int lapic_get_maxlvt(void) |
| 322 | { |
Cyrill Gorcunov | 36a028d | 2008-07-24 13:52:28 +0200 | [diff] [blame] | 323 | unsigned int v; |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 324 | |
| 325 | v = apic_read(APIC_LVR); |
Cyrill Gorcunov | 36a028d | 2008-07-24 13:52:28 +0200 | [diff] [blame] | 326 | /* |
| 327 | * - we always have APIC integrated on 64bit mode |
| 328 | * - 82489DXs do not report # of LVT entries |
| 329 | */ |
| 330 | return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2; |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 331 | } |
| 332 | |
| 333 | /* |
Cyrill Gorcunov | 274cfe5 | 2008-08-16 23:21:53 +0400 | [diff] [blame] | 334 | * Local APIC timer |
| 335 | */ |
| 336 | |
Cyrill Gorcunov | c40aaec6 | 2008-08-18 20:45:55 +0400 | [diff] [blame] | 337 | /* Clock divisor */ |
Cyrill Gorcunov | c40aaec6 | 2008-08-18 20:45:55 +0400 | [diff] [blame] | 338 | #define APIC_DIVISOR 16 |
Cyrill Gorcunov | f07f4f9 | 2008-08-15 13:51:21 +0200 | [diff] [blame] | 339 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 340 | /* |
| 341 | * This function sets up the local APIC timer, with a timeout of |
| 342 | * 'clocks' APIC bus clock. During calibration we actually call |
| 343 | * this function twice on the boot CPU, once with a bogus timeout |
| 344 | * value, second time for real. The other (noncalibrating) CPUs |
| 345 | * call this function only once, with the real, calibrated value. |
| 346 | * |
| 347 | * We do reads before writes even if unnecessary, to get around the |
| 348 | * P5 APIC double write bug. |
| 349 | */ |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 350 | static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen) |
| 351 | { |
| 352 | unsigned int lvtt_value, tmp_value; |
| 353 | |
| 354 | lvtt_value = LOCAL_TIMER_VECTOR; |
| 355 | if (!oneshot) |
| 356 | lvtt_value |= APIC_LVT_TIMER_PERIODIC; |
Cyrill Gorcunov | f07f4f9 | 2008-08-15 13:51:21 +0200 | [diff] [blame] | 357 | if (!lapic_is_integrated()) |
| 358 | lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV); |
| 359 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 360 | if (!irqen) |
| 361 | lvtt_value |= APIC_LVT_MASKED; |
| 362 | |
| 363 | apic_write(APIC_LVTT, lvtt_value); |
| 364 | |
| 365 | /* |
| 366 | * Divide PICLK by 16 |
| 367 | */ |
| 368 | tmp_value = apic_read(APIC_TDCR); |
Cyrill Gorcunov | c40aaec6 | 2008-08-18 20:45:55 +0400 | [diff] [blame] | 369 | apic_write(APIC_TDCR, |
| 370 | (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) | |
| 371 | APIC_TDR_DIV_16); |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 372 | |
| 373 | if (!oneshot) |
Cyrill Gorcunov | f07f4f9 | 2008-08-15 13:51:21 +0200 | [diff] [blame] | 374 | apic_write(APIC_TMICT, clocks / APIC_DIVISOR); |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 375 | } |
| 376 | |
| 377 | /* |
Robert Richter | 7b83dae | 2008-01-30 13:30:40 +0100 | [diff] [blame] | 378 | * Setup extended LVT, AMD specific (K8, family 10h) |
| 379 | * |
| 380 | * Vector mappings are hard coded. On K8 only offset 0 (APIC500) and |
| 381 | * MCE interrupts are supported. Thus MCE offset must be set to 0. |
Robert Richter | 286f571 | 2008-07-22 21:08:46 +0200 | [diff] [blame] | 382 | * |
| 383 | * If mask=1, the LVT entry does not generate interrupts while mask=0 |
| 384 | * enables the vector. See also the BKDGs. |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 385 | */ |
Robert Richter | 7b83dae | 2008-01-30 13:30:40 +0100 | [diff] [blame] | 386 | |
| 387 | #define APIC_EILVT_LVTOFF_MCE 0 |
| 388 | #define APIC_EILVT_LVTOFF_IBS 1 |
| 389 | |
| 390 | static void setup_APIC_eilvt(u8 lvt_off, u8 vector, u8 msg_type, u8 mask) |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 391 | { |
Andreas Herrmann | 97a5271 | 2009-05-08 18:23:50 +0200 | [diff] [blame] | 392 | unsigned long reg = (lvt_off << 4) + APIC_EILVTn(0); |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 393 | unsigned int v = (mask << 16) | (msg_type << 8) | vector; |
| 394 | |
| 395 | apic_write(reg, v); |
| 396 | } |
| 397 | |
Robert Richter | 7b83dae | 2008-01-30 13:30:40 +0100 | [diff] [blame] | 398 | u8 setup_APIC_eilvt_mce(u8 vector, u8 msg_type, u8 mask) |
| 399 | { |
| 400 | setup_APIC_eilvt(APIC_EILVT_LVTOFF_MCE, vector, msg_type, mask); |
| 401 | return APIC_EILVT_LVTOFF_MCE; |
| 402 | } |
| 403 | |
| 404 | u8 setup_APIC_eilvt_ibs(u8 vector, u8 msg_type, u8 mask) |
| 405 | { |
| 406 | setup_APIC_eilvt(APIC_EILVT_LVTOFF_IBS, vector, msg_type, mask); |
| 407 | return APIC_EILVT_LVTOFF_IBS; |
| 408 | } |
Robert Richter | 6aa360e | 2008-07-23 15:28:14 +0200 | [diff] [blame] | 409 | EXPORT_SYMBOL_GPL(setup_APIC_eilvt_ibs); |
Robert Richter | 7b83dae | 2008-01-30 13:30:40 +0100 | [diff] [blame] | 410 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 411 | /* |
| 412 | * Program the next event, relative to now |
| 413 | */ |
Thomas Gleixner | ba7eda4 | 2007-10-12 23:04:07 +0200 | [diff] [blame] | 414 | static int lapic_next_event(unsigned long delta, |
| 415 | struct clock_event_device *evt) |
| 416 | { |
| 417 | apic_write(APIC_TMICT, delta); |
| 418 | return 0; |
| 419 | } |
| 420 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 421 | /* |
| 422 | * Setup the lapic timer in periodic or oneshot mode |
| 423 | */ |
Thomas Gleixner | ba7eda4 | 2007-10-12 23:04:07 +0200 | [diff] [blame] | 424 | static void lapic_timer_setup(enum clock_event_mode mode, |
| 425 | struct clock_event_device *evt) |
| 426 | { |
| 427 | unsigned long flags; |
| 428 | unsigned int v; |
| 429 | |
| 430 | /* Lapic used as dummy for broadcast ? */ |
| 431 | if (evt->features & CLOCK_EVT_FEAT_DUMMY) |
| 432 | return; |
| 433 | |
| 434 | local_irq_save(flags); |
| 435 | |
| 436 | switch (mode) { |
| 437 | case CLOCK_EVT_MODE_PERIODIC: |
| 438 | case CLOCK_EVT_MODE_ONESHOT: |
| 439 | __setup_APIC_LVTT(calibration_result, |
| 440 | mode != CLOCK_EVT_MODE_PERIODIC, 1); |
| 441 | break; |
| 442 | case CLOCK_EVT_MODE_UNUSED: |
| 443 | case CLOCK_EVT_MODE_SHUTDOWN: |
| 444 | v = apic_read(APIC_LVTT); |
| 445 | v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR); |
| 446 | apic_write(APIC_LVTT, v); |
Andreas Herrmann | 6f9b410 | 2009-10-27 11:01:38 +0100 | [diff] [blame] | 447 | apic_write(APIC_TMICT, 0); |
Thomas Gleixner | ba7eda4 | 2007-10-12 23:04:07 +0200 | [diff] [blame] | 448 | break; |
| 449 | case CLOCK_EVT_MODE_RESUME: |
| 450 | /* Nothing to do here */ |
| 451 | break; |
| 452 | } |
| 453 | |
| 454 | local_irq_restore(flags); |
| 455 | } |
| 456 | |
| 457 | /* |
| 458 | * Local APIC timer broadcast function |
| 459 | */ |
Mike Travis | 9628937 | 2008-12-31 18:08:46 -0800 | [diff] [blame] | 460 | static void lapic_timer_broadcast(const struct cpumask *mask) |
Thomas Gleixner | ba7eda4 | 2007-10-12 23:04:07 +0200 | [diff] [blame] | 461 | { |
| 462 | #ifdef CONFIG_SMP |
Ingo Molnar | dac5f41 | 2009-01-28 15:42:24 +0100 | [diff] [blame] | 463 | apic->send_IPI_mask(mask, LOCAL_TIMER_VECTOR); |
Thomas Gleixner | ba7eda4 | 2007-10-12 23:04:07 +0200 | [diff] [blame] | 464 | #endif |
| 465 | } |
| 466 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 467 | /* |
| 468 | * Setup the local APIC timer for this CPU. Copy the initilized values |
| 469 | * of the boot CPU and register the clock event in the framework. |
| 470 | */ |
Cyrill Gorcunov | db4b552 | 2008-08-24 02:01:39 -0700 | [diff] [blame] | 471 | static void __cpuinit setup_APIC_timer(void) |
Fernando Luis VazquezCao | 8339e9f | 2007-05-02 19:27:17 +0200 | [diff] [blame] | 472 | { |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 473 | struct clock_event_device *levt = &__get_cpu_var(lapic_events); |
| 474 | |
Venkatesh Pallipadi | db954b5 | 2009-04-06 18:51:29 -0700 | [diff] [blame] | 475 | if (cpu_has(¤t_cpu_data, X86_FEATURE_ARAT)) { |
| 476 | lapic_clockevent.features &= ~CLOCK_EVT_FEAT_C3STOP; |
| 477 | /* Make LAPIC timer preferrable over percpu HPET */ |
| 478 | lapic_clockevent.rating = 150; |
| 479 | } |
| 480 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 481 | memcpy(levt, &lapic_clockevent, sizeof(*levt)); |
Rusty Russell | 320ab2b | 2008-12-13 21:20:26 +1030 | [diff] [blame] | 482 | levt->cpumask = cpumask_of(smp_processor_id()); |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 483 | |
| 484 | clockevents_register_device(levt); |
Fernando Luis VazquezCao | 8339e9f | 2007-05-02 19:27:17 +0200 | [diff] [blame] | 485 | } |
| 486 | |
Yinghai Lu | 2f04fa8 | 2008-08-24 02:01:54 -0700 | [diff] [blame] | 487 | /* |
| 488 | * In this functions we calibrate APIC bus clocks to the external timer. |
| 489 | * |
| 490 | * We want to do the calibration only once since we want to have local timer |
| 491 | * irqs syncron. CPUs connected by the same APIC bus have the very same bus |
| 492 | * frequency. |
| 493 | * |
| 494 | * This was previously done by reading the PIT/HPET and waiting for a wrap |
| 495 | * around to find out, that a tick has elapsed. I have a box, where the PIT |
| 496 | * readout is broken, so it never gets out of the wait loop again. This was |
| 497 | * also reported by others. |
| 498 | * |
| 499 | * Monitoring the jiffies value is inaccurate and the clockevents |
| 500 | * infrastructure allows us to do a simple substitution of the interrupt |
| 501 | * handler. |
| 502 | * |
| 503 | * The calibration routine also uses the pm_timer when possible, as the PIT |
| 504 | * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes |
| 505 | * back to normal later in the boot process). |
| 506 | */ |
| 507 | |
| 508 | #define LAPIC_CAL_LOOPS (HZ/10) |
| 509 | |
| 510 | static __initdata int lapic_cal_loops = -1; |
| 511 | static __initdata long lapic_cal_t1, lapic_cal_t2; |
| 512 | static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2; |
| 513 | static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2; |
| 514 | static __initdata unsigned long lapic_cal_j1, lapic_cal_j2; |
| 515 | |
| 516 | /* |
| 517 | * Temporary interrupt handler. |
| 518 | */ |
| 519 | static void __init lapic_cal_handler(struct clock_event_device *dev) |
| 520 | { |
| 521 | unsigned long long tsc = 0; |
| 522 | long tapic = apic_read(APIC_TMCCT); |
| 523 | unsigned long pm = acpi_pm_read_early(); |
| 524 | |
| 525 | if (cpu_has_tsc) |
| 526 | rdtscll(tsc); |
| 527 | |
| 528 | switch (lapic_cal_loops++) { |
| 529 | case 0: |
| 530 | lapic_cal_t1 = tapic; |
| 531 | lapic_cal_tsc1 = tsc; |
| 532 | lapic_cal_pm1 = pm; |
| 533 | lapic_cal_j1 = jiffies; |
| 534 | break; |
| 535 | |
| 536 | case LAPIC_CAL_LOOPS: |
| 537 | lapic_cal_t2 = tapic; |
| 538 | lapic_cal_tsc2 = tsc; |
| 539 | if (pm < lapic_cal_pm1) |
| 540 | pm += ACPI_PM_OVRRUN; |
| 541 | lapic_cal_pm2 = pm; |
| 542 | lapic_cal_j2 = jiffies; |
| 543 | break; |
| 544 | } |
| 545 | } |
| 546 | |
Yasuaki Ishimatsu | 754ef0c | 2009-01-28 12:51:09 +0900 | [diff] [blame] | 547 | static int __init |
| 548 | calibrate_by_pmtimer(long deltapm, long *delta, long *deltatsc) |
Cyrill Gorcunov | b189892 | 2008-09-12 23:58:24 +0400 | [diff] [blame] | 549 | { |
| 550 | const long pm_100ms = PMTMR_TICKS_PER_SEC / 10; |
| 551 | const long pm_thresh = pm_100ms / 100; |
| 552 | unsigned long mult; |
| 553 | u64 res; |
| 554 | |
| 555 | #ifndef CONFIG_X86_PM_TIMER |
| 556 | return -1; |
| 557 | #endif |
| 558 | |
Yasuaki Ishimatsu | 39ba5d4 | 2009-01-28 12:52:24 +0900 | [diff] [blame] | 559 | apic_printk(APIC_VERBOSE, "... PM-Timer delta = %ld\n", deltapm); |
Cyrill Gorcunov | b189892 | 2008-09-12 23:58:24 +0400 | [diff] [blame] | 560 | |
| 561 | /* Check, if the PM timer is available */ |
| 562 | if (!deltapm) |
| 563 | return -1; |
| 564 | |
| 565 | mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22); |
| 566 | |
| 567 | if (deltapm > (pm_100ms - pm_thresh) && |
| 568 | deltapm < (pm_100ms + pm_thresh)) { |
Yasuaki Ishimatsu | 39ba5d4 | 2009-01-28 12:52:24 +0900 | [diff] [blame] | 569 | apic_printk(APIC_VERBOSE, "... PM-Timer result ok\n"); |
Yasuaki Ishimatsu | 754ef0c | 2009-01-28 12:51:09 +0900 | [diff] [blame] | 570 | return 0; |
| 571 | } |
| 572 | |
| 573 | res = (((u64)deltapm) * mult) >> 22; |
| 574 | do_div(res, 1000000); |
| 575 | pr_warning("APIC calibration not consistent " |
Yasuaki Ishimatsu | 39ba5d4 | 2009-01-28 12:52:24 +0900 | [diff] [blame] | 576 | "with PM-Timer: %ldms instead of 100ms\n",(long)res); |
Yasuaki Ishimatsu | 754ef0c | 2009-01-28 12:51:09 +0900 | [diff] [blame] | 577 | |
| 578 | /* Correct the lapic counter value */ |
| 579 | res = (((u64)(*delta)) * pm_100ms); |
| 580 | do_div(res, deltapm); |
| 581 | pr_info("APIC delta adjusted to PM-Timer: " |
| 582 | "%lu (%ld)\n", (unsigned long)res, *delta); |
| 583 | *delta = (long)res; |
| 584 | |
| 585 | /* Correct the tsc counter value */ |
| 586 | if (cpu_has_tsc) { |
| 587 | res = (((u64)(*deltatsc)) * pm_100ms); |
Cyrill Gorcunov | b189892 | 2008-09-12 23:58:24 +0400 | [diff] [blame] | 588 | do_div(res, deltapm); |
Yasuaki Ishimatsu | 754ef0c | 2009-01-28 12:51:09 +0900 | [diff] [blame] | 589 | apic_printk(APIC_VERBOSE, "TSC delta adjusted to " |
| 590 | "PM-Timer: %lu (%ld) \n", |
| 591 | (unsigned long)res, *deltatsc); |
| 592 | *deltatsc = (long)res; |
Cyrill Gorcunov | b189892 | 2008-09-12 23:58:24 +0400 | [diff] [blame] | 593 | } |
| 594 | |
| 595 | return 0; |
| 596 | } |
| 597 | |
Yinghai Lu | 2f04fa8 | 2008-08-24 02:01:54 -0700 | [diff] [blame] | 598 | static int __init calibrate_APIC_clock(void) |
| 599 | { |
| 600 | struct clock_event_device *levt = &__get_cpu_var(lapic_events); |
Yinghai Lu | 2f04fa8 | 2008-08-24 02:01:54 -0700 | [diff] [blame] | 601 | void (*real_handler)(struct clock_event_device *dev); |
| 602 | unsigned long deltaj; |
Yasuaki Ishimatsu | 754ef0c | 2009-01-28 12:51:09 +0900 | [diff] [blame] | 603 | long delta, deltatsc; |
Yinghai Lu | 2f04fa8 | 2008-08-24 02:01:54 -0700 | [diff] [blame] | 604 | int pm_referenced = 0; |
| 605 | |
| 606 | local_irq_disable(); |
| 607 | |
| 608 | /* Replace the global interrupt handler */ |
| 609 | real_handler = global_clock_event->event_handler; |
| 610 | global_clock_event->event_handler = lapic_cal_handler; |
| 611 | |
| 612 | /* |
Cyrill Gorcunov | 81608f3 | 2008-10-10 19:00:17 +0400 | [diff] [blame] | 613 | * Setup the APIC counter to maximum. There is no way the lapic |
Yinghai Lu | 2f04fa8 | 2008-08-24 02:01:54 -0700 | [diff] [blame] | 614 | * can underflow in the 100ms detection time frame |
| 615 | */ |
Cyrill Gorcunov | 81608f3 | 2008-10-10 19:00:17 +0400 | [diff] [blame] | 616 | __setup_APIC_LVTT(0xffffffff, 0, 0); |
Yinghai Lu | 2f04fa8 | 2008-08-24 02:01:54 -0700 | [diff] [blame] | 617 | |
| 618 | /* Let the interrupts run */ |
| 619 | local_irq_enable(); |
| 620 | |
| 621 | while (lapic_cal_loops <= LAPIC_CAL_LOOPS) |
| 622 | cpu_relax(); |
| 623 | |
| 624 | local_irq_disable(); |
| 625 | |
| 626 | /* Restore the real event handler */ |
| 627 | global_clock_event->event_handler = real_handler; |
| 628 | |
| 629 | /* Build delta t1-t2 as apic timer counts down */ |
| 630 | delta = lapic_cal_t1 - lapic_cal_t2; |
| 631 | apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta); |
| 632 | |
Yasuaki Ishimatsu | 754ef0c | 2009-01-28 12:51:09 +0900 | [diff] [blame] | 633 | deltatsc = (long)(lapic_cal_tsc2 - lapic_cal_tsc1); |
| 634 | |
Cyrill Gorcunov | b189892 | 2008-09-12 23:58:24 +0400 | [diff] [blame] | 635 | /* we trust the PM based calibration if possible */ |
| 636 | pm_referenced = !calibrate_by_pmtimer(lapic_cal_pm2 - lapic_cal_pm1, |
Yasuaki Ishimatsu | 754ef0c | 2009-01-28 12:51:09 +0900 | [diff] [blame] | 637 | &delta, &deltatsc); |
Yinghai Lu | 2f04fa8 | 2008-08-24 02:01:54 -0700 | [diff] [blame] | 638 | |
| 639 | /* Calculate the scaled math multiplication factor */ |
| 640 | lapic_clockevent.mult = div_sc(delta, TICK_NSEC * LAPIC_CAL_LOOPS, |
| 641 | lapic_clockevent.shift); |
| 642 | lapic_clockevent.max_delta_ns = |
| 643 | clockevent_delta2ns(0x7FFFFF, &lapic_clockevent); |
| 644 | lapic_clockevent.min_delta_ns = |
| 645 | clockevent_delta2ns(0xF, &lapic_clockevent); |
| 646 | |
| 647 | calibration_result = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS; |
| 648 | |
| 649 | apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta); |
Thomas Gleixner | 411462f | 2009-11-16 11:52:39 +0100 | [diff] [blame] | 650 | apic_printk(APIC_VERBOSE, "..... mult: %u\n", lapic_clockevent.mult); |
Yinghai Lu | 2f04fa8 | 2008-08-24 02:01:54 -0700 | [diff] [blame] | 651 | apic_printk(APIC_VERBOSE, "..... calibration result: %u\n", |
| 652 | calibration_result); |
| 653 | |
| 654 | if (cpu_has_tsc) { |
Yinghai Lu | 2f04fa8 | 2008-08-24 02:01:54 -0700 | [diff] [blame] | 655 | apic_printk(APIC_VERBOSE, "..... CPU clock speed is " |
| 656 | "%ld.%04ld MHz.\n", |
Yasuaki Ishimatsu | 754ef0c | 2009-01-28 12:51:09 +0900 | [diff] [blame] | 657 | (deltatsc / LAPIC_CAL_LOOPS) / (1000000 / HZ), |
| 658 | (deltatsc / LAPIC_CAL_LOOPS) % (1000000 / HZ)); |
Yinghai Lu | 2f04fa8 | 2008-08-24 02:01:54 -0700 | [diff] [blame] | 659 | } |
| 660 | |
| 661 | apic_printk(APIC_VERBOSE, "..... host bus clock speed is " |
| 662 | "%u.%04u MHz.\n", |
| 663 | calibration_result / (1000000 / HZ), |
| 664 | calibration_result % (1000000 / HZ)); |
| 665 | |
| 666 | /* |
| 667 | * Do a sanity check on the APIC calibration result |
| 668 | */ |
| 669 | if (calibration_result < (1000000 / HZ)) { |
| 670 | local_irq_enable(); |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 671 | pr_warning("APIC frequency too slow, disabling apic timer\n"); |
Yinghai Lu | 2f04fa8 | 2008-08-24 02:01:54 -0700 | [diff] [blame] | 672 | return -1; |
| 673 | } |
| 674 | |
| 675 | levt->features &= ~CLOCK_EVT_FEAT_DUMMY; |
| 676 | |
Cyrill Gorcunov | b189892 | 2008-09-12 23:58:24 +0400 | [diff] [blame] | 677 | /* |
| 678 | * PM timer calibration failed or not turned on |
| 679 | * so lets try APIC timer based calibration |
| 680 | */ |
Yinghai Lu | 2f04fa8 | 2008-08-24 02:01:54 -0700 | [diff] [blame] | 681 | if (!pm_referenced) { |
| 682 | apic_printk(APIC_VERBOSE, "... verify APIC timer\n"); |
| 683 | |
| 684 | /* |
| 685 | * Setup the apic timer manually |
| 686 | */ |
| 687 | levt->event_handler = lapic_cal_handler; |
| 688 | lapic_timer_setup(CLOCK_EVT_MODE_PERIODIC, levt); |
| 689 | lapic_cal_loops = -1; |
| 690 | |
| 691 | /* Let the interrupts run */ |
| 692 | local_irq_enable(); |
| 693 | |
| 694 | while (lapic_cal_loops <= LAPIC_CAL_LOOPS) |
| 695 | cpu_relax(); |
| 696 | |
Yinghai Lu | 2f04fa8 | 2008-08-24 02:01:54 -0700 | [diff] [blame] | 697 | /* Stop the lapic timer */ |
| 698 | lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, levt); |
| 699 | |
Yinghai Lu | 2f04fa8 | 2008-08-24 02:01:54 -0700 | [diff] [blame] | 700 | /* Jiffies delta */ |
| 701 | deltaj = lapic_cal_j2 - lapic_cal_j1; |
| 702 | apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj); |
| 703 | |
| 704 | /* Check, if the jiffies result is consistent */ |
| 705 | if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2) |
| 706 | apic_printk(APIC_VERBOSE, "... jiffies result ok\n"); |
| 707 | else |
| 708 | levt->features |= CLOCK_EVT_FEAT_DUMMY; |
| 709 | } else |
| 710 | local_irq_enable(); |
| 711 | |
| 712 | if (levt->features & CLOCK_EVT_FEAT_DUMMY) { |
Jaswinder Singh Rajput | e423e33 | 2009-01-04 16:16:25 +0530 | [diff] [blame] | 713 | pr_warning("APIC timer disabled due to verification failure\n"); |
Yinghai Lu | 2f04fa8 | 2008-08-24 02:01:54 -0700 | [diff] [blame] | 714 | return -1; |
| 715 | } |
| 716 | |
| 717 | return 0; |
| 718 | } |
| 719 | |
Hiroshi Shimamoto | e83a5fd | 2008-01-30 13:32:35 +0100 | [diff] [blame] | 720 | /* |
| 721 | * Setup the boot APIC |
| 722 | * |
| 723 | * Calibrate and verify the result. |
| 724 | */ |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 725 | void __init setup_boot_APIC_clock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | { |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 727 | /* |
Cyrill Gorcunov | 274cfe5 | 2008-08-16 23:21:53 +0400 | [diff] [blame] | 728 | * The local apic timer can be disabled via the kernel |
| 729 | * commandline or from the CPU detection code. Register the lapic |
| 730 | * timer as a dummy clock event source on SMP systems, so the |
| 731 | * broadcast mechanism is used. On UP systems simply ignore it. |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 732 | */ |
| 733 | if (disable_apic_timer) { |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 734 | pr_info("Disabling APIC timer\n"); |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 735 | /* No broadcast on UP ! */ |
Thomas Gleixner | 9d09951 | 2008-01-30 13:33:04 +0100 | [diff] [blame] | 736 | if (num_possible_cpus() > 1) { |
| 737 | lapic_clockevent.mult = 1; |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 738 | setup_APIC_timer(); |
Thomas Gleixner | 9d09951 | 2008-01-30 13:33:04 +0100 | [diff] [blame] | 739 | } |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 740 | return; |
| 741 | } |
Thomas Gleixner | 6935d1f | 2007-07-21 17:10:17 +0200 | [diff] [blame] | 742 | |
Cyrill Gorcunov | 274cfe5 | 2008-08-16 23:21:53 +0400 | [diff] [blame] | 743 | apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n" |
| 744 | "calibrating APIC timer ...\n"); |
| 745 | |
Cyrill Gorcunov | 89b3b1f4 | 2008-07-15 21:02:54 +0400 | [diff] [blame] | 746 | if (calibrate_APIC_clock()) { |
Thomas Gleixner | c2b84b3 | 2008-01-30 13:33:04 +0100 | [diff] [blame] | 747 | /* No broadcast on UP ! */ |
| 748 | if (num_possible_cpus() > 1) |
| 749 | setup_APIC_timer(); |
| 750 | return; |
| 751 | } |
| 752 | |
| 753 | /* |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 754 | * If nmi_watchdog is set to IO_APIC, we need the |
| 755 | * PIT/HPET going. Otherwise register lapic as a dummy |
| 756 | * device. |
| 757 | */ |
| 758 | if (nmi_watchdog != NMI_IO_APIC) |
| 759 | lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY; |
| 760 | else |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 761 | pr_warning("APIC timer registered as dummy," |
Cyrill Gorcunov | 116f570 | 2008-06-24 22:52:04 +0200 | [diff] [blame] | 762 | " due to nmi_watchdog=%d!\n", nmi_watchdog); |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 763 | |
Cyrill Gorcunov | 274cfe5 | 2008-08-16 23:21:53 +0400 | [diff] [blame] | 764 | /* Setup the lapic or request the broadcast */ |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 765 | setup_APIC_timer(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | } |
| 767 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 768 | void __cpuinit setup_secondary_APIC_clock(void) |
| 769 | { |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 770 | setup_APIC_timer(); |
| 771 | } |
| 772 | |
| 773 | /* |
| 774 | * The guts of the apic timer interrupt |
| 775 | */ |
| 776 | static void local_apic_timer_interrupt(void) |
| 777 | { |
| 778 | int cpu = smp_processor_id(); |
| 779 | struct clock_event_device *evt = &per_cpu(lapic_events, cpu); |
| 780 | |
| 781 | /* |
| 782 | * Normally we should not be here till LAPIC has been initialized but |
| 783 | * in some cases like kdump, its possible that there is a pending LAPIC |
| 784 | * timer interrupt from previous kernel's context and is delivered in |
| 785 | * new kernel the moment interrupts are enabled. |
| 786 | * |
| 787 | * Interrupts are enabled early and LAPIC is setup much later, hence |
| 788 | * its possible that when we get here evt->event_handler is NULL. |
| 789 | * Check for event_handler being NULL and discard the interrupt as |
| 790 | * spurious. |
| 791 | */ |
| 792 | if (!evt->event_handler) { |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 793 | pr_warning("Spurious LAPIC timer interrupt on cpu %d\n", cpu); |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 794 | /* Switch it off */ |
| 795 | lapic_timer_setup(CLOCK_EVT_MODE_SHUTDOWN, evt); |
| 796 | return; |
| 797 | } |
| 798 | |
| 799 | /* |
| 800 | * the NMI deadlock-detector uses this. |
| 801 | */ |
Hiroshi Shimamoto | 915b0d0 | 2008-12-08 19:19:26 -0800 | [diff] [blame] | 802 | inc_irq_stat(apic_timer_irqs); |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 803 | |
| 804 | evt->event_handler(evt); |
| 805 | } |
| 806 | |
| 807 | /* |
| 808 | * Local APIC timer interrupt. This is the most natural way for doing |
| 809 | * local interrupts, but local timer interrupts can be emulated by |
| 810 | * broadcast interrupts too. [in case the hw doesn't support APIC timers] |
| 811 | * |
| 812 | * [ if a single-CPU system runs an SMP kernel then we call the local |
| 813 | * interrupt as well. Thus we cannot inline the local irq ... ] |
| 814 | */ |
Frederic Weisbecker | bcbc4f2 | 2008-12-09 23:54:20 +0100 | [diff] [blame] | 815 | void __irq_entry smp_apic_timer_interrupt(struct pt_regs *regs) |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 816 | { |
| 817 | struct pt_regs *old_regs = set_irq_regs(regs); |
| 818 | |
| 819 | /* |
| 820 | * NOTE! We'd better ACK the irq immediately, |
| 821 | * because timer handling can be slow. |
| 822 | */ |
| 823 | ack_APIC_irq(); |
| 824 | /* |
| 825 | * update_process_times() expects us to have done irq_enter(). |
| 826 | * Besides, if we don't timer interrupts ignore the global |
| 827 | * interrupt lock, which is the WrongThing (tm) to do. |
| 828 | */ |
| 829 | exit_idle(); |
| 830 | irq_enter(); |
| 831 | local_apic_timer_interrupt(); |
| 832 | irq_exit(); |
Cyrill Gorcunov | 274cfe5 | 2008-08-16 23:21:53 +0400 | [diff] [blame] | 833 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 834 | set_irq_regs(old_regs); |
| 835 | } |
| 836 | |
| 837 | int setup_profiling_timer(unsigned int multiplier) |
| 838 | { |
| 839 | return -EINVAL; |
| 840 | } |
| 841 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 842 | /* |
| 843 | * Local APIC start and shutdown |
| 844 | */ |
| 845 | |
| 846 | /** |
| 847 | * clear_local_APIC - shutdown the local APIC |
| 848 | * |
| 849 | * This is called, when a CPU is disabled and before rebooting, so the state of |
| 850 | * the local APIC has no dangling leftovers. Also used to cleanout any BIOS |
| 851 | * leftovers during boot. |
| 852 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | void clear_local_APIC(void) |
| 854 | { |
Chuck Ebbert | 2584a82 | 2008-05-20 18:18:12 -0400 | [diff] [blame] | 855 | int maxlvt; |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 856 | u32 v; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | |
Andi Kleen | d343289 | 2008-01-30 13:33:17 +0100 | [diff] [blame] | 858 | /* APIC hasn't been mapped yet */ |
Suresh Siddha | fc1edaf | 2009-04-20 13:02:27 -0700 | [diff] [blame] | 859 | if (!x2apic_mode && !apic_phys) |
Andi Kleen | d343289 | 2008-01-30 13:33:17 +0100 | [diff] [blame] | 860 | return; |
| 861 | |
| 862 | maxlvt = lapic_get_maxlvt(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | /* |
Siddha, Suresh B | 704fc59 | 2006-06-26 13:59:53 +0200 | [diff] [blame] | 864 | * Masking an LVT entry can trigger a local APIC error |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | * if the vector is zero. Mask LVTERR first to prevent this. |
| 866 | */ |
| 867 | if (maxlvt >= 3) { |
| 868 | v = ERROR_APIC_VECTOR; /* any non-zero vector will do */ |
Andi Kleen | 11a8e77 | 2006-01-11 22:46:51 +0100 | [diff] [blame] | 869 | apic_write(APIC_LVTERR, v | APIC_LVT_MASKED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | } |
| 871 | /* |
| 872 | * Careful: we have to set masks only first to deassert |
| 873 | * any level-triggered sources. |
| 874 | */ |
| 875 | v = apic_read(APIC_LVTT); |
Andi Kleen | 11a8e77 | 2006-01-11 22:46:51 +0100 | [diff] [blame] | 876 | apic_write(APIC_LVTT, v | APIC_LVT_MASKED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | v = apic_read(APIC_LVT0); |
Andi Kleen | 11a8e77 | 2006-01-11 22:46:51 +0100 | [diff] [blame] | 878 | apic_write(APIC_LVT0, v | APIC_LVT_MASKED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | v = apic_read(APIC_LVT1); |
Andi Kleen | 11a8e77 | 2006-01-11 22:46:51 +0100 | [diff] [blame] | 880 | apic_write(APIC_LVT1, v | APIC_LVT_MASKED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | if (maxlvt >= 4) { |
| 882 | v = apic_read(APIC_LVTPC); |
Andi Kleen | 11a8e77 | 2006-01-11 22:46:51 +0100 | [diff] [blame] | 883 | apic_write(APIC_LVTPC, v | APIC_LVT_MASKED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | } |
| 885 | |
Cyrill Gorcunov | 6764014 | 2008-08-16 23:21:50 +0400 | [diff] [blame] | 886 | /* lets not touch this if we didn't frob it */ |
Andi Kleen | 4efc067 | 2009-04-28 19:07:31 +0200 | [diff] [blame] | 887 | #ifdef CONFIG_X86_THERMAL_VECTOR |
Cyrill Gorcunov | 6764014 | 2008-08-16 23:21:50 +0400 | [diff] [blame] | 888 | if (maxlvt >= 5) { |
| 889 | v = apic_read(APIC_LVTTHMR); |
| 890 | apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED); |
| 891 | } |
| 892 | #endif |
Andi Kleen | 5ca8681 | 2009-02-12 13:49:37 +0100 | [diff] [blame] | 893 | #ifdef CONFIG_X86_MCE_INTEL |
| 894 | if (maxlvt >= 6) { |
| 895 | v = apic_read(APIC_LVTCMCI); |
| 896 | if (!(v & APIC_LVT_MASKED)) |
| 897 | apic_write(APIC_LVTCMCI, v | APIC_LVT_MASKED); |
| 898 | } |
| 899 | #endif |
| 900 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | /* |
| 902 | * Clean APIC state for other OSs: |
| 903 | */ |
Andi Kleen | 11a8e77 | 2006-01-11 22:46:51 +0100 | [diff] [blame] | 904 | apic_write(APIC_LVTT, APIC_LVT_MASKED); |
| 905 | apic_write(APIC_LVT0, APIC_LVT_MASKED); |
| 906 | apic_write(APIC_LVT1, APIC_LVT_MASKED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | if (maxlvt >= 3) |
Andi Kleen | 11a8e77 | 2006-01-11 22:46:51 +0100 | [diff] [blame] | 908 | apic_write(APIC_LVTERR, APIC_LVT_MASKED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | if (maxlvt >= 4) |
Andi Kleen | 11a8e77 | 2006-01-11 22:46:51 +0100 | [diff] [blame] | 910 | apic_write(APIC_LVTPC, APIC_LVT_MASKED); |
Cyrill Gorcunov | 6764014 | 2008-08-16 23:21:50 +0400 | [diff] [blame] | 911 | |
| 912 | /* Integrated APIC (!82489DX) ? */ |
| 913 | if (lapic_is_integrated()) { |
| 914 | if (maxlvt > 3) |
| 915 | /* Clear ESR due to Pentium errata 3AP and 11AP */ |
| 916 | apic_write(APIC_ESR, 0); |
| 917 | apic_read(APIC_ESR); |
| 918 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | } |
| 920 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 921 | /** |
| 922 | * disable_local_APIC - clear and disable the local APIC |
| 923 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | void disable_local_APIC(void) |
| 925 | { |
| 926 | unsigned int value; |
| 927 | |
Jan Beulich | 4a13ad0 | 2009-01-14 12:28:51 +0000 | [diff] [blame] | 928 | /* APIC hasn't been mapped yet */ |
| 929 | if (!apic_phys) |
| 930 | return; |
| 931 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | clear_local_APIC(); |
| 933 | |
| 934 | /* |
| 935 | * Disable APIC (implies clearing of registers |
| 936 | * for 82489DX!). |
| 937 | */ |
| 938 | value = apic_read(APIC_SPIV); |
| 939 | value &= ~APIC_SPIV_APIC_ENABLED; |
Andi Kleen | 11a8e77 | 2006-01-11 22:46:51 +0100 | [diff] [blame] | 940 | apic_write(APIC_SPIV, value); |
Cyrill Gorcunov | 990b183 | 2008-08-18 20:45:51 +0400 | [diff] [blame] | 941 | |
| 942 | #ifdef CONFIG_X86_32 |
| 943 | /* |
| 944 | * When LAPIC was disabled by the BIOS and enabled by the kernel, |
| 945 | * restore the disabled state. |
| 946 | */ |
| 947 | if (enabled_via_apicbase) { |
| 948 | unsigned int l, h; |
| 949 | |
| 950 | rdmsr(MSR_IA32_APICBASE, l, h); |
| 951 | l &= ~MSR_IA32_APICBASE_ENABLE; |
| 952 | wrmsr(MSR_IA32_APICBASE, l, h); |
| 953 | } |
| 954 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | } |
| 956 | |
Cyrill Gorcunov | fe4024d | 2008-08-18 20:45:52 +0400 | [diff] [blame] | 957 | /* |
| 958 | * If Linux enabled the LAPIC against the BIOS default disable it down before |
| 959 | * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and |
| 960 | * not power-off. Additionally clear all LVT entries before disable_local_APIC |
| 961 | * for the case where Linux didn't enable the LAPIC. |
| 962 | */ |
Hiroshi Shimamoto | 9b7711f | 2007-10-19 18:21:11 -0700 | [diff] [blame] | 963 | void lapic_shutdown(void) |
| 964 | { |
| 965 | unsigned long flags; |
| 966 | |
Cyrill Gorcunov | 8312136 | 2009-09-15 11:12:30 +0400 | [diff] [blame] | 967 | if (!cpu_has_apic && !apic_from_smp_config()) |
Hiroshi Shimamoto | 9b7711f | 2007-10-19 18:21:11 -0700 | [diff] [blame] | 968 | return; |
| 969 | |
| 970 | local_irq_save(flags); |
| 971 | |
Cyrill Gorcunov | fe4024d | 2008-08-18 20:45:52 +0400 | [diff] [blame] | 972 | #ifdef CONFIG_X86_32 |
| 973 | if (!enabled_via_apicbase) |
| 974 | clear_local_APIC(); |
| 975 | else |
| 976 | #endif |
| 977 | disable_local_APIC(); |
| 978 | |
Hiroshi Shimamoto | 9b7711f | 2007-10-19 18:21:11 -0700 | [diff] [blame] | 979 | |
| 980 | local_irq_restore(flags); |
| 981 | } |
| 982 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | /* |
| 984 | * This is to verify that we're looking at a real local APIC. |
| 985 | * Check these against your board if the CPUs aren't getting |
| 986 | * started for no apparent reason. |
| 987 | */ |
| 988 | int __init verify_local_APIC(void) |
| 989 | { |
| 990 | unsigned int reg0, reg1; |
| 991 | |
| 992 | /* |
| 993 | * The version register is read-only in a real APIC. |
| 994 | */ |
| 995 | reg0 = apic_read(APIC_LVR); |
| 996 | apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0); |
| 997 | apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK); |
| 998 | reg1 = apic_read(APIC_LVR); |
| 999 | apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1); |
| 1000 | |
| 1001 | /* |
| 1002 | * The two version reads above should print the same |
| 1003 | * numbers. If the second one is different, then we |
| 1004 | * poke at a non-APIC. |
| 1005 | */ |
| 1006 | if (reg1 != reg0) |
| 1007 | return 0; |
| 1008 | |
| 1009 | /* |
| 1010 | * Check if the version looks reasonably. |
| 1011 | */ |
| 1012 | reg1 = GET_APIC_VERSION(reg0); |
| 1013 | if (reg1 == 0x00 || reg1 == 0xff) |
| 1014 | return 0; |
Thomas Gleixner | 37e650c | 2008-01-30 13:30:14 +0100 | [diff] [blame] | 1015 | reg1 = lapic_get_maxlvt(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | if (reg1 < 0x02 || reg1 == 0xff) |
| 1017 | return 0; |
| 1018 | |
| 1019 | /* |
| 1020 | * The ID register is read/write in a real APIC. |
| 1021 | */ |
Suresh Siddha | 2d7a66d | 2008-07-11 14:24:19 -0700 | [diff] [blame] | 1022 | reg0 = apic_read(APIC_ID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0); |
Ingo Molnar | 5b81272 | 2009-01-28 14:59:17 +0100 | [diff] [blame] | 1024 | apic_write(APIC_ID, reg0 ^ apic->apic_id_mask); |
Suresh Siddha | 2d7a66d | 2008-07-11 14:24:19 -0700 | [diff] [blame] | 1025 | reg1 = apic_read(APIC_ID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1); |
| 1027 | apic_write(APIC_ID, reg0); |
Ingo Molnar | 5b81272 | 2009-01-28 14:59:17 +0100 | [diff] [blame] | 1028 | if (reg1 != (reg0 ^ apic->apic_id_mask)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | return 0; |
| 1030 | |
| 1031 | /* |
| 1032 | * The next two are just to see if we have sane values. |
| 1033 | * They're only really relevant if we're in Virtual Wire |
| 1034 | * compatibility mode, but most boxes are anymore. |
| 1035 | */ |
| 1036 | reg0 = apic_read(APIC_LVT0); |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1037 | apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | reg1 = apic_read(APIC_LVT1); |
| 1039 | apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1); |
| 1040 | |
| 1041 | return 1; |
| 1042 | } |
| 1043 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1044 | /** |
| 1045 | * sync_Arb_IDs - synchronize APIC bus arbitration IDs |
| 1046 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | void __init sync_Arb_IDs(void) |
| 1048 | { |
Cyrill Gorcunov | 296cb95 | 2008-08-15 13:51:23 +0200 | [diff] [blame] | 1049 | /* |
| 1050 | * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not |
| 1051 | * needed on AMD. |
| 1052 | */ |
| 1053 | if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | return; |
| 1055 | |
| 1056 | /* |
| 1057 | * Wait for idle. |
| 1058 | */ |
| 1059 | apic_wait_icr_idle(); |
| 1060 | |
| 1061 | apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n"); |
Cyrill Gorcunov | 6f6da97 | 2008-08-15 23:05:19 +0400 | [diff] [blame] | 1062 | apic_write(APIC_ICR, APIC_DEST_ALLINC | |
| 1063 | APIC_INT_LEVELTRIG | APIC_DM_INIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | } |
| 1065 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | /* |
| 1067 | * An initial setup of the virtual wire mode. |
| 1068 | */ |
| 1069 | void __init init_bsp_APIC(void) |
| 1070 | { |
Andi Kleen | 11a8e77 | 2006-01-11 22:46:51 +0100 | [diff] [blame] | 1071 | unsigned int value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | |
| 1073 | /* |
| 1074 | * Don't do the setup now if we have a SMP BIOS as the |
| 1075 | * through-I/O-APIC virtual wire mode might be active. |
| 1076 | */ |
| 1077 | if (smp_found_config || !cpu_has_apic) |
| 1078 | return; |
| 1079 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | /* |
| 1081 | * Do not trust the local APIC being empty at bootup. |
| 1082 | */ |
| 1083 | clear_local_APIC(); |
| 1084 | |
| 1085 | /* |
| 1086 | * Enable APIC. |
| 1087 | */ |
| 1088 | value = apic_read(APIC_SPIV); |
| 1089 | value &= ~APIC_VECTOR_MASK; |
| 1090 | value |= APIC_SPIV_APIC_ENABLED; |
Cyrill Gorcunov | 638c041 | 2008-08-15 23:05:18 +0400 | [diff] [blame] | 1091 | |
| 1092 | #ifdef CONFIG_X86_32 |
| 1093 | /* This bit is reserved on P4/Xeon and should be cleared */ |
| 1094 | if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) && |
| 1095 | (boot_cpu_data.x86 == 15)) |
| 1096 | value &= ~APIC_SPIV_FOCUS_DISABLED; |
| 1097 | else |
| 1098 | #endif |
| 1099 | value |= APIC_SPIV_FOCUS_DISABLED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | value |= SPURIOUS_APIC_VECTOR; |
Andi Kleen | 11a8e77 | 2006-01-11 22:46:51 +0100 | [diff] [blame] | 1101 | apic_write(APIC_SPIV, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | |
| 1103 | /* |
| 1104 | * Set up the virtual wire mode. |
| 1105 | */ |
Andi Kleen | 11a8e77 | 2006-01-11 22:46:51 +0100 | [diff] [blame] | 1106 | apic_write(APIC_LVT0, APIC_DM_EXTINT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1107 | value = APIC_DM_NMI; |
Cyrill Gorcunov | 638c041 | 2008-08-15 23:05:18 +0400 | [diff] [blame] | 1108 | if (!lapic_is_integrated()) /* 82489DX */ |
| 1109 | value |= APIC_LVT_LEVEL_TRIGGER; |
Andi Kleen | 11a8e77 | 2006-01-11 22:46:51 +0100 | [diff] [blame] | 1110 | apic_write(APIC_LVT1, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | } |
| 1112 | |
Cyrill Gorcunov | c43da2f | 2008-08-18 20:45:54 +0400 | [diff] [blame] | 1113 | static void __cpuinit lapic_setup_esr(void) |
| 1114 | { |
Cyrill Gorcunov | 9df08f1 | 2008-09-14 11:55:37 +0400 | [diff] [blame] | 1115 | unsigned int oldvalue, value, maxlvt; |
Cyrill Gorcunov | c43da2f | 2008-08-18 20:45:54 +0400 | [diff] [blame] | 1116 | |
Cyrill Gorcunov | 9df08f1 | 2008-09-14 11:55:37 +0400 | [diff] [blame] | 1117 | if (!lapic_is_integrated()) { |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 1118 | pr_info("No ESR for 82489DX.\n"); |
Cyrill Gorcunov | 9df08f1 | 2008-09-14 11:55:37 +0400 | [diff] [blame] | 1119 | return; |
Cyrill Gorcunov | c43da2f | 2008-08-18 20:45:54 +0400 | [diff] [blame] | 1120 | } |
Cyrill Gorcunov | 9df08f1 | 2008-09-14 11:55:37 +0400 | [diff] [blame] | 1121 | |
Ingo Molnar | 08125d3 | 2009-01-28 05:08:44 +0100 | [diff] [blame] | 1122 | if (apic->disable_esr) { |
Cyrill Gorcunov | 9df08f1 | 2008-09-14 11:55:37 +0400 | [diff] [blame] | 1123 | /* |
| 1124 | * Something untraceable is creating bad interrupts on |
| 1125 | * secondary quads ... for the moment, just leave the |
| 1126 | * ESR disabled - we can't do anything useful with the |
| 1127 | * errors anyway - mbligh |
| 1128 | */ |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 1129 | pr_info("Leaving ESR disabled.\n"); |
Cyrill Gorcunov | 9df08f1 | 2008-09-14 11:55:37 +0400 | [diff] [blame] | 1130 | return; |
| 1131 | } |
| 1132 | |
| 1133 | maxlvt = lapic_get_maxlvt(); |
| 1134 | if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */ |
| 1135 | apic_write(APIC_ESR, 0); |
| 1136 | oldvalue = apic_read(APIC_ESR); |
| 1137 | |
| 1138 | /* enables sending errors */ |
| 1139 | value = ERROR_APIC_VECTOR; |
| 1140 | apic_write(APIC_LVTERR, value); |
| 1141 | |
| 1142 | /* |
| 1143 | * spec says clear errors after enabling vector. |
| 1144 | */ |
| 1145 | if (maxlvt > 3) |
| 1146 | apic_write(APIC_ESR, 0); |
| 1147 | value = apic_read(APIC_ESR); |
| 1148 | if (value != oldvalue) |
| 1149 | apic_printk(APIC_VERBOSE, "ESR value before enabling " |
| 1150 | "vector: 0x%08x after: 0x%08x\n", |
| 1151 | oldvalue, value); |
Cyrill Gorcunov | c43da2f | 2008-08-18 20:45:54 +0400 | [diff] [blame] | 1152 | } |
| 1153 | |
| 1154 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1155 | /** |
| 1156 | * setup_local_APIC - setup the local APIC |
| 1157 | */ |
| 1158 | void __cpuinit setup_local_APIC(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | { |
Andi Kleen | 739f33b | 2008-01-30 13:30:40 +0100 | [diff] [blame] | 1160 | unsigned int value; |
Vivek Goyal | da7ed9f | 2006-03-25 16:31:16 +0100 | [diff] [blame] | 1161 | int i, j; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | |
Jan Beulich | f118263 | 2009-01-14 12:27:35 +0000 | [diff] [blame] | 1163 | if (disable_apic) { |
Ingo Molnar | 65a4e57 | 2009-01-31 03:36:17 +0100 | [diff] [blame] | 1164 | arch_disable_smp_support(); |
Jan Beulich | f118263 | 2009-01-14 12:27:35 +0000 | [diff] [blame] | 1165 | return; |
| 1166 | } |
| 1167 | |
Cyrill Gorcunov | 89c38c2 | 2008-08-24 02:01:43 -0700 | [diff] [blame] | 1168 | #ifdef CONFIG_X86_32 |
| 1169 | /* Pound the ESR really hard over the head with a big hammer - mbligh */ |
Ingo Molnar | 08125d3 | 2009-01-28 05:08:44 +0100 | [diff] [blame] | 1170 | if (lapic_is_integrated() && apic->disable_esr) { |
Cyrill Gorcunov | 89c38c2 | 2008-08-24 02:01:43 -0700 | [diff] [blame] | 1171 | apic_write(APIC_ESR, 0); |
| 1172 | apic_write(APIC_ESR, 0); |
| 1173 | apic_write(APIC_ESR, 0); |
| 1174 | apic_write(APIC_ESR, 0); |
| 1175 | } |
| 1176 | #endif |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 1177 | perf_events_lapic_init(); |
Cyrill Gorcunov | 89c38c2 | 2008-08-24 02:01:43 -0700 | [diff] [blame] | 1178 | |
Jack Steiner | ac23d4e | 2008-03-28 14:12:16 -0500 | [diff] [blame] | 1179 | preempt_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | /* |
| 1182 | * Double-check whether this APIC is really registered. |
| 1183 | * This is meaningless in clustered apic mode, so we skip it. |
| 1184 | */ |
Daniel Walker | c2777f9 | 2009-09-12 10:40:20 -0700 | [diff] [blame] | 1185 | BUG_ON(!apic->apic_id_registered()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | |
| 1187 | /* |
| 1188 | * Intel recommends to set DFR, LDR and TPR before enabling |
| 1189 | * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel |
| 1190 | * document number 292116). So here it goes... |
| 1191 | */ |
Ingo Molnar | a5c4329 | 2009-01-28 06:50:47 +0100 | [diff] [blame] | 1192 | apic->init_apic_ldr(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | |
| 1194 | /* |
| 1195 | * Set Task Priority to 'accept all'. We never change this |
| 1196 | * later on. |
| 1197 | */ |
| 1198 | value = apic_read(APIC_TASKPRI); |
| 1199 | value &= ~APIC_TPRI_MASK; |
Andi Kleen | 11a8e77 | 2006-01-11 22:46:51 +0100 | [diff] [blame] | 1200 | apic_write(APIC_TASKPRI, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1201 | |
| 1202 | /* |
Vivek Goyal | da7ed9f | 2006-03-25 16:31:16 +0100 | [diff] [blame] | 1203 | * After a crash, we no longer service the interrupts and a pending |
| 1204 | * interrupt from previous kernel might still have ISR bit set. |
| 1205 | * |
| 1206 | * Most probably by now CPU has serviced that pending interrupt and |
| 1207 | * it might not have done the ack_APIC_irq() because it thought, |
| 1208 | * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it |
| 1209 | * does not clear the ISR bit and cpu thinks it has already serivced |
| 1210 | * the interrupt. Hence a vector might get locked. It was noticed |
| 1211 | * for timer irq (vector 0x31). Issue an extra EOI to clear ISR. |
| 1212 | */ |
| 1213 | for (i = APIC_ISR_NR - 1; i >= 0; i--) { |
| 1214 | value = apic_read(APIC_ISR + i*0x10); |
| 1215 | for (j = 31; j >= 0; j--) { |
| 1216 | if (value & (1<<j)) |
| 1217 | ack_APIC_irq(); |
| 1218 | } |
| 1219 | } |
| 1220 | |
| 1221 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | * Now that we are all set up, enable the APIC |
| 1223 | */ |
| 1224 | value = apic_read(APIC_SPIV); |
| 1225 | value &= ~APIC_VECTOR_MASK; |
| 1226 | /* |
| 1227 | * Enable APIC |
| 1228 | */ |
| 1229 | value |= APIC_SPIV_APIC_ENABLED; |
| 1230 | |
Cyrill Gorcunov | 89c38c2 | 2008-08-24 02:01:43 -0700 | [diff] [blame] | 1231 | #ifdef CONFIG_X86_32 |
| 1232 | /* |
| 1233 | * Some unknown Intel IO/APIC (or APIC) errata is biting us with |
| 1234 | * certain networking cards. If high frequency interrupts are |
| 1235 | * happening on a particular IOAPIC pin, plus the IOAPIC routing |
| 1236 | * entry is masked/unmasked at a high rate as well then sooner or |
| 1237 | * later IOAPIC line gets 'stuck', no more interrupts are received |
| 1238 | * from the device. If focus CPU is disabled then the hang goes |
| 1239 | * away, oh well :-( |
| 1240 | * |
| 1241 | * [ This bug can be reproduced easily with a level-triggered |
| 1242 | * PCI Ne2000 networking cards and PII/PIII processors, dual |
| 1243 | * BX chipset. ] |
| 1244 | */ |
| 1245 | /* |
| 1246 | * Actually disabling the focus CPU check just makes the hang less |
| 1247 | * frequent as it makes the interrupt distributon model be more |
| 1248 | * like LRU than MRU (the short-term load is more even across CPUs). |
| 1249 | * See also the comment in end_level_ioapic_irq(). --macro |
| 1250 | */ |
| 1251 | |
| 1252 | /* |
| 1253 | * - enable focus processor (bit==0) |
| 1254 | * - 64bit mode always use processor focus |
| 1255 | * so no need to set it |
| 1256 | */ |
| 1257 | value &= ~APIC_SPIV_FOCUS_DISABLED; |
| 1258 | #endif |
Andi Kleen | 3f14c74 | 2006-09-26 10:52:29 +0200 | [diff] [blame] | 1259 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1260 | /* |
| 1261 | * Set spurious IRQ vector |
| 1262 | */ |
| 1263 | value |= SPURIOUS_APIC_VECTOR; |
Andi Kleen | 11a8e77 | 2006-01-11 22:46:51 +0100 | [diff] [blame] | 1264 | apic_write(APIC_SPIV, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | |
| 1266 | /* |
| 1267 | * Set up LVT0, LVT1: |
| 1268 | * |
| 1269 | * set up through-local-APIC on the BP's LINT0. This is not |
| 1270 | * strictly necessary in pure symmetric-IO mode, but sometimes |
| 1271 | * we delegate interrupts to the 8259A. |
| 1272 | */ |
| 1273 | /* |
| 1274 | * TODO: set up through-local-APIC from through-I/O-APIC? --macro |
| 1275 | */ |
| 1276 | value = apic_read(APIC_LVT0) & APIC_LVT_MASKED; |
Cyrill Gorcunov | 89c38c2 | 2008-08-24 02:01:43 -0700 | [diff] [blame] | 1277 | if (!smp_processor_id() && (pic_mode || !value)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | value = APIC_DM_EXTINT; |
Chris Wright | bc1d99c | 2007-10-12 23:04:23 +0200 | [diff] [blame] | 1279 | apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n", |
Cyrill Gorcunov | 89c38c2 | 2008-08-24 02:01:43 -0700 | [diff] [blame] | 1280 | smp_processor_id()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | } else { |
| 1282 | value = APIC_DM_EXTINT | APIC_LVT_MASKED; |
Chris Wright | bc1d99c | 2007-10-12 23:04:23 +0200 | [diff] [blame] | 1283 | apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n", |
Cyrill Gorcunov | 89c38c2 | 2008-08-24 02:01:43 -0700 | [diff] [blame] | 1284 | smp_processor_id()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | } |
Andi Kleen | 11a8e77 | 2006-01-11 22:46:51 +0100 | [diff] [blame] | 1286 | apic_write(APIC_LVT0, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | |
| 1288 | /* |
| 1289 | * only the BP should see the LINT1 NMI signal, obviously. |
| 1290 | */ |
| 1291 | if (!smp_processor_id()) |
| 1292 | value = APIC_DM_NMI; |
| 1293 | else |
| 1294 | value = APIC_DM_NMI | APIC_LVT_MASKED; |
Cyrill Gorcunov | 89c38c2 | 2008-08-24 02:01:43 -0700 | [diff] [blame] | 1295 | if (!lapic_is_integrated()) /* 82489DX */ |
| 1296 | value |= APIC_LVT_LEVEL_TRIGGER; |
Andi Kleen | 11a8e77 | 2006-01-11 22:46:51 +0100 | [diff] [blame] | 1297 | apic_write(APIC_LVT1, value); |
Cyrill Gorcunov | 89c38c2 | 2008-08-24 02:01:43 -0700 | [diff] [blame] | 1298 | |
Jack Steiner | ac23d4e | 2008-03-28 14:12:16 -0500 | [diff] [blame] | 1299 | preempt_enable(); |
Andi Kleen | be71b85 | 2009-02-12 13:49:38 +0100 | [diff] [blame] | 1300 | |
| 1301 | #ifdef CONFIG_X86_MCE_INTEL |
| 1302 | /* Recheck CMCI information after local APIC is up on CPU #0 */ |
| 1303 | if (smp_processor_id() == 0) |
| 1304 | cmci_recheck(); |
| 1305 | #endif |
Andi Kleen | 739f33b | 2008-01-30 13:30:40 +0100 | [diff] [blame] | 1306 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | |
Andi Kleen | 739f33b | 2008-01-30 13:30:40 +0100 | [diff] [blame] | 1308 | void __cpuinit end_local_APIC_setup(void) |
| 1309 | { |
| 1310 | lapic_setup_esr(); |
Cyrill Gorcunov | fa6b95f | 2008-08-18 20:45:58 +0400 | [diff] [blame] | 1311 | |
| 1312 | #ifdef CONFIG_X86_32 |
Cyrill Gorcunov | 1b4ee4e | 2008-08-18 23:12:33 +0400 | [diff] [blame] | 1313 | { |
| 1314 | unsigned int value; |
| 1315 | /* Disable the local apic timer */ |
| 1316 | value = apic_read(APIC_LVTT); |
| 1317 | value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR); |
| 1318 | apic_write(APIC_LVTT, value); |
| 1319 | } |
Cyrill Gorcunov | fa6b95f | 2008-08-18 20:45:58 +0400 | [diff] [blame] | 1320 | #endif |
| 1321 | |
Don Zickus | f2802e7 | 2006-09-26 10:52:26 +0200 | [diff] [blame] | 1322 | setup_apic_nmi_watchdog(NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | apic_pm_activate(); |
| 1324 | } |
| 1325 | |
Yinghai Lu | 06cd9a7 | 2009-02-16 17:29:58 -0800 | [diff] [blame] | 1326 | #ifdef CONFIG_X86_X2APIC |
Suresh Siddha | 6e1cb38 | 2008-07-10 11:16:58 -0700 | [diff] [blame] | 1327 | void check_x2apic(void) |
| 1328 | { |
Suresh Siddha | ef1f87a | 2009-02-21 14:23:21 -0800 | [diff] [blame] | 1329 | if (x2apic_enabled()) { |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 1330 | pr_info("x2apic enabled by BIOS, switching to x2apic ops\n"); |
Suresh Siddha | fc1edaf | 2009-04-20 13:02:27 -0700 | [diff] [blame] | 1331 | x2apic_preenabled = x2apic_mode = 1; |
Suresh Siddha | 6e1cb38 | 2008-07-10 11:16:58 -0700 | [diff] [blame] | 1332 | } |
| 1333 | } |
| 1334 | |
| 1335 | void enable_x2apic(void) |
| 1336 | { |
| 1337 | int msr, msr2; |
| 1338 | |
Suresh Siddha | fc1edaf | 2009-04-20 13:02:27 -0700 | [diff] [blame] | 1339 | if (!x2apic_mode) |
Yinghai Lu | 06cd9a7 | 2009-02-16 17:29:58 -0800 | [diff] [blame] | 1340 | return; |
| 1341 | |
Suresh Siddha | 6e1cb38 | 2008-07-10 11:16:58 -0700 | [diff] [blame] | 1342 | rdmsr(MSR_IA32_APICBASE, msr, msr2); |
| 1343 | if (!(msr & X2APIC_ENABLE)) { |
Mike Travis | 450b1e8 | 2009-12-11 08:08:50 -0800 | [diff] [blame^] | 1344 | printk_once(KERN_INFO "Enabling x2apic\n"); |
Suresh Siddha | 6e1cb38 | 2008-07-10 11:16:58 -0700 | [diff] [blame] | 1345 | wrmsr(MSR_IA32_APICBASE, msr | X2APIC_ENABLE, 0); |
| 1346 | } |
| 1347 | } |
Weidong Han | 9375823 | 2009-04-17 16:42:14 +0800 | [diff] [blame] | 1348 | #endif /* CONFIG_X86_X2APIC */ |
Suresh Siddha | 6e1cb38 | 2008-07-10 11:16:58 -0700 | [diff] [blame] | 1349 | |
Gleb Natapov | ce69a78 | 2009-07-20 15:24:17 +0300 | [diff] [blame] | 1350 | int __init enable_IR(void) |
Suresh Siddha | 6e1cb38 | 2008-07-10 11:16:58 -0700 | [diff] [blame] | 1351 | { |
| 1352 | #ifdef CONFIG_INTR_REMAP |
Weidong Han | 9375823 | 2009-04-17 16:42:14 +0800 | [diff] [blame] | 1353 | if (!intr_remapping_supported()) { |
| 1354 | pr_debug("intr-remapping not supported\n"); |
Gleb Natapov | ce69a78 | 2009-07-20 15:24:17 +0300 | [diff] [blame] | 1355 | return 0; |
Weidong Han | 9375823 | 2009-04-17 16:42:14 +0800 | [diff] [blame] | 1356 | } |
| 1357 | |
Weidong Han | 9375823 | 2009-04-17 16:42:14 +0800 | [diff] [blame] | 1358 | if (!x2apic_preenabled && skip_ioapic_setup) { |
| 1359 | pr_info("Skipped enabling intr-remap because of skipping " |
| 1360 | "io-apic setup\n"); |
Gleb Natapov | ce69a78 | 2009-07-20 15:24:17 +0300 | [diff] [blame] | 1361 | return 0; |
Suresh Siddha | 6e1cb38 | 2008-07-10 11:16:58 -0700 | [diff] [blame] | 1362 | } |
| 1363 | |
Gleb Natapov | ce69a78 | 2009-07-20 15:24:17 +0300 | [diff] [blame] | 1364 | if (enable_intr_remapping(x2apic_supported())) |
| 1365 | return 0; |
| 1366 | |
| 1367 | pr_info("Enabled Interrupt-remapping\n"); |
| 1368 | |
| 1369 | return 1; |
| 1370 | |
| 1371 | #endif |
| 1372 | return 0; |
| 1373 | } |
| 1374 | |
| 1375 | void __init enable_IR_x2apic(void) |
| 1376 | { |
| 1377 | unsigned long flags; |
| 1378 | struct IO_APIC_route_entry **ioapic_entries = NULL; |
| 1379 | int ret, x2apic_enabled = 0; |
Yinghai Lu | e670761 | 2009-11-21 00:23:37 -0800 | [diff] [blame] | 1380 | int dmar_table_init_ret; |
Yinghai Lu | b7f42ab | 2009-08-17 11:19:40 -0700 | [diff] [blame] | 1381 | |
Yinghai Lu | b7f42ab | 2009-08-17 11:19:40 -0700 | [diff] [blame] | 1382 | dmar_table_init_ret = dmar_table_init(); |
Yinghai Lu | e670761 | 2009-11-21 00:23:37 -0800 | [diff] [blame] | 1383 | if (dmar_table_init_ret && !x2apic_supported()) |
| 1384 | return; |
Gleb Natapov | ce69a78 | 2009-07-20 15:24:17 +0300 | [diff] [blame] | 1385 | |
Fenghua Yu | b24696b | 2009-03-27 14:22:44 -0700 | [diff] [blame] | 1386 | ioapic_entries = alloc_ioapic_entries(); |
| 1387 | if (!ioapic_entries) { |
Gleb Natapov | ce69a78 | 2009-07-20 15:24:17 +0300 | [diff] [blame] | 1388 | pr_err("Allocate ioapic_entries failed\n"); |
| 1389 | goto out; |
Fenghua Yu | b24696b | 2009-03-27 14:22:44 -0700 | [diff] [blame] | 1390 | } |
| 1391 | |
| 1392 | ret = save_IO_APIC_setup(ioapic_entries); |
Cyrill Gorcunov | 5ffa4eb | 2008-09-18 23:37:57 +0400 | [diff] [blame] | 1393 | if (ret) { |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 1394 | pr_info("Saving IO-APIC state failed: %d\n", ret); |
Gleb Natapov | ce69a78 | 2009-07-20 15:24:17 +0300 | [diff] [blame] | 1395 | goto out; |
Cyrill Gorcunov | 5ffa4eb | 2008-09-18 23:37:57 +0400 | [diff] [blame] | 1396 | } |
Suresh Siddha | 6e1cb38 | 2008-07-10 11:16:58 -0700 | [diff] [blame] | 1397 | |
Suresh Siddha | 05c3dc2 | 2009-03-16 17:05:03 -0700 | [diff] [blame] | 1398 | local_irq_save(flags); |
Suresh Siddha | 05c3dc2 | 2009-03-16 17:05:03 -0700 | [diff] [blame] | 1399 | mask_8259A(); |
Gleb Natapov | ce69a78 | 2009-07-20 15:24:17 +0300 | [diff] [blame] | 1400 | mask_IO_APIC_setup(ioapic_entries); |
Suresh Siddha | 05c3dc2 | 2009-03-16 17:05:03 -0700 | [diff] [blame] | 1401 | |
Yinghai Lu | b7f42ab | 2009-08-17 11:19:40 -0700 | [diff] [blame] | 1402 | if (dmar_table_init_ret) |
| 1403 | ret = 0; |
| 1404 | else |
| 1405 | ret = enable_IR(); |
| 1406 | |
Gleb Natapov | ce69a78 | 2009-07-20 15:24:17 +0300 | [diff] [blame] | 1407 | if (!ret) { |
| 1408 | /* IR is required if there is APIC ID > 255 even when running |
| 1409 | * under KVM |
| 1410 | */ |
| 1411 | if (max_physical_apicid > 255 || !kvm_para_available()) |
| 1412 | goto nox2apic; |
| 1413 | /* |
| 1414 | * without IR all CPUs can be addressed by IOAPIC/MSI |
| 1415 | * only in physical mode |
| 1416 | */ |
| 1417 | x2apic_force_phys(); |
| 1418 | } |
Suresh Siddha | 6e1cb38 | 2008-07-10 11:16:58 -0700 | [diff] [blame] | 1419 | |
Gleb Natapov | ce69a78 | 2009-07-20 15:24:17 +0300 | [diff] [blame] | 1420 | x2apic_enabled = 1; |
Weidong Han | 9375823 | 2009-04-17 16:42:14 +0800 | [diff] [blame] | 1421 | |
Suresh Siddha | fc1edaf | 2009-04-20 13:02:27 -0700 | [diff] [blame] | 1422 | if (x2apic_supported() && !x2apic_mode) { |
| 1423 | x2apic_mode = 1; |
Suresh Siddha | 6e1cb38 | 2008-07-10 11:16:58 -0700 | [diff] [blame] | 1424 | enable_x2apic(); |
Weidong Han | 9375823 | 2009-04-17 16:42:14 +0800 | [diff] [blame] | 1425 | pr_info("Enabled x2apic\n"); |
Suresh Siddha | 6e1cb38 | 2008-07-10 11:16:58 -0700 | [diff] [blame] | 1426 | } |
Cyrill Gorcunov | 5ffa4eb | 2008-09-18 23:37:57 +0400 | [diff] [blame] | 1427 | |
Gleb Natapov | ce69a78 | 2009-07-20 15:24:17 +0300 | [diff] [blame] | 1428 | nox2apic: |
| 1429 | if (!ret) /* IR enabling failed */ |
Fenghua Yu | b24696b | 2009-03-27 14:22:44 -0700 | [diff] [blame] | 1430 | restore_IO_APIC_setup(ioapic_entries); |
Suresh Siddha | 6e1cb38 | 2008-07-10 11:16:58 -0700 | [diff] [blame] | 1431 | unmask_8259A(); |
| 1432 | local_irq_restore(flags); |
| 1433 | |
Gleb Natapov | ce69a78 | 2009-07-20 15:24:17 +0300 | [diff] [blame] | 1434 | out: |
Fenghua Yu | b24696b | 2009-03-27 14:22:44 -0700 | [diff] [blame] | 1435 | if (ioapic_entries) |
| 1436 | free_ioapic_entries(ioapic_entries); |
Weidong Han | 9375823 | 2009-04-17 16:42:14 +0800 | [diff] [blame] | 1437 | |
Gleb Natapov | ce69a78 | 2009-07-20 15:24:17 +0300 | [diff] [blame] | 1438 | if (x2apic_enabled) |
Weidong Han | 9375823 | 2009-04-17 16:42:14 +0800 | [diff] [blame] | 1439 | return; |
| 1440 | |
Weidong Han | 9375823 | 2009-04-17 16:42:14 +0800 | [diff] [blame] | 1441 | if (x2apic_preenabled) |
Gleb Natapov | ce69a78 | 2009-07-20 15:24:17 +0300 | [diff] [blame] | 1442 | panic("x2apic: enabled by BIOS but kernel init failed."); |
Weidong Han | 9375823 | 2009-04-17 16:42:14 +0800 | [diff] [blame] | 1443 | else if (cpu_has_x2apic) |
Gleb Natapov | ce69a78 | 2009-07-20 15:24:17 +0300 | [diff] [blame] | 1444 | pr_info("Not enabling x2apic, Intr-remapping init failed.\n"); |
Suresh Siddha | 6e1cb38 | 2008-07-10 11:16:58 -0700 | [diff] [blame] | 1445 | } |
Weidong Han | 9375823 | 2009-04-17 16:42:14 +0800 | [diff] [blame] | 1446 | |
Yinghai Lu | be7a656 | 2008-08-24 02:01:51 -0700 | [diff] [blame] | 1447 | #ifdef CONFIG_X86_64 |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1448 | /* |
| 1449 | * Detect and enable local APICs on non-SMP boards. |
| 1450 | * Original code written by Keir Fraser. |
| 1451 | * On AMD64 we trust the BIOS - if it says no APIC it is likely |
| 1452 | * not correctly set up (usually the APIC timer won't work etc.) |
| 1453 | */ |
| 1454 | static int __init detect_init_APIC(void) |
| 1455 | { |
| 1456 | if (!cpu_has_apic) { |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 1457 | pr_info("No local APIC present\n"); |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1458 | return -1; |
| 1459 | } |
| 1460 | |
| 1461 | mp_lapic_addr = APIC_DEFAULT_PHYS_BASE; |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1462 | return 0; |
| 1463 | } |
Yinghai Lu | be7a656 | 2008-08-24 02:01:51 -0700 | [diff] [blame] | 1464 | #else |
| 1465 | /* |
| 1466 | * Detect and initialize APIC |
| 1467 | */ |
| 1468 | static int __init detect_init_APIC(void) |
| 1469 | { |
| 1470 | u32 h, l, features; |
| 1471 | |
| 1472 | /* Disabled by kernel option? */ |
| 1473 | if (disable_apic) |
| 1474 | return -1; |
| 1475 | |
| 1476 | switch (boot_cpu_data.x86_vendor) { |
| 1477 | case X86_VENDOR_AMD: |
| 1478 | if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) || |
Borislav Petkov | 8587706 | 2009-02-03 16:24:22 +0100 | [diff] [blame] | 1479 | (boot_cpu_data.x86 >= 15)) |
Yinghai Lu | be7a656 | 2008-08-24 02:01:51 -0700 | [diff] [blame] | 1480 | break; |
| 1481 | goto no_apic; |
| 1482 | case X86_VENDOR_INTEL: |
| 1483 | if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 || |
| 1484 | (boot_cpu_data.x86 == 5 && cpu_has_apic)) |
| 1485 | break; |
| 1486 | goto no_apic; |
| 1487 | default: |
| 1488 | goto no_apic; |
| 1489 | } |
| 1490 | |
| 1491 | if (!cpu_has_apic) { |
| 1492 | /* |
| 1493 | * Over-ride BIOS and try to enable the local APIC only if |
| 1494 | * "lapic" specified. |
| 1495 | */ |
| 1496 | if (!force_enable_local_apic) { |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 1497 | pr_info("Local APIC disabled by BIOS -- " |
| 1498 | "you can enable it with \"lapic\"\n"); |
Yinghai Lu | be7a656 | 2008-08-24 02:01:51 -0700 | [diff] [blame] | 1499 | return -1; |
| 1500 | } |
| 1501 | /* |
| 1502 | * Some BIOSes disable the local APIC in the APIC_BASE |
| 1503 | * MSR. This can only be done in software for Intel P6 or later |
| 1504 | * and AMD K7 (Model > 1) or later. |
| 1505 | */ |
| 1506 | rdmsr(MSR_IA32_APICBASE, l, h); |
| 1507 | if (!(l & MSR_IA32_APICBASE_ENABLE)) { |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 1508 | pr_info("Local APIC disabled by BIOS -- reenabling.\n"); |
Yinghai Lu | be7a656 | 2008-08-24 02:01:51 -0700 | [diff] [blame] | 1509 | l &= ~MSR_IA32_APICBASE_BASE; |
| 1510 | l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE; |
| 1511 | wrmsr(MSR_IA32_APICBASE, l, h); |
| 1512 | enabled_via_apicbase = 1; |
| 1513 | } |
| 1514 | } |
| 1515 | /* |
| 1516 | * The APIC feature bit should now be enabled |
| 1517 | * in `cpuid' |
| 1518 | */ |
| 1519 | features = cpuid_edx(1); |
| 1520 | if (!(features & (1 << X86_FEATURE_APIC))) { |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 1521 | pr_warning("Could not enable APIC!\n"); |
Yinghai Lu | be7a656 | 2008-08-24 02:01:51 -0700 | [diff] [blame] | 1522 | return -1; |
| 1523 | } |
| 1524 | set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC); |
| 1525 | mp_lapic_addr = APIC_DEFAULT_PHYS_BASE; |
| 1526 | |
| 1527 | /* The BIOS may have set up the APIC at some other address */ |
| 1528 | rdmsr(MSR_IA32_APICBASE, l, h); |
| 1529 | if (l & MSR_IA32_APICBASE_ENABLE) |
| 1530 | mp_lapic_addr = l & MSR_IA32_APICBASE_BASE; |
| 1531 | |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 1532 | pr_info("Found and enabled local APIC!\n"); |
Yinghai Lu | be7a656 | 2008-08-24 02:01:51 -0700 | [diff] [blame] | 1533 | |
| 1534 | apic_pm_activate(); |
| 1535 | |
| 1536 | return 0; |
| 1537 | |
| 1538 | no_apic: |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 1539 | pr_info("No local APIC present or hardware disabled\n"); |
Yinghai Lu | be7a656 | 2008-08-24 02:01:51 -0700 | [diff] [blame] | 1540 | return -1; |
| 1541 | } |
| 1542 | #endif |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1543 | |
Yinghai Lu | f28c0ae | 2008-08-24 02:01:49 -0700 | [diff] [blame] | 1544 | #ifdef CONFIG_X86_64 |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 1545 | void __init early_init_lapic_mapping(void) |
| 1546 | { |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 1547 | /* |
| 1548 | * If no local APIC can be found then go out |
| 1549 | * : it means there is no mpatable and MADT |
| 1550 | */ |
| 1551 | if (!smp_found_config) |
| 1552 | return; |
| 1553 | |
Cyrill Gorcunov | d3a247b | 2009-08-26 21:13:24 +0400 | [diff] [blame] | 1554 | set_fixmap_nocache(FIX_APIC_BASE, mp_lapic_addr); |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 1555 | apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n", |
Cyrill Gorcunov | d3a247b | 2009-08-26 21:13:24 +0400 | [diff] [blame] | 1556 | APIC_BASE, mp_lapic_addr); |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 1557 | |
| 1558 | /* |
| 1559 | * Fetch the APIC ID of the BSP in case we have a |
| 1560 | * default configuration (or the MP table is broken). |
| 1561 | */ |
Yinghai Lu | 4c9961d | 2008-07-11 18:44:16 -0700 | [diff] [blame] | 1562 | boot_cpu_physical_apicid = read_apic_id(); |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 1563 | } |
Yinghai Lu | f28c0ae | 2008-08-24 02:01:49 -0700 | [diff] [blame] | 1564 | #endif |
Yinghai Lu | 8643f9d | 2008-02-19 03:21:06 -0800 | [diff] [blame] | 1565 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1566 | /** |
| 1567 | * init_apic_mappings - initialize APIC mappings |
| 1568 | */ |
| 1569 | void __init init_apic_mappings(void) |
| 1570 | { |
Yinghai Lu | 4401da6 | 2009-05-02 10:40:57 -0700 | [diff] [blame] | 1571 | unsigned int new_apicid; |
| 1572 | |
Suresh Siddha | fc1edaf | 2009-04-20 13:02:27 -0700 | [diff] [blame] | 1573 | if (x2apic_mode) { |
Yinghai Lu | 4c9961d | 2008-07-11 18:44:16 -0700 | [diff] [blame] | 1574 | boot_cpu_physical_apicid = read_apic_id(); |
Suresh Siddha | 6e1cb38 | 2008-07-10 11:16:58 -0700 | [diff] [blame] | 1575 | return; |
| 1576 | } |
| 1577 | |
Yinghai Lu | 4797f6b | 2009-05-02 10:40:57 -0700 | [diff] [blame] | 1578 | /* If no local APIC can be found return early */ |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1579 | if (!smp_found_config && detect_init_APIC()) { |
Yinghai Lu | 4797f6b | 2009-05-02 10:40:57 -0700 | [diff] [blame] | 1580 | /* lets NOP'ify apic operations */ |
Cyrill Gorcunov | cec6be6 | 2009-05-11 17:41:40 +0400 | [diff] [blame] | 1581 | pr_info("APIC: disable apic facility\n"); |
| 1582 | apic_disable(); |
Yinghai Lu | 4797f6b | 2009-05-02 10:40:57 -0700 | [diff] [blame] | 1583 | } else { |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1584 | apic_phys = mp_lapic_addr; |
| 1585 | |
Yinghai Lu | 4797f6b | 2009-05-02 10:40:57 -0700 | [diff] [blame] | 1586 | /* |
| 1587 | * acpi lapic path already maps that address in |
| 1588 | * acpi_register_lapic_address() |
| 1589 | */ |
| 1590 | if (!acpi_lapic) |
| 1591 | set_fixmap_nocache(FIX_APIC_BASE, apic_phys); |
| 1592 | |
| 1593 | apic_printk(APIC_VERBOSE, "mapped APIC to %08lx (%08lx)\n", |
| 1594 | APIC_BASE, apic_phys); |
Cyrill Gorcunov | cec6be6 | 2009-05-11 17:41:40 +0400 | [diff] [blame] | 1595 | } |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1596 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1597 | /* |
| 1598 | * Fetch the APIC ID of the BSP in case we have a |
| 1599 | * default configuration (or the MP table is broken). |
| 1600 | */ |
Yinghai Lu | 4401da6 | 2009-05-02 10:40:57 -0700 | [diff] [blame] | 1601 | new_apicid = read_apic_id(); |
| 1602 | if (boot_cpu_physical_apicid != new_apicid) { |
| 1603 | boot_cpu_physical_apicid = new_apicid; |
Cyrill Gorcunov | 103428e | 2009-06-07 16:48:40 +0400 | [diff] [blame] | 1604 | /* |
| 1605 | * yeah -- we lie about apic_version |
| 1606 | * in case if apic was disabled via boot option |
| 1607 | * but it's not a problem for SMP compiled kernel |
| 1608 | * since smp_sanity_check is prepared for such a case |
| 1609 | * and disable smp mode |
| 1610 | */ |
Yinghai Lu | 4401da6 | 2009-05-02 10:40:57 -0700 | [diff] [blame] | 1611 | apic_version[new_apicid] = |
| 1612 | GET_APIC_VERSION(apic_read(APIC_LVR)); |
Cyrill Gorcunov | 08306ce | 2009-04-12 20:47:41 +0400 | [diff] [blame] | 1613 | } |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1614 | } |
| 1615 | |
| 1616 | /* |
| 1617 | * This initializes the IO-APIC and APIC hardware if this is |
| 1618 | * a UP kernel. |
| 1619 | */ |
Cyrill Gorcunov | 1b313f4 | 2008-08-18 20:45:57 +0400 | [diff] [blame] | 1620 | int apic_version[MAX_APICS]; |
| 1621 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1622 | int __init APIC_init_uniprocessor(void) |
| 1623 | { |
| 1624 | if (disable_apic) { |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 1625 | pr_info("Apic disabled\n"); |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1626 | return -1; |
| 1627 | } |
Jan Beulich | f118263 | 2009-01-14 12:27:35 +0000 | [diff] [blame] | 1628 | #ifdef CONFIG_X86_64 |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1629 | if (!cpu_has_apic) { |
| 1630 | disable_apic = 1; |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 1631 | pr_info("Apic disabled by BIOS\n"); |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1632 | return -1; |
| 1633 | } |
Yinghai Lu | fa2bd35 | 2008-08-24 02:01:50 -0700 | [diff] [blame] | 1634 | #else |
| 1635 | if (!smp_found_config && !cpu_has_apic) |
| 1636 | return -1; |
| 1637 | |
| 1638 | /* |
| 1639 | * Complain if the BIOS pretends there is one. |
| 1640 | */ |
| 1641 | if (!cpu_has_apic && |
| 1642 | APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) { |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 1643 | pr_err("BIOS bug, local APIC 0x%x not detected!...\n", |
| 1644 | boot_cpu_physical_apicid); |
Yinghai Lu | fa2bd35 | 2008-08-24 02:01:50 -0700 | [diff] [blame] | 1645 | return -1; |
| 1646 | } |
| 1647 | #endif |
| 1648 | |
Suresh Siddha | 6e1cb38 | 2008-07-10 11:16:58 -0700 | [diff] [blame] | 1649 | enable_IR_x2apic(); |
Yinghai Lu | fa2bd35 | 2008-08-24 02:01:50 -0700 | [diff] [blame] | 1650 | #ifdef CONFIG_X86_64 |
Ingo Molnar | 72ce016 | 2009-01-28 06:50:47 +0100 | [diff] [blame] | 1651 | default_setup_apic_routing(); |
Yinghai Lu | fa2bd35 | 2008-08-24 02:01:50 -0700 | [diff] [blame] | 1652 | #endif |
Suresh Siddha | 6e1cb38 | 2008-07-10 11:16:58 -0700 | [diff] [blame] | 1653 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1654 | verify_local_APIC(); |
Glauber Costa | b584176 | 2008-05-28 13:38:28 -0300 | [diff] [blame] | 1655 | connect_bsp_APIC(); |
| 1656 | |
Yinghai Lu | fa2bd35 | 2008-08-24 02:01:50 -0700 | [diff] [blame] | 1657 | #ifdef CONFIG_X86_64 |
Glauber de Oliveira Costa | c70dcb7 | 2008-03-19 14:25:58 -0300 | [diff] [blame] | 1658 | apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid)); |
Yinghai Lu | fa2bd35 | 2008-08-24 02:01:50 -0700 | [diff] [blame] | 1659 | #else |
| 1660 | /* |
| 1661 | * Hack: In case of kdump, after a crash, kernel might be booting |
| 1662 | * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid |
| 1663 | * might be zero if read from MP tables. Get it from LAPIC. |
| 1664 | */ |
| 1665 | # ifdef CONFIG_CRASH_DUMP |
| 1666 | boot_cpu_physical_apicid = read_apic_id(); |
| 1667 | # endif |
| 1668 | #endif |
| 1669 | physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map); |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1670 | setup_local_APIC(); |
| 1671 | |
Yinghai Lu | 88d0f55 | 2009-02-14 23:57:28 -0800 | [diff] [blame] | 1672 | #ifdef CONFIG_X86_IO_APIC |
Andi Kleen | 739f33b | 2008-01-30 13:30:40 +0100 | [diff] [blame] | 1673 | /* |
| 1674 | * Now enable IO-APICs, actually call clear_IO_APIC |
Yinghai Lu | 98c061b | 2009-02-16 00:00:50 -0800 | [diff] [blame] | 1675 | * We need clear_IO_APIC before enabling error vector |
Andi Kleen | 739f33b | 2008-01-30 13:30:40 +0100 | [diff] [blame] | 1676 | */ |
| 1677 | if (!skip_ioapic_setup && nr_ioapics) |
| 1678 | enable_IO_APIC(); |
Yinghai Lu | fa2bd35 | 2008-08-24 02:01:50 -0700 | [diff] [blame] | 1679 | #endif |
Andi Kleen | 739f33b | 2008-01-30 13:30:40 +0100 | [diff] [blame] | 1680 | |
| 1681 | end_local_APIC_setup(); |
| 1682 | |
Yinghai Lu | fa2bd35 | 2008-08-24 02:01:50 -0700 | [diff] [blame] | 1683 | #ifdef CONFIG_X86_IO_APIC |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1684 | if (smp_found_config && !skip_ioapic_setup && nr_ioapics) |
| 1685 | setup_IO_APIC(); |
Yinghai Lu | 98c061b | 2009-02-16 00:00:50 -0800 | [diff] [blame] | 1686 | else { |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1687 | nr_ioapics = 0; |
Yinghai Lu | 98c061b | 2009-02-16 00:00:50 -0800 | [diff] [blame] | 1688 | localise_nmi_watchdog(); |
| 1689 | } |
| 1690 | #else |
| 1691 | localise_nmi_watchdog(); |
Yinghai Lu | fa2bd35 | 2008-08-24 02:01:50 -0700 | [diff] [blame] | 1692 | #endif |
| 1693 | |
Thomas Gleixner | 736deca | 2009-08-19 12:35:53 +0200 | [diff] [blame] | 1694 | x86_init.timers.setup_percpu_clockev(); |
Yinghai Lu | 98c061b | 2009-02-16 00:00:50 -0800 | [diff] [blame] | 1695 | #ifdef CONFIG_X86_64 |
| 1696 | check_nmi_watchdog(); |
Yinghai Lu | fa2bd35 | 2008-08-24 02:01:50 -0700 | [diff] [blame] | 1697 | #endif |
| 1698 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1699 | return 0; |
| 1700 | } |
| 1701 | |
| 1702 | /* |
| 1703 | * Local APIC interrupts |
| 1704 | */ |
| 1705 | |
| 1706 | /* |
| 1707 | * This interrupt should _never_ happen with our APIC/SMP architecture |
| 1708 | */ |
Yinghai Lu | dc1528d | 2008-08-24 02:01:53 -0700 | [diff] [blame] | 1709 | void smp_spurious_interrupt(struct pt_regs *regs) |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1710 | { |
Yinghai Lu | dc1528d | 2008-08-24 02:01:53 -0700 | [diff] [blame] | 1711 | u32 v; |
| 1712 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1713 | exit_idle(); |
| 1714 | irq_enter(); |
| 1715 | /* |
| 1716 | * Check if this really is a spurious interrupt and ACK it |
| 1717 | * if it is a vectored one. Just in case... |
| 1718 | * Spurious interrupts should not be ACKed. |
| 1719 | */ |
| 1720 | v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1)); |
| 1721 | if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f))) |
| 1722 | ack_APIC_irq(); |
| 1723 | |
Hiroshi Shimamoto | 915b0d0 | 2008-12-08 19:19:26 -0800 | [diff] [blame] | 1724 | inc_irq_stat(irq_spurious_count); |
| 1725 | |
Yinghai Lu | dc1528d | 2008-08-24 02:01:53 -0700 | [diff] [blame] | 1726 | /* see sw-dev-man vol 3, chapter 7.4.13.5 */ |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 1727 | pr_info("spurious APIC interrupt on CPU#%d, " |
| 1728 | "should never happen.\n", smp_processor_id()); |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1729 | irq_exit(); |
| 1730 | } |
| 1731 | |
| 1732 | /* |
| 1733 | * This interrupt should never happen with our APIC/SMP architecture |
| 1734 | */ |
Yinghai Lu | dc1528d | 2008-08-24 02:01:53 -0700 | [diff] [blame] | 1735 | void smp_error_interrupt(struct pt_regs *regs) |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1736 | { |
Yinghai Lu | dc1528d | 2008-08-24 02:01:53 -0700 | [diff] [blame] | 1737 | u32 v, v1; |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1738 | |
| 1739 | exit_idle(); |
| 1740 | irq_enter(); |
| 1741 | /* First tickle the hardware, only then report what went on. -- REW */ |
| 1742 | v = apic_read(APIC_ESR); |
| 1743 | apic_write(APIC_ESR, 0); |
| 1744 | v1 = apic_read(APIC_ESR); |
| 1745 | ack_APIC_irq(); |
| 1746 | atomic_inc(&irq_err_count); |
| 1747 | |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 1748 | /* |
| 1749 | * Here is what the APIC error bits mean: |
| 1750 | * 0: Send CS error |
| 1751 | * 1: Receive CS error |
| 1752 | * 2: Send accept error |
| 1753 | * 3: Receive accept error |
| 1754 | * 4: Reserved |
| 1755 | * 5: Send illegal vector |
| 1756 | * 6: Received illegal vector |
| 1757 | * 7: Illegal register address |
| 1758 | */ |
| 1759 | pr_debug("APIC error on CPU%d: %02x(%02x)\n", |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1760 | smp_processor_id(), v , v1); |
| 1761 | irq_exit(); |
| 1762 | } |
| 1763 | |
Glauber Costa | b584176 | 2008-05-28 13:38:28 -0300 | [diff] [blame] | 1764 | /** |
Cyrill Gorcunov | 36c9d67 | 2008-08-18 20:45:53 +0400 | [diff] [blame] | 1765 | * connect_bsp_APIC - attach the APIC to the interrupt system |
| 1766 | */ |
Glauber Costa | b584176 | 2008-05-28 13:38:28 -0300 | [diff] [blame] | 1767 | void __init connect_bsp_APIC(void) |
| 1768 | { |
Cyrill Gorcunov | 36c9d67 | 2008-08-18 20:45:53 +0400 | [diff] [blame] | 1769 | #ifdef CONFIG_X86_32 |
| 1770 | if (pic_mode) { |
| 1771 | /* |
| 1772 | * Do not trust the local APIC being empty at bootup. |
| 1773 | */ |
| 1774 | clear_local_APIC(); |
| 1775 | /* |
| 1776 | * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's |
| 1777 | * local APIC to INT and NMI lines. |
| 1778 | */ |
| 1779 | apic_printk(APIC_VERBOSE, "leaving PIC mode, " |
| 1780 | "enabling APIC mode.\n"); |
Cyrill Gorcunov | c0eaa45 | 2009-04-12 20:47:40 +0400 | [diff] [blame] | 1781 | imcr_pic_to_apic(); |
Cyrill Gorcunov | 36c9d67 | 2008-08-18 20:45:53 +0400 | [diff] [blame] | 1782 | } |
| 1783 | #endif |
Ingo Molnar | 4904033 | 2009-01-28 12:43:18 +0100 | [diff] [blame] | 1784 | if (apic->enable_apic_mode) |
| 1785 | apic->enable_apic_mode(); |
Glauber Costa | b584176 | 2008-05-28 13:38:28 -0300 | [diff] [blame] | 1786 | } |
| 1787 | |
Cyrill Gorcunov | 274cfe5 | 2008-08-16 23:21:53 +0400 | [diff] [blame] | 1788 | /** |
| 1789 | * disconnect_bsp_APIC - detach the APIC from the interrupt system |
| 1790 | * @virt_wire_setup: indicates, whether virtual wire mode is selected |
| 1791 | * |
| 1792 | * Virtual wire mode is necessary to deliver legacy interrupts even when the |
| 1793 | * APIC is disabled. |
| 1794 | */ |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1795 | void disconnect_bsp_APIC(int virt_wire_setup) |
| 1796 | { |
Cyrill Gorcunov | 1b4ee4e | 2008-08-18 23:12:33 +0400 | [diff] [blame] | 1797 | unsigned int value; |
| 1798 | |
Cyrill Gorcunov | c177b0b | 2008-08-18 20:45:56 +0400 | [diff] [blame] | 1799 | #ifdef CONFIG_X86_32 |
| 1800 | if (pic_mode) { |
| 1801 | /* |
| 1802 | * Put the board back into PIC mode (has an effect only on |
| 1803 | * certain older boards). Note that APIC interrupts, including |
| 1804 | * IPIs, won't work beyond this point! The only exception are |
| 1805 | * INIT IPIs. |
| 1806 | */ |
| 1807 | apic_printk(APIC_VERBOSE, "disabling APIC mode, " |
| 1808 | "entering PIC mode.\n"); |
Cyrill Gorcunov | c0eaa45 | 2009-04-12 20:47:40 +0400 | [diff] [blame] | 1809 | imcr_apic_to_pic(); |
Cyrill Gorcunov | c177b0b | 2008-08-18 20:45:56 +0400 | [diff] [blame] | 1810 | return; |
| 1811 | } |
| 1812 | #endif |
| 1813 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1814 | /* Go back to Virtual Wire compatibility mode */ |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1815 | |
| 1816 | /* For the spurious interrupt use vector F, and enable it */ |
| 1817 | value = apic_read(APIC_SPIV); |
| 1818 | value &= ~APIC_VECTOR_MASK; |
| 1819 | value |= APIC_SPIV_APIC_ENABLED; |
| 1820 | value |= 0xf; |
| 1821 | apic_write(APIC_SPIV, value); |
| 1822 | |
| 1823 | if (!virt_wire_setup) { |
| 1824 | /* |
| 1825 | * For LVT0 make it edge triggered, active high, |
| 1826 | * external and enabled |
| 1827 | */ |
| 1828 | value = apic_read(APIC_LVT0); |
| 1829 | value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING | |
| 1830 | APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR | |
| 1831 | APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED); |
| 1832 | value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING; |
| 1833 | value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT); |
| 1834 | apic_write(APIC_LVT0, value); |
| 1835 | } else { |
| 1836 | /* Disable LVT0 */ |
| 1837 | apic_write(APIC_LVT0, APIC_LVT_MASKED); |
| 1838 | } |
| 1839 | |
Cyrill Gorcunov | c177b0b | 2008-08-18 20:45:56 +0400 | [diff] [blame] | 1840 | /* |
| 1841 | * For LVT1 make it edge triggered, active high, |
| 1842 | * nmi and enabled |
| 1843 | */ |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1844 | value = apic_read(APIC_LVT1); |
| 1845 | value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING | |
| 1846 | APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR | |
| 1847 | APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED); |
| 1848 | value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING; |
| 1849 | value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI); |
| 1850 | apic_write(APIC_LVT1, value); |
| 1851 | } |
| 1852 | |
Alexey Starikovskiy | be8a568 | 2008-03-27 23:56:19 +0300 | [diff] [blame] | 1853 | void __cpuinit generic_processor_info(int apicid, int version) |
| 1854 | { |
| 1855 | int cpu; |
Alexey Starikovskiy | be8a568 | 2008-03-27 23:56:19 +0300 | [diff] [blame] | 1856 | |
Cyrill Gorcunov | 1b313f4 | 2008-08-18 20:45:57 +0400 | [diff] [blame] | 1857 | /* |
| 1858 | * Validate version |
| 1859 | */ |
| 1860 | if (version == 0x0) { |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 1861 | pr_warning("BIOS bug, APIC version is 0 for CPU#%d! " |
Mike Travis | 3b11ce7 | 2008-12-17 15:21:39 -0800 | [diff] [blame] | 1862 | "fixing up to 0x10. (tell your hw vendor)\n", |
| 1863 | version); |
Cyrill Gorcunov | 1b313f4 | 2008-08-18 20:45:57 +0400 | [diff] [blame] | 1864 | version = 0x10; |
| 1865 | } |
| 1866 | apic_version[apicid] = version; |
| 1867 | |
Mike Travis | 3b11ce7 | 2008-12-17 15:21:39 -0800 | [diff] [blame] | 1868 | if (num_processors >= nr_cpu_ids) { |
| 1869 | int max = nr_cpu_ids; |
| 1870 | int thiscpu = max + disabled_cpus; |
| 1871 | |
| 1872 | pr_warning( |
| 1873 | "ACPI: NR_CPUS/possible_cpus limit of %i reached." |
| 1874 | " Processor %d/0x%x ignored.\n", max, thiscpu, apicid); |
| 1875 | |
| 1876 | disabled_cpus++; |
Alexey Starikovskiy | be8a568 | 2008-03-27 23:56:19 +0300 | [diff] [blame] | 1877 | return; |
| 1878 | } |
| 1879 | |
| 1880 | num_processors++; |
Mike Travis | 3b11ce7 | 2008-12-17 15:21:39 -0800 | [diff] [blame] | 1881 | cpu = cpumask_next_zero(-1, cpu_present_mask); |
Alexey Starikovskiy | be8a568 | 2008-03-27 23:56:19 +0300 | [diff] [blame] | 1882 | |
Mike Travis | b2b815d | 2009-01-16 15:22:16 -0800 | [diff] [blame] | 1883 | if (version != apic_version[boot_cpu_physical_apicid]) |
| 1884 | WARN_ONCE(1, |
| 1885 | "ACPI: apic version mismatch, bootcpu: %x cpu %d: %x\n", |
| 1886 | apic_version[boot_cpu_physical_apicid], cpu, version); |
| 1887 | |
Alexey Starikovskiy | be8a568 | 2008-03-27 23:56:19 +0300 | [diff] [blame] | 1888 | physid_set(apicid, phys_cpu_present_map); |
| 1889 | if (apicid == boot_cpu_physical_apicid) { |
| 1890 | /* |
| 1891 | * x86_bios_cpu_apicid is required to have processors listed |
| 1892 | * in same order as logical cpu numbers. Hence the first |
| 1893 | * entry is BSP, and so on. |
| 1894 | */ |
| 1895 | cpu = 0; |
| 1896 | } |
Yinghai Lu | e0da336 | 2008-06-08 18:29:22 -0700 | [diff] [blame] | 1897 | if (apicid > max_physical_apicid) |
| 1898 | max_physical_apicid = apicid; |
| 1899 | |
Cyrill Gorcunov | 1b313f4 | 2008-08-18 20:45:57 +0400 | [diff] [blame] | 1900 | #ifdef CONFIG_X86_32 |
Suresh Siddha | 2fbd07a | 2009-09-18 19:29:59 -0700 | [diff] [blame] | 1901 | switch (boot_cpu_data.x86_vendor) { |
| 1902 | case X86_VENDOR_INTEL: |
| 1903 | if (num_processors > 8) |
Cyrill Gorcunov | 1b313f4 | 2008-08-18 20:45:57 +0400 | [diff] [blame] | 1904 | def_to_bigsmp = 1; |
Suresh Siddha | 2fbd07a | 2009-09-18 19:29:59 -0700 | [diff] [blame] | 1905 | break; |
| 1906 | case X86_VENDOR_AMD: |
| 1907 | if (max_physical_apicid >= 8) |
| 1908 | def_to_bigsmp = 1; |
Cyrill Gorcunov | 1b313f4 | 2008-08-18 20:45:57 +0400 | [diff] [blame] | 1909 | } |
| 1910 | #endif |
| 1911 | |
Ingo Molnar | 3e5095d | 2009-01-27 17:07:08 +0100 | [diff] [blame] | 1912 | #if defined(CONFIG_SMP) || defined(CONFIG_X86_64) |
Tejun Heo | f10fcd47 | 2009-01-13 20:41:34 +0900 | [diff] [blame] | 1913 | early_per_cpu(x86_cpu_to_apicid, cpu) = apicid; |
| 1914 | early_per_cpu(x86_bios_cpu_apicid, cpu) = apicid; |
Cyrill Gorcunov | 1b313f4 | 2008-08-18 20:45:57 +0400 | [diff] [blame] | 1915 | #endif |
Alexey Starikovskiy | be8a568 | 2008-03-27 23:56:19 +0300 | [diff] [blame] | 1916 | |
Mike Travis | 1de88cd | 2008-12-16 17:34:02 -0800 | [diff] [blame] | 1917 | set_cpu_possible(cpu, true); |
| 1918 | set_cpu_present(cpu, true); |
Alexey Starikovskiy | be8a568 | 2008-03-27 23:56:19 +0300 | [diff] [blame] | 1919 | } |
| 1920 | |
Suresh Siddha | 0c81c74 | 2008-07-10 11:16:48 -0700 | [diff] [blame] | 1921 | int hard_smp_processor_id(void) |
| 1922 | { |
| 1923 | return read_apic_id(); |
| 1924 | } |
Ingo Molnar | 1dcdd3d | 2009-01-28 17:55:37 +0100 | [diff] [blame] | 1925 | |
| 1926 | void default_init_apic_ldr(void) |
| 1927 | { |
| 1928 | unsigned long val; |
| 1929 | |
| 1930 | apic_write(APIC_DFR, APIC_DFR_VALUE); |
| 1931 | val = apic_read(APIC_LDR) & ~APIC_LDR_MASK; |
| 1932 | val |= SET_APIC_LOGICAL_ID(1UL << smp_processor_id()); |
| 1933 | apic_write(APIC_LDR, val); |
| 1934 | } |
| 1935 | |
| 1936 | #ifdef CONFIG_X86_32 |
| 1937 | int default_apicid_to_node(int logical_apicid) |
| 1938 | { |
| 1939 | #ifdef CONFIG_SMP |
| 1940 | return apicid_2_node[hard_smp_processor_id()]; |
| 1941 | #else |
| 1942 | return 0; |
| 1943 | #endif |
| 1944 | } |
Yinghai Lu | 3491998 | 2008-08-24 02:01:48 -0700 | [diff] [blame] | 1945 | #endif |
Suresh Siddha | 0c81c74 | 2008-07-10 11:16:48 -0700 | [diff] [blame] | 1946 | |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 1947 | /* |
| 1948 | * Power management |
| 1949 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1950 | #ifdef CONFIG_PM |
| 1951 | |
| 1952 | static struct { |
Cyrill Gorcunov | 274cfe5 | 2008-08-16 23:21:53 +0400 | [diff] [blame] | 1953 | /* |
| 1954 | * 'active' is true if the local APIC was enabled by us and |
| 1955 | * not the BIOS; this signifies that we are also responsible |
| 1956 | * for disabling it before entering apm/acpi suspend |
| 1957 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1958 | int active; |
| 1959 | /* r/w apic fields */ |
| 1960 | unsigned int apic_id; |
| 1961 | unsigned int apic_taskpri; |
| 1962 | unsigned int apic_ldr; |
| 1963 | unsigned int apic_dfr; |
| 1964 | unsigned int apic_spiv; |
| 1965 | unsigned int apic_lvtt; |
| 1966 | unsigned int apic_lvtpc; |
| 1967 | unsigned int apic_lvt0; |
| 1968 | unsigned int apic_lvt1; |
| 1969 | unsigned int apic_lvterr; |
| 1970 | unsigned int apic_tmict; |
| 1971 | unsigned int apic_tdcr; |
| 1972 | unsigned int apic_thmr; |
| 1973 | } apic_pm_state; |
| 1974 | |
Pavel Machek | 0b9c33a | 2005-04-16 15:25:31 -0700 | [diff] [blame] | 1975 | static int lapic_suspend(struct sys_device *dev, pm_message_t state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1976 | { |
| 1977 | unsigned long flags; |
Karsten Wiese | f990fff | 2006-12-07 02:14:11 +0100 | [diff] [blame] | 1978 | int maxlvt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | |
| 1980 | if (!apic_pm_state.active) |
| 1981 | return 0; |
| 1982 | |
Thomas Gleixner | 37e650c | 2008-01-30 13:30:14 +0100 | [diff] [blame] | 1983 | maxlvt = lapic_get_maxlvt(); |
Karsten Wiese | f990fff | 2006-12-07 02:14:11 +0100 | [diff] [blame] | 1984 | |
Suresh Siddha | 2d7a66d | 2008-07-11 14:24:19 -0700 | [diff] [blame] | 1985 | apic_pm_state.apic_id = apic_read(APIC_ID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1986 | apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI); |
| 1987 | apic_pm_state.apic_ldr = apic_read(APIC_LDR); |
| 1988 | apic_pm_state.apic_dfr = apic_read(APIC_DFR); |
| 1989 | apic_pm_state.apic_spiv = apic_read(APIC_SPIV); |
| 1990 | apic_pm_state.apic_lvtt = apic_read(APIC_LVTT); |
Karsten Wiese | f990fff | 2006-12-07 02:14:11 +0100 | [diff] [blame] | 1991 | if (maxlvt >= 4) |
| 1992 | apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1993 | apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0); |
| 1994 | apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1); |
| 1995 | apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR); |
| 1996 | apic_pm_state.apic_tmict = apic_read(APIC_TMICT); |
| 1997 | apic_pm_state.apic_tdcr = apic_read(APIC_TDCR); |
Andi Kleen | 4efc067 | 2009-04-28 19:07:31 +0200 | [diff] [blame] | 1998 | #ifdef CONFIG_X86_THERMAL_VECTOR |
Karsten Wiese | f990fff | 2006-12-07 02:14:11 +0100 | [diff] [blame] | 1999 | if (maxlvt >= 5) |
| 2000 | apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR); |
| 2001 | #endif |
Cyrill Gorcunov | 24968cf | 2008-08-16 23:21:52 +0400 | [diff] [blame] | 2002 | |
Fernando Luis Vázquez Cao | 2b94ab2 | 2006-09-26 10:52:33 +0200 | [diff] [blame] | 2003 | local_irq_save(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2004 | disable_local_APIC(); |
Suresh Siddha | fc1edaf | 2009-04-20 13:02:27 -0700 | [diff] [blame] | 2005 | |
Fenghua Yu | b24696b | 2009-03-27 14:22:44 -0700 | [diff] [blame] | 2006 | if (intr_remapping_enabled) |
| 2007 | disable_intr_remapping(); |
Suresh Siddha | fc1edaf | 2009-04-20 13:02:27 -0700 | [diff] [blame] | 2008 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2009 | local_irq_restore(flags); |
| 2010 | return 0; |
| 2011 | } |
| 2012 | |
| 2013 | static int lapic_resume(struct sys_device *dev) |
| 2014 | { |
| 2015 | unsigned int l, h; |
| 2016 | unsigned long flags; |
Karsten Wiese | f990fff | 2006-12-07 02:14:11 +0100 | [diff] [blame] | 2017 | int maxlvt; |
Jiri Slaby | 3d58829b | 2009-05-28 09:54:47 +0200 | [diff] [blame] | 2018 | int ret = 0; |
Fenghua Yu | b24696b | 2009-03-27 14:22:44 -0700 | [diff] [blame] | 2019 | struct IO_APIC_route_entry **ioapic_entries = NULL; |
| 2020 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2021 | if (!apic_pm_state.active) |
| 2022 | return 0; |
| 2023 | |
Fenghua Yu | b24696b | 2009-03-27 14:22:44 -0700 | [diff] [blame] | 2024 | local_irq_save(flags); |
Weidong Han | 9a2755c | 2009-04-17 16:42:16 +0800 | [diff] [blame] | 2025 | if (intr_remapping_enabled) { |
Fenghua Yu | b24696b | 2009-03-27 14:22:44 -0700 | [diff] [blame] | 2026 | ioapic_entries = alloc_ioapic_entries(); |
| 2027 | if (!ioapic_entries) { |
| 2028 | WARN(1, "Alloc ioapic_entries in lapic resume failed."); |
Jiri Slaby | 3d58829b | 2009-05-28 09:54:47 +0200 | [diff] [blame] | 2029 | ret = -ENOMEM; |
| 2030 | goto restore; |
Fenghua Yu | b24696b | 2009-03-27 14:22:44 -0700 | [diff] [blame] | 2031 | } |
| 2032 | |
| 2033 | ret = save_IO_APIC_setup(ioapic_entries); |
| 2034 | if (ret) { |
| 2035 | WARN(1, "Saving IO-APIC state failed: %d\n", ret); |
| 2036 | free_ioapic_entries(ioapic_entries); |
Jiri Slaby | 3d58829b | 2009-05-28 09:54:47 +0200 | [diff] [blame] | 2037 | goto restore; |
Fenghua Yu | b24696b | 2009-03-27 14:22:44 -0700 | [diff] [blame] | 2038 | } |
| 2039 | |
| 2040 | mask_IO_APIC_setup(ioapic_entries); |
| 2041 | mask_8259A(); |
Fenghua Yu | b24696b | 2009-03-27 14:22:44 -0700 | [diff] [blame] | 2042 | } |
Karsten Wiese | f990fff | 2006-12-07 02:14:11 +0100 | [diff] [blame] | 2043 | |
Suresh Siddha | fc1edaf | 2009-04-20 13:02:27 -0700 | [diff] [blame] | 2044 | if (x2apic_mode) |
Cyrill Gorcunov | 92206c9 | 2008-08-16 23:21:51 +0400 | [diff] [blame] | 2045 | enable_x2apic(); |
Suresh Siddha | cf6567f | 2009-03-16 17:05:00 -0700 | [diff] [blame] | 2046 | else { |
Cyrill Gorcunov | 92206c9 | 2008-08-16 23:21:51 +0400 | [diff] [blame] | 2047 | /* |
| 2048 | * Make sure the APICBASE points to the right address |
| 2049 | * |
| 2050 | * FIXME! This will be wrong if we ever support suspend on |
| 2051 | * SMP! We'll need to do this as part of the CPU restore! |
| 2052 | */ |
Suresh Siddha | 6e1cb38 | 2008-07-10 11:16:58 -0700 | [diff] [blame] | 2053 | rdmsr(MSR_IA32_APICBASE, l, h); |
| 2054 | l &= ~MSR_IA32_APICBASE_BASE; |
| 2055 | l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr; |
| 2056 | wrmsr(MSR_IA32_APICBASE, l, h); |
Yinghai Lu | d5e629a | 2008-08-17 21:12:27 -0700 | [diff] [blame] | 2057 | } |
Suresh Siddha | 6e1cb38 | 2008-07-10 11:16:58 -0700 | [diff] [blame] | 2058 | |
Fenghua Yu | b24696b | 2009-03-27 14:22:44 -0700 | [diff] [blame] | 2059 | maxlvt = lapic_get_maxlvt(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2060 | apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED); |
| 2061 | apic_write(APIC_ID, apic_pm_state.apic_id); |
| 2062 | apic_write(APIC_DFR, apic_pm_state.apic_dfr); |
| 2063 | apic_write(APIC_LDR, apic_pm_state.apic_ldr); |
| 2064 | apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri); |
| 2065 | apic_write(APIC_SPIV, apic_pm_state.apic_spiv); |
| 2066 | apic_write(APIC_LVT0, apic_pm_state.apic_lvt0); |
| 2067 | apic_write(APIC_LVT1, apic_pm_state.apic_lvt1); |
Cyrill Gorcunov | 92206c9 | 2008-08-16 23:21:51 +0400 | [diff] [blame] | 2068 | #if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL) |
Karsten Wiese | f990fff | 2006-12-07 02:14:11 +0100 | [diff] [blame] | 2069 | if (maxlvt >= 5) |
| 2070 | apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr); |
| 2071 | #endif |
| 2072 | if (maxlvt >= 4) |
| 2073 | apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2074 | apic_write(APIC_LVTT, apic_pm_state.apic_lvtt); |
| 2075 | apic_write(APIC_TDCR, apic_pm_state.apic_tdcr); |
| 2076 | apic_write(APIC_TMICT, apic_pm_state.apic_tmict); |
| 2077 | apic_write(APIC_ESR, 0); |
| 2078 | apic_read(APIC_ESR); |
| 2079 | apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr); |
| 2080 | apic_write(APIC_ESR, 0); |
| 2081 | apic_read(APIC_ESR); |
Cyrill Gorcunov | 92206c9 | 2008-08-16 23:21:51 +0400 | [diff] [blame] | 2082 | |
Weidong Han | 9a2755c | 2009-04-17 16:42:16 +0800 | [diff] [blame] | 2083 | if (intr_remapping_enabled) { |
Suresh Siddha | fc1edaf | 2009-04-20 13:02:27 -0700 | [diff] [blame] | 2084 | reenable_intr_remapping(x2apic_mode); |
Fenghua Yu | b24696b | 2009-03-27 14:22:44 -0700 | [diff] [blame] | 2085 | unmask_8259A(); |
| 2086 | restore_IO_APIC_setup(ioapic_entries); |
| 2087 | free_ioapic_entries(ioapic_entries); |
| 2088 | } |
Jiri Slaby | 3d58829b | 2009-05-28 09:54:47 +0200 | [diff] [blame] | 2089 | restore: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | local_irq_restore(flags); |
Cyrill Gorcunov | 92206c9 | 2008-08-16 23:21:51 +0400 | [diff] [blame] | 2091 | |
Jiri Slaby | 3d58829b | 2009-05-28 09:54:47 +0200 | [diff] [blame] | 2092 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2093 | } |
| 2094 | |
Cyrill Gorcunov | 274cfe5 | 2008-08-16 23:21:53 +0400 | [diff] [blame] | 2095 | /* |
| 2096 | * This device has no shutdown method - fully functioning local APICs |
| 2097 | * are needed on every CPU up until machine_halt/restart/poweroff. |
| 2098 | */ |
| 2099 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2100 | static struct sysdev_class lapic_sysclass = { |
Kay Sievers | af5ca3f4 | 2007-12-20 02:09:39 +0100 | [diff] [blame] | 2101 | .name = "lapic", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2102 | .resume = lapic_resume, |
| 2103 | .suspend = lapic_suspend, |
| 2104 | }; |
| 2105 | |
| 2106 | static struct sys_device device_lapic = { |
Hiroshi Shimamoto | e83a5fd | 2008-01-30 13:32:35 +0100 | [diff] [blame] | 2107 | .id = 0, |
| 2108 | .cls = &lapic_sysclass, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2109 | }; |
| 2110 | |
Ashok Raj | e6982c6 | 2005-06-25 14:54:58 -0700 | [diff] [blame] | 2111 | static void __cpuinit apic_pm_activate(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2112 | { |
| 2113 | apic_pm_state.active = 1; |
| 2114 | } |
| 2115 | |
| 2116 | static int __init init_lapic_sysfs(void) |
| 2117 | { |
| 2118 | int error; |
Hiroshi Shimamoto | e83a5fd | 2008-01-30 13:32:35 +0100 | [diff] [blame] | 2119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2120 | if (!cpu_has_apic) |
| 2121 | return 0; |
| 2122 | /* XXX: remove suspend/resume procs if !apic_pm_state.active? */ |
Hiroshi Shimamoto | e83a5fd | 2008-01-30 13:32:35 +0100 | [diff] [blame] | 2123 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2124 | error = sysdev_class_register(&lapic_sysclass); |
| 2125 | if (!error) |
| 2126 | error = sysdev_register(&device_lapic); |
| 2127 | return error; |
| 2128 | } |
Fenghua Yu | b24696b | 2009-03-27 14:22:44 -0700 | [diff] [blame] | 2129 | |
| 2130 | /* local apic needs to resume before other devices access its registers. */ |
| 2131 | core_initcall(init_lapic_sysfs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2132 | |
| 2133 | #else /* CONFIG_PM */ |
| 2134 | |
| 2135 | static void apic_pm_activate(void) { } |
| 2136 | |
| 2137 | #endif /* CONFIG_PM */ |
| 2138 | |
Yinghai Lu | f28c0ae | 2008-08-24 02:01:49 -0700 | [diff] [blame] | 2139 | #ifdef CONFIG_X86_64 |
Yinghai Lu | e0e4214 | 2009-04-26 23:39:38 -0700 | [diff] [blame] | 2140 | |
| 2141 | static int __cpuinit apic_cluster_num(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2142 | { |
| 2143 | int i, clusters, zeros; |
| 2144 | unsigned id; |
Yinghai Lu | 322850a | 2008-02-23 21:48:42 -0800 | [diff] [blame] | 2145 | u16 *bios_cpu_apicid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2146 | DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS); |
| 2147 | |
Mike Travis | 23ca4bb | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 2148 | bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid); |
Suresh Siddha | 376ec33f | 2005-05-16 21:53:32 -0700 | [diff] [blame] | 2149 | bitmap_zero(clustermap, NUM_APIC_CLUSTERS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2150 | |
Mike Travis | 168ef54 | 2008-12-16 17:34:01 -0800 | [diff] [blame] | 2151 | for (i = 0; i < nr_cpu_ids; i++) { |
travis@sgi.com | e8c10ef | 2008-01-30 13:33:12 +0100 | [diff] [blame] | 2152 | /* are we being called early in kernel startup? */ |
Mike Travis | 693e3c5 | 2008-01-30 13:33:14 +0100 | [diff] [blame] | 2153 | if (bios_cpu_apicid) { |
| 2154 | id = bios_cpu_apicid[i]; |
Jaswinder Singh Rajput | e423e33 | 2009-01-04 16:16:25 +0530 | [diff] [blame] | 2155 | } else if (i < nr_cpu_ids) { |
travis@sgi.com | e8c10ef | 2008-01-30 13:33:12 +0100 | [diff] [blame] | 2156 | if (cpu_present(i)) |
| 2157 | id = per_cpu(x86_bios_cpu_apicid, i); |
| 2158 | else |
| 2159 | continue; |
Jaswinder Singh Rajput | e423e33 | 2009-01-04 16:16:25 +0530 | [diff] [blame] | 2160 | } else |
travis@sgi.com | e8c10ef | 2008-01-30 13:33:12 +0100 | [diff] [blame] | 2161 | break; |
| 2162 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2163 | if (id != BAD_APICID) |
| 2164 | __set_bit(APIC_CLUSTERID(id), clustermap); |
| 2165 | } |
| 2166 | |
| 2167 | /* Problem: Partially populated chassis may not have CPUs in some of |
| 2168 | * the APIC clusters they have been allocated. Only present CPUs have |
travis@sgi.com | 602a54a | 2008-01-30 13:33:21 +0100 | [diff] [blame] | 2169 | * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap. |
| 2170 | * Since clusters are allocated sequentially, count zeros only if |
| 2171 | * they are bounded by ones. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2172 | */ |
| 2173 | clusters = 0; |
| 2174 | zeros = 0; |
| 2175 | for (i = 0; i < NUM_APIC_CLUSTERS; i++) { |
| 2176 | if (test_bit(i, clustermap)) { |
| 2177 | clusters += 1 + zeros; |
| 2178 | zeros = 0; |
| 2179 | } else |
| 2180 | ++zeros; |
| 2181 | } |
| 2182 | |
Yinghai Lu | e0e4214 | 2009-04-26 23:39:38 -0700 | [diff] [blame] | 2183 | return clusters; |
| 2184 | } |
| 2185 | |
| 2186 | static int __cpuinitdata multi_checked; |
| 2187 | static int __cpuinitdata multi; |
| 2188 | |
| 2189 | static int __cpuinit set_multi(const struct dmi_system_id *d) |
| 2190 | { |
| 2191 | if (multi) |
| 2192 | return 0; |
Cyrill Gorcunov | 6f0aced | 2009-05-01 23:54:25 +0400 | [diff] [blame] | 2193 | pr_info("APIC: %s detected, Multi Chassis\n", d->ident); |
Yinghai Lu | e0e4214 | 2009-04-26 23:39:38 -0700 | [diff] [blame] | 2194 | multi = 1; |
| 2195 | return 0; |
| 2196 | } |
| 2197 | |
| 2198 | static const __cpuinitconst struct dmi_system_id multi_dmi_table[] = { |
| 2199 | { |
| 2200 | .callback = set_multi, |
| 2201 | .ident = "IBM System Summit2", |
| 2202 | .matches = { |
| 2203 | DMI_MATCH(DMI_SYS_VENDOR, "IBM"), |
| 2204 | DMI_MATCH(DMI_PRODUCT_NAME, "Summit2"), |
| 2205 | }, |
| 2206 | }, |
| 2207 | {} |
| 2208 | }; |
| 2209 | |
| 2210 | static void __cpuinit dmi_check_multi(void) |
| 2211 | { |
| 2212 | if (multi_checked) |
| 2213 | return; |
| 2214 | |
| 2215 | dmi_check_system(multi_dmi_table); |
| 2216 | multi_checked = 1; |
| 2217 | } |
| 2218 | |
| 2219 | /* |
| 2220 | * apic_is_clustered_box() -- Check if we can expect good TSC |
| 2221 | * |
| 2222 | * Thus far, the major user of this is IBM's Summit2 series: |
| 2223 | * Clustered boxes may have unsynced TSC problems if they are |
| 2224 | * multi-chassis. |
| 2225 | * Use DMI to check them |
| 2226 | */ |
| 2227 | __cpuinit int apic_is_clustered_box(void) |
| 2228 | { |
| 2229 | dmi_check_multi(); |
| 2230 | if (multi) |
Ravikiran G Thirumalai | 1cb6848 | 2008-03-20 00:45:08 -0700 | [diff] [blame] | 2231 | return 1; |
| 2232 | |
Yinghai Lu | e0e4214 | 2009-04-26 23:39:38 -0700 | [diff] [blame] | 2233 | if (!is_vsmp_box()) |
| 2234 | return 0; |
| 2235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2236 | /* |
Yinghai Lu | e0e4214 | 2009-04-26 23:39:38 -0700 | [diff] [blame] | 2237 | * ScaleMP vSMPowered boxes have one cluster per board and TSCs are |
| 2238 | * not guaranteed to be synced between boards |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2239 | */ |
Yinghai Lu | e0e4214 | 2009-04-26 23:39:38 -0700 | [diff] [blame] | 2240 | if (apic_cluster_num() > 1) |
| 2241 | return 1; |
| 2242 | |
| 2243 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2244 | } |
Yinghai Lu | f28c0ae | 2008-08-24 02:01:49 -0700 | [diff] [blame] | 2245 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2246 | |
| 2247 | /* |
Thomas Gleixner | 0e078e2 | 2008-01-30 13:30:20 +0100 | [diff] [blame] | 2248 | * APIC command line parameters |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2249 | */ |
Cyrill Gorcunov | 789fa73 | 2008-08-18 20:46:01 +0400 | [diff] [blame] | 2250 | static int __init setup_disableapic(char *arg) |
Thomas Gleixner | 6935d1f | 2007-07-21 17:10:17 +0200 | [diff] [blame] | 2251 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2252 | disable_apic = 1; |
Yinghai Lu | 9175fc0 | 2008-07-21 01:38:14 -0700 | [diff] [blame] | 2253 | setup_clear_cpu_cap(X86_FEATURE_APIC); |
Andi Kleen | 2c8c0e6 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 2254 | return 0; |
| 2255 | } |
| 2256 | early_param("disableapic", setup_disableapic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2257 | |
Andi Kleen | 2c8c0e6 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 2258 | /* same as disableapic, for compatibility */ |
Cyrill Gorcunov | 789fa73 | 2008-08-18 20:46:01 +0400 | [diff] [blame] | 2259 | static int __init setup_nolapic(char *arg) |
Thomas Gleixner | 6935d1f | 2007-07-21 17:10:17 +0200 | [diff] [blame] | 2260 | { |
Cyrill Gorcunov | 789fa73 | 2008-08-18 20:46:01 +0400 | [diff] [blame] | 2261 | return setup_disableapic(arg); |
Thomas Gleixner | 6935d1f | 2007-07-21 17:10:17 +0200 | [diff] [blame] | 2262 | } |
Andi Kleen | 2c8c0e6 | 2006-09-26 10:52:32 +0200 | [diff] [blame] | 2263 | early_param("nolapic", setup_nolapic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2264 | |
Linus Torvalds | 2e7c283 | 2007-03-23 11:32:31 -0700 | [diff] [blame] | 2265 | static int __init parse_lapic_timer_c2_ok(char *arg) |
| 2266 | { |
| 2267 | local_apic_timer_c2_ok = 1; |
| 2268 | return 0; |
| 2269 | } |
| 2270 | early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok); |
| 2271 | |
Cyrill Gorcunov | 36fef09 | 2008-08-15 13:51:20 +0200 | [diff] [blame] | 2272 | static int __init parse_disable_apic_timer(char *arg) |
Thomas Gleixner | 6935d1f | 2007-07-21 17:10:17 +0200 | [diff] [blame] | 2273 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2274 | disable_apic_timer = 1; |
Cyrill Gorcunov | 36fef09 | 2008-08-15 13:51:20 +0200 | [diff] [blame] | 2275 | return 0; |
Thomas Gleixner | 6935d1f | 2007-07-21 17:10:17 +0200 | [diff] [blame] | 2276 | } |
Cyrill Gorcunov | 36fef09 | 2008-08-15 13:51:20 +0200 | [diff] [blame] | 2277 | early_param("noapictimer", parse_disable_apic_timer); |
| 2278 | |
| 2279 | static int __init parse_nolapic_timer(char *arg) |
| 2280 | { |
| 2281 | disable_apic_timer = 1; |
| 2282 | return 0; |
| 2283 | } |
| 2284 | early_param("nolapic_timer", parse_nolapic_timer); |
Andi Kleen | 73dea47 | 2006-02-03 21:50:50 +0100 | [diff] [blame] | 2285 | |
Cyrill Gorcunov | 79af9be | 2008-08-18 20:46:00 +0400 | [diff] [blame] | 2286 | static int __init apic_set_verbosity(char *arg) |
| 2287 | { |
| 2288 | if (!arg) { |
| 2289 | #ifdef CONFIG_X86_64 |
| 2290 | skip_ioapic_setup = 0; |
Cyrill Gorcunov | 79af9be | 2008-08-18 20:46:00 +0400 | [diff] [blame] | 2291 | return 0; |
| 2292 | #endif |
| 2293 | return -EINVAL; |
| 2294 | } |
| 2295 | |
| 2296 | if (strcmp("debug", arg) == 0) |
| 2297 | apic_verbosity = APIC_DEBUG; |
| 2298 | else if (strcmp("verbose", arg) == 0) |
| 2299 | apic_verbosity = APIC_VERBOSE; |
| 2300 | else { |
Cyrill Gorcunov | ba21ebb | 2008-11-10 09:16:41 +0100 | [diff] [blame] | 2301 | pr_warning("APIC Verbosity level %s not recognised" |
Cyrill Gorcunov | 79af9be | 2008-08-18 20:46:00 +0400 | [diff] [blame] | 2302 | " use apic=verbose or apic=debug\n", arg); |
| 2303 | return -EINVAL; |
| 2304 | } |
| 2305 | |
| 2306 | return 0; |
| 2307 | } |
| 2308 | early_param("apic", apic_set_verbosity); |
| 2309 | |
Yinghai Lu | 1e934dd | 2008-02-22 13:37:26 -0800 | [diff] [blame] | 2310 | static int __init lapic_insert_resource(void) |
| 2311 | { |
| 2312 | if (!apic_phys) |
| 2313 | return -1; |
| 2314 | |
| 2315 | /* Put local APIC into the resource map. */ |
| 2316 | lapic_resource.start = apic_phys; |
| 2317 | lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1; |
| 2318 | insert_resource(&iomem_resource, &lapic_resource); |
| 2319 | |
| 2320 | return 0; |
| 2321 | } |
| 2322 | |
| 2323 | /* |
| 2324 | * need call insert after e820_reserve_resources() |
| 2325 | * that is using request_resource |
| 2326 | */ |
| 2327 | late_initcall(lapic_insert_resource); |