From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1947508Ab3BIAE1 (ORCPT ); Fri, 8 Feb 2013 19:04:27 -0500 Received: from mx1.redhat.com ([209.132.183.28]:56274 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1947390Ab3BIAEY (ORCPT ); Fri, 8 Feb 2013 19:04:24 -0500 Date: Fri, 8 Feb 2013 22:03:57 -0200 From: Mauro Carvalho Chehab To: Sebastian Hesselbarth Cc: Grant Likely , Rob Herring , Rob Landley , Benoit Thebaudeau , David Hardeman , Trilok Soni , Sylwester Nawrocki , Matus Ujhelyi , devicetree-discuss@lists.ozlabs.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, linux-media@vger.kernel.org Subject: Re: [PATCH v2] media: rc: gpio-ir-recv: add support for device tree parsing Message-ID: <20130208220357.198c313c@redhat.com> In-Reply-To: <1360355887-19973-1-git-send-email-sebastian.hesselbarth@gmail.com> References: <1360137832-13086-1-git-send-email-sebastian.hesselbarth@gmail.com> <1360355887-19973-1-git-send-email-sebastian.hesselbarth@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Em Fri, 8 Feb 2013 21:38:07 +0100 Sebastian Hesselbarth escreveu: > This patch adds device tree parsing for gpio_ir_recv platform_data and > the mandatory binding documentation. It basically follows what we already > have for e.g. gpio_keys. All required device tree properties are OS > independent but an optional property allow linux specific support for rc > maps. > > There was a similar patch sent by Matus Ujhelyi but that discussion > died after the first reviews. > > Signed-off-by: Sebastian Hesselbarth > --- > Changelog > > v1->v2: > - get rid of ptr returned by _get_devtree_pdata() > - check for of_node instead for NULL pdata > - remove unneccessary double check for gpios property > - remove unneccessary #ifdef CONFIG_OF around match table > > Cc: Grant Likely > Cc: Rob Herring > Cc: Rob Landley > Cc: Mauro Carvalho Chehab > Cc: Sebastian Hesselbarth > Cc: Benoit Thebaudeau > Cc: David Hardeman > Cc: Trilok Soni > Cc: Sylwester Nawrocki > Cc: Matus Ujhelyi > Cc: devicetree-discuss@lists.ozlabs.org > Cc: linux-doc@vger.kernel.org > Cc: linux-kernel@vger.kernel.org > Cc: linux-media@vger.kernel.org > --- > .../devicetree/bindings/media/gpio-ir-receiver.txt | 16 ++++++ > drivers/media/rc/gpio-ir-recv.c | 57 ++++++++++++++++++++ > 2 files changed, 73 insertions(+) > create mode 100644 Documentation/devicetree/bindings/media/gpio-ir-receiver.txt > > diff --git a/Documentation/devicetree/bindings/media/gpio-ir-receiver.txt b/Documentation/devicetree/bindings/media/gpio-ir-receiver.txt > new file mode 100644 > index 0000000..8589f30 > --- /dev/null > +++ b/Documentation/devicetree/bindings/media/gpio-ir-receiver.txt > @@ -0,0 +1,16 @@ > +Device-Tree bindings for GPIO IR receiver > + > +Required properties: > + - compatible = "gpio-ir-receiver"; > + - gpios: OF device-tree gpio specification. > + > +Optional properties: > + - linux,rc-map-name: Linux specific remote control map name. > + > +Example node: > + > + ir: ir-receiver { > + compatible = "gpio-ir-receiver"; > + gpios = <&gpio0 19 1>; > + linux,rc-map-name = "rc-rc6-mce"; Please change this to: linux,rc-map-name = RC_MAP_RC6_MCE; (as defined at include/media/rc-map.h). The idea of having those strings defined at the same header file is to: - make sure that the same keyboard is spelled at the same way on all places; - avoid people to duplicate IR keytables, using different names; - help userspace to get the right table. In the future, the plan is to remove all keytables from kernelspace, keeping there just the name of the keytable. The existing userspace code (ir-keytables, part of v4l-utils) use the keytable name to dynamically load the right table in runtime and to switch the IR core to only handle the protocol that it is associated with the loaded keytable. Regards, Mauro