qualcommax: ipq50xx: backport upstreamed patches for IPQ5018 PCIe support
Use upstreamed patches for IPQ5018 PCIe support, including patches for phy and controller drivers and dts nodes. Signed-off-by: George Moussalem <george.moussalem@outlook.com> Link: https://github.com/openwrt/openwrt/pull/18884 Signed-off-by: Robert Marko <robimarko@gmail.com>
This commit is contained in:
parent
54c7538476
commit
08ff2807cf
12 changed files with 55 additions and 234 deletions
|
@ -1,16 +1,23 @@
|
||||||
From: Varadarajan Narayanan <quic_varada@quicinc.com>
|
From 74badb8b0b146668cc6c03eb58e2a814f9463d02 Mon Sep 17 00:00:00 2001
|
||||||
Date: Thu, 2 Jan 2025 17:00:16 +0530
|
From: Nitheesh Sekar <quic_nsekar@quicinc.com>
|
||||||
|
Date: Thu, 20 Feb 2025 15:12:46 +0530
|
||||||
Subject: [PATCH] phy: qcom: Introduce PCIe UNIPHY 28LP driver
|
Subject: [PATCH] phy: qcom: Introduce PCIe UNIPHY 28LP driver
|
||||||
|
|
||||||
From: Nitheesh Sekar <quic_nsekar@quicinc.com>
|
Add Qualcomm PCIe UNIPHY 28LP driver support present in Qualcomm IPQ5332
|
||||||
|
SoC and the phy init sequence.
|
||||||
Add Qualcomm PCIe UNIPHY 28LP driver support present
|
|
||||||
in Qualcomm IPQ5332 SoC and the phy init sequence.
|
|
||||||
|
|
||||||
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
|
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
|
||||||
Signed-off-by: Nitheesh Sekar <quic_nsekar@quicinc.com>
|
Signed-off-by: Nitheesh Sekar <quic_nsekar@quicinc.com>
|
||||||
Signed-off-by: Varadarajan Narayanan <quic_varada@quicinc.com>
|
Signed-off-by: Varadarajan Narayanan <quic_varada@quicinc.com>
|
||||||
|
Link: https://lore.kernel.org/r/20250220094251.230936-3-quic_varada@quicinc.com
|
||||||
|
Signed-off-by: Vinod Koul <vkoul@kernel.org>
|
||||||
---
|
---
|
||||||
|
drivers/phy/qualcomm/Kconfig | 12 +
|
||||||
|
drivers/phy/qualcomm/Makefile | 1 +
|
||||||
|
.../phy/qualcomm/phy-qcom-uniphy-pcie-28lp.c | 286 ++++++++++++++++++
|
||||||
|
3 files changed, 299 insertions(+)
|
||||||
|
create mode 100644 drivers/phy/qualcomm/phy-qcom-uniphy-pcie-28lp.c
|
||||||
|
|
||||||
--- a/drivers/phy/qualcomm/Kconfig
|
--- a/drivers/phy/qualcomm/Kconfig
|
||||||
+++ b/drivers/phy/qualcomm/Kconfig
|
+++ b/drivers/phy/qualcomm/Kconfig
|
||||||
@@ -154,6 +154,18 @@ config PHY_QCOM_M31_USB
|
@@ -154,6 +154,18 @@ config PHY_QCOM_M31_USB
|
||||||
|
@ -44,7 +51,7 @@ Signed-off-by: Varadarajan Narayanan <quic_varada@quicinc.com>
|
||||||
obj-$(CONFIG_PHY_QCOM_USB_HS_28NM) += phy-qcom-usb-hs-28nm.o
|
obj-$(CONFIG_PHY_QCOM_USB_HS_28NM) += phy-qcom-usb-hs-28nm.o
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ b/drivers/phy/qualcomm/phy-qcom-uniphy-pcie-28lp.c
|
+++ b/drivers/phy/qualcomm/phy-qcom-uniphy-pcie-28lp.c
|
||||||
@@ -0,0 +1,285 @@
|
@@ -0,0 +1,286 @@
|
||||||
+// SPDX-License-Identifier: GPL-2.0+
|
+// SPDX-License-Identifier: GPL-2.0+
|
||||||
+/*
|
+/*
|
||||||
+ * Copyright (c) 2025, The Linux Foundation. All rights reserved.
|
+ * Copyright (c) 2025, The Linux Foundation. All rights reserved.
|
||||||
|
@ -63,6 +70,7 @@ Signed-off-by: Varadarajan Narayanan <quic_varada@quicinc.com>
|
||||||
+#include <linux/platform_device.h>
|
+#include <linux/platform_device.h>
|
||||||
+#include <linux/regmap.h>
|
+#include <linux/regmap.h>
|
||||||
+#include <linux/reset.h>
|
+#include <linux/reset.h>
|
||||||
|
+#include <linux/units.h>
|
||||||
+
|
+
|
||||||
+#define RST_ASSERT_DELAY_MIN_US 100
|
+#define RST_ASSERT_DELAY_MIN_US 100
|
||||||
+#define RST_ASSERT_DELAY_MAX_US 150
|
+#define RST_ASSERT_DELAY_MAX_US 150
|
||||||
|
@ -89,8 +97,6 @@ Signed-off-by: Varadarajan Narayanan <quic_varada@quicinc.com>
|
||||||
+#define PHY_CFG_EIOS_DTCT_REG 0x3e4
|
+#define PHY_CFG_EIOS_DTCT_REG 0x3e4
|
||||||
+#define PHY_CFG_GEN3_ALIGN_HOLDOFF_TIME 0x3e8
|
+#define PHY_CFG_GEN3_ALIGN_HOLDOFF_TIME 0x3e8
|
||||||
+
|
+
|
||||||
+#define PHY_MODE_FIXED 0x1
|
|
||||||
+
|
|
||||||
+enum qcom_uniphy_pcie_type {
|
+enum qcom_uniphy_pcie_type {
|
||||||
+ PHY_TYPE_PCIE = 1,
|
+ PHY_TYPE_PCIE = 1,
|
||||||
+ PHY_TYPE_PCIE_GEN2,
|
+ PHY_TYPE_PCIE_GEN2,
|
||||||
|
@ -141,7 +147,7 @@ Signed-off-by: Varadarajan Narayanan <quic_varada@quicinc.com>
|
||||||
+ .phy_type = PHY_TYPE_PCIE_GEN3,
|
+ .phy_type = PHY_TYPE_PCIE_GEN3,
|
||||||
+ .init_seq = ipq5332_regs,
|
+ .init_seq = ipq5332_regs,
|
||||||
+ .init_seq_num = ARRAY_SIZE(ipq5332_regs),
|
+ .init_seq_num = ARRAY_SIZE(ipq5332_regs),
|
||||||
+ .pipe_clk_rate = 250000000,
|
+ .pipe_clk_rate = 250 * MEGA,
|
||||||
+};
|
+};
|
||||||
+
|
+
|
||||||
+static void qcom_uniphy_pcie_init(struct qcom_uniphy_pcie *phy)
|
+static void qcom_uniphy_pcie_init(struct qcom_uniphy_pcie *phy)
|
||||||
|
@ -200,6 +206,7 @@ Signed-off-by: Varadarajan Narayanan <quic_varada@quicinc.com>
|
||||||
+ usleep_range(CLK_EN_DELAY_MIN_US, CLK_EN_DELAY_MAX_US);
|
+ usleep_range(CLK_EN_DELAY_MIN_US, CLK_EN_DELAY_MAX_US);
|
||||||
+
|
+
|
||||||
+ qcom_uniphy_pcie_init(phy);
|
+ qcom_uniphy_pcie_init(phy);
|
||||||
|
+
|
||||||
+ return 0;
|
+ return 0;
|
||||||
+}
|
+}
|
||||||
+
|
+
|
||||||
|
@ -292,8 +299,9 @@ Signed-off-by: Varadarajan Narayanan <quic_varada@quicinc.com>
|
||||||
+ if (!phy->data)
|
+ if (!phy->data)
|
||||||
+ return -EINVAL;
|
+ return -EINVAL;
|
||||||
+
|
+
|
||||||
+ phy->lanes = 1;
|
+ ret = of_property_read_u32(dev_of_node(dev), "num-lanes", &phy->lanes);
|
||||||
+ ret = of_property_read_u32(dev->of_node, "num-lanes", &phy->lanes);
|
+ if (ret)
|
||||||
|
+ return dev_err_probe(dev, ret, "Couldn't read num-lanes\n");
|
||||||
+
|
+
|
||||||
+ ret = qcom_uniphy_pcie_get_resources(pdev, phy);
|
+ ret = qcom_uniphy_pcie_get_resources(pdev, phy);
|
||||||
+ if (ret < 0)
|
+ if (ret < 0)
|
|
@ -1,15 +1,24 @@
|
||||||
From: George Moussalem <george.moussalem@outlook.com>
|
From dfc820d2f8a8ea90bbc02269b5362e3678e58cac Mon Sep 17 00:00:00 2001
|
||||||
Date: Tue, 07 Jan 2025 17:34:13 +0400
|
From: Nitheesh Sekar <quic_nsekar@quicinc.com>
|
||||||
Subject: [PATCH] phy: qualcomm: qcom-uniphy-pcie 28lp add support for IPQ5018
|
Date: Wed, 26 Mar 2025 12:10:56 +0400
|
||||||
|
Subject: [PATCH] phy: qualcomm: qcom-uniphy-pcie 28LP add support for IPQ5018
|
||||||
|
|
||||||
The Qualcomm UNIPHY PCIe PHY 28lp is found on both IPQ5332 and IPQ5018.
|
The Qualcomm UNIPHY PCIe PHY 28LP is found on both IPQ5332 and IPQ5018.
|
||||||
Adding the PHY init sequence, pipe clock rate, and compatible for IPQ5018.
|
Adding the PHY init sequence, pipe clock rate, and compatible for IPQ5018.
|
||||||
|
|
||||||
|
Signed-off-by: Nitheesh Sekar <quic_nsekar@quicinc.com>
|
||||||
|
Signed-off-by: Sricharan Ramabadhran <quic_srichara@quicinc.com>
|
||||||
|
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
|
||||||
Signed-off-by: George Moussalem <george.moussalem@outlook.com>
|
Signed-off-by: George Moussalem <george.moussalem@outlook.com>
|
||||||
|
Link: https://lore.kernel.org/r/20250326-ipq5018-pcie-v7-2-e1828fef06c9@outlook.com
|
||||||
|
Signed-off-by: Vinod Koul <vkoul@kernel.org>
|
||||||
---
|
---
|
||||||
|
.../phy/qualcomm/phy-qcom-uniphy-pcie-28lp.c | 45 +++++++++++++++++++
|
||||||
|
1 file changed, 45 insertions(+)
|
||||||
|
|
||||||
--- a/drivers/phy/qualcomm/phy-qcom-uniphy-pcie-28lp.c
|
--- a/drivers/phy/qualcomm/phy-qcom-uniphy-pcie-28lp.c
|
||||||
+++ b/drivers/phy/qualcomm/phy-qcom-uniphy-pcie-28lp.c
|
+++ b/drivers/phy/qualcomm/phy-qcom-uniphy-pcie-28lp.c
|
||||||
@@ -76,6 +76,40 @@ struct qcom_uniphy_pcie {
|
@@ -75,6 +75,40 @@ struct qcom_uniphy_pcie {
|
||||||
|
|
||||||
#define phy_to_dw_phy(x) container_of((x), struct qca_uni_pcie_phy, phy)
|
#define phy_to_dw_phy(x) container_of((x), struct qca_uni_pcie_phy, phy)
|
||||||
|
|
||||||
|
@ -50,7 +59,7 @@ Signed-off-by: George Moussalem <george.moussalem@outlook.com>
|
||||||
static const struct qcom_uniphy_pcie_regs ipq5332_regs[] = {
|
static const struct qcom_uniphy_pcie_regs ipq5332_regs[] = {
|
||||||
{
|
{
|
||||||
.offset = PHY_CFG_PLLCFG,
|
.offset = PHY_CFG_PLLCFG,
|
||||||
@@ -89,6 +123,14 @@ static const struct qcom_uniphy_pcie_reg
|
@@ -88,6 +122,14 @@ static const struct qcom_uniphy_pcie_reg
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -59,7 +68,7 @@ Signed-off-by: George Moussalem <george.moussalem@outlook.com>
|
||||||
+ .phy_type = PHY_TYPE_PCIE_GEN2,
|
+ .phy_type = PHY_TYPE_PCIE_GEN2,
|
||||||
+ .init_seq = ipq5018_regs,
|
+ .init_seq = ipq5018_regs,
|
||||||
+ .init_seq_num = ARRAY_SIZE(ipq5018_regs),
|
+ .init_seq_num = ARRAY_SIZE(ipq5018_regs),
|
||||||
+ .pipe_clk_rate = 125000000,
|
+ .pipe_clk_rate = 125 * MEGA,
|
||||||
+};
|
+};
|
||||||
+
|
+
|
||||||
static const struct qcom_uniphy_pcie_data ipq5332_data = {
|
static const struct qcom_uniphy_pcie_data ipq5332_data = {
|
|
@ -1,95 +1,7 @@
|
||||||
From patchwork Sat Apr 26 08:47:20 2025
|
From 18a5bf00a02ca54d51266b861518f2844c4f08d7 Mon Sep 17 00:00:00 2001
|
||||||
Content-Type: text/plain; charset="utf-8"
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Transfer-Encoding: 7bit
|
|
||||||
X-Patchwork-Submitter: George Moussalem <george.moussalem@outlook.com>
|
|
||||||
X-Patchwork-Id: 14067566
|
|
||||||
Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org
|
|
||||||
[10.30.226.201])
|
|
||||||
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
|
|
||||||
(No client certificate requested)
|
|
||||||
by smtp.subspace.kernel.org (Postfix) with ESMTPS id 7F4681C84B1;
|
|
||||||
Sat, 26 Apr 2025 08:47:51 +0000 (UTC)
|
|
||||||
Authentication-Results: smtp.subspace.kernel.org;
|
|
||||||
arc=none smtp.client-ip=10.30.226.201
|
|
||||||
ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116;
|
|
||||||
t=1745657271; cv=none;
|
|
||||||
b=M866cJf/V6RxRwZ+Z/t6DUNC/4uUC28M2tFr3KZNsWjzpmjRvEQ0F/GNa8h5aJBvGnSEePGU/O/HxHPBxi4GiTA9ZVp/lf7Hs+r8IFTvSggG31OxmOlVKLlPaHAGfmFWYM/IFRz9vGSrVQ7gbQanlaR8yvblfamuIEHX1oJ+/ik=
|
|
||||||
ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org;
|
|
||||||
s=arc-20240116; t=1745657271; c=relaxed/simple;
|
|
||||||
bh=s2C/YfnCIJHh91xdt3j52t+/ImXU3ihecScu2Iibt88=;
|
|
||||||
h=From:Date:Subject:MIME-Version:Content-Type:Message-Id:References:
|
|
||||||
In-Reply-To:To:Cc;
|
|
||||||
b=dKXYWKjuQJO3BeaVAC5JVuoSJ538vu9FvW/1eGwbMzm5ZwQFOa1zMpipPc6YxOD9XZd4ckdLgr+eMg725RGmHklL/kvGpno5/oBRxdVmPAJLGO231PJgUdUGSvEZ3l2chja2181+a1mSPHhJ4aErT3SEYuWMrRf2NHDfC/Ac5wY=
|
|
||||||
ARC-Authentication-Results: i=1; smtp.subspace.kernel.org;
|
|
||||||
dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org
|
|
||||||
header.b=oFiqwO9r; arc=none smtp.client-ip=10.30.226.201
|
|
||||||
Authentication-Results: smtp.subspace.kernel.org;
|
|
||||||
dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org
|
|
||||||
header.b="oFiqwO9r"
|
|
||||||
Received: by smtp.kernel.org (Postfix) with ESMTPS id EBA53C4CEEB;
|
|
||||||
Sat, 26 Apr 2025 08:47:50 +0000 (UTC)
|
|
||||||
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org;
|
|
||||||
s=k20201202; t=1745657271;
|
|
||||||
bh=s2C/YfnCIJHh91xdt3j52t+/ImXU3ihecScu2Iibt88=;
|
|
||||||
h=From:Date:Subject:References:In-Reply-To:To:Cc:Reply-To:From;
|
|
||||||
b=oFiqwO9r8uxa64raZD61ax5LqtigXQBAXL9AvrSRrZA/GiwcA1rmMAHQKdSaS/zin
|
|
||||||
LpatrrfpB+O005agqR5ce8kxbHa6402LS4WZPYz6H+1xJYPjUmLnNsl2vboufmGrG6
|
|
||||||
b+JrwDy5UWsBWZVvZgTUF5D9U95ZWI3iHDOUek0lkyR9EHvqUiMb/ELtA7feFItqEs
|
|
||||||
M/QeZWHKvGgfhpOtfEcRZYcdS5c8FdFDlTf5k2r0sRBKBM2XzzyIrtNtQqi+/bhvtr
|
|
||||||
sIu+wvwZhfGgJsGT8dDpLTcukN2anyL01bB076AHp3MzI2d4ggYYRFv09yVnzj50XD
|
|
||||||
5nMOYnjtjTZQw==
|
|
||||||
Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org
|
|
||||||
(localhost.localdomain [127.0.0.1])
|
|
||||||
by smtp.lore.kernel.org (Postfix) with ESMTP id DB3E5C369D1;
|
|
||||||
Sat, 26 Apr 2025 08:47:50 +0000 (UTC)
|
|
||||||
Date: Sat, 26 Apr 2025 12:47:20 +0400
|
|
||||||
Subject: [PATCH v9 1/2] arm64: dts: qcom: ipq5018: Add PCIe related nodes
|
|
||||||
Precedence: bulk
|
|
||||||
X-Mailing-List: linux-arm-msm@vger.kernel.org
|
|
||||||
List-Id: <linux-arm-msm.vger.kernel.org>
|
|
||||||
List-Subscribe: <mailto:linux-arm-msm+subscribe@vger.kernel.org>
|
|
||||||
List-Unsubscribe: <mailto:linux-arm-msm+unsubscribe@vger.kernel.org>
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Message-Id: <20250426-ipq5018-pcie-v9-1-1f0dca6c205b@outlook.com>
|
|
||||||
References: <20250426-ipq5018-pcie-v9-0-1f0dca6c205b@outlook.com>
|
|
||||||
In-Reply-To: <20250426-ipq5018-pcie-v9-0-1f0dca6c205b@outlook.com>
|
|
||||||
To: Vinod Koul <vkoul@kernel.org>,
|
|
||||||
Kishon Vijay Abraham I <kishon@kernel.org>, Rob Herring <robh@kernel.org>,
|
|
||||||
Krzysztof Kozlowski <krzk+dt@kernel.org>,
|
|
||||||
Conor Dooley <conor+dt@kernel.org>,
|
|
||||||
Nitheesh Sekar <quic_nsekar@quicinc.com>,
|
|
||||||
Varadarajan Narayanan <quic_varada@quicinc.com>,
|
|
||||||
Bjorn Helgaas <bhelgaas@google.com>,
|
|
||||||
Lorenzo Pieralisi <lpieralisi@kernel.org>, =?utf-8?q?Krzysztof_Wilczy?=
|
|
||||||
=?utf-8?q?=C5=84ski?= <kw@linux.com>,
|
|
||||||
Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>,
|
|
||||||
Bjorn Andersson <andersson@kernel.org>,
|
|
||||||
Konrad Dybcio <konradybcio@kernel.org>,
|
|
||||||
Praveenkumar I <quic_ipkumar@quicinc.com>
|
|
||||||
Cc: linux-arm-msm@vger.kernel.org, linux-phy@lists.infradead.org,
|
|
||||||
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
|
|
||||||
linux-pci@vger.kernel.org, George Moussalem <george.moussalem@outlook.com>,
|
|
||||||
20250317100029.881286-1-quic_varada@quicinc.com,
|
|
||||||
20250317100029.881286-2-quic_varada@quicinc.com,
|
|
||||||
Sricharan R <quic_srichara@quicinc.com>,
|
|
||||||
Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>,
|
|
||||||
Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
|
|
||||||
X-Mailer: b4 0.14.2
|
|
||||||
X-Developer-Signature: v=1; a=ed25519-sha256; t=1745657268; l=7874;
|
|
||||||
i=george.moussalem@outlook.com; s=20250321; h=from:subject:message-id;
|
|
||||||
bh=kGrZ/VHv+p7/RMeNwr0Kf61p0n/Ee/GyXpuErx0N1DQ=;
|
|
||||||
b=dmN2go3sL7VarHf/cZsYp30QQnlAI+awY3vAVLx+86ukud+nG2PwQ8rx7Aw64wCDmqdJayYWz
|
|
||||||
AhTM382VJf9AvbWcGs1CzUJw16JbmI8XNWnRHjhwbchkLu3okeDVfqI
|
|
||||||
X-Developer-Key: i=george.moussalem@outlook.com; a=ed25519;
|
|
||||||
pk=/PuRTSI9iYiHwcc6Nrde8qF4ZDhJBlUgpHdhsIjnqIk=
|
|
||||||
X-Endpoint-Received: by B4 Relay for george.moussalem@outlook.com/20250321
|
|
||||||
with auth_id=364
|
|
||||||
X-Original-From: George Moussalem <george.moussalem@outlook.com>
|
|
||||||
Reply-To: george.moussalem@outlook.com
|
|
||||||
From: George Moussalem <george.moussalem@outlook.com>
|
|
||||||
|
|
||||||
From: Nitheesh Sekar <quic_nsekar@quicinc.com>
|
From: Nitheesh Sekar <quic_nsekar@quicinc.com>
|
||||||
|
Date: Wed, 14 May 2025 09:52:13 +0400
|
||||||
|
Subject: [PATCH] arm64: dts: qcom: ipq5018: Add PCIe related nodes
|
||||||
|
|
||||||
Add phy and controller nodes for a 2-lane Gen2 and
|
Add phy and controller nodes for a 2-lane Gen2 and
|
||||||
a 1-lane Gen2 PCIe bus. IPQ5018 has 8 MSI SPI interrupts and
|
a 1-lane Gen2 PCIe bus. IPQ5018 has 8 MSI SPI interrupts and
|
||||||
|
@ -103,14 +15,16 @@ Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
|
||||||
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
|
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
|
||||||
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
|
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
|
||||||
Signed-off-by: George Moussalem <george.moussalem@outlook.com>
|
Signed-off-by: George Moussalem <george.moussalem@outlook.com>
|
||||||
|
Link: https://lore.kernel.org/r/20250514-ipq5018-pcie-v10-1-5b42a8eff7ea@outlook.com
|
||||||
|
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
|
||||||
---
|
---
|
||||||
arch/arm64/boot/dts/qcom/ipq5018.dtsi | 238 +++++++++++++++++++++++++++++++++-
|
arch/arm64/boot/dts/qcom/ipq5018.dtsi | 240 +++++++++++++++++++++++++-
|
||||||
1 file changed, 236 insertions(+), 2 deletions(-)
|
1 file changed, 238 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
--- a/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
--- a/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
||||||
+++ b/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
+++ b/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
||||||
@@ -258,6 +258,40 @@
|
@@ -147,6 +147,40 @@
|
||||||
#thermal-sensor-cells = <1>;
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
+ pcie1_phy: phy@7e000 {
|
+ pcie1_phy: phy@7e000 {
|
||||||
|
@ -150,7 +64,7 @@ Signed-off-by: George Moussalem <george.moussalem@outlook.com>
|
||||||
tlmm: pinctrl@1000000 {
|
tlmm: pinctrl@1000000 {
|
||||||
compatible = "qcom,ipq5018-tlmm";
|
compatible = "qcom,ipq5018-tlmm";
|
||||||
reg = <0x01000000 0x300000>;
|
reg = <0x01000000 0x300000>;
|
||||||
@@ -281,8 +315,8 @@
|
@@ -170,8 +204,8 @@
|
||||||
reg = <0x01800000 0x80000>;
|
reg = <0x01800000 0x80000>;
|
||||||
clocks = <&xo_board_clk>,
|
clocks = <&xo_board_clk>,
|
||||||
<&sleep_clk>,
|
<&sleep_clk>,
|
||||||
|
@ -161,7 +75,7 @@ Signed-off-by: George Moussalem <george.moussalem@outlook.com>
|
||||||
<0>,
|
<0>,
|
||||||
<0>,
|
<0>,
|
||||||
<0>,
|
<0>,
|
||||||
@@ -498,6 +532,208 @@
|
@@ -387,6 +421,208 @@
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -369,4 +283,4 @@ Signed-off-by: George Moussalem <george.moussalem@outlook.com>
|
||||||
+ };
|
+ };
|
||||||
};
|
};
|
||||||
|
|
||||||
thermal-zones {
|
timer {
|
|
@ -15,7 +15,7 @@ Signed-off-by: Sricharan Ramabadhran <quic_srichara@quicinc.com>
|
||||||
|
|
||||||
--- a/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
--- a/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
||||||
+++ b/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
+++ b/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
||||||
@@ -147,6 +147,117 @@
|
@@ -181,6 +181,117 @@
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -133,7 +133,7 @@ Signed-off-by: Sricharan Ramabadhran <quic_srichara@quicinc.com>
|
||||||
tlmm: pinctrl@1000000 {
|
tlmm: pinctrl@1000000 {
|
||||||
compatible = "qcom,ipq5018-tlmm";
|
compatible = "qcom,ipq5018-tlmm";
|
||||||
reg = <0x01000000 0x300000>;
|
reg = <0x01000000 0x300000>;
|
||||||
@@ -388,6 +499,64 @@
|
@@ -624,6 +735,64 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,85 +0,0 @@
|
||||||
From: Varadarajan Narayanan <quic_varada@quicinc.com>
|
|
||||||
Date: Thu, 2 Jan 2025 17:00:15 +0530
|
|
||||||
Subject: [PATCH] dt-bindings: phy: qcom,uniphy-pcie: Document PCIe uniphy
|
|
||||||
|
|
||||||
From: Nitheesh Sekar <quic_nsekar@quicinc.com>
|
|
||||||
|
|
||||||
Document the Qualcomm UNIPHY PCIe 28LP present in IPQ5332.
|
|
||||||
|
|
||||||
Signed-off-by: Nitheesh Sekar <quic_nsekar@quicinc.com>
|
|
||||||
Signed-off-by: Varadarajan Narayanan <quic_varada@quicinc.com>
|
|
||||||
---
|
|
||||||
--- /dev/null
|
|
||||||
+++ b/Documentation/devicetree/bindings/phy/qcom,ipq5332-uniphy-pcie-phy.yaml
|
|
||||||
@@ -0,0 +1,71 @@
|
|
||||||
+# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
|
|
||||||
+%YAML 1.2
|
|
||||||
+---
|
|
||||||
+$id: http://devicetree.org/schemas/phy/qcom,ipq5332-uniphy-pcie-phy.yaml#
|
|
||||||
+$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
||||||
+
|
|
||||||
+title: Qualcomm UNIPHY PCIe 28LP PHY
|
|
||||||
+
|
|
||||||
+maintainers:
|
|
||||||
+ - Nitheesh Sekar <quic_nsekar@quicinc.com>
|
|
||||||
+ - Varadarajan Narayanan <quic_varada@quicinc.com>
|
|
||||||
+
|
|
||||||
+description:
|
|
||||||
+ PCIe and USB combo PHY found in Qualcomm IPQ5332 SoC
|
|
||||||
+
|
|
||||||
+properties:
|
|
||||||
+ compatible:
|
|
||||||
+ enum:
|
|
||||||
+ - qcom,ipq5332-uniphy-pcie-phy
|
|
||||||
+
|
|
||||||
+ reg:
|
|
||||||
+ maxItems: 1
|
|
||||||
+
|
|
||||||
+ clocks:
|
|
||||||
+ items:
|
|
||||||
+ - description: pcie pipe clock
|
|
||||||
+ - description: pcie ahb clock
|
|
||||||
+
|
|
||||||
+ resets:
|
|
||||||
+ items:
|
|
||||||
+ - description: phy reset
|
|
||||||
+ - description: ahb reset
|
|
||||||
+ - description: cfg reset
|
|
||||||
+
|
|
||||||
+ "#phy-cells":
|
|
||||||
+ const: 0
|
|
||||||
+
|
|
||||||
+ "#clock-cells":
|
|
||||||
+ const: 0
|
|
||||||
+
|
|
||||||
+ num-lanes: true
|
|
||||||
+
|
|
||||||
+required:
|
|
||||||
+ - compatible
|
|
||||||
+ - reg
|
|
||||||
+ - clocks
|
|
||||||
+ - resets
|
|
||||||
+ - "#phy-cells"
|
|
||||||
+ - "#clock-cells"
|
|
||||||
+
|
|
||||||
+additionalProperties: false
|
|
||||||
+
|
|
||||||
+examples:
|
|
||||||
+ - |
|
|
||||||
+ #include <dt-bindings/clock/qcom,ipq5332-gcc.h>
|
|
||||||
+
|
|
||||||
+ pcie0_phy: phy@4b0000 {
|
|
||||||
+ compatible = "qcom,ipq5332-uniphy-pcie-phy";
|
|
||||||
+ reg = <0x004b0000 0x800>;
|
|
||||||
+
|
|
||||||
+ clocks = <&gcc GCC_PCIE3X1_0_PIPE_CLK>,
|
|
||||||
+ <&gcc GCC_PCIE3X1_PHY_AHB_CLK>;
|
|
||||||
+
|
|
||||||
+ resets = <&gcc GCC_PCIE3X1_0_PHY_BCR>,
|
|
||||||
+ <&gcc GCC_PCIE3X1_PHY_AHB_CLK_ARES>,
|
|
||||||
+ <&gcc GCC_PCIE3X1_0_PHY_PHY_BCR>;
|
|
||||||
+
|
|
||||||
+ #clock-cells = <0>;
|
|
||||||
+
|
|
||||||
+ #phy-cells = <0>;
|
|
||||||
+ };
|
|
|
@ -1,25 +0,0 @@
|
||||||
From: George Moussalem <george.moussalem@outlook.com>
|
|
||||||
Date: Tue, 07 Jan 2025 17:34:13 +0400
|
|
||||||
Subject: [PATCH] phy: qualcomm: qcom-uniphy-pcie add IPQ5018 compatible
|
|
||||||
|
|
||||||
The Qualcomm UNIPHY PCIe PHY 28lp part of the IPQ5332 SoC is also present on
|
|
||||||
the IPQ5018 SoC, so adding the compatible for IPQ5018.
|
|
||||||
|
|
||||||
Signed-off-by: George Moussalem <george.moussalem@outlook.com>
|
|
||||||
---
|
|
||||||
--- a/Documentation/devicetree/bindings/phy/qcom,ipq5332-uniphy-pcie-phy.yaml
|
|
||||||
+++ b/Documentation/devicetree/bindings/phy/qcom,ipq5332-uniphy-pcie-phy.yaml
|
|
||||||
@@ -11,11 +11,12 @@ maintainers:
|
|
||||||
- Varadarajan Narayanan <quic_varada@quicinc.com>
|
|
||||||
|
|
||||||
description:
|
|
||||||
- PCIe and USB combo PHY found in Qualcomm IPQ5332 SoC
|
|
||||||
+ PCIe and USB combo PHY found in Qualcomm IPQ5018 and IPQ5332 SoCs
|
|
||||||
|
|
||||||
properties:
|
|
||||||
compatible:
|
|
||||||
enum:
|
|
||||||
+ - qcom,ipq5018-uniphy-pcie-phy
|
|
||||||
- qcom,ipq5332-uniphy-pcie-phy
|
|
||||||
|
|
||||||
reg:
|
|
|
@ -9,7 +9,7 @@ Signed-off-by: George Moussalem <george.moussalem@outlook.com>
|
||||||
--- a/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
--- a/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
||||||
+++ b/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
+++ b/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
||||||
@@ -293,6 +293,30 @@
|
@@ -293,6 +293,30 @@
|
||||||
status = "disabled";
|
#thermal-sensor-cells = <1>;
|
||||||
};
|
};
|
||||||
|
|
||||||
+ cryptobam: dma-controller@704000 {
|
+ cryptobam: dma-controller@704000 {
|
||||||
|
|
|
@ -8,7 +8,7 @@ Signed-off-by: George Moussalem <george.moussalem@outlook.com>
|
||||||
---
|
---
|
||||||
--- a/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
--- a/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
||||||
+++ b/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
+++ b/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
||||||
@@ -220,6 +220,14 @@
|
@@ -254,6 +254,14 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ Signed-off-by: Ziyang Huang <hzyitc@outlook.com>
|
||||||
sleep_clk: sleep-clk {
|
sleep_clk: sleep-clk {
|
||||||
compatible = "fixed-clock";
|
compatible = "fixed-clock";
|
||||||
#clock-cells = <0>;
|
#clock-cells = <0>;
|
||||||
@@ -148,6 +154,19 @@
|
@@ -182,6 +188,19 @@
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ Signed-off-by: George Moussalem <george.moussalem@outlook.com>
|
||||||
|
|
||||||
--- a/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
--- a/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
||||||
+++ b/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
+++ b/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
||||||
@@ -154,6 +154,30 @@
|
@@ -188,6 +188,30 @@
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@ Signed-off-by: George Moussalem <george.moussalem@outlook.com>
|
||||||
|
|
||||||
--- a/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
--- a/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
||||||
+++ b/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
+++ b/arch/arm64/boot/dts/qcom/ipq5018.dtsi
|
||||||
@@ -164,6 +164,21 @@
|
@@ -198,6 +198,21 @@
|
||||||
clock-names = "gcc_mdio_ahb_clk";
|
clock-names = "gcc_mdio_ahb_clk";
|
||||||
|
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
|
|
Loading…
Reference in a new issue