From 2b64dbeb93f7d4735001af2626d9c3deabbed06b Mon Sep 17 00:00:00 2001 From: Patrick Rudolph Date: Wed, 14 Feb 2024 13:51:51 +0100 Subject: 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 Reviewed-on: https://review.coreboot.org/c/coreboot/+/80549 Reviewed-by: Arthur Heymans Tested-by: build bot (Jenkins) Reviewed-by: Shuo Liu --- src/soc/intel/xeon_sp/uncore.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/soc/intel/xeon_sp/uncore.c b/src/soc/intel/xeon_sp/uncore.c index df2ffac09d..d43b209591 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]); } } -- cgit v1.2.3