linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: josephl@nvidia.com (Joseph Lo)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH V2 6/6] ARM: tegra20: cpuidle: apply coupled cpuidle for powered-down mode
Date: Wed, 5 Dec 2012 18:10:27 +0800	[thread overview]
Message-ID: <1354702227.25317.0.camel@jlo-ubuntu-64.nvidia.com> (raw)
In-Reply-To: <1354701715-24150-8-git-send-email-josephl@nvidia.com>

Sorry, there is something wrong.
Please ignore this mail.

On Wed, 2012-12-05 at 18:01 +0800, Joseph Lo wrote:
> 	return ret;
> diff --git a/drivers/gpio/gpio-tegra.c b/drivers/gpio/gpio-tegra.c
> index 63cb643..32ecdb6 100644
> --- a/drivers/gpio/gpio-tegra.c
> +++ b/drivers/gpio/gpio-tegra.c
> @@ -71,6 +71,7 @@ struct tegra_gpio_bank {
>  	u32 oe[4];
>  	u32 int_enb[4];
>  	u32 int_lvl[4];
> +	u32 wake_enb[4];
>  #endif
>  };
>  
> @@ -332,6 +333,9 @@ static int tegra_gpio_suspend(struct device *dev)
>  			bank->oe[p] = tegra_gpio_readl(GPIO_OE(gpio));
>  			bank->int_enb[p] = tegra_gpio_readl(GPIO_INT_ENB(gpio));
>  			bank->int_lvl[p] = tegra_gpio_readl(GPIO_INT_LVL(gpio));
> +
> +			/* Enable gpio irq for wake up source */
> +			tegra_gpio_writel(bank->wake_enb[p], GPIO_INT_ENB(gpio));
>  		}
>  	}
>  	local_irq_restore(flags);
> @@ -341,6 +345,36 @@ static int tegra_gpio_suspend(struct device *dev)
>  static int tegra_gpio_wake_enable(struct irq_data *d, unsigned int enable)
>  {
>  	struct tegra_gpio_bank *bank = irq_data_get_irq_chip_data(d);
> +	u8 port, bit, mask;
> +	int gpio = d->hwirq;
> +
> +	if (gpio < 0)
> +		return -EIO;
> +
> +	port = GPIO_PORT(gpio);
> +	bit = GPIO_BIT(gpio);
> +	mask = BIT(bit);
> +
> +	if (enable)
> +		bank->wake_enb[port] |= mask;
> +	else
> +		bank->wake_enb[port] &= ~mask;
> +
> +	return 0;
> +}
> +
> +static int tegra_gpio_irq_set_wake(struct irq_data *d, unsigned int enable)
> +{
> +	struct tegra_gpio_bank *bank = irq_data_get_irq_chip_data(d);
> +	int ret;
> +
> +	ret = tegra_gpio_wake_enable(d, enable);
> +	if (ret) {
> +		pr_err("Failed gpio wake %s for irq=%d error=%d\n",
> +				(enable ? "enable" : "disable"), d->irq, ret);
> +		return ret;
> +	}
> +printk(KERN_EMERG "gpio back->irq: %d hwirq: %d irq: %d\n", bank->irq, d->hwirq, d->irq);
>  	return irq_set_irq_wake(bank->irq, enable);
>  }
>  #endif
> @@ -352,7 +386,7 @@ static struct irq_chip tegra_gpio_irq_chip = {
>  	.irq_unmask	= tegra_gpio_irq_unmask,
>  	.irq_set_type	= tegra_gpio_irq_set_type,
>  #ifdef CONFIG_PM_SLEEP
> -	.irq_set_wake	= tegra_gpio_wake_enable,
> +	.irq_set_wake	= tegra_gpio_irq_set_wake,
>  #endif
>  };
>  
> diff --git a/drivers/input/keyboard/gpio_keys.c b/drivers/input/keyboard/gpio_keys.c
> index 79435de..0a14ec0 100644
> --- a/drivers/input/keyboard/gpio_keys.c
> +++ b/drivers/input/keyboard/gpio_keys.c
> @@ -398,7 +398,7 @@ static irqreturn_t gpio_keys_irq_isr(int irq, void *dev_id)
>  	BUG_ON(irq != bdata->irq);
>  
>  	spin_lock_irqsave(&bdata->lock, flags);
> -
> +printk(KERN_EMERG "key pressed irq %d\n", bdata->irq);
>  	if (!bdata->key_pressed) {
>  		if (bdata->button->wakeup)
>  			pm_wakeup_event(bdata->input->dev.parent, 0);
> @@ -809,8 +809,10 @@ static int gpio_keys_suspend(struct device *dev)
>  	if (device_may_wakeup(dev)) {
>  		for (i = 0; i < ddata->pdata->nbuttons; i++) {
>  			struct gpio_button_data *bdata = &ddata->data[i];
> -			if (bdata->button->wakeup)
> +			if (bdata->button->wakeup) {
> +printk(KERN_EMERG "gpio-key wake irq:%d\n", bdata->irq);
>  				enable_irq_wake(bdata->irq);
> +			}
>  		}
>  	} else {
>  		mutex_lock(&input->mutex);
> --
> To unsubscribe from this list: send the line "unsubscribe linux-tegra" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

  reply	other threads:[~2012-12-05 10:10 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-05 10:01 [PATCH V2 0/6] ARM: tegra20: cpuidle: add power-down state Joseph Lo
2012-12-05 10:01 ` [PATCH V2 1/6] ARM: tegra: add pending SGI checking API Joseph Lo
2012-12-05 22:09   ` Stephen Warren
2012-12-06  7:04     ` Joseph Lo
2012-12-06 18:52       ` Stephen Warren
2012-12-05 10:01 ` [PATCH V2 2/6] ARM: tegra20: cpuidle: add powered-down state for secondary CPU Joseph Lo
2012-12-05 10:50   ` Lorenzo Pieralisi
2012-12-06  8:25     ` Joseph Lo
2012-12-06 18:56       ` Stephen Warren
2013-01-11  7:20     ` Joseph Lo
2013-01-11 12:24       ` Lorenzo Pieralisi
2013-01-15  3:00         ` Joseph Lo
2013-01-15 11:34           ` Lorenzo Pieralisi
2013-01-16  3:17             ` Joseph Lo
2013-01-12 17:33       ` Nicolas Pitre
2012-12-05 22:18   ` Stephen Warren
2012-12-06  7:22     ` Joseph Lo
2012-12-06 18:59       ` Stephen Warren
2012-12-05 10:01 ` [PATCH V2 3/6] ARM: tegra20: clocks: add CPU low-power function into tegra_cpu_car_ops Joseph Lo
2012-12-05 10:01 ` [PATCH V2 4/6] ARM: tegra20: flowctrl: add support for cpu_suspend_enter/exit Joseph Lo
2012-12-05 10:01 ` [PATCH V2 5/6] ARM: tegra20: cpuidle: add powered-down state for CPU0 Joseph Lo
2012-12-05 10:01 ` [PATCH V2 6/6] ARM: tegra20: cpuidle: apply coupled cpuidle for powered-down mode Joseph Lo
2012-12-05 10:01 ` Joseph Lo
2012-12-05 10:10   ` Joseph Lo [this message]
2012-12-06 11:03     ` Grant Likely
2012-12-05 10:01 ` Joseph Lo
2012-12-05 10:11   ` Joseph Lo

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=1354702227.25317.0.camel@jlo-ubuntu-64.nvidia.com \
    --to=josephl@nvidia.com \
    --cc=linux-arm-kernel@lists.infradead.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 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).