This series fixes the USB-DP PHY devicetree binding for SC8280XP and adds support for the new updated binding to the driver. As the full series including the preparatory parts is over forty patches and I've been posting this in three parts of which this is the last one. In an effort to get all of these into 6.2, I've also submitted all three series before waiting for the previous ones to be applied. Parts one and two can be found here: https://lore.kernel.org/lkml/20221114081346.5116-1-johan+linaro@xxxxxxxxxx/ https://lore.kernel.org/lkml/20221114110621.4639-1-johan+linaro@xxxxxxxxxx/ This last series adds a new binding for SC8280XP that drops the legacy child node and the (incomplete) description of register subregions. As the current bindings are both incomplete and incorrect it may be a good idea to update also the other platforms currently supported by this driver to the new binding scheme. The driver can support both schemes during a transition period before removing the corresponding code (dt parsing and clock-provider registration). Johan Changes in v2: - drop quotes from old DT schema $id and $schema (Krzysztof) - drop clock-output-names from new binding (Krzysztof) - add QMP clock and PHY index constants in a new header - drop patch moving clock registration before runtime PM enable (Dmitry) - include also the corresponding dts changes Johan Hovold (15): dt-bindings: phy: qcom,qmp-usb3-dp: rename current bindings dt-bindings: phy: qcom,qmp-usb3-dp: fix sc8280xp binding phy: qcom-qmp-combo: drop v4 reference-clock source phy: qcom-qmp-combo: restructure PHY creation phy: qcom-qmp-combo: generate pipe clock name phy: qcom-qmp-combo: drop redundant clock structure phy: qcom-qmp-combo: drop redundant clock allocation phy: qcom-qmp-combo: add clock registration helper phy: qcom-qmp-combo: separate clock and provider registration phy: qcom-qmp-combo: clean up DP clock callbacks phy: qcom-qmp-combo: rename common-register pointers phy: qcom-qmp-combo: rename DP_PHY register pointer phy: qcom-qmp-combo: add support for updated sc8280xp binding arm64: dts: qcom: sc8280xp: fix primary USB-DP PHY reset arm64: dts: qcom: sc8280xp: fix USB-DP PHY nodes ....yaml => qcom,sc7180-qmp-usb3-dp-phy.yaml} | 25 +- .../phy/qcom,sc8280xp-qmp-usb43dp-phy.yaml | 99 ++++ arch/arm64/boot/dts/qcom/sc8280xp.dtsi | 79 +-- drivers/phy/qualcomm/phy-qcom-qmp-combo.c | 530 +++++++++++------- include/dt-bindings/phy/phy-qcom-qmp.h | 20 + 5 files changed, 473 insertions(+), 280 deletions(-) rename Documentation/devicetree/bindings/phy/{qcom,qmp-usb3-dp-phy.yaml => qcom,sc7180-qmp-usb3-dp-phy.yaml} (91%) create mode 100644 Documentation/devicetree/bindings/phy/qcom,sc8280xp-qmp-usb43dp-phy.yaml create mode 100644 include/dt-bindings/phy/phy-qcom-qmp.h -- 2.37.4