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