From: Felipe Balbi <balbi@ti.com>
To: Illia Smyrnov <illia.smyrnov@ti.com>
Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>,
linux-input@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-omap@vger.kernel.org
Subject: Re: [PATCH v2 3/3] Input: omap-keypad: Set irq to level instead of edge
Date: Sat, 27 Jul 2013 20:07:09 +0300 [thread overview]
Message-ID: <20130727170647.GA17360@radagast> (raw)
In-Reply-To: <1374858546-25034-4-git-send-email-illia.smyrnov@ti.com>
[-- Attachment #1: Type: text/plain, Size: 1424 bytes --]
Hi,
On Fri, Jul 26, 2013 at 08:09:06PM +0300, Illia Smyrnov wrote:
> From: Axel Haslam <axelhaslam@ti.com>
>
> Set mpu irq to level instead of edge, since if mpu is in low power
> an edge detection may be lost if the event is a wkup event.
>
> Signed-off-by: Axel Haslam <axelhaslam@ti.com>
> Signed-off-by: Illia Smyrnov <illia.smyrnov@ti.com>
> ---
> Based on top of v3.11-rc2
>
> Depends on:
> Input: omap-keypad: Convert to threaded IRQ
> https://patchwork.kernel.org/patch/2832920/
>
> drivers/input/keyboard/omap4-keypad.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/input/keyboard/omap4-keypad.c b/drivers/input/keyboard/omap4-keypad.c
> index e8bdc76..7adb53e 100644
> --- a/drivers/input/keyboard/omap4-keypad.c
> +++ b/drivers/input/keyboard/omap4-keypad.c
> @@ -374,9 +374,13 @@ static int omap4_keypad_probe(struct platform_device *pdev)
> goto err_free_keymap;
> }
>
> + /*
> + * Set irq level detection for mpu. Edge event are missed in gic
> + * if the mpu is in low power and keypad event is a wakeup
> + */
> error = request_threaded_irq(keypad_data->irq, omap4_keypad_irq_handler,
> omap4_keypad_irq_thread_fn,
> - IRQF_TRIGGER_RISING,
> + IRQF_TRIGGER_HIGH,
omap4 is DT-only, why don't you pass zero here and expect DT to setup
IRQ type correctly for you ?
--
balbi
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Felipe Balbi <balbi@ti.com>
To: Illia Smyrnov <illia.smyrnov@ti.com>
Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>,
<linux-input@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<linux-omap@vger.kernel.org>
Subject: Re: [PATCH v2 3/3] Input: omap-keypad: Set irq to level instead of edge
Date: Sat, 27 Jul 2013 20:07:09 +0300 [thread overview]
Message-ID: <20130727170647.GA17360@radagast> (raw)
In-Reply-To: <1374858546-25034-4-git-send-email-illia.smyrnov@ti.com>
[-- Attachment #1: Type: text/plain, Size: 1424 bytes --]
Hi,
On Fri, Jul 26, 2013 at 08:09:06PM +0300, Illia Smyrnov wrote:
> From: Axel Haslam <axelhaslam@ti.com>
>
> Set mpu irq to level instead of edge, since if mpu is in low power
> an edge detection may be lost if the event is a wkup event.
>
> Signed-off-by: Axel Haslam <axelhaslam@ti.com>
> Signed-off-by: Illia Smyrnov <illia.smyrnov@ti.com>
> ---
> Based on top of v3.11-rc2
>
> Depends on:
> Input: omap-keypad: Convert to threaded IRQ
> https://patchwork.kernel.org/patch/2832920/
>
> drivers/input/keyboard/omap4-keypad.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/input/keyboard/omap4-keypad.c b/drivers/input/keyboard/omap4-keypad.c
> index e8bdc76..7adb53e 100644
> --- a/drivers/input/keyboard/omap4-keypad.c
> +++ b/drivers/input/keyboard/omap4-keypad.c
> @@ -374,9 +374,13 @@ static int omap4_keypad_probe(struct platform_device *pdev)
> goto err_free_keymap;
> }
>
> + /*
> + * Set irq level detection for mpu. Edge event are missed in gic
> + * if the mpu is in low power and keypad event is a wakeup
> + */
> error = request_threaded_irq(keypad_data->irq, omap4_keypad_irq_handler,
> omap4_keypad_irq_thread_fn,
> - IRQF_TRIGGER_RISING,
> + IRQF_TRIGGER_HIGH,
omap4 is DT-only, why don't you pass zero here and expect DT to setup
IRQ type correctly for you ?
--
balbi
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
next prev parent reply other threads:[~2013-07-27 17:07 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-26 17:09 [PATCH v2 0/3] Input: omap-keypad: Wakeup capability and w/a for i689 errata Illia Smyrnov
2013-07-26 17:09 ` Illia Smyrnov
2013-07-26 17:09 ` [PATCH v2 1/3] Input: omap-keypad: Enable wakeup capability for keypad Illia Smyrnov
2013-07-26 17:09 ` Illia Smyrnov
2013-07-26 17:09 ` [PATCH v2 2/3] Input: omap-keypad: errata i689: Correct debounce time Illia Smyrnov
2013-07-26 17:09 ` Illia Smyrnov
2013-07-26 17:09 ` [PATCH v2 3/3] Input: omap-keypad: Set irq to level instead of edge Illia Smyrnov
2013-07-26 17:09 ` Illia Smyrnov
2013-07-27 17:07 ` Felipe Balbi [this message]
2013-07-27 17:07 ` Felipe Balbi
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=20130727170647.GA17360@radagast \
--to=balbi@ti.com \
--cc=dmitry.torokhov@gmail.com \
--cc=illia.smyrnov@ti.com \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
/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.