---
drivers/acpi/apei/ghes.c | 6 ++++++
drivers/acpi/atomicio.c | 2 ++
2 files changed, 8 insertions(+)
@@ -299,6 +299,9 @@ static struct ghes *ghes_new(struct acpi
return ERR_PTR(-ENOMEM);
ghes->generic = generic;
rc = acpi_pre_map_gar(&generic->error_status_address);
+ pr_info(GHES_PFX "gar mapped: %d, %#llx\n",
+ generic->error_status_address.space_id,
+ generic->error_status_address.address);
if (rc)
goto err_free;
error_block_length = generic->error_block_length;
@@ -398,6 +401,9 @@ static int ghes_read_estatus(struct ghes
u32 len;
int rc;
+ pr_err(GHES_PFX "gar accessed: %d, %#llx\n",
+ g->error_status_address.space_id,
+ g->error_status_address.address);
rc = acpi_atomic_read(&buf_paddr, &g->error_status_address);
if (rc) {
if (!silent && printk_ratelimit())
@@ -270,6 +270,8 @@ static int acpi_atomic_read_mem(u64 padd
rcu_read_lock();
addr = __acpi_ioremap_fast(paddr, width);
+ if (!addr)
+ panic("ACPI atomic read mem: addr %#llx is not mapped!\n", paddr);
switch (width) {
case 8:
*val = readb(addr);