diff options
author | Rob Clark <robdclark@gmail.com> | 2013-01-23 02:02:21 +0400 |
---|---|---|
committer | Rob Clark <robdclark@gmail.com> | 2013-02-20 02:57:44 +0400 |
commit | 6e8de0bd6a51fdeebd5d975c4fcc426f730b339b (patch) | |
tree | 16578d6569e031751ddfbb3db2991833c70201dd /Documentation | |
parent | e7792ce2da5ded80861db787ace9b57ecf7bc96c (diff) | |
download | linux-6e8de0bd6a51fdeebd5d975c4fcc426f730b339b.tar.xz |
drm/tilcdc: add encoder slave (v2)
Add output panel driver for i2c encoder slaves.
v1: original
v2: add DT bindings docs, and minor updates for review comments
Signed-off-by: Rob Clark <robdclark@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Tested-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/drm/tilcdc/slave.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/drm/tilcdc/slave.txt b/Documentation/devicetree/bindings/drm/tilcdc/slave.txt new file mode 100644 index 000000000000..3d2c52460dca --- /dev/null +++ b/Documentation/devicetree/bindings/drm/tilcdc/slave.txt @@ -0,0 +1,18 @@ +Device-Tree bindings for tilcdc DRM encoder slave output driver + +Required properties: + - compatible: value should be "ti,tilcdc,slave". + - i2c: the phandle for the i2c device the encoder slave is connected to + +Recommended properties: + - pinctrl-names, pinctrl-0: the pincontrol settings to configure + muxing properly for pins that connect to TFP410 device + +Example: + + hdmi { + compatible = "ti,tilcdc,slave"; + i2c = <&i2c0>; + pinctrl-names = "default"; + pinctrl-0 = <&nxp_hdmi_bonelt_pins>; + }; |