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

Apologies for the spam, I'm resending again because git send-email keeps
adding the commit hash as a cc, and then failing since it's not a valid
email. If anyone knows how to suppress git send-email from adding the 
"From <sha1> Mon Sep 17 00:00:00 2001" line as a cc, hit me up. For
now, I've just done the dumb thing and marked --suppress-cc=all.

[original msg]
We've finally got the mtp development kit booting the DPU driver that
was sent upstream last week. Here are some of the patches that were
necessary to do that. There are a bunch more, but they touch downstream
code that is not going upstream (namely dsi-staging and smmu). The
booting kernel can be found at [1].

Once the patches in this series receive some light review, I'll drop
them on for-next at [2].

Thanks,

Sean

[1]- https://cgit.freedesktop.org/~seanpaul/dpu-staging/log/?h=mtp-testing
[2]- https://cgit.freedesktop.org/~seanpaul/dpu-staging/log/?h=for-next

Jeykumar Sankaran (1):
  drm/msm/dpu: Fix writeback compile macros

Sean Paul (9):
  drm/msm: Add displayport files to Makefile
  drm/msm: Include the dpu_dbg header in msm_drv.c
  drm/msm: Change driver name back to msm
  drm/msm: Remove smmu driver init/cleanup from msm_drv
  drm/msm: Defer probe if display component not found
  drm/msm: Fix deadlock calling msm_gem_new()
  drm/msm: Populate kms->irq for dpu
  drm/msm: Sprinkle pm_runtime calls around
  drm/msm: Restore msm_atomic_check hook

 drivers/gpu/drm/msm/Makefile                  | 14 ++++++++++++++
 drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c      |  3 +++
 drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c   |  7 ++-----
 .../gpu/drm/msm/disp/dpu1/dpu_hw_reg_dma_v1.c |  2 --
 drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c       | 19 ++++++++++++++++++-
 drivers/gpu/drm/msm/msm_drv.c                 | 17 +++++++++--------
 6 files changed, 46 insertions(+), 16 deletions(-)

-- 
2.16.1.291.g4437f3f132-goog

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

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

end of thread, other threads:[~2018-03-15 14:55 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-21 15:18 [PATCH RESEND 00/10] drm/msm: A handful of dpu fixes Sean Paul
     [not found] ` <20180221151838.224718-1-seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2018-02-21 15:18   ` [PATCH RESEND 01/10] drm/msm: Add displayport files to Makefile Sean Paul
     [not found]     ` <20180221151838.224718-2-seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2018-03-08 22:01       ` Jeykumar Sankaran
2018-02-21 15:18   ` [PATCH RESEND 02/10] drm/msm: Include the dpu_dbg header in msm_drv.c Sean Paul
     [not found]     ` <20180221151838.224718-3-seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2018-03-08 22:03       ` Jeykumar Sankaran
2018-03-08 22:06       ` Jeykumar Sankaran
2018-02-21 15:18   ` [PATCH RESEND 03/10] drm/msm: Change driver name back to msm Sean Paul
     [not found]     ` <20180221151838.224718-4-seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2018-03-08 22:02       ` Jeykumar Sankaran
2018-02-21 15:18   ` [PATCH RESEND 04/10] drm/msm: Remove smmu driver init/cleanup from msm_drv Sean Paul
     [not found]     ` <20180221151838.224718-5-seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2018-03-08 22:04       ` Jeykumar Sankaran
2018-03-08 22:07       ` Jeykumar Sankaran
2018-02-21 15:18   ` [PATCH RESEND 05/10] drm/msm: Defer probe if display component not found Sean Paul
     [not found]     ` <20180221151838.224718-6-seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2018-03-08 22:09       ` Jeykumar Sankaran
2018-02-21 15:18   ` [PATCH RESEND 06/10] drm/msm: Fix deadlock calling msm_gem_new() Sean Paul
     [not found]     ` <20180221151838.224718-7-seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2018-03-08 22:21       ` Jeykumar Sankaran
2018-02-21 15:18   ` [PATCH RESEND 07/10] drm/msm: Populate kms->irq for dpu Sean Paul
     [not found]     ` <20180221151838.224718-8-seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2018-03-08 22:36       ` Jeykumar Sankaran
2018-02-21 15:18   ` [PATCH RESEND 08/10] drm/msm: Sprinkle pm_runtime calls around Sean Paul
     [not found]     ` <20180221151838.224718-9-seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2018-03-09  0:14       ` Jeykumar Sankaran
     [not found]         ` <e953b0d8daa63e5cd2f65259b1c80a27-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-03-12 20:06           ` Sean Paul
2018-03-14 15:07             ` [DPU PATCH] drm/msm: Add pm_runtime_get/put calls to dpu Sean Paul
     [not found]               ` <20180314150718.254814-1-seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2018-03-15 14:42                 ` skolluku-sgV2jX0FEOL9JmXXK+q4OQ
     [not found]                   ` <94e53348399f60ace8da8281acdaaef0-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-03-15 14:55                     ` skolluku-sgV2jX0FEOL9JmXXK+q4OQ
2018-02-21 15:18   ` [PATCH RESEND 09/10] drm/msm/dpu: Fix writeback compile macros Sean Paul
2018-02-21 15:18   ` [PATCH RESEND 10/10] drm/msm: Restore msm_atomic_check hook Sean Paul
     [not found]     ` <20180221151838.224718-11-seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2018-02-22 20:08       ` Rob Clark
     [not found]         ` <CAF6AEGswWCtmdCi_Etg8V2Ty9pr1=veHnd8s7iuE4Ot8SB8Ppw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2018-02-22 21:01           ` Sean Paul
2018-03-09  0:15       ` Jeykumar Sankaran

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.