aboutsummaryrefslogtreecommitdiff
path: root/lib/utils/cppc/fdt_cppc_rpmi.c
diff options
context:
space:
mode:
authorSamuel Holland <samuel.holland@sifive.com>2024-12-18 21:02:39 -0800
committerAnup Patel <anup@brainfault.org>2024-12-21 18:22:47 +0530
commit8d8cc9507bd79afbe5c29b5d82868269691152f9 (patch)
tree8aa112d2a7564f9e4ec23b2edf51a7195a5d4416 /lib/utils/cppc/fdt_cppc_rpmi.c
parent0c5dc12d73b0b5f31cee2582531c34dde117d4f7 (diff)
downloadopensbi-8d8cc9507bd79afbe5c29b5d82868269691152f9.zip
opensbi-8d8cc9507bd79afbe5c29b5d82868269691152f9.tar.gz
opensbi-8d8cc9507bd79afbe5c29b5d82868269691152f9.tar.bz2
lib: utils: Mark RPMI drivers as experimental
These drivers were merged on an experimental basis without the RPMI specification being frozen. As a result, they may not be compatible with the frozen version of the RPMI protocol. Additionally, their devicetree bindings have not been reviewed and are subject to change. Warn the user that these drivers make no compatibility guarantees, and that their behavior and devicetree bindings may change incompatibly in future versions of OpenSBI. Signed-off-by: Samuel Holland <samuel.holland@sifive.com> Reviewed-by: Anup Patel <anup@brainfault.org>
Diffstat (limited to 'lib/utils/cppc/fdt_cppc_rpmi.c')
-rw-r--r--lib/utils/cppc/fdt_cppc_rpmi.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/utils/cppc/fdt_cppc_rpmi.c b/lib/utils/cppc/fdt_cppc_rpmi.c
index 4946ed1..9532840 100644
--- a/lib/utils/cppc/fdt_cppc_rpmi.c
+++ b/lib/utils/cppc/fdt_cppc_rpmi.c
@@ -370,4 +370,5 @@ static const struct fdt_match rpmi_cppc_match[] = {
struct fdt_driver fdt_cppc_rpmi = {
.match_table = rpmi_cppc_match,
.init = rpmi_cppc_cold_init,
+ .experimental = true,
};