All of lore.kernel.org
 help / color / mirror / Atom feed
* [DPU PATCH 00/15] drm/msm: dpu cleanup in msm
@ 2018-06-28 18:28 Sean Paul
       [not found] ` <20180628182906.84926-1-seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
  0 siblings, 1 reply; 18+ messages in thread
From: Sean Paul @ 2018-06-28 18:28 UTC (permalink / raw)
  To: freedreno-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW,
	linux-arm-msm-u79uwXL29TY76Z2rM5mHXA
  Cc: jsanka-sgV2jX0FEOL9JmXXK+q4OQ, robdclark-Re5JQEeQqe8AvxtiuMwx3w,
	Sean Paul, hoegsberg-F7+t8E8rja9g9hUCZPvPmw,
	abhinavk-sgV2jX0FEOL9JmXXK+q4OQ

Same old thing here, more cleanup patches to reduce the amount of dpu
code leaking into msm core. Most of this has already been squashed into
for-next, because it should be (mostly) uncontraversial and (mostly)
code removal.

Sean

Sean Paul (15):
  drm/msm: Remove more dpu changes from msm core
  video: Remove LF copyright in mipi_display.h
  drm/msm: Move dpu_dbg init/destroy into dpu_kms
  drm/msm: Remove more dpu-related code from msm_drv
  drm/msm: More cleanup in msm_drv
  drm/msm: Move debugfs root tracking to dpu
  drm/msm: Remove _dpu_format_calc_offset_linear()
  drm/msm: dpu: Do debugfs init in the debugfs_init() hook
  drm/msm: Remove get_address_space msm_kms hook
  drm/msm: Remove dpu_kms_fbo and associated functions
  drm/msm: Remove dpu module parameters
  drm/msm: Remove unused backpointers from dpu_crtc
  drm/msm: Reduce dpu_crtc_atomic_check frame size
  drm/msm: Remove atomic_check() from msm_kms
  drm/msm: Remove wait_for_tx_complete() from msm_kms

 drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c    |  86 +---
 drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.h    |   4 -
 drivers/gpu/drm/msm/disp/dpu1/dpu_formats.c |  32 --
 drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c     | 508 +++-----------------
 drivers/gpu/drm/msm/disp/dpu1/dpu_kms.h     |  77 +--
 drivers/gpu/drm/msm/disp/dpu1/dpu_mdss.c    |  13 +-
 drivers/gpu/drm/msm/disp/dpu1/dpu_plane.c   |  12 -
 drivers/gpu/drm/msm/disp/dpu1/dpu_trace.h   |   4 -
 drivers/gpu/drm/msm/msm_atomic.c            |   3 +-
 drivers/gpu/drm/msm/msm_drv.c               | 362 ++------------
 drivers/gpu/drm/msm/msm_drv.h               | 165 +------
 drivers/gpu/drm/msm/msm_fb.c                |   4 +-
 drivers/gpu/drm/msm/msm_kms.h               |  19 +-
 drivers/gpu/drm/msm/msm_rd.c                |  55 +--
 include/drm/drm_mipi_dsi.h                  |   4 -
 include/linux/msm_ext_display.h             | 182 -------
 include/uapi/drm/msm_drm.h                  |  78 ---
 include/video/mipi_display.h                |   1 -
 18 files changed, 134 insertions(+), 1475 deletions(-)
 delete mode 100644 include/linux/msm_ext_display.h

-- 
Sean Paul, Software Engineer, Google / Chromium OS

_______________________________________________
Freedreno mailing list
Freedreno@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/freedreno

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

end of thread, other threads:[~2018-06-28 20:29 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-28 18:28 [DPU PATCH 00/15] drm/msm: dpu cleanup in msm Sean Paul
     [not found] ` <20180628182906.84926-1-seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2018-06-28 18:28   ` [DPU PATCH 01/15] drm/msm: Remove more dpu changes from msm core Sean Paul
2018-06-28 18:28   ` [DPU PATCH 02/15] video: Remove LF copyright in mipi_display.h Sean Paul
2018-06-28 18:28   ` [DPU PATCH 03/15] drm/msm: Move dpu_dbg init/destroy into dpu_kms Sean Paul
2018-06-28 18:28   ` [DPU PATCH 04/15] drm/msm: Remove more dpu-related code from msm_drv Sean Paul
     [not found]     ` <20180628182906.84926-5-seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2018-06-28 20:09       ` Jordan Crouse
     [not found]         ` <20180628200955.GF24526-9PYrDHPZ2Orvke4nUoYGnHL1okKdlPRT@public.gmane.org>
2018-06-28 20:29           ` Sean Paul
2018-06-28 18:28   ` [DPU PATCH 05/15] drm/msm: More cleanup in msm_drv Sean Paul
2018-06-28 18:28   ` [DPU PATCH 06/15] drm/msm: Move debugfs root tracking to dpu Sean Paul
2018-06-28 18:28   ` [DPU PATCH 07/15] drm/msm: Remove _dpu_format_calc_offset_linear() Sean Paul
2018-06-28 18:28   ` [DPU PATCH 08/15] drm/msm: dpu: Do debugfs init in the debugfs_init() hook Sean Paul
2018-06-28 18:29   ` [DPU PATCH 09/15] drm/msm: Remove get_address_space msm_kms hook Sean Paul
2018-06-28 18:29   ` [DPU PATCH 10/15] drm/msm: Remove dpu_kms_fbo and associated functions Sean Paul
2018-06-28 18:29   ` [DPU PATCH 11/15] drm/msm: Remove dpu module parameters Sean Paul
2018-06-28 18:29   ` [DPU PATCH 12/15] drm/msm: Remove unused backpointers from dpu_crtc Sean Paul
2018-06-28 18:29   ` [DPU PATCH 13/15] drm/msm: Reduce dpu_crtc_atomic_check frame size Sean Paul
2018-06-28 18:29   ` [DPU PATCH 14/15] drm/msm: Remove atomic_check() from msm_kms Sean Paul
2018-06-28 18:29   ` [DPU PATCH 15/15] drm/msm: Remove wait_for_tx_complete() " Sean Paul

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.