xref: /freebsd/sys/contrib/device-tree/Bindings/media/i2c/adi,adv7343.txt (revision ae5de77ed78ae54d86cead5604869212e8008e6b)
1*ae5de77eSEmmanuel Vadot* Analog Devices adv7343 video encoder
2*ae5de77eSEmmanuel Vadot
3*ae5de77eSEmmanuel VadotThe ADV7343 are high speed, digital-to-analog video encoders in a 64-lead LQFP
4*ae5de77eSEmmanuel Vadotpackage. Six high speed, 3.3 V, 11-bit video DACs provide support for composite
5*ae5de77eSEmmanuel Vadot(CVBS), S-Video (Y-C), and component (YPrPb/RGB) analog outputs in standard
6*ae5de77eSEmmanuel Vadotdefinition (SD), enhanced definition (ED), or high definition (HD) video
7*ae5de77eSEmmanuel Vadotformats.
8*ae5de77eSEmmanuel Vadot
9*ae5de77eSEmmanuel VadotRequired Properties :
10*ae5de77eSEmmanuel Vadot- compatible: Must be "adi,adv7343"
11*ae5de77eSEmmanuel Vadot
12*ae5de77eSEmmanuel VadotOptional Properties :
13*ae5de77eSEmmanuel Vadot- adi,power-mode-sleep-mode: on enable the current consumption is reduced to
14*ae5de77eSEmmanuel Vadot			      micro ampere level. All DACs and the internal PLL
15*ae5de77eSEmmanuel Vadot			      circuit are disabled.
16*ae5de77eSEmmanuel Vadot- adi,power-mode-pll-ctrl: PLL and oversampling control. This control allows
17*ae5de77eSEmmanuel Vadot			   internal PLL 1 circuit to be powered down and the
18*ae5de77eSEmmanuel Vadot			   oversampling to be switched off.
19*ae5de77eSEmmanuel Vadot- ad,adv7343-power-mode-dac: array configuring the power on/off DAC's 1..6,
20*ae5de77eSEmmanuel Vadot			      0 = OFF and 1 = ON, Default value when this
21*ae5de77eSEmmanuel Vadot			      property is not specified is <0 0 0 0 0 0>.
22*ae5de77eSEmmanuel Vadot- ad,adv7343-sd-config-dac-out: array configure SD DAC Output's 1 and 2, 0 = OFF
23*ae5de77eSEmmanuel Vadot				 and 1 = ON, Default value when this property is
24*ae5de77eSEmmanuel Vadot				 not specified is <0 0>.
25*ae5de77eSEmmanuel Vadot
26*ae5de77eSEmmanuel VadotExample:
27*ae5de77eSEmmanuel Vadot
28*ae5de77eSEmmanuel Vadoti2c0@1c22000 {
29*ae5de77eSEmmanuel Vadot	...
30*ae5de77eSEmmanuel Vadot	...
31*ae5de77eSEmmanuel Vadot
32*ae5de77eSEmmanuel Vadot	adv7343@2a {
33*ae5de77eSEmmanuel Vadot		compatible = "adi,adv7343";
34*ae5de77eSEmmanuel Vadot		reg = <0x2a>;
35*ae5de77eSEmmanuel Vadot
36*ae5de77eSEmmanuel Vadot		port {
37*ae5de77eSEmmanuel Vadot			adv7343_1: endpoint {
38*ae5de77eSEmmanuel Vadot					adi,power-mode-sleep-mode;
39*ae5de77eSEmmanuel Vadot					adi,power-mode-pll-ctrl;
40*ae5de77eSEmmanuel Vadot					/* Use DAC1..3, DAC6 */
41*ae5de77eSEmmanuel Vadot					adi,dac-enable = <1 1 1 0 0 1>;
42*ae5de77eSEmmanuel Vadot					/* Use SD DAC output 1 */
43*ae5de77eSEmmanuel Vadot					adi,sd-dac-enable = <1 0>;
44*ae5de77eSEmmanuel Vadot			};
45*ae5de77eSEmmanuel Vadot		};
46*ae5de77eSEmmanuel Vadot	};
47*ae5de77eSEmmanuel Vadot	...
48*ae5de77eSEmmanuel Vadot};
49