1*d5b0e70fSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 2*d5b0e70fSEmmanuel Vadot# Copyright 2019 Manivannan Sadhasivam <mani@kernel.org> 3*d5b0e70fSEmmanuel Vadot%YAML 1.2 4*d5b0e70fSEmmanuel Vadot--- 5*d5b0e70fSEmmanuel Vadot$id: "http://devicetree.org/schemas/reset/bitmain,bm1880-reset.yaml#" 6*d5b0e70fSEmmanuel Vadot$schema: "http://devicetree.org/meta-schemas/core.yaml#" 7*d5b0e70fSEmmanuel Vadot 8*d5b0e70fSEmmanuel Vadottitle: Bitmain BM1880 SoC Reset Controller 9*d5b0e70fSEmmanuel Vadot 10*d5b0e70fSEmmanuel Vadotmaintainers: 11*d5b0e70fSEmmanuel Vadot - Manivannan Sadhasivam <mani@kernel.org> 12*d5b0e70fSEmmanuel Vadot 13*d5b0e70fSEmmanuel Vadotproperties: 14*d5b0e70fSEmmanuel Vadot compatible: 15*d5b0e70fSEmmanuel Vadot const: bitmain,bm1880-reset 16*d5b0e70fSEmmanuel Vadot 17*d5b0e70fSEmmanuel Vadot reg: 18*d5b0e70fSEmmanuel Vadot maxItems: 1 19*d5b0e70fSEmmanuel Vadot 20*d5b0e70fSEmmanuel Vadot "#reset-cells": 21*d5b0e70fSEmmanuel Vadot const: 1 22*d5b0e70fSEmmanuel Vadot 23*d5b0e70fSEmmanuel Vadotrequired: 24*d5b0e70fSEmmanuel Vadot - compatible 25*d5b0e70fSEmmanuel Vadot - reg 26*d5b0e70fSEmmanuel Vadot - "#reset-cells" 27*d5b0e70fSEmmanuel Vadot 28*d5b0e70fSEmmanuel VadotadditionalProperties: false 29*d5b0e70fSEmmanuel Vadot 30*d5b0e70fSEmmanuel Vadotexamples: 31*d5b0e70fSEmmanuel Vadot - | 32*d5b0e70fSEmmanuel Vadot rst: reset-controller@c00 { 33*d5b0e70fSEmmanuel Vadot compatible = "bitmain,bm1880-reset"; 34*d5b0e70fSEmmanuel Vadot reg = <0xc00 0x8>; 35*d5b0e70fSEmmanuel Vadot #reset-cells = <1>; 36*d5b0e70fSEmmanuel Vadot }; 37