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

61 lines
1.3 KiB
Plaintext
Raw Normal View History

2023-08-30 16:21:18 +08:00
#-----------------------------
# lvds devices local parameter
#-----------------------------
menu "LVDS interface options"
depends on AIC_DISP_LVDS
choice
prompt "lvds mode"
default JEIDA_24BIT
depends on AIC_DISP_LVDS
config AIC_LVDS_NS
bool "vesa-24"
config AIC_LVDS_JEIDA_24BIT
bool "jeida-24"
config AIC_LVDS_JEIDA_18BIT
bool "jeida-18"
2024-09-30 17:06:01 +08:00
select AIC_DISPLAY_DITHER if !(AICFB_RGB565 || AICFB_ARGB1555)
2023-08-30 16:21:18 +08:00
endchoice
config AIC_LVDS_MODE
int
default 0 if AIC_LVDS_NS
default 1 if AIC_LVDS_JEIDA_24BIT
default 2 if AIC_LVDS_JEIDA_18BIT
choice
prompt "lvds link mode"
default AIC_LVDS_LINK_1 if AIC_DE_DRV_V10
default AIC_LVDS_LINK_0 if AIC_DE_DRV_V11
depends on AIC_DISP_LVDS
config AIC_LVDS_LINK_0
bool "single link 0"
2024-01-27 08:47:24 +08:00
depends on AIC_DE_DRV_V10 || AIC_DE_DRV_V11
2023-08-30 16:21:18 +08:00
config AIC_LVDS_LINK_1
bool "single link 1"
depends on AIC_DE_DRV_V10
config AIC_LVDS_DOUBLE_SCREEN
bool "double screen"
2024-01-27 08:47:24 +08:00
depends on AIC_DE_DRV_V10
2023-08-30 16:21:18 +08:00
config AIC_LVDS_DUAL_LINK
bool "dual link"
2024-01-27 08:47:24 +08:00
depends on AIC_DE_DRV_V10
2023-08-30 16:21:18 +08:00
endchoice
config AIC_LVDS_LINK_MODE
int
default 0 if AIC_LVDS_LINK_0
default 1 if AIC_LVDS_LINK_1
default 2 if AIC_LVDS_DOUBLE_SCREEN
default 3 if AIC_LVDS_DUAL_LINK
endmenu