Skip to content
Snippets Groups Projects
Commit b813ea9a authored by Bin Meng's avatar Bin Meng
Browse files

x86: broadwell: Correct I/O APIC ID


Currently ID 2 is assgined to broadwell I/O APIC, however per
chromebook_samus.dts 2 is the core#2 LAPIC ID. Now we change
I/O APIC ID to 4 to avoid conflict.

Signed-off-by: default avatarBin Meng <bmeng.cn@gmail.com>
Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
parent 911d6f69
Branches
Tags
No related merge requests found
......@@ -109,7 +109,8 @@ static void pch_enable_ioapic(void)
{
u32 reg32;
io_apic_set_id(0x02);
/* Make sure this is a unique ID within system */
io_apic_set_id(0x04);
/* affirm full set of redirection table entries ("write once") */
reg32 = io_apic_read(0x01);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment