@@ -22,6 +22,7 @@
#include <linux/gpio/consumer.h>
#include <linux/pm_runtime.h>
#include <linux/pm_domain.h>
+#include <linux/pm_wakeirq.h>
#include <linux/property.h>
#include <linux/export.h>
#include <linux/sched/rt.h>
@@ -394,13 +395,37 @@ static int spi_drv_probe(struct device *dev)
return ret;
if (dev->of_node) {
- spi->irq = of_irq_get(dev->of_node, 0);
+ spi->irq = of_irq_get_byname(dev->of_node, "irq");
+ if (spi->irq == -EINVAL || spi->irq == -ENODATA)
+ spi->irq = of_irq_get(dev->of_node, 0);
if (spi->irq == -EPROBE_DEFER)
return -EPROBE_DEFER;
if (spi->irq < 0)
spi->irq = 0;
}
+ if (device_property_read_bool(dev, "wakeup-source")) {
+ int wakeirq = -ENOENT;
+
+ if (dev->of_node) {
+ wakeirq = of_irq_get_byname(dev->of_node, "wakeup");
+ if (wakeirq == -EPROBE_DEFER)
+ return wakeirq;
+ }
+
+ device_init_wakeup(dev, true);
+
+ if (wakeirq > 0 && wakeirq != spi->irq)
+ ret = dev_pm_set_dedicated_wake_irq(dev, wakeirq);
+ else if (spi->irq > 0)
+ ret = dev_pm_set_wake_irq(dev, spi->irq);
+ else
+ ret = 0;
+
+ if (ret)
+ dev_warn(dev, "failed to set up wakeup irq: %d\n", ret);
+ }
+
ret = dev_pm_domain_attach(dev, true);
if (ret)
return ret;
Many SPI drivers need to configure their devices for waking up the system. Instead of forcing them to reimplement wakeup handling, let's mirror what I2C core is doing and handle "wakeup-source" device property in SPI core. Also, let's allow naming device's interrupt lines as "irq" and "wakeup" and automatically configure the right one as wakeirq when device is supposed to be a wakeup source. Implementing this is very helpful for drivers that use both I2C and SPI for transport, such as tsc2004/tsc2005. Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> --- drivers/spi/spi.c | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-)