raydium_i2c_ts.txt 605 B

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