summaryrefslogtreecommitdiff
path: root/include/sbi/sbi_platform.h
diff options
context:
space:
mode:
authorAnup Patel <anup.patel@wdc.com>2021-01-08 07:37:01 +0300
committerAnup Patel <anup@brainfault.org>2021-01-12 08:11:11 +0300
commitdb56341dfa1f89e258921d260449eb5edee922c4 (patch)
tree77a3edcd897d852f25be9d8e9b1f4c9f0afc0a6b /include/sbi/sbi_platform.h
parent0d49c3bc1823df8bf229ba3ece8ca0a753f0622b (diff)
downloadopensbi-db56341dfa1f89e258921d260449eb5edee922c4.tar.xz
lib: sbi: Allow platforms to provide root domain memory regions
Currently, the root domain memory regions are fixed in generic code but some of the platforms may want to explicitly define memory regions for the root domain. This patch adds optional domains_root_regions() platform callback which platforms can use to provide platform specific root domain memory regions. Due to this changes, the root domain should also undergo all sanity checks (just like regular domain) so we use sbi_domain_register() to register root domain. Signed-off-by: Anup Patel <anup.patel@wdc.com> Reviewed-by: Atish Patra <atish.patra@wdc.com>
Diffstat (limited to 'include/sbi/sbi_platform.h')
-rw-r--r--include/sbi/sbi_platform.h20
1 files changed, 19 insertions, 1 deletions
diff --git a/include/sbi/sbi_platform.h b/include/sbi/sbi_platform.h
index 7b8fe89..c252628 100644
--- a/include/sbi/sbi_platform.h
+++ b/include/sbi/sbi_platform.h
@@ -45,7 +45,7 @@
#include <sbi/sbi_scratch.h>
#include <sbi/sbi_version.h>
-struct sbi_domain;
+struct sbi_domain_memregion;
struct sbi_trap_info;
struct sbi_trap_regs;
@@ -92,6 +92,8 @@ struct sbi_platform_operations {
*/
int (*misa_get_xlen)(void);
+ /** Get platform specific root domain memory regions */
+ struct sbi_domain_memregion *(*domains_root_regions)(void);
/** Initialize (or populate) domains for the platform */
int (*domains_init)(void);
@@ -453,6 +455,22 @@ static inline int sbi_platform_misa_xlen(const struct sbi_platform *plat)
}
/**
+ * Get platform specific root domain memory regions
+ *
+ * @param plat pointer to struct sbi_platform
+ *
+ * @return an array of memory regions terminated by a region with order zero
+ * or NULL for no memory regions
+ */
+static inline struct sbi_domain_memregion *
+sbi_platform_domains_root_regions(const struct sbi_platform *plat)
+{
+ if (plat && sbi_platform_ops(plat)->domains_root_regions)
+ return sbi_platform_ops(plat)->domains_root_regions();
+ return NULL;
+}
+
+/**
* Initialize (or populate) domains for the platform
*
* @param plat pointer to struct sbi_platform