From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753852AbbIROKM (ORCPT ); Fri, 18 Sep 2015 10:10:12 -0400 Received: from eusmtp01.atmel.com ([212.144.249.243]:4016 "EHLO eusmtp01.atmel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752145AbbIROKK (ORCPT ); Fri, 18 Sep 2015 10:10:10 -0400 Subject: Re: [PATCH] ARM: at91/dt: ov2640: add hsync/vsync-active property To: Josh Wu References: <1442575702-22315-1-git-send-email-josh.wu@atmel.com> CC: , Russell King , Kumar Gala , "Jean-Christophe Plagniol-Villard" , , "Ian Campbell" , Alexandre Belloni , , "Rob Herring" , Pawel Moll , Mark Rutland From: Nicolas Ferre Organization: atmel Message-ID: <55FC1B12.8000703@atmel.com> Date: Fri, 18 Sep 2015 16:09:22 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <1442575702-22315-1-git-send-email-josh.wu@atmel.com> Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 8bit X-Originating-IP: [10.161.30.18] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Le 18/09/2015 13:28, Josh Wu a écrit : > On at91sam9x5ek/at91sam9m10g45ek/sama5d3xek boards, we use the parallel > connection for ov2640. So we must set the hsync/vsync property (1 means > active high). > Otherwise, the connection would be seen as BT.656 or BT.1120. > > Signed-off-by: Josh Wu Hi Josh, Does this patch apply because of the new enhancement that you had proposed in "media: atmel-isi: parse the DT parameters for vsync/hsync/pixclock polarity" or does it apply even before? Is it a fix that applies to older kernels? So, should I wait for the enhancements to enter media git tree or can I take them anyway? Bye, > --- > > arch/arm/boot/dts/at91sam9m10g45ek.dts | 2 ++ > arch/arm/boot/dts/at91sam9x5ek.dtsi | 2 ++ > arch/arm/boot/dts/sama5d3xmb.dtsi | 2 ++ > 3 files changed, 6 insertions(+) > > diff --git a/arch/arm/boot/dts/at91sam9m10g45ek.dts b/arch/arm/boot/dts/at91sam9m10g45ek.dts > index d1ae60a..9d16ef8 100644 > --- a/arch/arm/boot/dts/at91sam9m10g45ek.dts > +++ b/arch/arm/boot/dts/at91sam9m10g45ek.dts > @@ -198,6 +198,8 @@ > isi_0: endpoint { > remote-endpoint = <&ov2640_0>; > bus-width = <8>; > + vsync-active = <1>; > + hsync-active = <1>; > }; > }; > }; > diff --git a/arch/arm/boot/dts/at91sam9x5ek.dtsi b/arch/arm/boot/dts/at91sam9x5ek.dtsi > index d237c46..479f200 100644 > --- a/arch/arm/boot/dts/at91sam9x5ek.dtsi > +++ b/arch/arm/boot/dts/at91sam9x5ek.dtsi > @@ -66,6 +66,8 @@ > isi_0: endpoint@0 { > remote-endpoint = <&ov2640_0>; > bus-width = <8>; > + vsync-active = <1>; > + hsync-active = <1>; > }; > }; > }; > diff --git a/arch/arm/boot/dts/sama5d3xmb.dtsi b/arch/arm/boot/dts/sama5d3xmb.dtsi > index 83bee7a..8901042 100644 > --- a/arch/arm/boot/dts/sama5d3xmb.dtsi > +++ b/arch/arm/boot/dts/sama5d3xmb.dtsi > @@ -87,6 +87,8 @@ > isi_0: endpoint { > remote-endpoint = <&ov2640_0>; > bus-width = <8>; > + vsync-active = <1>; > + hsync-active = <1>; > }; > }; > }; > -- Nicolas Ferre