]> git.baikalelectronics.ru Git - kernel.git/commit
i2c: allow specifying separate wakeup interrupt in device tree
authorDmitry Torokhov <dmitry.torokhov@gmail.com>
Tue, 18 Aug 2015 06:52:51 +0000 (23:52 -0700)
committerWolfram Sang <wsa@the-dreams.de>
Wed, 26 Aug 2015 16:47:58 +0000 (18:47 +0200)
commit205a33e55815da65a5a865ba88a2e71e6471d1c8
tree0ff653d0f8f568de90074b13129a52884970874b
parentd215185b65656330f4aa52afbe37135eeaefa521
i2c: allow specifying separate wakeup interrupt in device tree

Instead of having each i2c driver individually parse device tree data in
case it or platform supports separate wakeup interrupt, and handle
enabling and disabling wakeup interrupts in their power management
routines, let's have i2c core do that for us.

Platforms wishing to specify separate wakeup interrupt for the device
should use named interrupt syntax in their DTSes:

interrupt-parent = <&intc1>;
interrupts = <5 0>, <6 0>;
interrupt-names = "irq", "wakeup";

This patch is inspired by work done by Vignesh R <vigneshr@ti.com> for
pixcir_i2c_ts driver.

Note that the original code tried to preserve any existing wakeup
settings from userspace but was not quite right in that regard:
it would preserve wakeup flag set by userspace upon driver rebinding;
but it would re-arm the wakeup flag if it was disabled by userspace.

We think that resetting the flag upon re-binding the driver is proper
behavior as the driver is responsible for setting up and handling
wakeups.

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Tested-by: Vignesh R <vigneshr@ti.com>
[wsa: updated the commit message]
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Documentation/devicetree/bindings/i2c/i2c.txt
drivers/i2c/i2c-core.c