All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/7] drm/exynos: clean ups
@ 2015-02-19 13:22 Gustavo Padovan
  2015-02-19 13:22 ` [PATCH 1/7] drm/exynos: remove unused exynos_crtc->win_enable() callback Gustavo Padovan
                   ` (7 more replies)
  0 siblings, 8 replies; 14+ messages in thread
From: Gustavo Padovan @ 2015-02-19 13:22 UTC (permalink / raw)
  To: linux-samsung-soc; +Cc: Gustavo Padovan, dri-devel

From: Gustavo Padovan <gustavo.padovan@collabora.co.uk>

Hi,

Here goes some clean ups to the exynos drivers. The main clean ups is
the presetting and zpos making the property immutable and the removal
of *_win_data structures.


Gustavo Padovan (6):
  drm/exynos: remove unused exynos_crtc->win_enable() callback
  drm/exynos: remove struct *_win_data abstraction on planes
  drm/exynos: preset zpos value for overlay planes
  drm/exynos: make zpos property immutable
  drm/exynos: remove exynos_plane_destroy()
  drm/exynos: remove leftover functions declarations

Mandeep Singh Baines (1):
  drm/exynos: track vblank events on a per crtc basis

 drivers/gpu/drm/exynos/exynos7_drm_decon.c | 176 +++++++++--------------
 drivers/gpu/drm/exynos/exynos_drm_crtc.c   | 101 ++++++--------
 drivers/gpu/drm/exynos/exynos_drm_crtc.h   |   7 +-
 drivers/gpu/drm/exynos/exynos_drm_drv.c    |  27 ----
 drivers/gpu/drm/exynos/exynos_drm_drv.h    |  20 +--
 drivers/gpu/drm/exynos/exynos_drm_fimd.c   | 195 ++++++++++----------------
 drivers/gpu/drm/exynos/exynos_drm_plane.c  |  66 +++------
 drivers/gpu/drm/exynos/exynos_drm_plane.h  |   7 +-
 drivers/gpu/drm/exynos/exynos_drm_vidi.c   | 134 +++++-------------
 drivers/gpu/drm/exynos/exynos_mixer.c      | 217 ++++++++++-------------------
 10 files changed, 311 insertions(+), 639 deletions(-)

-- 
2.1.0

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

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PATCH 0/7] drm/exynos: clean up patches (preparing for atomic)
@ 2015-03-23 20:37 Gustavo Padovan
  2015-03-23 20:37 ` [PATCH 4/7] drm/exynos: make zpos property immutable Gustavo Padovan
  0 siblings, 1 reply; 14+ messages in thread
From: Gustavo Padovan @ 2015-03-23 20:37 UTC (permalink / raw)
  To: linux-samsung-soc; +Cc: dri-devel, inki.dae, jy0922.shim, Gustavo Padovan

From: Gustavo Padovan <gustavo.padovan@collabora.co.uk>

Hi,

Here goes some clean ups to the exynos drivers. The main clean ups is
the presetting and zpos making the property immutable and the removal
of *_win_data structures.

Gustavo Padovan (6):
  drm/exynos: remove unused exynos_crtc->win_enable() callback
  drm/exynos: remove struct *_win_data abstraction on planes
  drm/exynos: preset zpos value for overlay planes
  drm/exynos: make zpos property immutable
  drm/exynos: remove exynos_plane_destroy()
  drm/exynos: remove leftover functions declarations

Mandeep Singh Baines (1):
  drm/exynos: track vblank events on a per crtc basis

 drivers/gpu/drm/exynos/exynos7_drm_decon.c | 176 ++++++++--------------
 drivers/gpu/drm/exynos/exynos_drm_crtc.c   | 101 ++++++-------
 drivers/gpu/drm/exynos/exynos_drm_crtc.h   |   7 +-
 drivers/gpu/drm/exynos/exynos_drm_drv.c    |  27 ----
 drivers/gpu/drm/exynos/exynos_drm_drv.h    |  20 +--
 drivers/gpu/drm/exynos/exynos_drm_fimd.c   | 205 ++++++++++----------------
 drivers/gpu/drm/exynos/exynos_drm_plane.c  |  66 ++-------
 drivers/gpu/drm/exynos/exynos_drm_plane.h  |   7 +-
 drivers/gpu/drm/exynos/exynos_drm_vidi.c   | 144 ++++++------------
 drivers/gpu/drm/exynos/exynos_mixer.c      | 228 +++++++++++------------------
 10 files changed, 339 insertions(+), 642 deletions(-)

-- 
2.1.0

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

end of thread, other threads:[~2015-03-23 20:37 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-19 13:22 [PATCH 0/7] drm/exynos: clean ups Gustavo Padovan
2015-02-19 13:22 ` [PATCH 1/7] drm/exynos: remove unused exynos_crtc->win_enable() callback Gustavo Padovan
2015-02-19 13:22 ` [PATCH 2/7] drm/exynos: remove struct *_win_data abstraction on planes Gustavo Padovan
2015-02-19 13:22 ` [PATCH 3/7] drm/exynos: preset zpos value for overlay planes Gustavo Padovan
2015-02-19 13:22 ` [PATCH 4/7] drm/exynos: make zpos property immutable Gustavo Padovan
2015-03-11 15:10   ` Inki Dae
2015-02-19 13:22 ` [PATCH 5/7] drm/exynos: remove exynos_plane_destroy() Gustavo Padovan
2015-02-19 13:22 ` [PATCH 6/7] drm/exynos: remove leftover functions declarations Gustavo Padovan
2015-02-19 13:22 ` [PATCH 7/7] drm/exynos: track vblank events on a per crtc basis Gustavo Padovan
2015-03-12 14:42 ` [PATCH 0/7] drm/exynos: clean ups Inki Dae
2015-03-12 14:57   ` Gustavo Padovan
2015-03-12 18:45   ` Gustavo Padovan
2015-03-13  2:33     ` Inki Dae
  -- strict thread matches above, loose matches on Subject: below --
2015-03-23 20:37 [PATCH 0/7] drm/exynos: clean up patches (preparing for atomic) Gustavo Padovan
2015-03-23 20:37 ` [PATCH 4/7] drm/exynos: make zpos property immutable Gustavo Padovan

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.