* [PATCH] arm: omap2plus: fix ads7846 pendown gpio request
@ 2011-05-04 15:04 Igor Grinberg
2011-05-04 17:22 ` Thomas Weber
0 siblings, 1 reply; 5+ messages in thread
From: Igor Grinberg @ 2011-05-04 15:04 UTC (permalink / raw)
To: linux-arm-kernel
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;
--
1.7.3.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH] arm: omap2plus: fix ads7846 pendown gpio request
2011-05-04 15:04 [PATCH] arm: omap2plus: fix ads7846 pendown gpio request Igor Grinberg
@ 2011-05-04 17:22 ` Thomas Weber
2011-05-11 7:35 ` Igor Grinberg
0 siblings, 1 reply; 5+ messages in thread
From: Thomas Weber @ 2011-05-04 17:22 UTC (permalink / raw)
To: linux-arm-kernel
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
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] arm: omap2plus: fix ads7846 pendown gpio request
2011-05-04 17:22 ` Thomas Weber
@ 2011-05-11 7:35 ` Igor Grinberg
2011-05-26 13:58 ` Igor Grinberg
0 siblings, 1 reply; 5+ messages in thread
From: Igor Grinberg @ 2011-05-11 7:35 UTC (permalink / raw)
To: linux-arm-kernel
Tony,
You can fold this one to the original patch from Mike as well,
or do you want it into the rc1?
On 05/04/11 20:22, Thomas Weber wrote:
> 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.
>
--
Regards,
Igor.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] arm: omap2plus: fix ads7846 pendown gpio request
2011-05-11 7:35 ` Igor Grinberg
@ 2011-05-26 13:58 ` Igor Grinberg
2011-05-31 11:12 ` Tony Lindgren
0 siblings, 1 reply; 5+ messages in thread
From: Igor Grinberg @ 2011-05-26 13:58 UTC (permalink / raw)
To: linux-arm-kernel
ping
On 05/11/11 10:35, Igor Grinberg wrote:
> Tony,
>
>
> You can fold this one to the original patch from Mike as well,
>
> or do you want it into the rc1?
>
>
>
> On 05/04/11 20:22, Thomas Weber wrote:
>
>> 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.
>>
--
Regards,
Igor.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] arm: omap2plus: fix ads7846 pendown gpio request
2011-05-26 13:58 ` Igor Grinberg
@ 2011-05-31 11:12 ` Tony Lindgren
0 siblings, 0 replies; 5+ messages in thread
From: Tony Lindgren @ 2011-05-31 11:12 UTC (permalink / raw)
To: linux-arm-kernel
* Igor Grinberg <grinberg@compulab.co.il> [110526 06:54]:
> ping
>
> On 05/11/11 10:35, Igor Grinberg wrote:
>
> > Tony,
> >
> >
> > You can fold this one to the original patch from Mike as well,
> >
> > or do you want it into the rc1?
Thanks adding to fixes.
Tony
> >
> >
> >
> > On 05/04/11 20:22, Thomas Weber wrote:
> >
> >> 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.
> >>
>
> --
> Regards,
> Igor.
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-05-31 11:12 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-04 15:04 [PATCH] arm: omap2plus: fix ads7846 pendown gpio request Igor Grinberg
2011-05-04 17:22 ` Thomas Weber
2011-05-11 7:35 ` Igor Grinberg
2011-05-26 13:58 ` Igor Grinberg
2011-05-31 11:12 ` Tony Lindgren
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).