From: Iskren Chernev <iskren.chernev@gmail.com>
To: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>,
Bjorn Andersson <andersson@kernel.org>,
Rob Herring <robh+dt@kernel.org>
Cc: phone-devel@vger.kernel.org,
~postmarketos/upstreaming@lists.sr.ht,
linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org,
Iskren Chernev <iskren.chernev@gmail.com>
Subject: [PATCH v3 0/9] Add support for sm6115,4250 and OnePlus Nord N100
Date: Sat, 10 Sep 2022 17:32:04 +0300 [thread overview]
Message-ID: <20220910143213.477261-1-iskren.chernev@gmail.com> (raw)
Changes from v2
---------------
v2: https://lore.kernel.org/all/20220903174150.3566935-1-iskren.chernev@gmail.com/
- fix ufs bindings to follow sdm845
- drop nvmem, firmware, reserved-range patches (merged)
- add patch that fixes sm6115-dwc3 bindings (4/9)
- add patch that fixes qcom,sm6115-sdhci bindings (5/9)
- add patch that fixes qcom,sm6115-qmp-ufs-phy bindings (6/9)
- drop dynamic reserved memory regions
- drop clock-output-names
- drop frequency for timer
- fix mmc pinctrl regression in v2
- move board clock freqs in relative scope
- fix indentation to please Konrad
- reorder some DT props (reg, status, compatible)
Changes from v1
---------------
v1: https://lore.kernel.org/all/20220901072414.1923075-1-iskren.chernev@gmail.com/
- merge dtsi patches in one
- fix ufs binding (allow ice register)
- fix dt schema issues (to the best of my ability)
- add a few necessary bindings (compats)
- some comments on remaining schema issues after commit msg (patch 7 and 9)
This series adds support for sm6115 (clocks, pinctrl, usb, ufs, sdhc),
sm4250 (mostly empty shell on top of sm6115) and finally basic OnePlus Nord
N100 (codename billie2), including the above mentiond items plus simple
framebuffer.
Please note that this series depends on [1] (driver compat and bindings).
[1] https://lore.kernel.org/linux-devicetree/20220815100952.23795-1-a39.skl@gmail.com/
Iskren Chernev (9):
dt-bindings: ufs: qcom: Add sm6115 binding
dt-bindings: arm: cpus: Add kryo240 compatible
dt-bindings: arm: qcom: Add compatible for oneplus,billie2 phone
dt-bindings: usb: qcom,dwc3: Fix SM6115 clocks, irqs
dt-bindings: mmc: sdhci-msm: Add pinctrl-1 property
dt-bindings: phy: qcom,qmp-ufs: Fix SM6115 clocks, regs
arm64: dts: qcom: sm6115: Add basic soc dtsi
arm64: dts: qcom: sm4250: Add soc dtsi
arm64: dts: qcom: sm4250: Add support for oneplus-billie2
.../devicetree/bindings/arm/cpus.yaml | 1 +
.../devicetree/bindings/arm/qcom.yaml | 7 +
.../devicetree/bindings/mmc/sdhci-msm.yaml | 4 +
.../bindings/phy/qcom,qmp-ufs-phy.yaml | 3 +-
.../devicetree/bindings/ufs/qcom,ufs.yaml | 26 +
.../devicetree/bindings/usb/qcom,dwc3.yaml | 3 +-
arch/arm64/boot/dts/qcom/Makefile | 1 +
.../boot/dts/qcom/sm4250-oneplus-billie2.dts | 241 +++++
arch/arm64/boot/dts/qcom/sm4250.dtsi | 38 +
arch/arm64/boot/dts/qcom/sm6115.dtsi | 857 ++++++++++++++++++
10 files changed, 1179 insertions(+), 2 deletions(-)
create mode 100644 arch/arm64/boot/dts/qcom/sm4250-oneplus-billie2.dts
create mode 100644 arch/arm64/boot/dts/qcom/sm4250.dtsi
create mode 100644 arch/arm64/boot/dts/qcom/sm6115.dtsi
--
2.37.2
next reply other threads:[~2022-09-10 14:32 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-10 14:32 Iskren Chernev [this message]
2022-09-10 14:32 ` [PATCH v3 1/9] dt-bindings: ufs: qcom: Add sm6115 binding Iskren Chernev
2022-09-11 8:21 ` Krzysztof Kozlowski
2022-09-10 14:32 ` [PATCH v3 2/9] dt-bindings: arm: cpus: Add kryo240 compatible Iskren Chernev
2022-09-10 14:32 ` [PATCH v3 3/9] dt-bindings: arm: qcom: Add compatible for oneplus,billie2 phone Iskren Chernev
2022-09-10 14:32 ` [PATCH v3 4/9] dt-bindings: usb: qcom,dwc3: Fix SM6115 clocks, irqs Iskren Chernev
2022-09-11 13:29 ` Krzysztof Kozlowski
2022-09-10 14:32 ` [PATCH v3 5/9] dt-bindings: mmc: sdhci-msm: Add pinctrl-1 property Iskren Chernev
2022-09-11 13:30 ` Krzysztof Kozlowski
2022-09-12 17:00 ` Bhupesh Sharma
2022-09-14 14:00 ` Ulf Hansson
2022-09-10 14:32 ` [PATCH v3 6/9] dt-bindings: phy: qcom,qmp-ufs: Fix SM6115 clocks, regs Iskren Chernev
2022-09-11 13:30 ` Krzysztof Kozlowski
2022-09-10 14:32 ` [PATCH v3 7/9] arm64: dts: qcom: sm6115: Add basic soc dtsi Iskren Chernev
2022-09-11 8:40 ` Krzysztof Kozlowski
2022-09-11 9:09 ` Iskren Chernev
2022-09-11 10:07 ` Krzysztof Kozlowski
2022-09-11 10:22 ` Iskren Chernev
2022-09-11 10:26 ` Krzysztof Kozlowski
2022-09-11 12:03 ` Iskren Chernev
2022-09-13 21:38 ` Bjorn Andersson
2022-09-10 14:32 ` [PATCH v3 8/9] arm64: dts: qcom: sm4250: Add " Iskren Chernev
2022-09-10 14:32 ` [PATCH v3 9/9] arm64: dts: qcom: sm4250: Add support for oneplus-billie2 Iskren Chernev
2022-09-13 21:30 ` Bjorn Andersson
2022-09-15 14:37 ` Krzysztof Kozlowski
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=20220910143213.477261-1-iskren.chernev@gmail.com \
--to=iskren.chernev@gmail.com \
--cc=andersson@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=krzysztof.kozlowski@linaro.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=phone-devel@vger.kernel.org \
--cc=robh+dt@kernel.org \
--cc=~postmarketos/upstreaming@lists.sr.ht \
/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