From: Varadarajan Narayanan <quic_varada@quicinc.com>
To: <lpieralisi@kernel.org>, <kw@linux.com>,
<manivannan.sadhasivam@linaro.org>, <robh@kernel.org>,
<bhelgaas@google.com>, <krzk+dt@kernel.org>,
<conor+dt@kernel.org>, <vkoul@kernel.org>, <kishon@kernel.org>,
<andersson@kernel.org>, <konradybcio@kernel.org>,
<p.zabel@pengutronix.de>, <quic_nsekar@quicinc.com>,
<dmitry.baryshkov@linaro.org>, <quic_varada@quicinc.com>,
<linux-arm-msm@vger.kernel.org>, <linux-pci@vger.kernel.org>,
<devicetree@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<linux-phy@lists.infradead.org>
Subject: [PATCH v2 0/6] Add PCIe support for Qualcomm IPQ5332
Date: Wed, 4 Dec 2024 17:03:23 +0530 [thread overview]
Message-ID: <20241204113329.3195627-1-quic_varada@quicinc.com> (raw)
Patch series adds support for enabling the PCIe controller and
UNIPHY found on Qualcomm IPQ5332 platform. PCIe0 is Gen3 X1 and
PCIe1 is Gen3 X2 are added.
v2: Combined [1] & [2]
- take the phy driver related changes from [1]
- drop IPQ5018 related changes
Address review comments from [1] & [2] for the patches included in v2
Please see individual patches for the differences between v1 and v2
1. https://lore.kernel.org/all/20231003120846.28626-1-quic_nsekar@quicinc.com/
2. https://lore.kernel.org/linux-arm-msm/20231214062847.2215542-1-quic_ipkumar@quicinc.com/
v1: https://lore.kernel.org/linux-arm-msm/20231214062847.2215542-1-quic_ipkumar@quicinc.com/
Nitheesh Sekar (2):
dt-bindings: phy: qcom,uniphy-pcie: Document PCIe uniphy
phy: qcom: Introduce PCIe UNIPHY 28LP driver
Praveenkumar I (4):
dt-bindings: PCI: qcom: Add IPQ5332 SoC
pci: qcom: Add support for IPQ5332
arm64: dts: qcom: ipq5332: Add PCIe related nodes
arm64: dts: qcom: ipq5332: Enable PCIe phys and controllers
.../devicetree/bindings/pci/qcom,pcie.yaml | 4 +
.../bindings/phy/qcom,uniphy-pcie.yaml | 82 +++++
arch/arm64/boot/dts/qcom/ipq5332-rdp441.dts | 74 +++++
arch/arm64/boot/dts/qcom/ipq5332.dtsi | 214 +++++++++++-
drivers/pci/controller/dwc/pcie-qcom.c | 1 +
drivers/phy/qualcomm/Kconfig | 12 +
drivers/phy/qualcomm/Makefile | 1 +
.../phy/qualcomm/phy-qcom-uniphy-pcie-28lp.c | 307 ++++++++++++++++++
8 files changed, 693 insertions(+), 2 deletions(-)
create mode 100644 Documentation/devicetree/bindings/phy/qcom,uniphy-pcie.yaml
create mode 100644 drivers/phy/qualcomm/phy-qcom-uniphy-pcie-28lp.c
base-commit: f486c8aa16b8172f63bddc70116a0c897a7f3f02
--
2.34.1
next reply other threads:[~2024-12-04 11:34 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-04 11:33 Varadarajan Narayanan [this message]
2024-12-04 11:33 ` [PATCH v2 1/6] dt-bindings: phy: qcom,uniphy-pcie: Document PCIe uniphy Varadarajan Narayanan
2024-12-05 9:38 ` Krzysztof Kozlowski
2024-12-11 8:51 ` Varadarajan Narayanan
2024-12-04 11:33 ` [PATCH v2 2/6] phy: qcom: Introduce PCIe UNIPHY 28LP driver Varadarajan Narayanan
2024-12-04 23:01 ` Dmitry Baryshkov
2024-12-05 9:39 ` Krzysztof Kozlowski
2024-12-06 8:46 ` Krzysztof Kozlowski
2024-12-05 16:40 ` Konrad Dybcio
2024-12-16 6:30 ` Varadarajan Narayanan
2024-12-16 12:05 ` Konrad Dybcio
2024-12-04 11:33 ` [PATCH v2 3/6] dt-bindings: PCI: qcom: Add IPQ5332 SoC Varadarajan Narayanan
2024-12-05 9:40 ` Krzysztof Kozlowski
2024-12-04 11:33 ` [PATCH v2 4/6] pci: qcom: Add support for IPQ5332 Varadarajan Narayanan
2024-12-04 23:10 ` Bjorn Helgaas
2024-12-11 9:34 ` Manivannan Sadhasivam
2024-12-04 11:33 ` [PATCH v2 5/6] arm64: dts: qcom: ipq5332: Add PCIe related nodes Varadarajan Narayanan
2024-12-05 16:55 ` Konrad Dybcio
2024-12-04 11:33 ` [PATCH v2 6/6] arm64: dts: qcom: ipq5332: Enable PCIe phys and controllers Varadarajan Narayanan
2024-12-05 16:58 ` Konrad Dybcio
2024-12-16 11:27 ` Varadarajan Narayanan
2024-12-05 16:58 ` Konrad Dybcio
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=20241204113329.3195627-1-quic_varada@quicinc.com \
--to=quic_varada@quicinc.com \
--cc=andersson@kernel.org \
--cc=bhelgaas@google.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dmitry.baryshkov@linaro.org \
--cc=kishon@kernel.org \
--cc=konradybcio@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=kw@linux.com \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=linux-phy@lists.infradead.org \
--cc=lpieralisi@kernel.org \
--cc=manivannan.sadhasivam@linaro.org \
--cc=p.zabel@pengutronix.de \
--cc=quic_nsekar@quicinc.com \
--cc=robh@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