summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Rudolph <patrick.rudolph@9elements.com>2024-02-14 13:51:51 +0100
committerLean Sheng Tan <sheng.tan@9elements.com>2024-02-22 14:58:00 +0000
commit2b64dbeb93f7d4735001af2626d9c3deabbed06b (patch)
treecbed0f7425dc7dde4f9a6d5f55ccbfb222eca150
parent836a6d80817aee758b31ed254bdedbdade9e1dde (diff)
downloadcoreboot-2b64dbeb93f7d4735001af2626d9c3deabbed06b.tar.gz
coreboot-2b64dbeb93f7d4735001af2626d9c3deabbed06b.tar.bz2
coreboot-2b64dbeb93f7d4735001af2626d9c3deabbed06b.zip
soc/intel/xeon_sp: Print device path when reporting resources
As there are multiple Vtd devices, print the path of each when reporting resource registers. Change-Id: I5d3a6484ed7c7b9760fce0f3a02a15ca26c2cbd2 Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/80549 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Shuo Liu <shuo.liu@intel.com>
-rw-r--r--src/soc/intel/xeon_sp/uncore.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/xeon_sp/uncore.c b/src/soc/intel/xeon_sp/uncore.c
index df2ffac09d4a..d43b20959168 100644
--- a/src/soc/intel/xeon_sp/uncore.c
+++ b/src/soc/intel/xeon_sp/uncore.c
@@ -110,8 +110,8 @@ static void mc_report_map_entries(struct device *dev, uint64_t *values)
if (!memory_map[i].description)
continue;
- printk(BIOS_DEBUG, "MC MAP: %s: 0x%llx\n",
- memory_map[i].description, values[i]);
+ printk(BIOS_DEBUG, "%s: MC MAP: %s: 0x%llx\n",
+ dev_path(dev), memory_map[i].description, values[i]);
}
}