1*ae5de77eSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*ae5de77eSEmmanuel Vadot%YAML 1.2 3*ae5de77eSEmmanuel Vadot--- 4*ae5de77eSEmmanuel Vadot$id: http://devicetree.org/schemas/reset/thead,th1520-reset.yaml# 5*ae5de77eSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*ae5de77eSEmmanuel Vadot 7*ae5de77eSEmmanuel Vadottitle: T-HEAD TH1520 SoC Reset Controller 8*ae5de77eSEmmanuel Vadot 9*ae5de77eSEmmanuel Vadotdescription: 10*ae5de77eSEmmanuel Vadot The T-HEAD TH1520 reset controller is a hardware block that asserts/deasserts 11*ae5de77eSEmmanuel Vadot resets for SoC subsystems. 12*ae5de77eSEmmanuel Vadot 13*ae5de77eSEmmanuel Vadotmaintainers: 14*ae5de77eSEmmanuel Vadot - Michal Wilczynski <m.wilczynski@samsung.com> 15*ae5de77eSEmmanuel Vadot 16*ae5de77eSEmmanuel Vadotproperties: 17*ae5de77eSEmmanuel Vadot compatible: 18*ae5de77eSEmmanuel Vadot enum: 19*ae5de77eSEmmanuel Vadot - thead,th1520-reset 20*ae5de77eSEmmanuel Vadot 21*ae5de77eSEmmanuel Vadot reg: 22*ae5de77eSEmmanuel Vadot maxItems: 1 23*ae5de77eSEmmanuel Vadot 24*ae5de77eSEmmanuel Vadot "#reset-cells": 25*ae5de77eSEmmanuel Vadot const: 1 26*ae5de77eSEmmanuel Vadot 27*ae5de77eSEmmanuel Vadotrequired: 28*ae5de77eSEmmanuel Vadot - compatible 29*ae5de77eSEmmanuel Vadot - reg 30*ae5de77eSEmmanuel Vadot - "#reset-cells" 31*ae5de77eSEmmanuel Vadot 32*ae5de77eSEmmanuel VadotadditionalProperties: false 33*ae5de77eSEmmanuel Vadot 34*ae5de77eSEmmanuel Vadotexamples: 35*ae5de77eSEmmanuel Vadot - | 36*ae5de77eSEmmanuel Vadot soc { 37*ae5de77eSEmmanuel Vadot #address-cells = <2>; 38*ae5de77eSEmmanuel Vadot #size-cells = <2>; 39*ae5de77eSEmmanuel Vadot rst: reset-controller@ffef528000 { 40*ae5de77eSEmmanuel Vadot compatible = "thead,th1520-reset"; 41*ae5de77eSEmmanuel Vadot reg = <0xff 0xef528000 0x0 0x1000>; 42*ae5de77eSEmmanuel Vadot #reset-cells = <1>; 43*ae5de77eSEmmanuel Vadot }; 44*ae5de77eSEmmanuel Vadot }; 45