Jay Patel has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/73707 )
Change subject: arch/x86/ioapic: Print IOAPIC ID for GSI #0 ......................................................................
arch/x86/ioapic: Print IOAPIC ID for GSI #0
Print IOAPIC ID for GSI #0 in logs, as part of IOAPIC initialization.
BUG = None TEST = Confirmed "IOAPIC: ID = 0x00" printed in logs.
Signed-off-by: jaypatel256 jay2.patel@intel.com Change-Id: I8d8e94fe623795d059ec2abbb3319b60fd80f5ca --- M src/arch/x86/ioapic.c 1 file changed, 16 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/07/73707/1
diff --git a/src/arch/x86/ioapic.c b/src/arch/x86/ioapic.c index e30b6ca..84a4c7f 100644 --- a/src/arch/x86/ioapic.c +++ b/src/arch/x86/ioapic.c @@ -129,9 +129,9 @@
printk(BIOS_DEBUG, "IOAPIC: Initializing IOAPIC at %p\n", ioapic_base); + printk(BIOS_DEBUG, "IOAPIC: ID = 0x%02x\n", ioapic_id);
if (ioapic_id) { - printk(BIOS_DEBUG, "IOAPIC: ID = 0x%02x\n", ioapic_id); /* Set IOAPIC ID if it has been specified. */ io_apic_write(ioapic_base, 0x00, (io_apic_read(ioapic_base, 0x00) & 0xf0ffffff) |