Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752215AbcJJGzk (ORCPT ); Mon, 10 Oct 2016 02:55:40 -0400 Received: from arroyo.ext.ti.com ([198.47.19.12]:58310 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751734AbcJJGzi (ORCPT ); Mon, 10 Oct 2016 02:55:38 -0400 Subject: Re: [PATCH v3] drm: tilcdc: add a da850-specific compatible string To: Bartosz Golaszewski , Tomi Valkeinen , David Airlie , Kevin Hilman , Michael Turquette , Sekhar Nori , Rob Herring , Frank Rowand , Mark Rutland References: <1475509519-29516-1-git-send-email-bgolaszewski@baylibre.com> CC: LKML , arm-soc , linux-drm , linux-devicetree From: Jyri Sarha Message-ID: Date: Mon, 10 Oct 2016 09:54:08 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: <1475509519-29516-1-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 Content-Length: 2277 Lines: 63 On 10/03/16 18:45, Bartosz Golaszewski wrote: > Due to some potential tweaks for the da850 LCDC (for example: the > required memory bandwith settings) we need a separate compatible > for the IP present on the da850 boards. > > Suggested-by: Sekhar Nori > Signed-off-by: Bartosz Golaszewski Thanks, I pick this up, but I won't send it for 4.9 any more. The LCDC rev1 support is not yet complete in 4.9 anyway. BR, Jyri > --- > v1 -> v2: > - added the new compatible to the bindings documentation > > v2 -> v3: > - made the documentation more detailed > > Documentation/devicetree/bindings/display/tilcdc/tilcdc.txt | 6 ++++-- > drivers/gpu/drm/tilcdc/tilcdc_drv.c | 1 + > 2 files changed, 5 insertions(+), 2 deletions(-) > > diff --git a/Documentation/devicetree/bindings/display/tilcdc/tilcdc.txt b/Documentation/devicetree/bindings/display/tilcdc/tilcdc.txt > index a83abd7..6fddb4f 100644 > --- a/Documentation/devicetree/bindings/display/tilcdc/tilcdc.txt > +++ b/Documentation/devicetree/bindings/display/tilcdc/tilcdc.txt > @@ -1,7 +1,9 @@ > Device-Tree bindings for tilcdc DRM driver > > Required properties: > - - compatible: value should be "ti,am33xx-tilcdc". > + - compatible: value should be one of the following: > + - "ti,am33xx-tilcdc" for AM335x based boards > + - "ti,da850-tilcdc" for DA850/AM18x/OMAP-L138 based boards > - interrupts: the interrupt number > - reg: base address and size of the LCDC device > > @@ -51,7 +53,7 @@ Optional nodes: > Example: > > fb: fb@4830e000 { > - compatible = "ti,am33xx-tilcdc"; > + compatible = "ti,am33xx-tilcdc", "ti,da850-tilcdc"; > reg = <0x4830e000 0x1000>; > interrupt-parent = <&intc>; > interrupts = <36>; > diff --git a/drivers/gpu/drm/tilcdc/tilcdc_drv.c b/drivers/gpu/drm/tilcdc/tilcdc_drv.c > index a694977..231f2c7 100644 > --- a/drivers/gpu/drm/tilcdc/tilcdc_drv.c > +++ b/drivers/gpu/drm/tilcdc/tilcdc_drv.c > @@ -723,6 +723,7 @@ static int tilcdc_pdev_remove(struct platform_device *pdev) > > static struct of_device_id tilcdc_of_match[] = { > { .compatible = "ti,am33xx-tilcdc", }, > + { .compatible = "ti,da850-tilcdc", }, > { }, > }; > MODULE_DEVICE_TABLE(of, tilcdc_of_match); >