Skip to content

Commit d1b18bb

Browse files
author
Eric Rong
committed
Add support for lilygo_t_display_rp2040 board
1 parent 5a063c1 commit d1b18bb

File tree

5 files changed

+227
-0
lines changed

5 files changed

+227
-0
lines changed
Lines changed: 153 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,153 @@
1+
/*
2+
* This file is part of the MicroPython project, http://micropython.org/
3+
*
4+
* The MIT License (MIT)
5+
*
6+
* Copyright (c) 2021 Scott Shawcroft for Adafruit Industries
7+
*
8+
* Permission is hereby granted, free of charge, to any person obtaining a copy
9+
* of this software and associated documentation files (the "Software"), to deal
10+
* in the Software without restriction, including without limitation the rights
11+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12+
* copies of the Software, and to permit persons to whom the Software is
13+
* furnished to do so, subject to the following conditions:
14+
*
15+
* The above copyright notice and this permission notice shall be included in
16+
* all copies or substantial portions of the Software.
17+
*
18+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24+
* THE SOFTWARE.
25+
*/
26+
27+
#include "supervisor/board.h"
28+
#include "mpconfigboard.h"
29+
#include "shared-bindings/microcontroller/Pin.h"
30+
#include "shared-module/displayio/__init__.h"
31+
#include "shared-module/displayio/mipi_constants.h"
32+
33+
displayio_fourwire_obj_t board_display_obj;
34+
35+
#define DELAY 0x80
36+
#define PWR_EN 22
37+
38+
// display init sequence according to LilyGO example app
39+
uint8_t display_init_sequence[] = {
40+
// sw reset
41+
0x01, 0 | DELAY, 150,
42+
// sleep out
43+
0x11, 0 | DELAY, 255,
44+
// normal display mode on
45+
0x13, 0,
46+
// display and color format settings
47+
0x36, 1, 0x08,
48+
0xB6, 2, 0x0A, 0x82,
49+
0x3A, 1 | DELAY, 0x55, 10,
50+
// ST7789V frame rate setting
51+
0xB2, 5, 0x0C, 0x0C, 0x00, 0x33, 0x33,
52+
// voltages: VGH / VGL
53+
0xB7, 1, 0x35,
54+
// ST7789V power setting
55+
0xBB, 1, 0x28,
56+
0xC0, 1, 0x0C,
57+
0xC2, 2, 0x01, 0xFF,
58+
0xC3, 1, 0x10,
59+
0xC4, 1, 0x20,
60+
0xC6, 1, 0x0F,
61+
0xD0, 2, 0xA4, 0xA1,
62+
// ST7789V gamma setting
63+
0xE0, 14, 0xD0, 0x00, 0x02, 0x07, 0x0A, 0x28, 0x32, 0x44, 0x42, 0x06, 0x0E, 0x12, 0x14, 0x17,
64+
0xE1, 14, 0xD0, 0x00, 0x02, 0x07, 0x0A, 0x28, 0x31, 0x54, 0x47, 0x0E, 0x1C, 0x17, 0x1B, 0x1E,
65+
0x21, 0,
66+
// display on
67+
0x29, 0 | DELAY, 255,
68+
};
69+
70+
static void display_init(void) {
71+
busio_spi_obj_t *spi = &displays[0].fourwire_bus.inline_bus;
72+
73+
common_hal_busio_spi_construct(
74+
spi,
75+
&pin_GPIO2, // CLK
76+
&pin_GPIO3, // MOSI
77+
NULL // MISO not connected
78+
);
79+
80+
common_hal_busio_spi_never_reset(spi);
81+
82+
displayio_fourwire_obj_t *bus = &displays[0].fourwire_bus;
83+
bus->base.type = &displayio_fourwire_type;
84+
85+
common_hal_displayio_fourwire_construct(
86+
bus,
87+
spi,
88+
&pin_GPIO1, // DC
89+
&pin_GPIO5, // CS
90+
NULL, // RST (Reset pin tie to 0, do not set here)
91+
40000000, // baudrate
92+
1, // polarity
93+
0 // phase
94+
);
95+
96+
displayio_display_obj_t *display = &displays[0].display;
97+
display->base.type = &displayio_display_type;
98+
99+
common_hal_displayio_display_construct(
100+
display,
101+
bus,
102+
240, // width (after rotation)
103+
135, // height (after rotation)
104+
52, // column start
105+
40, // row start
106+
90, // rotation
107+
16, // color depth
108+
false, // grayscale
109+
false, // pixels in a byte share a row. Only valid for depths < 8
110+
1, // bytes per cell. Only valid for depths < 8
111+
false, // reverse_pixels_in_byte. Only valid for depths < 8
112+
true, // reverse_pixels_in_word
113+
MIPI_COMMAND_SET_COLUMN_ADDRESS, // set column command
114+
MIPI_COMMAND_SET_PAGE_ADDRESS, // set row command
115+
MIPI_COMMAND_WRITE_MEMORY_START, // write memory command
116+
display_init_sequence,
117+
sizeof(display_init_sequence),
118+
&pin_GPIO4, // backlight pin
119+
NO_BRIGHTNESS_COMMAND,
120+
1.0f, // brightness (ignored)
121+
false, // auto_brightness
122+
false, // single_byte_bounds
123+
false, // data_as_commands
124+
true, // auto_refresh
125+
60, // native_frames_per_second
126+
true, // backlight_on_high
127+
false // SH1107_addressing
128+
);
129+
130+
common_hal_never_reset_pin(&pin_GPIO4); // backlight pin
131+
}
132+
133+
void board_init(void) {
134+
// Pin 22 has to be pulled high to turn on the LCD
135+
const uint PWR_PIN = PWR_EN;
136+
gpio_init(PWR_PIN);
137+
gpio_set_dir(PWR_PIN, GPIO_OUT);
138+
gpio_put(PWR_PIN, 1);
139+
common_hal_never_reset_pin(&pin_GPIO22);
140+
141+
// Display
142+
display_init();
143+
}
144+
145+
bool board_requests_safe_mode(void) {
146+
return false;
147+
}
148+
149+
void reset_board(void) {
150+
}
151+
152+
void board_deinit(void) {
153+
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#define MICROPY_HW_BOARD_NAME "LILYGO T-DISPLAY"
2+
#define MICROPY_HW_MCU_NAME "rp2040"
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
USB_VID = 0x303A
2+
USB_PID = 0x8008
3+
USB_PRODUCT = "T-Display"
4+
USB_MANUFACTURER = "Lilygo"
5+
6+
CHIP_VARIANT = RP2040
7+
CHIP_FAMILY = rp2
8+
9+
EXTERNAL_FLASH_DEVICES = "W25Q32JVxQ"
10+
11+
CIRCUITPY__EVE = 1
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// Put board-specific pico-sdk definitions here. This file must exist.
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
#include "shared-bindings/board/__init__.h"
2+
3+
STATIC const mp_rom_map_elem_t board_module_globals_table[] = {
4+
CIRCUITPYTHON_BOARD_DICT_STANDARD_ITEMS
5+
6+
{ MP_ROM_QSTR(MP_QSTR_GP0), MP_ROM_PTR(&pin_GPIO0) },
7+
{ MP_ROM_QSTR(MP_QSTR_GP1), MP_ROM_PTR(&pin_GPIO1) },
8+
{ MP_ROM_QSTR(MP_QSTR_GP2), MP_ROM_PTR(&pin_GPIO2) },
9+
{ MP_ROM_QSTR(MP_QSTR_GP3), MP_ROM_PTR(&pin_GPIO3) },
10+
{ MP_ROM_QSTR(MP_QSTR_GP4), MP_ROM_PTR(&pin_GPIO4) },
11+
{ MP_ROM_QSTR(MP_QSTR_GP5), MP_ROM_PTR(&pin_GPIO5) },
12+
13+
{ MP_ROM_QSTR(MP_QSTR_BUTTON_L), MP_ROM_PTR(&pin_GPIO6) },
14+
{ MP_ROM_QSTR(MP_QSTR_GP6), MP_ROM_PTR(&pin_GPIO6) },
15+
16+
{ MP_ROM_QSTR(MP_QSTR_BUTTON_R), MP_ROM_PTR(&pin_GPIO6) },
17+
{ MP_ROM_QSTR(MP_QSTR_GP7), MP_ROM_PTR(&pin_GPIO7) },
18+
19+
{ MP_ROM_QSTR(MP_QSTR_GP8), MP_ROM_PTR(&pin_GPIO8) },
20+
{ MP_ROM_QSTR(MP_QSTR_GP9), MP_ROM_PTR(&pin_GPIO9) },
21+
{ MP_ROM_QSTR(MP_QSTR_GP10), MP_ROM_PTR(&pin_GPIO10) },
22+
{ MP_ROM_QSTR(MP_QSTR_GP11), MP_ROM_PTR(&pin_GPIO11) },
23+
{ MP_ROM_QSTR(MP_QSTR_GP12), MP_ROM_PTR(&pin_GPIO12) },
24+
{ MP_ROM_QSTR(MP_QSTR_GP13), MP_ROM_PTR(&pin_GPIO13) },
25+
{ MP_ROM_QSTR(MP_QSTR_GP14), MP_ROM_PTR(&pin_GPIO14) },
26+
{ MP_ROM_QSTR(MP_QSTR_GP15), MP_ROM_PTR(&pin_GPIO15) },
27+
{ MP_ROM_QSTR(MP_QSTR_GP16), MP_ROM_PTR(&pin_GPIO16) },
28+
{ MP_ROM_QSTR(MP_QSTR_GP17), MP_ROM_PTR(&pin_GPIO17) },
29+
{ MP_ROM_QSTR(MP_QSTR_GP18), MP_ROM_PTR(&pin_GPIO18) },
30+
{ MP_ROM_QSTR(MP_QSTR_GP19), MP_ROM_PTR(&pin_GPIO19) },
31+
{ MP_ROM_QSTR(MP_QSTR_GP20), MP_ROM_PTR(&pin_GPIO20) },
32+
{ MP_ROM_QSTR(MP_QSTR_GP21), MP_ROM_PTR(&pin_GPIO21) },
33+
34+
{ MP_ROM_QSTR(MP_QSTR_SMPS_MODE), MP_ROM_PTR(&pin_GPIO22) },
35+
{ MP_ROM_QSTR(MP_QSTR_GP22), MP_ROM_PTR(&pin_GPIO22) },
36+
37+
{ MP_ROM_QSTR(MP_QSTR_GP23), MP_ROM_PTR(&pin_GPIO23) },
38+
{ MP_ROM_QSTR(MP_QSTR_GP24), MP_ROM_PTR(&pin_GPIO24) },
39+
40+
{ MP_ROM_QSTR(MP_QSTR_LED), MP_ROM_PTR(&pin_GPIO25) },
41+
{ MP_ROM_QSTR(MP_QSTR_GP25), MP_ROM_PTR(&pin_GPIO25) },
42+
43+
{ MP_ROM_QSTR(MP_QSTR_VOLTAGE_MONITOR), MP_ROM_PTR(&pin_GPIO26) },
44+
{ MP_ROM_QSTR(MP_QSTR_GP26_A0), MP_ROM_PTR(&pin_GPIO26) },
45+
{ MP_ROM_QSTR(MP_QSTR_GP26), MP_ROM_PTR(&pin_GPIO26) },
46+
{ MP_ROM_QSTR(MP_QSTR_A0), MP_ROM_PTR(&pin_GPIO26) },
47+
48+
{ MP_ROM_QSTR(MP_QSTR_GP27_A1), MP_ROM_PTR(&pin_GPIO27) },
49+
{ MP_ROM_QSTR(MP_QSTR_GP27), MP_ROM_PTR(&pin_GPIO27) },
50+
{ MP_ROM_QSTR(MP_QSTR_A1), MP_ROM_PTR(&pin_GPIO27) },
51+
52+
{ MP_ROM_QSTR(MP_QSTR_GP28_A2), MP_ROM_PTR(&pin_GPIO28) },
53+
{ MP_ROM_QSTR(MP_QSTR_GP28), MP_ROM_PTR(&pin_GPIO28) },
54+
{ MP_ROM_QSTR(MP_QSTR_A2), MP_ROM_PTR(&pin_GPIO28) },
55+
56+
{ MP_ROM_QSTR(MP_QSTR_GP29_A3), MP_ROM_PTR(&pin_GPIO29) },
57+
{ MP_ROM_QSTR(MP_QSTR_GP29), MP_ROM_PTR(&pin_GPIO29) },
58+
{ MP_ROM_QSTR(MP_QSTR_A3), MP_ROM_PTR(&pin_GPIO29) },
59+
};
60+
MP_DEFINE_CONST_DICT(board_module_globals, board_module_globals_table);

0 commit comments

Comments
 (0)