x86/apic: Get rid of apic:: Dest_logical
authorThomas Gleixner <tglx@linutronix.de>
Sat, 24 Oct 2020 21:35:07 +0000 (22:35 +0100)
committerThomas Gleixner <tglx@linutronix.de>
Wed, 28 Oct 2020 19:26:24 +0000 (20:26 +0100)
struct apic has two members which store information about the destination
mode: dest_logical and irq_dest_mode.

dest_logical contains a mask which was historically used to set the
destination mode in IPI messages. Over time the usage was reduced and the
logical/physical functions were seperated.

There are only a few places which still use 'dest_logical' but they can
use 'irq_dest_mode' instead.

irq_dest_mode is actually a boolean where 0 means physical destination mode
and 1 means logical destination mode. Of course the name does not reflect
the functionality. This will be cleaned up in a subsequent change.

Remove apic::dest_logical and fixup the remaining users.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: David Woodhouse <dwmw@amazon.co.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20201024213535.443185-8-dwmw2@infradead.org
12 files changed:
arch/x86/include/asm/apic.h
arch/x86/kernel/apic/apic.c
arch/x86/kernel/apic/apic_flat_64.c
arch/x86/kernel/apic/apic_noop.c
arch/x86/kernel/apic/apic_numachip.c
arch/x86/kernel/apic/bigsmp_32.c
arch/x86/kernel/apic/probe_32.c
arch/x86/kernel/apic/x2apic_cluster.c
arch/x86/kernel/apic/x2apic_phys.c
arch/x86/kernel/apic/x2apic_uv_x.c
arch/x86/kernel/smpboot.c
arch/x86/xen/apic.c

