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