0001 Xilinx Video Timing Controller (VTC)
0002 ------------------------------------
0003
0004 The Video Timing Controller is a general purpose video timing generator and
0005 detector.
0006
0007 Required properties:
0008
0009 - compatible: Must be "xlnx,v-tc-6.1".
0010
0011 - reg: Physical base address and length of the registers set for the device.
0012
0013 - clocks: Must contain a clock specifier for the VTC core and timing
0014 interfaces clock.
0015
0016 Optional properties:
0017
0018 - xlnx,detector: The VTC has a timing detector
0019 - xlnx,generator: The VTC has a timing generator
0020
0021 At least one of the xlnx,detector and xlnx,generator properties must be
0022 specified.
0023
0024
0025 Example:
0026
0027 vtc: vtc@43c40000 {
0028 compatible = "xlnx,v-tc-6.1";
0029 reg = <0x43c40000 0x10000>;
0030
0031 clocks = <&clkc 15>;
0032 xlnx,generator;
0033 };