From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757697AbaJaJzp (ORCPT ); Fri, 31 Oct 2014 05:55:45 -0400 Received: from mga02.intel.com ([134.134.136.20]:18305 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757599AbaJaJzm (ORCPT ); Fri, 31 Oct 2014 05:55:42 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.07,293,1413270000"; d="scan'208";a="599637143" Date: Fri, 31 Oct 2014 11:55:35 +0200 From: Mika Westerberg To: Linus Walleij Cc: "Rafael J. Wysocki" , Linux Kernel Mailing List , Greg Kroah-Hartman , Grant Likely , Arnd Bergmann , ACPI Devel Maling List , Aaron Lu , "devicetree@vger.kernel.org" , Alexandre Courbot , Dmitry Torokhov , Bryan Wu , Darren Hart , Mark Rutland Subject: Re: [PATCH v5 07/12] leds: leds-gpio: Add support for GPIO descriptors Message-ID: <20141031095535.GV1304@lahna.fi.intel.com> References: <2660541.BycO7TFnA2@vostro.rjw.lan> <3395005.IveyhHQnye@vostro.rjw.lan> <17483842.EFni4iQX1H@vostro.rjw.lan> <20141029085306.GI1304@lahna.fi.intel.com> <20141030161528.GS1304@lahna.fi.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Oct 31, 2014 at 10:41:38AM +0100, Linus Walleij wrote: > On Thu, Oct 30, 2014 at 5:15 PM, Mika Westerberg > wrote: > > On Thu, Oct 30, 2014 at 04:40:05PM +0100, Linus Walleij wrote: > >> > Yes, I'll just let dust to settle before sending out a patch that > >> > converts the existing users of platform_gpio_blink_set() callback to > >> > gpio descriptors. > >> > >> Dust settle = 2 weeks, 18 months, 5 years? > > > > I started to do the conversion already but then noticed that it is not > > that trivial after all. > > Thanks for looking into this. > > > For example we have one user in arch/arm/mach-orion5x/dns323-setup.c: > > > > static struct gpio_led_platform_data dns323ab_led_data = { > > .num_leds = ARRAY_SIZE(dns323ab_leds), > > .leds = dns323ab_leds, > > .gpio_blink_set = orion_gpio_led_blink_set, > > }; > > > > orion_gpio_led_blink_set() is part of orion specific custom GPIO > > "driver" defined in arch/arm/plat-orion/gpio.c and as far as I can tell > > cannot use GPIO descriptors as it directly programs these numbers to the > > hardware. > > > > We can convert the descriptor to a number in the beginning of > > orion_gpio_led_blink_set() if that helps. > > > > Other two users: rx1950_led_blink_set() and h1940_led_blink_set() seem > > to have similar needs for the numeric value. > > Doing the conversion from descriptor to gpio number in the > platforms is *much desired*, because it is a nice divide-and-conquer > approach. > > For example mach-orion is going to be deleted and replaced > with mach-mvebu at some time, so then part of the problem > goes away entirely. OK, thanks. I'll do the GPIO descriptor -> number conversions in the platform code then.