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