From: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
To: Andy Gross <agross@kernel.org>,
Bjorn Andersson <andersson@kernel.org>,
Konrad Dybcio <konrad.dybcio@somainline.org>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
Cc: linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>,
Loic Poulain <loic.poulain@linaro.org>
Subject: [PATCH v5 00/12] dt-bindings: display/msm: rework MDSS and DPU bindings
Date: Wed, 31 Aug 2022 21:58:18 +0300 [thread overview]
Message-ID: <20220831185830.1798676-1-dmitry.baryshkov@linaro.org> (raw)
Create separate YAML schema for MDSS devicesd$ (both for MDP5 and DPU
devices). Cleanup DPU schema files, so that they do not contain schema
for both MDSS and DPU nodes. Apply misc small fixes to the DPU schema
afterwards. Add schema for the MDSS and DPU on sm8250 platform.
Changes since v4:
- Created separate mdss-common.yaml
- Rather than squashing everything into mdss.yaml, create individual
schema files for MDSS devices.
Changes since v3:
- Changed mdss->(dpu, dsi, etc.) relationship into the tight binding
depending on the mdss compatible string.
- Added sm8250 dpu schema and added qcom,sm8250-mdss to mdss.yaml
Changes since v2:
- Added a patch to allow opp-table under the dpu* nodes.
- Removed the c&p issue which allowed the @0 nodes under the MDSS
device node.
Changes since v1:
- Renamed DPU device nodes from mdp@ to display-controller@
- Described removal of mistakenly mentioned "lut" clock
- Switched mdss.yaml to use $ref instead of fixing compatible strings
- Dropped mdp-opp-table description (renamed by Krzysztof in his
patchset)
- Reworked DPU's ports definitions. Dropped description of individual
ports, left only /ports $ref and description in dpu-common.yaml.
Dmitry Baryshkov (12):
dt-bindings: display/msm: split qcom,mdss bindings
dt-bindings: display/mdm: add gcc-bus clock to dpu-smd845
dt-bindings: display/mdm: add interconnects property to
qcom,mdss-smd845
dt-bindings: display/msm: move common DPU properties to
dpu-common.yaml
dt-bindings: display/msm: move common MDSS properties to
mdss-common.yaml
dt-bindings: display/msm: split dpu-sc7180 into DPU and MDSS parts
dt-bindings: display/msm: split dpu-sc7280 into DPU and MDSS parts
dt-bindings: display/msm: split dpu-sdm845 into DPU and MDSS parts
dt-bindings: display/msm: split dpu-msm8998 into DPU and MDSS parts
dt-bindings: display/msm: split dpu-qcm2290 into DPU and MDSS parts
dt-bindings: display/msm: add missing device nodes to mdss-* schemas
dt-bindings: display/msm: add support for the display on SM8250
.../bindings/display/msm/dpu-common.yaml | 44 +++
.../bindings/display/msm/dpu-msm8998.yaml | 229 ++++-----------
.../bindings/display/msm/dpu-qcm2290.yaml | 235 ++++------------
.../bindings/display/msm/dpu-sc7180.yaml | 257 ++++-------------
.../bindings/display/msm/dpu-sc7280.yaml | 266 +++++-------------
.../bindings/display/msm/dpu-sdm845.yaml | 234 ++++-----------
.../bindings/display/msm/dpu-sm8250.yaml | 96 +++++++
.../devicetree/bindings/display/msm/mdp5.txt | 30 +-
.../bindings/display/msm/mdss-common.yaml | 83 ++++++
.../bindings/display/msm/mdss-msm8998.yaml | 88 ++++++
.../bindings/display/msm/mdss-qcm2290.yaml | 92 ++++++
.../bindings/display/msm/mdss-sc7180.yaml | 103 +++++++
.../bindings/display/msm/mdss-sc7280.yaml | 112 ++++++++
.../bindings/display/msm/mdss-sdm845.yaml | 92 ++++++
.../bindings/display/msm/mdss-sm8250.yaml | 106 +++++++
.../devicetree/bindings/display/msm/mdss.yaml | 184 ++++++++++++
16 files changed, 1282 insertions(+), 969 deletions(-)
create mode 100644 Documentation/devicetree/bindings/display/msm/dpu-common.yaml
create mode 100644 Documentation/devicetree/bindings/display/msm/dpu-sm8250.yaml
create mode 100644 Documentation/devicetree/bindings/display/msm/mdss-common.yaml
create mode 100644 Documentation/devicetree/bindings/display/msm/mdss-msm8998.yaml
create mode 100644 Documentation/devicetree/bindings/display/msm/mdss-qcm2290.yaml
create mode 100644 Documentation/devicetree/bindings/display/msm/mdss-sc7180.yaml
create mode 100644 Documentation/devicetree/bindings/display/msm/mdss-sc7280.yaml
create mode 100644 Documentation/devicetree/bindings/display/msm/mdss-sdm845.yaml
create mode 100644 Documentation/devicetree/bindings/display/msm/mdss-sm8250.yaml
create mode 100644 Documentation/devicetree/bindings/display/msm/mdss.yaml
--
2.35.1
next reply other threads:[~2022-08-31 18:59 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-31 18:58 Dmitry Baryshkov [this message]
2022-08-31 18:58 ` [PATCH v5 01/12] dt-bindings: display/msm: split qcom,mdss bindings Dmitry Baryshkov
2022-08-31 18:58 ` [PATCH v5 02/12] dt-bindings: display/mdm: add gcc-bus clock to dpu-smd845 Dmitry Baryshkov
2022-08-31 18:58 ` [PATCH v5 03/12] dt-bindings: display/mdm: add interconnects property to qcom,mdss-smd845 Dmitry Baryshkov
2022-08-31 18:58 ` [PATCH v5 04/12] dt-bindings: display/msm: move common DPU properties to dpu-common.yaml Dmitry Baryshkov
2022-08-31 18:58 ` [PATCH v5 05/12] dt-bindings: display/msm: move common MDSS properties to mdss-common.yaml Dmitry Baryshkov
2022-08-31 18:58 ` [PATCH v5 06/12] dt-bindings: display/msm: split dpu-sc7180 into DPU and MDSS parts Dmitry Baryshkov
2022-08-31 18:58 ` [PATCH v5 07/12] dt-bindings: display/msm: split dpu-sc7280 " Dmitry Baryshkov
2022-08-31 18:58 ` [PATCH v5 08/12] dt-bindings: display/msm: split dpu-sdm845 " Dmitry Baryshkov
2022-08-31 18:58 ` [PATCH v5 09/12] dt-bindings: display/msm: split dpu-msm8998 " Dmitry Baryshkov
2022-08-31 18:58 ` [PATCH v5 10/12] dt-bindings: display/msm: split dpu-qcm2290 " Dmitry Baryshkov
2022-08-31 18:58 ` [PATCH v5 11/12] dt-bindings: display/msm: add missing device nodes to mdss-* schemas Dmitry Baryshkov
2022-08-31 18:58 ` [PATCH v5 12/12] dt-bindings: display/msm: add support for the display on SM8250 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=20220831185830.1798676-1-dmitry.baryshkov@linaro.org \
--to=dmitry.baryshkov@linaro.org \
--cc=agross@kernel.org \
--cc=andersson@kernel.org \
--cc=angelogioacchino.delregno@collabora.com \
--cc=devicetree@vger.kernel.org \
--cc=konrad.dybcio@somainline.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=loic.poulain@linaro.org \
--cc=robh+dt@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;
as well as URLs for NNTP newsgroup(s).