Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932854AbcKVKaW (ORCPT ); Tue, 22 Nov 2016 05:30:22 -0500 Received: from mail-ua0-f180.google.com ([209.85.217.180]:33372 "EHLO mail-ua0-f180.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932823AbcKVKaS (ORCPT ); Tue, 22 Nov 2016 05:30:18 -0500 MIME-Version: 1.0 In-Reply-To: <77c993f3-1b5f-94cf-c4bc-8a30148e0a4d@ti.com> References: <1479807775-28283-1-git-send-email-bgolaszewski@baylibre.com> <77c993f3-1b5f-94cf-c4bc-8a30148e0a4d@ti.com> From: Bartosz Golaszewski Date: Tue, 22 Nov 2016 11:30:16 +0100 Message-ID: Subject: Re: [PATCH] ARM: dts: da850: specify max width for display node To: Tomi Valkeinen Cc: Kevin Hilman , Michael Turquette , Sekhar Nori , Rob Herring , Frank Rowand , Mark Rutland , Peter Ujfalusi , Russell King , LKML , arm-soc , linux-drm , linux-devicetree , Jyri Sarha , David Airlie , Laurent Pinchart Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1201 Lines: 40 2016-11-22 11:27 GMT+01:00 Tomi Valkeinen : > On 22/11/16 11:42, Bartosz Golaszewski wrote: >> It has been determined that the highest resolution supported correctly >> by LCDC rev1 is 800x600 on da850 due to memory bandwidth constraints. >> >> Set the max_width property in da850.dtsi to 800. >> >> Signed-off-by: Bartosz Golaszewski >> --- >> arch/arm/boot/dts/da850.dtsi | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/arch/arm/boot/dts/da850.dtsi b/arch/arm/boot/dts/da850.dtsi >> index 36066fa..0876238 100644 >> --- a/arch/arm/boot/dts/da850.dtsi >> +++ b/arch/arm/boot/dts/da850.dtsi >> @@ -441,6 +441,7 @@ >> compatible = "ti,da850-tilcdc"; >> reg = <0x213000 0x1000>; >> interrupts = <52>; >> + max-width = <800>; >> status = "disabled"; >> }; >> }; >> > > Does 1024x768@10 work? > > The max-width should be the hardware's maximum supported width, not used > for bandwidth. tilcdc has max-bandwidth property for that. > > Tomi > Eeek I misread Jyri's answer. Will fix that in v2. Thanks, Bartosz