
Add pending PCI patch that should correctly fix mediatek driver with Airoha SoC. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
82 lines
2.6 KiB
Diff
82 lines
2.6 KiB
Diff
From ca4217f3117dceb2d01e179d02031a8758404624 Mon Sep 17 00:00:00 2001
|
|
Message-ID: <ca4217f3117dceb2d01e179d02031a8758404624.1736961235.git.lorenzo@kernel.org>
|
|
From: Lorenzo Bianconi <lorenzo@kernel.org>
|
|
Date: Tue, 3 Sep 2024 23:14:02 +0200
|
|
Subject: [PATCH] PCI: mediatek-gen3: Configure PBUS_CSR registers for EN7581
|
|
SoC
|
|
|
|
Configure PBus base address and address mask in order to allow the hw
|
|
detecting if a given address is on PCIE0, PCIE1 or PCIE2.
|
|
|
|
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
|
|
---
|
|
drivers/pci/controller/pcie-mediatek-gen3.c | 29 ++++++++++++++++++++-
|
|
1 file changed, 28 insertions(+), 1 deletion(-)
|
|
|
|
--- a/drivers/pci/controller/pcie-mediatek-gen3.c
|
|
+++ b/drivers/pci/controller/pcie-mediatek-gen3.c
|
|
@@ -15,6 +15,7 @@
|
|
#include <linux/irqchip/chained_irq.h>
|
|
#include <linux/irqdomain.h>
|
|
#include <linux/kernel.h>
|
|
+#include <linux/mfd/syscon.h>
|
|
#include <linux/module.h>
|
|
#include <linux/msi.h>
|
|
#include <linux/of_device.h>
|
|
@@ -24,6 +25,7 @@
|
|
#include <linux/platform_device.h>
|
|
#include <linux/pm_domain.h>
|
|
#include <linux/pm_runtime.h>
|
|
+#include <linux/regmap.h>
|
|
#include <linux/reset.h>
|
|
|
|
#include "../pci.h"
|
|
@@ -122,6 +124,13 @@
|
|
|
|
#define PCIE_MTK_RESET_TIME_US 10
|
|
|
|
+#define PCIE_EN7581_PBUS_ADDR(_n) (0x00 + ((_n) << 3))
|
|
+#define PCIE_EN7581_PBUS_ADDR_MASK(_n) (0x04 + ((_n) << 3))
|
|
+#define PCIE_EN7581_PBUS_BASE_ADDR(_n) \
|
|
+ ((_n) == 2 ? 0x28000000 : \
|
|
+ (_n) == 1 ? 0x24000000 : 0x20000000)
|
|
+#define PCIE_EN7581_PBUS_BASE_ADDR_MASK GENMASK(31, 26)
|
|
+
|
|
/* Time in ms needed to complete PCIe reset on EN7581 SoC */
|
|
#define PCIE_EN7581_RESET_TIME_MS 100
|
|
|
|
@@ -893,7 +902,8 @@ static int mtk_pcie_parse_port(struct mt
|
|
static int mtk_pcie_en7581_power_up(struct mtk_gen3_pcie *pcie)
|
|
{
|
|
struct device *dev = pcie->dev;
|
|
- int err;
|
|
+ struct regmap *map;
|
|
+ int err, slot;
|
|
u32 val;
|
|
|
|
/*
|
|
@@ -907,6 +917,23 @@ static int mtk_pcie_en7581_power_up(stru
|
|
/* Wait for the time needed to complete the reset lines assert. */
|
|
msleep(PCIE_EN7581_RESET_TIME_MS);
|
|
|
|
+ map = syscon_regmap_lookup_by_compatible("airoha,en7581-pbus-csr");
|
|
+ if (IS_ERR(map))
|
|
+ return PTR_ERR(map);
|
|
+
|
|
+ /*
|
|
+ * Configure PBus base address and address mask in order to allow the
|
|
+ * hw detecting if a given address is on PCIE0, PCIE1 or PCIE2.
|
|
+ */
|
|
+ slot = of_get_pci_domain_nr(dev->of_node);
|
|
+ if (slot < 0)
|
|
+ return slot;
|
|
+
|
|
+ regmap_write(map, PCIE_EN7581_PBUS_ADDR(slot),
|
|
+ PCIE_EN7581_PBUS_BASE_ADDR(slot));
|
|
+ regmap_write(map, PCIE_EN7581_PBUS_ADDR_MASK(slot),
|
|
+ PCIE_EN7581_PBUS_BASE_ADDR_MASK);
|
|
+
|
|
/*
|
|
* Unlike the other MediaTek Gen3 controllers, the Airoha EN7581
|
|
* requires PHY initialization and power-on before PHY reset deassert.
|