taos.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * Copyright (C) 2010 Samsung Electronics. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. * General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program; if not, write to the Free Software
  15. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  16. * 02110-1301 USA
  17. */
  18. #ifndef __LINUX_TAOS_H
  19. #define __LINUX_TAOS_H
  20. #include <linux/types.h>
  21. #ifdef __KERNEL__
  22. #define TAOS_OPT "taos-opt"
  23. #define MIN 1
  24. struct taos_platform_data {
  25. int als_int;
  26. u32 als_int_flags;
  27. #if defined(CONFIG_MACH_COMANCHE)|| defined(CONFIG_MACH_APEXQ) || defined (CONFIG_MACH_EXPRESS)\
  28. || defined(CONFIG_MACH_JASPER) || defined(CONFIG_MACH_GOGH)
  29. void (*power)(int);
  30. void (*led_on)(int);
  31. #else
  32. int (*power)(bool);
  33. int (*led_on)(bool);
  34. #endif
  35. int (*light_adc_value)(void);
  36. int prox_thresh_hi;
  37. int prox_thresh_low;
  38. int prox_th_hi_cal;
  39. int prox_th_low_cal;
  40. int als_time;
  41. int intr_filter;
  42. int prox_pulsecnt;
  43. int prox_gain;
  44. int coef_atime;
  45. int ga;
  46. int coef_a;
  47. int coef_b;
  48. int coef_c;
  49. int coef_d;
  50. int min_max;
  51. };
  52. #endif /*__KERNEL__*/
  53. #endif