[PATCH 1/4] lib: sbi_mpxy: Export MPXY data structures
Alvin Chang
alvinga at andestech.com
Mon Feb 17 21:48:34 PST 2025
Move MPXY data structures from private C source file to public header so
that other modules can reference them.
Signed-off-by: Alvin Chang <alvinga at andestech.com>
Reviewed-by: Yu-Chien Peter Lin <peter.lin at sifive.com>
---
include/sbi/sbi_mpxy.h | 15 +++++++++++++++
lib/sbi/sbi_mpxy.c | 15 ---------------
2 files changed, 15 insertions(+), 15 deletions(-)
diff --git a/include/sbi/sbi_mpxy.h b/include/sbi/sbi_mpxy.h
index 9da2791..5e5836c 100644
--- a/include/sbi/sbi_mpxy.h
+++ b/include/sbi/sbi_mpxy.h
@@ -14,6 +14,21 @@
struct sbi_scratch;
+/** Per hart shared memory */
+struct mpxy_shmem {
+ unsigned long shmem_addr_lo;
+ unsigned long shmem_addr_hi;
+};
+
+struct mpxy_state {
+ /* MSI support in MPXY */
+ bool msi_avail;
+ /* SSE support in MPXY */
+ bool sse_avail;
+ /* MPXY Shared memory details */
+ struct mpxy_shmem shmem;
+};
+
#define SBI_MPXY_MSGPROTO_VERSION(Major, Minor) ((Major << 16) | Minor)
enum sbi_mpxy_attr_id {
diff --git a/lib/sbi/sbi_mpxy.c b/lib/sbi/sbi_mpxy.c
index c5d9d1b..cf40e83 100644
--- a/lib/sbi/sbi_mpxy.c
+++ b/lib/sbi/sbi_mpxy.c
@@ -74,21 +74,6 @@ static SBI_LIST_HEAD(mpxy_channel_list);
#error "Undefined XLEN"
#endif
-/** Per hart shared memory */
-struct mpxy_shmem {
- unsigned long shmem_addr_lo;
- unsigned long shmem_addr_hi;
-};
-
-struct mpxy_state {
- /* MSI support in MPXY */
- bool msi_avail;
- /* SSE support in MPXY */
- bool sse_avail;
- /* MPXY Shared memory details */
- struct mpxy_shmem shmem;
-};
-
/** Disable hart shared memory */
static inline void sbi_mpxy_shmem_disable(struct mpxy_state *ms)
{
--
2.34.1
More information about the opensbi
mailing list