max11801-ts.txt 373 B

1234567891011121314151617
  1. * MAXI MAX11801 Resistive touch screen controller with i2c interface
  2. Required properties:
  3. - compatible: must be "maxim,max11801"
  4. - reg: i2c slave address
  5. - interrupts: touch controller interrupt
  6. Example:
  7. &i2c1 {
  8. max11801: touchscreen@48 {
  9. compatible = "maxim,max11801";
  10. reg = <0x48>;
  11. interrupt-parent = <&gpio3>;
  12. interrupts = <31 IRQ_TYPE_EDGE_FALLING>;
  13. };
  14. };