blob: c98450887d5e0776630702b4d4d2e0da413e623b [file] [log] [blame]
Lee Jones84e6de82012-11-05 16:10:34 +01001* STMPE Multi-Functional Device
2
3Required properties:
4 - compatible : "st,stmpe[811|1601|2401|2403]"
5 - reg : I2C address of the device
6
7Optional properties:
8 - interrupts : The interrupt outputs from the controller
9 - interrupt-controller : Marks the device node as an interrupt controller
10 - interrupt-parent : Specifies which IRQ controller we're connected to
Lee Jonescc899bc2012-11-22 12:24:24 +000011 - wakeup-source : Marks the input device as wakable
Lee Jones84e6de82012-11-05 16:10:34 +010012 - st,autosleep-timeout : Valid entries (ms); 4, 16, 32, 64, 128, 256, 512 and 1024
13
14Example:
15
16 stmpe1601: stmpe1601@40 {
17 compatible = "st,stmpe1601";
18 reg = <0x40>;
19 interrupts = <26 0x4>;
20 interrupt-parent = <&gpio6>;
21 interrupt-controller;
22
Lee Jonescc899bc2012-11-22 12:24:24 +000023 wakeup-source;
Lee Jones84e6de82012-11-05 16:10:34 +010024 st,autosleep-timeout = <1024>;
25 };