lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 19 Jan 2012 11:17:33 +0530
From:	Shubhrajyoti <shubhrajyoti@...com>
To:	Rakesh Iyer <riyer@...dia.com>
CC:	dmitry.torokhov@...il.com, swarren@...dia.com,
	linux-input@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH v1] Input: tegra-kbc - enable key interrupt for wakeup

On Thursday 19 January 2012 04:03 AM, Rakesh Iyer wrote:
> Enable keypress interrupt to support wakeup from low power state.
>
> Signed-off-by: Rakesh Iyer <riyer@...dia.com>
> ---
>  drivers/input/keyboard/tegra-kbc.c |   17 +++++++++++++++++
>  1 files changed, 17 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/input/keyboard/tegra-kbc.c b/drivers/input/keyboard/tegra-kbc.c
> index a136e2e..b307a46 100644
> --- a/drivers/input/keyboard/tegra-kbc.c
> +++ b/drivers/input/keyboard/tegra-kbc.c
> @@ -48,6 +48,7 @@
>  #define KBC_FIFO_TH_CNT_SHIFT(cnt)	(cnt << 14)
>  #define KBC_DEBOUNCE_CNT_SHIFT(cnt)	(cnt << 4)
>  #define KBC_CONTROL_FIFO_CNT_INT_EN	(1 << 3)
> +#define KBC_CONTROL_KEYPRESS_INT_EN	(1 << 1)
>  #define KBC_CONTROL_KBC_EN		(1 << 0)
>  
>  /* KBC Interrupt Register */
> @@ -356,6 +357,18 @@ static void tegra_kbc_set_fifo_interrupt(struct tegra_kbc *kbc, bool enable)
>  	writel(val, kbc->mmio + KBC_CONTROL_0);
>  }
>  
> +static void tegra_kbc_set_keypress_interrupt(struct tegra_kbc *kbc, bool enable)
> +{
> +	u32 val;
> +
> +	val = readl(kbc->mmio + KBC_CONTROL_0);
> +	if (enable)
> +		val |= KBC_CONTROL_KEYPRESS_INT_EN;
> +	else
> +		val &= ~KBC_CONTROL_KEYPRESS_INT_EN;
> +	writel(val, kbc->mmio + KBC_CONTROL_0);
> +}
> +
>  static void tegra_kbc_keypress_timer(unsigned long data)
>  {
>  	struct tegra_kbc *kbc = (struct tegra_kbc *)data;
> @@ -831,6 +844,8 @@ static int tegra_kbc_suspend(struct device *dev)
>  		msleep(30);
>  
>  		kbc->keypress_caused_wake = false;
> +		/* Enable keypress interrupt before going into suspend. */
> +		tegra_kbc_set_keypress_interrupt(kbc, true);
>  		enable_irq(kbc->irq);
>  		enable_irq_wake(kbc->irq);
>  	} else {
> @@ -852,6 +867,8 @@ static int tegra_kbc_resume(struct device *dev)
>  	if (device_may_wakeup(&pdev->dev)) {
>  		disable_irq_wake(kbc->irq);
>  		tegra_kbc_setup_wakekeys(kbc, false);
> +		/* We will use fifo interrupts for key detection. */
> +		tegra_kbc_set_keypress_interrupt(kbc, false);
Why do yo disable on resume why not have it enabled always?

>  
>  		/* Restore the resident time of continuous polling mode. */
>  		writel(kbc->cp_to_wkup_dly, kbc->mmio + KBC_TO_CNT_0);

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