mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-09 15:29:16 +00:00
x86/apic: Cleanup destination mode
apic::irq_dest_mode is actually a boolean, but defined as u32 and named in a way which does not explain what it means. Make it a boolean and rename it to 'dest_mode_logical' 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-9-dwmw2@infradead.org
This commit is contained in:
parent
e57d04e5fa
commit
8c44963b60
@ -309,7 +309,7 @@ struct apic {
|
||||
u32 disable_esr;
|
||||
|
||||
enum apic_delivery_modes delivery_mode;
|
||||
u32 irq_dest_mode;
|
||||
bool dest_mode_logical;
|
||||
|
||||
u32 (*calc_dest_apicid)(unsigned int cpu);
|
||||
|
||||
|
@ -1591,7 +1591,7 @@ static void setup_local_APIC(void)
|
||||
apic->init_apic_ldr();
|
||||
|
||||
#ifdef CONFIG_X86_32
|
||||
if (apic->irq_dest_mode == 1) {
|
||||
if (apic->dest_mode_logical) {
|
||||
int logical_apicid, ldr_apicid;
|
||||
|
||||
/*
|
||||
|
@ -114,7 +114,7 @@ static struct apic apic_flat __ro_after_init = {
|
||||
.apic_id_registered = flat_apic_id_registered,
|
||||
|
||||
.delivery_mode = APIC_DELIVERY_MODE_FIXED,
|
||||
.irq_dest_mode = 1, /* logical */
|
||||
.dest_mode_logical = true,
|
||||
|
||||
.disable_esr = 0,
|
||||
|
||||
@ -205,7 +205,7 @@ static struct apic apic_physflat __ro_after_init = {
|
||||
.apic_id_registered = flat_apic_id_registered,
|
||||
|
||||
.delivery_mode = APIC_DELIVERY_MODE_FIXED,
|
||||
.irq_dest_mode = 0, /* physical */
|
||||
.dest_mode_logical = false,
|
||||
|
||||
.disable_esr = 0,
|
||||
|
||||
|
@ -96,8 +96,7 @@ struct apic apic_noop __ro_after_init = {
|
||||
.apic_id_registered = noop_apic_id_registered,
|
||||
|
||||
.delivery_mode = APIC_DELIVERY_MODE_FIXED,
|
||||
/* logical delivery broadcast to all CPUs: */
|
||||
.irq_dest_mode = 1,
|
||||
.dest_mode_logical = true,
|
||||
|
||||
.disable_esr = 0,
|
||||
|
||||
@ -105,7 +104,6 @@ struct apic apic_noop __ro_after_init = {
|
||||
.init_apic_ldr = noop_init_apic_ldr,
|
||||
.ioapic_phys_id_map = default_ioapic_phys_id_map,
|
||||
.setup_apic_routing = NULL,
|
||||
|
||||
.cpu_present_to_apicid = default_cpu_present_to_apicid,
|
||||
.apicid_to_cpu_present = physid_set_mask_of_physid,
|
||||
|
||||
|
@ -247,7 +247,7 @@ static const struct apic apic_numachip1 __refconst = {
|
||||
.apic_id_registered = numachip_apic_id_registered,
|
||||
|
||||
.delivery_mode = APIC_DELIVERY_MODE_FIXED,
|
||||
.irq_dest_mode = 0, /* physical */
|
||||
.dest_mode_logical = false,
|
||||
|
||||
.disable_esr = 0,
|
||||
|
||||
@ -294,7 +294,7 @@ static const struct apic apic_numachip2 __refconst = {
|
||||
.apic_id_registered = numachip_apic_id_registered,
|
||||
|
||||
.delivery_mode = APIC_DELIVERY_MODE_FIXED,
|
||||
.irq_dest_mode = 0, /* physical */
|
||||
.dest_mode_logical = false,
|
||||
|
||||
.disable_esr = 0,
|
||||
|
||||
|
@ -128,8 +128,7 @@ static struct apic apic_bigsmp __ro_after_init = {
|
||||
.apic_id_registered = bigsmp_apic_id_registered,
|
||||
|
||||
.delivery_mode = APIC_DELIVERY_MODE_FIXED,
|
||||
/* phys delivery to target CPU: */
|
||||
.irq_dest_mode = 0,
|
||||
.dest_mode_logical = false,
|
||||
|
||||
.disable_esr = 1,
|
||||
|
||||
|
@ -2950,7 +2950,7 @@ static void mp_setup_entry(struct irq_cfg *cfg, struct mp_chip_data *data,
|
||||
{
|
||||
memset(entry, 0, sizeof(*entry));
|
||||
entry->delivery_mode = apic->delivery_mode;
|
||||
entry->dest_mode = apic->irq_dest_mode;
|
||||
entry->dest_mode = apic->dest_mode_logical;
|
||||
entry->dest = cfg->dest_apicid;
|
||||
entry->vector = cfg->vector;
|
||||
entry->trigger = data->trigger;
|
||||
|
@ -30,9 +30,9 @@ static void __irq_msi_compose_msg(struct irq_cfg *cfg, struct msi_msg *msg,
|
||||
|
||||
msg->address_lo =
|
||||
MSI_ADDR_BASE_LO |
|
||||
((apic->irq_dest_mode == 0) ?
|
||||
MSI_ADDR_DEST_MODE_PHYSICAL :
|
||||
MSI_ADDR_DEST_MODE_LOGICAL) |
|
||||
(apic->dest_mode_logical ?
|
||||
MSI_ADDR_DEST_MODE_LOGICAL :
|
||||
MSI_ADDR_DEST_MODE_PHYSICAL) |
|
||||
MSI_ADDR_REDIRECTION_CPU |
|
||||
MSI_ADDR_DEST_ID(cfg->dest_apicid);
|
||||
|
||||
|
@ -70,8 +70,7 @@ static struct apic apic_default __ro_after_init = {
|
||||
.apic_id_registered = default_apic_id_registered,
|
||||
|
||||
.delivery_mode = APIC_DELIVERY_MODE_FIXED,
|
||||
/* logical delivery broadcast to all CPUs: */
|
||||
.irq_dest_mode = 1,
|
||||
.dest_mode_logical = true,
|
||||
|
||||
.disable_esr = 0,
|
||||
|
||||
|
@ -185,7 +185,7 @@ static struct apic apic_x2apic_cluster __ro_after_init = {
|
||||
.apic_id_registered = x2apic_apic_id_registered,
|
||||
|
||||
.delivery_mode = APIC_DELIVERY_MODE_FIXED,
|
||||
.irq_dest_mode = 1, /* logical */
|
||||
.dest_mode_logical = true,
|
||||
|
||||
.disable_esr = 0,
|
||||
|
||||
|
@ -158,7 +158,7 @@ static struct apic apic_x2apic_phys __ro_after_init = {
|
||||
.apic_id_registered = x2apic_apic_id_registered,
|
||||
|
||||
.delivery_mode = APIC_DELIVERY_MODE_FIXED,
|
||||
.irq_dest_mode = 0, /* physical */
|
||||
.dest_mode_logical = false,
|
||||
|
||||
.disable_esr = 0,
|
||||
|
||||
|
@ -808,7 +808,7 @@ static struct apic apic_x2apic_uv_x __ro_after_init = {
|
||||
.apic_id_registered = uv_apic_id_registered,
|
||||
|
||||
.delivery_mode = APIC_DELIVERY_MODE_FIXED,
|
||||
.irq_dest_mode = 0, /* Physical */
|
||||
.dest_mode_logical = false,
|
||||
|
||||
.disable_esr = 0,
|
||||
|
||||
|
@ -747,7 +747,7 @@ 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;
|
||||
u32 dm = apic->dest_mode_logical ? APIC_DEST_LOGICAL : APIC_DEST_PHYSICAL;
|
||||
unsigned long send_status, accept_status = 0;
|
||||
int maxlvt;
|
||||
|
||||
@ -981,10 +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->irq_dest_mode)
|
||||
id = cpu0_logical_apicid;
|
||||
else
|
||||
id = apicid;
|
||||
id = apic->dest_mode_logical ? cpu0_logical_apicid : apicid;
|
||||
boot_error = wakeup_secondary_cpu_via_nmi(id, start_ip);
|
||||
}
|
||||
|
||||
|
@ -36,7 +36,7 @@ static void uv_program_mmr(struct irq_cfg *cfg, struct uv_irq_2_mmr_pnode *info)
|
||||
entry = (struct uv_IO_APIC_route_entry *)&mmr_value;
|
||||
entry->vector = cfg->vector;
|
||||
entry->delivery_mode = apic->delivery_mode;
|
||||
entry->dest_mode = apic->irq_dest_mode;
|
||||
entry->dest_mode = apic->dest_mode_logical;
|
||||
entry->polarity = 0;
|
||||
entry->trigger = 0;
|
||||
entry->mask = 0;
|
||||
|
@ -148,8 +148,7 @@ static struct apic xen_pv_apic = {
|
||||
.apic_id_valid = xen_id_always_valid,
|
||||
.apic_id_registered = xen_id_always_registered,
|
||||
|
||||
/* .irq_delivery_mode - used in native_compose_msi_msg only */
|
||||
/* .irq_dest_mode - used in native_compose_msi_msg only */
|
||||
/* .delivery_mode and .dest_mode_logical not used by XENPV */
|
||||
|
||||
.disable_esr = 0,
|
||||
|
||||
|
@ -893,7 +893,7 @@ struct amd_ir_data {
|
||||
};
|
||||
|
||||
struct amd_irte_ops {
|
||||
void (*prepare)(void *, u32, u32, u8, u32, int);
|
||||
void (*prepare)(void *, u32, bool, u8, u32, int);
|
||||
void (*activate)(void *, u16, u16);
|
||||
void (*deactivate)(void *, u16, u16);
|
||||
void (*set_affinity)(void *, u16, u16, u8, u32);
|
||||
|
@ -3466,7 +3466,7 @@ static void free_irte(u16 devid, int index)
|
||||
}
|
||||
|
||||
static void irte_prepare(void *entry,
|
||||
u32 delivery_mode, u32 dest_mode,
|
||||
u32 delivery_mode, bool dest_mode,
|
||||
u8 vector, u32 dest_apicid, int devid)
|
||||
{
|
||||
union irte *irte = (union irte *) entry;
|
||||
@ -3480,7 +3480,7 @@ static void irte_prepare(void *entry,
|
||||
}
|
||||
|
||||
static void irte_ga_prepare(void *entry,
|
||||
u32 delivery_mode, u32 dest_mode,
|
||||
u32 delivery_mode, bool dest_mode,
|
||||
u8 vector, u32 dest_apicid, int devid)
|
||||
{
|
||||
struct irte_ga *irte = (struct irte_ga *) entry;
|
||||
@ -3672,7 +3672,7 @@ static void irq_remapping_prepare_irte(struct amd_ir_data *data,
|
||||
data->irq_2_irte.devid = devid;
|
||||
data->irq_2_irte.index = index + sub_handle;
|
||||
iommu->irte_ops->prepare(data->entry, apic->delivery_mode,
|
||||
apic->irq_dest_mode, irq_cfg->vector,
|
||||
apic->dest_mode_logical, irq_cfg->vector,
|
||||
irq_cfg->dest_apicid, devid);
|
||||
|
||||
switch (info->type) {
|
||||
@ -3943,7 +3943,7 @@ int amd_iommu_deactivate_guest_mode(void *data)
|
||||
entry->hi.val = 0;
|
||||
|
||||
entry->lo.fields_remap.valid = valid;
|
||||
entry->lo.fields_remap.dm = apic->irq_dest_mode;
|
||||
entry->lo.fields_remap.dm = apic->dest_mode_logical;
|
||||
entry->lo.fields_remap.int_type = apic->delivery_mode;
|
||||
entry->hi.fields.vector = cfg->vector;
|
||||
entry->lo.fields_remap.destination =
|
||||
|
@ -1113,7 +1113,7 @@ static void prepare_irte(struct irte *irte, int vector, unsigned int dest)
|
||||
memset(irte, 0, sizeof(*irte));
|
||||
|
||||
irte->present = 1;
|
||||
irte->dst_mode = apic->irq_dest_mode;
|
||||
irte->dst_mode = apic->dest_mode_logical;
|
||||
/*
|
||||
* Trigger mode in the IRTE will always be edge, and for IO-APIC, the
|
||||
* actual level or edge trigger will be setup in the IO-APIC
|
||||
|
Loading…
x
Reference in New Issue
Block a user