From patchwork Mon Aug 29 22:50:02 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: ayaka X-Patchwork-Id: 9304587 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 57198601C0 for ; Mon, 29 Aug 2016 22:50:27 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 384CF2858D for ; Mon, 29 Aug 2016 22:50:27 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 2C62C285F7; Mon, 29 Aug 2016 22:50:27 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 334AA2858D for ; Mon, 29 Aug 2016 22:50:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756060AbcH2WuX (ORCPT ); Mon, 29 Aug 2016 18:50:23 -0400 Received: from kozue.soulik.info ([108.61.200.231]:54838 "EHLO kozue.soulik.info" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752043AbcH2WuX (ORCPT ); Mon, 29 Aug 2016 18:50:23 -0400 Received: from ritsuko.sumomo.pri (unknown [IPv6:2001:470:b30d:2::3bd]) by kozue.soulik.info (Postfix) with ESMTPA id 625C510142C; Tue, 30 Aug 2016 07:52:32 +0900 (JST) From: Randy Li To: devicetree@vger.kernel.org Cc: mark.rutland@arm.com, linux@armlinux.org.uk, kgene@kernel.org, krzk@kernel.org, linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org, inki.dae@samsung.com, jy0922.shim@samsung.com, kyungmin.park@samsung.com, dri-devel@lists.freedesktop.org, Randy Li Subject: [PATCH RFC] ARM: dts: samsung: add rga-lvds panel in itop elite Date: Tue, 30 Aug 2016 06:50:02 +0800 Message-Id: <1472511002-9019-1-git-send-email-ayaka@soulik.info> X-Mailer: git-send-email 2.7.4 Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP It is actually a lvds panel connected through a rga-lvds bridge. But I really have no idea about what does a port mean in fimd node. Also how should I configure this panel size? I think the i2c found on the panel schematic, but it more likely to be used a touch screen touth. Also the touch screen is not supported in currently driver. Signed-off-by: Randy Li --- arch/arm/boot/dts/exynos4412-itop-elite.dts | 35 ++++++++++++++++++++++++++--- 1 file changed, 32 insertions(+), 3 deletions(-) diff --git a/arch/arm/boot/dts/exynos4412-itop-elite.dts b/arch/arm/boot/dts/exynos4412-itop-elite.dts index e1cda54..2d67385 100644 --- a/arch/arm/boot/dts/exynos4412-itop-elite.dts +++ b/arch/arm/boot/dts/exynos4412-itop-elite.dts @@ -139,6 +139,20 @@ assigned-clocks = <&clock CLK_MOUT_CAM0>; assigned-clock-parents = <&clock CLK_XUSBXTI>; }; + + vcc_sys_lcd: sys-lcd { + compatible = "regulator-fixed"; + regulator-name = "vcc_5v"; + regulator-min-microvolt = <5000000>; + regulator-max-microvolt = <5000000>; + gpio = <&gpl0 4 GPIO_ACTIVE_HIGH>; + }; + + panel: panel { + ddc-i2c-bus = <&i2c_3>; + power-supply = <&vcc_sys_lcd>; + enable-gpios = <&gpl0 2 GPIO_ACTIVE_HIGH>; + }; }; &pinctrl_1 { @@ -221,9 +235,6 @@ }; &pwm { - pinctrl-0 = <&pwm1_out>; - pinctrl-names = "default"; - samsung,pwm-outputs = <1>; status = "okay"; }; @@ -239,3 +250,21 @@ assigned-clock-parents = <&clock CLK_MOUT_MPLL_USER_T>; assigned-clock-rates = <0>, <176000000>; }; + +&i2c_3 { + status = "okay"; +}; + +&fimd { + pinctrl-0 = <&lcd_clk &lcd_data24 &pwm1_out>; + pinctrl-names = "default"; + status = "okay"; + #address-cells = <1>; + #size-cells = <0>; + port@0 { + reg = <0>; + rga_lvds: endpoint { + remote-endpoint = <&panel>; + }; + }; +};