diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2010-05-23 14:00:43 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-05-24 08:49:05 +0900 |
commit | 9fd04fe34af36344f61ebb24cc653726c231356e (patch) | |
tree | 742fc5c9da3c285cad24e4e6f847f826db86c23b /drivers/video/Kconfig | |
parent | 1430e006a36da5401ad4420711b5a702ba17afa8 (diff) | |
download | talos-obmc-linux-9fd04fe34af36344f61ebb24cc653726c231356e.tar.gz talos-obmc-linux-9fd04fe34af36344f61ebb24cc653726c231356e.zip |
sh-mobile: add support for displays, connected over the MIPI bus
Some SH-mobile SoCs have a MIPI DSI controller, that can be used to connect
MIPI displays to LCDC. This patch adds a platform driver for SH-mobile MIPI DSI
unit. It uses existing hooks in the sh_mobile_lcdcfb.c driver for display
activation and deactivation.
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Tested-by: Damian Hobson-Garcia <dhobsong@igel.co.jp>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/video/Kconfig')
-rw-r--r-- | drivers/video/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 6e16244f3ed1..773c4a68de89 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -1879,6 +1879,13 @@ config FB_W100 If unsure, say N. +config SH_MIPI_DSI + tristate + depends on (SUPERH || ARCH_SHMOBILE) && HAVE_CLK + +config SH_LCD_MIPI_DSI + bool + config FB_SH_MOBILE_LCDC tristate "SuperH Mobile LCDC framebuffer support" depends on FB && (SUPERH || ARCH_SHMOBILE) && HAVE_CLK @@ -1887,6 +1894,7 @@ config FB_SH_MOBILE_LCDC select FB_SYS_IMAGEBLIT select FB_SYS_FOPS select FB_DEFERRED_IO + select SH_MIPI_DSI if SH_LCD_MIPI_DSI ---help--- Frame buffer driver for the on-chip SH-Mobile LCD controller. |