Linux ARM-MSM sub-architecture
 help / color / mirror / Atom feed
From: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
To: Abhinav Kumar <quic_abhinavk@quicinc.com>,
	Rob Clark <robdclark@gmail.com>, Sean Paul <sean@poorly.run>
Cc: Stephen Boyd <swboyd@chromium.org>,
	David Airlie <airlied@linux.ie>, Daniel Vetter <daniel@ffwll.ch>,
	Bjorn Andersson <bjorn.andersson@linaro.org>,
	linux-arm-msm@vger.kernel.org, dri-devel@lists.freedesktop.org,
	freedreno@lists.freedesktop.org
Subject: Re: [PATCH v3 0/7] drm/msm: clean up the hw catalog init
Date: Fri, 3 Jun 2022 00:30:27 +0300	[thread overview]
Message-ID: <fb8f2f80-e016-80d4-cf30-0b1df5bde261@linaro.org> (raw)
In-Reply-To: <cb7e2c75-286a-2b74-7e21-bee90a83a91d@quicinc.com>

On 02/06/2022 23:24, Abhinav Kumar wrote:
> 
> 
> On 6/2/2022 1:22 PM, Dmitry Baryshkov wrote:
>> Replace superfluous cfg_init functions, which just assign a static
>> config to the struct dpu_mdss_cfg, with static instances of struct
>> dpu_mdss_cfg.
>>
>> Changes since v2:
>>   - Add DPU_MIXER_COMBINED_ALPHA to sc7180's mixer features mask (noted
>>     by Abhinav).
>>
>> Changes since v1:
>>   - Turn catalog->perf and catalog->dma_cfg to be pointers, otherwise
>>     clang complains that they are not constant.
>>
> 
> I see you have dropped the R-bs from all the changes in V2.
> Can you please add them back?

Yes, I missed that in v3. Should be fixed in v4.

> 
>> Dmitry Baryshkov (7):
>>    drm/msm/dpu: use feature bit for LM combined alpha check
>>    drm/msm/dpu: move VBIF_XINL_QOS_LVL_REMAP size to hw_catalog
>>    drm/msm/dpu: remove hwversion field from data structures
>>    drm/msm/dpu: change catalog->perf to be a const pointer
>>    drm/msm/dpu: change catalog->dma_cfg to be a const pointer
>>    drm/msm/dpu: constify struct dpu_mdss_cfg
>>    drm/msm/dpu: make dpu hardware catalog static const
>>
>>   drivers/gpu/drm/msm/disp/dpu1/dpu_core_perf.c |  24 +-
>>   drivers/gpu/drm/msm/disp/dpu1/dpu_core_perf.h |   4 +-
>>   drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c   |   4 +-
>>   .../drm/msm/disp/dpu1/dpu_encoder_phys_wb.c   |  12 +-
>>   .../gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c    | 502 ++++++++----------
>>   .../gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h    |  20 +-
>>   drivers/gpu/drm/msm/disp/dpu1/dpu_hw_ctl.c    |   1 -
>>   drivers/gpu/drm/msm/disp/dpu1/dpu_hw_dsc.c    |   5 +-
>>   drivers/gpu/drm/msm/disp/dpu1/dpu_hw_dsc.h    |   2 +-
>>   drivers/gpu/drm/msm/disp/dpu1/dpu_hw_dspp.c   |   1 -
>>   .../gpu/drm/msm/disp/dpu1/dpu_hw_interrupts.c |   5 +-
>>   .../gpu/drm/msm/disp/dpu1/dpu_hw_interrupts.h |   2 +-
>>   drivers/gpu/drm/msm/disp/dpu1/dpu_hw_intf.c   |   1 -
>>   drivers/gpu/drm/msm/disp/dpu1/dpu_hw_lm.c     |   7 +-
>>   .../gpu/drm/msm/disp/dpu1/dpu_hw_merge3d.c    |   1 -
>>   .../gpu/drm/msm/disp/dpu1/dpu_hw_pingpong.c   |   1 -
>>   drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c   |   5 +-
>>   drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.h   |   4 +-
>>   drivers/gpu/drm/msm/disp/dpu1/dpu_hw_top.c    |   1 -
>>   drivers/gpu/drm/msm/disp/dpu1/dpu_hw_util.h   |   2 -
>>   drivers/gpu/drm/msm/disp/dpu1/dpu_hw_vbif.c   |   5 +-
>>   drivers/gpu/drm/msm/disp/dpu1/dpu_hw_wb.c     |   1 -
>>   drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c       |   6 +-
>>   drivers/gpu/drm/msm/disp/dpu1/dpu_kms.h       |   2 +-
>>   drivers/gpu/drm/msm/disp/dpu1/dpu_plane.c     |  20 +-
>>   drivers/gpu/drm/msm/disp/dpu1/dpu_rm.c        |   2 +-
>>   drivers/gpu/drm/msm/disp/dpu1/dpu_rm.h        |   2 +-
>>   27 files changed, 283 insertions(+), 359 deletions(-)
>>


-- 
With best wishes
Dmitry

      reply	other threads:[~2022-06-02 21:30 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-02 20:22 [PATCH v3 0/7] drm/msm: clean up the hw catalog init Dmitry Baryshkov
2022-06-02 20:22 ` [PATCH v3 1/7] drm/msm/dpu: use feature bit for LM combined alpha check Dmitry Baryshkov
2022-06-02 20:22 ` [PATCH v3 2/7] drm/msm/dpu: move VBIF_XINL_QOS_LVL_REMAP size to hw_catalog Dmitry Baryshkov
2022-06-02 20:22 ` [PATCH v3 3/7] drm/msm/dpu: remove hwversion field from data structures Dmitry Baryshkov
2022-06-02 20:22 ` [PATCH v3 4/7] drm/msm/dpu: change catalog->perf to be a const pointer Dmitry Baryshkov
2022-06-02 20:22 ` [PATCH v3 5/7] drm/msm/dpu: change catalog->dma_cfg " Dmitry Baryshkov
2022-06-02 20:22 ` [PATCH v3 6/7] drm/msm/dpu: constify struct dpu_mdss_cfg Dmitry Baryshkov
2022-06-02 20:22 ` [PATCH v3 7/7] drm/msm/dpu: make dpu hardware catalog static const Dmitry Baryshkov
2022-06-02 20:24 ` [PATCH v3 0/7] drm/msm: clean up the hw catalog init Abhinav Kumar
2022-06-02 21:30   ` Dmitry Baryshkov [this message]

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=fb8f2f80-e016-80d4-cf30-0b1df5bde261@linaro.org \
    --to=dmitry.baryshkov@linaro.org \
    --cc=airlied@linux.ie \
    --cc=bjorn.andersson@linaro.org \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=freedreno@lists.freedesktop.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=quic_abhinavk@quicinc.com \
    --cc=robdclark@gmail.com \
    --cc=sean@poorly.run \
    --cc=swboyd@chromium.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