Message ID | 20230310005704.1332368-32-dmitry.baryshkov@linaro.org |
---|---|
State | Accepted |
Commit | b7bb8967aa1249d682b1b99fae2891f3dfea53e6 |
Headers | show |
Series | drm/msm/dpu: wide planes support | expand |
On 3/9/2023 4:57 PM, Dmitry Baryshkov wrote: > From: Abhinav Kumar <quic_abhinavk@quicinc.com> > > Lets print the multirect_index as well in _dpu_crtc_blend_setup_pipe() > as it will give the complete information of the sw_pipe as well. > > Signed-off-by: Abhinav Kumar <quic_abhinavk@quicinc.com> This needs your signed-off too > --- > drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c > index b748c4f17c90..96ffea069120 100644 > --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c > +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c > @@ -425,12 +425,13 @@ static void _dpu_crtc_blend_setup_pipe(struct drm_crtc *crtc, > format->base.pixel_format, > modifier); > > - DRM_DEBUG_ATOMIC("crtc %d stage:%d - plane %d sspp %d fb %d\n", > + DRM_DEBUG_ATOMIC("crtc %d stage:%d - plane %d sspp %d fb %d multirect_idx %d\n", > crtc->base.id, > stage, > plane->base.id, > sspp_idx - SSPP_NONE, > - state->fb ? state->fb->base.id : -1); > + state->fb ? state->fb->base.id : -1, > + pipe->multirect_index); > > stage_cfg->stage[stage][stage_idx] = sspp_idx; > stage_cfg->multirect_index[stage][stage_idx] = pipe->multirect_index;
diff --git a/drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c b/drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c index b748c4f17c90..96ffea069120 100644 --- a/drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c +++ b/drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c @@ -425,12 +425,13 @@ static void _dpu_crtc_blend_setup_pipe(struct drm_crtc *crtc, format->base.pixel_format, modifier); - DRM_DEBUG_ATOMIC("crtc %d stage:%d - plane %d sspp %d fb %d\n", + DRM_DEBUG_ATOMIC("crtc %d stage:%d - plane %d sspp %d fb %d multirect_idx %d\n", crtc->base.id, stage, plane->base.id, sspp_idx - SSPP_NONE, - state->fb ? state->fb->base.id : -1); + state->fb ? state->fb->base.id : -1, + pipe->multirect_index); stage_cfg->stage[stage][stage_idx] = sspp_idx; stage_cfg->multirect_index[stage][stage_idx] = pipe->multirect_index;