Move remap_bsp_lapic to AMD specific code
It's not used outside of very old AMD CPUs. Change-Id: Ide51ef1a526df50d88bf229432d7d36bc777f9eb Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-on: http://review.coreboot.org/10538 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-by: Marc Jones <marc.jones@se-eng.com>
This commit is contained in:
@@ -1112,6 +1112,21 @@ static void add_more_links(device_t dev, unsigned total_links)
|
||||
last->next = NULL;
|
||||
}
|
||||
|
||||
static void remap_bsp_lapic(struct bus *cpu_bus)
|
||||
{
|
||||
struct device_path cpu_path;
|
||||
device_t cpu;
|
||||
u32 bsp_lapic_id = lapicid();
|
||||
|
||||
if (bsp_lapic_id) {
|
||||
cpu_path.type = DEVICE_PATH_APIC;
|
||||
cpu_path.apic.apic_id = 0;
|
||||
cpu = find_dev_path(cpu_bus, &cpu_path);
|
||||
if (cpu)
|
||||
cpu->path.apic.apic_id = bsp_lapic_id;
|
||||
}
|
||||
}
|
||||
|
||||
static void cpu_bus_scan(device_t dev)
|
||||
{
|
||||
struct bus *cpu_bus;
|
||||
|
@@ -1102,6 +1102,21 @@ static void add_more_links(device_t dev, unsigned total_links)
|
||||
last->next = NULL;
|
||||
}
|
||||
|
||||
static void remap_bsp_lapic(struct bus *cpu_bus)
|
||||
{
|
||||
struct device_path cpu_path;
|
||||
device_t cpu;
|
||||
u32 bsp_lapic_id = lapicid();
|
||||
|
||||
if (bsp_lapic_id) {
|
||||
cpu_path.type = DEVICE_PATH_APIC;
|
||||
cpu_path.apic.apic_id = 0;
|
||||
cpu = find_dev_path(cpu_bus, &cpu_path);
|
||||
if (cpu)
|
||||
cpu->path.apic.apic_id = bsp_lapic_id;
|
||||
}
|
||||
}
|
||||
|
||||
static void cpu_bus_scan(device_t dev)
|
||||
{
|
||||
struct bus *cpu_bus;
|
||||
|
Reference in New Issue
Block a user