eric.gao@rock-chips.com | 735ddea | 2017-04-17 22:24:23 +0800 | [diff] [blame] | 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 |
Philipp Tomsich | f1fe216 | 2017-05-31 17:59:28 +0200 | [diff] [blame^] | 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 (DSI). |
| 18 | |
| 19 | This driver supports the on-chip video output device, and targets the |
| 20 | Rockchip RK3288 and RK3399. |
eric.gao@rock-chips.com | 735ddea | 2017-04-17 22:24:23 +0800 | [diff] [blame] | 21 | |
| 22 | if VIDEO_ROCKCHIP |
| 23 | |
| 24 | config DISPLAY_ROCKCHIP_EDP |
| 25 | bool "EDP Port" |
| 26 | depends on VIDEO_ROCKCHIP |
| 27 | help |
| 28 | This enables Embedded DisplayPort(EDP) display support. |
| 29 | |
| 30 | config DISPLAY_ROCKCHIP_LVDS |
| 31 | bool "LVDS Port" |
| 32 | depends on VIDEO_ROCKCHIP |
| 33 | help |
| 34 | This enables Low-voltage Differential Signaling(LVDS) display |
| 35 | support. |
| 36 | |
| 37 | config DISPLAY_ROCKCHIP_HDMI |
| 38 | bool "HDMI port" |
Philipp Tomsich | 3a53b3e | 2017-05-05 21:48:26 +0200 | [diff] [blame] | 39 | select VIDEO_DW_HDMI |
eric.gao@rock-chips.com | 735ddea | 2017-04-17 22:24:23 +0800 | [diff] [blame] | 40 | depends on VIDEO_ROCKCHIP |
| 41 | help |
| 42 | This enables High-Definition Multimedia Interface display support. |
| 43 | |
Eric Gao | 4789bc1 | 2017-05-02 18:23:50 +0800 | [diff] [blame] | 44 | config DISPLAY_ROCKCHIP_MIPI |
| 45 | bool "MIPI Port" |
| 46 | depends on VIDEO_ROCKCHIP |
| 47 | help |
| 48 | This enables Mobile Industry Processor Interface(MIPI) display |
| 49 | support. The mipi controller and dphy on rk3288& rk3399 support |
| 50 | 16,18, 24 bits per pixel with upto 2k resolution ratio. |
eric.gao@rock-chips.com | 735ddea | 2017-04-17 22:24:23 +0800 | [diff] [blame] | 51 | |
Eric Gao | 4789bc1 | 2017-05-02 18:23:50 +0800 | [diff] [blame] | 52 | endif |