46 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/power/starfive,jh7110-pmu.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: StarFive JH7110 Power Management Unit8 9maintainers:10 - Walker Chen <walker.chen@starfivetech.com>11 12description: |13 StarFive JH7110 SoC includes support for multiple power domains which can be14 powered on/off by software based on different application scenes to save power.15 16properties:17 compatible:18 enum:19 - starfive,jh7110-pmu20 21 reg:22 maxItems: 123 24 interrupts:25 maxItems: 126 27 "#power-domain-cells":28 const: 129 30required:31 - compatible32 - reg33 - interrupts34 - "#power-domain-cells"35 36additionalProperties: false37 38examples:39 - |40 pwrc: power-controller@17030000 {41 compatible = "starfive,jh7110-pmu";42 reg = <0x17030000 0x10000>;43 interrupts = <111>;44 #power-domain-cells = <1>;45 };46