1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
#ifndef WMT_TSH_201010191758
#define WMT_TSH_201010191758
#include <linux/platform_device.h>
#include <linux/types.h>
#include <linux/device.h>
#include <linux/suspend.h>
#include <linux/i2c.h>
#include <linux/firmware.h>
#include <mach/hardware.h>
//#define DEBUG_WMT_TS // kinseyli
#ifdef DEBUG_WMT_TS
#undef dbg
#define dbg(fmt, args...) printk(KERN_ALERT "[%s]: " fmt, __FUNCTION__ , ## args)
//#define dbg(fmt, args...) if (kpadall_isrundbg()) printk(KERN_ALERT "[%s]: " fmt, __FUNCTION__, ## args)
#else
#define dbg(fmt, args...)
#endif
#undef errlog
#undef klog
#define errlog(fmt, args...) printk("[%s]: " fmt, __FUNCTION__, ## args)
#define klog(fmt, args...) printk("[%s]: " fmt, __FUNCTION__, ## args)
#define WMT_TS_I2C_NAME "gsl1680-ts"
//#define WMT_TS_I2C_ADDR 0x15
#define PIN_SHARING_SEL_OFFSET 0x200
#define FW_BINARYFILE_SIZE 0x8000
extern int earlysus_en;
//////////////////////////////data type///////////////////////////
typedef struct {
short pressure;
short x;
short y;
//short millisecs;
} TS_EVENT;
struct wmtts_device
{
//data
char* driver_name;
char* ts_id;
//function
int (*init)(void);
int (*probe)(struct platform_device *platdev);
int (*remove)(struct platform_device *pdev);
void (*exit)(void);
int (*suspend)(struct platform_device *pdev, pm_message_t state);
int (*resume)(struct platform_device *pdev);
int (*capacitance_calibrate)(void);
int (*wait_penup)(struct wmtts_device*tsdev); // waiting untill penup
int penup; // 0--pendown;1--penup
};
//////////////////////////function interface/////////////////////////
extern int wmt_ts_get_gpionum(void);
extern int wmt_ts_iscalibrating(void);
extern int wmt_ts_get_resolvX(void);
extern int wmt_ts_get_resolvY(void);
extern int wmt_ts_set_rawcoord(unsigned short x, unsigned short y);
extern int wmt_set_gpirq(int type);
extern int wmt_get_tsirqnum(void);
extern int wmt_disable_gpirq(void);
extern int wmt_enable_gpirq(void);
extern int wmt_is_tsirq_enable(void);
extern int wmt_is_tsint(void);
extern void wmt_clr_int(void);
extern void wmt_tsreset_init(void);
extern int wmt_ts_get_resetgpnum(void);
extern int wmt_ts_get_lcdexchg(void);
extern void wmt_enable_rst_pull(int enable);
extern void wmt_set_rst_pull(int up);
extern void wmt_rst_output(int high);
extern void wmt_rst_input(void);
extern void wmt_set_intasgp(void);
extern void wmt_intgp_out(int val);
extern void wmt_ts_set_irqinput(void);
extern unsigned int wmt_ts_irqinval(void);
extern void wmt_ts_set_penup(int up);
extern int wmt_ts_wait_penup(void);
extern void wmt_ts_wakeup_penup(void);
extern struct i2c_client* ts_get_i2c_client(void);
extern int wmt_ts_ispenup(void);
extern unsigned int wmt_ts_get_xaxis(void);
extern unsigned int wmt_ts_get_xdir(void);
extern unsigned int wmt_ts_get_ydir(void);
extern int wmt_ts_if_tskey(void);
extern void TouchPanelCalibrateAPoint(
int UncalX, //@PARM The uncalibrated X coordinate
int UncalY, //@PARM The uncalibrated Y coordinate
int *pCalX, //@PARM The calibrated X coordinate
int *pCalY //@PARM The calibrated Y coordinate
);
//filepath:the path of firmware file;
//firmdata:store the data from firmware file;
//return:the lengthen of firmware data,negative-parsing error.
extern int read_firmwfile(char* filepath, struct fw_data** firmdata, unsigned int* id_config);
extern int wmt_ts_get_firmwfilename(char* fname);
#endif
|