1*5def4c47SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 2*5def4c47SEmmanuel Vadot%YAML 1.2 3*5def4c47SEmmanuel Vadot--- 4*5def4c47SEmmanuel Vadot$id: http://devicetree.org/schemas/soc/xilinx/xlnx,vcu-settings.yaml# 5*5def4c47SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*5def4c47SEmmanuel Vadot 7*5def4c47SEmmanuel Vadottitle: Xilinx VCU Settings 8*5def4c47SEmmanuel Vadot 9*5def4c47SEmmanuel Vadotmaintainers: 10*5def4c47SEmmanuel Vadot - Michael Tretter <kernel@pengutronix.de> 11*5def4c47SEmmanuel Vadot 12*5def4c47SEmmanuel Vadotdescription: | 13*5def4c47SEmmanuel Vadot The Xilinx VCU Settings provides information about the configuration of the 14*5def4c47SEmmanuel Vadot video codec unit. 15*5def4c47SEmmanuel Vadot 16*5def4c47SEmmanuel Vadotproperties: 17*5def4c47SEmmanuel Vadot compatible: 18*5def4c47SEmmanuel Vadot items: 19*5def4c47SEmmanuel Vadot - const: xlnx,vcu-settings 20*5def4c47SEmmanuel Vadot - const: syscon 21*5def4c47SEmmanuel Vadot 22*5def4c47SEmmanuel Vadot reg: 23*5def4c47SEmmanuel Vadot maxItems: 1 24*5def4c47SEmmanuel Vadot 25*5def4c47SEmmanuel Vadotrequired: 26*5def4c47SEmmanuel Vadot - compatible 27*5def4c47SEmmanuel Vadot - reg 28*5def4c47SEmmanuel Vadot 29*5def4c47SEmmanuel VadotadditionalProperties: false 30*5def4c47SEmmanuel Vadot 31*5def4c47SEmmanuel Vadotexamples: 32*5def4c47SEmmanuel Vadot - | 33*5def4c47SEmmanuel Vadot fpga { 34*5def4c47SEmmanuel Vadot #address-cells = <2>; 35*5def4c47SEmmanuel Vadot #size-cells = <2>; 36*5def4c47SEmmanuel Vadot 37*5def4c47SEmmanuel Vadot xlnx_vcu: vcu@a0041000 { 38*5def4c47SEmmanuel Vadot compatible = "xlnx,vcu-settings", "syscon"; 39*5def4c47SEmmanuel Vadot reg = <0x0 0xa0041000 0x0 0x1000>; 40*5def4c47SEmmanuel Vadot }; 41*5def4c47SEmmanuel Vadot }; 42*5def4c47SEmmanuel Vadot 43*5def4c47SEmmanuel Vadot... 44