summaryrefslogtreecommitdiff
path: root/fw/fe310/eos/dev/lcd.c
blob: 69651d0bab36318d6a858936608cc0bcdb41aaf6 (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
#include <stdlib.h>
#include <stdint.h>

#include "encoding.h"
#include "platform.h"

#include "eos.h"

#include "board.h"

#include "soc/timer.h"
#include "soc/pwr.h"
#include "eve/eve.h"

#include "eve.h"
#include "gt911.h"
#include "ili9806e.h"

#include "lcd.h"

static int lcd_enable(void) {
    int rv;

    rv = eos_spi_select(EOS_SPI_DEV_EVE);
    if (rv) return rv;

    eve_gpio_set(EVE_GPIO_LCD_EN, 1);
    eos_spi_deselect();

    return EOS_OK;
}

static int lcd_disable(void) {
    int rv;

    rv = eos_spi_select(EOS_SPI_DEV_EVE);
    if (rv) return rv;

    eve_gpio_set(EVE_GPIO_LCD_EN, 0);
    eos_spi_deselect();

    return EOS_OK;
}

int lcd_select(void) {
    int rv;

    GPIO_REG(GPIO_OUTPUT_XOR)   |=  (1 << SPI_CSPIN_LCD);
    GPIO_REG(GPIO_OUTPUT_VAL)   |=  (1 << SPI_CSPIN_LCD);
    GPIO_REG(GPIO_OUTPUT_EN)    |=  (1 << SPI_CSPIN_LCD);

    rv = eos_spi_select(EOS_SPI_DEV_LCD);
    if (rv) {
        GPIO_REG(GPIO_OUTPUT_EN)    &= ~(1 << SPI_CSPIN_LCD);
        GPIO_REG(GPIO_OUTPUT_XOR)   &= ~(1 << SPI_CSPIN_LCD);
        GPIO_REG(GPIO_OUTPUT_VAL)   &= ~(1 << SPI_CSPIN_LCD);
        return rv;
    }

    return EOS_OK;
}

void lcd_deselect(void) {
    eos_spi_deselect();
    GPIO_REG(GPIO_OUTPUT_EN)    &= ~(1 << SPI_CSPIN_LCD);
    GPIO_REG(GPIO_OUTPUT_XOR)   &= ~(1 << SPI_CSPIN_LCD);
    GPIO_REG(GPIO_OUTPUT_VAL)   &= ~(1 << SPI_CSPIN_LCD);
}

int eos_lcd_init(uint8_t wakeup_cause) {
    int rst = (wakeup_cause == EOS_PWR_WAKE_RST);
    int rv;

    rv = eos_lcd_wake();
    if (rv) return rv;

    eos_gt911_init();
    if (rst) {
        eos_gt911_reset();
    } else {
        /* There is a problem with GT911 and sleep */
        // eos_gt911_wake();
        eos_gt911_reset();
    }
    return EOS_OK;
}

int eos_lcd_sleep(void) {
    int rv;

    rv = lcd_select();
    if (rv) return rv;

    eos_ili9806e_sleep();
    lcd_deselect();

    rv = lcd_disable();
    if (rv) return rv;

    /* There is a problem with GT911 and sleep */
    // eos_gt911_sleep();
    return EOS_OK;
}

int eos_lcd_wake(void) {
    int rv;

    rv = lcd_enable();
    if (rv) return rv;

    eos_time_sleep(200);

    rv = lcd_select();
    if (rv) {
        lcd_disable();
        return rv;
    }

    rv = eos_ili9806e_init();
    if (rv == EOS_ERR_ABSENT) eve_lcd_absent();
    lcd_deselect();

    if (rv) lcd_disable();
    return rv;
}