brintos

brintos / linux-shallow public Read only

0
0
Text · 1.0 KiB · 15d7413 Raw
47 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0+ OR MIT)2# Copyright (c) 2019 Amlogic, Inc3# Author: Jianxin Pan <jianxin.pan@amlogic.com>4%YAML 1.25---6$id: http://devicetree.org/schemas/power/amlogic,meson-sec-pwrc.yaml#7$schema: http://devicetree.org/meta-schemas/core.yaml#8 9title: Amlogic Meson Secure Power Domains10 11maintainers:12  - Jianxin Pan <jianxin.pan@amlogic.com>13 14description: |+15  Secure Power Domains used in Meson A1/C1/S4 & C3/T7 SoCs, and should be the child node16  of secure-monitor.17 18properties:19  compatible:20    enum:21      - amlogic,meson-a1-pwrc22      - amlogic,meson-s4-pwrc23      - amlogic,a4-pwrc24      - amlogic,a5-pwrc25      - amlogic,c3-pwrc26      - amlogic,t7-pwrc27 28  "#power-domain-cells":29    const: 130 31required:32  - compatible33  - "#power-domain-cells"34 35additionalProperties: false36 37examples:38  - |39    secure-monitor {40        compatible = "amlogic,meson-gxbb-sm";41 42        pwrc: power-controller {43            compatible = "amlogic,meson-a1-pwrc";44            #power-domain-cells = <1>;45        };46    };47