aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/Kconfig
diff options
context:
space:
mode:
authorGuennadi Liakhovetski <g.liakhovetski@gmx.de>2010-05-23 10:00:43 -0400
committerPaul Mundt <lethal@linux-sh.org>2010-05-23 19:49:05 -0400
commit9fd04fe34af36344f61ebb24cc653726c231356e (patch)
tree742fc5c9da3c285cad24e4e6f847f826db86c23b /drivers/video/Kconfig
parent1430e006a36da5401ad4420711b5a702ba17afa8 (diff)
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/Kconfig8
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
1879 1879
1880 If unsure, say N. 1880 If unsure, say N.
1881 1881
1882config SH_MIPI_DSI
1883 tristate
1884 depends on (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
1885
1886config SH_LCD_MIPI_DSI
1887 bool
1888
1882config FB_SH_MOBILE_LCDC 1889config FB_SH_MOBILE_LCDC
1883 tristate "SuperH Mobile LCDC framebuffer support" 1890 tristate "SuperH Mobile LCDC framebuffer support"
1884 depends on FB && (SUPERH || ARCH_SHMOBILE) && HAVE_CLK 1891 depends on FB && (SUPERH || ARCH_SHMOBILE) && HAVE_CLK
@@ -1887,6 +1894,7 @@ config FB_SH_MOBILE_LCDC
1887 select FB_SYS_IMAGEBLIT 1894 select FB_SYS_IMAGEBLIT
1888 select FB_SYS_FOPS 1895 select FB_SYS_FOPS
1889 select FB_DEFERRED_IO 1896 select FB_DEFERRED_IO
1897 select SH_MIPI_DSI if SH_LCD_MIPI_DSI
1890 ---help--- 1898 ---help---
1891 Frame buffer driver for the on-chip SH-Mobile LCD controller. 1899 Frame buffer driver for the on-chip SH-Mobile LCD controller.
1892 1900