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>
This commit is contained in:
Patrick Rudolph 2024-02-14 13:51:51 +01:00 committed by Lean Sheng Tan
parent 836a6d8081
commit 2b64dbeb93

View File

@ -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]);
}
}