From: "Rob Herring (Arm)" <robh@kernel.org>
To: Bjorn Andersson <andersson@kernel.org>
Cc: linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org,
Michael Turquette <mturquette@baylibre.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
linux-usb@vger.kernel.org,
Bjorn Andersson <quic_bjorande@quicinc.com>,
Konrad Dybcio <konrad.dybcio@linaro.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
linux-phy@lists.infradead.org, devicetree@vger.kernel.org,
linux-arm-msm@vger.kernel.org, Vinod Koul <vkoul@kernel.org>,
Kishon Vijay Abraham I <kishon@kernel.org>,
Wesley Cheng <quic_wcheng@quicinc.com>,
Conor Dooley <conor+dt@kernel.org>,
Stephen Boyd <sboyd@kernel.org>
Subject: Re: [PATCH 00/10] arm64: dts: qcom: sc8180x: Enable the USB multiport controller
Date: Tue, 28 May 2024 12:41:38 -0500 [thread overview]
Message-ID: <171691793133.1180499.940663320144175999.robh@kernel.org> (raw)
In-Reply-To: <20240525-sc8180x-usb-mp-v1-0-60a904392438@quicinc.com>
On Sat, 25 May 2024 11:03:53 -0700, Bjorn Andersson wrote:
> The USB multiport controller found in SC8180X is used to driver the
> camera in the Lenovo Flex 5G, and a couple of additional USB ports on
> the Primus AUX board.
>
> Signed-off-by: Bjorn Andersson <quic_bjorande@quicinc.com>
> ---
> Bjorn Andersson (10):
> dt-bindings: phy: qcom,sc8280xp-qmp-usb3-uni: Add sc8180x USB3 compatible
> phy: qcom-qmp-usb: Add sc8180x USB UNIPHY
> dt-bindings: clock: qcom: Add missing USB MP resets
> clk: qcom: gcc-sc8180x: Add missing USB MP resets
> dt-bindings: usb: qcom,dwc3: Add SC8180X compatibles
> arm64: dts: qcom: sc8180x-pmics: Add second PMC8180 GPIO
> arm64: dts: qcom: sc8180x: Align USB nodes with binding
> arm64: dts: qcom: sc8180x: Add USB MP controller and phys
> arm64: dts: qcom: sc8180x-primus: Enable the two MP USB ports
> arm64: dts: qcom: sc8180x-lenovo-flex-5g: Enable USB multiport controller
>
> .../phy/qcom,sc8280xp-qmp-usb3-uni-phy.yaml | 3 +
> .../devicetree/bindings/usb/qcom,dwc3.yaml | 29 ++++
> .../arm64/boot/dts/qcom/sc8180x-lenovo-flex-5g.dts | 32 ++++
> arch/arm64/boot/dts/qcom/sc8180x-pmics.dtsi | 16 +-
> arch/arm64/boot/dts/qcom/sc8180x-primus.dts | 60 +++++++
> arch/arm64/boot/dts/qcom/sc8180x.dtsi | 175 +++++++++++++++++++--
> drivers/clk/qcom/gcc-sc8180x.c | 4 +
> drivers/phy/qualcomm/phy-qcom-qmp-usb.c | 3 +
> include/dt-bindings/clock/qcom,gcc-sc8180x.h | 4 +
> 9 files changed, 312 insertions(+), 14 deletions(-)
> ---
> base-commit: 3689b0ef08b70e4e03b82ebd37730a03a672853a
> change-id: 20240524-sc8180x-usb-mp-4eb278df7ef1
>
> Best regards,
> --
> Bjorn Andersson <quic_bjorande@quicinc.com>
>
>
>
My bot found new DTB warnings on the .dts files added or changed in this
series.
Some warnings may be from an existing SoC .dtsi. Or perhaps the warnings
are fixed by another series. Ultimately, it is up to the platform
maintainer whether these warnings are acceptable or not. No need to reply
unless the platform maintainer has comments.
If you already ran DT checks and didn't see these error(s), then
make sure dt-schema is up to date:
pip3 install dtschema --upgrade
New warnings running 'make CHECK_DTBS=y qcom/sc8180x-lenovo-flex-5g.dtb qcom/sc8180x-primus.dtb' for 20240525-sc8180x-usb-mp-v1-0-60a904392438@quicinc.com:
arch/arm64/boot/dts/qcom/sc8180x-lenovo-flex-5g.dtb: clock-controller@af00000: clocks: [[41, 0], [42], [120, 0], [120, 1], [124, 0], [124, 1], [127, 0], [127, 1]] is too long
from schema $id: http://devicetree.org/schemas/clock/qcom,dispcc-sm8x50.yaml#
arch/arm64/boot/dts/qcom/sc8180x-primus.dtb: clock-controller@af00000: clocks: [[41, 0], [42], [122, 0], [122, 1], [126, 0], [126, 1], [129, 0], [129, 1]] is too long
from schema $id: http://devicetree.org/schemas/clock/qcom,dispcc-sm8x50.yaml#
next prev parent reply other threads:[~2024-05-28 17:41 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-25 18:03 [PATCH 00/10] arm64: dts: qcom: sc8180x: Enable the USB multiport controller Bjorn Andersson
2024-05-25 18:03 ` [PATCH 01/10] dt-bindings: phy: qcom,sc8280xp-qmp-usb3-uni: Add sc8180x USB3 compatible Bjorn Andersson
2024-05-26 18:17 ` Krzysztof Kozlowski
2024-05-25 18:03 ` [PATCH 02/10] phy: qcom-qmp-usb: Add sc8180x USB UNIPHY Bjorn Andersson
2024-05-25 20:12 ` Dmitry Baryshkov
2024-05-25 18:03 ` [PATCH 03/10] dt-bindings: clock: qcom: Add missing USB MP resets Bjorn Andersson
2024-05-26 18:18 ` Krzysztof Kozlowski
2024-05-25 18:03 ` [PATCH 04/10] clk: qcom: gcc-sc8180x: " Bjorn Andersson
2024-05-28 12:39 ` Konrad Dybcio
2024-05-25 18:03 ` [PATCH 05/10] dt-bindings: usb: qcom,dwc3: Add SC8180X compatibles Bjorn Andersson
2024-05-26 18:22 ` Krzysztof Kozlowski
2024-05-25 18:03 ` [PATCH 06/10] arm64: dts: qcom: sc8180x-pmics: Add second PMC8180 GPIO Bjorn Andersson
2024-05-25 20:15 ` Dmitry Baryshkov
2024-05-25 18:04 ` [PATCH 07/10] arm64: dts: qcom: sc8180x: Align USB nodes with binding Bjorn Andersson
2024-05-28 12:42 ` Konrad Dybcio
2024-05-25 18:04 ` [PATCH 08/10] arm64: dts: qcom: sc8180x: Add USB MP controller and phys Bjorn Andersson
2024-05-25 20:16 ` Dmitry Baryshkov
2024-05-28 12:53 ` Konrad Dybcio
2024-05-25 18:04 ` [PATCH 09/10] arm64: dts: qcom: sc8180x-primus: Enable the two MP USB ports Bjorn Andersson
2024-05-25 20:16 ` Dmitry Baryshkov
2024-05-28 12:54 ` Konrad Dybcio
2024-05-25 18:04 ` [PATCH 10/10] arm64: dts: qcom: sc8180x-lenovo-flex-5g: Enable USB multiport controller Bjorn Andersson
2024-05-25 20:17 ` Dmitry Baryshkov
2024-05-28 12:56 ` Konrad Dybcio
2024-05-28 17:41 ` Rob Herring (Arm) [this message]
2024-06-03 14:26 ` (subset) [PATCH 00/10] arm64: dts: qcom: sc8180x: Enable the " Vinod Koul
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=171691793133.1180499.940663320144175999.robh@kernel.org \
--to=robh@kernel.org \
--cc=andersson@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=kishon@kernel.org \
--cc=konrad.dybcio@linaro.org \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-phy@lists.infradead.org \
--cc=linux-usb@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=quic_bjorande@quicinc.com \
--cc=quic_wcheng@quicinc.com \
--cc=sboyd@kernel.org \
--cc=vkoul@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).