brintos

brintos / linux-shallow public Read only

0
0
Text · 751 B · 2aed3b4 Raw
34 lines · plain
1Xilinx Video Timing Controller (VTC)2------------------------------------3 4The Video Timing Controller is a general purpose video timing generator and5detector.6 7Required properties:8 9  - compatible: Must be "xlnx,v-tc-6.1".10 11  - reg: Physical base address and length of the registers set for the device.12 13  - clocks: Must contain a clock specifier for the VTC core and timing14    interfaces clock.15 16Optional properties:17 18  - xlnx,detector: The VTC has a timing detector19  - xlnx,generator: The VTC has a timing generator20 21  At least one of the xlnx,detector and xlnx,generator properties must be22  specified.23 24 25Example:26 27	vtc: vtc@43c40000 {28		compatible = "xlnx,v-tc-6.1";29		reg = <0x43c40000 0x10000>;30 31		clocks = <&clkc 15>;32		xlnx,generator;33	};34