summaryrefslogtreecommitdiff
path: root/src/device/device_util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/device/device_util.c')
-rw-r--r--src/device/device_util.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/device/device_util.c b/src/device/device_util.c
index 2e97ece2a5..22dc5f7499 100644
--- a/src/device/device_util.c
+++ b/src/device/device_util.c
@@ -1,5 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0-only */
+#include <assert.h>
#include <commonlib/bsd/helpers.h>
#include <console/console.h>
#include <device/device.h>
@@ -261,6 +262,20 @@ const struct device *dev_get_domain(const struct device *dev)
return NULL;
}
+unsigned int dev_get_domain_id(const struct device *dev)
+{
+ const struct device *domain_dev = dev_get_domain(dev);
+
+ assert(domain_dev);
+
+ if (!domain_dev) {
+ printk(BIOS_ERR, "%s: doesn't have a domain device\n", dev_path(dev));
+ return 0;
+ }
+
+ return domain_dev->path.domain.domain;
+}
+
bool is_domain0(const struct device *dev)
{
return dev && dev->path.type == DEVICE_PATH_DOMAIN && dev->path.domain.domain == 0;