From: fange zhang <quic_fangez@quicinc.com>
To: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Cc: Rob Clark <robdclark@gmail.com>,
Abhinav Kumar <quic_abhinavk@quicinc.com>,
Sean Paul <sean@poorly.run>,
Marijn Suijten <marijn.suijten@somainline.org>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Maxime Ripard <mripard@kernel.org>,
Thomas Zimmermann <tzimmermann@suse.de>,
David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
Rob Herring <robh@kernel.org>,
"Krzysztof Kozlowski" <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
"Krishna Manikandan" <quic_mkrishn@quicinc.com>,
Bjorn Andersson <andersson@kernel.org>,
Konrad Dybcio <konradybcio@kernel.org>,
"Catalin Marinas" <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>, Li Liu <quic_lliu6@quicinc.com>,
Xiangxu Yin <quic_xiangxuy@quicinc.com>,
<linux-arm-msm@vger.kernel.org>,
<dri-devel@lists.freedesktop.org>,
<freedreno@lists.freedesktop.org>, <devicetree@vger.kernel.org>,
<linux-kernel@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH v3 5/9] drm/msm/dpu: Add SM6150 support
Date: Mon, 25 Nov 2024 09:44:12 +0800 [thread overview]
Message-ID: <10413094-500f-4044-b4e3-8ce83fee3dbd@quicinc.com> (raw)
In-Reply-To: <bhylewwvztm7gsmkjwo6asceuph2jlqgvy2lhocdvg6r7y4i6w@duvbnsko3xg2>
On 2024/11/22 18:07, Dmitry Baryshkov wrote:
> On Fri, Nov 22, 2024 at 05:56:48PM +0800, Fange Zhang wrote:
>> From: Li Liu <quic_lliu6@quicinc.com>
>>
>> Add definitions for the display hardware used on the Qualcomm SM6150
>> platform.
>>
>> Signed-off-by: Li Liu <quic_lliu6@quicinc.com>
>> Signed-off-by: Fange Zhang <quic_fangez@quicinc.com>
>> ---
>> .../gpu/drm/msm/disp/dpu1/catalog/dpu_5_3_sm6150.h | 263 +++++++++++++++++++++
>> drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c | 1 +
>> drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.h | 1 +
>> drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c | 1 +
>> 4 files changed, 266 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/msm/disp/dpu1/catalog/dpu_5_3_sm6150.h b/drivers/gpu/drm/msm/disp/dpu1/catalog/dpu_5_3_sm6150.h
>> new file mode 100644
>> index 0000000000000000000000000000000000000000..e8b7f694b885d69a9bbfaa85b0faf0c7af677a75
>> --- /dev/null
>> +++ b/drivers/gpu/drm/msm/disp/dpu1/catalog/dpu_5_3_sm6150.h
>> @@ -0,0 +1,263 @@
>> +/* SPDX-License-Identifier: GPL-2.0-only */
>> +/*
>> + * Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved.
>> + */
>> +
>> +#ifndef _DPU_5_3_SM6150_H
>> +#define _DPU_5_3_SM6150_H
>> +
>> + }, {
>> + .name = "intf_2", .id = INTF_2,
>> + .base = 0x6b000, .len = 0x2c0,
>> + .features = INTF_SC7180_MASK,
>> + .type = INTF_NONE,
>> + .controller_id = 0,
>> + .prog_fetch_lines_worst_case = 24,
>> + .intr_underrun = DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR, 28),
>> + .intr_vsync = DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR, 29),
>
> Please drop. No need to declare missing blocks.
got it, will remove this block in the next patch
>
> Other than that:
>
> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
>
>
>> + }, {
>> + .name = "intf_3", .id = INTF_3,
>> + .base = 0x6b800, .len = 0x280,
>> + .features = INTF_SC7180_MASK,
>> + .type = INTF_DP,
>> + .controller_id = MSM_DP_CONTROLLER_1,
>> + .prog_fetch_lines_worst_case = 24,
>> + .intr_underrun = DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR, 30),
>> + .intr_vsync = DPU_IRQ_IDX(MDP_SSPP_TOP0_INTR, 31),
>> + },
>> +};
>> +
>
next prev parent reply other threads:[~2024-11-25 1:44 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-22 9:56 [PATCH v3 0/9] Add display support for QCS615 platform Fange Zhang
2024-11-22 9:56 ` [PATCH v3 1/9] dt-bindings: display/msm: Add SM6150 DSI phy Fange Zhang
2024-11-23 16:27 ` Krzysztof Kozlowski
2024-11-22 9:56 ` [PATCH v3 2/9] dt-bindings: display/msm: dsi-controller-main: Document SM6150 Fange Zhang
2024-11-23 16:28 ` Krzysztof Kozlowski
2024-11-25 3:13 ` fange zhang
2024-11-22 9:56 ` [PATCH v3 3/9] dt-bindings: display/msm: Add SM6150 MDSS & DPU Fange Zhang
2024-11-23 16:15 ` Krzysztof Kozlowski
2024-11-22 9:56 ` [PATCH v3 4/9] drm/msm: mdss: Add SM6150 support Fange Zhang
2024-11-22 10:03 ` Dmitry Baryshkov
2024-11-22 9:56 ` [PATCH v3 5/9] drm/msm/dpu: " Fange Zhang
2024-11-22 10:07 ` Dmitry Baryshkov
2024-11-25 1:44 ` fange zhang [this message]
2024-12-06 20:17 ` Abhinav Kumar
2024-12-09 1:44 ` fange zhang
2024-11-22 9:56 ` [PATCH v3 6/9] drm/msm/dsi: Add dsi phy support for SM6150 Fange Zhang
2024-11-22 10:08 ` Dmitry Baryshkov
2024-11-22 9:56 ` [PATCH v3 7/9] drm/msm/dsi: Add " Fange Zhang
2024-11-22 10:10 ` Dmitry Baryshkov
2024-11-25 2:31 ` fange zhang
2024-11-25 22:11 ` Dmitry Baryshkov
2024-11-26 1:41 ` fange zhang
2024-11-22 9:56 ` [PATCH v3 8/9] arm64: dts: qcom: Add display support for QCS615 Fange Zhang
2024-11-22 10:27 ` Dmitry Baryshkov
2024-11-22 9:56 ` [PATCH v3 9/9] arm64: dts: qcom: Add display support for QCS615 RIDE board Fange Zhang
2024-11-22 10:22 ` Dmitry Baryshkov
2024-11-25 7:38 ` fange zhang
2024-11-25 22:08 ` Dmitry Baryshkov
2024-11-29 4:55 ` fange zhang
2024-11-23 16:14 ` [PATCH v3 0/9] Add display support for QCS615 platform Krzysztof Kozlowski
2024-11-23 16:25 ` Dmitry Baryshkov
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=10413094-500f-4044-b4e3-8ce83fee3dbd@quicinc.com \
--to=quic_fangez@quicinc.com \
--cc=airlied@gmail.com \
--cc=andersson@kernel.org \
--cc=catalin.marinas@arm.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dmitry.baryshkov@linaro.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=freedreno@lists.freedesktop.org \
--cc=konradybcio@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=marijn.suijten@somainline.org \
--cc=mripard@kernel.org \
--cc=quic_abhinavk@quicinc.com \
--cc=quic_lliu6@quicinc.com \
--cc=quic_mkrishn@quicinc.com \
--cc=quic_xiangxuy@quicinc.com \
--cc=robdclark@gmail.com \
--cc=robh@kernel.org \
--cc=sean@poorly.run \
--cc=simona@ffwll.ch \
--cc=tzimmermann@suse.de \
--cc=will@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