samsung,s6sy761.txt 849 B

1234567891011121314151617181920212223242526272829303132
  1. * Samsung S6SY761 touchscreen controller
  2. Required properties:
  3. - compatible : must be "samsung,s6sy761"
  4. - reg : I2C slave address, (e.g. 0x48)
  5. - interrupts : interrupt specification
  6. - avdd-supply : analogic power supply
  7. - vdd-supply : power supply
  8. Optional properties:
  9. - touchscreen-size-x : see touchscreen.txt. This property is embedded in the
  10. device. If defined it forces a different x resolution.
  11. - touchscreen-size-y : see touchscreen.txt. This property is embedded in the
  12. device. If defined it forces a different y resolution.
  13. Example:
  14. i2c@00000000 {
  15. /* ... */
  16. touchscreen@48 {
  17. compatible = "samsung,s6sy761";
  18. reg = <0x48>;
  19. interrupt-parent = <&gpa1>;
  20. interrupts = <1 IRQ_TYPE_NONE>;
  21. avdd-supply = <&ldo30_reg>;
  22. vdd-supply = <&ldo31_reg>;
  23. touchscreen-size-x = <4096>;
  24. touchscreen-size-y = <4096>;
  25. };
  26. };