1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/reset/canaan,k230-rst.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Canaan Kendryte K230 Reset Controller 8 9maintainers: 10 - Junhui Liu <junhui.liu@pigmoral.tech> 11 12description: 13 The Canaan Kendryte K230 reset controller is part of the SoC's system 14 controller and controls the reset registers for CPUs and various peripherals. 15 16properties: 17 compatible: 18 const: canaan,k230-rst 19 20 reg: 21 maxItems: 1 22 23 '#reset-cells': 24 const: 1 25 26required: 27 - compatible 28 - reg 29 - '#reset-cells' 30 31additionalProperties: false 32 33examples: 34 - | 35 reset-controller@91101000 { 36 compatible = "canaan,k230-rst"; 37 reg = <0x91101000 0x1000>; 38 #reset-cells = <1>; 39 }; 40