* [PATCH v5 0/8] video: mmp display subsystem
@ 2013-01-17 8:20 Zhou Zhu
2013-01-17 8:55 ` Haojian Zhuang
2013-01-30 21:49 ` Andrew Morton
0 siblings, 2 replies; 3+ messages in thread
From: Zhou Zhu @ 2013-01-17 8:20 UTC (permalink / raw)
To: linux-fbdev
Hi,
This series added support for display controller in
Marvell "mmp" series processors.
It also contains patches to enable display panel on
TTC_DKB board.
v5: rebased to 3.8RC3 and support common clock tree.
v4: added patches to enable display panel on TTC_DKB
board.
v3: registered lcd spi control as a spi master and
panel driver operations moved to standard spi bus
interface.
v2: removed change-id and blank lines.
Thanks,
-Zhou
Guoqing Li (1):
video: mmp display controller support
Lisa Du (1):
video: mmp: add tpo hvga panel supported
Zhou Zhu (6):
video: mmp display subsystem
video: mmp fb support
video: mmpdisp: add spi port in display controller
ARM: mmp: added device for display controller
ARM: mmp: enable display in ttc_dkb
ARM: mmp: add display and fb support in pxa910 defconfig
arch/arm/configs/pxa910_defconfig | 8 +
arch/arm/mach-mmp/include/mach/pxa910.h | 5 +-
arch/arm/mach-mmp/pxa910.c | 3 +
arch/arm/mach-mmp/ttc_dkb.c | 92 ++
drivers/video/Kconfig | 1 +
drivers/video/Makefile | 1 +
drivers/video/mmp/Kconfig | 11 +
drivers/video/mmp/Makefile | 1 +
drivers/video/mmp/core.c | 217 ++++
drivers/video/mmp/fb/Kconfig | 13 +
drivers/video/mmp/fb/Makefile | 1 +
drivers/video/mmp/fb/mmpfb.c | 710 +++++++++++
drivers/video/mmp/fb/mmpfb.h | 54 +
drivers/video/mmp/hw/Kconfig | 20 +
drivers/video/mmp/hw/Makefile | 2 +
drivers/video/mmp/hw/mmp_ctrl.c | 591 +++++++++
drivers/video/mmp/hw/mmp_ctrl.h | 1958 +++++++++++++++++++++++++++++
drivers/video/mmp/hw/mmp_spi.c | 180 +++
drivers/video/mmp/panel/Kconfig | 6 +
drivers/video/mmp/panel/Makefile | 1 +
drivers/video/mmp/panel/tpo_tj032md01bw.c | 188 +++
include/video/mmp_disp.h | 351 ++++++
22 files changed, 4413 insertions(+), 1 deletion(-)
create mode 100644 drivers/video/mmp/Kconfig
create mode 100644 drivers/video/mmp/Makefile
create mode 100644 drivers/video/mmp/core.c
create mode 100644 drivers/video/mmp/fb/Kconfig
create mode 100644 drivers/video/mmp/fb/Makefile
create mode 100644 drivers/video/mmp/fb/mmpfb.c
create mode 100644 drivers/video/mmp/fb/mmpfb.h
create mode 100644 drivers/video/mmp/hw/Kconfig
create mode 100644 drivers/video/mmp/hw/Makefile
create mode 100644 drivers/video/mmp/hw/mmp_ctrl.c
create mode 100644 drivers/video/mmp/hw/mmp_ctrl.h
create mode 100644 drivers/video/mmp/hw/mmp_spi.c
create mode 100644 drivers/video/mmp/panel/Kconfig
create mode 100644 drivers/video/mmp/panel/Makefile
create mode 100644 drivers/video/mmp/panel/tpo_tj032md01bw.c
create mode 100644 include/video/mmp_disp.h
--
1.7.9.5
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v5 0/8] video: mmp display subsystem
2013-01-17 8:20 [PATCH v5 0/8] video: mmp display subsystem Zhou Zhu
@ 2013-01-17 8:55 ` Haojian Zhuang
2013-01-30 21:49 ` Andrew Morton
1 sibling, 0 replies; 3+ messages in thread
From: Haojian Zhuang @ 2013-01-17 8:55 UTC (permalink / raw)
To: linux-fbdev
On Thu, Jan 17, 2013 at 4:20 PM, Zhou Zhu <zzhu3@marvell.com> wrote:
> Hi,
>
> This series added support for display controller in
> Marvell "mmp" series processors.
> It also contains patches to enable display panel on
> TTC_DKB board.
>
> v5: rebased to 3.8RC3 and support common clock tree.
> v4: added patches to enable display panel on TTC_DKB
> board.
> v3: registered lcd spi control as a spi master and
> panel driver operations moved to standard spi bus
> interface.
> v2: removed change-id and blank lines.
>
> Thanks,
> -Zhou
>
> Guoqing Li (1):
> video: mmp display controller support
>
> Lisa Du (1):
> video: mmp: add tpo hvga panel supported
>
> Zhou Zhu (6):
> video: mmp display subsystem
> video: mmp fb support
> video: mmpdisp: add spi port in display controller
> ARM: mmp: added device for display controller
> ARM: mmp: enable display in ttc_dkb
> ARM: mmp: add display and fb support in pxa910 defconfig
>
Acked for all patches.
Acked-by: Haojian Zhuang <haojian.zhuang@gmail.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v5 0/8] video: mmp display subsystem
2013-01-17 8:20 [PATCH v5 0/8] video: mmp display subsystem Zhou Zhu
2013-01-17 8:55 ` Haojian Zhuang
@ 2013-01-30 21:49 ` Andrew Morton
1 sibling, 0 replies; 3+ messages in thread
From: Andrew Morton @ 2013-01-30 21:49 UTC (permalink / raw)
To: linux-fbdev
On Thu, 17 Jan 2013 16:20:26 +0800
Zhou Zhu <zzhu3@marvell.com> wrote:
> This series added support for display controller in
> Marvell "mmp" series processors.
> It also contains patches to enable display panel on
> TTC_DKB board.
I'll put these into -mm so they get a bit of linux-next exposure.
I'd really prefer not to merge them myself - it's been a few years
since I did fbdev things and I seem to have forgotten most of it :(.
Hopefully Florian or some other fbdev person can comment on this
patchset.
I had a few minorish comments on code details.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-01-30 21:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-17 8:20 [PATCH v5 0/8] video: mmp display subsystem Zhou Zhu
2013-01-17 8:55 ` Haojian Zhuang
2013-01-30 21:49 ` Andrew Morton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).