Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1523699

Re: [PATCH v2 -next] Input: gpio_keys: set input direction explicitly for gpio keys

From Sudeep Holla <sudeep.holla@arm.com>
Newsgroups linux.kernel
Subject Re: [PATCH v2 -next] Input: gpio_keys: set input direction explicitly for gpio keys
Date 2016-11-16 18:50 +0100
Message-ID <sEcvo-609-21@gated-at.bofh.it> (permalink)
References <sE72G-2hZ-17@gated-at.bofh.it> <sE8L7-3uw-11@gated-at.bofh.it> <sEclH-5WJ-5@gated-at.bofh.it>
Organization ARM

Show all headers | View raw



On 16/11/16 17:36, Dmitry Torokhov wrote:
> On Wed, Nov 16, 2016 at 01:42:14PM +0000, Sudeep Holla wrote:
>> Commit 700a38b27eef ("Input: gpio_keys - switch to using generic device
>> properties") switched to use generic device properties for GPIO keys and
>> commit 5feeca3c1e39 ("Input: gpio_keys - add support for GPIO descriptors")
>> switched from legacy GPIO numbers to GPIO descriptors.
>>
>> Previously devm_gpio_request_one was explicitly passed GPIOF_DIR_IN flag
>> to set the GPIO direction as input. However devm_get_gpiod_from_child
>> doesn't have such provisions and hence fwnode_get_named_gpiod can't set
>> it as input.
>>
>> This breaks few platforms with the following error:
>> " gpiochip_lock_as_irq: tried to flag a GPIO set as output for IRQ
>>   unable to lock HW IRQ <n> for IRQ
>>   genirq: Failed to request resources for POWER (irq <x>) on irqchip
>>   gpio_keys: Unable to claim irq <x>; error -22
>>   gpio-keys: probe failed with error -22 "
>>
>> This patch fixes the issue by setting input direction explicitly for
>> gpio input keys. It also remove the existing GPIOF_DIR_IN flag setting
>> for the legacy gpios and merges into single gpiod_direction_input call.
>>
>> Fixes: 700a38b27eef ("Input: gpio_keys - switch to using generic device properties")
>> Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>
>> Cc: Linus Walleij <linus.walleij@linaro.org>
>> Cc: Geert Uytterhoeven <geert+renesas@glider.be>
>> Cc: Mika Westerberg <mika.westerberg@linux.intel.com>
>> Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
>> ---
>>  drivers/input/keyboard/gpio_keys.c        | 5 ++++-
>>  drivers/input/keyboard/gpio_keys_polled.c | 5 ++++-
>>  2 files changed, 8 insertions(+), 2 deletions(-)
>>
>> v1->v2:
>> 	- Fix the build(had sent a wrong version by accident)
>>
>> Hi Dmitry,
>>
>> The other option would be to pass the flag explicitly and add support to
>> handle it in the path devm_get_gpiod_from_child would take.
>
> Hi Sudeep,
>
> No, I think explicitly configuring it for input is good (at least for
> now), but we need error handling.
>

Sure, a quick glance makes me think: all I need is to return the error
as everything is handled by devm_* APIs. If so I will respin with that
change, otherwise please let me know if I am missing anything here.

-- 
Regards,
Sudeep

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH -next] Input: gpio_keys: set input direction explicitly for gpio keys Sudeep Holla <sudeep.holla@arm.com> - 2016-11-16 13:00 +0100
  Re: [PATCH -next] Input: gpio_keys: set input direction explicitly  for gpio keys kbuild test robot <lkp@intel.com> - 2016-11-16 13:50 +0100
  [PATCH v2 -next] Input: gpio_keys: set input direction explicitly for gpio keys Sudeep Holla <sudeep.holla@arm.com> - 2016-11-16 14:50 +0100
    Re: [PATCH v2 -next] Input: gpio_keys: set input direction  explicitly for gpio keys Dmitry Torokhov <dmitry.torokhov@gmail.com> - 2016-11-16 18:40 +0100
      Re: [PATCH v2 -next] Input: gpio_keys: set input direction explicitly  for gpio keys Sudeep Holla <sudeep.holla@arm.com> - 2016-11-16 18:50 +0100
        Re: [PATCH v2 -next] Input: gpio_keys: set input direction explicitly  for gpio keys Sudeep Holla <sudeep.holla@arm.com> - 2016-11-16 19:40 +0100
        Re: [PATCH v2 -next] Input: gpio_keys: set input direction  explicitly for gpio keys Dmitry Torokhov <dmitry.torokhov@gmail.com> - 2016-11-16 19:40 +0100
    [PATCH v3 -next] Input: gpio_keys: set input direction explicitly for gpio keys Sudeep Holla <sudeep.holla@arm.com> - 2016-11-16 19:40 +0100
      Re: [PATCH v3 -next] Input: gpio_keys: set input direction  explicitly for gpio keys Dmitry Torokhov <dmitry.torokhov@gmail.com> - 2016-11-17 02:20 +0100
        Re: [PATCH v3 -next] Input: gpio_keys: set input direction explicitly  for gpio keys Sudeep Holla <sudeep.holla@arm.com> - 2016-11-17 10:50 +0100

csiph-web