Message ID | 20170202121155.6575-1-m.niestroj@grinn-global.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
* Marcin Niestroj <m.niestroj@grinn-global.com> [170202 05:03]: > On chiliBoard power button is connected to TPS65217. It signals power > button presses by asserting interrupt output and allows to read the > state by i2c bus. > > Handle TPS65217 interrupts and enable notifications of power button > presses. Applying both into omap-for-v4.11/dt thanks. Tony -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/arch/arm/boot/dts/am335x-chiliboard.dts b/arch/arm/boot/dts/am335x-chiliboard.dts index 2a624b3c9258..4e13cc03d656 100644 --- a/arch/arm/boot/dts/am335x-chiliboard.dts +++ b/arch/arm/boot/dts/am335x-chiliboard.dts @@ -185,3 +185,13 @@ cd-gpios = <&gpio0 6 GPIO_ACTIVE_HIGH>; status = "okay"; }; + +&tps { + interrupt-parent = <&intc>; + interrupts = <7>; /* NNMI */ + + pwrbutton { + interrupts = <2>; + status = "okay"; + }; +};
On chiliBoard power button is connected to TPS65217. It signals power button presses by asserting interrupt output and allows to read the state by i2c bus. Handle TPS65217 interrupts and enable notifications of power button presses. Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com> --- arch/arm/boot/dts/am335x-chiliboard.dts | 10 ++++++++++ 1 file changed, 10 insertions(+)