From: Thomas Weber <thomas.weber.linux@googlemail.com>
To: Igor Grinberg <grinberg@compulab.co.il>
Cc: Tony Lindgren <tony@atomide.com>,
Mike Rapoport <mike@compulab.co.il>,
linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH] arm: omap2plus: fix ads7846 pendown gpio request
Date: Wed, 04 May 2011 19:22:44 +0200 [thread overview]
Message-ID: <4DC18B64.2020903@gmail.com> (raw)
In-Reply-To: <1304521495-20578-1-git-send-email-grinberg@compulab.co.il>
Am 04.05.2011 17:04, schrieb Igor Grinberg:
> introduced by: 96974a24
> (omap: consolidate touch screen initialization among different boards)
>
> ads7846 driver can use either gpio_pendown or get_pendown_state()
> callback. In case of gpio_pendown, it requests the provided gpio_pendown
> thus resulting in double requesting that gpio:
>
> ads7846 spi1.0: failed to request pendown GPIO57
> ads7846: probe of spi1.0 failed with error -16
>
> Fix this by restricting the gpio request to the case of
> get_pendown_state() callback is used.
>
> Signed-off-by: Igor Grinberg<grinberg@compulab.co.il>
> ---
> arch/arm/mach-omap2/common-board-devices.c | 20 ++++++++++----------
> 1 files changed, 10 insertions(+), 10 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/common-board-devices.c b/arch/arm/mach-omap2/common-board-devices.c
> index d57c71d..61fee80 100644
> --- a/arch/arm/mach-omap2/common-board-devices.c
> +++ b/arch/arm/mach-omap2/common-board-devices.c
> @@ -83,17 +83,17 @@ void __init omap_ads7846_init(int bus_num, int gpio_pendown, int gpio_debounce,
> struct spi_board_info *spi_bi =&ads7846_spi_board_info;
> int err;
>
> - err = gpio_request(gpio_pendown, "TS PenDown");
> - if (err) {
> - pr_err("Could not obtain gpio for TS PenDown: %d\n", err);
> - return;
> - }
> -
> - gpio_direction_input(gpio_pendown);
> - gpio_export(gpio_pendown, 0);
> + if (board_pdata&& board_pdata->get_pendown_state) {
> + err = gpio_request_one(gpio_pendown, GPIOF_IN, "TSPenDown");
> + if (err) {
> + pr_err("Couldn't obtain gpio for TSPenDown: %d\n", err);
> + return;
> + }
> + gpio_export(gpio_pendown, 0);
>
> - if (gpio_debounce)
> - gpio_set_debounce(gpio_pendown, gpio_debounce);
> + if (gpio_debounce)
> + gpio_set_debounce(gpio_pendown, gpio_debounce);
> + }
>
> ads7846_config.gpio_pendown = gpio_pendown;
>
Tested-by: Thomas Weber <weber@corscience.de>
On Devkit8000.
Thanks.
Thomas
WARNING: multiple messages have this Message-ID (diff)
From: thomas.weber.linux@googlemail.com (Thomas Weber)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] arm: omap2plus: fix ads7846 pendown gpio request
Date: Wed, 04 May 2011 19:22:44 +0200 [thread overview]
Message-ID: <4DC18B64.2020903@gmail.com> (raw)
In-Reply-To: <1304521495-20578-1-git-send-email-grinberg@compulab.co.il>
Am 04.05.2011 17:04, schrieb Igor Grinberg:
> introduced by: 96974a24
> (omap: consolidate touch screen initialization among different boards)
>
> ads7846 driver can use either gpio_pendown or get_pendown_state()
> callback. In case of gpio_pendown, it requests the provided gpio_pendown
> thus resulting in double requesting that gpio:
>
> ads7846 spi1.0: failed to request pendown GPIO57
> ads7846: probe of spi1.0 failed with error -16
>
> Fix this by restricting the gpio request to the case of
> get_pendown_state() callback is used.
>
> Signed-off-by: Igor Grinberg<grinberg@compulab.co.il>
> ---
> arch/arm/mach-omap2/common-board-devices.c | 20 ++++++++++----------
> 1 files changed, 10 insertions(+), 10 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/common-board-devices.c b/arch/arm/mach-omap2/common-board-devices.c
> index d57c71d..61fee80 100644
> --- a/arch/arm/mach-omap2/common-board-devices.c
> +++ b/arch/arm/mach-omap2/common-board-devices.c
> @@ -83,17 +83,17 @@ void __init omap_ads7846_init(int bus_num, int gpio_pendown, int gpio_debounce,
> struct spi_board_info *spi_bi =&ads7846_spi_board_info;
> int err;
>
> - err = gpio_request(gpio_pendown, "TS PenDown");
> - if (err) {
> - pr_err("Could not obtain gpio for TS PenDown: %d\n", err);
> - return;
> - }
> -
> - gpio_direction_input(gpio_pendown);
> - gpio_export(gpio_pendown, 0);
> + if (board_pdata&& board_pdata->get_pendown_state) {
> + err = gpio_request_one(gpio_pendown, GPIOF_IN, "TSPenDown");
> + if (err) {
> + pr_err("Couldn't obtain gpio for TSPenDown: %d\n", err);
> + return;
> + }
> + gpio_export(gpio_pendown, 0);
>
> - if (gpio_debounce)
> - gpio_set_debounce(gpio_pendown, gpio_debounce);
> + if (gpio_debounce)
> + gpio_set_debounce(gpio_pendown, gpio_debounce);
> + }
>
> ads7846_config.gpio_pendown = gpio_pendown;
>
Tested-by: Thomas Weber <weber@corscience.de>
On Devkit8000.
Thanks.
Thomas
next prev parent reply other threads:[~2011-05-04 17:22 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-05-04 15:04 [PATCH] arm: omap2plus: fix ads7846 pendown gpio request Igor Grinberg
2011-05-04 15:04 ` Igor Grinberg
2011-05-04 17:22 ` Thomas Weber [this message]
2011-05-04 17:22 ` Thomas Weber
2011-05-11 7:35 ` Igor Grinberg
2011-05-11 7:35 ` Igor Grinberg
2011-05-26 13:58 ` Igor Grinberg
2011-05-26 13:58 ` Igor Grinberg
2011-05-31 11:12 ` Tony Lindgren
2011-05-31 11:12 ` Tony Lindgren
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4DC18B64.2020903@gmail.com \
--to=thomas.weber.linux@googlemail.com \
--cc=grinberg@compulab.co.il \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-omap@vger.kernel.org \
--cc=mike@compulab.co.il \
--cc=tony@atomide.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.