]> git.ipfire.org Git - people/ms/u-boot.git/blob - drivers/video/rockchip/Kconfig
powerpc: t1024: Fix SRDS_MAX_LANES value
[people/ms/u-boot.git] / drivers / video / rockchip / Kconfig
1 #
2 # Video drivers selection for rockchip soc. These configs only impact the
3 # compile process. You can surely check all the options. In this case, all the
4 # display driver will be compiled, but which drivers finally will be used is
5 # decided by device tree configuration. What's more, enable needed power for
6 # display by configure the device tree, and the vop driver will do the rest.
7 #
8 # Author: Eric Gao <eric.gao@rock-chips.com>
9 #
10
11 menuconfig VIDEO_ROCKCHIP
12 bool "Enable Rockchip Video Support"
13 depends on DM_VIDEO
14 help
15 Rockchip SoCs provide video output capabilities for High-Definition
16 Multimedia Interface (HDMI), Low-voltage Differential Signalling
17 (LVDS), embedded DisplayPort (eDP) and Display Serial Interface
18 (DSI). This driver supports the on-chip video output device, and
19 targets the Rockchip RK3288 and RK3399.
20
21 if VIDEO_ROCKCHIP
22
23 config DISPLAY_ROCKCHIP_EDP
24 bool "EDP Port"
25 depends on VIDEO_ROCKCHIP
26 help
27 This enables Embedded DisplayPort(EDP) display support.
28
29 config DISPLAY_ROCKCHIP_LVDS
30 bool "LVDS Port"
31 depends on VIDEO_ROCKCHIP
32 help
33 This enables Low-voltage Differential Signaling(LVDS) display
34 support.
35
36 config DISPLAY_ROCKCHIP_HDMI
37 bool "HDMI port"
38 depends on VIDEO_ROCKCHIP
39 help
40 This enables High-Definition Multimedia Interface display support.
41
42 config DISPLAY_ROCKCHIP_MIPI
43 bool "MIPI Port"
44 depends on VIDEO_ROCKCHIP
45 help
46 This enables Mobile Industry Processor Interface(MIPI) display
47 support. The mipi controller and dphy on rk3288& rk3399 support
48 16,18, 24 bits per pixel with upto 2k resolution ratio.
49
50 endif