1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/reset/eswin,eic7700-reset.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: ESWIN EIC7700 SoC reset controller 8 9maintainers: 10 - Yifeng Huang <huangyifeng@eswincomputing.com> 11 - Xuyang Dong <dongxuyang@eswincomputing.com> 12 13description: 14 The system reset controller can be used to reset various peripheral 15 controllers in ESWIN eic7700 SoC. 16 17properties: 18 compatible: 19 const: eswin,eic7700-reset 20 21 reg: 22 maxItems: 1 23 24 '#reset-cells': 25 const: 1 26 27required: 28 - compatible 29 - reg 30 - '#reset-cells' 31 32additionalProperties: false 33 34examples: 35 - | 36 #include <dt-bindings/reset/eswin,eic7700-reset.h> 37 38 reset-controller@51828300 { 39 compatible = "eswin,eic7700-reset"; 40 reg = <0x51828300 0x200>; 41 #reset-cells = <1>; 42 }; 43