From patchwork Wed Mar 27 08:45:19 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tomi Valkeinen X-Patchwork-Id: 2348281 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id C55F0E014A for ; Wed, 27 Mar 2013 08:46:51 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754398Ab3C0Iqp (ORCPT ); Wed, 27 Mar 2013 04:46:45 -0400 Received: from comal.ext.ti.com ([198.47.26.152]:47702 "EHLO comal.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754186Ab3C0Iqm (ORCPT ); Wed, 27 Mar 2013 04:46:42 -0400 Received: from dlelxv30.itg.ti.com ([172.17.2.17]) by comal.ext.ti.com (8.13.7/8.13.7) with ESMTP id r2R8kaRr006719; Wed, 27 Mar 2013 03:46:36 -0500 Received: from DFLE73.ent.ti.com (dfle73.ent.ti.com [128.247.5.110]) by dlelxv30.itg.ti.com (8.13.8/8.13.8) with ESMTP id r2R8ka5i020364; Wed, 27 Mar 2013 03:46:36 -0500 Received: from dlelxv22.itg.ti.com (172.17.1.197) by DFLE73.ent.ti.com (128.247.5.110) with Microsoft SMTP Server id 14.2.342.3; Wed, 27 Mar 2013 03:46:36 -0500 Received: from deskari.tieu.ti.com (h64-4.vpn.ti.com [172.24.64.4]) by dlelxv22.itg.ti.com (8.13.8/8.13.8) with ESMTP id r2R8k4D5030367; Wed, 27 Mar 2013 03:46:34 -0500 From: Tomi Valkeinen To: , , , CC: Archit Taneja , Andy Gross , Tony Lindgren , Benoit Cousson , Santosh Shilimkar , Tomi Valkeinen Subject: [RFC 12/14] ARM: omap4-sdp.dts: add display information Date: Wed, 27 Mar 2013 10:45:19 +0200 Message-ID: <1364373921-7599-13-git-send-email-tomi.valkeinen@ti.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1364373921-7599-1-git-send-email-tomi.valkeinen@ti.com> References: <1364373921-7599-1-git-send-email-tomi.valkeinen@ti.com> MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org Signed-off-by: Tomi Valkeinen --- arch/arm/boot/dts/omap4-sdp.dts | 64 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/arch/arm/boot/dts/omap4-sdp.dts b/arch/arm/boot/dts/omap4-sdp.dts index 43e5258..3bef36e 100644 --- a/arch/arm/boot/dts/omap4-sdp.dts +++ b/arch/arm/boot/dts/omap4-sdp.dts @@ -428,3 +428,67 @@ &twl_usb_comparator { usb-supply = <&vusb>; }; + +&dsi1 { + vdds_dsi-supply = <&vcxio>; +}; + +&dsi2 { + vdds_dsi-supply = <&vcxio>; +}; + +&hdmi { + vdda_hdmi_dac-supply = <&vdac>; +}; + +/ { + lcd { + compatible = "tpo,taal"; + + video-source = <&dsi1>; + + lanes = < + 0 /* clk + */ + 1 /* clk - */ + 2 /* data1 + */ + 3 /* data1 - */ + 4 /* data2 + */ + 5 /* data2 - */ + >; + + gpios = <&gpio4 6 0>; /* 102, reset */ + }; + + lcd2 { + compatible = "tpo,taal"; + + video-source = <&dsi2>; + + lanes = < + 0 /* clk + */ + 1 /* clk - */ + 2 /* data1 + */ + 3 /* data1 - */ + 4 /* data2 + */ + 5 /* data2 - */ + >; + + gpios = <&gpio4 8 0>; /* 104, reset */ + }; + + tpd12s015: tpd12s015 { + compatible = "ti,tpd12s015"; + + video-source = <&hdmi>; + + gpios = <&gpio2 28 0>, /* 60, CT CP HPD */ + <&gpio2 9 0>, /* 41, LS OE */ + <&gpio2 31 0>; /* 63, HPD */ + }; + + hdmi { + compatible = "ti,hdmi_connector"; + + video-source = <&tpd12s015>; + }; +};