Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: "http://devicetree.org/schemas/mips/loongson/ls2k-reset.yaml#"
0005 $schema: "http://devicetree.org/meta-schemas/core.yaml#"
0006 
0007 title: Loongson 2K1000 PM Controller
0008 
0009 maintainers:
0010   - Qing Zhang <zhangqing@loongson.cn>
0011 
0012 description: |
0013   This controller can be found in Loongson-2K1000 Soc systems.
0014 
0015 properties:
0016   compatible:
0017     const: loongson,ls2k-pm
0018 
0019   reg:
0020     maxItems: 1
0021 
0022 required:
0023   - compatible
0024   - reg
0025 
0026 additionalProperties: false
0027 
0028 examples:
0029   - |
0030     bus {
0031         #address-cells = <2>;
0032         #size-cells = <2>;
0033         pm: reset-controller@1fe07000 {
0034             compatible = "loongson,ls2k-pm";
0035             reg = <0 0x1fe07000 0 0x422>;
0036         };
0037     };
0038 ...