Skip to content

Commit

Permalink
video: mmp display controller support
Browse files Browse the repository at this point in the history
Marvell mmp series display controller support in mmpdisp subsystem.

This driver focus on implementation of hardware operations of
path/overlay, which is defined in mmp display subsystem interface.  This
driver registers all pathes to mmp display framework.

Signed-off-by: Guoqing Li <ligq@marvell.com>
Signed-off-by: Lisa Du <cldu@marvell.com>
Signed-off-by: Zhou Zhu <zzhu3@marvell.com>
Acked-by: Haojian Zhuang <haojian.zhuang@gmail.com>
Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Guoqing Li authored and torvalds committed Feb 22, 2013
1 parent 24cb87a commit d63028c
Show file tree
Hide file tree
Showing 6 changed files with 2,570 additions and 1 deletion.
1 change: 1 addition & 0 deletions drivers/video/mmp/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ menuconfig MMP_DISP
Marvell Display Subsystem support.

if MMP_DISP
source "drivers/video/mmp/hw/Kconfig"
source "drivers/video/mmp/fb/Kconfig"
endif
2 changes: 1 addition & 1 deletion drivers/video/mmp/Makefile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
obj-y += core.o fb/
obj-y += core.o hw/ fb/
12 changes: 12 additions & 0 deletions drivers/video/mmp/hw/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
if MMP_DISP

config MMP_DISP_CONTROLLER
bool "mmp display controller hw support"
depends on CPU_PXA910 || CPU_MMP2 || CPU_MMP3 || CPU_PXA988
default n
help
Marvell MMP display hw controller support
this controller is used on Marvell PXA910,
MMP2, MMP3, PXA988 chips

endif
1 change: 1 addition & 0 deletions drivers/video/mmp/hw/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
obj-$(CONFIG_MMP_DISP_CONTROLLER) += mmp_ctrl.o

0 comments on commit d63028c

Please sign in to comment.