0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/clock/toshiba,tmpv770x-pismu.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Toshiba Visconti5 TMPV770x SMU controller Device Tree Bindings
0008
0009 maintainers:
0010 - Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
0011
0012 description:
0013 Toshia Visconti5 SMU (System Management Unit) which supports the clock
0014 and resets on TMPV770x.
0015
0016 properties:
0017 compatible:
0018 items:
0019 - const: toshiba,tmpv7708-pismu
0020 - const: syscon
0021
0022 reg:
0023 maxItems: 1
0024
0025 '#clock-cells':
0026 const: 1
0027
0028 '#reset-cells':
0029 const: 1
0030
0031 required:
0032 - compatible
0033 - reg
0034 - "#clock-cells"
0035 - "#reset-cells"
0036
0037 additionalProperties: false
0038
0039 examples:
0040 - |
0041 soc {
0042 #address-cells = <2>;
0043 #size-cells = <2>;
0044
0045 pismu: syscon@24200000 {
0046 compatible = "toshiba,tmpv7708-pismu", "syscon";
0047 reg = <0 0x24200000 0 0x2140>;
0048 #clock-cells = <1>;
0049 #reset-cells = <1>;
0050 };
0051 };
0052 ...