Files
luban-lite-t3e-pro/bsp/artinchip/drv/display/Kconfig.lvds
刘可亮 9f7ba67007 v1.0.3
2024-01-27 08:47:24 +08:00

60 lines
1.2 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"
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