From: Yongxing Mou <quic_yongmou@quicinc.com>
To: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Cc: Rob Clark <robin.clark@oss.qualcomm.com>,
Dmitry Baryshkov <lumag@kernel.org>,
Abhinav Kumar <abhinav.kumar@linux.dev>,
Jessica Zhang <jessica.zhang@oss.qualcomm.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>,
"Neil Armstrong" <neil.armstrong@linaro.org>,
Kuogee Hsieh <quic_khsieh@quicinc.com>,
Bjorn Andersson <andersson@kernel.org>,
"Konrad Dybcio" <konradybcio@kernel.org>,
<linux-arm-msm@vger.kernel.org>,
<dri-devel@lists.freedesktop.org>,
<freedreno@lists.freedesktop.org>, <devicetree@vger.kernel.org>,
<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v5 3/5] dt-bindings: display/msm: Document MDSS on QCS8300
Date: Mon, 4 Aug 2025 12:31:31 +0800 [thread overview]
Message-ID: <477bebcc-2d1a-4183-8e3d-d792e876c63a@quicinc.com> (raw)
In-Reply-To: <deefg7w3ot6cd3woexfwagetmkg4nvu37f66h4ulbdqegdgi3u@plj6puxcsil4>
On 2025/8/2 17:56, Dmitry Baryshkov wrote:
> On Wed, Jul 30, 2025 at 05:42:28PM +0800, Yongxing Mou wrote:
>> Document the MDSS hardware found on the Qualcomm QCS8300 platform.
>>
>> Signed-off-by: Yongxing Mou <quic_yongmou@quicinc.com>
>> ---
>> .../bindings/display/msm/qcom,qcs8300-mdss.yaml | 284 +++++++++++++++++++++
>> 1 file changed, 284 insertions(+)
>>
>> diff --git a/Documentation/devicetree/bindings/display/msm/qcom,qcs8300-mdss.yaml b/Documentation/devicetree/bindings/display/msm/qcom,qcs8300-mdss.yaml
>> new file mode 100644
>> index 0000000000000000000000000000000000000000..ae4bc16395326bffd6c9eff92778d9f207209526
>> --- /dev/null
>> +++ b/Documentation/devicetree/bindings/display/msm/qcom,qcs8300-mdss.yaml
>> @@ -0,0 +1,284 @@
>> +# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
>> +%YAML 1.2
>> +---
>> +$id: http://devicetree.org/schemas/display/msm/qcom,qcs8300-mdss.yaml#
>> +$schema: http://devicetree.org/meta-schemas/core.yaml#
>> +
>> +title: Qualcomm Technologies, Inc. QCS8300 Display MDSS
>> +
>> +maintainers:
>> + - Yongxing Mou <quic_yongmou@quicinc.com>
>> +
>> +description:
>> + QCS8300 MSM Mobile Display Subsystem(MDSS), which encapsulates sub-blocks like
>> + DPU display controller, DP interfaces and EDP etc.
>> +
>> +$ref: /schemas/display/msm/mdss-common.yaml#
>> +
>> +properties:
>> + compatible:
>> + const: qcom,qcs8300-mdss
>> +
>> + clocks:
>> + items:
>> + - description: Display AHB
>> + - description: Display hf AXI
>> + - description: Display core
>> +
>> + iommus:
>> + maxItems: 1
>> +
>> + interconnects:
>> + maxItems: 3
>> +
>> + interconnect-names:
>> + maxItems: 3
>> +
>> +patternProperties:
>> + "^display-controller@[0-9a-f]+$":
>> + type: object
>> + additionalProperties: true
>> +
>> + properties:
>> + compatible:
>> + items:
>> + - const: qcom,qcs8300-dpu
>> + - const: qcom,sa8775p-dpu
>
> Use contains: instead of listing both of them
>
Got it, thanks~ here we want to fallback qcs8300 to sa8775p.
Should we update it to :
+ contains:
+ enum:
+ - qcom,qcs8300-dpu
+ - qcom,sa8775p-dpu
above method can be validated using dt_binding_check.
>> +
>> + "^displayport-controller@[0-9a-f]+$":
>> + type: object
>> + additionalProperties: true
>> +
>> + properties:
>> + compatible:
>> + items:
>> + - const: qcom,qcs8300-dp
>> +
>> + "^phy@[0-9a-f]+$":
>> + type: object
>> + additionalProperties: true
>> + properties:
>> + compatible:
>> + items:
>> + - const: qcom,qcs8300-edp-phy
>> + - const: qcom,sa8775p-edp-phy
>
> Use contains: instead of listing both of them
>
Same as above
>> +
>> +required:
>> + - compatible
>> +
>> +unevaluatedProperties: false
>> +
>
next prev parent reply other threads:[~2025-08-04 4:31 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-30 9:42 [PATCH v5 0/5] Display enablement changes for Qualcomm QCS8300 platform Yongxing Mou
2025-07-30 9:42 ` [PATCH v5 1/5] dt-bindings: display/msm: Document the DPU for QCS8300 Yongxing Mou
2025-07-30 9:42 ` [PATCH v5 2/5] dt-bindings: display/msm: dp-controller: document QCS8300 compatible Yongxing Mou
2025-07-30 18:04 ` Dmitry Baryshkov
2025-08-01 2:45 ` Yongxing Mou
2025-07-30 9:42 ` [PATCH v5 3/5] dt-bindings: display/msm: Document MDSS on QCS8300 Yongxing Mou
2025-07-30 20:31 ` Rob Herring (Arm)
2025-08-04 4:00 ` Yongxing Mou
2025-08-04 4:49 ` Dmitry Baryshkov
2025-08-04 6:10 ` Yongxing Mou
2025-08-02 9:56 ` Dmitry Baryshkov
2025-08-04 4:31 ` Yongxing Mou [this message]
2025-08-04 4:52 ` Dmitry Baryshkov
2025-08-04 6:11 ` Yongxing Mou
2025-07-30 9:42 ` [PATCH v5 4/5] drm/msm: mdss: Add QCS8300 support Yongxing Mou
2025-07-30 9:42 ` [PATCH v5 5/5] soc: qcom: ubwc: Add QCS8300 UBWC cfg Yongxing Mou
2025-07-30 10:16 ` Konrad Dybcio
2025-08-01 2:50 ` Yongxing Mou
2025-11-14 14:26 ` [PATCH v5 0/5] Display enablement changes for Qualcomm QCS8300 platform 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=477bebcc-2d1a-4183-8e3d-d792e876c63a@quicinc.com \
--to=quic_yongmou@quicinc.com \
--cc=abhinav.kumar@linux.dev \
--cc=airlied@gmail.com \
--cc=andersson@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dmitry.baryshkov@oss.qualcomm.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=freedreno@lists.freedesktop.org \
--cc=jessica.zhang@oss.qualcomm.com \
--cc=konradybcio@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lumag@kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=marijn.suijten@somainline.org \
--cc=mripard@kernel.org \
--cc=neil.armstrong@linaro.org \
--cc=quic_khsieh@quicinc.com \
--cc=robh@kernel.org \
--cc=robin.clark@oss.qualcomm.com \
--cc=sean@poorly.run \
--cc=simona@ffwll.ch \
--cc=tzimmermann@suse.de \
/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
all inboxes | Powered by JetHome®