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 7/9] drm/msm/dsi: Add support for SM6150
Date: Mon, 25 Nov 2024 10:31:40 +0800 [thread overview]
Message-ID: <bfc87132-a63e-4f3f-99b7-1a1bd7eb60ce@quicinc.com> (raw)
In-Reply-To: <mcvhfkh3ycrx2ganumsxlc7lx53ed55yk4syh5qev3jqqgkeqj@h5vnfpgjwtj5>
On 2024/11/22 18:10, Dmitry Baryshkov wrote:
> On Fri, Nov 22, 2024 at 05:56:50PM +0800, Fange Zhang wrote:
>> From: Li Liu <quic_lliu6@quicinc.com>
>>
>> Add support for DSI 2.3.1 (block used on SM6150).
>>
>> Signed-off-by: Li Liu <quic_lliu6@quicinc.com>
>> Signed-off-by: Fange Zhang <quic_fangez@quicinc.com>
>> ---
>> drivers/gpu/drm/msm/dsi/dsi_cfg.c | 4 +++-
>> drivers/gpu/drm/msm/dsi/dsi_cfg.h | 1 +
>> 2 files changed, 4 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/msm/dsi/dsi_cfg.c b/drivers/gpu/drm/msm/dsi/dsi_cfg.c
>> index 10ba7d153d1cfc9015f527c911c4658558f6e29e..fe02724bddf69c2e8d6816589f4ea410fa666e5b 100644
>> --- a/drivers/gpu/drm/msm/dsi/dsi_cfg.c
>> +++ b/drivers/gpu/drm/msm/dsi/dsi_cfg.c
>> @@ -171,7 +171,7 @@ static const struct msm_dsi_config sdm845_dsi_cfg = {
>> .num_bus_clks = ARRAY_SIZE(dsi_v2_4_clk_names),
>> .io_start = {
>> { 0xae94000, 0xae96000 }, /* SDM845 / SDM670 */
>> - { 0x5e94000 }, /* QCM2290 / SM6115 / SM6125 / SM6375 */
>> + { 0x5e94000 }, /* QCM2290 / SM6115 / SM6125 / SM6150 / SM6375 */
>
> Not true
Should I remove it or add it behind the SDM670?
>
>> },
>> };
>>
>> @@ -286,6 +286,8 @@ static const struct msm_dsi_cfg_handler dsi_cfg_handlers[] = {
>> &sdm845_dsi_cfg, &msm_dsi_6g_v2_host_ops},
>> {MSM_DSI_VER_MAJOR_6G, MSM_DSI_6G_VER_MINOR_V2_3_0,
>> &sdm845_dsi_cfg, &msm_dsi_6g_v2_host_ops},
>> + {MSM_DSI_VER_MAJOR_6G, MSM_DSI_6G_VER_MINOR_V2_3_1,
>> + &sdm845_dsi_cfg, &msm_dsi_6g_v2_host_ops},
>> {MSM_DSI_VER_MAJOR_6G, MSM_DSI_6G_VER_MINOR_V2_4_0,
>> &sdm845_dsi_cfg, &msm_dsi_6g_v2_host_ops},
>> {MSM_DSI_VER_MAJOR_6G, MSM_DSI_6G_VER_MINOR_V2_4_1,
>> diff --git a/drivers/gpu/drm/msm/dsi/dsi_cfg.h b/drivers/gpu/drm/msm/dsi/dsi_cfg.h
>> index 4c9b4b37681b066dbbc34876c38d99deee24fc82..120cb65164c1ba1deb9acb513e5f073bd560c496 100644
>> --- a/drivers/gpu/drm/msm/dsi/dsi_cfg.h
>> +++ b/drivers/gpu/drm/msm/dsi/dsi_cfg.h
>> @@ -23,6 +23,7 @@
>> #define MSM_DSI_6G_VER_MINOR_V2_2_0 0x20000000
>> #define MSM_DSI_6G_VER_MINOR_V2_2_1 0x20020001
>> #define MSM_DSI_6G_VER_MINOR_V2_3_0 0x20030000
>> +#define MSM_DSI_6G_VER_MINOR_V2_3_1 0x20030001
>> #define MSM_DSI_6G_VER_MINOR_V2_4_0 0x20040000
>> #define MSM_DSI_6G_VER_MINOR_V2_4_1 0x20040001
>> #define MSM_DSI_6G_VER_MINOR_V2_5_0 0x20050000
>>
>> --
>> 2.34.1
>>
>
next prev parent reply other threads:[~2024-11-25 2:32 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
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 [this message]
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=bfc87132-a63e-4f3f-99b7-1a1bd7eb60ce@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