Files
luban-lite-t3e-pro/bsp/artinchip/drv/display/panel/Kconfig
刘可亮 0a13af6a1d V1.0.5
2024-06-04 19:00:30 +08:00

110 lines
2.7 KiB
Plaintext

menu "Display Panels"
choice
prompt "ArtInChip Panel Drivers"
default AIC_SIMPLE_PANEL
#
# Simple Panel
#
config AIC_SIMPLE_PANEL
bool "ArtInChip simple panel"
depends on AIC_DISP_RGB || AIC_DISP_LVDS
help
Simple Panel support general RGB or LVDS LCD
if !AIC_DISP_PQ_TOOL
#
# MIPI-DSI Panel
#
config AIC_PANEL_DSI_XM91080
bool "ArtInChip MIPI DSI xm91080 panel"
depends on AIC_DISP_MIPI_DSI
config AIC_PANEL_DSI_ST7797
bool "ArtInChip MIPI DSI st7797 panel"
depends on AIC_DISP_MIPI_DSI
config AIC_PANEL_DSI_ST7703
bool "ArtInChip MIPI DSI st7703 panel"
depends on AIC_DISP_MIPI_DSI
config AIC_PANEL_DSI_ILI9881C
bool "ArtInChip MIPI DSI ili9881c panel"
depends on AIC_DISP_MIPI_DSI
config AIC_PANEL_DSI_HX8394
bool "ArtInChip MIPI DSI hx8394 panel"
depends on AIC_DISP_MIPI_DSI
config AIC_PANEL_DSI_JD9365
bool "ArtInChip MIPI DSI jd9365 panel"
depends on AIC_DISP_MIPI_DSI
#
# MIPI-DBI Type B I8080 Panel
#
config AIC_PANEL_DBI_ILI9488
bool "ArtInChip MIPI DBI ili9488 panel"
depends on AIC_DISP_MIPI_DBI
help
MIPI-DBI Type B, I8080_RGB666_16BIT_3CYCLE
config AIC_PANEL_DBI_ILI9486L
bool "ArtInChip MIPI DBI ili9486l panel"
depends on AIC_DISP_MIPI_DBI
help
MIPI-DBI Type B, I8080_RGB666_8BIT
config AIC_PANEL_DBI_ST7789
bool "ArtInChip MIPI DBI st7789 panel"
depends on AIC_DISP_MIPI_DBI
help
MIPI-DBI Type B, I8080_RGB565_8BIT
#
# MIPI-DBI Type C SPI Panel
#
config AIC_PANEL_DBI_ILI9341
bool "ArtInChip MIPI DBI ili9341 panel"
depends on AIC_DISP_MIPI_DBI
help
MIPI-DBI Type C, SPI_4LINE_RGB888
config AIC_PANEL_DBI_ST77903
bool "ArtInChip MIPI DBI st77903 panel"
depends on AIC_DISP_MIPI_DBI
help
MIPI-DBI Type C, SPI_4SDA_RGB666
#
# RGB Panel SPI Init
#
config AIC_PANEL_RGB_ST7701S
bool "ArtInChip rgb st7701s panel"
depends on AIC_DISP_RGB
select AIC_PANEL_SPI_EMULATION
config AIC_PANEL_RGB_GC9A01A
bool "ArtInChip rgb gc9a01a panel"
depends on AIC_DISP_RGB
select AIC_PANEL_SPI_EMULATION
#
# SRGB Panel
#
config AIC_PANEL_SRGB_HX8238
bool "ArtInChip srgb hx8238 panel"
depends on AIC_DISP_RGB
#
# Bridge Panel
#
config AIC_PANEL_BRIDGE_LT8911
bool "ArtInChip lt8911 LVDS-eDP bridge"
depends on AIC_DISP_LVDS
endif
endchoice
if AIC_SIMPLE_PANEL && !AIC_DISP_PQ_TOOL
source "bsp/artinchip/drv/display/panel/Kconfig.timing"
endif
endmenu