aboutsummaryrefslogtreecommitdiff
path: root/lib/utils
diff options
context:
space:
mode:
authorRahul Pathak <rpathak@ventanamicro.com>2025-06-18 11:08:54 +0530
committerAnup Patel <anup@brainfault.org>2025-06-24 08:42:27 +0530
commitc2671bb69f17722a537b2b0403cf2d70639af346 (patch)
tree6ede01ba2a09065c00a8f423ffcab37c7bb9f414 /lib/utils
parenta5fdef45dbd50d40162852a2b7333135fe3439be (diff)
downloadopensbi-c2671bb69f17722a537b2b0403cf2d70639af346.zip
opensbi-c2671bb69f17722a537b2b0403cf2d70639af346.tar.gz
opensbi-c2671bb69f17722a537b2b0403cf2d70639af346.tar.bz2
lib: rpmi: Make RPMI drivers as non-experimental
As RPMI v1.0 specification is frozen, disable the experimental tag for such RPMI drivers. Signed-off-by: Rahul Pathak <rpathak@ventanamicro.com> Reviewed-by: Anup Patel <anup@brainfault.org> Link: https://lore.kernel.org/r/20250618053854.2577299-2-rpathak@ventanamicro.com Signed-off-by: Anup Patel <anup@brainfault.org>
Diffstat (limited to 'lib/utils')
-rw-r--r--lib/utils/cppc/fdt_cppc_rpmi.c1
-rw-r--r--lib/utils/hsm/fdt_hsm_rpmi.c1
-rw-r--r--lib/utils/mailbox/fdt_mailbox_rpmi_shmem.c1
-rw-r--r--lib/utils/mpxy/fdt_mpxy_rpmi_clock.c1
-rw-r--r--lib/utils/mpxy/fdt_mpxy_rpmi_sysmsi.c1
-rw-r--r--lib/utils/reset/fdt_reset_rpmi.c1
-rw-r--r--lib/utils/suspend/fdt_suspend_rpmi.c1
7 files changed, 0 insertions, 7 deletions
diff --git a/lib/utils/cppc/fdt_cppc_rpmi.c b/lib/utils/cppc/fdt_cppc_rpmi.c
index efcea65..7bd3b0f 100644
--- a/lib/utils/cppc/fdt_cppc_rpmi.c
+++ b/lib/utils/cppc/fdt_cppc_rpmi.c
@@ -370,5 +370,4 @@ static const struct fdt_match rpmi_cppc_match[] = {
const struct fdt_driver fdt_cppc_rpmi = {
.match_table = rpmi_cppc_match,
.init = rpmi_cppc_cold_init,
- .experimental = true,
};
diff --git a/lib/utils/hsm/fdt_hsm_rpmi.c b/lib/utils/hsm/fdt_hsm_rpmi.c
index 09d0c91..0caad8b 100644
--- a/lib/utils/hsm/fdt_hsm_rpmi.c
+++ b/lib/utils/hsm/fdt_hsm_rpmi.c
@@ -359,5 +359,4 @@ static const struct fdt_match rpmi_hsm_match[] = {
const struct fdt_driver fdt_hsm_rpmi = {
.match_table = rpmi_hsm_match,
.init = rpmi_hsm_cold_init,
- .experimental = true,
};
diff --git a/lib/utils/mailbox/fdt_mailbox_rpmi_shmem.c b/lib/utils/mailbox/fdt_mailbox_rpmi_shmem.c
index fdb0491..521e067 100644
--- a/lib/utils/mailbox/fdt_mailbox_rpmi_shmem.c
+++ b/lib/utils/mailbox/fdt_mailbox_rpmi_shmem.c
@@ -819,7 +819,6 @@ struct fdt_mailbox fdt_mailbox_rpmi_shmem = {
.driver = {
.match_table = rpmi_shmem_mbox_match,
.init = rpmi_shmem_mbox_init,
- .experimental = true,
},
.xlate = fdt_mailbox_simple_xlate,
};
diff --git a/lib/utils/mpxy/fdt_mpxy_rpmi_clock.c b/lib/utils/mpxy/fdt_mpxy_rpmi_clock.c
index 7d2b4a2..585c2bf 100644
--- a/lib/utils/mpxy/fdt_mpxy_rpmi_clock.c
+++ b/lib/utils/mpxy/fdt_mpxy_rpmi_clock.c
@@ -83,5 +83,4 @@ static const struct fdt_match clock_match[] = {
const struct fdt_driver fdt_mpxy_rpmi_clock = {
.match_table = clock_match,
.init = mpxy_rpmi_mbox_init,
- .experimental = true,
};
diff --git a/lib/utils/mpxy/fdt_mpxy_rpmi_sysmsi.c b/lib/utils/mpxy/fdt_mpxy_rpmi_sysmsi.c
index b4bab85..94a5af8 100644
--- a/lib/utils/mpxy/fdt_mpxy_rpmi_sysmsi.c
+++ b/lib/utils/mpxy/fdt_mpxy_rpmi_sysmsi.c
@@ -205,5 +205,4 @@ static const struct fdt_match sysmsi_match[] = {
const struct fdt_driver fdt_mpxy_rpmi_sysmsi = {
.match_table = sysmsi_match,
.init = mpxy_rpmi_mbox_init,
- .experimental = true,
};
diff --git a/lib/utils/reset/fdt_reset_rpmi.c b/lib/utils/reset/fdt_reset_rpmi.c
index 81b21d0..edc5393 100644
--- a/lib/utils/reset/fdt_reset_rpmi.c
+++ b/lib/utils/reset/fdt_reset_rpmi.c
@@ -138,5 +138,4 @@ static const struct fdt_match rpmi_reset_match[] = {
const struct fdt_driver fdt_reset_rpmi = {
.match_table = rpmi_reset_match,
.init = rpmi_reset_init,
- .experimental = true,
};
diff --git a/lib/utils/suspend/fdt_suspend_rpmi.c b/lib/utils/suspend/fdt_suspend_rpmi.c
index f9baa23..055ab2f 100644
--- a/lib/utils/suspend/fdt_suspend_rpmi.c
+++ b/lib/utils/suspend/fdt_suspend_rpmi.c
@@ -135,5 +135,4 @@ static const struct fdt_match rpmi_suspend_match[] = {
const struct fdt_driver fdt_suspend_rpmi = {
.match_table = rpmi_suspend_match,
.init = rpmi_suspend_init,
- .experimental = true,
};