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