diff options
author | Anup Patel <apatel@ventanamicro.com> | 2025-01-11 20:53:05 +0530 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2025-02-13 11:10:03 +0530 |
commit | b05e2a19568e449969318597ca77c27c25aac518 (patch) | |
tree | 1a270b57268914b55aa9e4c95f372c7481ead06d /lib | |
parent | e4bc55930b1755f7ec045ba2ad158868e7f6dd5d (diff) | |
download | opensbi-b05e2a19568e449969318597ca77c27c25aac518.zip opensbi-b05e2a19568e449969318597ca77c27c25aac518.tar.gz opensbi-b05e2a19568e449969318597ca77c27c25aac518.tar.bz2 |
include: sbi_utils: Update RPMI service group IDs and BASE service group
The service group ID assignment and some of the BASE services have
changes in the latest RPMI specification so let's update the RPMI
implementation accordingly.
Signed-off-by: Anup Patel <apatel@ventanamicro.com>
Reviewed-by: Samuel Holland <samuel.holland@sifive.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/utils/mailbox/fdt_mailbox_rpmi_shmem.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/utils/mailbox/fdt_mailbox_rpmi_shmem.c b/lib/utils/mailbox/fdt_mailbox_rpmi_shmem.c index e9f52c7..5b858d3 100644 --- a/lib/utils/mailbox/fdt_mailbox_rpmi_shmem.c +++ b/lib/utils/mailbox/fdt_mailbox_rpmi_shmem.c @@ -146,7 +146,6 @@ struct rpmi_shmem_mbox_controller { struct { u8 f0_priv_level; bool f0_ev_notif_en; - bool f0_msi_en; } base_flags; }; @@ -767,9 +766,6 @@ static int rpmi_shmem_mbox_init(const void *fdt, int nodeoff, /* 1: Supported, 0: Not Supported */ mctl->base_flags.f0_ev_notif_en = resp.f0 & RPMI_BASE_FLAGS_F0_EV_NOTIFY ? 1 : 0; - /* 1: Supported, 0: Not Supported */ - mctl->base_flags.f0_msi_en = - resp.f0 & RPMI_BASE_FLAGS_F0_MSI_EN ? 1 : 0; /* We only use M-mode RPMI context in OpenSBI */ if (!mctl->base_flags.f0_priv_level) { |