The RISC-V privileged ISA mandates the presence of an SBI, but there's no reason not to put it in the device tree. This would allow us to possibly remove the SBI later. CC: Jonathan Neuschäfer <j.neuschaefer@xxxxxxx> Signed-off-by: Palmer Dabbelt <palmer@xxxxxxxxxx> --- .../devicetree/bindings/firmware/riscv.sbi.txt | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Documentation/devicetree/bindings/firmware/riscv.sbi.txt diff --git a/Documentation/devicetree/bindings/firmware/riscv.sbi.txt b/Documentation/devicetree/bindings/firmware/riscv.sbi.txt new file mode 100644 index 000000000000..42384d5d52cf --- /dev/null +++ b/Documentation/devicetree/bindings/firmware/riscv.sbi.txt @@ -0,0 +1,20 @@ +RISC-V Supervisor Binary Interface (SBI) + +The RISC-V privileged ISA specification mandates the presence of a supervisor +binary interface that performs some operations which might otherwise require +particularly complicated instructions. This interface includes +inter-processor interrupts, TLB flushes, i-cache and TLB shootdowns, a +console, and power management. + +Required properties: +- compatible: must contain one of the following + * "riscv,sbi" for the SBI defined by the privileged specification of the + system. + +Example: + +firmware { + sbi { + compatible = "riscv,sbi"; + }; +}; -- 2.13.6 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html