From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932561AbcI3JfD (ORCPT ); Fri, 30 Sep 2016 05:35:03 -0400 Received: from devils.ext.ti.com ([198.47.26.153]:52504 "EHLO devils.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932088AbcI3Jez (ORCPT ); Fri, 30 Sep 2016 05:34:55 -0400 Subject: Re: [PATCH 2/6] ARM: dts: da850: add a node for the LCD controller To: Bartosz Golaszewski , Kevin Hilman , Michael Turquette , Rob Herring , Mark Rutland , Russell King References: <1475166715-7857-1-git-send-email-bgolaszewski@baylibre.com> <1475166715-7857-3-git-send-email-bgolaszewski@baylibre.com> CC: LKML , arm-soc , Karl Beldan From: Sekhar Nori Message-ID: <4e0586e9-7f95-fbab-924a-fe046892a66b@ti.com> Date: Fri, 30 Sep 2016 15:04:04 +0530 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <1475166715-7857-3-git-send-email-bgolaszewski@baylibre.com> Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thursday 29 September 2016 10:01 PM, Bartosz Golaszewski wrote: > From: Karl Beldan > > Add a disabled LCDC node to be reused in device trees including > da850.dtsi for boards equipped with tilcdc enabled. > > Signed-off-by: Karl Beldan > [Bartosz: added the commit description] > Signed-off-by: Bartosz Golaszewski > --- > arch/arm/boot/dts/da850.dtsi | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/arch/arm/boot/dts/da850.dtsi b/arch/arm/boot/dts/da850.dtsi > index f79e1b9..9f39296 100644 > --- a/arch/arm/boot/dts/da850.dtsi > +++ b/arch/arm/boot/dts/da850.dtsi > @@ -399,6 +399,14 @@ > <&edma0 0 1>; > dma-names = "tx", "rx"; > }; > + > + lcdc: lcdc@213000 { node name should be generic per the ePAPR so please use "display". > + compatible = "ti,am33xx-tilcdc"; Can you please introduce a da850 specific compatible. Something like: compatible = "ti,da850-tilcdc", "ti,am33xx-tilcdc"; Even if you dont use it in the driver today, please have it in the .dts I am pretty sure there will be some da850 specific tweak required for the LCDC at some point. Having a compatible already in place will make migration easier. You will have to document the compatible though. This will affect 1/6 too. Thanks, Sekhar