123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /*
- * Copyright (C) 2010 Samsung Electronics. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * version 2 as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA
- */
- #ifndef __LINUX_TAOS_H
- #define __LINUX_TAOS_H
- #include <linux/types.h>
- #ifdef __KERNEL__
- #define TAOS_OPT "taos-opt"
- #define MIN 1
- struct taos_platform_data {
- int als_int;
- u32 als_int_flags;
- #if defined(CONFIG_MACH_COMANCHE)|| defined(CONFIG_MACH_APEXQ) || defined (CONFIG_MACH_EXPRESS)\
- || defined(CONFIG_MACH_JASPER) || defined(CONFIG_MACH_GOGH)
- void (*power)(int);
- void (*led_on)(int);
- #else
- int (*power)(bool);
- int (*led_on)(bool);
- #endif
- int (*light_adc_value)(void);
- int prox_thresh_hi;
- int prox_thresh_low;
- int prox_th_hi_cal;
- int prox_th_low_cal;
- int als_time;
- int intr_filter;
- int prox_pulsecnt;
- int prox_gain;
- int coef_atime;
- int ga;
- int coef_a;
- int coef_b;
- int coef_c;
- int coef_d;
- int min_max;
- };
- #endif /*__KERNEL__*/
- #endif
|