[PATCH v1 1/6] dt-bindings: peci: Add StarFive JHB100 PECI controller
From: Changhuang Liang
Date: Thu Sep 03 2026 - 09:45:27 EST
Add device tree bindings for the Platform Environment Control Interface
(PECI) controller found on StarFive JHB100 SoC.
Co-developed-by: Mason Huo <mason.huo@xxxxxxxxxxxxxxxx>
Signed-off-by: Mason Huo <mason.huo@xxxxxxxxxxxxxxxx>
Signed-off-by: Changhuang Liang <changhuang.liang@xxxxxxxxxxxxxxxx>
---
.../bindings/peci/starfive,jhb100-peci.yaml | 57 +++++++++++++++++++
1 file changed, 57 insertions(+)
create mode 100644 Documentation/devicetree/bindings/peci/starfive,jhb100-peci.yaml
diff --git a/Documentation/devicetree/bindings/peci/starfive,jhb100-peci.yaml b/Documentation/devicetree/bindings/peci/starfive,jhb100-peci.yaml
new file mode 100644
index 000000000000..fd71a98b5584
--- /dev/null
+++ b/Documentation/devicetree/bindings/peci/starfive,jhb100-peci.yaml
@@ -0,0 +1,57 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/peci/starfive,jhb100-peci.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: StarFive JHB100 PECI Controller
+
+maintainers:
+ - Changhuang Liang <changhuang.liang@xxxxxxxxxxxxxxxx>
+ - Mason Huo <mason.huo@xxxxxxxxxxxxxxxx>
+
+allOf:
+ - $ref: peci-controller.yaml#
+
+properties:
+ compatible:
+ enum:
+ - starfive,jhb100-peci
+
+ reg:
+ maxItems: 1
+
+ interrupts:
+ maxItems: 1
+
+ clocks:
+ maxItems: 1
+
+ resets:
+ maxItems: 1
+
+ cmd-timeout-ms:
+ minimum: 1
+ maximum: 1000
+ default: 1000
+
+required:
+ - compatible
+ - reg
+ - interrupts
+ - clocks
+ - resets
+
+additionalProperties: false
+
+examples:
+ - |
+ peci-controller@11c60000 {
+ compatible = "starfive,jhb100-peci";
+ reg = <0x11c60000 0x400>;
+ interrupts = <222>;
+ clocks = <&per3crg 34>;
+ resets = <&per3crg 3>;
+ cmd-timeout-ms = <1000>;
+ };
+...
--
2.25.1