diff options
| author | Samuel Holland <samuel.holland@sifive.com> | 2024-12-19 08:02:39 +0300 |
|---|---|---|
| committer | Anup Patel <anup@brainfault.org> | 2024-12-21 15:52:47 +0300 |
| commit | 8d8cc9507bd79afbe5c29b5d82868269691152f9 (patch) | |
| tree | 8aa112d2a7564f9e4ec23b2edf51a7195a5d4416 /include | |
| parent | 0c5dc12d73b0b5f31cee2582531c34dde117d4f7 (diff) | |
| download | opensbi-8d8cc9507bd79afbe5c29b5d82868269691152f9.tar.xz | |
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 'include')
| -rw-r--r-- | include/sbi_utils/fdt/fdt_driver.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sbi_utils/fdt/fdt_driver.h b/include/sbi_utils/fdt/fdt_driver.h index f6fd26f..12ffe3f 100644 --- a/include/sbi_utils/fdt/fdt_driver.h +++ b/include/sbi_utils/fdt/fdt_driver.h @@ -15,6 +15,7 @@ struct fdt_driver { const struct fdt_match *match_table; int (*init)(const void *fdt, int nodeoff, const struct fdt_match *match); + bool experimental; }; /** |
