This patchset adds PHY support for the PCIe, UFS and USB found in the new Qualcomm SM8550 SoC. Since the SM8550 bumps the HW version to 6.0 (respectively, 6.20 for PCIe G4), add support for it beforehand. The SM8550 also uses Synopsis eUSB2 PHY, so add a dedicated driver for it. To: Andy Gross <agross@xxxxxxxxxx> To: Bjorn Andersson <andersson@xxxxxxxxxx> To: Konrad Dybcio <konrad.dybcio@xxxxxxxxxx> To: Vinod Koul <vkoul@xxxxxxxxxx> To: Kishon Vijay Abraham I <kishon@xxxxxxxxxx> To: Rob Herring <robh+dt@xxxxxxxxxx> To: Krzysztof Kozlowski <krzysztof.kozlowski+dt@xxxxxxxxxx> Cc: linux-arm-msm@xxxxxxxxxxxxxxx Cc: linux-phy@xxxxxxxxxxxxxxxxxxx Cc: devicetree@xxxxxxxxxxxxxxx Cc: linux-kernel@xxxxxxxxxxxxxxx Abel Vesa (9): phy: qcom-qmp: qserdes-com: Add v6 register offsets dt-bindings: phy: Add QMP UFS PHY comptible for SM8550 phy: qcom-qmp-ufs: Add SM8550 support dt-bindings: phy: qcom,qmp-usb: Document SM8550 compatible phy: qualcomm: qmp-usb: Add support for SM8550 dt-bindings: phy: qcom,qmp-pcie: Document SM8550 compatible phy: qualcomm: qmp-pcie: Add support for SM8550 g3x2 and g4x2 PCIEs dt-bindings: phy: Add qcom,snps-eusb2-phy schema file phy: qualcomm: Add QCOM SNPS eUSB2 driver Neil Armstrong (1): phy: qualcomm: phy-qcom-snps-eusb2: Add support for eUSB2 repeater .../phy/qcom,ipq8074-qmp-pcie-phy.yaml | 38 +- .../phy/qcom,msm8996-qmp-ufs-phy.yaml | 24 + .../phy/qcom,msm8996-qmp-usb3-phy.yaml | 1 + .../bindings/phy/qcom,snps-eusb2-phy.yaml | 84 ++++ drivers/phy/qualcomm/Kconfig | 9 + drivers/phy/qualcomm/Makefile | 1 + drivers/phy/qualcomm/phy-qcom-qmp-pcie.c | 354 +++++++++++++ .../phy/qualcomm/phy-qcom-qmp-pcs-pcie-v6.h | 15 + .../qualcomm/phy-qcom-qmp-pcs-pcie-v6_20.h | 23 + .../phy/qualcomm/phy-qcom-qmp-pcs-ufs-v6.h | 31 ++ .../phy/qualcomm/phy-qcom-qmp-pcs-usb-v6.h | 31 ++ drivers/phy/qualcomm/phy-qcom-qmp-pcs-v6.h | 16 + drivers/phy/qualcomm/phy-qcom-qmp-pcs-v6_20.h | 18 + .../qualcomm/phy-qcom-qmp-qserdes-com-v6.h | 75 +++ .../phy-qcom-qmp-qserdes-ln-shrd-v6.h | 32 ++ .../phy-qcom-qmp-qserdes-txrx-ufs-v6.h | 30 ++ .../qualcomm/phy-qcom-qmp-qserdes-txrx-v6.h | 68 +++ .../phy-qcom-qmp-qserdes-txrx-v6_20.h | 45 ++ drivers/phy/qualcomm/phy-qcom-qmp-ufs.c | 91 ++++ drivers/phy/qualcomm/phy-qcom-qmp-usb.c | 171 +++++++ drivers/phy/qualcomm/phy-qcom-qmp.h | 13 + drivers/phy/qualcomm/phy-qcom-snps-eusb2.c | 467 ++++++++++++++++++ 22 files changed, 1634 insertions(+), 3 deletions(-) create mode 100644 Documentation/devicetree/bindings/phy/qcom,snps-eusb2-phy.yaml create mode 100644 drivers/phy/qualcomm/phy-qcom-qmp-pcs-pcie-v6.h create mode 100644 drivers/phy/qualcomm/phy-qcom-qmp-pcs-pcie-v6_20.h create mode 100644 drivers/phy/qualcomm/phy-qcom-qmp-pcs-ufs-v6.h create mode 100644 drivers/phy/qualcomm/phy-qcom-qmp-pcs-usb-v6.h create mode 100644 drivers/phy/qualcomm/phy-qcom-qmp-pcs-v6.h create mode 100644 drivers/phy/qualcomm/phy-qcom-qmp-pcs-v6_20.h create mode 100644 drivers/phy/qualcomm/phy-qcom-qmp-qserdes-com-v6.h create mode 100644 drivers/phy/qualcomm/phy-qcom-qmp-qserdes-ln-shrd-v6.h create mode 100644 drivers/phy/qualcomm/phy-qcom-qmp-qserdes-txrx-ufs-v6.h create mode 100644 drivers/phy/qualcomm/phy-qcom-qmp-qserdes-txrx-v6.h create mode 100644 drivers/phy/qualcomm/phy-qcom-qmp-qserdes-txrx-v6_20.h create mode 100644 drivers/phy/qualcomm/phy-qcom-snps-eusb2.c -- 2.34.1