index 37a08f37a19d69d89a5cd9c8d8fecd50defffa3a..e230ed2d88e29e5d1aa1dac6c3ed9780edd6c3a9 100644 (file)
@@ -306,8 +306,6 @@ struct apic {
        void    (*send_IPI_all)(int vector);
        void    (*send_IPI_self)(int vector);
 
-       /* dest_logical is used by the IPI functions */
-       u32     dest_logical;
        u32     disable_esr;
 
        enum apic_delivery_modes delivery_mode;
index 113f6ca7b82849fd18271f3661b78b479accc2e6..29d28b34cb2fff5f706493b8abf30e0b40b8c2a7 100644 (file)
@@ -1591,7 +1591,7 @@ static void setup_local_APIC(void)
        apic->init_apic_ldr();
 
 #ifdef CONFIG_X86_32
-       if (apic->dest_logical) {
+       if (apic->irq_dest_mode == 1) {
                int logical_apicid, ldr_apicid;
 
                /*
index 6df837fd50815e6752e27a67e1a73effecde659d..bbb1b89fe711efb107361b4a95434731909fb199 100644 (file)
@@ -117,11 +117,9 @@ static struct apic apic_flat __ro_after_init = {
        .irq_dest_mode                  = 1, /* logical */
 
        .disable_esr                    = 0,
-       .dest_logical                   = APIC_DEST_LOGICAL,
-       .check_apicid_used              = NULL,
 
+       .check_apicid_used              = NULL,
        .init_apic_ldr                  = flat_init_apic_ldr,
-
        .ioapic_phys_id_map             = NULL,
        .setup_apic_routing             = NULL,
        .cpu_present_to_apicid          = default_cpu_present_to_apicid,
@@ -210,11 +208,9 @@ static struct apic apic_physflat __ro_after_init = {
        .irq_dest_mode                  = 0, /* physical */
 
        .disable_esr                    = 0,
-       .dest_logical                   = 0,
-       .check_apicid_used              = NULL,
 
+       .check_apicid_used              = NULL,
        .init_apic_ldr                  = physflat_init_apic_ldr,
-
        .ioapic_phys_id_map             = NULL,
        .setup_apic_routing             = NULL,
        .cpu_present_to_apicid          = default_cpu_present_to_apicid,
index 4fc934b1185125f1841b20cbb03c6c74ace6a340..38f167ce5031f33842e4adc9acdbc1f71242d021 100644 (file)
@@ -100,11 +100,9 @@ struct apic apic_noop __ro_after_init = {
        .irq_dest_mode                  = 1,
 
        .disable_esr                    = 0,
-       .dest_logical                   = APIC_DEST_LOGICAL,
-       .check_apicid_used              = default_check_apicid_used,
 
+       .check_apicid_used              = default_check_apicid_used,
        .init_apic_ldr                  = noop_init_apic_ldr,
-
        .ioapic_phys_id_map             = default_ioapic_phys_id_map,
        .setup_apic_routing             = NULL,
 
index db715d082ec916bdf6432839ecef06a4eb51b493..4ebf9fe2c95df5dd4f7e5043c50fabe792ac0815 100644 (file)
@@ -250,11 +250,9 @@ static const struct apic apic_numachip1 __refconst = {
        .irq_dest_mode                  = 0, /* physical */
 
        .disable_esr                    = 0,
-       .dest_logical                   = 0,
-       .check_apicid_used              = NULL,
 
+       .check_apicid_used              = NULL,
        .init_apic_ldr                  = flat_init_apic_ldr,
-
        .ioapic_phys_id_map             = NULL,
        .setup_apic_routing             = NULL,
        .cpu_present_to_apicid          = default_cpu_present_to_apicid,
@@ -299,11 +297,9 @@ static const struct apic apic_numachip2 __refconst = {
        .irq_dest_mode                  = 0, /* physical */
 
        .disable_esr                    = 0,
-       .dest_logical                   = 0,
-       .check_apicid_used              = NULL,
 
+       .check_apicid_used              = NULL,
        .init_apic_ldr                  = flat_init_apic_ldr,
-
        .ioapic_phys_id_map             = NULL,
        .setup_apic_routing             = NULL,
        .cpu_present_to_apicid          = default_cpu_present_to_apicid,
index 7f6461f5d34967cd34dcc48bb789b0ac2a480870..64c375b8c54e410442b111d85b144f2dccf98a0e 100644 (file)
@@ -132,11 +132,9 @@ static struct apic apic_bigsmp __ro_after_init = {
        .irq_dest_mode                  = 0,
 
        .disable_esr                    = 1,
-       .dest_logical                   = 0,
-       .check_apicid_used              = bigsmp_check_apicid_used,
 
+       .check_apicid_used              = bigsmp_check_apicid_used,
        .init_apic_ldr                  = bigsmp_init_apic_ldr,
-
        .ioapic_phys_id_map             = bigsmp_ioapic_phys_id_map,
        .setup_apic_routing             = bigsmp_setup_apic_routing,
        .cpu_present_to_apicid          = bigsmp_cpu_present_to_apicid,
index 77c6e2e04a1f981370d2dcb58d114bd77776a2ca..97652aacf3e183521125da05a6fe805225bb79d6 100644 (file)
@@ -74,11 +74,9 @@ static struct apic apic_default __ro_after_init = {
        .irq_dest_mode                  = 1,
 
        .disable_esr                    = 0,
-       .dest_logical                   = APIC_DEST_LOGICAL,
-       .check_apicid_used              = default_check_apicid_used,
 
+       .check_apicid_used              = default_check_apicid_used,
        .init_apic_ldr                  = default_init_apic_ldr,
-
        .ioapic_phys_id_map             = default_ioapic_phys_id_map,
        .setup_apic_routing             = setup_apic_flat_routing,
        .cpu_present_to_apicid          = default_cpu_present_to_apicid,
index f77e9fb7aac1b2af0ada108835057a8927e1afe8..53390fc9f51edfef5f067640aa9997c87f4b2644 100644 (file)
@@ -188,11 +188,9 @@ static struct apic apic_x2apic_cluster __ro_after_init = {
        .irq_dest_mode                  = 1, /* logical */
 
        .disable_esr                    = 0,
-       .dest_logical                   = APIC_DEST_LOGICAL,
-       .check_apicid_used              = NULL,
 
+       .check_apicid_used              = NULL,
        .init_apic_ldr                  = init_x2apic_ldr,
-
        .ioapic_phys_id_map             = NULL,
        .setup_apic_routing             = NULL,
        .cpu_present_to_apicid          = default_cpu_present_to_apicid,
index 437e8439db67456defdef8952bf72a037f12117a..ee0c4d08092c26c4b7f7df70644371773f368fac 100644 (file)
@@ -161,11 +161,9 @@ static struct apic apic_x2apic_phys __ro_after_init = {
        .irq_dest_mode                  = 0, /* physical */
 
        .disable_esr                    = 0,
-       .dest_logical                   = 0,
-       .check_apicid_used              = NULL,
 
+       .check_apicid_used              = NULL,
        .init_apic_ldr                  = init_x2apic_ldr,
-
        .ioapic_phys_id_map             = NULL,
        .setup_apic_routing             = NULL,
        .cpu_present_to_apicid          = default_cpu_present_to_apicid,
index 49deefdded6829d530dc652d9fb6bcb475101ea5..d21a6853afeeb77f21777ed94fec88de46623faf 100644 (file)
@@ -811,11 +811,9 @@ static struct apic apic_x2apic_uv_x __ro_after_init = {
        .irq_dest_mode                  = 0, /* Physical */
 
        .disable_esr                    = 0,
-       .dest_logical                   = APIC_DEST_PHYSICAL,
-       .check_apicid_used              = NULL,
 
+       .check_apicid_used              = NULL,
        .init_apic_ldr                  = uv_init_apic_ldr,
-
        .ioapic_phys_id_map             = NULL,
        .setup_apic_routing             = NULL,
        .cpu_present_to_apicid          = default_cpu_present_to_apicid,
index de776b2e60467b0f7d8bcbfbe0912cb6213d6554..6c14f1091f607de325525010482713e8e698954d 100644 (file)
@@ -747,13 +747,14 @@ static void __init smp_quirk_init_udelay(void)
 int
 wakeup_secondary_cpu_via_nmi(int apicid, unsigned long start_eip)
 {
+       u32 dm = apic->irq_dest_mode ? APIC_DEST_LOGICAL : APIC_DEST_PHYSICAL;
        unsigned long send_status, accept_status = 0;
        int maxlvt;
 
        /* Target chip */
        /* Boot on the stack */
        /* Kick the second */
-       apic_icr_write(APIC_DM_NMI | apic->dest_logical, apicid);
+       apic_icr_write(APIC_DM_NMI | dm, apicid);
 
        pr_debug("Waiting for send to finish...\n");
        send_status = safe_apic_wait_icr_idle();
@@ -980,7 +981,7 @@ wakeup_cpu_via_init_nmi(int cpu, unsigned long start_ip, int apicid,
        if (!boot_error) {
                enable_start_cpu0 = 1;
                *cpu0_nmi_registered = 1;
-               if (apic->dest_logical == APIC_DEST_LOGICAL)
+               if (apic->irq_dest_mode)
                        id = cpu0_logical_apicid;
                else
                        id = apicid;
index e82fd1910daeb42f74485c912736be3bf7015e75..c35c24b5bc01d0d7591f83e9006b3b0e169170b3 100644 (file)
@@ -152,11 +152,9 @@ static struct apic xen_pv_apic = {
        /* .irq_dest_mode     - used in native_compose_msi_msg only */
 
        .disable_esr                    = 0,
-       /* .dest_logical      -  default_send_IPI_ use it but we use our own. */
-       .check_apicid_used              = default_check_apicid_used, /* Used on 32-bit */
 
+       .check_apicid_used              = default_check_apicid_used, /* Used on 32-bit */
        .init_apic_ldr                  = xen_noop, /* setup_local_APIC calls it */
-
        .ioapic_phys_id_map             = default_ioapic_phys_id_map, /* Used on 32-bit */
        .setup_apic_routing             = NULL,
        .cpu_present_to_apicid          = xen_cpu_present_to_apicid,