This is an automated email from the ASF dual-hosted git repository.
linguini1 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
from d1418d9420e drivers/usbdev/cdcacm: fix self-deadlock in
cdcuart_txempty()
new 5434dc9da54 arch/risc-v: MIPI-DSI support for Espressif devices
new 8b73477c5ec boards/risc-v: support pio4ioe IO Expander on esp32p4-tab5
new 2bf531b3f4f boards/risc-v: LCD support on esp32p4-tab5
new e67b8c171e7 board/risc-v: touchscreen support on esp32p4-tab5
new 70df5519ccb boards/risc-v: add LVGL examples on esp32p4-tab5
new ef06fc9e808 Documentation: update esp32p4-tab5 with LCD and touch info
The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../risc-v/esp32p4/boards/esp32p4-tab5/index.rst | 47 +-
Documentation/platforms/risc-v/esp32p4/index.rst | 4 +-
arch/risc-v/src/common/espressif/CMakeLists.txt | 10 +-
arch/risc-v/src/common/espressif/Kconfig | 49 +
arch/risc-v/src/common/espressif/Make.defs | 10 +-
arch/risc-v/src/common/espressif/esp_mipi_dsi.c | 1716 ++++++++++++++++++++
arch/risc-v/src/common/espressif/esp_mipi_dsi.h | 231 +++
arch/risc-v/src/esp32p4/hal_esp32p4.cmake | 9 +
arch/risc-v/src/esp32p4/hal_esp32p4.mk | 6 +
boards/risc-v/esp32p4/esp32p4-tab5/Kconfig | 102 ++
.../configs/{nsh => lvgl_demo}/defconfig | 25 +-
.../configs/{nsh => lvgl_term}/defconfig | 24 +-
boards/risc-v/esp32p4/esp32p4-tab5/include/board.h | 57 +-
.../risc-v/esp32p4/esp32p4-tab5/src/CMakeLists.txt | 21 +
boards/risc-v/esp32p4/esp32p4-tab5/src/Make.defs | 21 +
.../risc-v/esp32p4/esp32p4-tab5/src/esp32p4-tab5.h | 199 +++
.../esp32p4/esp32p4-tab5/src/esp32p4_bringup.c | 97 ++
.../esp32p4/esp32p4-tab5/src/esp32p4_display.c | 485 ++++++
.../esp32p4/esp32p4-tab5/src/esp32p4_hmi_power.c | 222 +++
.../esp32p4/esp32p4-tab5/src/esp32p4_ioexpander.c | 164 ++
.../esp32p4/esp32p4-tab5/src/esp32p4_lcd_st7121.c | 375 +++++
.../esp32p4/esp32p4-tab5/src/esp32p4_lcd_st7121.h | 56 +-
.../esp32p4/esp32p4-tab5/src/esp32p4_lcd_st7123.c | 425 +++++
.../esp32p4/esp32p4-tab5/src/esp32p4_lcd_st7123.h | 57 +-
.../esp32p4/esp32p4-tab5/src/esp32p4_mipi_dpi.c | 41 +-
.../esp32p4/esp32p4-tab5/src/esp32p4_touch.c} | 112 +-
26 files changed, 4406 insertions(+), 159 deletions(-)
create mode 100644 arch/risc-v/src/common/espressif/esp_mipi_dsi.c
create mode 100644 arch/risc-v/src/common/espressif/esp_mipi_dsi.h
copy boards/risc-v/esp32p4/esp32p4-tab5/configs/{nsh => lvgl_demo}/defconfig
(71%)
copy boards/risc-v/esp32p4/esp32p4-tab5/configs/{nsh => lvgl_term}/defconfig
(73%)
create mode 100644 boards/risc-v/esp32p4/esp32p4-tab5/src/esp32p4_display.c
create mode 100644 boards/risc-v/esp32p4/esp32p4-tab5/src/esp32p4_hmi_power.c
create mode 100644 boards/risc-v/esp32p4/esp32p4-tab5/src/esp32p4_ioexpander.c
create mode 100644 boards/risc-v/esp32p4/esp32p4-tab5/src/esp32p4_lcd_st7121.c
copy arch/xtensa/src/common/espressif/esp_i2s.h =>
boards/risc-v/esp32p4/esp32p4-tab5/src/esp32p4_lcd_st7121.h (66%)
create mode 100644 boards/risc-v/esp32p4/esp32p4-tab5/src/esp32p4_lcd_st7123.c
copy arch/xtensa/src/common/espressif/esp_i2s.h =>
boards/risc-v/esp32p4/esp32p4-tab5/src/esp32p4_lcd_st7123.h (66%)
copy mm/mm_gran/mm_granrelease.c =>
boards/risc-v/esp32p4/esp32p4-tab5/src/esp32p4_mipi_dpi.c (63%)
copy boards/{arm/common/stm32/src/stm32_amg88xx.c =>
risc-v/esp32p4/esp32p4-tab5/src/esp32p4_touch.c} (56%)