dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Abhinav Kumar <quic_abhinavk@quicinc.com>
To: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>,
	<neil.armstrong@linaro.org>
Cc: Sean Paul <sean@poorly.run>,
	Bjorn Andersson <andersson@kernel.org>,
	dri-devel@lists.freedesktop.org,
	Stephen Boyd <swboyd@chromium.org>,
	linux-arm-msm@vger.kernel.org, freedreno@lists.freedesktop.org
Subject: Re: [Freedreno] [PATCH v2 0/7] drm/msm/dpu: simplify DPU encoder init
Date: Tue, 23 May 2023 12:13:53 -0700	[thread overview]
Message-ID: <249baf98-5264-b2cb-4213-5bcd00a670c9@quicinc.com> (raw)
In-Reply-To: <b0be5965-0dc9-c33c-9cba-21bfa82c4faf@linaro.org>



On 5/23/2023 7:36 AM, Dmitry Baryshkov wrote:
> On 23/05/2023 10:31, Neil Armstrong wrote:
>> On 23/05/2023 09:20, Dmitry Baryshkov wrote:
>>> On Tue, 23 May 2023 at 04:58, Abhinav Kumar 
>>> <quic_abhinavk@quicinc.com> wrote:
>>>>
>>>>
>>>>
>>>> On 5/18/2023 7:38 PM, Dmitry Baryshkov wrote:
>>>>> Rework dpu_encoder initialization code, simplifying calling sequences
>>>>> and separating common init parts.
>>>>>
>>>>> Changes since v1:
>>>>> - Withdrawn two pathes for a later consideration
>>>>> - Changed dpu_encoder_phys_init() to return void (Abhinav)
>>>>> - Added small simplifications of dpu_encoder_phys_cmd_init() and
>>>>>     dpu_encoder_phys_wb_init()
>>>>>
>>>>
>>>> I had previously given these comments on the cover letter of v1, so
>>>> giving it again.
>>>>
>>>> Please mention that your series was made on top of
>>>> https://patchwork.freedesktop.org/series/116530/.
>>>>
>>>> Figured it out when I tried to apply it to my branch to test.
>>>>
>>>> I had tested v1, and between v1 and v2 i only see very trivial change,
>>>> so i think its okay to retain:
>>>>
>>>> Tested-by: Abhinav Kumar <quic_abhinavk@quicinc.com> # sc7280
>>>
>>> Unfortunately patchwork ignores tags sent in the cover letter thread.
>>
>> But b4 does with -t option to b4 shazam or b4 am
> 
> Yes. But b4 doesn't append Patchwork headers.
> 

If thats the case, either the author can add them to the patches 
manually like we do sometimes for R-b tags OR I will go ahead and add it 
one by one for every patch now.

Let me know what you prefer.

>>
>> Neil
>>
>>>
>>>>
>>>>> Dmitry Baryshkov (7):
>>>>>     drm/msm/dpu: merge dpu_encoder_init() and dpu_encoder_setup()
>>>>>     drm/msm/dpu: separate common function to init physical encoder
>>>>>     drm/msm/dpu: drop duplicated intf/wb indices from encoder structs
>>>>>     drm/msm/dpu: inline dpu_encoder_get_wb()
>>>>>     drm/msm/dpu: call dpu_rm_get_intf() from dpu_encoder_get_intf()
>>>>>     drm/msm/dpu: drop temp variable from dpu_encoder_phys_cmd_init()
>>>>>     drm/msm/dpu: simplify dpu_encoder_phys_wb_init()
>>>>>
>>>>>    drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c   | 178 
>>>>> ++++++++----------
>>>>>    drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.h   |  14 +-
>>>>>    .../gpu/drm/msm/disp/dpu1/dpu_encoder_phys.h  |  15 +-
>>>>>    .../drm/msm/disp/dpu1/dpu_encoder_phys_cmd.c  |  35 ++--
>>>>>    .../drm/msm/disp/dpu1/dpu_encoder_phys_vid.c  |  19 +-
>>>>>    .../drm/msm/disp/dpu1/dpu_encoder_phys_wb.c   |  35 +---
>>>>>    drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c       |  87 ++++-----
>>>>>    7 files changed, 140 insertions(+), 243 deletions(-)
>>>>>
>>>
>>>
>>>
>>
> 

  reply	other threads:[~2023-05-23 19:14 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-19  2:38 [PATCH v2 0/7] drm/msm/dpu: simplify DPU encoder init Dmitry Baryshkov
2023-05-19  2:38 ` [PATCH v2 1/7] drm/msm/dpu: merge dpu_encoder_init() and dpu_encoder_setup() Dmitry Baryshkov
2023-05-19  2:38 ` [PATCH v2 2/7] drm/msm/dpu: separate common function to init physical encoder Dmitry Baryshkov
2023-05-22 22:34   ` Abhinav Kumar
2023-05-19  2:38 ` [PATCH v2 3/7] drm/msm/dpu: drop duplicated intf/wb indices from encoder structs Dmitry Baryshkov
2023-05-19  2:38 ` [PATCH v2 4/7] drm/msm/dpu: inline dpu_encoder_get_wb() Dmitry Baryshkov
2023-05-19  2:38 ` [PATCH v2 5/7] drm/msm/dpu: call dpu_rm_get_intf() from dpu_encoder_get_intf() Dmitry Baryshkov
2023-05-19  2:38 ` [PATCH v2 6/7] drm/msm/dpu: drop temp variable from dpu_encoder_phys_cmd_init() Dmitry Baryshkov
2023-05-22 22:38   ` Abhinav Kumar
2023-05-19  2:38 ` [PATCH v2 7/7] drm/msm/dpu: simplify dpu_encoder_phys_wb_init() Dmitry Baryshkov
2023-05-23  1:56   ` Abhinav Kumar
2023-05-23  1:58 ` [Freedreno] [PATCH v2 0/7] drm/msm/dpu: simplify DPU encoder init Abhinav Kumar
2023-05-23  7:20   ` Dmitry Baryshkov
2023-05-23  7:31     ` Neil Armstrong
2023-05-23 14:36       ` Dmitry Baryshkov
2023-05-23 19:13         ` Abhinav Kumar [this message]
2023-05-23 19:23           ` Dmitry Baryshkov
2023-05-23 19:30             ` Abhinav Kumar
2023-05-30 23:51               ` Abhinav Kumar

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=249baf98-5264-b2cb-4213-5bcd00a670c9@quicinc.com \
    --to=quic_abhinavk@quicinc.com \
    --cc=andersson@kernel.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=neil.armstrong@linaro.org \
    --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