All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 0/6] drm/rockchip: fixes and new features
@ 2015-07-27  2:05 ` Mark Yao
  0 siblings, 0 replies; 31+ messages in thread
From: Mark Yao @ 2015-07-27  2:05 UTC (permalink / raw)
  To: dri-devel
  Cc: zwl, linux-kernel, tfiga, linux-rockchip, dkm, sandy.huang,
	linux-arm-kernel

This series patches are used for yuv image overlay display.

Rockchip vop support NV11, NV16, NV24 yuv format,
and can scale the image scale 1/8 to 8.

Changes in v4:
- rebase to top of drm-next, fix conflict
- tiny fix on plane scale.

Changes in v3:
- make code more readable
- fix some bugs

Changes in v2:
- Uv buffer not support odd offset, align it.
- Fix error display when move yuv image. 
- Fix scale dest info. 
Mark Yao (6):
  drm/rockchip: vop: Fix virtual stride calculation
  drm/rockchip: vop: Fix window dest start point
  drm/rockchip: vop: Add yuv plane support
  drm/rockchip: vop: Default enable win2/3 area0 bit
  drm/rockchip: vop: restore vop registers when resume
  drm/rockchip: vop: support plane scale

 drivers/gpu/drm/rockchip/rockchip_drm_vop.c |  269 ++++++++++++++++++++++++++-
 drivers/gpu/drm/rockchip/rockchip_drm_vop.h |   88 +++++++++
 2 files changed, 348 insertions(+), 9 deletions(-)

-- 
1.7.9.5


_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 31+ messages in thread
* [GIT PULL] drm/rockchip: fixes and new features
@ 2015-06-30  6:50 Mark yao
  2015-07-01  8:03 ` Tomasz Figa
  0 siblings, 1 reply; 31+ messages in thread
From: Mark yao @ 2015-06-30  6:50 UTC (permalink / raw)
  To: David Airlie; +Cc: open list:ARM/Rockchip SoC..., dri-devel, Tomasz Figa

Hi Dave.

     Some fixes and some new features. I'd like you can pull them.

The following changes since commit c5fd936e992dd2829167d2adc63e151675ca6898:

   drm/nouveau: Pause between setting gpu to D3hot and cutting the power 
(2015-06-26 10:26:37 +1000)

are available in the git repository at:

   https://github.com/markyzq/kernel-drm-rockchip.git 
drm-rockchip-2015-06-30

for you to fetch changes up to 5295c05eb30d743987172853179333c80b8242bc:

   drm/rockchip: default enable win2/3 area0 bit (2015-06-30 14:24:10 +0800)

----------------------------------------------------------------
Heiko Stübner (1):
       drm/rockchip: only call drm_fb_helper_hotplug_event if fb_helper 
present

Mark Yao (6):
       drm/rockchip: import dma_buf to gem
       drm/rockchip: vop: optimize virtual stride calculate
       drm/rockchip: vop: fix yuv plane support
       drm/rockchip: vop: support plane scale
       drm/rockchip: vop: switch cursor plane to window 3
       drm/rockchip: default enable win2/3 area0 bit

Tomasz Figa (1):
       drm/rockchip: Add BGR formats to VOP

  drivers/gpu/drm/rockchip/rockchip_drm_drv.c |    1 +
  drivers/gpu/drm/rockchip/rockchip_drm_fb.c  |    3 +-
  drivers/gpu/drm/rockchip/rockchip_drm_gem.c |   40 ++-
  drivers/gpu/drm/rockchip/rockchip_drm_gem.h |    5 +-
  drivers/gpu/drm/rockchip/rockchip_drm_vop.c |  500 
++++++++++++++++++++++++++-
  drivers/gpu/drm/rockchip/rockchip_drm_vop.h |   96 +++++
  6 files changed, 628 insertions(+), 17 deletions(-)

-- 
Mark


_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

end of thread, other threads:[~2015-08-26  6:35 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-27  2:05 [PATCH v4 0/6] drm/rockchip: fixes and new features Mark Yao
2015-07-27  2:05 ` Mark Yao
2015-07-27  2:05 ` [PATCH v4 1/6] drm/rockchip: vop: Fix virtual stride calculation Mark Yao
2015-07-27  2:05   ` Mark Yao
2015-07-27  2:05 ` [PATCH v4 2/6] drm/rockchip: vop: Fix window dest start point Mark Yao
2015-07-27  2:05   ` Mark Yao
2015-07-27  2:05 ` [PATCH v4 3/6] drm/rockchip: vop: Add yuv plane support Mark Yao
2015-07-27  2:05   ` Mark Yao
2015-07-27  2:05   ` Mark Yao
2015-07-27  2:06 ` [PATCH v4 4/6] drm/rockchip: vop: Default enable win2/3 area0 bit Mark Yao
2015-07-27  2:06   ` Mark Yao
2015-07-27  2:06   ` Mark Yao
2015-07-27  2:08 ` [PATCH v4 5/6] drm/rockchip: vop: restore vop registers when resume Mark Yao
2015-07-27  2:08   ` Mark Yao
2015-07-27  2:08   ` Mark Yao
2015-07-27  2:09 ` [PATCH v4 6/6] drm/rockchip: vop: support plane scale Mark Yao
2015-07-27  2:09   ` Mark Yao
2015-07-27  2:09   ` Mark Yao
2015-08-26  6:34 ` [GIT PULL] drm/rockchip: fixes and new features Mark yao
2015-08-26  6:34   ` Mark yao
2015-08-26  6:34   ` Mark yao
  -- strict thread matches above, loose matches on Subject: below --
2015-06-30  6:50 Mark yao
2015-07-01  8:03 ` Tomasz Figa
2015-07-01  8:20   ` Daniel Vetter
2015-07-01  8:32     ` Tomasz Figa
2015-07-01  8:56       ` Mark yao
2015-07-01  8:32   ` Mark yao
2015-07-01  8:42     ` Tomasz Figa
2015-07-01  9:13       ` Mark yao
2015-07-01  9:17         ` Tomasz Figa
2015-07-01  8:43     ` Mark yao

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.