Files
luban-lite-t3e-pro/bsp/artinchip/drv/display/Kconfig.lvds
刘可亮 0ef85b55da v1.1.0
2024-09-30 17:06:01 +08:00

61 lines
1.3 KiB
Plaintext

#-----------------------------
# 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"
select AIC_DISPLAY_DITHER if !(AICFB_RGB565 || AICFB_ARGB1555)
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"
depends on AIC_DE_DRV_V10 || AIC_DE_DRV_V11
config AIC_LVDS_LINK_1
bool "single link 1"
depends on AIC_DE_DRV_V10
config AIC_LVDS_DOUBLE_SCREEN
bool "double screen"
depends on AIC_DE_DRV_V10
config AIC_LVDS_DUAL_LINK
bool "dual link"
depends on AIC_DE_DRV_V10
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