ronnie
2022-10-14 1504bb53e29d3d46222c0b3ea994fc494b48e153
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
/*
 * Allwinner SoCs display driver.
 *
 * Copyright (C) 2016 Allwinner.
 *
 * This file is licensed under the terms of the GNU General Public
 * License version 2.  This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 */
 
#include "default_eink.h"
 
static void EINK_power_on(u32 sel);
static void EINK_power_off(u32 sel);
 
static void EINK_cfg_panel_info(struct panel_extend_para *info)
{
   u32 i = 0, j = 0;
   u32 items;
   u8 lcd_gamma_tbl[][2] = {
       /* {input value, corrected value} */
       {0, 0},
       {15, 15},
       {30, 30},
       {45, 45},
       {60, 60},
       {75, 75},
       {90, 90},
       {105, 105},
       {120, 120},
       {135, 135},
       {150, 150},
       {165, 165},
       {180, 180},
       {195, 195},
       {210, 210},
       {225, 225},
       {240, 240},
       {255, 255},
   };
 
   u32 lcd_cmap_tbl[2][3][4] = {
       {
        {LCD_CMAP_G0, LCD_CMAP_B1, LCD_CMAP_G2, LCD_CMAP_B3},
        {LCD_CMAP_B0, LCD_CMAP_R1, LCD_CMAP_B2, LCD_CMAP_R3},
        {LCD_CMAP_R0, LCD_CMAP_G1, LCD_CMAP_R2, LCD_CMAP_G3},
        },
       {
        {LCD_CMAP_B3, LCD_CMAP_G2, LCD_CMAP_B1, LCD_CMAP_G0},
        {LCD_CMAP_R3, LCD_CMAP_B2, LCD_CMAP_R1, LCD_CMAP_B0},
        {LCD_CMAP_G3, LCD_CMAP_R2, LCD_CMAP_G1, LCD_CMAP_R0},
        },
   };
 
   items = sizeof(lcd_gamma_tbl) / 2;
   for (i = 0; i < items - 1; i++) {
       u32 num = lcd_gamma_tbl[i + 1][0] - lcd_gamma_tbl[i][0];
 
       for (j = 0; j < num; j++) {
           u32 value = 0;
 
           value =
               lcd_gamma_tbl[i][1] +
               ((lcd_gamma_tbl[i + 1][1] -
                 lcd_gamma_tbl[i][1]) * j) / num;
           info->lcd_gamma_tbl[lcd_gamma_tbl[i][0] + j] =
               (value << 16) + (value << 8) + value;
       }
   }
   info->lcd_gamma_tbl[255] =
       (lcd_gamma_tbl[items - 1][1] << 16) +
       (lcd_gamma_tbl[items - 1][1] << 8) + lcd_gamma_tbl[items - 1][1];
 
   memcpy(info->lcd_cmap_tbl, lcd_cmap_tbl, sizeof(lcd_cmap_tbl));
 
}
 
static s32 EINK_open_flow(u32 sel)
{
   LCD_OPEN_FUNC(sel, EINK_power_on, 2);
   LCD_OPEN_FUNC(sel, sunxi_lcd_tcon_enable, 0);
   return 0;
}
 
static s32 EINK_close_flow(u32 sel)
{
   LCD_CLOSE_FUNC(sel, sunxi_lcd_tcon_disable, 0);
   LCD_CLOSE_FUNC(sel, EINK_power_off, 2);
 
   return 0;
}
 
static void EINK_power_on(u32 sel)
{
   /* pwr3 pb2 */
   sunxi_lcd_gpio_set_value(sel, 0, 1);
   sunxi_lcd_delay_ms(1);
   /* pwr0 pb0 */
   sunxi_lcd_gpio_set_value(sel, 1, 1);
   sunxi_lcd_delay_ms(1);
   /* pb1 */
   sunxi_lcd_gpio_set_value(sel, 2, 1);
   sunxi_lcd_delay_ms(1);
   /* pwr2 pd6 */
   sunxi_lcd_gpio_set_value(sel, 3, 1);
   sunxi_lcd_delay_ms(1);
   /* pwr com pd7 */
   sunxi_lcd_gpio_set_value(sel, 4, 1);
   sunxi_lcd_delay_ms(1);
 
   sunxi_lcd_gpio_set_value(sel, 5, 1);
   sunxi_lcd_delay_ms(2);
 
   sunxi_lcd_pin_cfg(sel, 1);
}
 
static void EINK_power_off(u32 sel)
{
   sunxi_lcd_pin_cfg(sel, 0);
 
   sunxi_lcd_gpio_set_value(sel, 5, 0);
   sunxi_lcd_delay_ms(1);
   sunxi_lcd_gpio_set_value(sel, 4, 0);
   sunxi_lcd_delay_ms(1);
   sunxi_lcd_gpio_set_value(sel, 3, 0);
   sunxi_lcd_delay_ms(1);
   sunxi_lcd_gpio_set_value(sel, 2, 0);
   sunxi_lcd_delay_ms(1);
   sunxi_lcd_gpio_set_value(sel, 1, 0);
   sunxi_lcd_delay_ms(1);
   sunxi_lcd_gpio_set_value(sel, 0, 0);
   sunxi_lcd_delay_ms(2);
}
 
/* sel: 0:lcd0; 1:lcd1 */
static s32 EINK_user_defined_func(u32 sel, u32 para1, u32 para2, u32 para3)
{
   return 0;
}
 
struct __lcd_panel default_eink = {
   /* panel driver name, must mach the lcd_drv_name in sys_config.fex */
   .name = "default_eink",
   .func = {
        .cfg_panel_info = EINK_cfg_panel_info,
        .cfg_open_flow = EINK_open_flow,
        .cfg_close_flow = EINK_close_flow,
        .lcd_user_defined_func = EINK_user_defined_func,
        }
   ,
};