drivers/generic/ioapic: Drop enable_virtual_wire
All boards with DRIVERS_GENERIC_IOAPIC select it. Presumably the related configuration of routing IRQ0 when IOAPIC is enabled should be always done to provide i8259 legacy compatibility for payloads. Change-Id: Ie87816271fa63bba892c8615aa5e72ee68f6ba93 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/55287 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
parent
f6611a2ea8
commit
6644d7c508
|
@ -35,7 +35,6 @@ void setup_ioapic(void *ioapic_base, u8 ioapic_id);
|
|||
void clear_ioapic(void *ioapic_base);
|
||||
|
||||
void ioapic_set_boot_config(void *ioapic_base, bool irq_on_fsb);
|
||||
void setup_ioapic_helper(void *ioapic_base, u8 ioapic_id, bool enable_virtual_wire);
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
|
@ -136,17 +136,9 @@ void ioapic_set_boot_config(void *ioapic_base, bool irq_on_fsb)
|
|||
}
|
||||
}
|
||||
|
||||
void setup_ioapic_helper(void *ioapic_base, u8 ioapic_id, bool enable_virtual_wire)
|
||||
void setup_ioapic(void *ioapic_base, u8 ioapic_id)
|
||||
{
|
||||
set_ioapic_id(ioapic_base, ioapic_id);
|
||||
clear_ioapic(ioapic_base);
|
||||
|
||||
if (enable_virtual_wire)
|
||||
route_i8259_irq0(ioapic_base);
|
||||
}
|
||||
|
||||
|
||||
void setup_ioapic(void *ioapic_base, u8 ioapic_id)
|
||||
{
|
||||
setup_ioapic_helper(ioapic_base, ioapic_id, true);
|
||||
route_i8259_irq0(ioapic_base);
|
||||
}
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
typedef struct drivers_generic_ioapic_config {
|
||||
u32 version;
|
||||
u8 apicid;
|
||||
u8 enable_virtual_wire;
|
||||
u8 have_isa_interrupts;
|
||||
void *base;
|
||||
} ioapic_config_t;
|
||||
|
|
|
@ -13,7 +13,7 @@ static void ioapic_init(struct device *dev)
|
|||
if (!dev->enabled || !config)
|
||||
return;
|
||||
|
||||
setup_ioapic_helper(config->base, config->apicid, config->enable_virtual_wire);
|
||||
setup_ioapic(config->base, config->apicid);
|
||||
}
|
||||
|
||||
static void ioapic_read_resources(struct device *dev)
|
||||
|
|
|
@ -143,7 +143,6 @@ chip northbridge/intel/gm45
|
|||
|
||||
chip drivers/generic/ioapic
|
||||
register "have_isa_interrupts" = "1"
|
||||
register "enable_virtual_wire" = "1"
|
||||
register "base" = "(void *)0xfec00000"
|
||||
device ioapic 2 on end
|
||||
end
|
||||
|
|
|
@ -133,7 +133,6 @@ chip northbridge/intel/gm45
|
|||
|
||||
chip drivers/generic/ioapic
|
||||
register "have_isa_interrupts" = "1"
|
||||
register "enable_virtual_wire" = "1"
|
||||
register "base" = "(void *)0xfec00000"
|
||||
device ioapic 2 on end
|
||||
end
|
||||
|
|
|
@ -121,7 +121,6 @@ chip northbridge/intel/gm45
|
|||
device pci 1f.0 on # LPC bridge
|
||||
chip drivers/generic/ioapic
|
||||
register "have_isa_interrupts" = "1"
|
||||
register "enable_virtual_wire" = "1"
|
||||
register "base" = "(void *)0xfec00000"
|
||||
device ioapic 2 on end
|
||||
end
|
||||
|
|
|
@ -107,7 +107,6 @@ chip northbridge/intel/sandybridge
|
|||
|
||||
chip drivers/generic/ioapic
|
||||
register "have_isa_interrupts" = "1"
|
||||
register "enable_virtual_wire" = "1"
|
||||
register "base" = "(void *)0xfec00000"
|
||||
device ioapic 4 on end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue