From: Kirill A. Shutemov Date: Fri, 14 Jun 2024 09:59:04 +0000 (+0300) Subject: ACPI: tables: Print MULTIPROC_WAKEUP when MADT is parsed X-Git-Tag: v6.11-rc1~199^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=16df35946120fca2346c415fae429c821391eef8;p=thirdparty%2Fkernel%2Flinux.git ACPI: tables: Print MULTIPROC_WAKEUP when MADT is parsed When MADT is parsed, print MULTIPROC_WAKEUP information: ACPI: MP Wakeup (version[1], mailbox[0x7fffd000], reset[0x7fffe068]) This debug information will be very helpful during bringup. Signed-off-by: Kirill A. Shutemov Signed-off-by: Borislav Petkov (AMD) Reviewed-by: Baoquan He Reviewed-by: Kuppuswamy Sathyanarayanan Acked-by: Kai Huang Acked-by: Rafael J. Wysocki Tested-by: Tao Liu Link: https://lore.kernel.org/r/20240614095904.1345461-20-kirill.shutemov@linux.intel.com --- diff --git a/drivers/acpi/tables.c b/drivers/acpi/tables.c index b976e5fc3fbcd..9e1b01c350702 100644 --- a/drivers/acpi/tables.c +++ b/drivers/acpi/tables.c @@ -198,6 +198,20 @@ void acpi_table_print_madt_entry(struct acpi_subtable_header *header) } break; + case ACPI_MADT_TYPE_MULTIPROC_WAKEUP: + { + struct acpi_madt_multiproc_wakeup *p = + (struct acpi_madt_multiproc_wakeup *)header; + u64 reset_vector = 0; + + if (p->version >= ACPI_MADT_MP_WAKEUP_VERSION_V1) + reset_vector = p->reset_vector; + + pr_debug("MP Wakeup (version[%d], mailbox[%#llx], reset[%#llx])\n", + p->version, p->mailbox_address, reset_vector); + } + break; + case ACPI_MADT_TYPE_CORE_PIC: { struct acpi_madt_core_pic *p = (struct acpi_madt_core_pic *)header;