All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] drm/omap: updates for addfb2 and plane support
@ 2011-12-20 22:58 Rob Clark
  2011-12-20 22:58 ` [PATCH 1/3] drm/omap: drm API update: addfb2 Rob Clark
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Rob Clark @ 2011-12-20 22:58 UTC (permalink / raw)
  To: dri-devel; +Cc: Greg KH, Rob Clark, patches

From: Rob Clark <rob@ti.com>

The first patch updates omapdrm for API changes introduced when addfb2
support (for multi-planar fb's) was added (in drm-next).  The next patch
adds drm plane (overlay) support, with CRTCs using private plane objects
to avoid code duplication between the CRTC and plane.  (This depends on
the "drm: add support for private planes" patch.)  The final patch adds
support for YUV and multi-planar YUV formats.

This updated patch set rebases on drm-next as of today, and removes an
internal helper function in favor of the new drm_format_num_planes()
helper.  These patches replace the last patchset sent on 15 Dec 2011.

Rob Clark (3):
  drm/omap: drm API update: addfb2
  drm/omap: add drm_plane support
  drm/omap: multiplanar and YUV support

 drivers/staging/omapdrm/Makefile     |    1 +
 drivers/staging/omapdrm/omap_crtc.c  |  191 +++++---------------
 drivers/staging/omapdrm/omap_drv.c   |   53 ++++--
 drivers/staging/omapdrm/omap_drv.h   |   46 ++++-
 drivers/staging/omapdrm/omap_fb.c    |  224 +++++++++++++++++------
 drivers/staging/omapdrm/omap_fbdev.c |   55 ++++--
 drivers/staging/omapdrm/omap_gem.c   |    5 +
 drivers/staging/omapdrm/omap_plane.c |  329 ++++++++++++++++++++++++++++++++++
 drivers/staging/omapdrm/omap_priv.h  |   12 +-
 9 files changed, 665 insertions(+), 251 deletions(-)
 create mode 100644 drivers/staging/omapdrm/omap_plane.c

-- 
1.7.5.4

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [PATCH 0/3] drm/omap: updates for addfb2 and plane support
@ 2012-01-05 21:22 Rob Clark
  2012-01-05 21:22 ` [PATCH 1/3] drm/omap: drm API update: addfb2 Rob Clark
  0 siblings, 1 reply; 10+ messages in thread
From: Rob Clark @ 2012-01-05 21:22 UTC (permalink / raw)
  To: dri-devel; +Cc: Greg KH, Rob Clark, patches

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=ASCII, Size: 1663 bytes --]

From: Rob Clark <rob@ti.com>

The first patch updates omapdrm for API changes introduced when addfb2
support (for multi-planar fb's) was added (in drm-next).  The next patch
adds drm plane (overlay) support, with CRTCs using private plane objects
to avoid code duplication between the CRTC and plane.  (This depends on
the "drm: add support for private planes" patch.)  The final patch adds
support for YUV and multi-planar YUV formats.

This updated patch set rebases on drm-next as of today, and makes a small
correction for a mistake in the color formats table which Ville Syrjälä
pointed out.  These patches replace the last patchset sent on 20 Dec 2011.
I think pretty much everything that will change in drm-next should be
in now so I think this should be the last rebase and should be fine to
pull to staging tree when drm-next is pulled to Linus's tree.

Rob Clark (3):
  drm/omap: drm API update: addfb2
  drm/omap: add drm_plane support
  drm/omap: multiplanar and YUV support

 drivers/staging/omapdrm/Makefile     |    1 +
 drivers/staging/omapdrm/omap_crtc.c  |  191 +++++---------------
 drivers/staging/omapdrm/omap_drv.c   |   53 ++++--
 drivers/staging/omapdrm/omap_drv.h   |   46 ++++-
 drivers/staging/omapdrm/omap_fb.c    |  224 +++++++++++++++++------
 drivers/staging/omapdrm/omap_fbdev.c |   55 ++++--
 drivers/staging/omapdrm/omap_gem.c   |    5 +
 drivers/staging/omapdrm/omap_plane.c |  329 ++++++++++++++++++++++++++++++++++
 drivers/staging/omapdrm/omap_priv.h  |   12 +-
 9 files changed, 665 insertions(+), 251 deletions(-)
 create mode 100644 drivers/staging/omapdrm/omap_plane.c

-- 
1.7.5.4


[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

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

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [PATCH 0/3] drm/omap: updates for addfb2 and plane support
@ 2011-12-15  6:16 Rob Clark
  2011-12-15  6:16 ` [PATCH 1/3] drm/omap: drm API update: addfb2 Rob Clark
  0 siblings, 1 reply; 10+ messages in thread
From: Rob Clark @ 2011-12-15  6:16 UTC (permalink / raw)
  To: dri-devel; +Cc: Greg KH, Rob Clark, patches

From: Rob Clark <rob@ti.com>

The first patch updates omapdrm for API changes introduced when addfb2
support (for multi-planar fb's) was added (in drm-next).  The next patch
adds drm plane (overlay) support, with CRTCs using private plane objects
to avoid code duplication between the CRTC and plane.  (This depends on
the "drm: add support for private planes" patch.)  The final patch adds
support for YUV and multi-planar YUV formats.

Rob Clark (3):
  drm/omap: drm API update: addfb2
  drm/omap: add drm_plane support
  drm/omap: multiplanar and YUV support

 drivers/staging/omapdrm/Makefile     |    1 +
 drivers/staging/omapdrm/omap_crtc.c  |  191 +++++---------------
 drivers/staging/omapdrm/omap_drv.c   |   53 ++++--
 drivers/staging/omapdrm/omap_drv.h   |   69 +++++++-
 drivers/staging/omapdrm/omap_fb.c    |  224 +++++++++++++++++------
 drivers/staging/omapdrm/omap_fbdev.c |   53 ++++--
 drivers/staging/omapdrm/omap_gem.c   |    5 +
 drivers/staging/omapdrm/omap_plane.c |  329 ++++++++++++++++++++++++++++++++++
 drivers/staging/omapdrm/omap_priv.h  |   12 +-
 9 files changed, 687 insertions(+), 250 deletions(-)
 create mode 100644 drivers/staging/omapdrm/omap_plane.c

-- 
1.7.5.4

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

end of thread, other threads:[~2012-01-05 21:22 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-20 22:58 [PATCH 0/3] drm/omap: updates for addfb2 and plane support Rob Clark
2011-12-20 22:58 ` [PATCH 1/3] drm/omap: drm API update: addfb2 Rob Clark
2011-12-20 23:30   ` Ville Syrjälä
2011-12-20 23:58     ` Rob Clark
2011-12-21  0:34       ` Ville Syrjälä
2012-01-02 16:43     ` Rob Clark
2011-12-20 22:58 ` [PATCH 2/3] drm/omap: add drm_plane support Rob Clark
2011-12-20 22:58 ` [PATCH 3/3] drm/omap: multiplanar and YUV support Rob Clark
  -- strict thread matches above, loose matches on Subject: below --
2012-01-05 21:22 [PATCH 0/3] drm/omap: updates for addfb2 and plane support Rob Clark
2012-01-05 21:22 ` [PATCH 1/3] drm/omap: drm API update: addfb2 Rob Clark
2011-12-15  6:16 [PATCH 0/3] drm/omap: updates for addfb2 and plane support Rob Clark
2011-12-15  6:16 ` [PATCH 1/3] drm/omap: drm API update: addfb2 Rob Clark

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.