diff options
author | Patrick Rudolph <patrick.rudolph@9elements.com> | 2024-02-14 13:51:51 +0100 |
---|---|---|
committer | Lean Sheng Tan <sheng.tan@9elements.com> | 2024-02-22 14:58:00 +0000 |
commit | 2b64dbeb93f7d4735001af2626d9c3deabbed06b (patch) | |
tree | cbed0f7425dc7dde4f9a6d5f55ccbfb222eca150 /src/soc/intel/xeon_sp | |
parent | 836a6d80817aee758b31ed254bdedbdade9e1dde (diff) |
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>
Diffstat (limited to 'src/soc/intel/xeon_sp')
-rw-r--r-- | src/soc/intel/xeon_sp/uncore.c | 4 |
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 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]); } } |