Commit b8c824a8 authored by Basavaraj Natikar's avatar Basavaraj Natikar Committed by Linus Walleij

pinctrl: amd: Don't save/restore interrupt status and wake status bits

Saving/restoring interrupt and wake status bits across suspend can
cause the suspend to fail if an IRQ is serviced across the
suspend cycle.
Signed-off-by: default avatarMario Limonciello <mario.limonciello@amd.com>
Signed-off-by: default avatarBasavaraj Natikar <Basavaraj.Natikar@amd.com>
Fixes: 79d2c8be ("pinctrl/amd: save pin registers over suspend/resume")
Link: https://lore.kernel.org/r/20220613064127.220416-3-Basavaraj.Natikar@amd.comSigned-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 21793d22
...@@ -918,6 +918,7 @@ static int amd_gpio_suspend(struct device *dev) ...@@ -918,6 +918,7 @@ static int amd_gpio_suspend(struct device *dev)
{ {
struct amd_gpio *gpio_dev = dev_get_drvdata(dev); struct amd_gpio *gpio_dev = dev_get_drvdata(dev);
struct pinctrl_desc *desc = gpio_dev->pctrl->desc; struct pinctrl_desc *desc = gpio_dev->pctrl->desc;
unsigned long flags;
int i; int i;
for (i = 0; i < desc->npins; i++) { for (i = 0; i < desc->npins; i++) {
...@@ -926,7 +927,9 @@ static int amd_gpio_suspend(struct device *dev) ...@@ -926,7 +927,9 @@ static int amd_gpio_suspend(struct device *dev)
if (!amd_gpio_should_save(gpio_dev, pin)) if (!amd_gpio_should_save(gpio_dev, pin))
continue; continue;
gpio_dev->saved_regs[i] = readl(gpio_dev->base + pin*4); raw_spin_lock_irqsave(&gpio_dev->lock, flags);
gpio_dev->saved_regs[i] = readl(gpio_dev->base + pin * 4) & ~PIN_IRQ_PENDING;
raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
} }
return 0; return 0;
...@@ -936,6 +939,7 @@ static int amd_gpio_resume(struct device *dev) ...@@ -936,6 +939,7 @@ static int amd_gpio_resume(struct device *dev)
{ {
struct amd_gpio *gpio_dev = dev_get_drvdata(dev); struct amd_gpio *gpio_dev = dev_get_drvdata(dev);
struct pinctrl_desc *desc = gpio_dev->pctrl->desc; struct pinctrl_desc *desc = gpio_dev->pctrl->desc;
unsigned long flags;
int i; int i;
for (i = 0; i < desc->npins; i++) { for (i = 0; i < desc->npins; i++) {
...@@ -944,7 +948,10 @@ static int amd_gpio_resume(struct device *dev) ...@@ -944,7 +948,10 @@ static int amd_gpio_resume(struct device *dev)
if (!amd_gpio_should_save(gpio_dev, pin)) if (!amd_gpio_should_save(gpio_dev, pin))
continue; continue;
writel(gpio_dev->saved_regs[i], gpio_dev->base + pin*4); raw_spin_lock_irqsave(&gpio_dev->lock, flags);
gpio_dev->saved_regs[i] |= readl(gpio_dev->base + pin * 4) & PIN_IRQ_PENDING;
writel(gpio_dev->saved_regs[i], gpio_dev->base + pin * 4);
raw_spin_unlock_irqrestore(&gpio_dev->lock, flags);
} }
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment