All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/36] drm/omap: patches for 4.1
@ 2015-03-24 12:15 Tomi Valkeinen
  2015-03-24 12:15 ` [PATCH 01/36] drm: omapdrm: Fix indentation of structure and array initializers Tomi Valkeinen
                   ` (35 more replies)
  0 siblings, 36 replies; 37+ messages in thread
From: Tomi Valkeinen @ 2015-03-24 12:15 UTC (permalink / raw)
  To: dri-devel; +Cc: Tomi Valkeinen, Laurent Pinchart

Hi,

This series contains fixes and improvements for omapdrm. The patches from me
have already been sent earlier, and they have been changed according to the
received comments. The patches from Laurent have not been reviewed yet.

I'm resending my patches and the patches from Grygorii in this series, as I
have rebased them on top of Laurent's series as there were some conflicts
between the patches.

These are based on drm-next branch, and can be found from:

git://git.kernel.org/pub/scm/linux/kernel/git/tomba/linux.git 4.1/omapdrm

 Tomi

Grygorii Strashko (2):
  drm/omap: add hibernation callbacks
  drm/omap: tiler: add hibernation callback

Laurent Pinchart (14):
  drm: omapdrm: Fix indentation of structure and array initializers
  drm: omapdrm: Refactor CRTC creation code
  drm: omapdrm: Remove unused variables
  drm: omapdrm: Switch to the universal plane API
  drm: omapdrm: Rename omap_plane_dpms() to omap_plane_set_enable()
  drm: omapdrm: Reset the zorder property when disabling a plane
  drm: omapdrm: Fix race condition between GO and vblank IRQ
  drm: omapdrm: Remove manual update display support
  drm: omapdrm: Remove omap_crtc->full_update field
  drm: omapdrm: Avoid function forward declaration in omap_crtc.c
  drm: omapdrm: Prefix all plane functions with omap_plane_
  drm: omapdrm: Pass integer source coordinates to omap_plane_mode_set()
  drm: omapdrm: Planes are already disabled when destroyed
  drm: omapdrm: Reorder CRTC functions

Tomi Valkeinen (20):
  drm/omap: fix encoder-crtc mapping
  drm/omap: page_flip: return -EBUSY if flip pending
  drm/omap: clear omap_obj->paddr in omap_gem_put_paddr()
  drm/omap: add pin refcounting to omap_framebuffer
  drm/omap: add a comment why locking is missing
  drm/omap: fix operation without fbdev
  drm/omap: fix error handling in omap_framebuffer_create()
  drm/omap: handle incompatible buffer stride and pixel size
  drm/omap: fix TILER on OMAP5
  drm/omap: fix plane's channel selection
  drm/omap: tiler: fix race condition with engine->async
  drm/omap: remove dummy PM functions
  drm/omap: stop connector polling during suspend
  drm/omap: use DRM_ERROR_RATELIMITED() for error irqs
  drm/omap: fix race with error_irq
  drm/omap: only ignore DIGIT SYNC LOST for TV output
  drm/omap: do not use BUG_ON(!spin_is_locked(x))
  drm/omap: fix race condition with dev->obj_list
  drm/omap: fix race conditon in DMM
  drm/omap: keep ref to old_fb

 drivers/gpu/drm/omapdrm/omap_connector.c  |  12 -
 drivers/gpu/drm/omapdrm/omap_crtc.c       | 622 +++++++++++++++---------------
 drivers/gpu/drm/omapdrm/omap_dmm_priv.h   |   8 +-
 drivers/gpu/drm/omapdrm/omap_dmm_tiler.c  |  80 ++--
 drivers/gpu/drm/omapdrm/omap_dmm_tiler.h  |   1 +
 drivers/gpu/drm/omapdrm/omap_drv.c        | 241 ++++++------
 drivers/gpu/drm/omapdrm/omap_drv.h        |  23 +-
 drivers/gpu/drm/omapdrm/omap_fb.c         |  66 ++--
 drivers/gpu/drm/omapdrm/omap_fbdev.c      |  57 +--
 drivers/gpu/drm/omapdrm/omap_gem.c        |  10 +-
 drivers/gpu/drm/omapdrm/omap_gem_dmabuf.c |  20 +-
 drivers/gpu/drm/omapdrm/omap_irq.c        |   2 +-
 drivers/gpu/drm/omapdrm/omap_plane.c      | 146 +++----
 13 files changed, 642 insertions(+), 646 deletions(-)

-- 
2.3.3

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

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

end of thread, other threads:[~2015-03-24 12:17 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-24 12:15 [PATCH 00/36] drm/omap: patches for 4.1 Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 01/36] drm: omapdrm: Fix indentation of structure and array initializers Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 02/36] drm: omapdrm: Refactor CRTC creation code Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 03/36] drm: omapdrm: Remove unused variables Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 04/36] drm: omapdrm: Switch to the universal plane API Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 05/36] drm: omapdrm: Rename omap_plane_dpms() to omap_plane_set_enable() Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 06/36] drm: omapdrm: Reset the zorder property when disabling a plane Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 07/36] drm: omapdrm: Fix race condition between GO and vblank IRQ Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 08/36] drm: omapdrm: Remove manual update display support Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 09/36] drm: omapdrm: Remove omap_crtc->full_update field Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 10/36] drm: omapdrm: Avoid function forward declaration in omap_crtc.c Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 11/36] drm: omapdrm: Prefix all plane functions with omap_plane_ Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 12/36] drm: omapdrm: Pass integer source coordinates to omap_plane_mode_set() Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 13/36] drm: omapdrm: Planes are already disabled when destroyed Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 14/36] drm: omapdrm: Reorder CRTC functions Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 15/36] drm/omap: fix encoder-crtc mapping Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 16/36] drm/omap: page_flip: return -EBUSY if flip pending Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 17/36] drm/omap: clear omap_obj->paddr in omap_gem_put_paddr() Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 18/36] drm/omap: add pin refcounting to omap_framebuffer Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 19/36] drm/omap: add a comment why locking is missing Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 20/36] drm/omap: fix operation without fbdev Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 21/36] drm/omap: fix error handling in omap_framebuffer_create() Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 22/36] drm/omap: handle incompatible buffer stride and pixel size Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 23/36] drm/omap: fix TILER on OMAP5 Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 24/36] drm/omap: fix plane's channel selection Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 25/36] drm/omap: tiler: fix race condition with engine->async Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 26/36] drm/omap: remove dummy PM functions Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 27/36] drm/omap: stop connector polling during suspend Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 28/36] drm/omap: use DRM_ERROR_RATELIMITED() for error irqs Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 29/36] drm/omap: fix race with error_irq Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 30/36] drm/omap: only ignore DIGIT SYNC LOST for TV output Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 31/36] drm/omap: do not use BUG_ON(!spin_is_locked(x)) Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 32/36] drm/omap: fix race condition with dev->obj_list Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 33/36] drm/omap: fix race conditon in DMM Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 34/36] drm/omap: keep ref to old_fb Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 35/36] drm/omap: add hibernation callbacks Tomi Valkeinen
2015-03-24 12:15 ` [PATCH 36/36] drm/omap: tiler: add hibernation callback Tomi Valkeinen

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.