From: dmukhin@ford.com
To: xen-devel@lists.xenproject.org
Cc: andrew.cooper3@citrix.com, anthony.perard@vates.tech,
jbeulich@suse.com, julien@xen.org, michal.orzel@amd.com,
roger@xenproject.org, sstabellini@kernel.org, dmukhin@ford.com
Subject: [PATCH v2] acpi: reboot: log reset parameters
Date: Fri, 31 Jul 2026 20:17:39 -0700 [thread overview]
Message-ID: <20260801031737.344756-3-dmukhin@ford.com> (raw)
From: Denis Mukhin <dmukhin@ford.com>
Xen does not provide much details for system reset debugging in case
system reset happens via ACPI subsystem.
Log reset I/O address and reset value.
While here, add the missing default case, add breaks between case
statements and drop full stops in the loglines.
Signed-off-by: Denis Mukhin <dmukhin@ford.com>
---
- v1: https://lore.kernel.org/xen-devel/20260730001854.905354-2-dmukhin@ford.com/
- CI: https://gitlab.com/xen-project/people/dmukhin/xen/-/pipelines/2723268852
Changes since v1:
- removed wrong ASSERT_UNREACHABLE()
- switched formatting to %#x
- fixed indentation
---
xen/drivers/acpi/reboot.c | 28 +++++++++++++++++++++-------
1 file changed, 21 insertions(+), 7 deletions(-)
diff --git a/xen/drivers/acpi/reboot.c b/xen/drivers/acpi/reboot.c
index f6345be8749f..dc5671f9b42a 100644
--- a/xen/drivers/acpi/reboot.c
+++ b/xen/drivers/acpi/reboot.c
@@ -6,6 +6,7 @@ void acpi_reboot(void)
{
struct acpi_generic_address *rr;
u8 reset_value;
+ pci_sbdf_t sbdf;
rr = &acpi_gbl_FADT.reset_register;
@@ -21,17 +22,30 @@ void acpi_reboot(void)
* on a device on bus 0. */
switch (rr->space_id) {
case ACPI_ADR_SPACE_PCI_CONFIG:
- printk("Resetting with ACPI PCI RESET_REG.\n");
+ sbdf = PCI_SBDF(0, 0, rr->address >> 32, rr->address >> 16);
+ printk("Resetting with ACPI PCI %pp RESET_REG at %#lx (%#x)\n",
+ &sbdf, rr->address & 0xff, reset_value);
/* Write the value that resets us. */
- pci_conf_write8(PCI_SBDF(0, 0, rr->address >> 32,
- rr->address >> 16),
- (rr->address & 255),
- reset_value);
+ pci_conf_write8(sbdf, rr->address & 0xff, reset_value);
break;
+
case ACPI_ADR_SPACE_SYSTEM_MEMORY:
- case ACPI_ADR_SPACE_SYSTEM_IO:
- printk("Resetting with ACPI MEMORY or I/O RESET_REG.\n");
+ printk("Resetting with ACPI MEMORY at %#lx (%#x)\n",
+ rr->address, reset_value);
acpi_hw_low_level_write(8, reset_value, rr);
break;
+
+ case ACPI_ADR_SPACE_SYSTEM_IO:
+ printk("Resetting with I/O RESET_REG at %#lx (%#x)\n",
+ rr->address, reset_value);
+ acpi_hw_low_level_write(8, reset_value, rr);
+ break;
+
+ default:
+ /* Fallback to alternative reboot methods */
+ printk(XENLOG_WARNING
+ "Resetting with ACPI method failed: bad ADR %#x\n",
+ rr->space_id);
+ break;
}
}
--
2.54.0
next reply other threads:[~2026-08-01 3:22 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-01 3:17 dmukhin [this message]
2026-08-05 10:18 ` [PATCH v2] acpi: reboot: log reset parameters Jan Beulich
2026-08-07 18:10 ` dmukhin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260801031737.344756-3-dmukhin@ford.com \
--to=dmukhin@ford.com \
--cc=andrew.cooper3@citrix.com \
--cc=anthony.perard@vates.tech \
--cc=jbeulich@suse.com \
--cc=julien@xen.org \
--cc=michal.orzel@amd.com \
--cc=roger@xenproject.org \
--cc=sstabellini@kernel.org \
--cc=xen-devel@lists.xenproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.