summaryrefslogtreecommitdiffstats
path: root/src/device/device_util.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2021-06-14 00:40:22 +0300
committerFelix Held <felix-coreboot@felixheld.de>2022-05-24 13:08:00 +0000
commit68e6dc983223ead50362af45d9465045ae2b2d2f (patch)
tree71e624e8dc03519ceb147a1f04d1d97ee55be0e9 /src/device/device_util.c
parent0c78f4c05a220cd7475ce2430ef28d31ef2922b3 (diff)
downloadcoreboot-68e6dc983223ead50362af45d9465045ae2b2d2f.tar.gz
coreboot-68e6dc983223ead50362af45d9465045ae2b2d2f.tar.bz2
coreboot-68e6dc983223ead50362af45d9465045ae2b2d2f.zip
device: Add log_resource()
This will replace LOG_{MEM/IO}_RESOURCE macros once the new resource constructors are available. Change-Id: I21b030dc42dcb8e462b29f49499be5fd31ea38f5 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/55476 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/device/device_util.c')
-rw-r--r--src/device/device_util.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/device/device_util.c b/src/device/device_util.c
index 039e562b43cd..32f57ac0f387 100644
--- a/src/device/device_util.c
+++ b/src/device/device_util.c
@@ -932,3 +932,12 @@ const char *dev_path_name(enum device_path_type type)
type_name = type_names[type];
return type_name;
}
+
+void log_resource(const char *type, const struct device *dev, const struct resource *res,
+ const char *srcfile, const int line)
+{
+ printk(BIOS_SPEW, "%s:%d res: %s, dev: %s, index: 0x%lx, base: 0x%llx, "
+ "end: 0x%llx, size_kb: 0x%llx\n",
+ srcfile, line, type, dev_path(dev), res->index, res->base,
+ resource_end(res), res->size / KiB);
+}