1457c8996SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only 2f62bae50SIngo Molnar /* 3f62bae50SIngo Molnar * Local APIC handling, local APIC timers 4f62bae50SIngo Molnar * 5f62bae50SIngo Molnar * (c) 1999, 2000, 2009 Ingo Molnar <mingo@redhat.com> 6f62bae50SIngo Molnar * 7f62bae50SIngo Molnar * Fixes 8f62bae50SIngo Molnar * Maciej W. Rozycki : Bits for genuine 82489DX APICs; 9f62bae50SIngo Molnar * thanks to Eric Gilmore 10f62bae50SIngo Molnar * and Rolf G. Tews 11f62bae50SIngo Molnar * for testing these extensively. 12f62bae50SIngo Molnar * Maciej W. Rozycki : Various updates and fixes. 13f62bae50SIngo Molnar * Mikael Pettersson : Power Management for UP-APIC. 14f62bae50SIngo Molnar * Pavel Machek and 15f62bae50SIngo Molnar * Mikael Pettersson : PM converted to driver model. 16f62bae50SIngo Molnar */ 17f62bae50SIngo Molnar 18cdd6c482SIngo Molnar #include <linux/perf_event.h> 19f62bae50SIngo Molnar #include <linux/kernel_stat.h> 20f62bae50SIngo Molnar #include <linux/mc146818rtc.h> 21f62bae50SIngo Molnar #include <linux/acpi_pmtmr.h> 22f62bae50SIngo Molnar #include <linux/clockchips.h> 23f62bae50SIngo Molnar #include <linux/interrupt.h> 2457c8a661SMike Rapoport #include <linux/memblock.h> 25f62bae50SIngo Molnar #include <linux/ftrace.h> 26f62bae50SIngo Molnar #include <linux/ioport.h> 27186f4360SPaul Gortmaker #include <linux/export.h> 28f3c6ea1bSRafael J. Wysocki #include <linux/syscore_ops.h> 29f62bae50SIngo Molnar #include <linux/delay.h> 30f62bae50SIngo Molnar #include <linux/timex.h> 31334955efSRalf Baechle #include <linux/i8253.h> 32f62bae50SIngo Molnar #include <linux/dmar.h> 33f62bae50SIngo Molnar #include <linux/init.h> 34f62bae50SIngo Molnar #include <linux/cpu.h> 35f62bae50SIngo Molnar #include <linux/dmi.h> 36f62bae50SIngo Molnar #include <linux/smp.h> 37f62bae50SIngo Molnar #include <linux/mm.h> 38f62bae50SIngo Molnar 3983ab8514SSteven Rostedt (Red Hat) #include <asm/trace/irq_vectors.h> 408a8f422dSSuresh Siddha #include <asm/irq_remapping.h> 41cdd6c482SIngo Molnar #include <asm/perf_event.h> 42736decacSThomas Gleixner #include <asm/x86_init.h> 43f62bae50SIngo Molnar #include <asm/pgalloc.h> 4460063497SArun Sharma #include <linux/atomic.h> 45f62bae50SIngo Molnar #include <asm/mpspec.h> 46f62bae50SIngo Molnar #include <asm/i8259.h> 47f62bae50SIngo Molnar #include <asm/proto.h> 48ad3bc25aSBorislav Petkov #include <asm/traps.h> 49f62bae50SIngo Molnar #include <asm/apic.h> 507167d08eSHenrik Kretzschmar #include <asm/io_apic.h> 51f62bae50SIngo Molnar #include <asm/desc.h> 52f62bae50SIngo Molnar #include <asm/hpet.h> 53f62bae50SIngo Molnar #include <asm/mtrr.h> 5416f871bcSRalf Baechle #include <asm/time.h> 55f62bae50SIngo Molnar #include <asm/smp.h> 56638bee71SH. Peter Anvin #include <asm/mce.h> 578c3ba8d0SKerstin Jonsson #include <asm/tsc.h> 582904ed8dSSheng Yang #include <asm/hypervisor.h> 59bd9240a1SPeter Zijlstra #include <asm/cpu_device_id.h> 60bd9240a1SPeter Zijlstra #include <asm/intel-family.h> 61447ae316SNicolai Stange #include <asm/irq_regs.h> 62f62bae50SIngo Molnar 63f62bae50SIngo Molnar unsigned int num_processors; 64f62bae50SIngo Molnar 65148f9bb8SPaul Gortmaker unsigned disabled_cpus; 66f62bae50SIngo Molnar 67f62bae50SIngo Molnar /* Processor that is doing the boot up */ 68f62bae50SIngo Molnar unsigned int boot_cpu_physical_apicid = -1U; 69cc08e04cSDavid Rientjes EXPORT_SYMBOL_GPL(boot_cpu_physical_apicid); 70f62bae50SIngo Molnar 71cff9ab2bSDenys Vlasenko u8 boot_cpu_apic_version; 72cff9ab2bSDenys Vlasenko 73f62bae50SIngo Molnar /* 74f62bae50SIngo Molnar * The highest APIC ID seen during enumeration. 75f62bae50SIngo Molnar */ 76a491cc90SJiang Liu static unsigned int max_physical_apicid; 77f62bae50SIngo Molnar 78f62bae50SIngo Molnar /* 79f62bae50SIngo Molnar * Bitmask of physically existing CPUs: 80f62bae50SIngo Molnar */ 81f62bae50SIngo Molnar physid_mask_t phys_cpu_present_map; 82f62bae50SIngo Molnar 83f62bae50SIngo Molnar /* 84151e0c7dSHATAYAMA Daisuke * Processor to be disabled specified by kernel parameter 85151e0c7dSHATAYAMA Daisuke * disable_cpu_apicid=<int>, mostly used for the kdump 2nd kernel to 86151e0c7dSHATAYAMA Daisuke * avoid undefined behaviour caused by sending INIT from AP to BSP. 87151e0c7dSHATAYAMA Daisuke */ 885b4d1dbcSH. Peter Anvin static unsigned int disabled_cpu_apicid __read_mostly = BAD_APICID; 89151e0c7dSHATAYAMA Daisuke 90151e0c7dSHATAYAMA Daisuke /* 91b7c4948eSHidehiro Kawai * This variable controls which CPUs receive external NMIs. By default, 92b7c4948eSHidehiro Kawai * external NMIs are delivered only to the BSP. 93b7c4948eSHidehiro Kawai */ 94b7c4948eSHidehiro Kawai static int apic_extnmi = APIC_EXTNMI_BSP; 95b7c4948eSHidehiro Kawai 96b7c4948eSHidehiro Kawai /* 97f62bae50SIngo Molnar * Map cpu index to physical APIC ID 98f62bae50SIngo Molnar */ 990816b0f0SVlad Zolotarov DEFINE_EARLY_PER_CPU_READ_MOSTLY(u16, x86_cpu_to_apicid, BAD_APICID); 1000816b0f0SVlad Zolotarov DEFINE_EARLY_PER_CPU_READ_MOSTLY(u16, x86_bios_cpu_apicid, BAD_APICID); 1013e9e57faSVitaly Kuznetsov DEFINE_EARLY_PER_CPU_READ_MOSTLY(u32, x86_cpu_to_acpiid, U32_MAX); 102f62bae50SIngo Molnar EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_apicid); 103f62bae50SIngo Molnar EXPORT_EARLY_PER_CPU_SYMBOL(x86_bios_cpu_apicid); 1043e9e57faSVitaly Kuznetsov EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_acpiid); 105f62bae50SIngo Molnar 106f62bae50SIngo Molnar #ifdef CONFIG_X86_32 1074c321ff8STejun Heo 1084c321ff8STejun Heo /* 1094c321ff8STejun Heo * On x86_32, the mapping between cpu and logical apicid may vary 1104c321ff8STejun Heo * depending on apic in use. The following early percpu variable is 1114c321ff8STejun Heo * used for the mapping. This is where the behaviors of x86_64 and 32 1124c321ff8STejun Heo * actually diverge. Let's keep it ugly for now. 1134c321ff8STejun Heo */ 1140816b0f0SVlad Zolotarov DEFINE_EARLY_PER_CPU_READ_MOSTLY(int, x86_cpu_to_logical_apicid, BAD_APICID); 1154c321ff8STejun Heo 116f62bae50SIngo Molnar /* Local APIC was disabled by the BIOS and enabled by the kernel */ 117f62bae50SIngo Molnar static int enabled_via_apicbase; 118f62bae50SIngo Molnar 119c0eaa453SCyrill Gorcunov /* 120c0eaa453SCyrill Gorcunov * Handle interrupt mode configuration register (IMCR). 121c0eaa453SCyrill Gorcunov * This register controls whether the interrupt signals 122c0eaa453SCyrill Gorcunov * that reach the BSP come from the master PIC or from the 123c0eaa453SCyrill Gorcunov * local APIC. Before entering Symmetric I/O Mode, either 124c0eaa453SCyrill Gorcunov * the BIOS or the operating system must switch out of 125c0eaa453SCyrill Gorcunov * PIC Mode by changing the IMCR. 126c0eaa453SCyrill Gorcunov */ 1275cda395fSAlexander van Heukelum static inline void imcr_pic_to_apic(void) 128c0eaa453SCyrill Gorcunov { 129c0eaa453SCyrill Gorcunov /* select IMCR register */ 130c0eaa453SCyrill Gorcunov outb(0x70, 0x22); 131c0eaa453SCyrill Gorcunov /* NMI and 8259 INTR go through APIC */ 132c0eaa453SCyrill Gorcunov outb(0x01, 0x23); 133c0eaa453SCyrill Gorcunov } 134c0eaa453SCyrill Gorcunov 1355cda395fSAlexander van Heukelum static inline void imcr_apic_to_pic(void) 136c0eaa453SCyrill Gorcunov { 137c0eaa453SCyrill Gorcunov /* select IMCR register */ 138c0eaa453SCyrill Gorcunov outb(0x70, 0x22); 139c0eaa453SCyrill Gorcunov /* NMI and 8259 INTR go directly to BSP */ 140c0eaa453SCyrill Gorcunov outb(0x00, 0x23); 141c0eaa453SCyrill Gorcunov } 142f62bae50SIngo Molnar #endif 143f62bae50SIngo Molnar 144279f1461SSuresh Siddha /* 145279f1461SSuresh Siddha * Knob to control our willingness to enable the local APIC. 146279f1461SSuresh Siddha * 147279f1461SSuresh Siddha * +1=force-enable 148279f1461SSuresh Siddha */ 149279f1461SSuresh Siddha static int force_enable_local_apic __initdata; 150dc9788f4SDavid Rientjes 151279f1461SSuresh Siddha /* 152279f1461SSuresh Siddha * APIC command line parameters 153279f1461SSuresh Siddha */ 154279f1461SSuresh Siddha static int __init parse_lapic(char *arg) 155279f1461SSuresh Siddha { 15697f2645fSMasahiro Yamada if (IS_ENABLED(CONFIG_X86_32) && !arg) 157279f1461SSuresh Siddha force_enable_local_apic = 1; 15827cf9298SMathias Krause else if (arg && !strncmp(arg, "notscdeadline", 13)) 159279f1461SSuresh Siddha setup_clear_cpu_cap(X86_FEATURE_TSC_DEADLINE_TIMER); 160279f1461SSuresh Siddha return 0; 161279f1461SSuresh Siddha } 162279f1461SSuresh Siddha early_param("lapic", parse_lapic); 163279f1461SSuresh Siddha 164f62bae50SIngo Molnar #ifdef CONFIG_X86_64 165f62bae50SIngo Molnar static int apic_calibrate_pmtmr __initdata; 166f62bae50SIngo Molnar static __init int setup_apicpmtimer(char *s) 167f62bae50SIngo Molnar { 168f62bae50SIngo Molnar apic_calibrate_pmtmr = 1; 169f62bae50SIngo Molnar notsc_setup(NULL); 170f62bae50SIngo Molnar return 0; 171f62bae50SIngo Molnar } 172f62bae50SIngo Molnar __setup("apicpmtimer", setup_apicpmtimer); 173f62bae50SIngo Molnar #endif 174f62bae50SIngo Molnar 175f62bae50SIngo Molnar unsigned long mp_lapic_addr; 176f62bae50SIngo Molnar int disable_apic; 177f62bae50SIngo Molnar /* Disable local APIC timer from the kernel commandline or via dmi quirk */ 17825874a29SHenrik Kretzschmar static int disable_apic_timer __initdata; 179f62bae50SIngo Molnar /* Local APIC timer works in C2 */ 180f62bae50SIngo Molnar int local_apic_timer_c2_ok; 181f62bae50SIngo Molnar EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok); 182f62bae50SIngo Molnar 183f62bae50SIngo Molnar /* 184f62bae50SIngo Molnar * Debug level, exported for io_apic.c 185f62bae50SIngo Molnar */ 186ec633558SQian Cai int apic_verbosity; 187f62bae50SIngo Molnar 188f62bae50SIngo Molnar int pic_mode; 189f62bae50SIngo Molnar 190f62bae50SIngo Molnar /* Have we found an MP table */ 191f62bae50SIngo Molnar int smp_found_config; 192f62bae50SIngo Molnar 193f62bae50SIngo Molnar static struct resource lapic_resource = { 194f62bae50SIngo Molnar .name = "Local APIC", 195f62bae50SIngo Molnar .flags = IORESOURCE_MEM | IORESOURCE_BUSY, 196f62bae50SIngo Molnar }; 197f62bae50SIngo Molnar 19852ae346bSDaniel Drake unsigned int lapic_timer_period = 0; 199f62bae50SIngo Molnar 200f62bae50SIngo Molnar static void apic_pm_activate(void); 201f62bae50SIngo Molnar 202f62bae50SIngo Molnar static unsigned long apic_phys; 203f62bae50SIngo Molnar 204f62bae50SIngo Molnar /* 205f62bae50SIngo Molnar * Get the LAPIC version 206f62bae50SIngo Molnar */ 207f62bae50SIngo Molnar static inline int lapic_get_version(void) 208f62bae50SIngo Molnar { 209f62bae50SIngo Molnar return GET_APIC_VERSION(apic_read(APIC_LVR)); 210f62bae50SIngo Molnar } 211f62bae50SIngo Molnar 212f62bae50SIngo Molnar /* 213f62bae50SIngo Molnar * Check, if the APIC is integrated or a separate chip 214f62bae50SIngo Molnar */ 215f62bae50SIngo Molnar static inline int lapic_is_integrated(void) 216f62bae50SIngo Molnar { 217f62bae50SIngo Molnar return APIC_INTEGRATED(lapic_get_version()); 218f62bae50SIngo Molnar } 219f62bae50SIngo Molnar 220f62bae50SIngo Molnar /* 221f62bae50SIngo Molnar * Check, whether this is a modern or a first generation APIC 222f62bae50SIngo Molnar */ 223f62bae50SIngo Molnar static int modern_apic(void) 224f62bae50SIngo Molnar { 225f62bae50SIngo Molnar /* AMD systems use old APIC versions, so check the CPU */ 226f62bae50SIngo Molnar if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD && 227f62bae50SIngo Molnar boot_cpu_data.x86 >= 0xf) 228f62bae50SIngo Molnar return 1; 229da33dfefSPu Wen 230da33dfefSPu Wen /* Hygon systems use modern APIC */ 231da33dfefSPu Wen if (boot_cpu_data.x86_vendor == X86_VENDOR_HYGON) 232da33dfefSPu Wen return 1; 233da33dfefSPu Wen 234f62bae50SIngo Molnar return lapic_get_version() >= 0x14; 235f62bae50SIngo Molnar } 236f62bae50SIngo Molnar 23708306ce6SCyrill Gorcunov /* 238a933c618SCyrill Gorcunov * right after this call apic become NOOP driven 239a933c618SCyrill Gorcunov * so apic->write/read doesn't do anything 24008306ce6SCyrill Gorcunov */ 24125874a29SHenrik Kretzschmar static void __init apic_disable(void) 24208306ce6SCyrill Gorcunov { 243f88f2b4fSCyrill Gorcunov pr_info("APIC: switched to apic NOOP\n"); 244a933c618SCyrill Gorcunov apic = &apic_noop; 24508306ce6SCyrill Gorcunov } 24608306ce6SCyrill Gorcunov 247f62bae50SIngo Molnar void native_apic_wait_icr_idle(void) 248f62bae50SIngo Molnar { 249f62bae50SIngo Molnar while (apic_read(APIC_ICR) & APIC_ICR_BUSY) 250f62bae50SIngo Molnar cpu_relax(); 251f62bae50SIngo Molnar } 252f62bae50SIngo Molnar 253f62bae50SIngo Molnar u32 native_safe_apic_wait_icr_idle(void) 254f62bae50SIngo Molnar { 255f62bae50SIngo Molnar u32 send_status; 256f62bae50SIngo Molnar int timeout; 257f62bae50SIngo Molnar 258f62bae50SIngo Molnar timeout = 0; 259f62bae50SIngo Molnar do { 260f62bae50SIngo Molnar send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY; 261f62bae50SIngo Molnar if (!send_status) 262f62bae50SIngo Molnar break; 263b49d7d87SFernando Luis Vazquez Cao inc_irq_stat(icr_read_retry_count); 264f62bae50SIngo Molnar udelay(100); 265f62bae50SIngo Molnar } while (timeout++ < 1000); 266f62bae50SIngo Molnar 267f62bae50SIngo Molnar return send_status; 268f62bae50SIngo Molnar } 269f62bae50SIngo Molnar 270f62bae50SIngo Molnar void native_apic_icr_write(u32 low, u32 id) 271f62bae50SIngo Molnar { 272ea7bdc65SJan Kiszka unsigned long flags; 273ea7bdc65SJan Kiszka 274ea7bdc65SJan Kiszka local_irq_save(flags); 275f62bae50SIngo Molnar apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id)); 276f62bae50SIngo Molnar apic_write(APIC_ICR, low); 277ea7bdc65SJan Kiszka local_irq_restore(flags); 278f62bae50SIngo Molnar } 279f62bae50SIngo Molnar 280f62bae50SIngo Molnar u64 native_apic_icr_read(void) 281f62bae50SIngo Molnar { 282f62bae50SIngo Molnar u32 icr1, icr2; 283f62bae50SIngo Molnar 284f62bae50SIngo Molnar icr2 = apic_read(APIC_ICR2); 285f62bae50SIngo Molnar icr1 = apic_read(APIC_ICR); 286f62bae50SIngo Molnar 287f62bae50SIngo Molnar return icr1 | ((u64)icr2 << 32); 288f62bae50SIngo Molnar } 289f62bae50SIngo Molnar 290f62bae50SIngo Molnar #ifdef CONFIG_X86_32 291f62bae50SIngo Molnar /** 292f62bae50SIngo Molnar * get_physical_broadcast - Get number of physical broadcast IDs 293f62bae50SIngo Molnar */ 294f62bae50SIngo Molnar int get_physical_broadcast(void) 295f62bae50SIngo Molnar { 296f62bae50SIngo Molnar return modern_apic() ? 0xff : 0xf; 297f62bae50SIngo Molnar } 298f62bae50SIngo Molnar #endif 299f62bae50SIngo Molnar 300f62bae50SIngo Molnar /** 301f62bae50SIngo Molnar * lapic_get_maxlvt - get the maximum number of local vector table entries 302f62bae50SIngo Molnar */ 303f62bae50SIngo Molnar int lapic_get_maxlvt(void) 304f62bae50SIngo Molnar { 305f62bae50SIngo Molnar /* 306f62bae50SIngo Molnar * - we always have APIC integrated on 64bit mode 307f62bae50SIngo Molnar * - 82489DXs do not report # of LVT entries 308f62bae50SIngo Molnar */ 309ae41a2a4SDou Liyang return lapic_is_integrated() ? GET_APIC_MAXLVT(apic_read(APIC_LVR)) : 2; 310f62bae50SIngo Molnar } 311f62bae50SIngo Molnar 312f62bae50SIngo Molnar /* 313f62bae50SIngo Molnar * Local APIC timer 314f62bae50SIngo Molnar */ 315f62bae50SIngo Molnar 316f62bae50SIngo Molnar /* Clock divisor */ 317f62bae50SIngo Molnar #define APIC_DIVISOR 16 3181a9e4c56SNicolai Stange #define TSC_DIVISOR 8 319f62bae50SIngo Molnar 320f62bae50SIngo Molnar /* 321f62bae50SIngo Molnar * This function sets up the local APIC timer, with a timeout of 322f62bae50SIngo Molnar * 'clocks' APIC bus clock. During calibration we actually call 323f62bae50SIngo Molnar * this function twice on the boot CPU, once with a bogus timeout 324f62bae50SIngo Molnar * value, second time for real. The other (noncalibrating) CPUs 325f62bae50SIngo Molnar * call this function only once, with the real, calibrated value. 326f62bae50SIngo Molnar * 327f62bae50SIngo Molnar * We do reads before writes even if unnecessary, to get around the 328f62bae50SIngo Molnar * P5 APIC double write bug. 329f62bae50SIngo Molnar */ 330f62bae50SIngo Molnar static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen) 331f62bae50SIngo Molnar { 332f62bae50SIngo Molnar unsigned int lvtt_value, tmp_value; 333f62bae50SIngo Molnar 334f62bae50SIngo Molnar lvtt_value = LOCAL_TIMER_VECTOR; 335f62bae50SIngo Molnar if (!oneshot) 336f62bae50SIngo Molnar lvtt_value |= APIC_LVT_TIMER_PERIODIC; 337279f1461SSuresh Siddha else if (boot_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER)) 338279f1461SSuresh Siddha lvtt_value |= APIC_LVT_TIMER_TSCDEADLINE; 339279f1461SSuresh Siddha 340f62bae50SIngo Molnar if (!lapic_is_integrated()) 341f62bae50SIngo Molnar lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV); 342f62bae50SIngo Molnar 343f62bae50SIngo Molnar if (!irqen) 344f62bae50SIngo Molnar lvtt_value |= APIC_LVT_MASKED; 345f62bae50SIngo Molnar 346f62bae50SIngo Molnar apic_write(APIC_LVTT, lvtt_value); 347f62bae50SIngo Molnar 348279f1461SSuresh Siddha if (lvtt_value & APIC_LVT_TIMER_TSCDEADLINE) { 3495d7c631dSShaohua Li /* 3505d7c631dSShaohua Li * See Intel SDM: TSC-Deadline Mode chapter. In xAPIC mode, 3515d7c631dSShaohua Li * writing to the APIC LVTT and TSC_DEADLINE MSR isn't serialized. 3525d7c631dSShaohua Li * According to Intel, MFENCE can do the serialization here. 3535d7c631dSShaohua Li */ 3545d7c631dSShaohua Li asm volatile("mfence" : : : "memory"); 3555d7c631dSShaohua Li 356279f1461SSuresh Siddha printk_once(KERN_DEBUG "TSC deadline timer enabled\n"); 357279f1461SSuresh Siddha return; 358279f1461SSuresh Siddha } 359279f1461SSuresh Siddha 360f62bae50SIngo Molnar /* 361f62bae50SIngo Molnar * Divide PICLK by 16 362f62bae50SIngo Molnar */ 363f62bae50SIngo Molnar tmp_value = apic_read(APIC_TDCR); 364f62bae50SIngo Molnar apic_write(APIC_TDCR, 365f62bae50SIngo Molnar (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) | 366f62bae50SIngo Molnar APIC_TDR_DIV_16); 367f62bae50SIngo Molnar 368f62bae50SIngo Molnar if (!oneshot) 369f62bae50SIngo Molnar apic_write(APIC_TMICT, clocks / APIC_DIVISOR); 370f62bae50SIngo Molnar } 371f62bae50SIngo Molnar 372f62bae50SIngo Molnar /* 373a68c439bSRobert Richter * Setup extended LVT, AMD specific 374f62bae50SIngo Molnar * 375a68c439bSRobert Richter * Software should use the LVT offsets the BIOS provides. The offsets 376a68c439bSRobert Richter * are determined by the subsystems using it like those for MCE 377a68c439bSRobert Richter * threshold or IBS. On K8 only offset 0 (APIC500) and MCE interrupts 378a68c439bSRobert Richter * are supported. Beginning with family 10h at least 4 offsets are 379a68c439bSRobert Richter * available. 380f62bae50SIngo Molnar * 381a68c439bSRobert Richter * Since the offsets must be consistent for all cores, we keep track 382a68c439bSRobert Richter * of the LVT offsets in software and reserve the offset for the same 383a68c439bSRobert Richter * vector also to be used on other cores. An offset is freed by 384a68c439bSRobert Richter * setting the entry to APIC_EILVT_MASKED. 385a68c439bSRobert Richter * 386a68c439bSRobert Richter * If the BIOS is right, there should be no conflicts. Otherwise a 387a68c439bSRobert Richter * "[Firmware Bug]: ..." error message is generated. However, if 388a68c439bSRobert Richter * software does not properly determines the offsets, it is not 389a68c439bSRobert Richter * necessarily a BIOS bug. 390f62bae50SIngo Molnar */ 391f62bae50SIngo Molnar 392a68c439bSRobert Richter static atomic_t eilvt_offsets[APIC_EILVT_NR_MAX]; 393f62bae50SIngo Molnar 394a68c439bSRobert Richter static inline int eilvt_entry_is_changeable(unsigned int old, unsigned int new) 395a68c439bSRobert Richter { 396a68c439bSRobert Richter return (old & APIC_EILVT_MASKED) 397a68c439bSRobert Richter || (new == APIC_EILVT_MASKED) 398a68c439bSRobert Richter || ((new & ~APIC_EILVT_MASKED) == old); 399a68c439bSRobert Richter } 400a68c439bSRobert Richter 401a68c439bSRobert Richter static unsigned int reserve_eilvt_offset(int offset, unsigned int new) 402a68c439bSRobert Richter { 4038abc3122SRobert Richter unsigned int rsvd, vector; 404a68c439bSRobert Richter 405a68c439bSRobert Richter if (offset >= APIC_EILVT_NR_MAX) 406a68c439bSRobert Richter return ~0; 407a68c439bSRobert Richter 4088abc3122SRobert Richter rsvd = atomic_read(&eilvt_offsets[offset]); 409a68c439bSRobert Richter do { 4108abc3122SRobert Richter vector = rsvd & ~APIC_EILVT_MASKED; /* 0: unassigned */ 4118abc3122SRobert Richter if (vector && !eilvt_entry_is_changeable(vector, new)) 412a68c439bSRobert Richter /* may not change if vectors are different */ 413a68c439bSRobert Richter return rsvd; 414a68c439bSRobert Richter rsvd = atomic_cmpxchg(&eilvt_offsets[offset], rsvd, new); 415a68c439bSRobert Richter } while (rsvd != new); 416a68c439bSRobert Richter 4178abc3122SRobert Richter rsvd &= ~APIC_EILVT_MASKED; 4188abc3122SRobert Richter if (rsvd && rsvd != vector) 4198abc3122SRobert Richter pr_info("LVT offset %d assigned for vector 0x%02x\n", 4208abc3122SRobert Richter offset, rsvd); 4218abc3122SRobert Richter 422a68c439bSRobert Richter return new; 423a68c439bSRobert Richter } 424a68c439bSRobert Richter 425a68c439bSRobert Richter /* 426a68c439bSRobert Richter * If mask=1, the LVT entry does not generate interrupts while mask=0 427cbf74ceaSRobert Richter * enables the vector. See also the BKDGs. Must be called with 428cbf74ceaSRobert Richter * preemption disabled. 429a68c439bSRobert Richter */ 430a68c439bSRobert Richter 43127afdf20SRobert Richter int setup_APIC_eilvt(u8 offset, u8 vector, u8 msg_type, u8 mask) 432a68c439bSRobert Richter { 433a68c439bSRobert Richter unsigned long reg = APIC_EILVTn(offset); 434a68c439bSRobert Richter unsigned int new, old, reserved; 435a68c439bSRobert Richter 436a68c439bSRobert Richter new = (mask << 16) | (msg_type << 8) | vector; 437a68c439bSRobert Richter old = apic_read(reg); 438a68c439bSRobert Richter reserved = reserve_eilvt_offset(offset, new); 439a68c439bSRobert Richter 440a68c439bSRobert Richter if (reserved != new) { 441eb48c9cbSRobert Richter pr_err(FW_BUG "cpu %d, try to use APIC%lX (LVT offset %d) for " 442eb48c9cbSRobert Richter "vector 0x%x, but the register is already in use for " 443eb48c9cbSRobert Richter "vector 0x%x on another cpu\n", 444eb48c9cbSRobert Richter smp_processor_id(), reg, offset, new, reserved); 445a68c439bSRobert Richter return -EINVAL; 446a68c439bSRobert Richter } 447a68c439bSRobert Richter 448a68c439bSRobert Richter if (!eilvt_entry_is_changeable(old, new)) { 449eb48c9cbSRobert Richter pr_err(FW_BUG "cpu %d, try to use APIC%lX (LVT offset %d) for " 450eb48c9cbSRobert Richter "vector 0x%x, but the register is already in use for " 451eb48c9cbSRobert Richter "vector 0x%x on this cpu\n", 452eb48c9cbSRobert Richter smp_processor_id(), reg, offset, new, old); 453a68c439bSRobert Richter return -EBUSY; 454a68c439bSRobert Richter } 455a68c439bSRobert Richter 456a68c439bSRobert Richter apic_write(reg, new); 457a68c439bSRobert Richter 458a68c439bSRobert Richter return 0; 459f62bae50SIngo Molnar } 46027afdf20SRobert Richter EXPORT_SYMBOL_GPL(setup_APIC_eilvt); 461f62bae50SIngo Molnar 462f62bae50SIngo Molnar /* 463f62bae50SIngo Molnar * Program the next event, relative to now 464f62bae50SIngo Molnar */ 465f62bae50SIngo Molnar static int lapic_next_event(unsigned long delta, 466f62bae50SIngo Molnar struct clock_event_device *evt) 467f62bae50SIngo Molnar { 468f62bae50SIngo Molnar apic_write(APIC_TMICT, delta); 469f62bae50SIngo Molnar return 0; 470f62bae50SIngo Molnar } 471f62bae50SIngo Molnar 472279f1461SSuresh Siddha static int lapic_next_deadline(unsigned long delta, 473279f1461SSuresh Siddha struct clock_event_device *evt) 474279f1461SSuresh Siddha { 475279f1461SSuresh Siddha u64 tsc; 476279f1461SSuresh Siddha 4774ea1636bSAndy Lutomirski tsc = rdtsc(); 478279f1461SSuresh Siddha wrmsrl(MSR_IA32_TSC_DEADLINE, tsc + (((u64) delta) * TSC_DIVISOR)); 479279f1461SSuresh Siddha return 0; 480279f1461SSuresh Siddha } 481279f1461SSuresh Siddha 482b23d8e52SViresh Kumar static int lapic_timer_shutdown(struct clock_event_device *evt) 483f62bae50SIngo Molnar { 484f62bae50SIngo Molnar unsigned int v; 485f62bae50SIngo Molnar 486f62bae50SIngo Molnar /* Lapic used as dummy for broadcast ? */ 487f62bae50SIngo Molnar if (evt->features & CLOCK_EVT_FEAT_DUMMY) 488b23d8e52SViresh Kumar return 0; 489f62bae50SIngo Molnar 490f62bae50SIngo Molnar v = apic_read(APIC_LVTT); 491f62bae50SIngo Molnar v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR); 492f62bae50SIngo Molnar apic_write(APIC_LVTT, v); 4936f9b4100SAndreas Herrmann apic_write(APIC_TMICT, 0); 494b23d8e52SViresh Kumar return 0; 495f62bae50SIngo Molnar } 496f62bae50SIngo Molnar 497b23d8e52SViresh Kumar static inline int 498b23d8e52SViresh Kumar lapic_timer_set_periodic_oneshot(struct clock_event_device *evt, bool oneshot) 499b23d8e52SViresh Kumar { 500b23d8e52SViresh Kumar /* Lapic used as dummy for broadcast ? */ 501b23d8e52SViresh Kumar if (evt->features & CLOCK_EVT_FEAT_DUMMY) 502b23d8e52SViresh Kumar return 0; 503b23d8e52SViresh Kumar 50452ae346bSDaniel Drake __setup_APIC_LVTT(lapic_timer_period, oneshot, 1); 505b23d8e52SViresh Kumar return 0; 506b23d8e52SViresh Kumar } 507b23d8e52SViresh Kumar 508b23d8e52SViresh Kumar static int lapic_timer_set_periodic(struct clock_event_device *evt) 509b23d8e52SViresh Kumar { 510b23d8e52SViresh Kumar return lapic_timer_set_periodic_oneshot(evt, false); 511b23d8e52SViresh Kumar } 512b23d8e52SViresh Kumar 513b23d8e52SViresh Kumar static int lapic_timer_set_oneshot(struct clock_event_device *evt) 514b23d8e52SViresh Kumar { 515b23d8e52SViresh Kumar return lapic_timer_set_periodic_oneshot(evt, true); 516f62bae50SIngo Molnar } 517f62bae50SIngo Molnar 518f62bae50SIngo Molnar /* 519f62bae50SIngo Molnar * Local APIC timer broadcast function 520f62bae50SIngo Molnar */ 521f62bae50SIngo Molnar static void lapic_timer_broadcast(const struct cpumask *mask) 522f62bae50SIngo Molnar { 523f62bae50SIngo Molnar #ifdef CONFIG_SMP 524f62bae50SIngo Molnar apic->send_IPI_mask(mask, LOCAL_TIMER_VECTOR); 525f62bae50SIngo Molnar #endif 526f62bae50SIngo Molnar } 527f62bae50SIngo Molnar 52825874a29SHenrik Kretzschmar 52925874a29SHenrik Kretzschmar /* 53025874a29SHenrik Kretzschmar * The local apic timer can be used for any function which is CPU local. 53125874a29SHenrik Kretzschmar */ 53225874a29SHenrik Kretzschmar static struct clock_event_device lapic_clockevent = { 53325874a29SHenrik Kretzschmar .name = "lapic", 534b23d8e52SViresh Kumar .features = CLOCK_EVT_FEAT_PERIODIC | 535b23d8e52SViresh Kumar CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_C3STOP 536b23d8e52SViresh Kumar | CLOCK_EVT_FEAT_DUMMY, 53725874a29SHenrik Kretzschmar .shift = 32, 538b23d8e52SViresh Kumar .set_state_shutdown = lapic_timer_shutdown, 539b23d8e52SViresh Kumar .set_state_periodic = lapic_timer_set_periodic, 540b23d8e52SViresh Kumar .set_state_oneshot = lapic_timer_set_oneshot, 541914122c3SFrederic Weisbecker .set_state_oneshot_stopped = lapic_timer_shutdown, 54225874a29SHenrik Kretzschmar .set_next_event = lapic_next_event, 54325874a29SHenrik Kretzschmar .broadcast = lapic_timer_broadcast, 54425874a29SHenrik Kretzschmar .rating = 100, 54525874a29SHenrik Kretzschmar .irq = -1, 54625874a29SHenrik Kretzschmar }; 54725874a29SHenrik Kretzschmar static DEFINE_PER_CPU(struct clock_event_device, lapic_events); 54825874a29SHenrik Kretzschmar 549bd9240a1SPeter Zijlstra #define DEADLINE_MODEL_MATCH_FUNC(model, func) \ 550bd9240a1SPeter Zijlstra { X86_VENDOR_INTEL, 6, model, X86_FEATURE_ANY, (unsigned long)&func } 551bd9240a1SPeter Zijlstra 552bd9240a1SPeter Zijlstra #define DEADLINE_MODEL_MATCH_REV(model, rev) \ 553bd9240a1SPeter Zijlstra { X86_VENDOR_INTEL, 6, model, X86_FEATURE_ANY, (unsigned long)rev } 554bd9240a1SPeter Zijlstra 555bd9240a1SPeter Zijlstra static u32 hsx_deadline_rev(void) 556bd9240a1SPeter Zijlstra { 557b399151cSJia Zhang switch (boot_cpu_data.x86_stepping) { 558bd9240a1SPeter Zijlstra case 0x02: return 0x3a; /* EP */ 559bd9240a1SPeter Zijlstra case 0x04: return 0x0f; /* EX */ 560bd9240a1SPeter Zijlstra } 561bd9240a1SPeter Zijlstra 562bd9240a1SPeter Zijlstra return ~0U; 563bd9240a1SPeter Zijlstra } 564bd9240a1SPeter Zijlstra 565bd9240a1SPeter Zijlstra static u32 bdx_deadline_rev(void) 566bd9240a1SPeter Zijlstra { 567b399151cSJia Zhang switch (boot_cpu_data.x86_stepping) { 568bd9240a1SPeter Zijlstra case 0x02: return 0x00000011; 569bd9240a1SPeter Zijlstra case 0x03: return 0x0700000e; 570bd9240a1SPeter Zijlstra case 0x04: return 0x0f00000c; 571bd9240a1SPeter Zijlstra case 0x05: return 0x0e000003; 572bd9240a1SPeter Zijlstra } 573bd9240a1SPeter Zijlstra 574bd9240a1SPeter Zijlstra return ~0U; 575bd9240a1SPeter Zijlstra } 576bd9240a1SPeter Zijlstra 577616dd587SLen Brown static u32 skx_deadline_rev(void) 578616dd587SLen Brown { 579b399151cSJia Zhang switch (boot_cpu_data.x86_stepping) { 580616dd587SLen Brown case 0x03: return 0x01000136; 581616dd587SLen Brown case 0x04: return 0x02000014; 582616dd587SLen Brown } 583616dd587SLen Brown 584d9e6dbcfSLen Brown if (boot_cpu_data.x86_stepping > 4) 585d9e6dbcfSLen Brown return 0; 586d9e6dbcfSLen Brown 587616dd587SLen Brown return ~0U; 588616dd587SLen Brown } 589616dd587SLen Brown 590bd9240a1SPeter Zijlstra static const struct x86_cpu_id deadline_match[] = { 591bd9240a1SPeter Zijlstra DEADLINE_MODEL_MATCH_FUNC( INTEL_FAM6_HASWELL_X, hsx_deadline_rev), 592bd9240a1SPeter Zijlstra DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_BROADWELL_X, 0x0b000020), 593*5ebb34edSPeter Zijlstra DEADLINE_MODEL_MATCH_FUNC( INTEL_FAM6_BROADWELL_D, bdx_deadline_rev), 594616dd587SLen Brown DEADLINE_MODEL_MATCH_FUNC( INTEL_FAM6_SKYLAKE_X, skx_deadline_rev), 595bd9240a1SPeter Zijlstra 596c66f78a6SPeter Zijlstra DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_HASWELL, 0x22), 597af239c44SPeter Zijlstra DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_HASWELL_L, 0x20), 5985e741407SPeter Zijlstra DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_HASWELL_G, 0x17), 599bd9240a1SPeter Zijlstra 600c66f78a6SPeter Zijlstra DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_BROADWELL, 0x25), 6015e741407SPeter Zijlstra DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_BROADWELL_G, 0x17), 602bd9240a1SPeter Zijlstra 603af239c44SPeter Zijlstra DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_SKYLAKE_L, 0xb2), 604c66f78a6SPeter Zijlstra DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_SKYLAKE, 0xb2), 605bd9240a1SPeter Zijlstra 606af239c44SPeter Zijlstra DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_KABYLAKE_L, 0x52), 607c66f78a6SPeter Zijlstra DEADLINE_MODEL_MATCH_REV ( INTEL_FAM6_KABYLAKE, 0x52), 608bd9240a1SPeter Zijlstra 609bd9240a1SPeter Zijlstra {}, 610bd9240a1SPeter Zijlstra }; 611bd9240a1SPeter Zijlstra 612bd9240a1SPeter Zijlstra static void apic_check_deadline_errata(void) 613bd9240a1SPeter Zijlstra { 614594a30fbSHans de Goede const struct x86_cpu_id *m; 615bd9240a1SPeter Zijlstra u32 rev; 616bd9240a1SPeter Zijlstra 617cc6afe22SPaolo Bonzini if (!boot_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER) || 618cc6afe22SPaolo Bonzini boot_cpu_has(X86_FEATURE_HYPERVISOR)) 619594a30fbSHans de Goede return; 620594a30fbSHans de Goede 621594a30fbSHans de Goede m = x86_match_cpu(deadline_match); 622bd9240a1SPeter Zijlstra if (!m) 623bd9240a1SPeter Zijlstra return; 624bd9240a1SPeter Zijlstra 625bd9240a1SPeter Zijlstra /* 626bd9240a1SPeter Zijlstra * Function pointers will have the MSB set due to address layout, 627bd9240a1SPeter Zijlstra * immediate revisions will not. 628bd9240a1SPeter Zijlstra */ 629bd9240a1SPeter Zijlstra if ((long)m->driver_data < 0) 630bd9240a1SPeter Zijlstra rev = ((u32 (*)(void))(m->driver_data))(); 631bd9240a1SPeter Zijlstra else 632bd9240a1SPeter Zijlstra rev = (u32)m->driver_data; 633bd9240a1SPeter Zijlstra 634bd9240a1SPeter Zijlstra if (boot_cpu_data.microcode >= rev) 635bd9240a1SPeter Zijlstra return; 636bd9240a1SPeter Zijlstra 637bd9240a1SPeter Zijlstra setup_clear_cpu_cap(X86_FEATURE_TSC_DEADLINE_TIMER); 638bd9240a1SPeter Zijlstra pr_err(FW_BUG "TSC_DEADLINE disabled due to Errata; " 639bd9240a1SPeter Zijlstra "please update microcode to version: 0x%x (or later)\n", rev); 640bd9240a1SPeter Zijlstra } 641bd9240a1SPeter Zijlstra 642f62bae50SIngo Molnar /* 643421f91d2SUwe Kleine-König * Setup the local APIC timer for this CPU. Copy the initialized values 644f62bae50SIngo Molnar * of the boot CPU and register the clock event in the framework. 645f62bae50SIngo Molnar */ 646148f9bb8SPaul Gortmaker static void setup_APIC_timer(void) 647f62bae50SIngo Molnar { 64889cbc767SChristoph Lameter struct clock_event_device *levt = this_cpu_ptr(&lapic_events); 649f62bae50SIngo Molnar 650349c004eSChristoph Lameter if (this_cpu_has(X86_FEATURE_ARAT)) { 651db954b58SVenkatesh Pallipadi lapic_clockevent.features &= ~CLOCK_EVT_FEAT_C3STOP; 652db954b58SVenkatesh Pallipadi /* Make LAPIC timer preferrable over percpu HPET */ 653db954b58SVenkatesh Pallipadi lapic_clockevent.rating = 150; 654db954b58SVenkatesh Pallipadi } 655db954b58SVenkatesh Pallipadi 656f62bae50SIngo Molnar memcpy(levt, &lapic_clockevent, sizeof(*levt)); 657f62bae50SIngo Molnar levt->cpumask = cpumask_of(smp_processor_id()); 658f62bae50SIngo Molnar 659279f1461SSuresh Siddha if (this_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER)) { 660c6e9f42bSPeter Zijlstra levt->name = "lapic-deadline"; 661279f1461SSuresh Siddha levt->features &= ~(CLOCK_EVT_FEAT_PERIODIC | 662279f1461SSuresh Siddha CLOCK_EVT_FEAT_DUMMY); 663279f1461SSuresh Siddha levt->set_next_event = lapic_next_deadline; 664279f1461SSuresh Siddha clockevents_config_and_register(levt, 6651a9e4c56SNicolai Stange tsc_khz * (1000 / TSC_DIVISOR), 666279f1461SSuresh Siddha 0xF, ~0UL); 667279f1461SSuresh Siddha } else 668f62bae50SIngo Molnar clockevents_register_device(levt); 669f62bae50SIngo Molnar } 670f62bae50SIngo Molnar 671f62bae50SIngo Molnar /* 6726731b0d6SNicolai Stange * Install the updated TSC frequency from recalibration at the TSC 6736731b0d6SNicolai Stange * deadline clockevent devices. 6746731b0d6SNicolai Stange */ 6756731b0d6SNicolai Stange static void __lapic_update_tsc_freq(void *info) 6766731b0d6SNicolai Stange { 6776731b0d6SNicolai Stange struct clock_event_device *levt = this_cpu_ptr(&lapic_events); 6786731b0d6SNicolai Stange 6796731b0d6SNicolai Stange if (!this_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER)) 6806731b0d6SNicolai Stange return; 6816731b0d6SNicolai Stange 6826731b0d6SNicolai Stange clockevents_update_freq(levt, tsc_khz * (1000 / TSC_DIVISOR)); 6836731b0d6SNicolai Stange } 6846731b0d6SNicolai Stange 6856731b0d6SNicolai Stange void lapic_update_tsc_freq(void) 6866731b0d6SNicolai Stange { 6876731b0d6SNicolai Stange /* 6886731b0d6SNicolai Stange * The clockevent device's ->mult and ->shift can both be 6896731b0d6SNicolai Stange * changed. In order to avoid races, schedule the frequency 6906731b0d6SNicolai Stange * update code on each CPU. 6916731b0d6SNicolai Stange */ 6926731b0d6SNicolai Stange on_each_cpu(__lapic_update_tsc_freq, NULL, 0); 6936731b0d6SNicolai Stange } 6946731b0d6SNicolai Stange 6956731b0d6SNicolai Stange /* 696f62bae50SIngo Molnar * In this functions we calibrate APIC bus clocks to the external timer. 697f62bae50SIngo Molnar * 698f62bae50SIngo Molnar * We want to do the calibration only once since we want to have local timer 699f62bae50SIngo Molnar * irqs syncron. CPUs connected by the same APIC bus have the very same bus 700f62bae50SIngo Molnar * frequency. 701f62bae50SIngo Molnar * 702f62bae50SIngo Molnar * This was previously done by reading the PIT/HPET and waiting for a wrap 703f62bae50SIngo Molnar * around to find out, that a tick has elapsed. I have a box, where the PIT 704f62bae50SIngo Molnar * readout is broken, so it never gets out of the wait loop again. This was 705f62bae50SIngo Molnar * also reported by others. 706f62bae50SIngo Molnar * 707f62bae50SIngo Molnar * Monitoring the jiffies value is inaccurate and the clockevents 708f62bae50SIngo Molnar * infrastructure allows us to do a simple substitution of the interrupt 709f62bae50SIngo Molnar * handler. 710f62bae50SIngo Molnar * 711f62bae50SIngo Molnar * The calibration routine also uses the pm_timer when possible, as the PIT 712f62bae50SIngo Molnar * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes 713f62bae50SIngo Molnar * back to normal later in the boot process). 714f62bae50SIngo Molnar */ 715f62bae50SIngo Molnar 716f62bae50SIngo Molnar #define LAPIC_CAL_LOOPS (HZ/10) 717f62bae50SIngo Molnar 718f62bae50SIngo Molnar static __initdata int lapic_cal_loops = -1; 719f62bae50SIngo Molnar static __initdata long lapic_cal_t1, lapic_cal_t2; 720f62bae50SIngo Molnar static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2; 721f62bae50SIngo Molnar static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2; 722f62bae50SIngo Molnar static __initdata unsigned long lapic_cal_j1, lapic_cal_j2; 723f62bae50SIngo Molnar 724f62bae50SIngo Molnar /* 725f897e60aSThomas Gleixner * Temporary interrupt handler and polled calibration function. 726f62bae50SIngo Molnar */ 727f62bae50SIngo Molnar static void __init lapic_cal_handler(struct clock_event_device *dev) 728f62bae50SIngo Molnar { 729f62bae50SIngo Molnar unsigned long long tsc = 0; 730f62bae50SIngo Molnar long tapic = apic_read(APIC_TMCCT); 731f62bae50SIngo Molnar unsigned long pm = acpi_pm_read_early(); 732f62bae50SIngo Molnar 73359e21e3dSBorislav Petkov if (boot_cpu_has(X86_FEATURE_TSC)) 7344ea1636bSAndy Lutomirski tsc = rdtsc(); 735f62bae50SIngo Molnar 736f62bae50SIngo Molnar switch (lapic_cal_loops++) { 737f62bae50SIngo Molnar case 0: 738f62bae50SIngo Molnar lapic_cal_t1 = tapic; 739f62bae50SIngo Molnar lapic_cal_tsc1 = tsc; 740f62bae50SIngo Molnar lapic_cal_pm1 = pm; 741f62bae50SIngo Molnar lapic_cal_j1 = jiffies; 742f62bae50SIngo Molnar break; 743f62bae50SIngo Molnar 744f62bae50SIngo Molnar case LAPIC_CAL_LOOPS: 745f62bae50SIngo Molnar lapic_cal_t2 = tapic; 746f62bae50SIngo Molnar lapic_cal_tsc2 = tsc; 747f62bae50SIngo Molnar if (pm < lapic_cal_pm1) 748f62bae50SIngo Molnar pm += ACPI_PM_OVRRUN; 749f62bae50SIngo Molnar lapic_cal_pm2 = pm; 750f62bae50SIngo Molnar lapic_cal_j2 = jiffies; 751f62bae50SIngo Molnar break; 752f62bae50SIngo Molnar } 753f62bae50SIngo Molnar } 754f62bae50SIngo Molnar 755f62bae50SIngo Molnar static int __init 756f62bae50SIngo Molnar calibrate_by_pmtimer(long deltapm, long *delta, long *deltatsc) 757f62bae50SIngo Molnar { 758f62bae50SIngo Molnar const long pm_100ms = PMTMR_TICKS_PER_SEC / 10; 759f62bae50SIngo Molnar const long pm_thresh = pm_100ms / 100; 760f62bae50SIngo Molnar unsigned long mult; 761f62bae50SIngo Molnar u64 res; 762f62bae50SIngo Molnar 763f62bae50SIngo Molnar #ifndef CONFIG_X86_PM_TIMER 764f62bae50SIngo Molnar return -1; 765f62bae50SIngo Molnar #endif 766f62bae50SIngo Molnar 767f62bae50SIngo Molnar apic_printk(APIC_VERBOSE, "... PM-Timer delta = %ld\n", deltapm); 768f62bae50SIngo Molnar 769f62bae50SIngo Molnar /* Check, if the PM timer is available */ 770f62bae50SIngo Molnar if (!deltapm) 771f62bae50SIngo Molnar return -1; 772f62bae50SIngo Molnar 773f62bae50SIngo Molnar mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22); 774f62bae50SIngo Molnar 775f62bae50SIngo Molnar if (deltapm > (pm_100ms - pm_thresh) && 776f62bae50SIngo Molnar deltapm < (pm_100ms + pm_thresh)) { 777f62bae50SIngo Molnar apic_printk(APIC_VERBOSE, "... PM-Timer result ok\n"); 778f62bae50SIngo Molnar return 0; 779f62bae50SIngo Molnar } 780f62bae50SIngo Molnar 781f62bae50SIngo Molnar res = (((u64)deltapm) * mult) >> 22; 782f62bae50SIngo Molnar do_div(res, 1000000); 783f62bae50SIngo Molnar pr_warning("APIC calibration not consistent " 784f62bae50SIngo Molnar "with PM-Timer: %ldms instead of 100ms\n",(long)res); 785f62bae50SIngo Molnar 786f62bae50SIngo Molnar /* Correct the lapic counter value */ 787f62bae50SIngo Molnar res = (((u64)(*delta)) * pm_100ms); 788f62bae50SIngo Molnar do_div(res, deltapm); 789f62bae50SIngo Molnar pr_info("APIC delta adjusted to PM-Timer: " 790f62bae50SIngo Molnar "%lu (%ld)\n", (unsigned long)res, *delta); 791f62bae50SIngo Molnar *delta = (long)res; 792f62bae50SIngo Molnar 793f62bae50SIngo Molnar /* Correct the tsc counter value */ 79459e21e3dSBorislav Petkov if (boot_cpu_has(X86_FEATURE_TSC)) { 795f62bae50SIngo Molnar res = (((u64)(*deltatsc)) * pm_100ms); 796f62bae50SIngo Molnar do_div(res, deltapm); 797f62bae50SIngo Molnar apic_printk(APIC_VERBOSE, "TSC delta adjusted to " 798f62bae50SIngo Molnar "PM-Timer: %lu (%ld)\n", 799f62bae50SIngo Molnar (unsigned long)res, *deltatsc); 800f62bae50SIngo Molnar *deltatsc = (long)res; 801f62bae50SIngo Molnar } 802f62bae50SIngo Molnar 803f62bae50SIngo Molnar return 0; 804f62bae50SIngo Molnar } 805f62bae50SIngo Molnar 8066eb4f082SJacob Pan static int __init lapic_init_clockevent(void) 8076eb4f082SJacob Pan { 80852ae346bSDaniel Drake if (!lapic_timer_period) 8096eb4f082SJacob Pan return -1; 8106eb4f082SJacob Pan 8116eb4f082SJacob Pan /* Calculate the scaled math multiplication factor */ 81252ae346bSDaniel Drake lapic_clockevent.mult = div_sc(lapic_timer_period/APIC_DIVISOR, 8136eb4f082SJacob Pan TICK_NSEC, lapic_clockevent.shift); 8146eb4f082SJacob Pan lapic_clockevent.max_delta_ns = 8156eb4f082SJacob Pan clockevent_delta2ns(0x7FFFFFFF, &lapic_clockevent); 8166eb4f082SJacob Pan lapic_clockevent.max_delta_ticks = 0x7FFFFFFF; 8176eb4f082SJacob Pan lapic_clockevent.min_delta_ns = 8186eb4f082SJacob Pan clockevent_delta2ns(0xF, &lapic_clockevent); 8196eb4f082SJacob Pan lapic_clockevent.min_delta_ticks = 0xF; 8206eb4f082SJacob Pan 8216eb4f082SJacob Pan return 0; 8226eb4f082SJacob Pan } 8236eb4f082SJacob Pan 824c8c40767SThomas Gleixner bool __init apic_needs_pit(void) 825c8c40767SThomas Gleixner { 826c8c40767SThomas Gleixner /* 827c8c40767SThomas Gleixner * If the frequencies are not known, PIT is required for both TSC 828c8c40767SThomas Gleixner * and apic timer calibration. 829c8c40767SThomas Gleixner */ 830c8c40767SThomas Gleixner if (!tsc_khz || !cpu_khz) 831c8c40767SThomas Gleixner return true; 832c8c40767SThomas Gleixner 833c8c40767SThomas Gleixner /* Is there an APIC at all? */ 834c8c40767SThomas Gleixner if (!boot_cpu_has(X86_FEATURE_APIC)) 835c8c40767SThomas Gleixner return true; 836c8c40767SThomas Gleixner 837c8c40767SThomas Gleixner /* Deadline timer is based on TSC so no further PIT action required */ 838c8c40767SThomas Gleixner if (boot_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER)) 839c8c40767SThomas Gleixner return false; 840c8c40767SThomas Gleixner 841c8c40767SThomas Gleixner /* APIC timer disabled? */ 842c8c40767SThomas Gleixner if (disable_apic_timer) 843c8c40767SThomas Gleixner return true; 844c8c40767SThomas Gleixner /* 845c8c40767SThomas Gleixner * The APIC timer frequency is known already, no PIT calibration 846c8c40767SThomas Gleixner * required. If unknown, let the PIT be initialized. 847c8c40767SThomas Gleixner */ 848c8c40767SThomas Gleixner return lapic_timer_period == 0; 849c8c40767SThomas Gleixner } 850c8c40767SThomas Gleixner 851f62bae50SIngo Molnar static int __init calibrate_APIC_clock(void) 852f62bae50SIngo Molnar { 85389cbc767SChristoph Lameter struct clock_event_device *levt = this_cpu_ptr(&lapic_events); 854f897e60aSThomas Gleixner u64 tsc_perj = 0, tsc_start = 0; 855f897e60aSThomas Gleixner unsigned long jif_start; 856f62bae50SIngo Molnar unsigned long deltaj; 857f62bae50SIngo Molnar long delta, deltatsc; 858f62bae50SIngo Molnar int pm_referenced = 0; 859f62bae50SIngo Molnar 8606eb4f082SJacob Pan if (boot_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER)) 8616eb4f082SJacob Pan return 0; 8626eb4f082SJacob Pan 8636eb4f082SJacob Pan /* 8646eb4f082SJacob Pan * Check if lapic timer has already been calibrated by platform 8656eb4f082SJacob Pan * specific routine, such as tsc calibration code. If so just fill 8661ade93efSJacob Pan * in the clockevent structure and return. 8671ade93efSJacob Pan */ 8686eb4f082SJacob Pan if (!lapic_init_clockevent()) { 8691ade93efSJacob Pan apic_printk(APIC_VERBOSE, "lapic timer already calibrated %d\n", 87052ae346bSDaniel Drake lapic_timer_period); 8716eb4f082SJacob Pan /* 8726eb4f082SJacob Pan * Direct calibration methods must have an always running 8736eb4f082SJacob Pan * local APIC timer, no need for broadcast timer. 8746eb4f082SJacob Pan */ 8751ade93efSJacob Pan lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY; 8761ade93efSJacob Pan return 0; 8771ade93efSJacob Pan } 8781ade93efSJacob Pan 879279f1461SSuresh Siddha apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n" 880279f1461SSuresh Siddha "calibrating APIC timer ...\n"); 881279f1461SSuresh Siddha 882f897e60aSThomas Gleixner /* 883f897e60aSThomas Gleixner * There are platforms w/o global clockevent devices. Instead of 884f897e60aSThomas Gleixner * making the calibration conditional on that, use a polling based 885f897e60aSThomas Gleixner * approach everywhere. 886f897e60aSThomas Gleixner */ 887f62bae50SIngo Molnar local_irq_disable(); 888f62bae50SIngo Molnar 889f62bae50SIngo Molnar /* 890f62bae50SIngo Molnar * Setup the APIC counter to maximum. There is no way the lapic 891f62bae50SIngo Molnar * can underflow in the 100ms detection time frame 892f62bae50SIngo Molnar */ 893f62bae50SIngo Molnar __setup_APIC_LVTT(0xffffffff, 0, 0); 894f62bae50SIngo Molnar 895f897e60aSThomas Gleixner /* 896f897e60aSThomas Gleixner * Methods to terminate the calibration loop: 897f897e60aSThomas Gleixner * 1) Global clockevent if available (jiffies) 898f897e60aSThomas Gleixner * 2) TSC if available and frequency is known 899f897e60aSThomas Gleixner */ 900f897e60aSThomas Gleixner jif_start = READ_ONCE(jiffies); 901f897e60aSThomas Gleixner 902f897e60aSThomas Gleixner if (tsc_khz) { 903f897e60aSThomas Gleixner tsc_start = rdtsc(); 904f897e60aSThomas Gleixner tsc_perj = div_u64((u64)tsc_khz * 1000, HZ); 905f897e60aSThomas Gleixner } 906f897e60aSThomas Gleixner 907f897e60aSThomas Gleixner /* 908f897e60aSThomas Gleixner * Enable interrupts so the tick can fire, if a global 909f897e60aSThomas Gleixner * clockevent device is available 910f897e60aSThomas Gleixner */ 911f62bae50SIngo Molnar local_irq_enable(); 912f62bae50SIngo Molnar 913f897e60aSThomas Gleixner while (lapic_cal_loops <= LAPIC_CAL_LOOPS) { 914f897e60aSThomas Gleixner /* Wait for a tick to elapse */ 915f897e60aSThomas Gleixner while (1) { 916f897e60aSThomas Gleixner if (tsc_khz) { 917f897e60aSThomas Gleixner u64 tsc_now = rdtsc(); 918f897e60aSThomas Gleixner if ((tsc_now - tsc_start) >= tsc_perj) { 919f897e60aSThomas Gleixner tsc_start += tsc_perj; 920f897e60aSThomas Gleixner break; 921f897e60aSThomas Gleixner } 922f897e60aSThomas Gleixner } else { 923f897e60aSThomas Gleixner unsigned long jif_now = READ_ONCE(jiffies); 924f897e60aSThomas Gleixner 925f897e60aSThomas Gleixner if (time_after(jif_now, jif_start)) { 926f897e60aSThomas Gleixner jif_start = jif_now; 927f897e60aSThomas Gleixner break; 928f897e60aSThomas Gleixner } 929f897e60aSThomas Gleixner } 930f62bae50SIngo Molnar cpu_relax(); 931f897e60aSThomas Gleixner } 932f897e60aSThomas Gleixner 933f897e60aSThomas Gleixner /* Invoke the calibration routine */ 934f897e60aSThomas Gleixner local_irq_disable(); 935f897e60aSThomas Gleixner lapic_cal_handler(NULL); 936f897e60aSThomas Gleixner local_irq_enable(); 937f897e60aSThomas Gleixner } 938f62bae50SIngo Molnar 939f62bae50SIngo Molnar local_irq_disable(); 940f62bae50SIngo Molnar 941f62bae50SIngo Molnar /* Build delta t1-t2 as apic timer counts down */ 942f62bae50SIngo Molnar delta = lapic_cal_t1 - lapic_cal_t2; 943f62bae50SIngo Molnar apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta); 944f62bae50SIngo Molnar 945f62bae50SIngo Molnar deltatsc = (long)(lapic_cal_tsc2 - lapic_cal_tsc1); 946f62bae50SIngo Molnar 947f62bae50SIngo Molnar /* we trust the PM based calibration if possible */ 948f62bae50SIngo Molnar pm_referenced = !calibrate_by_pmtimer(lapic_cal_pm2 - lapic_cal_pm1, 949f62bae50SIngo Molnar &delta, &deltatsc); 950f62bae50SIngo Molnar 95152ae346bSDaniel Drake lapic_timer_period = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS; 9526eb4f082SJacob Pan lapic_init_clockevent(); 953f62bae50SIngo Molnar 954f62bae50SIngo Molnar apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta); 955411462f6SThomas Gleixner apic_printk(APIC_VERBOSE, "..... mult: %u\n", lapic_clockevent.mult); 956f62bae50SIngo Molnar apic_printk(APIC_VERBOSE, "..... calibration result: %u\n", 95752ae346bSDaniel Drake lapic_timer_period); 958f62bae50SIngo Molnar 95959e21e3dSBorislav Petkov if (boot_cpu_has(X86_FEATURE_TSC)) { 960f62bae50SIngo Molnar apic_printk(APIC_VERBOSE, "..... CPU clock speed is " 961f62bae50SIngo Molnar "%ld.%04ld MHz.\n", 962f62bae50SIngo Molnar (deltatsc / LAPIC_CAL_LOOPS) / (1000000 / HZ), 963f62bae50SIngo Molnar (deltatsc / LAPIC_CAL_LOOPS) % (1000000 / HZ)); 964f62bae50SIngo Molnar } 965f62bae50SIngo Molnar 966f62bae50SIngo Molnar apic_printk(APIC_VERBOSE, "..... host bus clock speed is " 967f62bae50SIngo Molnar "%u.%04u MHz.\n", 96852ae346bSDaniel Drake lapic_timer_period / (1000000 / HZ), 96952ae346bSDaniel Drake lapic_timer_period % (1000000 / HZ)); 970f62bae50SIngo Molnar 971f62bae50SIngo Molnar /* 972f62bae50SIngo Molnar * Do a sanity check on the APIC calibration result 973f62bae50SIngo Molnar */ 97452ae346bSDaniel Drake if (lapic_timer_period < (1000000 / HZ)) { 975f62bae50SIngo Molnar local_irq_enable(); 976f62bae50SIngo Molnar pr_warning("APIC frequency too slow, disabling apic timer\n"); 977f62bae50SIngo Molnar return -1; 978f62bae50SIngo Molnar } 979f62bae50SIngo Molnar 980f62bae50SIngo Molnar levt->features &= ~CLOCK_EVT_FEAT_DUMMY; 981f62bae50SIngo Molnar 982f62bae50SIngo Molnar /* 983f897e60aSThomas Gleixner * PM timer calibration failed or not turned on so lets try APIC 984f897e60aSThomas Gleixner * timer based calibration, if a global clockevent device is 985f897e60aSThomas Gleixner * available. 986f62bae50SIngo Molnar */ 987f897e60aSThomas Gleixner if (!pm_referenced && global_clock_event) { 988f62bae50SIngo Molnar apic_printk(APIC_VERBOSE, "... verify APIC timer\n"); 989f62bae50SIngo Molnar 990f62bae50SIngo Molnar /* 991f62bae50SIngo Molnar * Setup the apic timer manually 992f62bae50SIngo Molnar */ 993f62bae50SIngo Molnar levt->event_handler = lapic_cal_handler; 994b23d8e52SViresh Kumar lapic_timer_set_periodic(levt); 995f62bae50SIngo Molnar lapic_cal_loops = -1; 996f62bae50SIngo Molnar 997f62bae50SIngo Molnar /* Let the interrupts run */ 998f62bae50SIngo Molnar local_irq_enable(); 999f62bae50SIngo Molnar 1000f62bae50SIngo Molnar while (lapic_cal_loops <= LAPIC_CAL_LOOPS) 1001f62bae50SIngo Molnar cpu_relax(); 1002f62bae50SIngo Molnar 1003f62bae50SIngo Molnar /* Stop the lapic timer */ 1004c948c260SThomas Gleixner local_irq_disable(); 1005b23d8e52SViresh Kumar lapic_timer_shutdown(levt); 1006f62bae50SIngo Molnar 1007f62bae50SIngo Molnar /* Jiffies delta */ 1008f62bae50SIngo Molnar deltaj = lapic_cal_j2 - lapic_cal_j1; 1009f62bae50SIngo Molnar apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj); 1010f62bae50SIngo Molnar 1011f62bae50SIngo Molnar /* Check, if the jiffies result is consistent */ 1012f62bae50SIngo Molnar if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2) 1013f62bae50SIngo Molnar apic_printk(APIC_VERBOSE, "... jiffies result ok\n"); 1014f62bae50SIngo Molnar else 1015f62bae50SIngo Molnar levt->features |= CLOCK_EVT_FEAT_DUMMY; 1016c948c260SThomas Gleixner } 1017f62bae50SIngo Molnar local_irq_enable(); 1018f62bae50SIngo Molnar 1019f62bae50SIngo Molnar if (levt->features & CLOCK_EVT_FEAT_DUMMY) { 1020f62bae50SIngo Molnar pr_warning("APIC timer disabled due to verification failure\n"); 1021f62bae50SIngo Molnar return -1; 1022f62bae50SIngo Molnar } 1023f62bae50SIngo Molnar 1024f62bae50SIngo Molnar return 0; 1025f62bae50SIngo Molnar } 1026f62bae50SIngo Molnar 1027f62bae50SIngo Molnar /* 1028f62bae50SIngo Molnar * Setup the boot APIC 1029f62bae50SIngo Molnar * 1030f62bae50SIngo Molnar * Calibrate and verify the result. 1031f62bae50SIngo Molnar */ 1032f62bae50SIngo Molnar void __init setup_boot_APIC_clock(void) 1033f62bae50SIngo Molnar { 1034f62bae50SIngo Molnar /* 1035f62bae50SIngo Molnar * The local apic timer can be disabled via the kernel 1036f62bae50SIngo Molnar * commandline or from the CPU detection code. Register the lapic 1037f62bae50SIngo Molnar * timer as a dummy clock event source on SMP systems, so the 1038f62bae50SIngo Molnar * broadcast mechanism is used. On UP systems simply ignore it. 1039f62bae50SIngo Molnar */ 1040f62bae50SIngo Molnar if (disable_apic_timer) { 1041f62bae50SIngo Molnar pr_info("Disabling APIC timer\n"); 1042f62bae50SIngo Molnar /* No broadcast on UP ! */ 1043f62bae50SIngo Molnar if (num_possible_cpus() > 1) { 1044f62bae50SIngo Molnar lapic_clockevent.mult = 1; 1045f62bae50SIngo Molnar setup_APIC_timer(); 1046f62bae50SIngo Molnar } 1047f62bae50SIngo Molnar return; 1048f62bae50SIngo Molnar } 1049f62bae50SIngo Molnar 1050f62bae50SIngo Molnar if (calibrate_APIC_clock()) { 1051f62bae50SIngo Molnar /* No broadcast on UP ! */ 1052f62bae50SIngo Molnar if (num_possible_cpus() > 1) 1053f62bae50SIngo Molnar setup_APIC_timer(); 1054f62bae50SIngo Molnar return; 1055f62bae50SIngo Molnar } 1056f62bae50SIngo Molnar 1057f62bae50SIngo Molnar /* 1058f62bae50SIngo Molnar * If nmi_watchdog is set to IO_APIC, we need the 1059f62bae50SIngo Molnar * PIT/HPET going. Otherwise register lapic as a dummy 1060f62bae50SIngo Molnar * device. 1061f62bae50SIngo Molnar */ 1062f62bae50SIngo Molnar lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY; 1063f62bae50SIngo Molnar 1064f62bae50SIngo Molnar /* Setup the lapic or request the broadcast */ 1065f62bae50SIngo Molnar setup_APIC_timer(); 106607c94a38SBorislav Petkov amd_e400_c1e_apic_setup(); 1067f62bae50SIngo Molnar } 1068f62bae50SIngo Molnar 1069148f9bb8SPaul Gortmaker void setup_secondary_APIC_clock(void) 1070f62bae50SIngo Molnar { 1071f62bae50SIngo Molnar setup_APIC_timer(); 107207c94a38SBorislav Petkov amd_e400_c1e_apic_setup(); 1073f62bae50SIngo Molnar } 1074f62bae50SIngo Molnar 1075f62bae50SIngo Molnar /* 1076f62bae50SIngo Molnar * The guts of the apic timer interrupt 1077f62bae50SIngo Molnar */ 1078f62bae50SIngo Molnar static void local_apic_timer_interrupt(void) 1079f62bae50SIngo Molnar { 10803bec6defSThomas Gleixner struct clock_event_device *evt = this_cpu_ptr(&lapic_events); 1081f62bae50SIngo Molnar 1082f62bae50SIngo Molnar /* 1083f62bae50SIngo Molnar * Normally we should not be here till LAPIC has been initialized but 1084f62bae50SIngo Molnar * in some cases like kdump, its possible that there is a pending LAPIC 1085f62bae50SIngo Molnar * timer interrupt from previous kernel's context and is delivered in 1086f62bae50SIngo Molnar * new kernel the moment interrupts are enabled. 1087f62bae50SIngo Molnar * 1088f62bae50SIngo Molnar * Interrupts are enabled early and LAPIC is setup much later, hence 1089f62bae50SIngo Molnar * its possible that when we get here evt->event_handler is NULL. 1090f62bae50SIngo Molnar * Check for event_handler being NULL and discard the interrupt as 1091f62bae50SIngo Molnar * spurious. 1092f62bae50SIngo Molnar */ 1093f62bae50SIngo Molnar if (!evt->event_handler) { 10943bec6defSThomas Gleixner pr_warning("Spurious LAPIC timer interrupt on cpu %d\n", 10953bec6defSThomas Gleixner smp_processor_id()); 1096f62bae50SIngo Molnar /* Switch it off */ 1097b23d8e52SViresh Kumar lapic_timer_shutdown(evt); 1098f62bae50SIngo Molnar return; 1099f62bae50SIngo Molnar } 1100f62bae50SIngo Molnar 1101f62bae50SIngo Molnar /* 1102f62bae50SIngo Molnar * the NMI deadlock-detector uses this. 1103f62bae50SIngo Molnar */ 1104f62bae50SIngo Molnar inc_irq_stat(apic_timer_irqs); 1105f62bae50SIngo Molnar 1106f62bae50SIngo Molnar evt->event_handler(evt); 1107f62bae50SIngo Molnar } 1108f62bae50SIngo Molnar 1109f62bae50SIngo Molnar /* 1110f62bae50SIngo Molnar * Local APIC timer interrupt. This is the most natural way for doing 1111f62bae50SIngo Molnar * local interrupts, but local timer interrupts can be emulated by 1112f62bae50SIngo Molnar * broadcast interrupts too. [in case the hw doesn't support APIC timers] 1113f62bae50SIngo Molnar * 1114f62bae50SIngo Molnar * [ if a single-CPU system runs an SMP kernel then we call the local 1115f62bae50SIngo Molnar * interrupt as well. Thus we cannot inline the local irq ... ] 1116f62bae50SIngo Molnar */ 11171d9090e2SAndi Kleen __visible void __irq_entry smp_apic_timer_interrupt(struct pt_regs *regs) 1118f62bae50SIngo Molnar { 1119f62bae50SIngo Molnar struct pt_regs *old_regs = set_irq_regs(regs); 1120f62bae50SIngo Molnar 1121f62bae50SIngo Molnar /* 1122f62bae50SIngo Molnar * NOTE! We'd better ACK the irq immediately, 1123f62bae50SIngo Molnar * because timer handling can be slow. 1124eddc0e92SSeiji Aguchi * 1125f62bae50SIngo Molnar * update_process_times() expects us to have done irq_enter(). 1126f62bae50SIngo Molnar * Besides, if we don't timer interrupts ignore the global 1127f62bae50SIngo Molnar * interrupt lock, which is the WrongThing (tm) to do. 1128f62bae50SIngo Molnar */ 1129eddc0e92SSeiji Aguchi entering_ack_irq(); 1130cf910e83SSeiji Aguchi trace_local_timer_entry(LOCAL_TIMER_VECTOR); 1131cf910e83SSeiji Aguchi local_apic_timer_interrupt(); 1132cf910e83SSeiji Aguchi trace_local_timer_exit(LOCAL_TIMER_VECTOR); 1133cf910e83SSeiji Aguchi exiting_irq(); 1134f62bae50SIngo Molnar 1135f62bae50SIngo Molnar set_irq_regs(old_regs); 1136f62bae50SIngo Molnar } 1137f62bae50SIngo Molnar 1138f62bae50SIngo Molnar int setup_profiling_timer(unsigned int multiplier) 1139f62bae50SIngo Molnar { 1140f62bae50SIngo Molnar return -EINVAL; 1141f62bae50SIngo Molnar } 1142f62bae50SIngo Molnar 1143f62bae50SIngo Molnar /* 1144f62bae50SIngo Molnar * Local APIC start and shutdown 1145f62bae50SIngo Molnar */ 1146f62bae50SIngo Molnar 1147f62bae50SIngo Molnar /** 1148f62bae50SIngo Molnar * clear_local_APIC - shutdown the local APIC 1149f62bae50SIngo Molnar * 1150f62bae50SIngo Molnar * This is called, when a CPU is disabled and before rebooting, so the state of 1151f62bae50SIngo Molnar * the local APIC has no dangling leftovers. Also used to cleanout any BIOS 1152f62bae50SIngo Molnar * leftovers during boot. 1153f62bae50SIngo Molnar */ 1154f62bae50SIngo Molnar void clear_local_APIC(void) 1155f62bae50SIngo Molnar { 1156f62bae50SIngo Molnar int maxlvt; 1157f62bae50SIngo Molnar u32 v; 1158f62bae50SIngo Molnar 1159f62bae50SIngo Molnar /* APIC hasn't been mapped yet */ 1160fc1edaf9SSuresh Siddha if (!x2apic_mode && !apic_phys) 1161f62bae50SIngo Molnar return; 1162f62bae50SIngo Molnar 1163f62bae50SIngo Molnar maxlvt = lapic_get_maxlvt(); 1164f62bae50SIngo Molnar /* 1165f62bae50SIngo Molnar * Masking an LVT entry can trigger a local APIC error 1166f62bae50SIngo Molnar * if the vector is zero. Mask LVTERR first to prevent this. 1167f62bae50SIngo Molnar */ 1168f62bae50SIngo Molnar if (maxlvt >= 3) { 1169f62bae50SIngo Molnar v = ERROR_APIC_VECTOR; /* any non-zero vector will do */ 1170f62bae50SIngo Molnar apic_write(APIC_LVTERR, v | APIC_LVT_MASKED); 1171f62bae50SIngo Molnar } 1172f62bae50SIngo Molnar /* 1173f62bae50SIngo Molnar * Careful: we have to set masks only first to deassert 1174f62bae50SIngo Molnar * any level-triggered sources. 1175f62bae50SIngo Molnar */ 1176f62bae50SIngo Molnar v = apic_read(APIC_LVTT); 1177f62bae50SIngo Molnar apic_write(APIC_LVTT, v | APIC_LVT_MASKED); 1178f62bae50SIngo Molnar v = apic_read(APIC_LVT0); 1179f62bae50SIngo Molnar apic_write(APIC_LVT0, v | APIC_LVT_MASKED); 1180f62bae50SIngo Molnar v = apic_read(APIC_LVT1); 1181f62bae50SIngo Molnar apic_write(APIC_LVT1, v | APIC_LVT_MASKED); 1182f62bae50SIngo Molnar if (maxlvt >= 4) { 1183f62bae50SIngo Molnar v = apic_read(APIC_LVTPC); 1184f62bae50SIngo Molnar apic_write(APIC_LVTPC, v | APIC_LVT_MASKED); 1185f62bae50SIngo Molnar } 1186f62bae50SIngo Molnar 1187f62bae50SIngo Molnar /* lets not touch this if we didn't frob it */ 11884efc0670SAndi Kleen #ifdef CONFIG_X86_THERMAL_VECTOR 1189f62bae50SIngo Molnar if (maxlvt >= 5) { 1190f62bae50SIngo Molnar v = apic_read(APIC_LVTTHMR); 1191f62bae50SIngo Molnar apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED); 1192f62bae50SIngo Molnar } 1193f62bae50SIngo Molnar #endif 1194638bee71SH. Peter Anvin #ifdef CONFIG_X86_MCE_INTEL 1195638bee71SH. Peter Anvin if (maxlvt >= 6) { 1196638bee71SH. Peter Anvin v = apic_read(APIC_LVTCMCI); 1197638bee71SH. Peter Anvin if (!(v & APIC_LVT_MASKED)) 1198638bee71SH. Peter Anvin apic_write(APIC_LVTCMCI, v | APIC_LVT_MASKED); 1199638bee71SH. Peter Anvin } 1200638bee71SH. Peter Anvin #endif 1201638bee71SH. Peter Anvin 1202f62bae50SIngo Molnar /* 1203f62bae50SIngo Molnar * Clean APIC state for other OSs: 1204f62bae50SIngo Molnar */ 1205f62bae50SIngo Molnar apic_write(APIC_LVTT, APIC_LVT_MASKED); 1206f62bae50SIngo Molnar apic_write(APIC_LVT0, APIC_LVT_MASKED); 1207f62bae50SIngo Molnar apic_write(APIC_LVT1, APIC_LVT_MASKED); 1208f62bae50SIngo Molnar if (maxlvt >= 3) 1209f62bae50SIngo Molnar apic_write(APIC_LVTERR, APIC_LVT_MASKED); 1210f62bae50SIngo Molnar if (maxlvt >= 4) 1211f62bae50SIngo Molnar apic_write(APIC_LVTPC, APIC_LVT_MASKED); 1212f62bae50SIngo Molnar 1213f62bae50SIngo Molnar /* Integrated APIC (!82489DX) ? */ 1214f62bae50SIngo Molnar if (lapic_is_integrated()) { 1215f62bae50SIngo Molnar if (maxlvt > 3) 1216f62bae50SIngo Molnar /* Clear ESR due to Pentium errata 3AP and 11AP */ 1217f62bae50SIngo Molnar apic_write(APIC_ESR, 0); 1218f62bae50SIngo Molnar apic_read(APIC_ESR); 1219f62bae50SIngo Molnar } 1220f62bae50SIngo Molnar } 1221f62bae50SIngo Molnar 1222f62bae50SIngo Molnar /** 1223f62bae50SIngo Molnar * disable_local_APIC - clear and disable the local APIC 1224f62bae50SIngo Molnar */ 1225f62bae50SIngo Molnar void disable_local_APIC(void) 1226f62bae50SIngo Molnar { 1227f62bae50SIngo Molnar unsigned int value; 1228f62bae50SIngo Molnar 1229f62bae50SIngo Molnar /* APIC hasn't been mapped yet */ 1230fd19dce7SYinghai Lu if (!x2apic_mode && !apic_phys) 1231f62bae50SIngo Molnar return; 1232f62bae50SIngo Molnar 1233f62bae50SIngo Molnar clear_local_APIC(); 1234f62bae50SIngo Molnar 1235f62bae50SIngo Molnar /* 1236f62bae50SIngo Molnar * Disable APIC (implies clearing of registers 1237f62bae50SIngo Molnar * for 82489DX!). 1238f62bae50SIngo Molnar */ 1239f62bae50SIngo Molnar value = apic_read(APIC_SPIV); 1240f62bae50SIngo Molnar value &= ~APIC_SPIV_APIC_ENABLED; 1241f62bae50SIngo Molnar apic_write(APIC_SPIV, value); 1242f62bae50SIngo Molnar 1243f62bae50SIngo Molnar #ifdef CONFIG_X86_32 1244f62bae50SIngo Molnar /* 1245f62bae50SIngo Molnar * When LAPIC was disabled by the BIOS and enabled by the kernel, 1246f62bae50SIngo Molnar * restore the disabled state. 1247f62bae50SIngo Molnar */ 1248f62bae50SIngo Molnar if (enabled_via_apicbase) { 1249f62bae50SIngo Molnar unsigned int l, h; 1250f62bae50SIngo Molnar 1251f62bae50SIngo Molnar rdmsr(MSR_IA32_APICBASE, l, h); 1252f62bae50SIngo Molnar l &= ~MSR_IA32_APICBASE_ENABLE; 1253f62bae50SIngo Molnar wrmsr(MSR_IA32_APICBASE, l, h); 1254f62bae50SIngo Molnar } 1255f62bae50SIngo Molnar #endif 1256f62bae50SIngo Molnar } 1257f62bae50SIngo Molnar 1258f62bae50SIngo Molnar /* 1259f62bae50SIngo Molnar * If Linux enabled the LAPIC against the BIOS default disable it down before 1260f62bae50SIngo Molnar * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and 1261f62bae50SIngo Molnar * not power-off. Additionally clear all LVT entries before disable_local_APIC 1262f62bae50SIngo Molnar * for the case where Linux didn't enable the LAPIC. 1263f62bae50SIngo Molnar */ 1264f62bae50SIngo Molnar void lapic_shutdown(void) 1265f62bae50SIngo Molnar { 1266f62bae50SIngo Molnar unsigned long flags; 1267f62bae50SIngo Molnar 126893984fbdSBorislav Petkov if (!boot_cpu_has(X86_FEATURE_APIC) && !apic_from_smp_config()) 1269f62bae50SIngo Molnar return; 1270f62bae50SIngo Molnar 1271f62bae50SIngo Molnar local_irq_save(flags); 1272f62bae50SIngo Molnar 1273f62bae50SIngo Molnar #ifdef CONFIG_X86_32 1274f62bae50SIngo Molnar if (!enabled_via_apicbase) 1275f62bae50SIngo Molnar clear_local_APIC(); 1276f62bae50SIngo Molnar else 1277f62bae50SIngo Molnar #endif 1278f62bae50SIngo Molnar disable_local_APIC(); 1279f62bae50SIngo Molnar 1280f62bae50SIngo Molnar 1281f62bae50SIngo Molnar local_irq_restore(flags); 1282f62bae50SIngo Molnar } 1283f62bae50SIngo Molnar 1284f62bae50SIngo Molnar /** 1285f62bae50SIngo Molnar * sync_Arb_IDs - synchronize APIC bus arbitration IDs 1286f62bae50SIngo Molnar */ 1287f62bae50SIngo Molnar void __init sync_Arb_IDs(void) 1288f62bae50SIngo Molnar { 1289f62bae50SIngo Molnar /* 1290f62bae50SIngo Molnar * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not 1291f62bae50SIngo Molnar * needed on AMD. 1292f62bae50SIngo Molnar */ 1293f62bae50SIngo Molnar if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD) 1294f62bae50SIngo Molnar return; 1295f62bae50SIngo Molnar 1296f62bae50SIngo Molnar /* 1297f62bae50SIngo Molnar * Wait for idle. 1298f62bae50SIngo Molnar */ 1299f62bae50SIngo Molnar apic_wait_icr_idle(); 1300f62bae50SIngo Molnar 1301f62bae50SIngo Molnar apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n"); 1302f62bae50SIngo Molnar apic_write(APIC_ICR, APIC_DEST_ALLINC | 1303f62bae50SIngo Molnar APIC_INT_LEVELTRIG | APIC_DM_INIT); 1304f62bae50SIngo Molnar } 1305f62bae50SIngo Molnar 13064f45ed9fSDou Liyang enum apic_intr_mode_id apic_intr_mode; 13070114a8e8SDou Liyang 13080114a8e8SDou Liyang static int __init apic_intr_mode_select(void) 1309f62bae50SIngo Molnar { 13100114a8e8SDou Liyang /* Check kernel option */ 13110114a8e8SDou Liyang if (disable_apic) { 13120114a8e8SDou Liyang pr_info("APIC disabled via kernel command line\n"); 13130114a8e8SDou Liyang return APIC_PIC; 13140114a8e8SDou Liyang } 1315f62bae50SIngo Molnar 13160114a8e8SDou Liyang /* Check BIOS */ 13170114a8e8SDou Liyang #ifdef CONFIG_X86_64 13180114a8e8SDou Liyang /* On 64-bit, the APIC must be integrated, Check local APIC only */ 13190114a8e8SDou Liyang if (!boot_cpu_has(X86_FEATURE_APIC)) { 13200114a8e8SDou Liyang disable_apic = 1; 13210114a8e8SDou Liyang pr_info("APIC disabled by BIOS\n"); 13220114a8e8SDou Liyang return APIC_PIC; 13230114a8e8SDou Liyang } 13240114a8e8SDou Liyang #else 13250114a8e8SDou Liyang /* On 32-bit, the APIC may be integrated APIC or 82489DX */ 1326f62bae50SIngo Molnar 13270114a8e8SDou Liyang /* Neither 82489DX nor integrated APIC ? */ 13280114a8e8SDou Liyang if (!boot_cpu_has(X86_FEATURE_APIC) && !smp_found_config) { 13290114a8e8SDou Liyang disable_apic = 1; 13300114a8e8SDou Liyang return APIC_PIC; 13310114a8e8SDou Liyang } 1332f62bae50SIngo Molnar 13330114a8e8SDou Liyang /* If the BIOS pretends there is an integrated APIC ? */ 13340114a8e8SDou Liyang if (!boot_cpu_has(X86_FEATURE_APIC) && 13350114a8e8SDou Liyang APIC_INTEGRATED(boot_cpu_apic_version)) { 13360114a8e8SDou Liyang disable_apic = 1; 13370114a8e8SDou Liyang pr_err(FW_BUG "Local APIC %d not detected, force emulation\n", 13380114a8e8SDou Liyang boot_cpu_physical_apicid); 13390114a8e8SDou Liyang return APIC_PIC; 13400114a8e8SDou Liyang } 1341f62bae50SIngo Molnar #endif 1342f62bae50SIngo Molnar 13430114a8e8SDou Liyang /* Check MP table or ACPI MADT configuration */ 13440114a8e8SDou Liyang if (!smp_found_config) { 13450114a8e8SDou Liyang disable_ioapic_support(); 13463e730dadSDou Liyang if (!acpi_lapic) { 13470114a8e8SDou Liyang pr_info("APIC: ACPI MADT or MP tables are not detected\n"); 13483e730dadSDou Liyang return APIC_VIRTUAL_WIRE_NO_CONFIG; 13493e730dadSDou Liyang } 13500114a8e8SDou Liyang return APIC_VIRTUAL_WIRE; 13510114a8e8SDou Liyang } 13520114a8e8SDou Liyang 13533e730dadSDou Liyang #ifdef CONFIG_SMP 13543e730dadSDou Liyang /* If SMP should be disabled, then really disable it! */ 13553e730dadSDou Liyang if (!setup_max_cpus) { 13563e730dadSDou Liyang pr_info("APIC: SMP mode deactivated\n"); 13573e730dadSDou Liyang return APIC_SYMMETRIC_IO_NO_ROUTING; 13583e730dadSDou Liyang } 13593e730dadSDou Liyang 13603e730dadSDou Liyang if (read_apic_id() != boot_cpu_physical_apicid) { 13613e730dadSDou Liyang panic("Boot APIC ID in local APIC unexpected (%d vs %d)", 13623e730dadSDou Liyang read_apic_id(), boot_cpu_physical_apicid); 13633e730dadSDou Liyang /* Or can we switch back to PIC here? */ 13643e730dadSDou Liyang } 13653e730dadSDou Liyang #endif 13663e730dadSDou Liyang 13670114a8e8SDou Liyang return APIC_SYMMETRIC_IO; 13680114a8e8SDou Liyang } 13690114a8e8SDou Liyang 1370fc90ccfdSVille Syrjälä /* 1371fc90ccfdSVille Syrjälä * An initial setup of the virtual wire mode. 1372fc90ccfdSVille Syrjälä */ 1373fc90ccfdSVille Syrjälä void __init init_bsp_APIC(void) 1374fc90ccfdSVille Syrjälä { 1375fc90ccfdSVille Syrjälä unsigned int value; 1376fc90ccfdSVille Syrjälä 1377fc90ccfdSVille Syrjälä /* 1378fc90ccfdSVille Syrjälä * Don't do the setup now if we have a SMP BIOS as the 1379fc90ccfdSVille Syrjälä * through-I/O-APIC virtual wire mode might be active. 1380fc90ccfdSVille Syrjälä */ 1381fc90ccfdSVille Syrjälä if (smp_found_config || !boot_cpu_has(X86_FEATURE_APIC)) 1382fc90ccfdSVille Syrjälä return; 1383fc90ccfdSVille Syrjälä 1384fc90ccfdSVille Syrjälä /* 1385fc90ccfdSVille Syrjälä * Do not trust the local APIC being empty at bootup. 1386fc90ccfdSVille Syrjälä */ 1387fc90ccfdSVille Syrjälä clear_local_APIC(); 1388fc90ccfdSVille Syrjälä 1389fc90ccfdSVille Syrjälä /* 1390fc90ccfdSVille Syrjälä * Enable APIC. 1391fc90ccfdSVille Syrjälä */ 1392fc90ccfdSVille Syrjälä value = apic_read(APIC_SPIV); 1393fc90ccfdSVille Syrjälä value &= ~APIC_VECTOR_MASK; 1394fc90ccfdSVille Syrjälä value |= APIC_SPIV_APIC_ENABLED; 1395fc90ccfdSVille Syrjälä 1396fc90ccfdSVille Syrjälä #ifdef CONFIG_X86_32 1397fc90ccfdSVille Syrjälä /* This bit is reserved on P4/Xeon and should be cleared */ 1398fc90ccfdSVille Syrjälä if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) && 1399fc90ccfdSVille Syrjälä (boot_cpu_data.x86 == 15)) 1400fc90ccfdSVille Syrjälä value &= ~APIC_SPIV_FOCUS_DISABLED; 1401fc90ccfdSVille Syrjälä else 1402fc90ccfdSVille Syrjälä #endif 1403fc90ccfdSVille Syrjälä value |= APIC_SPIV_FOCUS_DISABLED; 1404fc90ccfdSVille Syrjälä value |= SPURIOUS_APIC_VECTOR; 1405fc90ccfdSVille Syrjälä apic_write(APIC_SPIV, value); 1406fc90ccfdSVille Syrjälä 1407fc90ccfdSVille Syrjälä /* 1408fc90ccfdSVille Syrjälä * Set up the virtual wire mode. 1409fc90ccfdSVille Syrjälä */ 1410fc90ccfdSVille Syrjälä apic_write(APIC_LVT0, APIC_DM_EXTINT); 1411fc90ccfdSVille Syrjälä value = APIC_DM_NMI; 1412fc90ccfdSVille Syrjälä if (!lapic_is_integrated()) /* 82489DX */ 1413fc90ccfdSVille Syrjälä value |= APIC_LVT_LEVEL_TRIGGER; 1414fc90ccfdSVille Syrjälä if (apic_extnmi == APIC_EXTNMI_NONE) 1415fc90ccfdSVille Syrjälä value |= APIC_LVT_MASKED; 1416fc90ccfdSVille Syrjälä apic_write(APIC_LVT1, value); 1417fc90ccfdSVille Syrjälä } 1418fc90ccfdSVille Syrjälä 1419748b170cSThomas Gleixner static void __init apic_bsp_setup(bool upmode); 1420748b170cSThomas Gleixner 14214b1669e8SDou Liyang /* Init the interrupt delivery mode for the BSP */ 14224b1669e8SDou Liyang void __init apic_intr_mode_init(void) 14234b1669e8SDou Liyang { 14240c759131SDou Liyang bool upmode = IS_ENABLED(CONFIG_UP_LATE_INIT); 14253e730dadSDou Liyang 14264f45ed9fSDou Liyang apic_intr_mode = apic_intr_mode_select(); 14274f45ed9fSDou Liyang 14284f45ed9fSDou Liyang switch (apic_intr_mode) { 14294b1669e8SDou Liyang case APIC_PIC: 14304b1669e8SDou Liyang pr_info("APIC: Keep in PIC mode(8259)\n"); 14314b1669e8SDou Liyang return; 14324b1669e8SDou Liyang case APIC_VIRTUAL_WIRE: 14334b1669e8SDou Liyang pr_info("APIC: Switch to virtual wire mode setup\n"); 14343e730dadSDou Liyang default_setup_apic_routing(); 14353e730dadSDou Liyang break; 14363e730dadSDou Liyang case APIC_VIRTUAL_WIRE_NO_CONFIG: 14373e730dadSDou Liyang pr_info("APIC: Switch to virtual wire mode setup with no configuration\n"); 14383e730dadSDou Liyang upmode = true; 14393e730dadSDou Liyang default_setup_apic_routing(); 14403e730dadSDou Liyang break; 14414b1669e8SDou Liyang case APIC_SYMMETRIC_IO: 144279761ce8SColin Ian King pr_info("APIC: Switch to symmetric I/O mode setup\n"); 14433e730dadSDou Liyang default_setup_apic_routing(); 14443e730dadSDou Liyang break; 14453e730dadSDou Liyang case APIC_SYMMETRIC_IO_NO_ROUTING: 144679761ce8SColin Ian King pr_info("APIC: Switch to symmetric I/O mode setup in no SMP routine\n"); 14473e730dadSDou Liyang break; 14484b1669e8SDou Liyang } 14493e730dadSDou Liyang 14503e730dadSDou Liyang apic_bsp_setup(upmode); 1451f62bae50SIngo Molnar } 1452f62bae50SIngo Molnar 1453148f9bb8SPaul Gortmaker static void lapic_setup_esr(void) 1454f62bae50SIngo Molnar { 1455f62bae50SIngo Molnar unsigned int oldvalue, value, maxlvt; 1456f62bae50SIngo Molnar 1457f62bae50SIngo Molnar if (!lapic_is_integrated()) { 1458f62bae50SIngo Molnar pr_info("No ESR for 82489DX.\n"); 1459f62bae50SIngo Molnar return; 1460f62bae50SIngo Molnar } 1461f62bae50SIngo Molnar 1462f62bae50SIngo Molnar if (apic->disable_esr) { 1463f62bae50SIngo Molnar /* 1464f62bae50SIngo Molnar * Something untraceable is creating bad interrupts on 1465f62bae50SIngo Molnar * secondary quads ... for the moment, just leave the 1466f62bae50SIngo Molnar * ESR disabled - we can't do anything useful with the 1467f62bae50SIngo Molnar * errors anyway - mbligh 1468f62bae50SIngo Molnar */ 1469f62bae50SIngo Molnar pr_info("Leaving ESR disabled.\n"); 1470f62bae50SIngo Molnar return; 1471f62bae50SIngo Molnar } 1472f62bae50SIngo Molnar 1473f62bae50SIngo Molnar maxlvt = lapic_get_maxlvt(); 1474f62bae50SIngo Molnar if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */ 1475f62bae50SIngo Molnar apic_write(APIC_ESR, 0); 1476f62bae50SIngo Molnar oldvalue = apic_read(APIC_ESR); 1477f62bae50SIngo Molnar 1478f62bae50SIngo Molnar /* enables sending errors */ 1479f62bae50SIngo Molnar value = ERROR_APIC_VECTOR; 1480f62bae50SIngo Molnar apic_write(APIC_LVTERR, value); 1481f62bae50SIngo Molnar 1482f62bae50SIngo Molnar /* 1483f62bae50SIngo Molnar * spec says clear errors after enabling vector. 1484f62bae50SIngo Molnar */ 1485f62bae50SIngo Molnar if (maxlvt > 3) 1486f62bae50SIngo Molnar apic_write(APIC_ESR, 0); 1487f62bae50SIngo Molnar value = apic_read(APIC_ESR); 1488f62bae50SIngo Molnar if (value != oldvalue) 1489f62bae50SIngo Molnar apic_printk(APIC_VERBOSE, "ESR value before enabling " 1490f62bae50SIngo Molnar "vector: 0x%08x after: 0x%08x\n", 1491f62bae50SIngo Molnar oldvalue, value); 1492f62bae50SIngo Molnar } 1493f62bae50SIngo Molnar 14949b217f33SDou Liyang static void apic_pending_intr_clear(void) 14959b217f33SDou Liyang { 14969b217f33SDou Liyang long long max_loops = cpu_khz ? cpu_khz : 1000000; 14979b217f33SDou Liyang unsigned long long tsc = 0, ntsc; 14983ea9e7aeSDou Liyang unsigned int queued; 14993ea9e7aeSDou Liyang unsigned long value; 15009b217f33SDou Liyang int i, j, acked = 0; 15019b217f33SDou Liyang 15029b217f33SDou Liyang if (boot_cpu_has(X86_FEATURE_TSC)) 15039b217f33SDou Liyang tsc = rdtsc(); 15049b217f33SDou Liyang /* 15059b217f33SDou Liyang * After a crash, we no longer service the interrupts and a pending 15069b217f33SDou Liyang * interrupt from previous kernel might still have ISR bit set. 15079b217f33SDou Liyang * 15089b217f33SDou Liyang * Most probably by now CPU has serviced that pending interrupt and 15099b217f33SDou Liyang * it might not have done the ack_APIC_irq() because it thought, 15109b217f33SDou Liyang * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it 15119b217f33SDou Liyang * does not clear the ISR bit and cpu thinks it has already serivced 15129b217f33SDou Liyang * the interrupt. Hence a vector might get locked. It was noticed 15139b217f33SDou Liyang * for timer irq (vector 0x31). Issue an extra EOI to clear ISR. 15149b217f33SDou Liyang */ 15159b217f33SDou Liyang do { 15169b217f33SDou Liyang queued = 0; 15179b217f33SDou Liyang for (i = APIC_ISR_NR - 1; i >= 0; i--) 15189b217f33SDou Liyang queued |= apic_read(APIC_IRR + i*0x10); 15199b217f33SDou Liyang 15209b217f33SDou Liyang for (i = APIC_ISR_NR - 1; i >= 0; i--) { 15219b217f33SDou Liyang value = apic_read(APIC_ISR + i*0x10); 15223ea9e7aeSDou Liyang for_each_set_bit(j, &value, 32) { 15239b217f33SDou Liyang ack_APIC_irq(); 15249b217f33SDou Liyang acked++; 15259b217f33SDou Liyang } 15269b217f33SDou Liyang } 15279b217f33SDou Liyang if (acked > 256) { 15283ea9e7aeSDou Liyang pr_err("LAPIC pending interrupts after %d EOI\n", acked); 15299b217f33SDou Liyang break; 15309b217f33SDou Liyang } 15319b217f33SDou Liyang if (queued) { 15329b217f33SDou Liyang if (boot_cpu_has(X86_FEATURE_TSC) && cpu_khz) { 15339b217f33SDou Liyang ntsc = rdtsc(); 1534ea136a11SColin Ian King max_loops = (long long)cpu_khz << 10; 1535ea136a11SColin Ian King max_loops -= ntsc - tsc; 15363ea9e7aeSDou Liyang } else { 15379b217f33SDou Liyang max_loops--; 15389b217f33SDou Liyang } 15393ea9e7aeSDou Liyang } 15409b217f33SDou Liyang } while (queued && max_loops > 0); 15419b217f33SDou Liyang WARN_ON(max_loops <= 0); 15429b217f33SDou Liyang } 15439b217f33SDou Liyang 1544f62bae50SIngo Molnar /** 1545f62bae50SIngo Molnar * setup_local_APIC - setup the local APIC 15460aa002feSTejun Heo * 1547543113d2SDou Liyang * Used to setup local APIC while initializing BSP or bringing up APs. 15480aa002feSTejun Heo * Always called with preemption disabled. 1549f62bae50SIngo Molnar */ 1550b753a2b7SDou Liyang static void setup_local_APIC(void) 1551f62bae50SIngo Molnar { 15520aa002feSTejun Heo int cpu = smp_processor_id(); 15539b217f33SDou Liyang unsigned int value; 15549b217f33SDou Liyang #ifdef CONFIG_X86_32 15558f156168SDou Liyang int logical_apicid, ldr_apicid; 15569b217f33SDou Liyang #endif 15578c3ba8d0SKerstin Jonsson 1558f62bae50SIngo Molnar 1559f62bae50SIngo Molnar if (disable_apic) { 15607167d08eSHenrik Kretzschmar disable_ioapic_support(); 1561f62bae50SIngo Molnar return; 1562f62bae50SIngo Molnar } 1563f62bae50SIngo Molnar 1564f62bae50SIngo Molnar #ifdef CONFIG_X86_32 1565f62bae50SIngo Molnar /* Pound the ESR really hard over the head with a big hammer - mbligh */ 1566f62bae50SIngo Molnar if (lapic_is_integrated() && apic->disable_esr) { 1567f62bae50SIngo Molnar apic_write(APIC_ESR, 0); 1568f62bae50SIngo Molnar apic_write(APIC_ESR, 0); 1569f62bae50SIngo Molnar apic_write(APIC_ESR, 0); 1570f62bae50SIngo Molnar apic_write(APIC_ESR, 0); 1571f62bae50SIngo Molnar } 1572f62bae50SIngo Molnar #endif 1573cdd6c482SIngo Molnar perf_events_lapic_init(); 1574f62bae50SIngo Molnar 1575f62bae50SIngo Molnar /* 1576f62bae50SIngo Molnar * Double-check whether this APIC is really registered. 1577f62bae50SIngo Molnar * This is meaningless in clustered apic mode, so we skip it. 1578f62bae50SIngo Molnar */ 1579c2777f98SDaniel Walker BUG_ON(!apic->apic_id_registered()); 1580f62bae50SIngo Molnar 1581f62bae50SIngo Molnar /* 1582f62bae50SIngo Molnar * Intel recommends to set DFR, LDR and TPR before enabling 1583f62bae50SIngo Molnar * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel 1584f62bae50SIngo Molnar * document number 292116). So here it goes... 1585f62bae50SIngo Molnar */ 1586f62bae50SIngo Molnar apic->init_apic_ldr(); 1587f62bae50SIngo Molnar 15886f802c4bSTejun Heo #ifdef CONFIG_X86_32 15896f802c4bSTejun Heo /* 1590acb8bc09STejun Heo * APIC LDR is initialized. If logical_apicid mapping was 1591acb8bc09STejun Heo * initialized during get_smp_config(), make sure it matches the 1592acb8bc09STejun Heo * actual value. 15936f802c4bSTejun Heo */ 15948f156168SDou Liyang logical_apicid = early_per_cpu(x86_cpu_to_logical_apicid, cpu); 15958f156168SDou Liyang ldr_apicid = GET_APIC_LOGICAL_ID(apic_read(APIC_LDR)); 15968f156168SDou Liyang WARN_ON(logical_apicid != BAD_APICID && logical_apicid != ldr_apicid); 1597acb8bc09STejun Heo /* always use the value from LDR */ 15988f156168SDou Liyang early_per_cpu(x86_cpu_to_logical_apicid, cpu) = ldr_apicid; 15996f802c4bSTejun Heo #endif 16006f802c4bSTejun Heo 1601f62bae50SIngo Molnar /* 1602f62bae50SIngo Molnar * Set Task Priority to 'accept all'. We never change this 1603f62bae50SIngo Molnar * later on. 1604f62bae50SIngo Molnar */ 1605f62bae50SIngo Molnar value = apic_read(APIC_TASKPRI); 1606f62bae50SIngo Molnar value &= ~APIC_TPRI_MASK; 1607f62bae50SIngo Molnar apic_write(APIC_TASKPRI, value); 1608f62bae50SIngo Molnar 16099b217f33SDou Liyang apic_pending_intr_clear(); 1610f62bae50SIngo Molnar 1611f62bae50SIngo Molnar /* 1612f62bae50SIngo Molnar * Now that we are all set up, enable the APIC 1613f62bae50SIngo Molnar */ 1614f62bae50SIngo Molnar value = apic_read(APIC_SPIV); 1615f62bae50SIngo Molnar value &= ~APIC_VECTOR_MASK; 1616f62bae50SIngo Molnar /* 1617f62bae50SIngo Molnar * Enable APIC 1618f62bae50SIngo Molnar */ 1619f62bae50SIngo Molnar value |= APIC_SPIV_APIC_ENABLED; 1620f62bae50SIngo Molnar 1621f62bae50SIngo Molnar #ifdef CONFIG_X86_32 1622f62bae50SIngo Molnar /* 1623f62bae50SIngo Molnar * Some unknown Intel IO/APIC (or APIC) errata is biting us with 1624f62bae50SIngo Molnar * certain networking cards. If high frequency interrupts are 1625f62bae50SIngo Molnar * happening on a particular IOAPIC pin, plus the IOAPIC routing 1626f62bae50SIngo Molnar * entry is masked/unmasked at a high rate as well then sooner or 1627f62bae50SIngo Molnar * later IOAPIC line gets 'stuck', no more interrupts are received 1628f62bae50SIngo Molnar * from the device. If focus CPU is disabled then the hang goes 1629f62bae50SIngo Molnar * away, oh well :-( 1630f62bae50SIngo Molnar * 1631f62bae50SIngo Molnar * [ This bug can be reproduced easily with a level-triggered 1632f62bae50SIngo Molnar * PCI Ne2000 networking cards and PII/PIII processors, dual 1633f62bae50SIngo Molnar * BX chipset. ] 1634f62bae50SIngo Molnar */ 1635f62bae50SIngo Molnar /* 1636f62bae50SIngo Molnar * Actually disabling the focus CPU check just makes the hang less 1637f62bae50SIngo Molnar * frequent as it makes the interrupt distributon model be more 1638f62bae50SIngo Molnar * like LRU than MRU (the short-term load is more even across CPUs). 1639f62bae50SIngo Molnar */ 1640f62bae50SIngo Molnar 1641f62bae50SIngo Molnar /* 1642f62bae50SIngo Molnar * - enable focus processor (bit==0) 1643f62bae50SIngo Molnar * - 64bit mode always use processor focus 1644f62bae50SIngo Molnar * so no need to set it 1645f62bae50SIngo Molnar */ 1646f62bae50SIngo Molnar value &= ~APIC_SPIV_FOCUS_DISABLED; 1647f62bae50SIngo Molnar #endif 1648f62bae50SIngo Molnar 1649f62bae50SIngo Molnar /* 1650f62bae50SIngo Molnar * Set spurious IRQ vector 1651f62bae50SIngo Molnar */ 1652f62bae50SIngo Molnar value |= SPURIOUS_APIC_VECTOR; 1653f62bae50SIngo Molnar apic_write(APIC_SPIV, value); 1654f62bae50SIngo Molnar 1655f62bae50SIngo Molnar /* 1656f62bae50SIngo Molnar * Set up LVT0, LVT1: 1657f62bae50SIngo Molnar * 1658a1652bb8SJean Delvare * set up through-local-APIC on the boot CPU's LINT0. This is not 1659f62bae50SIngo Molnar * strictly necessary in pure symmetric-IO mode, but sometimes 1660f62bae50SIngo Molnar * we delegate interrupts to the 8259A. 1661f62bae50SIngo Molnar */ 1662f62bae50SIngo Molnar /* 1663f62bae50SIngo Molnar * TODO: set up through-local-APIC from through-I/O-APIC? --macro 1664f62bae50SIngo Molnar */ 1665f62bae50SIngo Molnar value = apic_read(APIC_LVT0) & APIC_LVT_MASKED; 1666bee3204eSBaoquan He if (!cpu && (pic_mode || !value || skip_ioapic_setup)) { 1667f62bae50SIngo Molnar value = APIC_DM_EXTINT; 16680aa002feSTejun Heo apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n", cpu); 1669f62bae50SIngo Molnar } else { 1670f62bae50SIngo Molnar value = APIC_DM_EXTINT | APIC_LVT_MASKED; 16710aa002feSTejun Heo apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n", cpu); 1672f62bae50SIngo Molnar } 1673f62bae50SIngo Molnar apic_write(APIC_LVT0, value); 1674f62bae50SIngo Molnar 1675f62bae50SIngo Molnar /* 1676b7c4948eSHidehiro Kawai * Only the BSP sees the LINT1 NMI signal by default. This can be 1677b7c4948eSHidehiro Kawai * modified by apic_extnmi= boot option. 1678f62bae50SIngo Molnar */ 1679b7c4948eSHidehiro Kawai if ((!cpu && apic_extnmi != APIC_EXTNMI_NONE) || 1680b7c4948eSHidehiro Kawai apic_extnmi == APIC_EXTNMI_ALL) 1681f62bae50SIngo Molnar value = APIC_DM_NMI; 1682f62bae50SIngo Molnar else 1683f62bae50SIngo Molnar value = APIC_DM_NMI | APIC_LVT_MASKED; 1684ae41a2a4SDou Liyang 1685ae41a2a4SDou Liyang /* Is 82489DX ? */ 1686ae41a2a4SDou Liyang if (!lapic_is_integrated()) 1687f62bae50SIngo Molnar value |= APIC_LVT_LEVEL_TRIGGER; 1688f62bae50SIngo Molnar apic_write(APIC_LVT1, value); 1689f62bae50SIngo Molnar 1690638bee71SH. Peter Anvin #ifdef CONFIG_X86_MCE_INTEL 1691638bee71SH. Peter Anvin /* Recheck CMCI information after local APIC is up on CPU #0 */ 16920aa002feSTejun Heo if (!cpu) 1693638bee71SH. Peter Anvin cmci_recheck(); 1694638bee71SH. Peter Anvin #endif 1695f62bae50SIngo Molnar } 1696f62bae50SIngo Molnar 169705f7e46dSThomas Gleixner static void end_local_APIC_setup(void) 1698f62bae50SIngo Molnar { 1699f62bae50SIngo Molnar lapic_setup_esr(); 1700f62bae50SIngo Molnar 1701f62bae50SIngo Molnar #ifdef CONFIG_X86_32 1702f62bae50SIngo Molnar { 1703f62bae50SIngo Molnar unsigned int value; 1704f62bae50SIngo Molnar /* Disable the local apic timer */ 1705f62bae50SIngo Molnar value = apic_read(APIC_LVTT); 1706f62bae50SIngo Molnar value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR); 1707f62bae50SIngo Molnar apic_write(APIC_LVTT, value); 1708f62bae50SIngo Molnar } 1709f62bae50SIngo Molnar #endif 1710f62bae50SIngo Molnar 1711f62bae50SIngo Molnar apic_pm_activate(); 17122fb270f3SJan Beulich } 17132fb270f3SJan Beulich 17147f7fbf45SKenji Kaneshige /* 171505f7e46dSThomas Gleixner * APIC setup function for application processors. Called from smpboot.c 17167f7fbf45SKenji Kaneshige */ 171705f7e46dSThomas Gleixner void apic_ap_setup(void) 171805f7e46dSThomas Gleixner { 171905f7e46dSThomas Gleixner setup_local_APIC(); 172005f7e46dSThomas Gleixner end_local_APIC_setup(); 1721f62bae50SIngo Molnar } 1722f62bae50SIngo Molnar 1723f62bae50SIngo Molnar #ifdef CONFIG_X86_X2APIC 1724bfb05070SThomas Gleixner int x2apic_mode; 172512e189d3SThomas Gleixner 172612e189d3SThomas Gleixner enum { 172712e189d3SThomas Gleixner X2APIC_OFF, 172812e189d3SThomas Gleixner X2APIC_ON, 172912e189d3SThomas Gleixner X2APIC_DISABLED, 173012e189d3SThomas Gleixner }; 173112e189d3SThomas Gleixner static int x2apic_state; 173212e189d3SThomas Gleixner 1733d786ad32SDenys Vlasenko static void __x2apic_disable(void) 173444e25ff9SThomas Gleixner { 173544e25ff9SThomas Gleixner u64 msr; 173644e25ff9SThomas Gleixner 173793984fbdSBorislav Petkov if (!boot_cpu_has(X86_FEATURE_APIC)) 1738659006bfSThomas Gleixner return; 1739659006bfSThomas Gleixner 174044e25ff9SThomas Gleixner rdmsrl(MSR_IA32_APICBASE, msr); 174144e25ff9SThomas Gleixner if (!(msr & X2APIC_ENABLE)) 174244e25ff9SThomas Gleixner return; 174344e25ff9SThomas Gleixner /* Disable xapic and x2apic first and then reenable xapic mode */ 174444e25ff9SThomas Gleixner wrmsrl(MSR_IA32_APICBASE, msr & ~(X2APIC_ENABLE | XAPIC_ENABLE)); 174544e25ff9SThomas Gleixner wrmsrl(MSR_IA32_APICBASE, msr & ~X2APIC_ENABLE); 174644e25ff9SThomas Gleixner printk_once(KERN_INFO "x2apic disabled\n"); 174744e25ff9SThomas Gleixner } 174844e25ff9SThomas Gleixner 1749d786ad32SDenys Vlasenko static void __x2apic_enable(void) 1750659006bfSThomas Gleixner { 1751659006bfSThomas Gleixner u64 msr; 1752659006bfSThomas Gleixner 1753659006bfSThomas Gleixner rdmsrl(MSR_IA32_APICBASE, msr); 1754659006bfSThomas Gleixner if (msr & X2APIC_ENABLE) 1755659006bfSThomas Gleixner return; 1756659006bfSThomas Gleixner wrmsrl(MSR_IA32_APICBASE, msr | X2APIC_ENABLE); 1757659006bfSThomas Gleixner printk_once(KERN_INFO "x2apic enabled\n"); 1758659006bfSThomas Gleixner } 1759659006bfSThomas Gleixner 1760bfb05070SThomas Gleixner static int __init setup_nox2apic(char *str) 1761bfb05070SThomas Gleixner { 1762bfb05070SThomas Gleixner if (x2apic_enabled()) { 1763bfb05070SThomas Gleixner int apicid = native_apic_msr_read(APIC_ID); 1764bfb05070SThomas Gleixner 1765bfb05070SThomas Gleixner if (apicid >= 255) { 1766bfb05070SThomas Gleixner pr_warning("Apicid: %08x, cannot enforce nox2apic\n", 1767bfb05070SThomas Gleixner apicid); 1768bfb05070SThomas Gleixner return 0; 1769bfb05070SThomas Gleixner } 177044e25ff9SThomas Gleixner pr_warning("x2apic already enabled.\n"); 177144e25ff9SThomas Gleixner __x2apic_disable(); 177244e25ff9SThomas Gleixner } 1773bfb05070SThomas Gleixner setup_clear_cpu_cap(X86_FEATURE_X2APIC); 177412e189d3SThomas Gleixner x2apic_state = X2APIC_DISABLED; 177544e25ff9SThomas Gleixner x2apic_mode = 0; 1776bfb05070SThomas Gleixner return 0; 1777bfb05070SThomas Gleixner } 1778bfb05070SThomas Gleixner early_param("nox2apic", setup_nox2apic); 1779bfb05070SThomas Gleixner 1780659006bfSThomas Gleixner /* Called from cpu_init() to enable x2apic on (secondary) cpus */ 1781659006bfSThomas Gleixner void x2apic_setup(void) 1782659006bfSThomas Gleixner { 1783659006bfSThomas Gleixner /* 1784659006bfSThomas Gleixner * If x2apic is not in ON state, disable it if already enabled 1785659006bfSThomas Gleixner * from BIOS. 1786659006bfSThomas Gleixner */ 1787659006bfSThomas Gleixner if (x2apic_state != X2APIC_ON) { 1788659006bfSThomas Gleixner __x2apic_disable(); 1789659006bfSThomas Gleixner return; 1790659006bfSThomas Gleixner } 1791659006bfSThomas Gleixner __x2apic_enable(); 1792659006bfSThomas Gleixner } 1793659006bfSThomas Gleixner 179444e25ff9SThomas Gleixner static __init void x2apic_disable(void) 1795fb209bd8SYinghai Lu { 1796a57e456aSThomas Gleixner u32 x2apic_id, state = x2apic_state; 1797fb209bd8SYinghai Lu 1798a57e456aSThomas Gleixner x2apic_mode = 0; 1799a57e456aSThomas Gleixner x2apic_state = X2APIC_DISABLED; 1800a57e456aSThomas Gleixner 1801a57e456aSThomas Gleixner if (state != X2APIC_ON) 1802a57e456aSThomas Gleixner return; 1803fb209bd8SYinghai Lu 18046d2d49d2SThomas Gleixner x2apic_id = read_apic_id(); 1805fb209bd8SYinghai Lu if (x2apic_id >= 255) 1806fb209bd8SYinghai Lu panic("Cannot disable x2apic, id: %08x\n", x2apic_id); 1807fb209bd8SYinghai Lu 180844e25ff9SThomas Gleixner __x2apic_disable(); 1809fb209bd8SYinghai Lu register_lapic_address(mp_lapic_addr); 1810fb209bd8SYinghai Lu } 1811fb209bd8SYinghai Lu 1812659006bfSThomas Gleixner static __init void x2apic_enable(void) 1813f62bae50SIngo Molnar { 1814659006bfSThomas Gleixner if (x2apic_state != X2APIC_OFF) 1815f62bae50SIngo Molnar return; 1816f62bae50SIngo Molnar 1817659006bfSThomas Gleixner x2apic_mode = 1; 181812e189d3SThomas Gleixner x2apic_state = X2APIC_ON; 1819659006bfSThomas Gleixner __x2apic_enable(); 1820f62bae50SIngo Molnar } 1821d524165cSThomas Gleixner 182262e61633SThomas Gleixner static __init void try_to_enable_x2apic(int remap_mode) 182307806c50SJiang Liu { 1824659006bfSThomas Gleixner if (x2apic_state == X2APIC_DISABLED) 182507806c50SJiang Liu return; 182607806c50SJiang Liu 182762e61633SThomas Gleixner if (remap_mode != IRQ_REMAP_X2APIC_MODE) { 182807806c50SJiang Liu /* IR is required if there is APIC ID > 255 even when running 182907806c50SJiang Liu * under KVM 183007806c50SJiang Liu */ 183107806c50SJiang Liu if (max_physical_apicid > 255 || 1832f72e38e8SJuergen Gross !x86_init.hyper.x2apic_available()) { 183362e61633SThomas Gleixner pr_info("x2apic: IRQ remapping doesn't support X2APIC mode\n"); 183444e25ff9SThomas Gleixner x2apic_disable(); 183507806c50SJiang Liu return; 183607806c50SJiang Liu } 183707806c50SJiang Liu 183807806c50SJiang Liu /* 183907806c50SJiang Liu * without IR all CPUs can be addressed by IOAPIC/MSI 184007806c50SJiang Liu * only in physical mode 184107806c50SJiang Liu */ 184255eae7deSThomas Gleixner x2apic_phys = 1; 184307806c50SJiang Liu } 1844659006bfSThomas Gleixner x2apic_enable(); 184555eae7deSThomas Gleixner } 184655eae7deSThomas Gleixner 184755eae7deSThomas Gleixner void __init check_x2apic(void) 184855eae7deSThomas Gleixner { 184955eae7deSThomas Gleixner if (x2apic_enabled()) { 185055eae7deSThomas Gleixner pr_info("x2apic: enabled by BIOS, switching to x2apic ops\n"); 185155eae7deSThomas Gleixner x2apic_mode = 1; 185212e189d3SThomas Gleixner x2apic_state = X2APIC_ON; 185362436a4dSBorislav Petkov } else if (!boot_cpu_has(X86_FEATURE_X2APIC)) { 185412e189d3SThomas Gleixner x2apic_state = X2APIC_DISABLED; 185555eae7deSThomas Gleixner } 185655eae7deSThomas Gleixner } 185755eae7deSThomas Gleixner #else /* CONFIG_X86_X2APIC */ 185855eae7deSThomas Gleixner static int __init validate_x2apic(void) 185955eae7deSThomas Gleixner { 186055eae7deSThomas Gleixner if (!apic_is_x2apic_enabled()) 186155eae7deSThomas Gleixner return 0; 186255eae7deSThomas Gleixner /* 186355eae7deSThomas Gleixner * Checkme: Can we simply turn off x2apic here instead of panic? 186455eae7deSThomas Gleixner */ 186555eae7deSThomas Gleixner panic("BIOS has enabled x2apic but kernel doesn't support x2apic, please disable x2apic in BIOS.\n"); 186655eae7deSThomas Gleixner } 186755eae7deSThomas Gleixner early_initcall(validate_x2apic); 186855eae7deSThomas Gleixner 186962e61633SThomas Gleixner static inline void try_to_enable_x2apic(int remap_mode) { } 1870659006bfSThomas Gleixner static inline void __x2apic_enable(void) { } 187155eae7deSThomas Gleixner #endif /* !CONFIG_X86_X2APIC */ 187255eae7deSThomas Gleixner 1873ce69a784SGleb Natapov void __init enable_IR_x2apic(void) 1874ce69a784SGleb Natapov { 1875ce69a784SGleb Natapov unsigned long flags; 187607806c50SJiang Liu int ret, ir_stat; 1877b7f42ab2SYinghai Lu 187811277aabSDou Liyang if (skip_ioapic_setup) { 187911277aabSDou Liyang pr_info("Not enabling interrupt remapping due to skipped IO-APIC setup\n"); 18802e63ad4bSWanpeng Li return; 188111277aabSDou Liyang } 18822e63ad4bSWanpeng Li 188307806c50SJiang Liu ir_stat = irq_remapping_prepare(); 188407806c50SJiang Liu if (ir_stat < 0 && !x2apic_supported()) 1885e670761fSYinghai Lu return; 1886ce69a784SGleb Natapov 188731dce14aSSuresh Siddha ret = save_ioapic_entries(); 1888f62bae50SIngo Molnar if (ret) { 1889f62bae50SIngo Molnar pr_info("Saving IO-APIC state failed: %d\n", ret); 1890fb209bd8SYinghai Lu return; 1891f62bae50SIngo Molnar } 1892f62bae50SIngo Molnar 189305c3dc2cSSuresh Siddha local_irq_save(flags); 1894b81bb373SJacob Pan legacy_pic->mask_all(); 189531dce14aSSuresh Siddha mask_ioapic_entries(); 189605c3dc2cSSuresh Siddha 18976a6256f9SAdam Buchbinder /* If irq_remapping_prepare() succeeded, try to enable it */ 189807806c50SJiang Liu if (ir_stat >= 0) 189911277aabSDou Liyang ir_stat = irq_remapping_enable(); 190007806c50SJiang Liu /* ir_stat contains the remap mode or an error code */ 190107806c50SJiang Liu try_to_enable_x2apic(ir_stat); 1902a31bc327SYinghai Lu 190307806c50SJiang Liu if (ir_stat < 0) 190431dce14aSSuresh Siddha restore_ioapic_entries(); 1905b81bb373SJacob Pan legacy_pic->restore_mask(); 1906f62bae50SIngo Molnar local_irq_restore(flags); 1907f62bae50SIngo Molnar } 190893758238SWeidong Han 1909f62bae50SIngo Molnar #ifdef CONFIG_X86_64 1910f62bae50SIngo Molnar /* 1911f62bae50SIngo Molnar * Detect and enable local APICs on non-SMP boards. 1912f62bae50SIngo Molnar * Original code written by Keir Fraser. 1913f62bae50SIngo Molnar * On AMD64 we trust the BIOS - if it says no APIC it is likely 1914f62bae50SIngo Molnar * not correctly set up (usually the APIC timer won't work etc.) 1915f62bae50SIngo Molnar */ 1916f62bae50SIngo Molnar static int __init detect_init_APIC(void) 1917f62bae50SIngo Molnar { 191893984fbdSBorislav Petkov if (!boot_cpu_has(X86_FEATURE_APIC)) { 1919f62bae50SIngo Molnar pr_info("No local APIC present\n"); 1920f62bae50SIngo Molnar return -1; 1921f62bae50SIngo Molnar } 1922f62bae50SIngo Molnar 1923f62bae50SIngo Molnar mp_lapic_addr = APIC_DEFAULT_PHYS_BASE; 1924f62bae50SIngo Molnar return 0; 1925f62bae50SIngo Molnar } 1926f62bae50SIngo Molnar #else 19275a7ae78fSThomas Gleixner 192825874a29SHenrik Kretzschmar static int __init apic_verify(void) 19295a7ae78fSThomas Gleixner { 19305a7ae78fSThomas Gleixner u32 features, h, l; 19315a7ae78fSThomas Gleixner 19325a7ae78fSThomas Gleixner /* 19335a7ae78fSThomas Gleixner * The APIC feature bit should now be enabled 19345a7ae78fSThomas Gleixner * in `cpuid' 19355a7ae78fSThomas Gleixner */ 19365a7ae78fSThomas Gleixner features = cpuid_edx(1); 19375a7ae78fSThomas Gleixner if (!(features & (1 << X86_FEATURE_APIC))) { 19385a7ae78fSThomas Gleixner pr_warning("Could not enable APIC!\n"); 19395a7ae78fSThomas Gleixner return -1; 19405a7ae78fSThomas Gleixner } 19415a7ae78fSThomas Gleixner set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC); 19425a7ae78fSThomas Gleixner mp_lapic_addr = APIC_DEFAULT_PHYS_BASE; 19435a7ae78fSThomas Gleixner 19445a7ae78fSThomas Gleixner /* The BIOS may have set up the APIC at some other address */ 1945cbf2829bSBryan O'Donoghue if (boot_cpu_data.x86 >= 6) { 19465a7ae78fSThomas Gleixner rdmsr(MSR_IA32_APICBASE, l, h); 19475a7ae78fSThomas Gleixner if (l & MSR_IA32_APICBASE_ENABLE) 19485a7ae78fSThomas Gleixner mp_lapic_addr = l & MSR_IA32_APICBASE_BASE; 1949cbf2829bSBryan O'Donoghue } 19505a7ae78fSThomas Gleixner 19515a7ae78fSThomas Gleixner pr_info("Found and enabled local APIC!\n"); 19525a7ae78fSThomas Gleixner return 0; 19535a7ae78fSThomas Gleixner } 19545a7ae78fSThomas Gleixner 195525874a29SHenrik Kretzschmar int __init apic_force_enable(unsigned long addr) 19565a7ae78fSThomas Gleixner { 19575a7ae78fSThomas Gleixner u32 h, l; 19585a7ae78fSThomas Gleixner 19595a7ae78fSThomas Gleixner if (disable_apic) 19605a7ae78fSThomas Gleixner return -1; 19615a7ae78fSThomas Gleixner 19625a7ae78fSThomas Gleixner /* 19635a7ae78fSThomas Gleixner * Some BIOSes disable the local APIC in the APIC_BASE 19645a7ae78fSThomas Gleixner * MSR. This can only be done in software for Intel P6 or later 19655a7ae78fSThomas Gleixner * and AMD K7 (Model > 1) or later. 19665a7ae78fSThomas Gleixner */ 1967cbf2829bSBryan O'Donoghue if (boot_cpu_data.x86 >= 6) { 19685a7ae78fSThomas Gleixner rdmsr(MSR_IA32_APICBASE, l, h); 19695a7ae78fSThomas Gleixner if (!(l & MSR_IA32_APICBASE_ENABLE)) { 19705a7ae78fSThomas Gleixner pr_info("Local APIC disabled by BIOS -- reenabling.\n"); 19715a7ae78fSThomas Gleixner l &= ~MSR_IA32_APICBASE_BASE; 1972a906fdaaSThomas Gleixner l |= MSR_IA32_APICBASE_ENABLE | addr; 19735a7ae78fSThomas Gleixner wrmsr(MSR_IA32_APICBASE, l, h); 19745a7ae78fSThomas Gleixner enabled_via_apicbase = 1; 19755a7ae78fSThomas Gleixner } 1976cbf2829bSBryan O'Donoghue } 19775a7ae78fSThomas Gleixner return apic_verify(); 19785a7ae78fSThomas Gleixner } 19795a7ae78fSThomas Gleixner 1980f62bae50SIngo Molnar /* 1981f62bae50SIngo Molnar * Detect and initialize APIC 1982f62bae50SIngo Molnar */ 1983f62bae50SIngo Molnar static int __init detect_init_APIC(void) 1984f62bae50SIngo Molnar { 1985f62bae50SIngo Molnar /* Disabled by kernel option? */ 1986f62bae50SIngo Molnar if (disable_apic) 1987f62bae50SIngo Molnar return -1; 1988f62bae50SIngo Molnar 1989f62bae50SIngo Molnar switch (boot_cpu_data.x86_vendor) { 1990f62bae50SIngo Molnar case X86_VENDOR_AMD: 1991f62bae50SIngo Molnar if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) || 1992f62bae50SIngo Molnar (boot_cpu_data.x86 >= 15)) 1993f62bae50SIngo Molnar break; 1994f62bae50SIngo Molnar goto no_apic; 1995da33dfefSPu Wen case X86_VENDOR_HYGON: 1996da33dfefSPu Wen break; 1997f62bae50SIngo Molnar case X86_VENDOR_INTEL: 1998f62bae50SIngo Molnar if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 || 199993984fbdSBorislav Petkov (boot_cpu_data.x86 == 5 && boot_cpu_has(X86_FEATURE_APIC))) 2000f62bae50SIngo Molnar break; 2001f62bae50SIngo Molnar goto no_apic; 2002f62bae50SIngo Molnar default: 2003f62bae50SIngo Molnar goto no_apic; 2004f62bae50SIngo Molnar } 2005f62bae50SIngo Molnar 200693984fbdSBorislav Petkov if (!boot_cpu_has(X86_FEATURE_APIC)) { 2007f62bae50SIngo Molnar /* 2008f62bae50SIngo Molnar * Over-ride BIOS and try to enable the local APIC only if 2009f62bae50SIngo Molnar * "lapic" specified. 2010f62bae50SIngo Molnar */ 2011f62bae50SIngo Molnar if (!force_enable_local_apic) { 2012f62bae50SIngo Molnar pr_info("Local APIC disabled by BIOS -- " 2013f62bae50SIngo Molnar "you can enable it with \"lapic\"\n"); 2014f62bae50SIngo Molnar return -1; 2015f62bae50SIngo Molnar } 2016a906fdaaSThomas Gleixner if (apic_force_enable(APIC_DEFAULT_PHYS_BASE)) 20175a7ae78fSThomas Gleixner return -1; 20185a7ae78fSThomas Gleixner } else { 20195a7ae78fSThomas Gleixner if (apic_verify()) 2020f62bae50SIngo Molnar return -1; 2021f62bae50SIngo Molnar } 2022f62bae50SIngo Molnar 2023f62bae50SIngo Molnar apic_pm_activate(); 2024f62bae50SIngo Molnar 2025f62bae50SIngo Molnar return 0; 2026f62bae50SIngo Molnar 2027f62bae50SIngo Molnar no_apic: 2028f62bae50SIngo Molnar pr_info("No local APIC present or hardware disabled\n"); 2029f62bae50SIngo Molnar return -1; 2030f62bae50SIngo Molnar } 2031f62bae50SIngo Molnar #endif 2032f62bae50SIngo Molnar 2033f62bae50SIngo Molnar /** 2034f62bae50SIngo Molnar * init_apic_mappings - initialize APIC mappings 2035f62bae50SIngo Molnar */ 2036f62bae50SIngo Molnar void __init init_apic_mappings(void) 2037f62bae50SIngo Molnar { 20384401da61SYinghai Lu unsigned int new_apicid; 20394401da61SYinghai Lu 2040bd9240a1SPeter Zijlstra apic_check_deadline_errata(); 2041bd9240a1SPeter Zijlstra 2042fc1edaf9SSuresh Siddha if (x2apic_mode) { 2043f62bae50SIngo Molnar boot_cpu_physical_apicid = read_apic_id(); 2044f62bae50SIngo Molnar return; 2045f62bae50SIngo Molnar } 2046f62bae50SIngo Molnar 20474797f6b0SYinghai Lu /* If no local APIC can be found return early */ 2048f62bae50SIngo Molnar if (!smp_found_config && detect_init_APIC()) { 20494797f6b0SYinghai Lu /* lets NOP'ify apic operations */ 20504797f6b0SYinghai Lu pr_info("APIC: disable apic facility\n"); 20514797f6b0SYinghai Lu apic_disable(); 20524797f6b0SYinghai Lu } else { 2053f62bae50SIngo Molnar apic_phys = mp_lapic_addr; 2054f62bae50SIngo Molnar 20554401da61SYinghai Lu /* 20565ba039a5SDou Liyang * If the system has ACPI MADT tables or MP info, the LAPIC 20575ba039a5SDou Liyang * address is already registered. 20584401da61SYinghai Lu */ 20595989cd6aSEric W. Biederman if (!acpi_lapic && !smp_found_config) 2060326a2e6bSYinghai Lu register_lapic_address(apic_phys); 2061cec6be6dSCyrill Gorcunov } 2062f62bae50SIngo Molnar 2063f62bae50SIngo Molnar /* 2064f62bae50SIngo Molnar * Fetch the APIC ID of the BSP in case we have a 2065f62bae50SIngo Molnar * default configuration (or the MP table is broken). 2066f62bae50SIngo Molnar */ 20674401da61SYinghai Lu new_apicid = read_apic_id(); 20684401da61SYinghai Lu if (boot_cpu_physical_apicid != new_apicid) { 20694401da61SYinghai Lu boot_cpu_physical_apicid = new_apicid; 2070103428e5SCyrill Gorcunov /* 2071103428e5SCyrill Gorcunov * yeah -- we lie about apic_version 2072103428e5SCyrill Gorcunov * in case if apic was disabled via boot option 2073103428e5SCyrill Gorcunov * but it's not a problem for SMP compiled kernel 20744f45ed9fSDou Liyang * since apic_intr_mode_select is prepared for such 20754f45ed9fSDou Liyang * a case and disable smp mode 2076103428e5SCyrill Gorcunov */ 2077cff9ab2bSDenys Vlasenko boot_cpu_apic_version = GET_APIC_VERSION(apic_read(APIC_LVR)); 207808306ce6SCyrill Gorcunov } 2079f62bae50SIngo Molnar } 2080f62bae50SIngo Molnar 2081c0104d38SYinghai Lu void __init register_lapic_address(unsigned long address) 2082c0104d38SYinghai Lu { 2083c0104d38SYinghai Lu mp_lapic_addr = address; 2084c0104d38SYinghai Lu 20850450193bSYinghai Lu if (!x2apic_mode) { 2086c0104d38SYinghai Lu set_fixmap_nocache(FIX_APIC_BASE, address); 2087f1157141SYinghai Lu apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n", 20886de42119SBaoquan He APIC_BASE, address); 20890450193bSYinghai Lu } 2090c0104d38SYinghai Lu if (boot_cpu_physical_apicid == -1U) { 2091c0104d38SYinghai Lu boot_cpu_physical_apicid = read_apic_id(); 2092cff9ab2bSDenys Vlasenko boot_cpu_apic_version = GET_APIC_VERSION(apic_read(APIC_LVR)); 2093c0104d38SYinghai Lu } 2094c0104d38SYinghai Lu } 2095c0104d38SYinghai Lu 2096f62bae50SIngo Molnar /* 2097f62bae50SIngo Molnar * Local APIC interrupts 2098f62bae50SIngo Molnar */ 2099f62bae50SIngo Molnar 2100f62bae50SIngo Molnar /* 2101f62bae50SIngo Molnar * This interrupt should _never_ happen with our APIC/SMP architecture 2102f62bae50SIngo Molnar */ 210361069de7SThomas Gleixner __visible void __irq_entry smp_spurious_interrupt(struct pt_regs *regs) 2104f62bae50SIngo Molnar { 210561069de7SThomas Gleixner u8 vector = ~regs->orig_ax; 2106f62bae50SIngo Molnar u32 v; 2107f62bae50SIngo Molnar 210861069de7SThomas Gleixner entering_irq(); 210961069de7SThomas Gleixner trace_spurious_apic_entry(vector); 211061069de7SThomas Gleixner 2111f62bae50SIngo Molnar inc_irq_stat(irq_spurious_count); 2112f62bae50SIngo Molnar 2113f8a8fe61SThomas Gleixner /* 2114f8a8fe61SThomas Gleixner * If this is a spurious interrupt then do not acknowledge 2115f8a8fe61SThomas Gleixner */ 2116f8a8fe61SThomas Gleixner if (vector == SPURIOUS_APIC_VECTOR) { 2117f8a8fe61SThomas Gleixner /* See SDM vol 3 */ 2118f8a8fe61SThomas Gleixner pr_info("Spurious APIC interrupt (vector 0xFF) on CPU#%d, should never happen.\n", 2119f8a8fe61SThomas Gleixner smp_processor_id()); 2120f8a8fe61SThomas Gleixner goto out; 2121f8a8fe61SThomas Gleixner } 2122eddc0e92SSeiji Aguchi 2123f8a8fe61SThomas Gleixner /* 2124f8a8fe61SThomas Gleixner * If it is a vectored one, verify it's set in the ISR. If set, 2125f8a8fe61SThomas Gleixner * acknowledge it. 2126f8a8fe61SThomas Gleixner */ 2127f8a8fe61SThomas Gleixner v = apic_read(APIC_ISR + ((vector & ~0x1f) >> 1)); 2128f8a8fe61SThomas Gleixner if (v & (1 << (vector & 0x1f))) { 2129f8a8fe61SThomas Gleixner pr_info("Spurious interrupt (vector 0x%02x) on CPU#%d. Acked\n", 2130f8a8fe61SThomas Gleixner vector, smp_processor_id()); 2131f8a8fe61SThomas Gleixner ack_APIC_irq(); 2132f8a8fe61SThomas Gleixner } else { 2133f8a8fe61SThomas Gleixner pr_info("Spurious interrupt (vector 0x%02x) on CPU#%d. Not pending!\n", 2134f8a8fe61SThomas Gleixner vector, smp_processor_id()); 2135f8a8fe61SThomas Gleixner } 2136f8a8fe61SThomas Gleixner out: 21372414e021SJan Beulich trace_spurious_apic_exit(vector); 2138cf910e83SSeiji Aguchi exiting_irq(); 2139f62bae50SIngo Molnar } 2140f62bae50SIngo Molnar 2141f62bae50SIngo Molnar /* 2142f62bae50SIngo Molnar * This interrupt should never happen with our APIC/SMP architecture 2143f62bae50SIngo Molnar */ 214461069de7SThomas Gleixner __visible void __irq_entry smp_error_interrupt(struct pt_regs *regs) 2145f62bae50SIngo Molnar { 21462b398bd9SYouquan Song static const char * const error_interrupt_reason[] = { 21472b398bd9SYouquan Song "Send CS error", /* APIC Error Bit 0 */ 21482b398bd9SYouquan Song "Receive CS error", /* APIC Error Bit 1 */ 21492b398bd9SYouquan Song "Send accept error", /* APIC Error Bit 2 */ 21502b398bd9SYouquan Song "Receive accept error", /* APIC Error Bit 3 */ 21512b398bd9SYouquan Song "Redirectable IPI", /* APIC Error Bit 4 */ 21522b398bd9SYouquan Song "Send illegal vector", /* APIC Error Bit 5 */ 21532b398bd9SYouquan Song "Received illegal vector", /* APIC Error Bit 6 */ 21542b398bd9SYouquan Song "Illegal register address", /* APIC Error Bit 7 */ 21552b398bd9SYouquan Song }; 215661069de7SThomas Gleixner u32 v, i = 0; 215761069de7SThomas Gleixner 215861069de7SThomas Gleixner entering_irq(); 215961069de7SThomas Gleixner trace_error_apic_entry(ERROR_APIC_VECTOR); 2160f62bae50SIngo Molnar 2161f62bae50SIngo Molnar /* First tickle the hardware, only then report what went on. -- REW */ 2162023de4a0SMaciej W. Rozycki if (lapic_get_maxlvt() > 3) /* Due to the Pentium erratum 3AP. */ 2163f62bae50SIngo Molnar apic_write(APIC_ESR, 0); 216460283df7SRichard Weinberger v = apic_read(APIC_ESR); 2165f62bae50SIngo Molnar ack_APIC_irq(); 2166f62bae50SIngo Molnar atomic_inc(&irq_err_count); 2167f62bae50SIngo Molnar 216860283df7SRichard Weinberger apic_printk(APIC_DEBUG, KERN_DEBUG "APIC error on CPU%d: %02x", 216960283df7SRichard Weinberger smp_processor_id(), v); 21702b398bd9SYouquan Song 217160283df7SRichard Weinberger v &= 0xff; 217260283df7SRichard Weinberger while (v) { 217360283df7SRichard Weinberger if (v & 0x1) 21742b398bd9SYouquan Song apic_printk(APIC_DEBUG, KERN_CONT " : %s", error_interrupt_reason[i]); 21752b398bd9SYouquan Song i++; 217660283df7SRichard Weinberger v >>= 1; 21774b8073e4SPeter Senna Tschudin } 21782b398bd9SYouquan Song 21792b398bd9SYouquan Song apic_printk(APIC_DEBUG, KERN_CONT "\n"); 21802b398bd9SYouquan Song 2181cf910e83SSeiji Aguchi trace_error_apic_exit(ERROR_APIC_VECTOR); 2182cf910e83SSeiji Aguchi exiting_irq(); 2183f62bae50SIngo Molnar } 2184f62bae50SIngo Molnar 2185f62bae50SIngo Molnar /** 2186f62bae50SIngo Molnar * connect_bsp_APIC - attach the APIC to the interrupt system 2187f62bae50SIngo Molnar */ 218805f7e46dSThomas Gleixner static void __init connect_bsp_APIC(void) 2189f62bae50SIngo Molnar { 2190f62bae50SIngo Molnar #ifdef CONFIG_X86_32 2191f62bae50SIngo Molnar if (pic_mode) { 2192f62bae50SIngo Molnar /* 2193f62bae50SIngo Molnar * Do not trust the local APIC being empty at bootup. 2194f62bae50SIngo Molnar */ 2195f62bae50SIngo Molnar clear_local_APIC(); 2196f62bae50SIngo Molnar /* 2197f62bae50SIngo Molnar * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's 2198f62bae50SIngo Molnar * local APIC to INT and NMI lines. 2199f62bae50SIngo Molnar */ 2200f62bae50SIngo Molnar apic_printk(APIC_VERBOSE, "leaving PIC mode, " 2201f62bae50SIngo Molnar "enabling APIC mode.\n"); 2202c0eaa453SCyrill Gorcunov imcr_pic_to_apic(); 2203f62bae50SIngo Molnar } 2204f62bae50SIngo Molnar #endif 2205f62bae50SIngo Molnar } 2206f62bae50SIngo Molnar 2207f62bae50SIngo Molnar /** 2208f62bae50SIngo Molnar * disconnect_bsp_APIC - detach the APIC from the interrupt system 2209f62bae50SIngo Molnar * @virt_wire_setup: indicates, whether virtual wire mode is selected 2210f62bae50SIngo Molnar * 2211f62bae50SIngo Molnar * Virtual wire mode is necessary to deliver legacy interrupts even when the 2212f62bae50SIngo Molnar * APIC is disabled. 2213f62bae50SIngo Molnar */ 2214f62bae50SIngo Molnar void disconnect_bsp_APIC(int virt_wire_setup) 2215f62bae50SIngo Molnar { 2216f62bae50SIngo Molnar unsigned int value; 2217f62bae50SIngo Molnar 2218f62bae50SIngo Molnar #ifdef CONFIG_X86_32 2219f62bae50SIngo Molnar if (pic_mode) { 2220f62bae50SIngo Molnar /* 2221f62bae50SIngo Molnar * Put the board back into PIC mode (has an effect only on 2222f62bae50SIngo Molnar * certain older boards). Note that APIC interrupts, including 2223f62bae50SIngo Molnar * IPIs, won't work beyond this point! The only exception are 2224f62bae50SIngo Molnar * INIT IPIs. 2225f62bae50SIngo Molnar */ 2226f62bae50SIngo Molnar apic_printk(APIC_VERBOSE, "disabling APIC mode, " 2227f62bae50SIngo Molnar "entering PIC mode.\n"); 2228c0eaa453SCyrill Gorcunov imcr_apic_to_pic(); 2229f62bae50SIngo Molnar return; 2230f62bae50SIngo Molnar } 2231f62bae50SIngo Molnar #endif 2232f62bae50SIngo Molnar 2233f62bae50SIngo Molnar /* Go back to Virtual Wire compatibility mode */ 2234f62bae50SIngo Molnar 2235f62bae50SIngo Molnar /* For the spurious interrupt use vector F, and enable it */ 2236f62bae50SIngo Molnar value = apic_read(APIC_SPIV); 2237f62bae50SIngo Molnar value &= ~APIC_VECTOR_MASK; 2238f62bae50SIngo Molnar value |= APIC_SPIV_APIC_ENABLED; 2239f62bae50SIngo Molnar value |= 0xf; 2240f62bae50SIngo Molnar apic_write(APIC_SPIV, value); 2241f62bae50SIngo Molnar 2242f62bae50SIngo Molnar if (!virt_wire_setup) { 2243f62bae50SIngo Molnar /* 2244f62bae50SIngo Molnar * For LVT0 make it edge triggered, active high, 2245f62bae50SIngo Molnar * external and enabled 2246f62bae50SIngo Molnar */ 2247f62bae50SIngo Molnar value = apic_read(APIC_LVT0); 2248f62bae50SIngo Molnar value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING | 2249f62bae50SIngo Molnar APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR | 2250f62bae50SIngo Molnar APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED); 2251f62bae50SIngo Molnar value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING; 2252f62bae50SIngo Molnar value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT); 2253f62bae50SIngo Molnar apic_write(APIC_LVT0, value); 2254f62bae50SIngo Molnar } else { 2255f62bae50SIngo Molnar /* Disable LVT0 */ 2256f62bae50SIngo Molnar apic_write(APIC_LVT0, APIC_LVT_MASKED); 2257f62bae50SIngo Molnar } 2258f62bae50SIngo Molnar 2259f62bae50SIngo Molnar /* 2260f62bae50SIngo Molnar * For LVT1 make it edge triggered, active high, 2261f62bae50SIngo Molnar * nmi and enabled 2262f62bae50SIngo Molnar */ 2263f62bae50SIngo Molnar value = apic_read(APIC_LVT1); 2264f62bae50SIngo Molnar value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING | 2265f62bae50SIngo Molnar APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR | 2266f62bae50SIngo Molnar APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED); 2267f62bae50SIngo Molnar value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING; 2268f62bae50SIngo Molnar value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI); 2269f62bae50SIngo Molnar apic_write(APIC_LVT1, value); 2270f62bae50SIngo Molnar } 2271f62bae50SIngo Molnar 22728f54969dSGu Zheng /* 22738f54969dSGu Zheng * The number of allocated logical CPU IDs. Since logical CPU IDs are allocated 22748f54969dSGu Zheng * contiguously, it equals to current allocated max logical CPU ID plus 1. 227512bf98b9SDou Liyang * All allocated CPU IDs should be in the [0, nr_logical_cpuids) range, 227612bf98b9SDou Liyang * so the maximum of nr_logical_cpuids is nr_cpu_ids. 22778f54969dSGu Zheng * 22788f54969dSGu Zheng * NOTE: Reserve 0 for BSP. 22798f54969dSGu Zheng */ 22808f54969dSGu Zheng static int nr_logical_cpuids = 1; 22818f54969dSGu Zheng 22828f54969dSGu Zheng /* 22838f54969dSGu Zheng * Used to store mapping between logical CPU IDs and APIC IDs. 22848f54969dSGu Zheng */ 22858f54969dSGu Zheng static int cpuid_to_apicid[] = { 22868f54969dSGu Zheng [0 ... NR_CPUS - 1] = -1, 22878f54969dSGu Zheng }; 22888f54969dSGu Zheng 2289d0055f35SVlastimil Babka #ifdef CONFIG_SMP 22906a4d2657SThomas Gleixner /** 22916a4d2657SThomas Gleixner * apic_id_is_primary_thread - Check whether APIC ID belongs to a primary thread 22926a4d2657SThomas Gleixner * @id: APIC ID to check 22936a4d2657SThomas Gleixner */ 22946a4d2657SThomas Gleixner bool apic_id_is_primary_thread(unsigned int apicid) 22956a4d2657SThomas Gleixner { 22966a4d2657SThomas Gleixner u32 mask; 22976a4d2657SThomas Gleixner 22986a4d2657SThomas Gleixner if (smp_num_siblings == 1) 22996a4d2657SThomas Gleixner return true; 23006a4d2657SThomas Gleixner /* Isolate the SMT bit(s) in the APICID and check for 0 */ 23016a4d2657SThomas Gleixner mask = (1U << (fls(smp_num_siblings) - 1)) - 1; 23026a4d2657SThomas Gleixner return !(apicid & mask); 23036a4d2657SThomas Gleixner } 2304d0055f35SVlastimil Babka #endif 23056a4d2657SThomas Gleixner 23068f54969dSGu Zheng /* 23078f54969dSGu Zheng * Should use this API to allocate logical CPU IDs to keep nr_logical_cpuids 23088f54969dSGu Zheng * and cpuid_to_apicid[] synchronized. 23098f54969dSGu Zheng */ 23108f54969dSGu Zheng static int allocate_logical_cpuid(int apicid) 23118f54969dSGu Zheng { 23128f54969dSGu Zheng int i; 23138f54969dSGu Zheng 23148f54969dSGu Zheng /* 23158f54969dSGu Zheng * cpuid <-> apicid mapping is persistent, so when a cpu is up, 23168f54969dSGu Zheng * check if the kernel has allocated a cpuid for it. 23178f54969dSGu Zheng */ 23188f54969dSGu Zheng for (i = 0; i < nr_logical_cpuids; i++) { 23198f54969dSGu Zheng if (cpuid_to_apicid[i] == apicid) 23208f54969dSGu Zheng return i; 23218f54969dSGu Zheng } 23228f54969dSGu Zheng 23238f54969dSGu Zheng /* Allocate a new cpuid. */ 23248f54969dSGu Zheng if (nr_logical_cpuids >= nr_cpu_ids) { 23259b130ad5SAlexey Dobriyan WARN_ONCE(1, "APIC: NR_CPUS/possible_cpus limit of %u reached. " 23268f54969dSGu Zheng "Processor %d/0x%x and the rest are ignored.\n", 2327bb3f0a52SDou Liyang nr_cpu_ids, nr_logical_cpuids, apicid); 2328bb3f0a52SDou Liyang return -EINVAL; 23298f54969dSGu Zheng } 23308f54969dSGu Zheng 23318f54969dSGu Zheng cpuid_to_apicid[nr_logical_cpuids] = apicid; 23328f54969dSGu Zheng return nr_logical_cpuids++; 23338f54969dSGu Zheng } 23348f54969dSGu Zheng 23352b85b3d2SDou Liyang int generic_processor_info(int apicid, int version) 2336f62bae50SIngo Molnar { 233714cb6dcfSVivek Goyal int cpu, max = nr_cpu_ids; 233814cb6dcfSVivek Goyal bool boot_cpu_detected = physid_isset(boot_cpu_physical_apicid, 233914cb6dcfSVivek Goyal phys_cpu_present_map); 234014cb6dcfSVivek Goyal 234114cb6dcfSVivek Goyal /* 2342151e0c7dSHATAYAMA Daisuke * boot_cpu_physical_apicid is designed to have the apicid 2343151e0c7dSHATAYAMA Daisuke * returned by read_apic_id(), i.e, the apicid of the 2344151e0c7dSHATAYAMA Daisuke * currently booting-up processor. However, on some platforms, 23455b4d1dbcSH. Peter Anvin * it is temporarily modified by the apicid reported as BSP 2346151e0c7dSHATAYAMA Daisuke * through MP table. Concretely: 2347151e0c7dSHATAYAMA Daisuke * 2348151e0c7dSHATAYAMA Daisuke * - arch/x86/kernel/mpparse.c: MP_processor_info() 2349151e0c7dSHATAYAMA Daisuke * - arch/x86/mm/amdtopology.c: amd_numa_init() 2350151e0c7dSHATAYAMA Daisuke * 2351151e0c7dSHATAYAMA Daisuke * This function is executed with the modified 2352151e0c7dSHATAYAMA Daisuke * boot_cpu_physical_apicid. So, disabled_cpu_apicid kernel 2353151e0c7dSHATAYAMA Daisuke * parameter doesn't work to disable APs on kdump 2nd kernel. 2354151e0c7dSHATAYAMA Daisuke * 2355151e0c7dSHATAYAMA Daisuke * Since fixing handling of boot_cpu_physical_apicid requires 2356151e0c7dSHATAYAMA Daisuke * another discussion and tests on each platform, we leave it 2357151e0c7dSHATAYAMA Daisuke * for now and here we use read_apic_id() directly in this 2358e2329b42SDou Liyang * function, generic_processor_info(). 2359151e0c7dSHATAYAMA Daisuke */ 2360151e0c7dSHATAYAMA Daisuke if (disabled_cpu_apicid != BAD_APICID && 2361151e0c7dSHATAYAMA Daisuke disabled_cpu_apicid != read_apic_id() && 2362151e0c7dSHATAYAMA Daisuke disabled_cpu_apicid == apicid) { 2363151e0c7dSHATAYAMA Daisuke int thiscpu = num_processors + disabled_cpus; 2364151e0c7dSHATAYAMA Daisuke 23655b4d1dbcSH. Peter Anvin pr_warning("APIC: Disabling requested cpu." 2366151e0c7dSHATAYAMA Daisuke " Processor %d/0x%x ignored.\n", 2367151e0c7dSHATAYAMA Daisuke thiscpu, apicid); 2368151e0c7dSHATAYAMA Daisuke 2369151e0c7dSHATAYAMA Daisuke disabled_cpus++; 2370151e0c7dSHATAYAMA Daisuke return -ENODEV; 2371151e0c7dSHATAYAMA Daisuke } 2372151e0c7dSHATAYAMA Daisuke 2373151e0c7dSHATAYAMA Daisuke /* 237414cb6dcfSVivek Goyal * If boot cpu has not been detected yet, then only allow upto 237514cb6dcfSVivek Goyal * nr_cpu_ids - 1 processors and keep one slot free for boot cpu 237614cb6dcfSVivek Goyal */ 237714cb6dcfSVivek Goyal if (!boot_cpu_detected && num_processors >= nr_cpu_ids - 1 && 237814cb6dcfSVivek Goyal apicid != boot_cpu_physical_apicid) { 237914cb6dcfSVivek Goyal int thiscpu = max + disabled_cpus - 1; 238014cb6dcfSVivek Goyal 238114cb6dcfSVivek Goyal pr_warning( 23823c8fad91SClaudio Fontana "APIC: NR_CPUS/possible_cpus limit of %i almost" 238314cb6dcfSVivek Goyal " reached. Keeping one slot for boot cpu." 238414cb6dcfSVivek Goyal " Processor %d/0x%x ignored.\n", max, thiscpu, apicid); 238514cb6dcfSVivek Goyal 238614cb6dcfSVivek Goyal disabled_cpus++; 23877e1f85f9SJiang Liu return -ENODEV; 238814cb6dcfSVivek Goyal } 2389f62bae50SIngo Molnar 2390f62bae50SIngo Molnar if (num_processors >= nr_cpu_ids) { 2391f62bae50SIngo Molnar int thiscpu = max + disabled_cpus; 2392f62bae50SIngo Molnar 2393df610d67SThomas Gleixner pr_warning("APIC: NR_CPUS/possible_cpus limit of %i " 2394df610d67SThomas Gleixner "reached. Processor %d/0x%x ignored.\n", 2395df610d67SThomas Gleixner max, thiscpu, apicid); 2396f62bae50SIngo Molnar 2397f62bae50SIngo Molnar disabled_cpus++; 23987e1f85f9SJiang Liu return -EINVAL; 2399f62bae50SIngo Molnar } 2400f62bae50SIngo Molnar 2401f62bae50SIngo Molnar if (apicid == boot_cpu_physical_apicid) { 2402f62bae50SIngo Molnar /* 2403f62bae50SIngo Molnar * x86_bios_cpu_apicid is required to have processors listed 2404f62bae50SIngo Molnar * in same order as logical cpu numbers. Hence the first 2405f62bae50SIngo Molnar * entry is BSP, and so on. 2406e5fea868SYinghai Lu * boot_cpu_init() already hold bit 0 in cpu_present_mask 2407e5fea868SYinghai Lu * for BSP. 2408f62bae50SIngo Molnar */ 2409f62bae50SIngo Molnar cpu = 0; 24108f54969dSGu Zheng 24118f54969dSGu Zheng /* Logical cpuid 0 is reserved for BSP. */ 24128f54969dSGu Zheng cpuid_to_apicid[0] = apicid; 24138f54969dSGu Zheng } else { 24148f54969dSGu Zheng cpu = allocate_logical_cpuid(apicid); 24158f54969dSGu Zheng if (cpu < 0) { 24168f54969dSGu Zheng disabled_cpus++; 24178f54969dSGu Zheng return -EINVAL; 24188f54969dSGu Zheng } 24198f54969dSGu Zheng } 2420e5fea868SYinghai Lu 2421e5fea868SYinghai Lu /* 2422e5fea868SYinghai Lu * Validate version 2423e5fea868SYinghai Lu */ 2424e5fea868SYinghai Lu if (version == 0x0) { 2425e5fea868SYinghai Lu pr_warning("BIOS bug: APIC version is 0 for CPU %d/0x%x, fixing up to 0x10\n", 2426e5fea868SYinghai Lu cpu, apicid); 2427e5fea868SYinghai Lu version = 0x10; 2428f62bae50SIngo Molnar } 2429e5fea868SYinghai Lu 2430cff9ab2bSDenys Vlasenko if (version != boot_cpu_apic_version) { 2431e5fea868SYinghai Lu pr_warning("BIOS bug: APIC version mismatch, boot CPU: %x, CPU %d: version %x\n", 2432cff9ab2bSDenys Vlasenko boot_cpu_apic_version, cpu, version); 2433e5fea868SYinghai Lu } 2434e5fea868SYinghai Lu 2435f62bae50SIngo Molnar if (apicid > max_physical_apicid) 2436f62bae50SIngo Molnar max_physical_apicid = apicid; 2437f62bae50SIngo Molnar 2438f62bae50SIngo Molnar #if defined(CONFIG_SMP) || defined(CONFIG_X86_64) 2439f62bae50SIngo Molnar early_per_cpu(x86_cpu_to_apicid, cpu) = apicid; 2440f62bae50SIngo Molnar early_per_cpu(x86_bios_cpu_apicid, cpu) = apicid; 2441f62bae50SIngo Molnar #endif 2442acb8bc09STejun Heo #ifdef CONFIG_X86_32 2443acb8bc09STejun Heo early_per_cpu(x86_cpu_to_logical_apicid, cpu) = 2444acb8bc09STejun Heo apic->x86_32_early_logical_apicid(cpu); 2445acb8bc09STejun Heo #endif 2446f62bae50SIngo Molnar set_cpu_possible(cpu, true); 2447f7c28833SGu Zheng physid_set(apicid, phys_cpu_present_map); 2448f62bae50SIngo Molnar set_cpu_present(cpu, true); 24492b85b3d2SDou Liyang num_processors++; 24507e1f85f9SJiang Liu 24517e1f85f9SJiang Liu return cpu; 2452f62bae50SIngo Molnar } 2453f62bae50SIngo Molnar 2454f62bae50SIngo Molnar int hard_smp_processor_id(void) 2455f62bae50SIngo Molnar { 2456f62bae50SIngo Molnar return read_apic_id(); 2457f62bae50SIngo Molnar } 2458f62bae50SIngo Molnar 2459f62bae50SIngo Molnar /* 24601551df64SMichael S. Tsirkin * Override the generic EOI implementation with an optimized version. 24611551df64SMichael S. Tsirkin * Only called during early boot when only one CPU is active and with 24621551df64SMichael S. Tsirkin * interrupts disabled, so we know this does not race with actual APIC driver 24631551df64SMichael S. Tsirkin * use. 24641551df64SMichael S. Tsirkin */ 24651551df64SMichael S. Tsirkin void __init apic_set_eoi_write(void (*eoi_write)(u32 reg, u32 v)) 24661551df64SMichael S. Tsirkin { 24671551df64SMichael S. Tsirkin struct apic **drv; 24681551df64SMichael S. Tsirkin 24691551df64SMichael S. Tsirkin for (drv = __apicdrivers; drv < __apicdrivers_end; drv++) { 24701551df64SMichael S. Tsirkin /* Should happen once for each apic */ 24711551df64SMichael S. Tsirkin WARN_ON((*drv)->eoi_write == eoi_write); 24728ca22552SWanpeng Li (*drv)->native_eoi_write = (*drv)->eoi_write; 24731551df64SMichael S. Tsirkin (*drv)->eoi_write = eoi_write; 24741551df64SMichael S. Tsirkin } 24751551df64SMichael S. Tsirkin } 24761551df64SMichael S. Tsirkin 2477374aab33SThomas Gleixner static void __init apic_bsp_up_setup(void) 247805f7e46dSThomas Gleixner { 2479374aab33SThomas Gleixner #ifdef CONFIG_X86_64 24805d64d209SDou Liyang apic_write(APIC_ID, apic->set_apic_id(boot_cpu_physical_apicid)); 2481374aab33SThomas Gleixner #else 248205f7e46dSThomas Gleixner /* 2483374aab33SThomas Gleixner * Hack: In case of kdump, after a crash, kernel might be booting 2484374aab33SThomas Gleixner * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid 2485374aab33SThomas Gleixner * might be zero if read from MP tables. Get it from LAPIC. 248605f7e46dSThomas Gleixner */ 2487374aab33SThomas Gleixner # ifdef CONFIG_CRASH_DUMP 2488374aab33SThomas Gleixner boot_cpu_physical_apicid = read_apic_id(); 2489374aab33SThomas Gleixner # endif 2490374aab33SThomas Gleixner #endif 2491374aab33SThomas Gleixner physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map); 249205f7e46dSThomas Gleixner } 249305f7e46dSThomas Gleixner 249405f7e46dSThomas Gleixner /** 249505f7e46dSThomas Gleixner * apic_bsp_setup - Setup function for local apic and io-apic 2496374aab33SThomas Gleixner * @upmode: Force UP mode (for APIC_init_uniprocessor) 249705f7e46dSThomas Gleixner */ 2498748b170cSThomas Gleixner static void __init apic_bsp_setup(bool upmode) 249905f7e46dSThomas Gleixner { 250005f7e46dSThomas Gleixner connect_bsp_APIC(); 2501374aab33SThomas Gleixner if (upmode) 2502374aab33SThomas Gleixner apic_bsp_up_setup(); 250305f7e46dSThomas Gleixner setup_local_APIC(); 250405f7e46dSThomas Gleixner 250505f7e46dSThomas Gleixner enable_IO_APIC(); 2506374aab33SThomas Gleixner end_local_APIC_setup(); 2507374aab33SThomas Gleixner irq_remap_enable_fault_handling(); 250805f7e46dSThomas Gleixner setup_IO_APIC(); 2509e714a91fSThomas Gleixner } 2510e714a91fSThomas Gleixner 251130b8b006SThomas Gleixner #ifdef CONFIG_UP_LATE_INIT 251230b8b006SThomas Gleixner void __init up_late_init(void) 251330b8b006SThomas Gleixner { 25140c759131SDou Liyang if (apic_intr_mode == APIC_PIC) 25150c759131SDou Liyang return; 25160c759131SDou Liyang 25170c759131SDou Liyang /* Setup local timer */ 25180c759131SDou Liyang x86_init.timers.setup_percpu_clockev(); 251930b8b006SThomas Gleixner } 252030b8b006SThomas Gleixner #endif 252130b8b006SThomas Gleixner 2522e714a91fSThomas Gleixner /* 2523f62bae50SIngo Molnar * Power management 2524f62bae50SIngo Molnar */ 2525f62bae50SIngo Molnar #ifdef CONFIG_PM 2526f62bae50SIngo Molnar 2527f62bae50SIngo Molnar static struct { 2528f62bae50SIngo Molnar /* 2529f62bae50SIngo Molnar * 'active' is true if the local APIC was enabled by us and 2530f62bae50SIngo Molnar * not the BIOS; this signifies that we are also responsible 2531f62bae50SIngo Molnar * for disabling it before entering apm/acpi suspend 2532f62bae50SIngo Molnar */ 2533f62bae50SIngo Molnar int active; 2534f62bae50SIngo Molnar /* r/w apic fields */ 2535f62bae50SIngo Molnar unsigned int apic_id; 2536f62bae50SIngo Molnar unsigned int apic_taskpri; 2537f62bae50SIngo Molnar unsigned int apic_ldr; 2538f62bae50SIngo Molnar unsigned int apic_dfr; 2539f62bae50SIngo Molnar unsigned int apic_spiv; 2540f62bae50SIngo Molnar unsigned int apic_lvtt; 2541f62bae50SIngo Molnar unsigned int apic_lvtpc; 2542f62bae50SIngo Molnar unsigned int apic_lvt0; 2543f62bae50SIngo Molnar unsigned int apic_lvt1; 2544f62bae50SIngo Molnar unsigned int apic_lvterr; 2545f62bae50SIngo Molnar unsigned int apic_tmict; 2546f62bae50SIngo Molnar unsigned int apic_tdcr; 2547f62bae50SIngo Molnar unsigned int apic_thmr; 254842baa258SJuergen Gross unsigned int apic_cmci; 2549f62bae50SIngo Molnar } apic_pm_state; 2550f62bae50SIngo Molnar 2551f3c6ea1bSRafael J. Wysocki static int lapic_suspend(void) 2552f62bae50SIngo Molnar { 2553f62bae50SIngo Molnar unsigned long flags; 2554f62bae50SIngo Molnar int maxlvt; 2555f62bae50SIngo Molnar 2556f62bae50SIngo Molnar if (!apic_pm_state.active) 2557f62bae50SIngo Molnar return 0; 2558f62bae50SIngo Molnar 2559f62bae50SIngo Molnar maxlvt = lapic_get_maxlvt(); 2560f62bae50SIngo Molnar 2561f62bae50SIngo Molnar apic_pm_state.apic_id = apic_read(APIC_ID); 2562f62bae50SIngo Molnar apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI); 2563f62bae50SIngo Molnar apic_pm_state.apic_ldr = apic_read(APIC_LDR); 2564f62bae50SIngo Molnar apic_pm_state.apic_dfr = apic_read(APIC_DFR); 2565f62bae50SIngo Molnar apic_pm_state.apic_spiv = apic_read(APIC_SPIV); 2566f62bae50SIngo Molnar apic_pm_state.apic_lvtt = apic_read(APIC_LVTT); 2567f62bae50SIngo Molnar if (maxlvt >= 4) 2568f62bae50SIngo Molnar apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC); 2569f62bae50SIngo Molnar apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0); 2570f62bae50SIngo Molnar apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1); 2571f62bae50SIngo Molnar apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR); 2572f62bae50SIngo Molnar apic_pm_state.apic_tmict = apic_read(APIC_TMICT); 2573f62bae50SIngo Molnar apic_pm_state.apic_tdcr = apic_read(APIC_TDCR); 25744efc0670SAndi Kleen #ifdef CONFIG_X86_THERMAL_VECTOR 2575f62bae50SIngo Molnar if (maxlvt >= 5) 2576f62bae50SIngo Molnar apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR); 2577f62bae50SIngo Molnar #endif 257842baa258SJuergen Gross #ifdef CONFIG_X86_MCE_INTEL 257942baa258SJuergen Gross if (maxlvt >= 6) 258042baa258SJuergen Gross apic_pm_state.apic_cmci = apic_read(APIC_LVTCMCI); 258142baa258SJuergen Gross #endif 2582f62bae50SIngo Molnar 2583f62bae50SIngo Molnar local_irq_save(flags); 2584f62bae50SIngo Molnar disable_local_APIC(); 2585fc1edaf9SSuresh Siddha 258695a02e97SSuresh Siddha irq_remapping_disable(); 2587fc1edaf9SSuresh Siddha 2588f62bae50SIngo Molnar local_irq_restore(flags); 2589f62bae50SIngo Molnar return 0; 2590f62bae50SIngo Molnar } 2591f62bae50SIngo Molnar 2592f3c6ea1bSRafael J. Wysocki static void lapic_resume(void) 2593f62bae50SIngo Molnar { 2594f62bae50SIngo Molnar unsigned int l, h; 2595f62bae50SIngo Molnar unsigned long flags; 259631dce14aSSuresh Siddha int maxlvt; 2597b24696bcSFenghua Yu 2598f62bae50SIngo Molnar if (!apic_pm_state.active) 2599f3c6ea1bSRafael J. Wysocki return; 2600f62bae50SIngo Molnar 2601b24696bcSFenghua Yu local_irq_save(flags); 2602336224baSJoerg Roedel 260331dce14aSSuresh Siddha /* 260431dce14aSSuresh Siddha * IO-APIC and PIC have their own resume routines. 260531dce14aSSuresh Siddha * We just mask them here to make sure the interrupt 260631dce14aSSuresh Siddha * subsystem is completely quiet while we enable x2apic 260731dce14aSSuresh Siddha * and interrupt-remapping. 260831dce14aSSuresh Siddha */ 260931dce14aSSuresh Siddha mask_ioapic_entries(); 2610b81bb373SJacob Pan legacy_pic->mask_all(); 2611f62bae50SIngo Molnar 2612659006bfSThomas Gleixner if (x2apic_mode) { 2613659006bfSThomas Gleixner __x2apic_enable(); 2614659006bfSThomas Gleixner } else { 2615f62bae50SIngo Molnar /* 2616f62bae50SIngo Molnar * Make sure the APICBASE points to the right address 2617f62bae50SIngo Molnar * 2618f62bae50SIngo Molnar * FIXME! This will be wrong if we ever support suspend on 2619f62bae50SIngo Molnar * SMP! We'll need to do this as part of the CPU restore! 2620f62bae50SIngo Molnar */ 2621cbf2829bSBryan O'Donoghue if (boot_cpu_data.x86 >= 6) { 2622f62bae50SIngo Molnar rdmsr(MSR_IA32_APICBASE, l, h); 2623f62bae50SIngo Molnar l &= ~MSR_IA32_APICBASE_BASE; 2624f62bae50SIngo Molnar l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr; 2625f62bae50SIngo Molnar wrmsr(MSR_IA32_APICBASE, l, h); 2626f62bae50SIngo Molnar } 2627cbf2829bSBryan O'Donoghue } 2628f62bae50SIngo Molnar 2629b24696bcSFenghua Yu maxlvt = lapic_get_maxlvt(); 2630f62bae50SIngo Molnar apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED); 2631f62bae50SIngo Molnar apic_write(APIC_ID, apic_pm_state.apic_id); 2632f62bae50SIngo Molnar apic_write(APIC_DFR, apic_pm_state.apic_dfr); 2633f62bae50SIngo Molnar apic_write(APIC_LDR, apic_pm_state.apic_ldr); 2634f62bae50SIngo Molnar apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri); 2635f62bae50SIngo Molnar apic_write(APIC_SPIV, apic_pm_state.apic_spiv); 2636f62bae50SIngo Molnar apic_write(APIC_LVT0, apic_pm_state.apic_lvt0); 2637f62bae50SIngo Molnar apic_write(APIC_LVT1, apic_pm_state.apic_lvt1); 263842baa258SJuergen Gross #ifdef CONFIG_X86_THERMAL_VECTOR 2639f62bae50SIngo Molnar if (maxlvt >= 5) 2640f62bae50SIngo Molnar apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr); 2641f62bae50SIngo Molnar #endif 264242baa258SJuergen Gross #ifdef CONFIG_X86_MCE_INTEL 264342baa258SJuergen Gross if (maxlvt >= 6) 264442baa258SJuergen Gross apic_write(APIC_LVTCMCI, apic_pm_state.apic_cmci); 264542baa258SJuergen Gross #endif 2646f62bae50SIngo Molnar if (maxlvt >= 4) 2647f62bae50SIngo Molnar apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc); 2648f62bae50SIngo Molnar apic_write(APIC_LVTT, apic_pm_state.apic_lvtt); 2649f62bae50SIngo Molnar apic_write(APIC_TDCR, apic_pm_state.apic_tdcr); 2650f62bae50SIngo Molnar apic_write(APIC_TMICT, apic_pm_state.apic_tmict); 2651f62bae50SIngo Molnar apic_write(APIC_ESR, 0); 2652f62bae50SIngo Molnar apic_read(APIC_ESR); 2653f62bae50SIngo Molnar apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr); 2654f62bae50SIngo Molnar apic_write(APIC_ESR, 0); 2655f62bae50SIngo Molnar apic_read(APIC_ESR); 2656f62bae50SIngo Molnar 265795a02e97SSuresh Siddha irq_remapping_reenable(x2apic_mode); 265831dce14aSSuresh Siddha 2659f62bae50SIngo Molnar local_irq_restore(flags); 2660f62bae50SIngo Molnar } 2661f62bae50SIngo Molnar 2662f62bae50SIngo Molnar /* 2663f62bae50SIngo Molnar * This device has no shutdown method - fully functioning local APICs 2664f62bae50SIngo Molnar * are needed on every CPU up until machine_halt/restart/poweroff. 2665f62bae50SIngo Molnar */ 2666f62bae50SIngo Molnar 2667f3c6ea1bSRafael J. Wysocki static struct syscore_ops lapic_syscore_ops = { 2668f62bae50SIngo Molnar .resume = lapic_resume, 2669f62bae50SIngo Molnar .suspend = lapic_suspend, 2670f62bae50SIngo Molnar }; 2671f62bae50SIngo Molnar 2672148f9bb8SPaul Gortmaker static void apic_pm_activate(void) 2673f62bae50SIngo Molnar { 2674f62bae50SIngo Molnar apic_pm_state.active = 1; 2675f62bae50SIngo Molnar } 2676f62bae50SIngo Molnar 2677f62bae50SIngo Molnar static int __init init_lapic_sysfs(void) 2678f62bae50SIngo Molnar { 2679f62bae50SIngo Molnar /* XXX: remove suspend/resume procs if !apic_pm_state.active? */ 268093984fbdSBorislav Petkov if (boot_cpu_has(X86_FEATURE_APIC)) 2681f3c6ea1bSRafael J. Wysocki register_syscore_ops(&lapic_syscore_ops); 2682f62bae50SIngo Molnar 2683f3c6ea1bSRafael J. Wysocki return 0; 2684f62bae50SIngo Molnar } 2685b24696bcSFenghua Yu 2686b24696bcSFenghua Yu /* local apic needs to resume before other devices access its registers. */ 2687b24696bcSFenghua Yu core_initcall(init_lapic_sysfs); 2688f62bae50SIngo Molnar 2689f62bae50SIngo Molnar #else /* CONFIG_PM */ 2690f62bae50SIngo Molnar 2691f62bae50SIngo Molnar static void apic_pm_activate(void) { } 2692f62bae50SIngo Molnar 2693f62bae50SIngo Molnar #endif /* CONFIG_PM */ 2694f62bae50SIngo Molnar 2695f62bae50SIngo Molnar #ifdef CONFIG_X86_64 2696e0e42142SYinghai Lu 2697148f9bb8SPaul Gortmaker static int multi_checked; 2698148f9bb8SPaul Gortmaker static int multi; 2699e0e42142SYinghai Lu 2700148f9bb8SPaul Gortmaker static int set_multi(const struct dmi_system_id *d) 2701e0e42142SYinghai Lu { 2702e0e42142SYinghai Lu if (multi) 2703e0e42142SYinghai Lu return 0; 27046f0aced6SCyrill Gorcunov pr_info("APIC: %s detected, Multi Chassis\n", d->ident); 2705e0e42142SYinghai Lu multi = 1; 2706e0e42142SYinghai Lu return 0; 2707e0e42142SYinghai Lu } 2708e0e42142SYinghai Lu 2709148f9bb8SPaul Gortmaker static const struct dmi_system_id multi_dmi_table[] = { 2710e0e42142SYinghai Lu { 2711e0e42142SYinghai Lu .callback = set_multi, 2712e0e42142SYinghai Lu .ident = "IBM System Summit2", 2713e0e42142SYinghai Lu .matches = { 2714e0e42142SYinghai Lu DMI_MATCH(DMI_SYS_VENDOR, "IBM"), 2715e0e42142SYinghai Lu DMI_MATCH(DMI_PRODUCT_NAME, "Summit2"), 2716e0e42142SYinghai Lu }, 2717e0e42142SYinghai Lu }, 2718e0e42142SYinghai Lu {} 2719e0e42142SYinghai Lu }; 2720e0e42142SYinghai Lu 2721148f9bb8SPaul Gortmaker static void dmi_check_multi(void) 2722e0e42142SYinghai Lu { 2723e0e42142SYinghai Lu if (multi_checked) 2724e0e42142SYinghai Lu return; 2725e0e42142SYinghai Lu 2726e0e42142SYinghai Lu dmi_check_system(multi_dmi_table); 2727e0e42142SYinghai Lu multi_checked = 1; 2728e0e42142SYinghai Lu } 2729f62bae50SIngo Molnar 2730f62bae50SIngo Molnar /* 2731e0e42142SYinghai Lu * apic_is_clustered_box() -- Check if we can expect good TSC 2732e0e42142SYinghai Lu * 2733e0e42142SYinghai Lu * Thus far, the major user of this is IBM's Summit2 series: 2734e0e42142SYinghai Lu * Clustered boxes may have unsynced TSC problems if they are 2735e0e42142SYinghai Lu * multi-chassis. 2736e0e42142SYinghai Lu * Use DMI to check them 2737f62bae50SIngo Molnar */ 2738148f9bb8SPaul Gortmaker int apic_is_clustered_box(void) 2739e0e42142SYinghai Lu { 2740e0e42142SYinghai Lu dmi_check_multi(); 2741411cf9eeSOren Twaig return multi; 2742f62bae50SIngo Molnar } 2743f62bae50SIngo Molnar #endif 2744f62bae50SIngo Molnar 2745f62bae50SIngo Molnar /* 2746f62bae50SIngo Molnar * APIC command line parameters 2747f62bae50SIngo Molnar */ 2748f62bae50SIngo Molnar static int __init setup_disableapic(char *arg) 2749f62bae50SIngo Molnar { 2750f62bae50SIngo Molnar disable_apic = 1; 2751f62bae50SIngo Molnar setup_clear_cpu_cap(X86_FEATURE_APIC); 2752f62bae50SIngo Molnar return 0; 2753f62bae50SIngo Molnar } 2754f62bae50SIngo Molnar early_param("disableapic", setup_disableapic); 2755f62bae50SIngo Molnar 2756f62bae50SIngo Molnar /* same as disableapic, for compatibility */ 2757f62bae50SIngo Molnar static int __init setup_nolapic(char *arg) 2758f62bae50SIngo Molnar { 2759f62bae50SIngo Molnar return setup_disableapic(arg); 2760f62bae50SIngo Molnar } 2761f62bae50SIngo Molnar early_param("nolapic", setup_nolapic); 2762f62bae50SIngo Molnar 2763f62bae50SIngo Molnar static int __init parse_lapic_timer_c2_ok(char *arg) 2764f62bae50SIngo Molnar { 2765f62bae50SIngo Molnar local_apic_timer_c2_ok = 1; 2766f62bae50SIngo Molnar return 0; 2767f62bae50SIngo Molnar } 2768f62bae50SIngo Molnar early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok); 2769f62bae50SIngo Molnar 2770f62bae50SIngo Molnar static int __init parse_disable_apic_timer(char *arg) 2771f62bae50SIngo Molnar { 2772f62bae50SIngo Molnar disable_apic_timer = 1; 2773f62bae50SIngo Molnar return 0; 2774f62bae50SIngo Molnar } 2775f62bae50SIngo Molnar early_param("noapictimer", parse_disable_apic_timer); 2776f62bae50SIngo Molnar 2777f62bae50SIngo Molnar static int __init parse_nolapic_timer(char *arg) 2778f62bae50SIngo Molnar { 2779f62bae50SIngo Molnar disable_apic_timer = 1; 2780f62bae50SIngo Molnar return 0; 2781f62bae50SIngo Molnar } 2782f62bae50SIngo Molnar early_param("nolapic_timer", parse_nolapic_timer); 2783f62bae50SIngo Molnar 2784f62bae50SIngo Molnar static int __init apic_set_verbosity(char *arg) 2785f62bae50SIngo Molnar { 2786f62bae50SIngo Molnar if (!arg) { 2787f62bae50SIngo Molnar #ifdef CONFIG_X86_64 2788f62bae50SIngo Molnar skip_ioapic_setup = 0; 2789f62bae50SIngo Molnar return 0; 2790f62bae50SIngo Molnar #endif 2791f62bae50SIngo Molnar return -EINVAL; 2792f62bae50SIngo Molnar } 2793f62bae50SIngo Molnar 2794f62bae50SIngo Molnar if (strcmp("debug", arg) == 0) 2795f62bae50SIngo Molnar apic_verbosity = APIC_DEBUG; 2796f62bae50SIngo Molnar else if (strcmp("verbose", arg) == 0) 2797f62bae50SIngo Molnar apic_verbosity = APIC_VERBOSE; 27984fcab669SDou Liyang #ifdef CONFIG_X86_64 2799f62bae50SIngo Molnar else { 2800f62bae50SIngo Molnar pr_warning("APIC Verbosity level %s not recognised" 2801f62bae50SIngo Molnar " use apic=verbose or apic=debug\n", arg); 2802f62bae50SIngo Molnar return -EINVAL; 2803f62bae50SIngo Molnar } 28044fcab669SDou Liyang #endif 2805f62bae50SIngo Molnar 2806f62bae50SIngo Molnar return 0; 2807f62bae50SIngo Molnar } 2808f62bae50SIngo Molnar early_param("apic", apic_set_verbosity); 2809f62bae50SIngo Molnar 2810f62bae50SIngo Molnar static int __init lapic_insert_resource(void) 2811f62bae50SIngo Molnar { 2812f62bae50SIngo Molnar if (!apic_phys) 2813f62bae50SIngo Molnar return -1; 2814f62bae50SIngo Molnar 2815f62bae50SIngo Molnar /* Put local APIC into the resource map. */ 2816f62bae50SIngo Molnar lapic_resource.start = apic_phys; 2817f62bae50SIngo Molnar lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1; 2818f62bae50SIngo Molnar insert_resource(&iomem_resource, &lapic_resource); 2819f62bae50SIngo Molnar 2820f62bae50SIngo Molnar return 0; 2821f62bae50SIngo Molnar } 2822f62bae50SIngo Molnar 2823f62bae50SIngo Molnar /* 28241506c8dcSIngo Molnar * need call insert after e820__reserve_resources() 2825f62bae50SIngo Molnar * that is using request_resource 2826f62bae50SIngo Molnar */ 2827f62bae50SIngo Molnar late_initcall(lapic_insert_resource); 2828151e0c7dSHATAYAMA Daisuke 2829151e0c7dSHATAYAMA Daisuke static int __init apic_set_disabled_cpu_apicid(char *arg) 2830151e0c7dSHATAYAMA Daisuke { 2831151e0c7dSHATAYAMA Daisuke if (!arg || !get_option(&arg, &disabled_cpu_apicid)) 2832151e0c7dSHATAYAMA Daisuke return -EINVAL; 2833151e0c7dSHATAYAMA Daisuke 2834151e0c7dSHATAYAMA Daisuke return 0; 2835151e0c7dSHATAYAMA Daisuke } 2836151e0c7dSHATAYAMA Daisuke early_param("disable_cpu_apicid", apic_set_disabled_cpu_apicid); 2837b7c4948eSHidehiro Kawai 2838b7c4948eSHidehiro Kawai static int __init apic_set_extnmi(char *arg) 2839b7c4948eSHidehiro Kawai { 2840b7c4948eSHidehiro Kawai if (!arg) 2841b7c4948eSHidehiro Kawai return -EINVAL; 2842b7c4948eSHidehiro Kawai 2843b7c4948eSHidehiro Kawai if (!strncmp("all", arg, 3)) 2844b7c4948eSHidehiro Kawai apic_extnmi = APIC_EXTNMI_ALL; 2845b7c4948eSHidehiro Kawai else if (!strncmp("none", arg, 4)) 2846b7c4948eSHidehiro Kawai apic_extnmi = APIC_EXTNMI_NONE; 2847b7c4948eSHidehiro Kawai else if (!strncmp("bsp", arg, 3)) 2848b7c4948eSHidehiro Kawai apic_extnmi = APIC_EXTNMI_BSP; 2849b7c4948eSHidehiro Kawai else { 2850b7c4948eSHidehiro Kawai pr_warn("Unknown external NMI delivery mode `%s' ignored\n", arg); 2851b7c4948eSHidehiro Kawai return -EINVAL; 2852b7c4948eSHidehiro Kawai } 2853b7c4948eSHidehiro Kawai 2854b7c4948eSHidehiro Kawai return 0; 2855b7c4948eSHidehiro Kawai } 2856b7c4948eSHidehiro Kawai early_param("apic_extnmi", apic_set_extnmi); 2857