60 lines
1.3 KiB
Plaintext
60 lines
1.3 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config ARTINCHIP_FB
|
|
tristate "ArtInChip Framebuffer support"
|
|
depends on FB
|
|
select VIDEOMODE_HELPERS
|
|
select FB_CFB_FILLRECT
|
|
select FB_CFB_COPYAREA
|
|
select FB_CFB_IMAGEBLIT
|
|
default n
|
|
help
|
|
This is the driver for the ArtInChip DE, the driver is based on
|
|
Linux framebuffer.
|
|
|
|
config AIC_DISP_RGB
|
|
bool "ArtInChip display rgb support"
|
|
depends on ARTINCHIP_FB
|
|
default n
|
|
help
|
|
ArtInChip display rgb support
|
|
|
|
config AIC_DISP_LVDS
|
|
bool "ArtInChip display lvds support"
|
|
depends on ARTINCHIP_FB
|
|
default n
|
|
help
|
|
ArtInChip display lvds support
|
|
|
|
config AIC_DISP_MIPI_DSI
|
|
bool "ArtInChip display mipi-dsi support"
|
|
depends on ARTINCHIP_FB
|
|
default n
|
|
help
|
|
ArtInChip display mipi-dsi support
|
|
|
|
config AIC_DISP_MIPI_DSI_V1_0
|
|
bool
|
|
default y
|
|
depends on AIC_DISP_MIPI_DSI && RISCV
|
|
help
|
|
ArtInChip display mipi-dsi v1.0
|
|
|
|
config AIC_DISP_MIPI_DBI
|
|
bool "ArtInChip display mipi-dbi support"
|
|
depends on ARTINCHIP_FB
|
|
default n
|
|
help
|
|
ArtInChip display mipi-dbi support
|
|
|
|
config AIC_DSI_LEGACY_PACKET_CONFIG
|
|
bool "enable MIPI-DSI legacy packet config"
|
|
depends on AIC_DISP_MIPI_DSI
|
|
default n
|
|
help
|
|
Choose this option if you have a need for the legacy luban
|
|
sdk version support. If in doubt, say "N".
|
|
|
|
if ARTINCHIP_FB
|
|
source "drivers/video/artinchip/disp/panel/Kconfig"
|
|
endif
|