1*7d0873ebSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*7d0873ebSEmmanuel Vadot%YAML 1.2 3*7d0873ebSEmmanuel Vadot--- 4*7d0873ebSEmmanuel Vadot$id: http://devicetree.org/schemas/soc/renesas/renesas,r9a09g057-sys.yaml# 5*7d0873ebSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*7d0873ebSEmmanuel Vadot 7*7d0873ebSEmmanuel Vadottitle: Renesas RZ/V2H(P) System Controller (SYS) 8*7d0873ebSEmmanuel Vadot 9*7d0873ebSEmmanuel Vadotmaintainers: 10*7d0873ebSEmmanuel Vadot - Geert Uytterhoeven <geert+renesas@glider.be> 11*7d0873ebSEmmanuel Vadot 12*7d0873ebSEmmanuel Vadotdescription: | 13*7d0873ebSEmmanuel Vadot The RZ/V2H(P) SYS (System Controller) controls the overall 14*7d0873ebSEmmanuel Vadot configuration of the LSI and supports the following functions, 15*7d0873ebSEmmanuel Vadot - Trust zone control 16*7d0873ebSEmmanuel Vadot - Extend access by specific masters to address beyond 4GB space 17*7d0873ebSEmmanuel Vadot - GBETH configuration 18*7d0873ebSEmmanuel Vadot - Control of settings and states of SRAM/PCIe/CM33/CA55/CR8/xSPI/ADC/TSU 19*7d0873ebSEmmanuel Vadot - LSI version 20*7d0873ebSEmmanuel Vadot - WDT stop control 21*7d0873ebSEmmanuel Vadot - General registers 22*7d0873ebSEmmanuel Vadot 23*7d0873ebSEmmanuel Vadotproperties: 24*7d0873ebSEmmanuel Vadot compatible: 25*7d0873ebSEmmanuel Vadot const: renesas,r9a09g057-sys 26*7d0873ebSEmmanuel Vadot 27*7d0873ebSEmmanuel Vadot reg: 28*7d0873ebSEmmanuel Vadot maxItems: 1 29*7d0873ebSEmmanuel Vadot 30*7d0873ebSEmmanuel Vadot clocks: 31*7d0873ebSEmmanuel Vadot maxItems: 1 32*7d0873ebSEmmanuel Vadot 33*7d0873ebSEmmanuel Vadot resets: 34*7d0873ebSEmmanuel Vadot maxItems: 1 35*7d0873ebSEmmanuel Vadot 36*7d0873ebSEmmanuel Vadotrequired: 37*7d0873ebSEmmanuel Vadot - compatible 38*7d0873ebSEmmanuel Vadot - reg 39*7d0873ebSEmmanuel Vadot - clocks 40*7d0873ebSEmmanuel Vadot - resets 41*7d0873ebSEmmanuel Vadot 42*7d0873ebSEmmanuel VadotadditionalProperties: false 43*7d0873ebSEmmanuel Vadot 44*7d0873ebSEmmanuel Vadotexamples: 45*7d0873ebSEmmanuel Vadot - | 46*7d0873ebSEmmanuel Vadot sys: system-controller@10430000 { 47*7d0873ebSEmmanuel Vadot compatible = "renesas,r9a09g057-sys"; 48*7d0873ebSEmmanuel Vadot reg = <0x10430000 0x10000>; 49*7d0873ebSEmmanuel Vadot clocks = <&cpg 1>; 50*7d0873ebSEmmanuel Vadot resets = <&cpg 1>; 51*7d0873ebSEmmanuel Vadot }; 52