cypress,tm2-touchkey.txt 611 B

12345678910111213141516171819202122232425
  1. Samsung tm2-touchkey
  2. Required properties:
  3. - compatible: must be "cypress,tm2-touchkey"
  4. - reg: I2C address of the chip.
  5. - interrupts: interrupt to which the chip is connected (see interrupt
  6. binding[0]).
  7. - vcc-supply : internal regulator output. 1.8V
  8. - vdd-supply : power supply for IC 3.3V
  9. [0]: Documentation/devicetree/bindings/interrupt-controller/interrupts.txt
  10. Example:
  11. &i2c0 {
  12. /* ... */
  13. touchkey@20 {
  14. compatible = "cypress,tm2-touchkey";
  15. reg = <0x20>;
  16. interrupt-parent = <&gpa3>;
  17. interrupts = <2 IRQ_TYPE_EDGE_FALLING>;
  18. vcc-supply=<&ldo32_reg>;
  19. vdd-supply=<&ldo33_reg>;
  20. };
  21. };