From: Jeykumar Sankaran <jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
To: Sean Paul <sean-p7yTbzM4H96eqtR555YLDQ@public.gmane.org>
Cc: linux-arm-msm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
robdclark-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org,
jcrouse-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org,
seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org,
hoegsberg-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org,
freedreno-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
Subject: Re: [PATCH 22/25] drm/msm/dpu: make crtc and encoder specific HW reservation
Date: Tue, 09 Oct 2018 23:15:02 -0700 [thread overview]
Message-ID: <c6dddbdf3382a59a4a9f0874e4725ec1@codeaurora.org> (raw)
In-Reply-To: <20181009204152.GP154160@art_vandelay>
On 2018-10-09 13:41, Sean Paul wrote:
> On Mon, Oct 08, 2018 at 09:27:39PM -0700, Jeykumar Sankaran wrote:
>> Instead of letting encoder make a centralized reservation for
>> all of its display DRM components, this path splits the
>> responsibility between CRTC and Encoder, each requesting
>> RM for the HW mapping of its own domain.
>>
>> Signed-off-by: Jeykumar Sankaran <jsanka@codeaurora.org>
>> ---
>> drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c | 31 +++++++++++++
>> drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c | 14 ++----
>> drivers/gpu/drm/msm/disp/dpu1/dpu_rm.c | 69
> ++++++++++++++++++++++++-----
>> drivers/gpu/drm/msm/disp/dpu1/dpu_rm.h | 36 +++++++++++----
>> 4 files changed, 119 insertions(+), 31 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c
> b/drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c
>> index 0625f56..0536b8a 100644
>> --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c
>> +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c
>> @@ -47,6 +47,8 @@
>> #define LEFT_MIXER 0
>> #define RIGHT_MIXER 1
>>
>> +#define MAX_VDISPLAY_SPLIT 1080
>> +
>> static inline int _dpu_crtc_get_mixer_width(struct dpu_crtc_state
> *cstate,
>> struct drm_display_mode *mode)
>> {
>> @@ -448,6 +450,7 @@ static void _dpu_crtc_setup_lm_bounds(struct
> drm_crtc *crtc,
>>
>> for (i = 0; i < cstate->num_mixers; i++) {
>> struct drm_rect *r = &cstate->lm_bounds[i];
>> +
>> r->x1 = crtc_split_width * i;
>> r->y1 = 0;
>> r->x2 = r->x1 + crtc_split_width;
>> @@ -885,6 +888,7 @@ static void dpu_crtc_disable(struct drm_crtc
>> *crtc)
>> struct drm_display_mode *mode;
>> struct drm_encoder *encoder;
>> struct msm_drm_private *priv;
>> + struct dpu_kms *dpu_kms;
>> unsigned long flags;
>>
>> if (!crtc || !crtc->dev || !crtc->dev->dev_private ||
> !crtc->state) {
>> @@ -895,6 +899,7 @@ static void dpu_crtc_disable(struct drm_crtc
>> *crtc)
>> cstate = to_dpu_crtc_state(crtc->state);
>> mode = &cstate->base.adjusted_mode;
>> priv = crtc->dev->dev_private;
>> + dpu_kms = to_dpu_kms(priv->kms);
>>
>> DRM_DEBUG_KMS("crtc%d\n", crtc->base.id);
>>
>> @@ -953,6 +958,8 @@ static void dpu_crtc_disable(struct drm_crtc
>> *crtc)
>> crtc->state->event = NULL;
>> spin_unlock_irqrestore(&crtc->dev->event_lock, flags);
>> }
>> +
>> + dpu_rm_crtc_release(&dpu_kms->rm, crtc->state);
>> }
>>
>> static void dpu_crtc_enable(struct drm_crtc *crtc,
>> @@ -1004,6 +1011,21 @@ struct plane_state {
>> u32 pipe_id;
>> };
>>
>> +static void _dpu_crtc_get_topology(
>> + struct drm_crtc_state *crtc_state,
>> + struct drm_display_mode *mode)
>> +{
>> + struct dpu_crtc_state *dpu_cstate = to_dpu_crtc_state(crtc_state);
>> +
>> + dpu_cstate->num_mixers = (mode->vdisplay > MAX_VDISPLAY_SPLIT) ? 2
> : 1;
>> +
>> + /**
>> + * encoder->atomic_check is invoked before crtc->atomic_check.
>> + * so dpu_cstate->num_intfs should have a non-zero value.
>> + */
>> + dpu_cstate->num_ctls = dpu_cstate->num_intfs;
>
> Why do we need num_ctls? Can't we just use dpu_cstate->num_intfs
> directly?
> Also,
> you don't really need these in their own function, especially if
> num_ctls
> goes
> away.
>
Yes. I can live with just that. But since dpu_cstate maintains HW arrays
for each type, I thought it would be more readable if I could use
separate variables to track their counts instead of iterating over
ctl arrays over dpu_cstate->num_intfs and leaving comments that both
will be same for this version of hardware.
Also, the counts need not be the same for all the Snapdragon variants.
Thanks,
Jeykumar S.
>> +}
>> +
>> static int dpu_crtc_atomic_check(struct drm_crtc *crtc,
>> struct drm_crtc_state *state)
>> {
>> @@ -1014,6 +1036,8 @@ static int dpu_crtc_atomic_check(struct drm_crtc
> *crtc,
>> const struct drm_plane_state *pstate;
>> struct drm_plane *plane;
>> struct drm_display_mode *mode;
>> + struct msm_drm_private *priv;
>> + struct dpu_kms *dpu_kms;
>>
>> int cnt = 0, rc = 0, mixer_width, i, z_pos;
>>
>> @@ -1039,6 +1063,9 @@ static int dpu_crtc_atomic_check(struct drm_crtc
> *crtc,
>> goto end;
>> }
>>
>> + priv = crtc->dev->dev_private;
>> + dpu_kms = to_dpu_kms(priv->kms);
>> +
>> mode = &state->adjusted_mode;
>> DPU_DEBUG("%s: check", dpu_crtc->name);
>>
>> @@ -1229,6 +1256,10 @@ static int dpu_crtc_atomic_check(struct
>> drm_crtc
> *crtc,
>> }
>> }
>>
>> + _dpu_crtc_get_topology(state, mode);
>> + if (drm_atomic_crtc_needs_modeset(state))
>> + rc = dpu_rm_crtc_reserve(&dpu_kms->rm, state);
>> +
>> end:
>> kfree(pstates);
>> return rc;
>> diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c
> b/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c
>> index 5d501c8..ce66309 100644
>> --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c
>> +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c
>> @@ -67,8 +67,6 @@
>>
>> #define IDLE_SHORT_TIMEOUT 1
>>
>> -#define MAX_VDISPLAY_SPLIT 1080
>> -
>> /**
>> * enum dpu_enc_rc_events - events for resource control state machine
>> * @DPU_ENC_RC_EVENT_KICKOFF:
>> @@ -557,14 +555,10 @@ static void _dpu_encoder_adjust_mode(struct
> drm_connector *connector,
>>
>> static void _dpu_encoder_get_topology(
>> struct dpu_encoder_virt *dpu_enc,
>> - struct drm_crtc_state *crtc_state,
>> - struct drm_display_mode *mode)
>> + struct drm_crtc_state *crtc_state)
>> {
>> struct dpu_crtc_state *dpu_cstate = to_dpu_crtc_state(crtc_state);
>>
>> - /* User split topology for width > 1080 */
>> - dpu_cstate->num_mixers = (mode->vdisplay > MAX_VDISPLAY_SPLIT) ? 2
> : 1;
>> - dpu_cstate->num_ctls = dpu_enc->num_phys_encs;
>> dpu_cstate->num_intfs = dpu_enc->num_phys_encs;
>> }
>>
>> @@ -623,9 +617,9 @@ static int dpu_encoder_virt_atomic_check(
>> }
>> }
>>
>> - _dpu_encoder_get_topology(dpu_enc, crtc_state, adj_mode);
>> + _dpu_encoder_get_topology(dpu_enc, crtc_state);
>> if (!ret && drm_atomic_crtc_needs_modeset(crtc_state))
>> - ret = dpu_rm_reserve(&dpu_kms->rm, drm_enc, crtc_state);
>> + ret = dpu_rm_encoder_reserve(&dpu_kms->rm, drm_enc,
> crtc_state);
>>
>> if (!ret)
>> drm_mode_set_crtcinfo(adj_mode, 0);
>> @@ -1186,7 +1180,7 @@ static void dpu_encoder_virt_disable(struct
> drm_encoder *drm_enc)
>>
>> DPU_DEBUG_ENC(dpu_enc, "encoder disabled\n");
>>
>> - dpu_rm_release(&dpu_kms->rm, drm_enc->crtc->state);
>> + dpu_rm_encoder_release(&dpu_kms->rm, drm_enc->crtc->state);
>> }
>>
>> static enum dpu_intf dpu_encoder_get_intf(struct dpu_mdss_cfg
>> *catalog,
>> diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_rm.c
> b/drivers/gpu/drm/msm/disp/dpu1/dpu_rm.c
>> index 5304597..901b1fc 100644
>> --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_rm.c
>> +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_rm.c
>> @@ -436,8 +436,8 @@ static int _dpu_rm_release_hw(struct dpu_rm *rm,
> enum dpu_hw_blk_type type,
>> return -EINVAL;
>> }
>>
>> -static void _dpu_rm_release_reservation(struct dpu_rm *rm,
>> - struct dpu_crtc_state *dpu_cstate)
>> +static void _dpu_rm_crtc_release_reservation(struct dpu_rm *rm,
>> + struct dpu_crtc_state
> *dpu_cstate)
>> {
>> int i;
>>
>> @@ -464,6 +464,12 @@ static void _dpu_rm_release_reservation(struct
> dpu_rm *rm,
>> dpu_cstate->hw_ctls[i]->base.id))
>> dpu_cstate->hw_ctls[i] = NULL;
>> }
>> +}
>> +
>> +static void _dpu_rm_encoder_release_reservation(struct dpu_rm *rm,
>> + struct dpu_crtc_state
> *dpu_cstate)
>> +{
>> + int i;
>>
>> for (i = 0; i < dpu_cstate->num_intfs; i++) {
>> if (!dpu_cstate->hw_intfs[i])
>> @@ -475,23 +481,33 @@ static void _dpu_rm_release_reservation(struct
> dpu_rm *rm,
>> }
>> }
>>
>> -void dpu_rm_release(struct dpu_rm *rm, struct drm_crtc_state
> *crtc_state)
>> +void dpu_rm_crtc_release(struct dpu_rm *rm, struct drm_crtc_state
> *crtc_state)
>> {
>> struct dpu_crtc_state *dpu_cstate = to_dpu_crtc_state(crtc_state);
>>
>> mutex_lock(&rm->rm_lock);
>>
>> - _dpu_rm_release_reservation(rm, dpu_cstate);
>> + _dpu_rm_crtc_release_reservation(rm, dpu_cstate);
>>
>> mutex_unlock(&rm->rm_lock);
>> }
>>
>> -int dpu_rm_reserve(
>> +void dpu_rm_encoder_release(struct dpu_rm *rm,
>> + struct drm_crtc_state *crtc_state)
>> +{
>> + struct dpu_crtc_state *dpu_cstate = to_dpu_crtc_state(crtc_state);
>> +
>> + mutex_lock(&rm->rm_lock);
>> +
>> + _dpu_rm_encoder_release_reservation(rm, dpu_cstate);
>> +
>> + mutex_unlock(&rm->rm_lock);
>> +}
>> +
>> +int dpu_rm_crtc_reserve(
>> struct dpu_rm *rm,
>> - struct drm_encoder *enc,
>> struct drm_crtc_state *crtc_state)
>> {
>> - struct dpu_encoder_hw_resources hw_res;
>> struct dpu_crtc_state *dpu_cstate = to_dpu_crtc_state(crtc_state);
>> int ret;
>>
>> @@ -499,12 +515,10 @@ int dpu_rm_reserve(
>> if (!drm_atomic_crtc_needs_modeset(crtc_state))
>> return 0;
>>
>> - DRM_DEBUG_KMS("reserving hw for enc %d crtc %d\n",
>> - enc->base.id, crtc_state->crtc->base.id);
>>
>> - mutex_lock(&rm->rm_lock);
>> + DRM_DEBUG_KMS("reserving hw for crtc %d\n",
> crtc_state->crtc->base.id);
>>
>> - dpu_encoder_get_hw_resources(enc, &hw_res);
>> + mutex_lock(&rm->rm_lock);
>>
>> ret = _dpu_rm_reserve_lms(rm, dpu_cstate);
>> if (ret) {
>> @@ -518,6 +532,37 @@ int dpu_rm_reserve(
>> goto cleanup_on_fail;
>> }
>>
>> + mutex_unlock(&rm->rm_lock);
>> +
>> + return ret;
>> +
>> +cleanup_on_fail:
>> + _dpu_rm_crtc_release_reservation(rm, dpu_cstate);
>> +
>> + mutex_unlock(&rm->rm_lock);
>> +
>> + return ret;
>> +}
>> +
>> +int dpu_rm_encoder_reserve(
>> + struct dpu_rm *rm,
>> + struct drm_encoder *enc,
>> + struct drm_crtc_state *crtc_state)
>> +{
>> + struct dpu_encoder_hw_resources hw_res;
>> + struct dpu_crtc_state *dpu_cstate = to_dpu_crtc_state(crtc_state);
>> + int ret;
>> +
>> + /* Check if this is just a page-flip */
>> + if (!drm_atomic_crtc_needs_modeset(crtc_state))
>> + return 0;
>> +
>> + DRM_DEBUG_KMS("reserving hw for enc %d\n", enc->base.id);
>> +
>> + mutex_lock(&rm->rm_lock);
>> +
>> + dpu_encoder_get_hw_resources(enc, &hw_res);
>> +
>> ret = _dpu_rm_reserve_intfs(rm, dpu_cstate, &hw_res);
>> if (ret) {
>> DPU_ERROR("unable to find appropriate INTF\n");
>> @@ -529,7 +574,7 @@ int dpu_rm_reserve(
>> return ret;
>>
>> cleanup_on_fail:
>> - _dpu_rm_release_reservation(rm, dpu_cstate);
>> + _dpu_rm_encoder_release_reservation(rm, dpu_cstate);
>>
>> mutex_unlock(&rm->rm_lock);
>>
>> diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_rm.h
> b/drivers/gpu/drm/msm/disp/dpu1/dpu_rm.h
>> index 1626cef..0b1deb0 100644
>> --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_rm.h
>> +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_rm.h
>> @@ -53,27 +53,45 @@ int dpu_rm_init(struct dpu_rm *rm,
>> int dpu_rm_destroy(struct dpu_rm *rm);
>>
>> /**
>> - * dpu_rm_reserve - Given a CRTC->Encoder->Connector display chain,
> analyze
>> - * the use connections and user requirements, specified through
> related
>> + * dpu_rm_encoder_reserve - Given an Encoder, analyze the use
> connections
>> + * and user requirements, specified through related
>> * topology control properties, and reserve hardware blocks to that
>> * display chain.
>> - * HW blocks can then be accessed through dpu_rm_get_* functions.
>> - * HW Reservations should be released via dpu_rm_release_hw.
>> * @rm: DPU Resource Manager handle
>> * @drm_enc: DRM Encoder handle
>> * @crtc_state: Proposed Atomic DRM CRTC State handle
>> * @Return: 0 on Success otherwise -ERROR
>> */
>> -int dpu_rm_reserve(struct dpu_rm *rm,
>> +int dpu_rm_encoder_reserve(struct dpu_rm *rm,
>> struct drm_encoder *drm_enc,
>> struct drm_crtc_state *crtc_state);
>>
>> /**
>> - * dpu_rm_release - Given the encoder for the display chain, release
> any
>> - * HW blocks previously reserved for that use case.
>> + * dpu_rm_crtc_reserve - Given a CRTC, analyze the use connections
>> + * and user requirements, specified through related
>> + * topology control properties, and reserve hardware blocks to that
>> + * display chain.
>> * @rm: DPU Resource Manager handle
>> - * @crtc_state: atomic DRM state handle
>> + * @crtc_state: Proposed Atomic DRM CRTC State handle
>> * @Return: 0 on Success otherwise -ERROR
>> */
>> -void dpu_rm_release(struct dpu_rm *rm, struct drm_crtc_state
> *crtc_state);
>> +int dpu_rm_crtc_reserve(struct dpu_rm *rm,
>> + struct drm_crtc_state *crtc_state);
>> +
>> +/**
>> + * dpu_rm_encoder_release - Given the encoder, release any
>> + * HW blocks previously reserved for that use case.
>> + * @rm: DPU Resource Manager handle
>> + * @crtc_state: Proposed Atomic DRM CRTC State handle
>> + */
>> +void dpu_rm_encoder_release(struct dpu_rm *rm,
>> + struct drm_crtc_state *crtc_state);
>> +
>> +/**
>> + * dpu_rm_crtc_release - Given the crtc, release any
>> + * HW blocks previously reserved for that use case.
>> + * @rm: DPU Resource Manager handle
>> + * @crtc_state: Proposed Atomic DRM CRTC State handle
>> + */
>> +void dpu_rm_crtc_release(struct dpu_rm *rm, struct drm_crtc_state
> *crtc_state);
>> #endif /* __DPU_RM_H__ */
>> --
>> The Qualcomm Innovation Center, Inc. is a member of the Code Aurora
> Forum,
>> a Linux Foundation Collaborative Project
>>
>> _______________________________________________
>> Freedreno mailing list
>> Freedreno@lists.freedesktop.org
>> https://lists.freedesktop.org/mailman/listinfo/freedreno
--
Jeykumar S
_______________________________________________
Freedreno mailing list
Freedreno@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/freedreno
next prev parent reply other threads:[~2018-10-10 6:15 UTC|newest]
Thread overview: 63+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-09 4:27 [PATCH 00/25] reserve RM resources in CRTC state Jeykumar Sankaran
[not found] ` <1539059262-8326-1-git-send-email-jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-10-09 4:27 ` [PATCH 01/25] drm/msm/dpu: fix hw ctl retrieval for mixer muxing Jeykumar Sankaran
[not found] ` <1539059262-8326-2-git-send-email-jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-10-09 16:05 ` Jordan Crouse
2018-10-09 18:07 ` [Freedreno] " Sean Paul
2018-10-10 5:46 ` Jeykumar Sankaran
2018-10-10 14:29 ` [Freedreno] " Sean Paul
2018-10-10 18:35 ` Jeykumar Sankaran
[not found] ` <126041ab035da0674d0e5a6d2ce151da-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-10-11 14:51 ` Sean Paul
2018-10-09 4:27 ` [PATCH 02/25] drm/msm/dpu: avoid tracking reservations in RM Jeykumar Sankaran
[not found] ` <1539059262-8326-3-git-send-email-jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-10-09 19:57 ` Sean Paul
2018-10-09 4:27 ` [PATCH 03/25] drm/msm/dpu: remove dev from RM Jeykumar Sankaran
[not found] ` <1539059262-8326-4-git-send-email-jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-10-09 19:58 ` Sean Paul
2018-10-09 4:27 ` [PATCH 04/25] drm/msm/dpu: clean up dpu_rm_check_property_topctl declaration Jeykumar Sankaran
[not found] ` <1539059262-8326-5-git-send-email-jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-10-09 19:59 ` Sean Paul
2018-10-09 4:27 ` [PATCH 05/25] drm/msm/dpu: remove encoder from crtc mixer struct Jeykumar Sankaran
[not found] ` <1539059262-8326-6-git-send-email-jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-10-09 20:03 ` Sean Paul
2018-10-09 4:27 ` [PATCH 06/25] drm/msm/dpu: clean up redundant hw type Jeykumar Sankaran
[not found] ` <1539059262-8326-7-git-send-email-jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-10-09 20:32 ` Sean Paul
2018-10-10 0:40 ` kbuild test robot
2018-10-09 4:27 ` [PATCH 07/25] drm/msm/dpu: reserve using crtc state Jeykumar Sankaran
[not found] ` <1539059262-8326-8-git-send-email-jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-10-09 21:06 ` Sean Paul
2018-10-10 6:28 ` Jeykumar Sankaran
[not found] ` <eabacae428bee1041fc7f9bafec144f7-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-10-12 22:19 ` Jeykumar Sankaran
2018-10-09 21:53 ` kbuild test robot
2018-10-09 4:27 ` [PATCH 08/25] drm/msm/dpu: release reservation " Jeykumar Sankaran
2018-10-10 14:50 ` Sean Paul
2018-10-09 4:27 ` [PATCH 09/25] drm/msm/dpu: make RM iterator static Jeykumar Sankaran
[not found] ` <1539059262-8326-10-git-send-email-jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-10-10 14:51 ` Sean Paul
2018-10-09 4:27 ` [PATCH 10/25] drm/msm/dpu: maintain hw_mdp in kms Jeykumar Sankaran
[not found] ` <1539059262-8326-11-git-send-email-jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-10-09 16:42 ` Jordan Crouse
2018-10-10 14:54 ` Sean Paul
2018-10-09 4:27 ` [PATCH 11/25] drm/msm/dpu: remove reserve in encoder mode_set Jeykumar Sankaran
[not found] ` <1539059262-8326-12-git-send-email-jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-10-10 14:57 ` Sean Paul
2018-10-09 4:27 ` [PATCH 12/25] drm/msm/dpu: remove mode_set_complete Jeykumar Sankaran
2018-10-10 14:59 ` Sean Paul
2018-10-09 4:27 ` [PATCH 13/25] drm/msm/dpu: make RM iterator hw type specific Jeykumar Sankaran
[not found] ` <1539059262-8326-14-git-send-email-jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-10-10 15:00 ` Sean Paul
2018-10-09 4:27 ` [PATCH 14/25] drm/msm/dpu: remove enc_id tagging for hw blocks Jeykumar Sankaran
2018-10-10 15:06 ` Sean Paul
2018-10-10 18:41 ` Jeykumar Sankaran
2018-10-09 4:27 ` [PATCH 15/25] drm/msm/dpu: avoid redundant hw blk reference Jeykumar Sankaran
[not found] ` <1539059262-8326-16-git-send-email-jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-10-10 15:07 ` Sean Paul
2018-10-09 4:27 ` [PATCH 16/25] drm/msm/dpu: clean up test_only flag for RM reservation Jeykumar Sankaran
2018-10-10 15:10 ` Sean Paul
2018-10-09 4:27 ` [PATCH 17/25] drm/msm/dpu: remove RM HW block list iterator Jeykumar Sankaran
2018-10-09 4:27 ` [PATCH 18/25] drm/msm/dpu: merge RM interface reservation helpers Jeykumar Sankaran
[not found] ` <1539059262-8326-19-git-send-email-jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-10-09 16:50 ` Jordan Crouse
[not found] ` <20181009165022.GD3130-9PYrDHPZ2Orvke4nUoYGnHL1okKdlPRT@public.gmane.org>
2018-10-09 18:20 ` Jeykumar Sankaran
2018-10-09 4:27 ` [PATCH 19/25] drm/msm/dpu: remove msm_display_topology Jeykumar Sankaran
2018-10-09 4:27 ` [PATCH 20/25] drm/msm/dpu: refine layer mixer reservations Jeykumar Sankaran
2018-10-09 4:27 ` [PATCH 21/25] drm/msm/dpu: merge RM reservation helpers Jeykumar Sankaran
2018-10-09 4:27 ` [PATCH 22/25] drm/msm/dpu: make crtc and encoder specific HW reservation Jeykumar Sankaran
[not found] ` <1539059262-8326-23-git-send-email-jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-10-09 20:41 ` Sean Paul
2018-10-10 6:15 ` Jeykumar Sankaran [this message]
2018-10-10 14:33 ` [Freedreno] " Sean Paul
2018-10-09 4:27 ` [PATCH 23/25] drm/msm/dpu: remove max_width from RM Jeykumar Sankaran
2018-10-09 4:27 ` [PATCH 24/25] drm/msm/dpu: remove mutex locking for RM interfaces Jeykumar Sankaran
[not found] ` <1539059262-8326-25-git-send-email-jsanka-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-10-09 19:57 ` Sean Paul
2018-10-10 6:03 ` Jeykumar Sankaran
[not found] ` <0c506d6b3edbfec7519a2bffa9bdaedc-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2018-10-10 14:36 ` Sean Paul
2018-10-10 18:40 ` [Freedreno] " Jeykumar Sankaran
2018-10-09 4:27 ` [PATCH 25/25] drm/msm/dpu: maintain RM init check internally Jeykumar Sankaran
2018-10-09 19:29 ` [PATCH 00/25] reserve RM resources in CRTC state Sean Paul
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=c6dddbdf3382a59a4a9f0874e4725ec1@codeaurora.org \
--to=jsanka-sgv2jx0feol9jmxxk+q4oq@public.gmane.org \
--cc=dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
--cc=freedreno-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
--cc=hoegsberg-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org \
--cc=jcrouse-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org \
--cc=linux-arm-msm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=robdclark-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=sean-p7yTbzM4H96eqtR555YLDQ@public.gmane.org \
--cc=seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).