linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/20] video: msm: Adding Support for MDP3.1
@ 2011-03-18 21:47 Carl Vanderlip
  2011-03-18 21:51 ` [PATCH 01/20] video: msm: Fix typo 'mpd'->'mdp' Carl Vanderlip
                   ` (19 more replies)
  0 siblings, 20 replies; 44+ messages in thread
From: Carl Vanderlip @ 2011-03-18 21:47 UTC (permalink / raw)
  To: Russell King, David Brown, Daniel Walker, Bryan Huntsman
  Cc: Brian Swetland, Dima Zavin, Rebecca Schultz Zavin, Colin Cross,
	linux-fbdev, Carl Vanderlip, linux-arm-kernel, linux-arm-msm,
	linux-kernel

These patches continue to update the MSM display drivers to support newer MDP
versions and display modes (while also providing a base for future display
development).  The original source of these patches is one patch (squashing
together 22 other patches) on the Google Android kernel tree.

Brian Swetland (1):
  video: msm: Fix typo 'mpd'->'mdp'

Carl Vanderlip (19):
  video: msm: add spinlock to mdp_info struct
  video: msm: add locked_enable_mdp_irq function
  video: msm: Move clk to mdp_info struct
  video: msm: Setup framework for multiple output interfaces
  video: msm: Simplify mdp_blit function
  video: msm: Allow users to request a larger x and y virtual fb
  video: msm: Refactor mdp_regs
  video: msm: Split out MDP2.2 HW specific code.
  video: msm: Separate more MDP HW specific code
  video: msm: Add MDP FB DMA configuration
  video: msm: Add IRQ callback for MDP interface
  video: msm: Debugging for send_blit
  video: msm: Write IRQ mask to MDP registers
  video: msm: convert printk to pr_*
  video: msm: Set the EBI1 clock to 128MHz when performing blits
  video: msm: Prevent framebuffer glitch during initialization
  video: msm: Prevent DMA lockups when switching bit depths
  video: msm: Separate calculation of base and offset
  video: msm: Add support for MDP 3.1 (qsd8k)

 arch/arm/mach-msm/Kconfig                          |    8 +
 arch/arm/mach-msm/include/mach/msm_fb.h            |   11 +-
 drivers/video/msm/Makefile                         |    5 +-
 drivers/video/msm/mdp.c                            |  589 +++++++++++++-----
 drivers/video/msm/mdp_csc_table.h                  |  163 ++++--
 drivers/video/msm/mdp_hw.h                         |  205 +++++--
 drivers/video/msm/mdp_ppp.c                        |  639 ++++++++------------
 drivers/video/msm/mdp_ppp.h                        |   82 +++
 .../video/msm/{mdp_scale_tables.c => mdp_ppp22.c}  |  333 ++++++++++-
 drivers/video/msm/mdp_ppp31.c                      |  335 ++++++++++
 drivers/video/msm/mdp_scale_tables.h               |   38 --
 drivers/video/msm/msm_fb.c                         |   69 ++-
 12 files changed, 1775 insertions(+), 702 deletions(-)
 create mode 100644 drivers/video/msm/mdp_ppp.h
 rename drivers/video/msm/{mdp_scale_tables.c => mdp_ppp22.c} (69%)
 create mode 100644 drivers/video/msm/mdp_ppp31.c
 delete mode 100644 drivers/video/msm/mdp_scale_tables.h

-- 
Sent by an employee of the Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum.


^ permalink raw reply	[flat|nested] 44+ messages in thread

end of thread, other threads:[~2011-03-23 22:46 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-03-18 21:47 [PATCH 00/20] video: msm: Adding Support for MDP3.1 Carl Vanderlip
2011-03-18 21:51 ` [PATCH 01/20] video: msm: Fix typo 'mpd'->'mdp' Carl Vanderlip
2011-03-21  4:24   ` Janorkar, Mayuresh
2011-03-22  0:08     ` Carl Vanderlip
2011-03-18 21:53 ` [PATCH 02/20] video: msm: add spinlock to mdp_info struct Carl Vanderlip
2011-03-18 21:53 ` [PATCH 03/20] video: msm: add locked_enable_mdp_irq function Carl Vanderlip
2011-03-18 21:54 ` [PATCH 04/20] video: msm: Move clk to mdp_info struct Carl Vanderlip
2011-03-18 21:54 ` [PATCH 05/20] video: msm: Setup framework for multiple output interfaces Carl Vanderlip
2011-03-18 21:55 ` [PATCH 06/20] video: msm: Simplify mdp_blit function Carl Vanderlip
2011-03-18 21:56 ` [PATCH 07/20] video: msm: Allow users to request a larger x and y virtual fb Carl Vanderlip
2011-03-21  4:40   ` Janorkar, Mayuresh
2011-03-21 16:41     ` Russell King - ARM Linux
2011-03-22  0:21     ` Carl Vanderlip
2011-03-18 21:56 ` [PATCH 08/20] video: msm: Refactor mdp_regs Carl Vanderlip
2011-03-21  5:17   ` Janorkar, Mayuresh
2011-03-21 17:23     ` Bryan Huntsman
2011-03-21 17:28       ` Brian Swetland
2011-03-18 21:57 ` [PATCH 09/20] video: msm: Split out MDP2.2 HW specific code Carl Vanderlip
2011-03-20  9:22   ` Russell King - ARM Linux
2011-03-22  0:26     ` Carl Vanderlip
2011-03-21  5:15   ` Janorkar, Mayuresh
2011-03-23 13:11   ` Daniel Walker
2011-03-23 19:18     ` Dima Zavin
2011-03-23 20:42     ` Carl Vanderlip
2011-03-23 22:47       ` David Brown
2011-03-18 21:57 ` [PATCH 10/20] video: msm: Separate more MDP " Carl Vanderlip
2011-03-18 21:57 ` [PATCH 11/20] video: msm: Add MDP FB DMA configuration Carl Vanderlip
2011-03-21  5:18   ` Janorkar, Mayuresh
2011-03-18 21:58 ` [PATCH 12/20] video: msm: Add IRQ callback for MDP interface Carl Vanderlip
2011-03-18 21:58 ` [PATCH 13/20] video: msm: Debugging for send_blit Carl Vanderlip
2011-03-21  5:20   ` Janorkar, Mayuresh
2011-03-18 21:58 ` [PATCH 14/20] video: msm: Write IRQ mask to MDP registers Carl Vanderlip
2011-03-18 21:59 ` [PATCH 15/20] video: msm: convert printk to pr_* Carl Vanderlip
2011-03-21  5:22   ` Janorkar, Mayuresh
2011-03-21 13:33   ` Sergei Shtylyov
2011-03-18 21:59 ` [PATCH 16/20] video: msm: Set the EBI1 clock to 128MHz when performing blits Carl Vanderlip
2011-03-21 20:31   ` Stephen Boyd
2011-03-18 21:59 ` [PATCH 17/20] video: msm: Prevent framebuffer glitch during initialization Carl Vanderlip
2011-03-21 13:39   ` Sergei Shtylyov
2011-03-21 23:49     ` Carl Vanderlip
2011-03-18 21:59 ` [PATCH 18/20] video: msm: Prevent DMA lockups when switching bit depths Carl Vanderlip
2011-03-21 13:42   ` Sergei Shtylyov
2011-03-18 21:59 ` [PATCH 19/20] video: msm: Separate calculation of base and offset Carl Vanderlip
2011-03-18 22:00 ` [PATCH 20/20] video: msm: Add support for MDP 3.1 (qsd8k) Carl Vanderlip

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).