diff options
author | Jay Patel <jay2.patel@intel.com> | 2023-03-13 08:36:28 -0700 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2023-03-16 15:19:10 +0000 |
commit | c7728521d6c13efbe4f4d5d99ad882b37333168c (patch) | |
tree | b1cec5f7a530874e110b9c34b234cc86264d5565 /src/arch | |
parent | b5fd92a14e9346fcd71830ddd2315bf610e3f935 (diff) |
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: Jay Patel <jay2.patel@intel.com>
Change-Id: I8d8e94fe623795d059ec2abbb3319b60fd80f5ca
Reviewed-on: https://review.coreboot.org/c/coreboot/+/73707
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Reviewed-by: Wonkyu Kim <wonkyu.kim@intel.com>
Reviewed-by: Bora Guvendik <bora.guvendik@intel.com>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/x86/ioapic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/ioapic.c b/src/arch/x86/ioapic.c index e30b6caa84..84a4c7f7bc 100644 --- a/src/arch/x86/ioapic.c +++ b/src/arch/x86/ioapic.c @@ -129,9 +129,9 @@ static void set_ioapic_id(void *ioapic_base, u8 ioapic_id) 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) | |