blob: e25675c018818473a5d4db744a94c48f3cb78db1 (
plain)
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
|
#ifndef __LINUX_FT6X06_EX_FUN_H__
#define __LINUX_FT6X06_EX_FUN_H__
#include <linux/i2c.h>
#include <linux/delay.h>
#include <linux/slab.h>
#include <linux/kernel.h>
#include <linux/semaphore.h>
#include <linux/mutex.h>
#include <linux/interrupt.h>
#include <mach/irqs.h>
#include <linux/syscalls.h>
#include <asm/unistd.h>
#include <asm/uaccess.h>
#include <linux/fs.h>
#include <linux/string.h>
#define FT_UPGRADE_AA 0xAA
#define FT_UPGRADE_55 0x55
//upgrade config of FT6X06
/*
#define FT6X06_UPGRADE_AA_DELAY 100
#define FT6X06_UPGRADE_55_DELAY 10
#define FT6X06_UPGRADE_ID_1 0x79
#define FT6X06_UPGRADE_ID_2 0x08
#define FT6X06_UPGRADE_READID_DELAY 10
#define FT6X06_UPGRADE_EARSE_DELAY 2000
*/
/*upgrade config of FT6X36*/
#define FT6X06_UPGRADE_AA_DELAY 10
#define FT6X06_UPGRADE_55_DELAY 10
#define FT6X06_UPGRADE_ID_1 0x79
#define FT6X06_UPGRADE_ID_2 0x18
#define FT6X06_UPGRADE_READID_DELAY 10
#define FT6X06_UPGRADE_EARSE_DELAY 2000
#define FTS_PACKET_LENGTH 128
#define FTS_SETTING_BUF_LEN 128
#define FTS_UPGRADE_LOOP 20
#define FTS_FACTORYMODE_VALUE 0x40
#define FTS_WORKMODE_VALUE 0x00
//#define AUTO_CLB
#define FTS_DBG
#ifdef FTS_DBG
#define DBG(fmt, args...) printk("[FTS]" fmt, ## args)
#else
#define DBG(fmt, args...) do{}while(0)
#endif
/*create sysfs for debug*/
int ft6x06_create_sysfs(struct i2c_client * client);
void ft6x06_release_sysfs(struct i2c_client * client);
int ft6x06_create_apk_debug_channel(struct i2c_client *client);
void ft6x06_release_apk_debug_channel(void);
/*
*ft6x06_write_reg- write register
*@client: handle of i2c
*@regaddr: register address
*@regvalue: register value
*
*/
int ft6x06_write_reg(struct i2c_client * client,u8 regaddr, u8 regvalue);
int ft6x06_read_reg(struct i2c_client * client,u8 regaddr, u8 *regvalue);
#endif
|