From patchwork Wed Mar 27 08:45:17 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tomi Valkeinen X-Patchwork-Id: 2348571 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 2888B3FD40 for ; Wed, 27 Mar 2013 08:54:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754421Ab3C0IyN (ORCPT ); Wed, 27 Mar 2013 04:54:13 -0400 Received: from arroyo.ext.ti.com ([192.94.94.40]:54523 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754227Ab3C0Iqh (ORCPT ); Wed, 27 Mar 2013 04:46:37 -0400 Received: from dlelxv30.itg.ti.com ([172.17.2.17]) by arroyo.ext.ti.com (8.13.7/8.13.7) with ESMTP id r2R8kVt7014145; Wed, 27 Mar 2013 03:46:31 -0500 Received: from DLEE70.ent.ti.com (dlee70.ent.ti.com [157.170.170.113]) by dlelxv30.itg.ti.com (8.13.8/8.13.8) with ESMTP id r2R8kVm7020287; Wed, 27 Mar 2013 03:46:31 -0500 Received: from dlelxv22.itg.ti.com (172.17.1.197) by DLEE70.ent.ti.com (157.170.170.113) with Microsoft SMTP Server id 14.2.342.3; Wed, 27 Mar 2013 03:46:31 -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 r2R8k4D3030367; Wed, 27 Mar 2013 03:46:29 -0500 From: Tomi Valkeinen To: , , , CC: Archit Taneja , Andy Gross , Tony Lindgren , Benoit Cousson , Santosh Shilimkar , Tomi Valkeinen Subject: [RFC 10/14] ARM: omap4.dtsi: add omapdss information Date: Wed, 27 Mar 2013 10:45:17 +0200 Message-ID: <1364373921-7599-11-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.dtsi | 71 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) diff --git a/arch/arm/boot/dts/omap4.dtsi b/arch/arm/boot/dts/omap4.dtsi index 739bb79..967f706 100644 --- a/arch/arm/boot/dts/omap4.dtsi +++ b/arch/arm/boot/dts/omap4.dtsi @@ -529,5 +529,76 @@ ti,hwmods = "timer11"; ti,timer-pwm; }; + + dss@58000000 { + compatible = "ti,omap4-dss", "simple-bus"; + reg = <0x58000000 0x80>; + ti,hwmods = "dss_core"; + #address-cells = <1>; + #size-cells = <1>; + ranges; + + dispc@58001000 { + compatible = "ti,omap4-dispc"; + reg = <0x58001000 0x1000>; + interrupts = <0 25 0x4>; + ti,hwmods = "dss_dispc"; + }; + + dpi: dpi { + compatible = "ti,omap4-dpi"; + }; + + rfbi: rfbi@58002000 { + compatible = "ti,omap4-rfbi"; + reg = <0x58002000 0x1000>; + ti,hwmods = "dss_rfbi"; + }; + + /* + * Accessing venc registers cause a crash on omap4, so + * this is disabled for now. + */ + /* + venc: venc@58003000 { + compatible = "ti,omap4-venc"; + reg = <0x58003000 0x1000>; + ti,hwmods = "dss_venc"; + }; + */ + + dsi1: dsi@58004000 { + compatible = "ti,omap4-dsi"; + reg = <0x58004000 0x200>; + interrupts = <0 53 0x4>; + ti,hwmods = "dss_dsi1"; + + /* + * XXX dss_core needs to know module-id, + * so this data should be there. + */ + ti,dsi-module-id = <0>; + }; + + dsi2: dsi@58005000 { + compatible = "ti,omap4-dsi"; + reg = <0x58005000 0x200>; + interrupts = <0 84 0x4>; + ti,hwmods = "dss_dsi2"; + + /* + * XXX dss_core needs to know module-id, + * so this data should be there. + */ + ti,dsi-module-id = <1>; + }; + + hdmi: hdmi@58006000 { + compatible = "ti,omap4-hdmi"; + reg = <0x58006000 0x1000>; + interrupts = <0 101 0x4>; + ti,hwmods = "dss_hdmi"; + }; + }; }; };