From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752451AbcFTHov (ORCPT ); Mon, 20 Jun 2016 03:44:51 -0400 Received: from mail-pa0-f44.google.com ([209.85.220.44]:35227 "EHLO mail-pa0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751872AbcFTHon (ORCPT ); Mon, 20 Jun 2016 03:44:43 -0400 From: Nicolas Boichat To: dri-devel@lists.freedesktop.org Cc: David Airlie , Thierry Reding , Nicolas Boichat , Russell King , Inki Dae , Yakir Yang , Enric Balletbo i Serra , Heiko Stuebner , linux-kernel@vger.kernel.org, djkurtz@chromium.org, p.zabel@pengutronix.de, marcheu@chromium.org Subject: [RFC PATCH 2/2] devicetree: Add ANX7688 transmitter binding Date: Mon, 20 Jun 2016 15:14:13 +0800 Message-Id: <1466406853-26465-2-git-send-email-drinkcat@chromium.org> X-Mailer: git-send-email 2.8.0.rc3.226.g39d4020 In-Reply-To: <1466406853-26465-1-git-send-email-drinkcat@chromium.org> References: <1466406853-26465-1-git-send-email-drinkcat@chromium.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org ANX7688 is a transmitter to support DisplayPort over USB-C for smartphone and tablets. This binding only describes the HDMI to DP component of the chip. Signed-off-by: Nicolas Boichat --- .../devicetree/bindings/video/bridge/anx7688.txt | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Documentation/devicetree/bindings/video/bridge/anx7688.txt diff --git a/Documentation/devicetree/bindings/video/bridge/anx7688.txt b/Documentation/devicetree/bindings/video/bridge/anx7688.txt new file mode 100644 index 0000000..78b55bd --- /dev/null +++ b/Documentation/devicetree/bindings/video/bridge/anx7688.txt @@ -0,0 +1,32 @@ +Analogix ANX7688 SlimPort (Single-Chip Transmitter for DP over USB-C) +--------------------------------------------------------------------- + +The ANX7688 is a single-chip mobile transmitter to support 4K 60 frames per +second (4096x2160p60) or FHD 120 frames per second (1920x1080p120) video +resolution from a smartphone or tablet with full function USB-C. + +This binding only describes the HDMI to DP display bridge. + +Required properties: + + - compatible : "analogix,anx7688" + - reg : I2C address of the device (fixed at 0x2c) + +Optional properties: + + - Video port for HDMI input, using the DT bindings defined in [1]. + +[1]: Documentation/devicetree/bindings/media/video-interfaces.txt + +Example: + + anx7688: anx7688@2c { + compatible = "analogix,anx7688"; + reg = <0x2c>; + + port { + anx7688_in: endpoint { + remote-endpoint = <&hdmi0_out>; + }; + }; + }; -- 2.8.0.rc3.226.g39d4020