summaryrefslogtreecommitdiff
path: root/fw/fe310/eos/dev/gt911.c
blob: d047ef20fceea7180deb09c7454d4de3999e0234 (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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <stdio.h>

#include "platform.h"
#include "board.h"

#include "eos.h"
#include "event.h"

#include "soc/interrupt.h"
#include "soc/timer.h"
#include "soc/i2c.h"
#include "soc/i2s.h"

#include "dev/eve.h"

#include "eve/eve.h"
#include "eve/eve_touch_engine.h"

#include "gt911.h"

#define CMD_SLEEP       0x05

#define REG_CMD         0x8040
#define REG_CMD2        0x8046

#define REG_STATUS      0x814E
#define REG_POINTS      0x814F

#define REG_CFG         0x8047
#define REG_CHKSUM      0x80FF

#define REG_X_THR       0x8057
#define REG_Y_THR       0x8058

#define REG_PRODID      0x8140

#define SIZE_POINT_BUF  8
#define MAX_POINTS      5

static int clear_tag0 = 0;

static void handle_evt(unsigned char type, unsigned char *buffer, uint16_t len) {
    uint8_t status;
    uint8_t points[SIZE_POINT_BUF * MAX_POINTS];
    int i, num_points;
    int rv;

    if (!eos_gt911_intr_enabled()) return;

    rv = eos_i2c_read16(GT911_ADDR, REG_STATUS, &status, 1);
    if (rv) goto handle_evt_fin1;

    if (!(status & 0x80)) goto handle_evt_fin1;

    num_points = status & 0xf;
    if (num_points > 5) goto handle_evt_fin1;

    rv = eos_spi_select(EOS_SPI_DEV_EVE);
    if (rv) goto handle_evt_fin0;
    while (!eve_touch_ehost_ready());

    if (num_points) {
        if (clear_tag0) {
            eve_touch_clear_tag0();
            clear_tag0 = 0;
        }
        rv = eos_i2c_read16(GT911_ADDR, REG_POINTS, points, SIZE_POINT_BUF * num_points);
        if (rv) goto handle_evt_fin0;

        for (i=0; i<num_points; i++) {
            uint8_t *point_buf;
            uint8_t point_id;
            uint16_t point_x;
            uint16_t point_y;

            point_buf = points + SIZE_POINT_BUF * i;
            point_id = point_buf[0];
            point_x = point_buf[1] | (point_buf[2] << 8);
            point_y = point_buf[3] | (point_buf[4] << 8);
            eve_touch_ehost_enter(point_id, point_x, point_y);
        }
    } else {
        eve_touch_ehost_enter(0, 0x8000, 0x8000);
        clear_tag0 = 1;
    }

    eve_touch_ehost_end();
    eos_spi_deselect();

    if (!eos_eve_intr_enabled()) {
        eos_eve_poll();
    }

handle_evt_fin0:
    status = 0;
    rv = eos_i2c_write16(GT911_ADDR, REG_STATUS, &status, 1);

handle_evt_fin1:
    GPIO_REG(GPIO_RISE_IE) |= (1 << CTP_PIN_INT);
}

static void handle_intr(void) {
    GPIO_REG(GPIO_RISE_IE) &= ~(1 << CTP_PIN_INT);
    GPIO_REG(GPIO_RISE_IP) = (1 << CTP_PIN_INT);
    eos_evtq_push_isr(EOS_EVT_CTP | CTP_ETYPE_INTR, NULL, 0);
}

int g911_command(uint8_t command) {
    int rv;

    if (command > 0x07) {
        rv = eos_i2c_write16(GT911_ADDR, REG_CMD2, &command, 1);
        if (rv) return rv;
    }

    rv = eos_i2c_write16(GT911_ADDR, REG_CMD, &command, 1);
    if (rv) return rv;

    return EOS_OK;
}

static uint8_t gt911_chksum(uint8_t *buf,  uint8_t len) {
    int i;
    uint8_t csum = 0;

    for(i=0; i<len; i++) {
        csum += buf[i];
    }

    // csum %= 256;
    csum = (~csum) + 1;

    return csum;
}

static int gt911_chip_id(char *buf) {
    int rv;

    rv = eos_i2c_read16(GT911_ADDR, REG_PRODID, buf, 4);
    return rv;
}

void eos_gt911_init(void) {
    eos_intr_set_handler(INT_GPIO_BASE + CTP_PIN_INT, handle_intr);
    eos_intr_set_priority(INT_GPIO_BASE + CTP_PIN_INT, IRQ_PRIORITY_CTP);
    eos_evtq_set_handler(EOS_EVT_CTP, handle_evt);
}

void eos_gt911_intr_enable(void) {
    GPIO_REG(GPIO_INPUT_EN)     |=  (1 << CTP_PIN_INT);
    GPIO_REG(GPIO_RISE_IE)      |=  (1 << CTP_PIN_INT);
    eos_intr_enable(INT_GPIO_BASE + CTP_PIN_INT);
}

void eos_gt911_intr_disable(void) {
    eos_intr_disable(INT_GPIO_BASE + CTP_PIN_INT);
    GPIO_REG(GPIO_RISE_IE)      &= ~(1 << CTP_PIN_INT);
    GPIO_REG(GPIO_INPUT_EN)     &= ~(1 << CTP_PIN_INT);
}

int eos_gt911_intr_enabled(void) {
    return !!(GPIO_REG(GPIO_INPUT_EN) & (1 << CTP_PIN_INT));
}

void eos_gt911_reset(void) {
    eos_gt911_intr_disable();

    /* INT and RST output and low */
    GPIO_REG(GPIO_OUTPUT_VAL)   &= ~((1 << CTP_PIN_INT) | (1 << CTP_PIN_RST));
    GPIO_REG(GPIO_OUTPUT_EN)    |=  ((1 << CTP_PIN_INT) | (1 << CTP_PIN_RST));

    /* T2: > 10ms */
    eos_time_sleep(12);

    /* high: 0x28/0x29 (0x14 7bit), low: 0xBA/0xBB (0x5D 7bit) */
    if (GT911_ADDR == 0x14) {
        GPIO_REG(GPIO_OUTPUT_VAL) |= (1 << CTP_PIN_INT);
    }

    /* T3: > 100us */
    eos_time_sleep(1);
    GPIO_REG(GPIO_OUTPUT_EN)    &= ~(1 << CTP_PIN_RST);

    /* T4: > 5ms */
    eos_time_sleep(6);
    GPIO_REG(GPIO_OUTPUT_VAL)   &= ~(1 << CTP_PIN_INT);
    /* end select I2C slave addr */

    /* T5: > 50ms */
    eos_time_sleep(51);

    /* set INT as input */
    GPIO_REG(GPIO_OUTPUT_EN)    &= ~(1 << CTP_PIN_INT);
    eos_gt911_intr_enable();
}

void eos_gt911_sleep(void) {
    eos_gt911_intr_disable();

    GPIO_REG(GPIO_OUTPUT_VAL)   &= ~(1 << CTP_PIN_INT);
    GPIO_REG(GPIO_OUTPUT_EN)    |=  (1 << CTP_PIN_INT);

    g911_command(CMD_SLEEP);
}

void eos_gt911_wake(void) {
    /* in case of wake from mcu sleep */
    GPIO_REG(GPIO_OUTPUT_EN)    |=  (1 << CTP_PIN_INT);
    GPIO_REG(GPIO_OUTPUT_VAL)   |=  (1 << CTP_PIN_INT);

    eos_time_sleep(5);
    GPIO_REG(GPIO_OUTPUT_EN)    &= ~(1 << CTP_PIN_INT);
    GPIO_REG(GPIO_OUTPUT_VAL)   &= ~(1 << CTP_PIN_INT);

    eos_gt911_intr_enable();
}

int eos_gt911_cfg_read(uint8_t *cfg_buf) {
    int rv;

    rv = eos_i2c_read16(GT911_ADDR, REG_CFG, cfg_buf, GT911_SIZE_CFG);
    return rv;
}

int eos_gt911_cfg_write(uint8_t *cfg_buf) {
    int rv;

    cfg_buf[GT911_SIZE_CFG - 2] = gt911_chksum(cfg_buf, GT911_SIZE_CFG - 2);
    cfg_buf[GT911_SIZE_CFG - 1] = 1;

    rv = eos_i2c_write16(GT911_ADDR, REG_CFG, cfg_buf, GT911_SIZE_CFG);
    return rv;
}

int eos_gt911_cfg_print(void) {
    int i, rv;
    uint8_t cfg_buf[GT911_SIZE_CFG];

    rv = eos_gt911_cfg_read(cfg_buf);
    if (rv) return rv;

    printf("GT911 CFG:\n");
    for (i=0; i<GT911_SIZE_CFG-2; i++) {
        printf("%.2X", cfg_buf[i]);
        if (i % 8 == 7) {
            printf("\n");
        } else {
            printf(" ");
        }
    }

    return EOS_OK;
}

void eos_gt911_set_reg(uint8_t *cfg_buf, uint16_t reg, uint8_t val) {
    cfg_buf[reg - REG_CFG] = val;
}

uint8_t eos_gt911_get_reg(uint8_t *cfg_buf, uint16_t reg) {
    return cfg_buf[reg - REG_CFG];
}

int eos_gt911_set_threshold(void) {
    int rv;
    uint8_t cfg_buf[GT911_SIZE_CFG];

    rv = eos_gt911_cfg_read(cfg_buf);
    if (rv) return rv;

    eos_gt911_set_reg(cfg_buf, REG_X_THR, 1);
    eos_gt911_set_reg(cfg_buf, REG_Y_THR, 1);

    rv = eos_gt911_cfg_write(cfg_buf);
    return rv;
}