raydium_i2c_ts.txt 544 B

12345678910111213141516171819
  1. Raydium I2C touchscreen
  2. Required properties:
  3. - compatible: must be "raydium,rm32380"
  4. - reg: The I2C address of the device
  5. - interrupts: interrupt to which the chip is connected
  6. See ../interrupt-controller/interrupts.txt
  7. Optional properties:
  8. - avdd-supply: analog power supply needed to power device
  9. - vccio-supply: IO Power source
  10. - reset-gpios: reset gpio the chip is connected to.
  11. Example:
  12. touchscreen@39 {
  13. compatible = "raydium,rm32380";
  14. reg = <0x39>;
  15. interrupt-parent = <&gpio>;
  16. interrupts = <0x0 IRQ_TYPE_EDGE_FALLING>;
  17. };