Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/soc/xilinx/xlnx,vcu-settings.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Xilinx VCU Settings
0008 
0009 maintainers:
0010   - Michael Tretter <kernel@pengutronix.de>
0011 
0012 description: |
0013   The Xilinx VCU Settings provides information about the configuration of the
0014   video codec unit.
0015 
0016 properties:
0017   compatible:
0018     items:
0019       - const: xlnx,vcu-settings
0020       - const: syscon
0021 
0022   reg:
0023     maxItems: 1
0024 
0025 required:
0026   - compatible
0027   - reg
0028 
0029 additionalProperties: false
0030 
0031 examples:
0032   - |
0033     fpga {
0034         #address-cells = <2>;
0035         #size-cells = <2>;
0036 
0037         xlnx_vcu: vcu@a0041000 {
0038             compatible = "xlnx,vcu-settings", "syscon";
0039             reg = <0x0 0xa0041000 0x0 0x1000>;
0040         };
0041     };
0042 
0043 ...