diff options
author | Marek Belisko <marek@goldelico.com> | 2014-12-03 16:33:21 -0500 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2015-01-13 05:53:15 -0500 |
commit | 1a257be1f9b0a9979628c69d046dd1ce2c80a73b (patch) | |
tree | 1551396020554b23b07e2a77fd4d30c376a8badc | |
parent | 0e8787313a00d4202aad249d0734a30bbde1485b (diff) |
Documentation: DT: Add documentation for ti,opa362 bindings
Signed-off-by: Marek Belisko <marek@goldelico.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r-- | Documentation/devicetree/bindings/video/ti,opa362.txt | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/video/ti,opa362.txt b/Documentation/devicetree/bindings/video/ti,opa362.txt new file mode 100644 index 000000000000..f96083c0bd17 --- /dev/null +++ b/Documentation/devicetree/bindings/video/ti,opa362.txt | |||
@@ -0,0 +1,38 @@ | |||
1 | OPA362 analog video amplifier | ||
2 | |||
3 | Required properties: | ||
4 | - compatible: "ti,opa362" | ||
5 | - enable-gpios: enable/disable output gpio | ||
6 | |||
7 | Required node: | ||
8 | - Video port 0 for opa362 input | ||
9 | - Video port 1 for opa362 output | ||
10 | |||
11 | Example: | ||
12 | |||
13 | tv_amp: opa362 { | ||
14 | compatible = "ti,opa362"; | ||
15 | enable-gpios = <&gpio1 23 0>; /* GPIO to enable video out amplifier */ | ||
16 | |||
17 | ports { | ||
18 | #address-cells = <1>; | ||
19 | #size-cells = <0>; | ||
20 | |||
21 | port@0 { | ||
22 | reg = <0>; | ||
23 | opa_in: endpoint@0 { | ||
24 | remote-endpoint = <&venc_out>; | ||
25 | }; | ||
26 | }; | ||
27 | |||
28 | port@1 { | ||
29 | reg = <1>; | ||
30 | opa_out: endpoint@0 { | ||
31 | remote-endpoint = <&tv_connector_in>; | ||
32 | }; | ||
33 | }; | ||
34 | }; | ||
35 | }; | ||
36 | |||
37 | |||
38 | |||