From: Kuogee Hsieh <quic_khsieh@quicinc.com>
To: <dri-devel@lists.freedesktop.org>, <robdclark@gmail.com>,
<sean@poorly.run>, <swboyd@chromium.org>, <dianders@chromium.org>,
<vkoul@kernel.org>, <daniel@ffwll.ch>, <airlied@gmail.com>,
<agross@kernel.org>, <dmitry.baryshkov@linaro.org>,
<andersson@kernel.org>
Cc: <quic_abhinavk@quicinc.com>, <quic_jesszhan@quicinc.com>,
<quic_sbillaka@quicinc.com>, <marijn.suijten@somainline.org>,
<freedreno@lists.freedesktop.org>,
<linux-arm-msm@vger.kernel.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v13 00/10] add DSC 1.2 dpu supports
Date: Wed, 24 May 2023 09:33:13 -0700 [thread overview]
Message-ID: <81399377-cd0b-ba9c-e58f-e1955912b263@quicinc.com> (raw)
In-Reply-To: <1684800039-18231-1-git-send-email-quic_khsieh@quicinc.com>
Hi Dmitry/Marijn,
Are you satisfy with this patch series or any more comments will be added?
Thanks,
kuogee
On 5/22/2023 5:00 PM, Kuogee Hsieh wrote:
> This series adds the DPU side changes to support DSC 1.2 encoder. This
> was validated with both DSI DSC 1.2 panel and DP DSC 1.2 monitor.
> The DSI and DP parts will be pushed later on top of this change.
> This seriel is rebase on [1], [2] and catalog fixes from rev-4 of [3].
>
> [1]: https://patchwork.freedesktop.org/series/116851/
> [2]: https://patchwork.freedesktop.org/series/116615/
> [3]: https://patchwork.freedesktop.org/series/112332/
>
> Abhinav Kumar (2):
> drm/msm/dpu: add dsc blocks to the catalog of MSM8998 and SC8180X
> drm/msm/dpu: add DSC 1.2 hw blocks for relevant chipsets
>
> Kuogee Hsieh (8):
> drm/msm/dpu: set DSC flush bit correctly at MDP CTL flush register
> drm/msm/dpu: add DPU_PINGPONG_DSC feature bit for DPU < 7.0.0
> drm/msm/dpu: Guard PINGPONG DSC ops behind DPU_PINGPONG_DSC bit
> drm/msm/dpu: Introduce PINGPONG_NONE to disconnect DSC from PINGPONG
> drm/msm/dpu: add support for DSC encoder v1.2 engine
> drm/msm/dpu: always clear every individual pending flush mask
> drm/msm/dpu: separate DSC flush update out of interface
> drm/msm/dpu: tear down DSC data path when DSC disabled
>
> drivers/gpu/drm/msm/Makefile | 1 +
> .../drm/msm/disp/dpu1/catalog/dpu_3_0_msm8998.h | 7 +
> .../drm/msm/disp/dpu1/catalog/dpu_5_1_sc8180x.h | 11 +
> .../gpu/drm/msm/disp/dpu1/catalog/dpu_7_0_sm8350.h | 14 +
> .../gpu/drm/msm/disp/dpu1/catalog/dpu_7_2_sc7280.h | 7 +
> .../drm/msm/disp/dpu1/catalog/dpu_8_0_sc8280xp.h | 16 +
> .../gpu/drm/msm/disp/dpu1/catalog/dpu_8_1_sm8450.h | 14 +
> .../gpu/drm/msm/disp/dpu1/catalog/dpu_9_0_sm8550.h | 14 +
> drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c | 51 ++-
> drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c | 24 +-
> drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h | 35 +-
> drivers/gpu/drm/msm/disp/dpu1/dpu_hw_ctl.c | 33 +-
> drivers/gpu/drm/msm/disp/dpu1/dpu_hw_ctl.h | 11 +
> drivers/gpu/drm/msm/disp/dpu1/dpu_hw_dsc.c | 14 +-
> drivers/gpu/drm/msm/disp/dpu1/dpu_hw_dsc.h | 15 +-
> drivers/gpu/drm/msm/disp/dpu1/dpu_hw_dsc_1_2.c | 387 +++++++++++++++++++++
> drivers/gpu/drm/msm/disp/dpu1/dpu_hw_mdss.h | 3 +-
> drivers/gpu/drm/msm/disp/dpu1/dpu_hw_pingpong.c | 9 +-
> drivers/gpu/drm/msm/disp/dpu1/dpu_rm.c | 7 +-
> 19 files changed, 644 insertions(+), 29 deletions(-)
> create mode 100644 drivers/gpu/drm/msm/disp/dpu1/dpu_hw_dsc_1_2.c
>
prev parent reply other threads:[~2023-05-24 16:33 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-23 0:00 [PATCH v13 00/10] add DSC 1.2 dpu supports Kuogee Hsieh
2023-05-23 0:00 ` [PATCH v13 01/10] drm/msm/dpu: set DSC flush bit correctly at MDP CTL flush register Kuogee Hsieh
2023-05-24 22:26 ` Marijn Suijten
2023-05-23 0:00 ` [PATCH v13 02/10] drm/msm/dpu: add dsc blocks to the catalog of MSM8998 and SC8180X Kuogee Hsieh
2023-05-24 22:27 ` Marijn Suijten
2023-05-23 0:00 ` [PATCH v13 03/10] drm/msm/dpu: add DPU_PINGPONG_DSC feature bit for DPU < 7.0.0 Kuogee Hsieh
2023-05-23 0:00 ` [PATCH v13 04/10] drm/msm/dpu: Guard PINGPONG DSC ops behind DPU_PINGPONG_DSC bit Kuogee Hsieh
2023-05-23 0:00 ` [PATCH v13 05/10] drm/msm/dpu: Introduce PINGPONG_NONE to disconnect DSC from PINGPONG Kuogee Hsieh
2023-05-23 0:00 ` [PATCH v13 06/10] drm/msm/dpu: add support for DSC encoder v1.2 engine Kuogee Hsieh
2023-05-23 0:00 ` [PATCH v13 07/10] drm/msm/dpu: always clear every individual pending flush mask Kuogee Hsieh
2023-05-24 22:18 ` Marijn Suijten
2023-05-23 0:00 ` [PATCH v13 08/10] drm/msm/dpu: separate DSC flush update out of interface Kuogee Hsieh
2023-05-24 22:24 ` Marijn Suijten
2023-05-23 0:00 ` [PATCH v13 09/10] drm/msm/dpu: add DSC 1.2 hw blocks for relevant chipsets Kuogee Hsieh
2023-05-23 0:00 ` [PATCH v13 10/10] drm/msm/dpu: tear down DSC data path when DSC disabled Kuogee Hsieh
2023-05-24 22:19 ` Marijn Suijten
2023-05-24 16:33 ` Kuogee Hsieh [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=81399377-cd0b-ba9c-e58f-e1955912b263@quicinc.com \
--to=quic_khsieh@quicinc.com \
--cc=agross@kernel.org \
--cc=airlied@gmail.com \
--cc=andersson@kernel.org \
--cc=daniel@ffwll.ch \
--cc=dianders@chromium.org \
--cc=dmitry.baryshkov@linaro.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=freedreno@lists.freedesktop.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=marijn.suijten@somainline.org \
--cc=quic_abhinavk@quicinc.com \
--cc=quic_jesszhan@quicinc.com \
--cc=quic_sbillaka@quicinc.com \
--cc=robdclark@gmail.com \
--cc=sean@poorly.run \
--cc=swboyd@chromium.org \
--cc=vkoul@kernel.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