From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 57FACC43218 for ; Tue, 11 Jun 2019 14:05:04 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 300FF21721 for ; Tue, 11 Jun 2019 14:05:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2390170AbfFKOFD (ORCPT ); Tue, 11 Jun 2019 10:05:03 -0400 Received: from imap1.codethink.co.uk ([176.9.8.82]:55710 "EHLO imap1.codethink.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2387778AbfFKOFB (ORCPT ); Tue, 11 Jun 2019 10:05:01 -0400 Received: from [167.98.27.226] (helo=happy.office.codethink.co.uk) by imap1.codethink.co.uk with esmtpsa (Exim 4.84_2 #1 (Debian)) id 1hahOU-0003vU-ME; Tue, 11 Jun 2019 15:04:58 +0100 From: Michael Drake To: Andrzej Hajda , Laurent Pinchart , dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Michael Drake Cc: David Airlie , Daniel Vetter , Rob Herring , Mark Rutland , linux-kernel@lists.codethink.co.uk, Patrick Glaser , Nate Case Subject: [PATCH v1 08/11] dt-bindings: display/bridge: Add bindings for ti949 Date: Tue, 11 Jun 2019 15:04:09 +0100 Message-Id: <20190611140412.32151-9-michael.drake@codethink.co.uk> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190611140412.32151-1-michael.drake@codethink.co.uk> References: <20190611140412.32151-1-michael.drake@codethink.co.uk> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Adds device tree bindings for: TI DS90UB949-Q1 1080p HDMI to FPD-Link III bridge serializer It supports instantiation via device tree / ACPI table. The device has the compatible string "ti,ds90ub949", and and allows an arrray of strings to be provided as regulator names to enable for operation of the device. Signed-off-by: Michael Drake Cc: Patrick Glaser Cc: Nate Case --- .../bindings/display/bridge/ti,ds90ub949.txt | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Documentation/devicetree/bindings/display/bridge/ti,ds90ub949.txt diff --git a/Documentation/devicetree/bindings/display/bridge/ti,ds90ub949.txt b/Documentation/devicetree/bindings/display/bridge/ti,ds90ub949.txt new file mode 100644 index 000000000000..3ba3897d5e81 --- /dev/null +++ b/Documentation/devicetree/bindings/display/bridge/ti,ds90ub949.txt @@ -0,0 +1,24 @@ +TI DS90UB949-Q1 1080p HDMI to FPD-Link III bridge serializer +============================================================ + +This is the binding for Texas Instruments DS90UB949-Q1 bridge serializer. + +This device supports I2C only. + +Required properties: + +- compatible: "ti,ds90ub949" + +Optional properties: + +- regulators: List of regulator name strings to enable for operation of device. + +Example +------- + +ti949: ds90ub949@0 { + compatible = "ti,ds90ub949"; + + regulators: "vcc", + "vcc_hdmi"; +}; -- 2.20.1