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