diff options
author | Donghwa Lee <dh09.lee@samsung.com> | 2012-02-08 15:47:39 -0500 |
---|---|---|
committer | Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | 2012-02-12 22:02:03 -0500 |
commit | 7258cc14f310b912b6fea5421aedb9beb69d8581 (patch) | |
tree | 0e3c0eb87437d8f1b14d09ab6ad3f4188904e5e8 /drivers/video/exynos/Kconfig | |
parent | 12fa8350244d73b6111ec9bc6c2fd5d49fa601b5 (diff) |
video: support MIPI-DSI controller driver
Samsung S5PC210 and EXYNOS SoC platform has MIPI-DSI controller and
MIPI-DSI based LCD Panel could be used with it. This patch supports
MIPI-DSI driver based Samsung SoC chip.
LCD panel driver based MIPI-DSI should be registered to MIPI-DSI driver at
machine code and LCD panel driver specific function registered to
mipi_dsim_ddi structure at lcd panel init function called system init. In
the MIPI-DSI driver, find lcd panel driver by using registered lcd panel
name, and then initialize lcd panel driver.
Signed-off-by: Donghwa Lee <dh09.lee@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Acked-by: Jingoo Han <jg1.han@samsung.com>
Cc: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Diffstat (limited to 'drivers/video/exynos/Kconfig')
-rw-r--r-- | drivers/video/exynos/Kconfig | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/drivers/video/exynos/Kconfig b/drivers/video/exynos/Kconfig new file mode 100644 index 000000000000..645b8a597199 --- /dev/null +++ b/drivers/video/exynos/Kconfig | |||
@@ -0,0 +1,22 @@ | |||
1 | # | ||
2 | # Exynos Video configuration | ||
3 | # | ||
4 | |||
5 | menuconfig EXYNOS_VIDEO | ||
6 | bool "Exynos Video driver support" | ||
7 | help | ||
8 | This enables support for EXYNOS Video device. | ||
9 | |||
10 | if EXYNOS_VIDEO | ||
11 | |||
12 | # | ||
13 | # MIPI DSI driver | ||
14 | # | ||
15 | |||
16 | config EXYNOS_MIPI_DSI | ||
17 | bool "EXYNOS MIPI DSI driver support." | ||
18 | depends on (ARCH_S5PV210 || ARCH_EXYNOS) | ||
19 | help | ||
20 | This enables support for MIPI-DSI device. | ||
21 | |||
22 | endif # EXYNOS_VIDEO | ||