cyttsp.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * Header file for:
  3. * Cypress TrueTouch(TM) Standard Product (TTSP) touchscreen drivers.
  4. * For use with Cypress Txx3xx parts.
  5. * Supported parts include:
  6. * CY8CTST341
  7. * CY8CTMA340
  8. *
  9. * Copyright (C) 2009, 2010, 2011 Cypress Semiconductor, Inc.
  10. * Copyright (C) 2012 Javier Martinez Canillas <javier@dowhile0.org>
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License
  14. * version 2, and only version 2, as published by the
  15. * Free Software Foundation.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License along
  23. * with this program; if not, write to the Free Software Foundation, Inc.,
  24. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  25. *
  26. * Contact Cypress Semiconductor at www.cypress.com (kev@cypress.com)
  27. *
  28. */
  29. #ifndef _CYTTSP_H_
  30. #define _CYTTSP_H_
  31. #define CY_SPI_NAME "cyttsp-spi"
  32. #define CY_I2C_NAME "cyttsp-i2c"
  33. /* Active Power state scanning/processing refresh interval */
  34. #define CY_ACT_INTRVL_DFLT 0x00 /* ms */
  35. /* touch timeout for the Active power */
  36. #define CY_TCH_TMOUT_DFLT 0xFF /* ms */
  37. /* Low Power state scanning/processing refresh interval */
  38. #define CY_LP_INTRVL_DFLT 0x0A /* ms */
  39. /* Active distance in pixels for a gesture to be reported */
  40. #define CY_ACT_DIST_DFLT 0xF8 /* pixels */
  41. struct cyttsp_platform_data {
  42. u32 maxx;
  43. u32 maxy;
  44. bool use_hndshk;
  45. u8 act_dist; /* Active distance */
  46. u8 act_intrvl; /* Active refresh interval; ms */
  47. u8 tch_tmout; /* Active touch timeout; ms */
  48. u8 lp_intrvl; /* Low power refresh interval; ms */
  49. int (*init)(void);
  50. void (*exit)(void);
  51. char *name;
  52. s16 irq_gpio;
  53. u8 *bl_keys;
  54. };
  55. #endif /* _CYTTSP_H_ */