aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Drake <drake@endlessm.com>2017-09-11 02:11:56 -0400
committerLinus Walleij <linus.walleij@linaro.org>2017-09-12 09:58:45 -0400
commit79d2c8bede2c93f9432d7da0bc2f76a195c90fc0 (patch)
tree380ab56d10c279b0d5ff9d13a63a461d11c2ba31
parenta9a1a4833613b8a2e8dd79f860ea1871f17da02c (diff)
pinctrl/amd: save pin registers over suspend/resume
The touchpad in the Asus laptop models X505BA/BP and X542BA/BP is unresponsive after suspend/resume. The following error appears during resume: i2c_hid i2c-ELAN1300:00: failed to reset device. The problem here is that i2c_hid does not notice the interrupt being generated at this point, because the GPIO is no longer configured for interrupts. Fix this by saving pinctrl-amd pin registers during suspend and restoring them at resume time. Based on code from pinctrl-intel. Cc: stable@vger.kernel.org Signed-off-by: Daniel Drake <drake@endlessm.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r--drivers/pinctrl/pinctrl-amd.c75
-rw-r--r--drivers/pinctrl/pinctrl-amd.h1
2 files changed, 76 insertions, 0 deletions
diff --git a/drivers/pinctrl/pinctrl-amd.c b/drivers/pinctrl/pinctrl-amd.c
index 38af1ec2df0c..3f6b34febbf1 100644
--- a/drivers/pinctrl/pinctrl-amd.c
+++ b/drivers/pinctrl/pinctrl-amd.c
@@ -36,6 +36,7 @@
36#include <linux/pinctrl/pinconf.h> 36#include <linux/pinctrl/pinconf.h>
37#include <linux/pinctrl/pinconf-generic.h> 37#include <linux/pinctrl/pinconf-generic.h>
38 38
39#include "core.h"
39#include "pinctrl-utils.h" 40#include "pinctrl-utils.h"
40#include "pinctrl-amd.h" 41#include "pinctrl-amd.h"
41 42
@@ -725,6 +726,69 @@ static const struct pinconf_ops amd_pinconf_ops = {
725 .pin_config_group_set = amd_pinconf_group_set, 726 .pin_config_group_set = amd_pinconf_group_set,
726}; 727};
727 728
729#ifdef CONFIG_PM_SLEEP
730static bool amd_gpio_should_save(struct amd_gpio *gpio_dev, unsigned int pin)
731{
732 const struct pin_desc *pd = pin_desc_get(gpio_dev->pctrl, pin);
733
734 if (!pd)
735 return false;
736
737 /*
738 * Only restore the pin if it is actually in use by the kernel (or
739 * by userspace).
740 */
741 if (pd->mux_owner || pd->gpio_owner ||
742 gpiochip_line_is_irq(&gpio_dev->gc, pin))
743 return true;
744
745 return false;
746}
747
748int amd_gpio_suspend(struct device *dev)
749{
750 struct platform_device *pdev = to_platform_device(dev);
751 struct amd_gpio *gpio_dev = platform_get_drvdata(pdev);
752 struct pinctrl_desc *desc = gpio_dev->pctrl->desc;
753 int i;
754
755 for (i = 0; i < desc->npins; i++) {
756 int pin = desc->pins[i].number;
757
758 if (!amd_gpio_should_save(gpio_dev, pin))
759 continue;
760
761 gpio_dev->saved_regs[i] = readl(gpio_dev->base + pin*4);
762 }
763
764 return 0;
765}
766
767int amd_gpio_resume(struct device *dev)
768{
769 struct platform_device *pdev = to_platform_device(dev);
770 struct amd_gpio *gpio_dev = platform_get_drvdata(pdev);
771 struct pinctrl_desc *desc = gpio_dev->pctrl->desc;
772 int i;
773
774 for (i = 0; i < desc->npins; i++) {
775 int pin = desc->pins[i].number;
776
777 if (!amd_gpio_should_save(gpio_dev, pin))
778 continue;
779
780 writel(gpio_dev->saved_regs[i], gpio_dev->base + pin*4);
781 }
782
783 return 0;
784}
785
786static const struct dev_pm_ops amd_gpio_pm_ops = {
787 SET_LATE_SYSTEM_SLEEP_PM_OPS(amd_gpio_suspend,
788 amd_gpio_resume)
789};
790#endif
791
728static struct pinctrl_desc amd_pinctrl_desc = { 792static struct pinctrl_desc amd_pinctrl_desc = {
729 .pins = kerncz_pins, 793 .pins = kerncz_pins,
730 .npins = ARRAY_SIZE(kerncz_pins), 794 .npins = ARRAY_SIZE(kerncz_pins),
@@ -764,6 +828,14 @@ static int amd_gpio_probe(struct platform_device *pdev)
764 return irq_base; 828 return irq_base;
765 } 829 }
766 830
831#ifdef CONFIG_PM_SLEEP
832 gpio_dev->saved_regs = devm_kcalloc(&pdev->dev, amd_pinctrl_desc.npins,
833 sizeof(*gpio_dev->saved_regs),
834 GFP_KERNEL);
835 if (!gpio_dev->saved_regs)
836 return -ENOMEM;
837#endif
838
767 gpio_dev->pdev = pdev; 839 gpio_dev->pdev = pdev;
768 gpio_dev->gc.direction_input = amd_gpio_direction_input; 840 gpio_dev->gc.direction_input = amd_gpio_direction_input;
769 gpio_dev->gc.direction_output = amd_gpio_direction_output; 841 gpio_dev->gc.direction_output = amd_gpio_direction_output;
@@ -853,6 +925,9 @@ static struct platform_driver amd_gpio_driver = {
853 .driver = { 925 .driver = {
854 .name = "amd_gpio", 926 .name = "amd_gpio",
855 .acpi_match_table = ACPI_PTR(amd_gpio_acpi_match), 927 .acpi_match_table = ACPI_PTR(amd_gpio_acpi_match),
928#ifdef CONFIG_PM_SLEEP
929 .pm = &amd_gpio_pm_ops,
930#endif
856 }, 931 },
857 .probe = amd_gpio_probe, 932 .probe = amd_gpio_probe,
858 .remove = amd_gpio_remove, 933 .remove = amd_gpio_remove,
diff --git a/drivers/pinctrl/pinctrl-amd.h b/drivers/pinctrl/pinctrl-amd.h
index 5b1cb965c767..8fa453a59da5 100644
--- a/drivers/pinctrl/pinctrl-amd.h
+++ b/drivers/pinctrl/pinctrl-amd.h
@@ -97,6 +97,7 @@ struct amd_gpio {
97 unsigned int hwbank_num; 97 unsigned int hwbank_num;
98 struct resource *res; 98 struct resource *res;
99 struct platform_device *pdev; 99 struct platform_device *pdev;
100 u32 *saved_regs;
100}; 101};
101 102
102/* KERNCZ configuration*/ 103/* KERNCZ configuration*/