sharpsl.h 475 B

1234567891011121314151617181920212223242526
  1. /*
  2. * SharpSL SSP Driver
  3. */
  4. struct corgissp_machinfo {
  5. int port;
  6. int cs_lcdcon;
  7. int cs_ads7846;
  8. int cs_max1111;
  9. int clk_lcdcon;
  10. int clk_ads7846;
  11. int clk_max1111;
  12. };
  13. void corgi_ssp_set_machinfo(struct corgissp_machinfo *machinfo);
  14. /*
  15. * SharpSL Touchscreen Driver
  16. */
  17. unsigned long corgi_get_hsync_len(void);
  18. unsigned long spitz_get_hsync_len(void);
  19. void corgi_put_hsync(void);
  20. void spitz_put_hsync(void);
  21. void corgi_wait_hsync(void);
  22. void spitz_wait_hsync(void);