2017-01-19 06:35:42 +08:00
|
|
|
Samsung tm2-touchkey
|
|
|
|
|
|
|
|
Required properties:
|
2019-01-08 03:09:26 +08:00
|
|
|
- compatible:
|
|
|
|
* "cypress,tm2-touchkey" - for the touchkey found on the tm2 board
|
|
|
|
* "cypress,midas-touchkey" - for the touchkey found on midas boards
|
2017-01-19 06:35:42 +08:00
|
|
|
- reg: I2C address of the chip.
|
|
|
|
- interrupt-parent: a phandle for the interrupt controller (see interrupt
|
|
|
|
binding[0]).
|
|
|
|
- interrupts: interrupt to which the chip is connected (see interrupt
|
|
|
|
binding[0]).
|
|
|
|
- vcc-supply : internal regulator output. 1.8V
|
|
|
|
- vdd-supply : power supply for IC 3.3V
|
|
|
|
|
|
|
|
[0]: Documentation/devicetree/bindings/interrupt-controller/interrupts.txt
|
|
|
|
|
|
|
|
Example:
|
|
|
|
&i2c0 {
|
|
|
|
/* ... */
|
|
|
|
|
|
|
|
touchkey@20 {
|
|
|
|
compatible = "cypress,tm2-touchkey";
|
|
|
|
reg = <0x20>;
|
|
|
|
interrupt-parent = <&gpa3>;
|
|
|
|
interrupts = <2 IRQ_TYPE_EDGE_FALLING>;
|
|
|
|
vcc-supply=<&ldo32_reg>;
|
|
|
|
vdd-supply=<&ldo33_reg>;
|
|
|
|
};
|
|
|
|
};
|