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