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