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