melfas_mip4.txt 517 B

1234567891011121314151617181920
  1. * MELFAS MIP4 Touchscreen
  2. Required properties:
  3. - compatible: must be "melfas,mip4_ts"
  4. - reg: I2C slave address of the chip (0x48 or 0x34)
  5. - interrupts: interrupt to which the chip is connected
  6. Optional properties:
  7. - ce-gpios: GPIO connected to the CE (chip enable) pin of the chip
  8. Example:
  9. i2c@00000000 {
  10. touchscreen: melfas_mip4@48 {
  11. compatible = "melfas,mip4_ts";
  12. reg = <0x48>;
  13. interrupt-parent = <&gpio>;
  14. interrupts = <0 IRQ_TYPE_EDGE_FALLING>;
  15. ce-gpios = <&gpio 0 GPIO_ACTIVE_HIGH>;
  16. };
  17. };