blob: ff111f05a3145242e7bd89cb1404e00d5825abff [file] [log] [blame]
Suresh Siddha2d9579a2008-07-10 11:16:59 -07001#include <linux/threads.h>
2#include <linux/cpumask.h>
3#include <linux/string.h>
4#include <linux/kernel.h>
5#include <linux/ctype.h>
Yinghai Lu1b9b89e2008-07-21 22:08:21 -07006#include <linux/dmar.h>
7
Suresh Siddha2d9579a2008-07-10 11:16:59 -07008#include <asm/smp.h>
Cyrill Gorcunov79deb8e2011-05-19 16:45:50 -07009#include <asm/x2apic.h>
Suresh Siddha2d9579a2008-07-10 11:16:59 -070010
Suresh Siddhaef1f87a2009-02-21 14:23:21 -080011int x2apic_phys;
Yinghai Lu1b9b89e2008-07-21 22:08:21 -070012
Suresh Siddha1a8880a2011-05-20 17:51:20 -070013static struct apic apic_x2apic_phys;
14
Yinghai Lu1b9b89e2008-07-21 22:08:21 -070015static int set_x2apic_phys_mode(char *arg)
16{
17 x2apic_phys = 1;
18 return 0;
19}
20early_param("x2apic_phys", set_x2apic_phys_mode);
21
Stoney Wangcb214ed2013-02-07 10:53:02 -080022static bool x2apic_fadt_phys(void)
23{
Jan Kiszka781674f2015-05-04 17:58:00 +020024#ifdef CONFIG_ACPI
Stoney Wangcb214ed2013-02-07 10:53:02 -080025 if ((acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID) &&
26 (acpi_gbl_FADT.flags & ACPI_FADT_APIC_PHYSICAL)) {
27 printk(KERN_DEBUG "System requires x2apic physical mode\n");
28 return true;
29 }
Jan Kiszka781674f2015-05-04 17:58:00 +020030#endif
Stoney Wangcb214ed2013-02-07 10:53:02 -080031 return false;
32}
33
Marcin Slusarz3cfba082008-10-12 11:46:23 +020034static int x2apic_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
Yinghai Lu1b9b89e2008-07-21 22:08:21 -070035{
Stoney Wangcb214ed2013-02-07 10:53:02 -080036 return x2apic_enabled() && (x2apic_phys || x2apic_fadt_phys());
Yinghai Lu1b9b89e2008-07-21 22:08:21 -070037}
Suresh Siddha2d9579a2008-07-10 11:16:59 -070038
Thomas Gleixnerf2bffe82015-11-04 22:57:04 +000039static void x2apic_send_IPI(int cpu, int vector)
40{
41 u32 dest = per_cpu(x86_cpu_to_apicid, cpu);
42
43 x2apic_wrmsr_fence();
44 __x2apic_send_IPI_dest(dest, vector, APIC_DEST_PHYSICAL);
45}
46
Ingo Molnardac5f412009-01-28 15:42:24 +010047static void
Suresh Siddhaa27d0b52011-05-19 16:45:47 -070048__x2apic_send_IPI_mask(const struct cpumask *mask, int vector, int apic_dest)
Mike Travise7986732008-12-16 17:33:52 -080049{
Ingo Molnardac5f412009-01-28 15:42:24 +010050 unsigned long query_cpu;
Suresh Siddhaa27d0b52011-05-19 16:45:47 -070051 unsigned long this_cpu;
Ingo Molnardac5f412009-01-28 15:42:24 +010052 unsigned long flags;
Mike Travise7986732008-12-16 17:33:52 -080053
Suresh Siddhace4e2402009-03-17 10:16:54 -080054 x2apic_wrmsr_fence();
55
Mike Travise7986732008-12-16 17:33:52 -080056 local_irq_save(flags);
Suresh Siddhaa27d0b52011-05-19 16:45:47 -070057
58 this_cpu = smp_processor_id();
Mike Travisbcda0162008-12-16 17:33:59 -080059 for_each_cpu(query_cpu, mask) {
Suresh Siddhaa27d0b52011-05-19 16:45:47 -070060 if (apic_dest == APIC_DEST_ALLBUT && this_cpu == query_cpu)
Ingo Molnardac5f412009-01-28 15:42:24 +010061 continue;
62 __x2apic_send_IPI_dest(per_cpu(x86_cpu_to_apicid, query_cpu),
63 vector, APIC_DEST_PHYSICAL);
64 }
Mike Travise7986732008-12-16 17:33:52 -080065 local_irq_restore(flags);
Suresh Siddha2d9579a2008-07-10 11:16:59 -070066}
67
Suresh Siddhaa27d0b52011-05-19 16:45:47 -070068static void x2apic_send_IPI_mask(const struct cpumask *mask, int vector)
69{
70 __x2apic_send_IPI_mask(mask, vector, APIC_DEST_ALLINC);
71}
72
73static void
74 x2apic_send_IPI_mask_allbutself(const struct cpumask *mask, int vector)
75{
76 __x2apic_send_IPI_mask(mask, vector, APIC_DEST_ALLBUT);
77}
78
79static void x2apic_send_IPI_allbutself(int vector)
80{
81 __x2apic_send_IPI_mask(cpu_online_mask, vector, APIC_DEST_ALLBUT);
82}
83
Suresh Siddha2d9579a2008-07-10 11:16:59 -070084static void x2apic_send_IPI_all(int vector)
85{
Suresh Siddhaa27d0b52011-05-19 16:45:47 -070086 __x2apic_send_IPI_mask(cpu_online_mask, vector, APIC_DEST_ALLINC);
Suresh Siddha2d9579a2008-07-10 11:16:59 -070087}
88
Jaswinder Singh Rajput4d08d972008-12-29 22:11:40 +053089static void init_x2apic_ldr(void)
Suresh Siddha2d9579a2008-07-10 11:16:59 -070090{
Suresh Siddha2d9579a2008-07-10 11:16:59 -070091}
92
Suresh Siddha9ebd6802011-05-19 16:45:46 -070093static int x2apic_phys_probe(void)
94{
Stoney Wangcb214ed2013-02-07 10:53:02 -080095 if (x2apic_mode && (x2apic_phys || x2apic_fadt_phys()))
Suresh Siddha9ebd6802011-05-19 16:45:46 -070096 return 1;
97
98 return apic == &apic_x2apic_phys;
99}
100
Kees Cook404f6aa2016-08-08 16:29:06 -0700101static struct apic apic_x2apic_phys __ro_after_init = {
Ingo Molnar05c155c2009-01-28 02:37:01 +0100102
103 .name = "physical x2apic",
Suresh Siddha9ebd6802011-05-19 16:45:46 -0700104 .probe = x2apic_phys_probe,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100105 .acpi_madt_oem_check = x2apic_acpi_madt_oem_check,
Steffen Persvoldb7157ac2012-03-16 20:25:35 +0100106 .apic_id_valid = x2apic_apic_id_valid,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100107 .apic_id_registered = x2apic_apic_id_registered,
108
Ingo Molnarf8987a12009-01-28 04:02:31 +0100109 .irq_delivery_mode = dest_Fixed,
Ingo Molnar0b06e732009-01-28 05:13:04 +0100110 .irq_dest_mode = 0, /* physical */
Ingo Molnar05c155c2009-01-28 02:37:01 +0100111
Alexander Gordeevbf721d32012-06-05 13:23:29 +0200112 .target_cpus = online_target_cpus,
Ingo Molnar08125d32009-01-28 05:08:44 +0100113 .disable_esr = 0,
Ingo Molnarbdb1a9b2009-01-28 05:29:25 +0100114 .dest_logical = 0,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100115 .check_apicid_used = NULL,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100116
Alexander Gordeev9d8e1062012-06-07 15:14:49 +0200117 .vector_allocation_domain = default_vector_allocation_domain,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100118 .init_apic_ldr = init_x2apic_ldr,
119
120 .ioapic_phys_id_map = NULL,
121 .setup_apic_routing = NULL,
Ingo Molnara21769a42009-01-28 06:50:47 +0100122 .cpu_present_to_apicid = default_cpu_present_to_apicid,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100123 .apicid_to_cpu_present = NULL,
Ingo Molnara27a6212009-01-28 12:43:18 +0100124 .check_phys_apicid_present = default_check_phys_apicid_present,
Ingo Molnard4c9a9f2009-01-28 13:31:22 +0100125 .phys_pkg_id = x2apic_phys_pkg_id,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100126
Cyrill Gorcunov79deb8e2011-05-19 16:45:50 -0700127 .get_apic_id = x2apic_get_apic_id,
128 .set_apic_id = x2apic_set_apic_id,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100129
Alexander Gordeev63982682012-06-05 13:23:44 +0200130 .cpu_mask_to_apicid_and = default_cpu_mask_to_apicid_and,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100131
Thomas Gleixnerf2bffe82015-11-04 22:57:04 +0000132 .send_IPI = x2apic_send_IPI,
Ingo Molnar05c155c2009-01-28 02:37:01 +0100133 .send_IPI_mask = x2apic_send_IPI_mask,
134 .send_IPI_mask_allbutself = x2apic_send_IPI_mask_allbutself,
135 .send_IPI_allbutself = x2apic_send_IPI_allbutself,
136 .send_IPI_all = x2apic_send_IPI_all,
137 .send_IPI_self = x2apic_send_IPI_self,
138
Ingo Molnar05c155c2009-01-28 02:37:01 +0100139 .inquire_remote_apic = NULL,
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800140
141 .read = native_apic_msr_read,
142 .write = native_apic_msr_write,
Michael S. Tsirkin0ab711a2012-05-16 19:03:58 +0300143 .eoi_write = native_apic_msr_eoi_write,
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800144 .icr_read = native_x2apic_icr_read,
145 .icr_write = native_x2apic_icr_write,
146 .wait_icr_idle = native_x2apic_wait_icr_idle,
147 .safe_wait_icr_idle = native_safe_x2apic_wait_icr_idle,
Suresh Siddha2d9579a2008-07-10 11:16:59 -0700148};
Suresh Siddha107e0e02011-05-20 17:51:17 -0700149
150apic_driver(apic_x2apic_phys);