Files
luban-lite-t3e-pro/bsp/artinchip/drv/display/panel/Kconfig

53 lines
1.3 KiB
Plaintext
Raw Normal View History

2023-08-30 16:21:18 +08:00
menu "Display Panels"
choice
prompt "ArtInChip Panel Drivers"
default AIC_SIMPLE_PANEL
config AIC_SIMPLE_PANEL
bool "ArtInChip simple panel"
depends on AIC_DISP_RGB || AIC_DISP_LVDS
2024-04-03 16:40:57 +08:00
if !AIC_DISP_PQ_TOOL
2023-08-30 16:21:18 +08:00
config AIC_PANEL_DSI_XM91080
bool "ArtInChip MIPI DSI xm91080 panel"
depends on AIC_DISP_MIPI_DSI
2023-11-09 20:19:51 +08:00
config AIC_PANEL_DSI_ST7797
bool "ArtInChip MIPI DSI st7797 panel"
depends on AIC_DISP_MIPI_DSI
2023-08-30 16:21:18 +08:00
config AIC_PANEL_DBI_ILI9488
2023-11-09 20:19:51 +08:00
bool "ArtInChip MIPI DBI ili9488 panel"
depends on AIC_DISP_MIPI_DBI
2023-08-30 16:21:18 +08:00
config AIC_PANEL_DBI_ILI9341
2023-11-09 20:19:51 +08:00
bool "ArtInChip MIPI DBI ili9341 panel"
depends on AIC_DISP_MIPI_DBI
2023-08-30 16:21:18 +08:00
config AIC_PANEL_DBI_ST77903
2023-11-09 20:19:51 +08:00
bool "ArtInChip MIPI DBI st77903 panel"
depends on AIC_DISP_MIPI_DBI
config AIC_PANEL_DBI_ILI9486L
bool "ArtInChip MIPI DBI ili9486l panel"
depends on AIC_DISP_MIPI_DBI
2023-08-30 16:21:18 +08:00
2024-01-27 08:47:24 +08:00
config AIC_PANEL_RGB_ST7701S
bool "ArtInChip rgb st7701s panel"
depends on AIC_DISP_RGB
select AIC_PANEL_SPI_EMULATION
2023-11-09 20:19:51 +08:00
config AIC_PANEL_SRGB_HX8238
bool "ArtInChip srgb hx8238 panel"
depends on AIC_DISP_RGB
2024-04-03 16:40:57 +08:00
endif
2023-08-30 16:21:18 +08:00
endchoice
2024-04-03 16:40:57 +08:00
if AIC_SIMPLE_PANEL && !AIC_DISP_PQ_TOOL
2023-08-30 16:21:18 +08:00
source "bsp/artinchip/drv/display/panel/Kconfig.timing"
endif
endmenu