soc/intel/xeon_sp: Improve generating PCH IOAPIC MADT entry

The PCH IOAPIC ID is 0x8 so it needs to be generated before the IIO
IOAPICs. Since we will get rid of the ioapic_id array this makes it
more readable.

Change-Id: I64a3b259e438ef666fb68a433cceda10aebdb1bf
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/47301
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Marc Jones <marc@marcjonesconsulting.com>
This commit is contained in:
Arthur Heymans 2020-11-06 12:59:46 +01:00
parent 6615c6eaf7
commit 77038b16ff
1 changed files with 18 additions and 15 deletions

View File

@ -86,6 +86,8 @@ static unsigned long add_madt_ioapic(unsigned long current, int socket, int stac
unsigned long acpi_fill_madt(unsigned long current) unsigned long acpi_fill_madt(unsigned long current)
{ {
int cur_index; int cur_index;
int ioapic_id;
int gsi_base;
const IIO_UDS *hob = get_iio_uds(); const IIO_UDS *hob = get_iio_uds();
/* With XEON-SP FSP, PCH IOAPIC is allocated with first 120 GSIs. */ /* With XEON-SP FSP, PCH IOAPIC is allocated with first 120 GSIs. */
@ -102,6 +104,12 @@ unsigned long acpi_fill_madt(unsigned long current)
current = xeonsp_acpi_create_madt_lapics(current); current = xeonsp_acpi_create_madt_lapics(current);
cur_index = 0; cur_index = 0;
ioapic_id = ioapic_ids[cur_index];
gsi_base = gsi_bases[cur_index];
current += add_madt_ioapic(current, 0, 0, ioapic_id,
hob->PlatformData.IIO_resource[0].StackRes[0].IoApicBase,
gsi_base);
++cur_index;
for (int socket = 0; socket < hob->PlatformData.numofIIO; ++socket) { for (int socket = 0; socket < hob->PlatformData.numofIIO; ++socket) {
for (int stack = 0; stack < MAX_IIO_STACK; ++stack) { for (int stack = 0; stack < MAX_IIO_STACK; ++stack) {
@ -111,25 +119,20 @@ unsigned long acpi_fill_madt(unsigned long current)
continue; continue;
assert(cur_index < ARRAY_SIZE(ioapic_ids)); assert(cur_index < ARRAY_SIZE(ioapic_ids));
assert(cur_index < ARRAY_SIZE(gsi_bases)); assert(cur_index < ARRAY_SIZE(gsi_bases));
int ioapic_id = ioapic_ids[cur_index]; ioapic_id = ioapic_ids[cur_index];
int gsi_base = gsi_bases[cur_index]; gsi_base = gsi_bases[cur_index];
current += add_madt_ioapic(current, socket, stack, ioapic_id, uint32_t ioapic_base = ri->IoApicBase;
ri->IoApicBase, gsi_base);
++cur_index;
/* /*
* Stack 0 has non-PCH IOAPIC and PCH IOAPIC. * Stack 0 has non-PCH IOAPIC and PCH IOAPIC.
* Add entry for PCH IOAPIC. * The IIO IOAPIC is placed at 0x1000 from the reported base.
*/ */
if (stack == 0 && socket == 0) { /* PCH IOAPIC */ if (stack == 0 && socket == 0)
assert(cur_index < ARRAY_SIZE(ioapic_ids)); ioapic_base += 0x1000;
assert(cur_index < ARRAY_SIZE(gsi_bases));
ioapic_id = ioapic_ids[cur_index]; current += add_madt_ioapic(current, socket, stack, ioapic_id,
gsi_base = gsi_bases[cur_index]; ioapic_base, gsi_base);
current += add_madt_ioapic(current, socket, stack, ioapic_id, ++cur_index;
ri->IoApicBase + 0x1000, gsi_base);
++cur_index;
}
} }
} }