qt602240_ts.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * AT42QT602240/ATMXT224 Touchscreen driver
  3. *
  4. * Copyright (C) 2010 Samsung Electronics Co.Ltd
  5. * Author: Joonyoung Shim <jy0922.shim@samsung.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License as published by the
  9. * Free Software Foundation; either version 2 of the License, or (at your
  10. * option) any later version.
  11. */
  12. #ifndef __LINUX_QT602240_TS_H
  13. #define __LINUX_QT602240_TS_H
  14. /* Orient */
  15. #define QT602240_NORMAL 0x0
  16. #define QT602240_DIAGONAL 0x1
  17. #define QT602240_HORIZONTAL_FLIP 0x2
  18. #define QT602240_ROTATED_90_COUNTER 0x3
  19. #define QT602240_VERTICAL_FLIP 0x4
  20. #define QT602240_ROTATED_90 0x5
  21. #define QT602240_ROTATED_180 0x6
  22. #define QT602240_DIAGONAL_COUNTER 0x7
  23. /* The platform data for the AT42QT602240/ATMXT224 touchscreen driver */
  24. struct qt602240_platform_data {
  25. unsigned int x_line;
  26. unsigned int y_line;
  27. unsigned int x_size;
  28. unsigned int y_size;
  29. unsigned int blen;
  30. unsigned int threshold;
  31. unsigned int voltage;
  32. unsigned char orient;
  33. };
  34. #endif /* __LINUX_QT602240_TS_H */