2021-05-15 13:08:44

by Sergio Paracuellos

[permalink] [raw]
Subject: [PATCH 2/4] MIPS: pci: Add driver for MT7621 PCIe controller

This patch adds a driver for the PCIe controller of MT7621 SoC.

Signed-off-by: Sergio Paracuellos <[email protected]>
---
arch/mips/pci/Makefile | 1 +
arch/mips/pci/pci-mt7621.c | 624 +++++++++++++++++++++++++++++++++++++
arch/mips/ralink/Kconfig | 9 +-
3 files changed, 633 insertions(+), 1 deletion(-)
create mode 100644 arch/mips/pci/pci-mt7621.c

diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile
index f3eecc065e5c..178c550739c4 100644
--- a/arch/mips/pci/Makefile
+++ b/arch/mips/pci/Makefile
@@ -24,6 +24,7 @@ obj-$(CONFIG_PCI_AR2315) += pci-ar2315.o
obj-$(CONFIG_SOC_AR71XX) += pci-ar71xx.o
obj-$(CONFIG_PCI_AR724X) += pci-ar724x.o
obj-$(CONFIG_PCI_XTALK_BRIDGE) += pci-xtalk-bridge.o
+obj-$(CONFIG_PCI_MT7621) += pci-mt7621.o
#
# These are still pretty much in the old state, watch, go blind.
#
diff --git a/arch/mips/pci/pci-mt7621.c b/arch/mips/pci/pci-mt7621.c
new file mode 100644
index 000000000000..fe1945819d25
--- /dev/null
+++ b/arch/mips/pci/pci-mt7621.c
@@ -0,0 +1,624 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * BRIEF MODULE DESCRIPTION
+ * PCI init for Ralink RT2880 solution
+ *
+ * Copyright 2007 Ralink Inc. ([email protected])
+ *
+ * May 2007 Bruce Chang
+ * Initial Release
+ *
+ * May 2009 Bruce Chang
+ * support RT2880/RT3883 PCIe
+ *
+ * May 2011 Bruce Chang
+ * support RT6855/MT7620 PCIe
+ */
+
+#include <linux/bitops.h>
+#include <linux/clk.h>
+#include <linux/delay.h>
+#include <linux/gpio/consumer.h>
+#include <linux/module.h>
+#include <linux/of.h>
+#include <linux/of_address.h>
+#include <linux/of_pci.h>
+#include <linux/of_platform.h>
+#include <linux/pci.h>
+#include <linux/phy/phy.h>
+#include <linux/platform_device.h>
+#include <linux/reset.h>
+#include <linux/sys_soc.h>
+
+/* MediaTek specific configuration registers */
+#define PCIE_FTS_NUM 0x70c
+#define PCIE_FTS_NUM_MASK GENMASK(15, 8)
+#define PCIE_FTS_NUM_L0(x) (((x) & 0xff) << 8)
+
+/* Host-PCI bridge registers */
+#define RALINK_PCI_PCICFG_ADDR 0x0000
+#define RALINK_PCI_PCIMSK_ADDR 0x000C
+#define RALINK_PCI_CONFIG_ADDR 0x0020
+#define RALINK_PCI_CONFIG_DATA 0x0024
+#define RALINK_PCI_MEMBASE 0x0028
+#define RALINK_PCI_IOBASE 0x002C
+
+/* PCIe RC control registers */
+#define MT7621_PCIE_OFFSET 0x2000
+#define MT7621_NEXT_PORT 0x1000
+
+#define RALINK_PCI_BAR0SETUP_ADDR 0x0010
+#define RALINK_PCI_ID 0x0030
+#define RALINK_PCI_CLASS 0x0034
+#define RALINK_PCI_SUBID 0x0038
+#define RALINK_PCI_STATUS 0x0050
+
+/* Some definition values */
+#define PCIE_REVISION_ID BIT(0)
+#define PCIE_CLASS_CODE (0x60400 << 8)
+#define PCIE_BAR_MAP_MAX GENMASK(30, 16)
+#define PCIE_BAR_ENABLE BIT(0)
+#define PCIE_PORT_INT_EN(x) BIT(20 + (x))
+#define PCIE_PORT_LINKUP BIT(0)
+
+#define PERST_DELAY_MS 100
+
+/**
+ * struct mt7621_pcie_port - PCIe port information
+ * @base: I/O mapped register base
+ * @list: port list
+ * @pcie: pointer to PCIe host info
+ * @clk: pointer to the port clock gate
+ * @phy: pointer to PHY control block
+ * @pcie_rst: pointer to port reset control
+ * @gpio_rst: gpio reset
+ * @slot: port slot
+ * @enabled: indicates if port is enabled
+ */
+struct mt7621_pcie_port {
+ void __iomem *base;
+ struct list_head list;
+ struct mt7621_pcie *pcie;
+ struct clk *clk;
+ struct phy *phy;
+ struct reset_control *pcie_rst;
+ struct gpio_desc *gpio_rst;
+ u32 slot;
+ bool enabled;
+};
+
+/**
+ * struct mt7621_pcie - PCIe host information
+ * @base: IO Mapped Register Base
+ * @io: IO resource
+ * @mem: pointer to non-prefetchable memory resource
+ * @dev: Pointer to PCIe device
+ * @io_map_base: virtual memory base address for io
+ * @ports: pointer to PCIe port information
+ * @resets_inverted: depends on chip revision
+ * reset lines are inverted.
+ */
+struct mt7621_pcie {
+ void __iomem *base;
+ struct device *dev;
+ struct resource io;
+ struct resource *mem;
+ unsigned long io_map_base;
+ struct list_head ports;
+ bool resets_inverted;
+};
+
+static inline u32 pcie_read(struct mt7621_pcie *pcie, u32 reg)
+{
+ return readl(pcie->base + reg);
+}
+
+static inline void pcie_write(struct mt7621_pcie *pcie, u32 val, u32 reg)
+{
+ writel(val, pcie->base + reg);
+}
+
+static inline void pcie_rmw(struct mt7621_pcie *pcie, u32 reg, u32 clr, u32 set)
+{
+ u32 val = readl(pcie->base + reg);
+
+ val &= ~clr;
+ val |= set;
+ writel(val, pcie->base + reg);
+}
+
+static inline u32 pcie_port_read(struct mt7621_pcie_port *port, u32 reg)
+{
+ return readl(port->base + reg);
+}
+
+static inline void pcie_port_write(struct mt7621_pcie_port *port,
+ u32 val, u32 reg)
+{
+ writel(val, port->base + reg);
+}
+
+static inline u32 mt7621_pci_get_cfgaddr(unsigned int bus, unsigned int slot,
+ unsigned int func, unsigned int where)
+{
+ return (((where & 0xF00) >> 8) << 24) | (bus << 16) | (slot << 11) |
+ (func << 8) | (where & 0xfc) | 0x80000000;
+}
+
+static void __iomem *mt7621_pcie_map_bus(struct pci_bus *bus,
+ unsigned int devfn, int where)
+{
+ struct mt7621_pcie *pcie = bus->sysdata;
+ u32 address = mt7621_pci_get_cfgaddr(bus->number, PCI_SLOT(devfn),
+ PCI_FUNC(devfn), where);
+
+ writel(address, pcie->base + RALINK_PCI_CONFIG_ADDR);
+
+ return pcie->base + RALINK_PCI_CONFIG_DATA + (where & 3);
+}
+
+struct pci_ops mt7621_pci_ops = {
+ .map_bus = mt7621_pcie_map_bus,
+ .read = pci_generic_config_read,
+ .write = pci_generic_config_write,
+};
+
+static u32 read_config(struct mt7621_pcie *pcie, unsigned int dev, u32 reg)
+{
+ u32 address = mt7621_pci_get_cfgaddr(0, dev, 0, reg);
+
+ pcie_write(pcie, address, RALINK_PCI_CONFIG_ADDR);
+ return pcie_read(pcie, RALINK_PCI_CONFIG_DATA);
+}
+
+static void write_config(struct mt7621_pcie *pcie, unsigned int dev,
+ u32 reg, u32 val)
+{
+ u32 address = mt7621_pci_get_cfgaddr(0, dev, 0, reg);
+
+ pcie_write(pcie, address, RALINK_PCI_CONFIG_ADDR);
+ pcie_write(pcie, val, RALINK_PCI_CONFIG_DATA);
+}
+
+static inline void mt7621_rst_gpio_pcie_assert(struct mt7621_pcie_port *port)
+{
+ if (port->gpio_rst)
+ gpiod_set_value(port->gpio_rst, 1);
+}
+
+static inline void mt7621_rst_gpio_pcie_deassert(struct mt7621_pcie_port *port)
+{
+ if (port->gpio_rst)
+ gpiod_set_value(port->gpio_rst, 0);
+}
+
+static inline bool mt7621_pcie_port_is_linkup(struct mt7621_pcie_port *port)
+{
+ return (pcie_port_read(port, RALINK_PCI_STATUS) & PCIE_PORT_LINKUP) != 0;
+}
+
+static inline void mt7621_control_assert(struct mt7621_pcie_port *port)
+{
+ struct mt7621_pcie *pcie = port->pcie;
+
+ if (pcie->resets_inverted)
+ reset_control_assert(port->pcie_rst);
+ else
+ reset_control_deassert(port->pcie_rst);
+}
+
+static inline void mt7621_control_deassert(struct mt7621_pcie_port *port)
+{
+ struct mt7621_pcie *pcie = port->pcie;
+
+ if (pcie->resets_inverted)
+ reset_control_deassert(port->pcie_rst);
+ else
+ reset_control_assert(port->pcie_rst);
+}
+
+static void setup_cm_memory_region(struct mt7621_pcie *pcie)
+{
+ struct resource *mem_resource = pcie->mem;
+ struct device *dev = pcie->dev;
+ resource_size_t mask;
+
+ if (mips_cps_numiocu(0)) {
+ /*
+ * FIXME: hardware doesn't accept mask values with 1s after
+ * 0s (e.g. 0xffef), so it would be great to warn if that's
+ * about to happen
+ */
+ mask = ~(mem_resource->end - mem_resource->start);
+
+ write_gcr_reg1_base(mem_resource->start);
+ write_gcr_reg1_mask(mask | CM_GCR_REGn_MASK_CMTGT_IOCU0);
+ dev_info(dev, "PCI coherence region base: 0x%08llx, mask/settings: 0x%08llx\n",
+ (unsigned long long)read_gcr_reg1_base(),
+ (unsigned long long)read_gcr_reg1_mask());
+ }
+}
+
+static int mt7621_pci_parse_request_of_pci_ranges(struct pci_host_bridge *host)
+{
+ struct mt7621_pcie *pcie = pci_host_bridge_priv(host);
+ struct device *dev = pcie->dev;
+ struct device_node *node = dev->of_node;
+ struct of_pci_range_parser parser;
+ struct resource_entry *entry;
+ struct of_pci_range range;
+ LIST_HEAD(res);
+
+ if (of_pci_range_parser_init(&parser, node)) {
+ dev_err(dev, "missing \"ranges\" property\n");
+ return -EINVAL;
+ }
+
+ /*
+ * IO_SPACE_LIMIT for MIPS is 0xffff but this platform uses IO at
+ * upper address 0x001e160000. of_pci_range_to_resource does not work
+ * well for MIPS platforms that don't define PCI_IOBASE, so set the IO
+ * resource manually instead.
+ */
+ for_each_of_pci_range(&parser, &range) {
+ switch (range.flags & IORESOURCE_TYPE_BITS) {
+ case IORESOURCE_IO:
+ pcie->io_map_base =
+ (unsigned long)ioremap(range.cpu_addr,
+ range.size);
+ pcie->io.name = node->full_name;
+ pcie->io.flags = range.flags;
+ pcie->io.start = range.cpu_addr;
+ pcie->io.end = range.cpu_addr + range.size - 1;
+ pcie->io.parent = pcie->io.child = pcie->io.sibling = NULL;
+ set_io_port_base(pcie->io_map_base);
+ break;
+ }
+ }
+
+ entry = resource_list_first_type(&host->windows, IORESOURCE_MEM);
+ if (!entry) {
+ dev_err(dev, "Cannot get memory resource");
+ return -EINVAL;
+ }
+
+ pcie->mem = entry->res;
+ pci_add_resource(&res, &pcie->io);
+ pci_add_resource(&res, entry->res);
+ list_splice_init(&res, &host->windows);
+
+ return 0;
+}
+
+static int mt7621_pcie_parse_port(struct mt7621_pcie *pcie,
+ int slot)
+{
+ struct mt7621_pcie_port *port;
+ struct device *dev = pcie->dev;
+ struct platform_device *pdev = to_platform_device(dev);
+ char name[10];
+
+ port = devm_kzalloc(dev, sizeof(*port), GFP_KERNEL);
+ if (!port)
+ return -ENOMEM;
+
+ port->base = devm_platform_ioremap_resource(pdev, slot + 1);
+ if (IS_ERR(port->base))
+ return PTR_ERR(port->base);
+
+ snprintf(name, sizeof(name), "pcie%d", slot);
+ port->clk = devm_clk_get(dev, name);
+ if (IS_ERR(port->clk)) {
+ dev_err(dev, "failed to get pcie%d clock\n", slot);
+ return PTR_ERR(port->clk);
+ }
+
+ snprintf(name, sizeof(name), "pcie%d", slot);
+ port->pcie_rst = devm_reset_control_get_exclusive(dev, name);
+ if (PTR_ERR(port->pcie_rst) == -EPROBE_DEFER) {
+ dev_err(dev, "failed to get pcie%d reset control\n", slot);
+ return PTR_ERR(port->pcie_rst);
+ }
+
+ snprintf(name, sizeof(name), "pcie-phy%d", slot);
+ port->phy = devm_phy_get(dev, name);
+ if (IS_ERR(port->phy) && slot != 1)
+ return PTR_ERR(port->phy);
+
+ port->gpio_rst = devm_gpiod_get_index_optional(dev, "reset", slot,
+ GPIOD_OUT_LOW);
+ if (IS_ERR(port->gpio_rst)) {
+ dev_err(dev, "Failed to get GPIO for PCIe%d\n", slot);
+ return PTR_ERR(port->gpio_rst);
+ }
+
+ port->slot = slot;
+ port->pcie = pcie;
+
+ INIT_LIST_HEAD(&port->list);
+ list_add_tail(&port->list, &pcie->ports);
+
+ return 0;
+}
+
+static int mt7621_pcie_parse_dt(struct mt7621_pcie *pcie)
+{
+ struct device *dev = pcie->dev;
+ struct platform_device *pdev = to_platform_device(dev);
+ struct device_node *node = dev->of_node, *child;
+ int err;
+
+ pcie->base = devm_platform_ioremap_resource(pdev, 0);
+ if (IS_ERR(pcie->base))
+ return PTR_ERR(pcie->base);
+
+ for_each_available_child_of_node(node, child) {
+ int slot;
+
+ err = of_pci_get_devfn(child);
+ if (err < 0) {
+ of_node_put(child);
+ dev_err(dev, "failed to parse devfn: %d\n", err);
+ return err;
+ }
+
+ slot = PCI_SLOT(err);
+
+ err = mt7621_pcie_parse_port(pcie, slot);
+ if (err) {
+ of_node_put(child);
+ return err;
+ }
+ }
+
+ return 0;
+}
+
+static int mt7621_pcie_init_port(struct mt7621_pcie_port *port)
+{
+ struct mt7621_pcie *pcie = port->pcie;
+ struct device *dev = pcie->dev;
+ u32 slot = port->slot;
+ int err;
+
+ err = phy_init(port->phy);
+ if (err) {
+ dev_err(dev, "failed to initialize port%d phy\n", slot);
+ return err;
+ }
+
+ err = phy_power_on(port->phy);
+ if (err) {
+ dev_err(dev, "failed to power on port%d phy\n", slot);
+ phy_exit(port->phy);
+ return err;
+ }
+
+ port->enabled = true;
+
+ return 0;
+}
+
+static void mt7621_pcie_reset_assert(struct mt7621_pcie *pcie)
+{
+ struct mt7621_pcie_port *port;
+
+ list_for_each_entry(port, &pcie->ports, list) {
+ /* PCIe RC reset assert */
+ mt7621_control_assert(port);
+
+ /* PCIe EP reset assert */
+ mt7621_rst_gpio_pcie_assert(port);
+ }
+
+ msleep(PERST_DELAY_MS);
+}
+
+static void mt7621_pcie_reset_rc_deassert(struct mt7621_pcie *pcie)
+{
+ struct mt7621_pcie_port *port;
+
+ list_for_each_entry(port, &pcie->ports, list)
+ mt7621_control_deassert(port);
+}
+
+static void mt7621_pcie_reset_ep_deassert(struct mt7621_pcie *pcie)
+{
+ struct mt7621_pcie_port *port;
+
+ list_for_each_entry(port, &pcie->ports, list)
+ mt7621_rst_gpio_pcie_deassert(port);
+
+ msleep(PERST_DELAY_MS);
+}
+
+static void mt7621_pcie_init_ports(struct mt7621_pcie *pcie)
+{
+ struct device *dev = pcie->dev;
+ struct mt7621_pcie_port *port, *tmp;
+ int err;
+
+ mt7621_pcie_reset_assert(pcie);
+ mt7621_pcie_reset_rc_deassert(pcie);
+
+ list_for_each_entry_safe(port, tmp, &pcie->ports, list) {
+ u32 slot = port->slot;
+
+ if (slot == 1) {
+ port->enabled = true;
+ continue;
+ }
+
+ err = mt7621_pcie_init_port(port);
+ if (err) {
+ dev_err(dev, "Initiating port %d failed\n", slot);
+ list_del(&port->list);
+ }
+ }
+
+ mt7621_pcie_reset_ep_deassert(pcie);
+
+ tmp = NULL;
+ list_for_each_entry(port, &pcie->ports, list) {
+ u32 slot = port->slot;
+
+ if (!mt7621_pcie_port_is_linkup(port)) {
+ dev_err(dev, "pcie%d no card, disable it (RST & CLK)\n",
+ slot);
+ mt7621_control_assert(port);
+ clk_disable_unprepare(port->clk);
+ port->enabled = false;
+
+ if (slot == 0) {
+ tmp = port;
+ continue;
+ }
+
+ if (slot == 1 && tmp && !tmp->enabled)
+ phy_power_off(tmp->phy);
+ }
+ }
+}
+
+static void mt7621_pcie_enable_port(struct mt7621_pcie_port *port)
+{
+ struct mt7621_pcie *pcie = port->pcie;
+ u32 slot = port->slot;
+ u32 offset = MT7621_PCIE_OFFSET + (slot * MT7621_NEXT_PORT);
+ u32 val;
+
+ /* enable pcie interrupt */
+ val = pcie_read(pcie, RALINK_PCI_PCIMSK_ADDR);
+ val |= PCIE_PORT_INT_EN(slot);
+ pcie_write(pcie, val, RALINK_PCI_PCIMSK_ADDR);
+
+ /* map 2G DDR region */
+ pcie_write(pcie, PCIE_BAR_MAP_MAX | PCIE_BAR_ENABLE,
+ offset + RALINK_PCI_BAR0SETUP_ADDR);
+
+ /* configure class code and revision ID */
+ pcie_write(pcie, PCIE_CLASS_CODE | PCIE_REVISION_ID,
+ offset + RALINK_PCI_CLASS);
+}
+
+static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
+{
+ struct device *dev = pcie->dev;
+ struct mt7621_pcie_port *port;
+ u8 num_slots_enabled = 0;
+ u32 slot;
+ u32 val;
+ int err;
+
+ /* Setup MEMWIN and IOWIN */
+ pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
+ pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
+
+ list_for_each_entry(port, &pcie->ports, list) {
+ if (port->enabled) {
+ err = clk_prepare_enable(port->clk);
+ if (err) {
+ dev_err(dev, "enabling clk pcie%d\n", slot);
+ return err;
+ }
+
+ mt7621_pcie_enable_port(port);
+ dev_info(dev, "PCIE%d enabled\n", port->slot);
+ num_slots_enabled++;
+ }
+ }
+
+ for (slot = 0; slot < num_slots_enabled; slot++) {
+ val = read_config(pcie, slot, PCI_COMMAND);
+ val |= PCI_COMMAND_MASTER;
+ write_config(pcie, slot, PCI_COMMAND, val);
+ /* configure RC FTS number to 250 when it leaves L0s */
+ val = read_config(pcie, slot, PCIE_FTS_NUM);
+ val &= ~PCIE_FTS_NUM_MASK;
+ val |= PCIE_FTS_NUM_L0(0x50);
+ write_config(pcie, slot, PCIE_FTS_NUM, val);
+ }
+
+ return 0;
+}
+
+static int mt7621_pcie_register_host(struct pci_host_bridge *host)
+{
+ struct mt7621_pcie *pcie = pci_host_bridge_priv(host);
+
+ host->ops = &mt7621_pci_ops;
+ host->sysdata = pcie;
+ return pci_host_probe(host);
+}
+
+static const struct soc_device_attribute mt7621_pci_quirks_match[] = {
+ { .soc_id = "mt7621", .revision = "E2" }
+};
+
+static int mt7621_pci_probe(struct platform_device *pdev)
+{
+ struct device *dev = &pdev->dev;
+ const struct soc_device_attribute *attr;
+ struct mt7621_pcie *pcie;
+ struct pci_host_bridge *bridge;
+ int err;
+
+ if (!dev->of_node)
+ return -ENODEV;
+
+ bridge = devm_pci_alloc_host_bridge(dev, sizeof(*pcie));
+ if (!bridge)
+ return -ENOMEM;
+
+ pcie = pci_host_bridge_priv(bridge);
+ pcie->dev = dev;
+ platform_set_drvdata(pdev, pcie);
+ INIT_LIST_HEAD(&pcie->ports);
+
+ attr = soc_device_match(mt7621_pci_quirks_match);
+ if (attr)
+ pcie->resets_inverted = true;
+
+ err = mt7621_pcie_parse_dt(pcie);
+ if (err) {
+ dev_err(dev, "Parsing DT failed\n");
+ return err;
+ }
+
+ err = mt7621_pci_parse_request_of_pci_ranges(bridge);
+ if (err) {
+ dev_err(dev, "Error requesting pci resources from ranges");
+ return err;
+ }
+
+ /* set resources limits */
+ ioport_resource.start = pcie->io.start;
+ ioport_resource.end = pcie->io.end;
+
+ mt7621_pcie_init_ports(pcie);
+
+ err = mt7621_pcie_enable_ports(pcie);
+ if (err) {
+ dev_err(dev, "Error enabling pcie ports\n");
+ return err;
+ }
+
+ setup_cm_memory_region(pcie);
+
+ return mt7621_pcie_register_host(bridge);
+}
+
+static const struct of_device_id mt7621_pci_ids[] = {
+ { .compatible = "mediatek,mt7621-pci" },
+ {},
+};
+MODULE_DEVICE_TABLE(of, mt7621_pci_ids);
+
+static struct platform_driver mt7621_pci_driver = {
+ .probe = mt7621_pci_probe,
+ .driver = {
+ .name = "mt7621-pci",
+ .of_match_table = of_match_ptr(mt7621_pci_ids),
+ },
+};
+builtin_platform_driver(mt7621_pci_driver);
diff --git a/arch/mips/ralink/Kconfig b/arch/mips/ralink/Kconfig
index ec4daa63c5e3..50e5a54f7d9e 100644
--- a/arch/mips/ralink/Kconfig
+++ b/arch/mips/ralink/Kconfig
@@ -56,7 +56,7 @@ choice
select MIPS_GIC
select COMMON_CLK
select CLKSRC_MIPS_GIC
- select HAVE_PCI if PCI_MT7621
+ select HAVE_PCI
select SOC_BUS
endchoice

@@ -101,4 +101,11 @@ choice

endchoice

+config PCI_MT7621
+ bool "MediaTek MT7621 PCI Controller"
+ depends on RALINK && SOC_MT7621
+ select PCI_DRIVERS_GENERIC
+ help
+ This selects a driver for the MediaTek MT7621 PCI Controller.
+
endif
--
2.25.1



2021-05-31 13:16:03

by Pali Rohár

[permalink] [raw]
Subject: Re: [PATCH 2/4] MIPS: pci: Add driver for MT7621 PCIe controller

On Saturday 15 May 2021 14:40:53 Sergio Paracuellos wrote:
> This patch adds a driver for the PCIe controller of MT7621 SoC.
>
> Signed-off-by: Sergio Paracuellos <[email protected]>
> ---
> arch/mips/pci/Makefile | 1 +
> arch/mips/pci/pci-mt7621.c | 624 +++++++++++++++++++++++++++++++++++++
> arch/mips/ralink/Kconfig | 9 +-
> 3 files changed, 633 insertions(+), 1 deletion(-)
> create mode 100644 arch/mips/pci/pci-mt7621.c
>
> diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile
> index f3eecc065e5c..178c550739c4 100644
> --- a/arch/mips/pci/Makefile
> +++ b/arch/mips/pci/Makefile
> @@ -24,6 +24,7 @@ obj-$(CONFIG_PCI_AR2315) += pci-ar2315.o
> obj-$(CONFIG_SOC_AR71XX) += pci-ar71xx.o
> obj-$(CONFIG_PCI_AR724X) += pci-ar724x.o
> obj-$(CONFIG_PCI_XTALK_BRIDGE) += pci-xtalk-bridge.o
> +obj-$(CONFIG_PCI_MT7621) += pci-mt7621.o
> #
> # These are still pretty much in the old state, watch, go blind.
> #
> diff --git a/arch/mips/pci/pci-mt7621.c b/arch/mips/pci/pci-mt7621.c
> new file mode 100644
> index 000000000000..fe1945819d25
> --- /dev/null
> +++ b/arch/mips/pci/pci-mt7621.c
...
> +static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> +{
> + struct device *dev = pcie->dev;
> + struct mt7621_pcie_port *port;
> + u8 num_slots_enabled = 0;
> + u32 slot;
> + u32 val;
> + int err;
> +
> + /* Setup MEMWIN and IOWIN */
> + pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> + pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
> +
> + list_for_each_entry(port, &pcie->ports, list) {
> + if (port->enabled) {
> + err = clk_prepare_enable(port->clk);
> + if (err) {
> + dev_err(dev, "enabling clk pcie%d\n", slot);
> + return err;
> + }
> +
> + mt7621_pcie_enable_port(port);
> + dev_info(dev, "PCIE%d enabled\n", port->slot);
> + num_slots_enabled++;
> + }
> + }
> +
> + for (slot = 0; slot < num_slots_enabled; slot++) {
> + val = read_config(pcie, slot, PCI_COMMAND);
> + val |= PCI_COMMAND_MASTER;
> + write_config(pcie, slot, PCI_COMMAND, val);

Hello! Is this part of code correct? Because it looks strange if PCIe
controller driver automatically enables PCI bus mastering, prior device
driver initialize itself.

Moreover kernel has already function pci_set_master() for this purpose
which is used by device drivers.

So I think this code can confuse some device drivers...

> + /* configure RC FTS number to 250 when it leaves L0s */
> + val = read_config(pcie, slot, PCIE_FTS_NUM);
> + val &= ~PCIE_FTS_NUM_MASK;
> + val |= PCIE_FTS_NUM_L0(0x50);
> + write_config(pcie, slot, PCIE_FTS_NUM, val);
> + }
> +
> + return 0;
> +}

2021-05-31 15:12:57

by Sergio Paracuellos

[permalink] [raw]
Subject: Re: [PATCH 2/4] MIPS: pci: Add driver for MT7621 PCIe controller

Hi Pali,

Thanks for your comments.

On Mon, May 31, 2021 at 3:14 PM Pali Rohár <[email protected]> wrote:
>
> On Saturday 15 May 2021 14:40:53 Sergio Paracuellos wrote:
> > This patch adds a driver for the PCIe controller of MT7621 SoC.
> >
> > Signed-off-by: Sergio Paracuellos <[email protected]>
> > ---
> > arch/mips/pci/Makefile | 1 +
> > arch/mips/pci/pci-mt7621.c | 624 +++++++++++++++++++++++++++++++++++++
> > arch/mips/ralink/Kconfig | 9 +-
> > 3 files changed, 633 insertions(+), 1 deletion(-)
> > create mode 100644 arch/mips/pci/pci-mt7621.c
> >
> > diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile
> > index f3eecc065e5c..178c550739c4 100644
> > --- a/arch/mips/pci/Makefile
> > +++ b/arch/mips/pci/Makefile
> > @@ -24,6 +24,7 @@ obj-$(CONFIG_PCI_AR2315) += pci-ar2315.o
> > obj-$(CONFIG_SOC_AR71XX) += pci-ar71xx.o
> > obj-$(CONFIG_PCI_AR724X) += pci-ar724x.o
> > obj-$(CONFIG_PCI_XTALK_BRIDGE) += pci-xtalk-bridge.o
> > +obj-$(CONFIG_PCI_MT7621) += pci-mt7621.o
> > #
> > # These are still pretty much in the old state, watch, go blind.
> > #
> > diff --git a/arch/mips/pci/pci-mt7621.c b/arch/mips/pci/pci-mt7621.c
> > new file mode 100644
> > index 000000000000..fe1945819d25
> > --- /dev/null
> > +++ b/arch/mips/pci/pci-mt7621.c
> ...
> > +static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> > +{
> > + struct device *dev = pcie->dev;
> > + struct mt7621_pcie_port *port;
> > + u8 num_slots_enabled = 0;
> > + u32 slot;
> > + u32 val;
> > + int err;
> > +
> > + /* Setup MEMWIN and IOWIN */
> > + pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> > + pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
> > +
> > + list_for_each_entry(port, &pcie->ports, list) {
> > + if (port->enabled) {
> > + err = clk_prepare_enable(port->clk);
> > + if (err) {
> > + dev_err(dev, "enabling clk pcie%d\n", slot);
> > + return err;
> > + }
> > +
> > + mt7621_pcie_enable_port(port);
> > + dev_info(dev, "PCIE%d enabled\n", port->slot);
> > + num_slots_enabled++;
> > + }
> > + }
> > +
> > + for (slot = 0; slot < num_slots_enabled; slot++) {
> > + val = read_config(pcie, slot, PCI_COMMAND);
> > + val |= PCI_COMMAND_MASTER;
> > + write_config(pcie, slot, PCI_COMMAND, val);
>
> Hello! Is this part of code correct? Because it looks strange if PCIe
> controller driver automatically enables PCI bus mastering, prior device
> driver initialize itself.
>
> Moreover kernel has already function pci_set_master() for this purpose
> which is used by device drivers.
>
> So I think this code can confuse some device drivers...

I agree that we have pci_set_master() to be used in pci device driver
code. Original controller driver set this bit for enabled slots. Since
there is no documentation at all for the PCI in this SoC I have
maintained the setting in the driver in a cleaner way. See original
driver code and the setting here [0]. There is no other reason than
that. I am ok with removing this from here and testing with my two
devices that everything is still ok if having this setting in the pci
controller driver is a real problem.

[0]: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/tree/drivers/staging/mt7621-pci/pci-mt7621.c?h=v4.18#n676

Best regards,
Sergio Paracuellos
>
> > + /* configure RC FTS number to 250 when it leaves L0s */
> > + val = read_config(pcie, slot, PCIE_FTS_NUM);
> > + val &= ~PCIE_FTS_NUM_MASK;
> > + val |= PCIE_FTS_NUM_L0(0x50);
> > + write_config(pcie, slot, PCIE_FTS_NUM, val);
> > + }
> > +
> > + return 0;
> > +}

2021-05-31 16:04:20

by Pali Rohár

[permalink] [raw]
Subject: Re: [PATCH 2/4] MIPS: pci: Add driver for MT7621 PCIe controller

On Monday 31 May 2021 15:39:55 Sergio Paracuellos wrote:
> Hi Pali,
>
> Thanks for your comments.
>
> On Mon, May 31, 2021 at 3:14 PM Pali Rohár <[email protected]> wrote:
> >
> > On Saturday 15 May 2021 14:40:53 Sergio Paracuellos wrote:
> > > This patch adds a driver for the PCIe controller of MT7621 SoC.
> > >
> > > Signed-off-by: Sergio Paracuellos <[email protected]>
> > > ---
> > > arch/mips/pci/Makefile | 1 +
> > > arch/mips/pci/pci-mt7621.c | 624 +++++++++++++++++++++++++++++++++++++
> > > arch/mips/ralink/Kconfig | 9 +-
> > > 3 files changed, 633 insertions(+), 1 deletion(-)
> > > create mode 100644 arch/mips/pci/pci-mt7621.c
> > >
> > > diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile
> > > index f3eecc065e5c..178c550739c4 100644
> > > --- a/arch/mips/pci/Makefile
> > > +++ b/arch/mips/pci/Makefile
> > > @@ -24,6 +24,7 @@ obj-$(CONFIG_PCI_AR2315) += pci-ar2315.o
> > > obj-$(CONFIG_SOC_AR71XX) += pci-ar71xx.o
> > > obj-$(CONFIG_PCI_AR724X) += pci-ar724x.o
> > > obj-$(CONFIG_PCI_XTALK_BRIDGE) += pci-xtalk-bridge.o
> > > +obj-$(CONFIG_PCI_MT7621) += pci-mt7621.o
> > > #
> > > # These are still pretty much in the old state, watch, go blind.
> > > #
> > > diff --git a/arch/mips/pci/pci-mt7621.c b/arch/mips/pci/pci-mt7621.c
> > > new file mode 100644
> > > index 000000000000..fe1945819d25
> > > --- /dev/null
> > > +++ b/arch/mips/pci/pci-mt7621.c
> > ...
> > > +static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> > > +{
> > > + struct device *dev = pcie->dev;
> > > + struct mt7621_pcie_port *port;
> > > + u8 num_slots_enabled = 0;
> > > + u32 slot;
> > > + u32 val;
> > > + int err;
> > > +
> > > + /* Setup MEMWIN and IOWIN */
> > > + pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> > > + pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
> > > +
> > > + list_for_each_entry(port, &pcie->ports, list) {
> > > + if (port->enabled) {
> > > + err = clk_prepare_enable(port->clk);
> > > + if (err) {
> > > + dev_err(dev, "enabling clk pcie%d\n", slot);
> > > + return err;
> > > + }
> > > +
> > > + mt7621_pcie_enable_port(port);
> > > + dev_info(dev, "PCIE%d enabled\n", port->slot);
> > > + num_slots_enabled++;
> > > + }
> > > + }
> > > +
> > > + for (slot = 0; slot < num_slots_enabled; slot++) {
> > > + val = read_config(pcie, slot, PCI_COMMAND);
> > > + val |= PCI_COMMAND_MASTER;
> > > + write_config(pcie, slot, PCI_COMMAND, val);
> >
> > Hello! Is this part of code correct? Because it looks strange if PCIe
> > controller driver automatically enables PCI bus mastering, prior device
> > driver initialize itself.
> >
> > Moreover kernel has already function pci_set_master() for this purpose
> > which is used by device drivers.
> >
> > So I think this code can confuse some device drivers...
>
> I agree that we have pci_set_master() to be used in pci device driver
> code. Original controller driver set this bit for enabled slots. Since
> there is no documentation at all for the PCI in this SoC

I see... this is really a big problem to do any driver development...

> I have
> maintained the setting in the driver in a cleaner way. See original
> driver code and the setting here [0]. There is no other reason than
> that. I am ok with removing this from here and testing with my two
> devices that everything is still ok if having this setting in the pci
> controller driver is a real problem.

You can run lspci -nnvv with and without PCI_COMMAND_MASTER code and
then compare outputs.

Device drivers for sure enable PCI_COMMAND_MASTER at the time when it is
needed, so it is possible that there would be no difference in lspci
output.

> [0]: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/tree/drivers/staging/mt7621-pci/pci-mt7621.c?h=v4.18#n676
>
> Best regards,
> Sergio Paracuellos
> >
> > > + /* configure RC FTS number to 250 when it leaves L0s */
> > > + val = read_config(pcie, slot, PCIE_FTS_NUM);
> > > + val &= ~PCIE_FTS_NUM_MASK;
> > > + val |= PCIE_FTS_NUM_L0(0x50);
> > > + write_config(pcie, slot, PCIE_FTS_NUM, val);
> > > + }
> > > +
> > > + return 0;
> > > +}

2021-05-31 17:01:48

by Sergio Paracuellos

[permalink] [raw]
Subject: Re: [PATCH 2/4] MIPS: pci: Add driver for MT7621 PCIe controller

On Mon, May 31, 2021 at 3:50 PM Pali Rohár <[email protected]> wrote:
>
> On Monday 31 May 2021 15:39:55 Sergio Paracuellos wrote:
> > Hi Pali,
> >
> > Thanks for your comments.
> >
> > On Mon, May 31, 2021 at 3:14 PM Pali Rohár <[email protected]> wrote:
> > >
> > > On Saturday 15 May 2021 14:40:53 Sergio Paracuellos wrote:
> > > > This patch adds a driver for the PCIe controller of MT7621 SoC.
> > > >
> > > > Signed-off-by: Sergio Paracuellos <[email protected]>
> > > > ---
> > > > arch/mips/pci/Makefile | 1 +
> > > > arch/mips/pci/pci-mt7621.c | 624 +++++++++++++++++++++++++++++++++++++
> > > > arch/mips/ralink/Kconfig | 9 +-
> > > > 3 files changed, 633 insertions(+), 1 deletion(-)
> > > > create mode 100644 arch/mips/pci/pci-mt7621.c
> > > >
> > > > diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile
> > > > index f3eecc065e5c..178c550739c4 100644
> > > > --- a/arch/mips/pci/Makefile
> > > > +++ b/arch/mips/pci/Makefile
> > > > @@ -24,6 +24,7 @@ obj-$(CONFIG_PCI_AR2315) += pci-ar2315.o
> > > > obj-$(CONFIG_SOC_AR71XX) += pci-ar71xx.o
> > > > obj-$(CONFIG_PCI_AR724X) += pci-ar724x.o
> > > > obj-$(CONFIG_PCI_XTALK_BRIDGE) += pci-xtalk-bridge.o
> > > > +obj-$(CONFIG_PCI_MT7621) += pci-mt7621.o
> > > > #
> > > > # These are still pretty much in the old state, watch, go blind.
> > > > #
> > > > diff --git a/arch/mips/pci/pci-mt7621.c b/arch/mips/pci/pci-mt7621.c
> > > > new file mode 100644
> > > > index 000000000000..fe1945819d25
> > > > --- /dev/null
> > > > +++ b/arch/mips/pci/pci-mt7621.c
> > > ...
> > > > +static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> > > > +{
> > > > + struct device *dev = pcie->dev;
> > > > + struct mt7621_pcie_port *port;
> > > > + u8 num_slots_enabled = 0;
> > > > + u32 slot;
> > > > + u32 val;
> > > > + int err;
> > > > +
> > > > + /* Setup MEMWIN and IOWIN */
> > > > + pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> > > > + pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
> > > > +
> > > > + list_for_each_entry(port, &pcie->ports, list) {
> > > > + if (port->enabled) {
> > > > + err = clk_prepare_enable(port->clk);
> > > > + if (err) {
> > > > + dev_err(dev, "enabling clk pcie%d\n", slot);
> > > > + return err;
> > > > + }
> > > > +
> > > > + mt7621_pcie_enable_port(port);
> > > > + dev_info(dev, "PCIE%d enabled\n", port->slot);
> > > > + num_slots_enabled++;
> > > > + }
> > > > + }
> > > > +
> > > > + for (slot = 0; slot < num_slots_enabled; slot++) {
> > > > + val = read_config(pcie, slot, PCI_COMMAND);
> > > > + val |= PCI_COMMAND_MASTER;
> > > > + write_config(pcie, slot, PCI_COMMAND, val);
> > >
> > > Hello! Is this part of code correct? Because it looks strange if PCIe
> > > controller driver automatically enables PCI bus mastering, prior device
> > > driver initialize itself.
> > >
> > > Moreover kernel has already function pci_set_master() for this purpose
> > > which is used by device drivers.
> > >
> > > So I think this code can confuse some device drivers...
> >
> > I agree that we have pci_set_master() to be used in pci device driver
> > code. Original controller driver set this bit for enabled slots. Since
> > there is no documentation at all for the PCI in this SoC
>
> I see... this is really a big problem to do any driver development...

For sure it is :(.

>
> > I have
> > maintained the setting in the driver in a cleaner way. See original
> > driver code and the setting here [0]. There is no other reason than
> > that. I am ok with removing this from here and testing with my two
> > devices that everything is still ok if having this setting in the pci
> > controller driver is a real problem.
>
> You can run lspci -nnvv with and without PCI_COMMAND_MASTER code and
> then compare outputs.
>
> Device drivers for sure enable PCI_COMMAND_MASTER at the time when it is
> needed, so it is possible that there would be no difference in lspci
> output.

Thanks. I will take this into account when v2 is submitted after more
review comments come :).

>
> > [0]: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/tree/drivers/staging/mt7621-pci/pci-mt7621.c?h=v4.18#n676
> >
> > Best regards,
> > Sergio Paracuellos
> > >
> > > > + /* configure RC FTS number to 250 when it leaves L0s */
> > > > + val = read_config(pcie, slot, PCIE_FTS_NUM);
> > > > + val &= ~PCIE_FTS_NUM_MASK;
> > > > + val |= PCIE_FTS_NUM_L0(0x50);
> > > > + write_config(pcie, slot, PCIE_FTS_NUM, val);
> > > > + }
> > > > +
> > > > + return 0;
> > > > +}

2021-06-02 12:20:50

by Sergio Paracuellos

[permalink] [raw]
Subject: Re: [PATCH 2/4] MIPS: pci: Add driver for MT7621 PCIe controller

Hi Pali,

On Mon, May 31, 2021 at 4:19 PM Sergio Paracuellos
<[email protected]> wrote:
>
> On Mon, May 31, 2021 at 3:50 PM Pali Rohár <[email protected]> wrote:
> >
> > On Monday 31 May 2021 15:39:55 Sergio Paracuellos wrote:
> > > Hi Pali,
> > >
> > > Thanks for your comments.
> > >
> > > On Mon, May 31, 2021 at 3:14 PM Pali Rohár <[email protected]> wrote:
> > > >
> > > > On Saturday 15 May 2021 14:40:53 Sergio Paracuellos wrote:
> > > > > This patch adds a driver for the PCIe controller of MT7621 SoC.
> > > > >
> > > > > Signed-off-by: Sergio Paracuellos <[email protected]>
> > > > > ---
> > > > > arch/mips/pci/Makefile | 1 +
> > > > > arch/mips/pci/pci-mt7621.c | 624 +++++++++++++++++++++++++++++++++++++
> > > > > arch/mips/ralink/Kconfig | 9 +-
> > > > > 3 files changed, 633 insertions(+), 1 deletion(-)
> > > > > create mode 100644 arch/mips/pci/pci-mt7621.c
> > > > >
> > > > > diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile
> > > > > index f3eecc065e5c..178c550739c4 100644
> > > > > --- a/arch/mips/pci/Makefile
> > > > > +++ b/arch/mips/pci/Makefile
> > > > > @@ -24,6 +24,7 @@ obj-$(CONFIG_PCI_AR2315) += pci-ar2315.o
> > > > > obj-$(CONFIG_SOC_AR71XX) += pci-ar71xx.o
> > > > > obj-$(CONFIG_PCI_AR724X) += pci-ar724x.o
> > > > > obj-$(CONFIG_PCI_XTALK_BRIDGE) += pci-xtalk-bridge.o
> > > > > +obj-$(CONFIG_PCI_MT7621) += pci-mt7621.o
> > > > > #
> > > > > # These are still pretty much in the old state, watch, go blind.
> > > > > #
> > > > > diff --git a/arch/mips/pci/pci-mt7621.c b/arch/mips/pci/pci-mt7621.c
> > > > > new file mode 100644
> > > > > index 000000000000..fe1945819d25
> > > > > --- /dev/null
> > > > > +++ b/arch/mips/pci/pci-mt7621.c
> > > > ...
> > > > > +static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> > > > > +{
> > > > > + struct device *dev = pcie->dev;
> > > > > + struct mt7621_pcie_port *port;
> > > > > + u8 num_slots_enabled = 0;
> > > > > + u32 slot;
> > > > > + u32 val;
> > > > > + int err;
> > > > > +
> > > > > + /* Setup MEMWIN and IOWIN */
> > > > > + pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> > > > > + pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
> > > > > +
> > > > > + list_for_each_entry(port, &pcie->ports, list) {
> > > > > + if (port->enabled) {
> > > > > + err = clk_prepare_enable(port->clk);
> > > > > + if (err) {
> > > > > + dev_err(dev, "enabling clk pcie%d\n", slot);
> > > > > + return err;
> > > > > + }
> > > > > +
> > > > > + mt7621_pcie_enable_port(port);
> > > > > + dev_info(dev, "PCIE%d enabled\n", port->slot);
> > > > > + num_slots_enabled++;
> > > > > + }
> > > > > + }
> > > > > +
> > > > > + for (slot = 0; slot < num_slots_enabled; slot++) {
> > > > > + val = read_config(pcie, slot, PCI_COMMAND);
> > > > > + val |= PCI_COMMAND_MASTER;
> > > > > + write_config(pcie, slot, PCI_COMMAND, val);
> > > >
> > > > Hello! Is this part of code correct? Because it looks strange if PCIe
> > > > controller driver automatically enables PCI bus mastering, prior device
> > > > driver initialize itself.
> > > >
> > > > Moreover kernel has already function pci_set_master() for this purpose
> > > > which is used by device drivers.
> > > >
> > > > So I think this code can confuse some device drivers...
> > >
> > > I agree that we have pci_set_master() to be used in pci device driver
> > > code. Original controller driver set this bit for enabled slots. Since
> > > there is no documentation at all for the PCI in this SoC
> >
> > I see... this is really a big problem to do any driver development...
>
> For sure it is :(.
>
> >
> > > I have
> > > maintained the setting in the driver in a cleaner way. See original
> > > driver code and the setting here [0]. There is no other reason than
> > > that. I am ok with removing this from here and testing with my two
> > > devices that everything is still ok if having this setting in the pci
> > > controller driver is a real problem.
> >
> > You can run lspci -nnvv with and without PCI_COMMAND_MASTER code and
> > then compare outputs.
> >
> > Device drivers for sure enable PCI_COMMAND_MASTER at the time when it is
> > needed, so it is possible that there would be no difference in lspci
> > output.
>
> Thanks. I will take this into account when v2 is submitted after more
> review comments come :).

I have tested to remove this and check lspci -nnvv output with and
without PCI_COMMAND_MASTER code and, as you pointed out, there is no
difference between them. Also, both boards are working without
regressions at all. So I will remove this code for next version.

Thanks,
Sergio Paracuellos
>
> >
> > > [0]: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/tree/drivers/staging/mt7621-pci/pci-mt7621.c?h=v4.18#n676
> > >
> > > Best regards,
> > > Sergio Paracuellos
> > > >
> > > > > + /* configure RC FTS number to 250 when it leaves L0s */
> > > > > + val = read_config(pcie, slot, PCIE_FTS_NUM);
> > > > > + val &= ~PCIE_FTS_NUM_MASK;
> > > > > + val |= PCIE_FTS_NUM_L0(0x50);
> > > > > + write_config(pcie, slot, PCIE_FTS_NUM, val);
> > > > > + }
> > > > > +
> > > > > + return 0;
> > > > > +}

2021-06-02 12:27:49

by Pali Rohár

[permalink] [raw]
Subject: Re: [PATCH 2/4] MIPS: pci: Add driver for MT7621 PCIe controller

On Wednesday 02 June 2021 14:16:26 Sergio Paracuellos wrote:
> Hi Pali,
>
> On Mon, May 31, 2021 at 4:19 PM Sergio Paracuellos
> <[email protected]> wrote:
> >
> > On Mon, May 31, 2021 at 3:50 PM Pali Rohár <[email protected]> wrote:
> > >
> > > On Monday 31 May 2021 15:39:55 Sergio Paracuellos wrote:
> > > > Hi Pali,
> > > >
> > > > Thanks for your comments.
> > > >
> > > > On Mon, May 31, 2021 at 3:14 PM Pali Rohár <[email protected]> wrote:
> > > > >
> > > > > On Saturday 15 May 2021 14:40:53 Sergio Paracuellos wrote:
> > > > > > This patch adds a driver for the PCIe controller of MT7621 SoC.
> > > > > >
> > > > > > Signed-off-by: Sergio Paracuellos <[email protected]>
> > > > > > ---
> > > > > > arch/mips/pci/Makefile | 1 +
> > > > > > arch/mips/pci/pci-mt7621.c | 624 +++++++++++++++++++++++++++++++++++++
> > > > > > arch/mips/ralink/Kconfig | 9 +-
> > > > > > 3 files changed, 633 insertions(+), 1 deletion(-)
> > > > > > create mode 100644 arch/mips/pci/pci-mt7621.c
> > > > > >
> > > > > > diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile
> > > > > > index f3eecc065e5c..178c550739c4 100644
> > > > > > --- a/arch/mips/pci/Makefile
> > > > > > +++ b/arch/mips/pci/Makefile
> > > > > > @@ -24,6 +24,7 @@ obj-$(CONFIG_PCI_AR2315) += pci-ar2315.o
> > > > > > obj-$(CONFIG_SOC_AR71XX) += pci-ar71xx.o
> > > > > > obj-$(CONFIG_PCI_AR724X) += pci-ar724x.o
> > > > > > obj-$(CONFIG_PCI_XTALK_BRIDGE) += pci-xtalk-bridge.o
> > > > > > +obj-$(CONFIG_PCI_MT7621) += pci-mt7621.o
> > > > > > #
> > > > > > # These are still pretty much in the old state, watch, go blind.
> > > > > > #
> > > > > > diff --git a/arch/mips/pci/pci-mt7621.c b/arch/mips/pci/pci-mt7621.c
> > > > > > new file mode 100644
> > > > > > index 000000000000..fe1945819d25
> > > > > > --- /dev/null
> > > > > > +++ b/arch/mips/pci/pci-mt7621.c
> > > > > ...
> > > > > > +static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> > > > > > +{
> > > > > > + struct device *dev = pcie->dev;
> > > > > > + struct mt7621_pcie_port *port;
> > > > > > + u8 num_slots_enabled = 0;
> > > > > > + u32 slot;
> > > > > > + u32 val;
> > > > > > + int err;
> > > > > > +
> > > > > > + /* Setup MEMWIN and IOWIN */
> > > > > > + pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> > > > > > + pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
> > > > > > +
> > > > > > + list_for_each_entry(port, &pcie->ports, list) {
> > > > > > + if (port->enabled) {
> > > > > > + err = clk_prepare_enable(port->clk);
> > > > > > + if (err) {
> > > > > > + dev_err(dev, "enabling clk pcie%d\n", slot);
> > > > > > + return err;
> > > > > > + }
> > > > > > +
> > > > > > + mt7621_pcie_enable_port(port);
> > > > > > + dev_info(dev, "PCIE%d enabled\n", port->slot);
> > > > > > + num_slots_enabled++;
> > > > > > + }
> > > > > > + }
> > > > > > +
> > > > > > + for (slot = 0; slot < num_slots_enabled; slot++) {
> > > > > > + val = read_config(pcie, slot, PCI_COMMAND);
> > > > > > + val |= PCI_COMMAND_MASTER;
> > > > > > + write_config(pcie, slot, PCI_COMMAND, val);
> > > > >
> > > > > Hello! Is this part of code correct? Because it looks strange if PCIe
> > > > > controller driver automatically enables PCI bus mastering, prior device
> > > > > driver initialize itself.
> > > > >
> > > > > Moreover kernel has already function pci_set_master() for this purpose
> > > > > which is used by device drivers.
> > > > >
> > > > > So I think this code can confuse some device drivers...
> > > >
> > > > I agree that we have pci_set_master() to be used in pci device driver
> > > > code. Original controller driver set this bit for enabled slots. Since
> > > > there is no documentation at all for the PCI in this SoC
> > >
> > > I see... this is really a big problem to do any driver development...
> >
> > For sure it is :(.
> >
> > >
> > > > I have
> > > > maintained the setting in the driver in a cleaner way. See original
> > > > driver code and the setting here [0]. There is no other reason than
> > > > that. I am ok with removing this from here and testing with my two
> > > > devices that everything is still ok if having this setting in the pci
> > > > controller driver is a real problem.
> > >
> > > You can run lspci -nnvv with and without PCI_COMMAND_MASTER code and
> > > then compare outputs.
> > >
> > > Device drivers for sure enable PCI_COMMAND_MASTER at the time when it is
> > > needed, so it is possible that there would be no difference in lspci
> > > output.
> >
> > Thanks. I will take this into account when v2 is submitted after more
> > review comments come :).
>
> I have tested to remove this and check lspci -nnvv output with and
> without PCI_COMMAND_MASTER code and, as you pointed out, there is no
> difference between them. Also, both boards are working without
> regressions at all. So I will remove this code for next version.

Perfect!

> Thanks,
> Sergio Paracuellos
> >
> > >
> > > > [0]: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/tree/drivers/staging/mt7621-pci/pci-mt7621.c?h=v4.18#n676
> > > >
> > > > Best regards,
> > > > Sergio Paracuellos
> > > > >
> > > > > > + /* configure RC FTS number to 250 when it leaves L0s */
> > > > > > + val = read_config(pcie, slot, PCIE_FTS_NUM);
> > > > > > + val &= ~PCIE_FTS_NUM_MASK;
> > > > > > + val |= PCIE_FTS_NUM_L0(0x50);
> > > > > > + write_config(pcie, slot, PCIE_FTS_NUM, val);

Could you look also what is doing this code (PCIE_FTS_NUM)? It is marked
as MT specific register. But from this code for me it looks like that it
just access config space of some device and therefore it could be some
standard PCIe register. Just with hardcoded calculated offset.

Could you provide output from lspci -nnvv? So other people could look at
it and maybe we decode what is this code doing and if it is needed.

> > > > > > + }
> > > > > > +
> > > > > > + return 0;
> > > > > > +}

2021-06-02 12:46:48

by Sergio Paracuellos

[permalink] [raw]
Subject: Re: [PATCH 2/4] MIPS: pci: Add driver for MT7621 PCIe controller

Hi Pali,

On Wed, Jun 2, 2021 at 2:23 PM Pali Rohár <[email protected]> wrote:
>
> On Wednesday 02 June 2021 14:16:26 Sergio Paracuellos wrote:
> > Hi Pali,
> >
> > On Mon, May 31, 2021 at 4:19 PM Sergio Paracuellos
> > <[email protected]> wrote:
> > >
> > > On Mon, May 31, 2021 at 3:50 PM Pali Rohár <[email protected]> wrote:
> > > >
> > > > On Monday 31 May 2021 15:39:55 Sergio Paracuellos wrote:
> > > > > Hi Pali,
> > > > >
> > > > > Thanks for your comments.
> > > > >
> > > > > On Mon, May 31, 2021 at 3:14 PM Pali Rohár <[email protected]> wrote:
> > > > > >
> > > > > > On Saturday 15 May 2021 14:40:53 Sergio Paracuellos wrote:
> > > > > > > This patch adds a driver for the PCIe controller of MT7621 SoC.
> > > > > > >
> > > > > > > Signed-off-by: Sergio Paracuellos <[email protected]>
> > > > > > > ---
> > > > > > > arch/mips/pci/Makefile | 1 +
> > > > > > > arch/mips/pci/pci-mt7621.c | 624 +++++++++++++++++++++++++++++++++++++
> > > > > > > arch/mips/ralink/Kconfig | 9 +-
> > > > > > > 3 files changed, 633 insertions(+), 1 deletion(-)
> > > > > > > create mode 100644 arch/mips/pci/pci-mt7621.c
> > > > > > >
> > > > > > > diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile
> > > > > > > index f3eecc065e5c..178c550739c4 100644
> > > > > > > --- a/arch/mips/pci/Makefile
> > > > > > > +++ b/arch/mips/pci/Makefile
> > > > > > > @@ -24,6 +24,7 @@ obj-$(CONFIG_PCI_AR2315) += pci-ar2315.o
> > > > > > > obj-$(CONFIG_SOC_AR71XX) += pci-ar71xx.o
> > > > > > > obj-$(CONFIG_PCI_AR724X) += pci-ar724x.o
> > > > > > > obj-$(CONFIG_PCI_XTALK_BRIDGE) += pci-xtalk-bridge.o
> > > > > > > +obj-$(CONFIG_PCI_MT7621) += pci-mt7621.o
> > > > > > > #
> > > > > > > # These are still pretty much in the old state, watch, go blind.
> > > > > > > #
> > > > > > > diff --git a/arch/mips/pci/pci-mt7621.c b/arch/mips/pci/pci-mt7621.c
> > > > > > > new file mode 100644
> > > > > > > index 000000000000..fe1945819d25
> > > > > > > --- /dev/null
> > > > > > > +++ b/arch/mips/pci/pci-mt7621.c
> > > > > > ...
> > > > > > > +static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> > > > > > > +{
> > > > > > > + struct device *dev = pcie->dev;
> > > > > > > + struct mt7621_pcie_port *port;
> > > > > > > + u8 num_slots_enabled = 0;
> > > > > > > + u32 slot;
> > > > > > > + u32 val;
> > > > > > > + int err;
> > > > > > > +
> > > > > > > + /* Setup MEMWIN and IOWIN */
> > > > > > > + pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> > > > > > > + pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
> > > > > > > +
> > > > > > > + list_for_each_entry(port, &pcie->ports, list) {
> > > > > > > + if (port->enabled) {
> > > > > > > + err = clk_prepare_enable(port->clk);
> > > > > > > + if (err) {
> > > > > > > + dev_err(dev, "enabling clk pcie%d\n", slot);
> > > > > > > + return err;
> > > > > > > + }
> > > > > > > +
> > > > > > > + mt7621_pcie_enable_port(port);
> > > > > > > + dev_info(dev, "PCIE%d enabled\n", port->slot);
> > > > > > > + num_slots_enabled++;
> > > > > > > + }
> > > > > > > + }
> > > > > > > +
> > > > > > > + for (slot = 0; slot < num_slots_enabled; slot++) {
> > > > > > > + val = read_config(pcie, slot, PCI_COMMAND);
> > > > > > > + val |= PCI_COMMAND_MASTER;
> > > > > > > + write_config(pcie, slot, PCI_COMMAND, val);
> > > > > >
> > > > > > Hello! Is this part of code correct? Because it looks strange if PCIe
> > > > > > controller driver automatically enables PCI bus mastering, prior device
> > > > > > driver initialize itself.
> > > > > >
> > > > > > Moreover kernel has already function pci_set_master() for this purpose
> > > > > > which is used by device drivers.
> > > > > >
> > > > > > So I think this code can confuse some device drivers...
> > > > >
> > > > > I agree that we have pci_set_master() to be used in pci device driver
> > > > > code. Original controller driver set this bit for enabled slots. Since
> > > > > there is no documentation at all for the PCI in this SoC
> > > >
> > > > I see... this is really a big problem to do any driver development...
> > >
> > > For sure it is :(.
> > >
> > > >
> > > > > I have
> > > > > maintained the setting in the driver in a cleaner way. See original
> > > > > driver code and the setting here [0]. There is no other reason than
> > > > > that. I am ok with removing this from here and testing with my two
> > > > > devices that everything is still ok if having this setting in the pci
> > > > > controller driver is a real problem.
> > > >
> > > > You can run lspci -nnvv with and without PCI_COMMAND_MASTER code and
> > > > then compare outputs.
> > > >
> > > > Device drivers for sure enable PCI_COMMAND_MASTER at the time when it is
> > > > needed, so it is possible that there would be no difference in lspci
> > > > output.
> > >
> > > Thanks. I will take this into account when v2 is submitted after more
> > > review comments come :).
> >
> > I have tested to remove this and check lspci -nnvv output with and
> > without PCI_COMMAND_MASTER code and, as you pointed out, there is no
> > difference between them. Also, both boards are working without
> > regressions at all. So I will remove this code for next version.
>
> Perfect!
>
> > Thanks,
> > Sergio Paracuellos
> > >
> > > >
> > > > > [0]: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/tree/drivers/staging/mt7621-pci/pci-mt7621.c?h=v4.18#n676
> > > > >
> > > > > Best regards,
> > > > > Sergio Paracuellos
> > > > > >
> > > > > > > + /* configure RC FTS number to 250 when it leaves L0s */
> > > > > > > + val = read_config(pcie, slot, PCIE_FTS_NUM);
> > > > > > > + val &= ~PCIE_FTS_NUM_MASK;
> > > > > > > + val |= PCIE_FTS_NUM_L0(0x50);
> > > > > > > + write_config(pcie, slot, PCIE_FTS_NUM, val);
>
> Could you look also what is doing this code (PCIE_FTS_NUM)? It is marked
> as MT specific register. But from this code for me it looks like that it
> just access config space of some device and therefore it could be some
> standard PCIe register. Just with hardcoded calculated offset.
>
> Could you provide output from lspci -nnvv? So other people could look at
> it and maybe we decode what is this code doing and if it is needed.

# lspci -nnvv
00:02.0 PCI bridge [0604]: Device [0e8d:0801] (rev 01) (prog-if 00
[Normal decode])
Device tree node: /sys/firmware/devicetree/base/pcie@1e140000/pcie@2,0
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort-
<TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0
Interrupt: pin A routed to IRQ 255
Region 1: Memory at 60200000 (32-bit, non-prefetchable) [size=64K]
Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
I/O behind bridge: 00000000-00000fff [size=4K]
Memory behind bridge: 60000000-600fffff [size=1M]
Prefetchable memory behind bridge: 60100000-601fffff [size=1M]
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort-
<TAbort- <MAbort- <SERR- <PERR-
BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: [40] Power Management version 3
Flags: PMEClk- DSI- D1+ D2- AuxCurrent=375mA
PME(D0+,D1+,D2-,D3hot+,D3cold-)
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [50] MSI: Enable- Count=1/1 Maskable- 64bit+
Address: 0000000000000000 Data: 0000
Capabilities: [70] Express (v2) Root Port (Slot-), MSI 00
DevCap: MaxPayload 128 bytes, PhantFunc 0
ExtTag- RBE+
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
MaxPayload 128 bytes, MaxReadReq 128 bytes
DevSta: CorrErr+ NonFatalErr- FatalErr- UnsupReq-
AuxPwr- TransPend-
LnkCap: Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1,
Exit Latency L0s <512ns, L1 <64us
ClockPM- Surprise- LLActRep+ BwNot- ASPMOptComp-
LnkCtl: ASPM Disabled; RCB 128 bytes, Disabled- CommClk-
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 2.5GT/s (ok), Width x1 (ok)
TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
RootCap: CRSVisible-
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal-
PMEIntEna- CRSVisible-
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
DevCap2: Completion Timeout: Not Supported,
TimeoutDis+ NROPrPrP- LTR-
10BitTagComp- 10BitTagReq- OBFF Not
Supported, ExtFmt- EETLPPrefix-
EmergencyPowerReduction Not Supported,
EmergencyPowerReductionInit-
FRS- LN System CLS Not Supported, TPHComp-
ExtTPHComp- ARIFwd-
AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
LTR- OBFF Disabled, ARIFwd-
AtomicOpsCtl: ReqEn- EgressBlck-
LnkCap2: Supported Link Speeds: 2.5GT/s, Crosslink-
Retimer- 2Retimers- DRS-
LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
Transmit Margin: Normal Operating Range,
EnterModifiedCompliance- ComplianceSOS-
Compliance De-emphasis: -6dB
LnkSta2: Current De-emphasis Level: -6dB,
EqualizationComplete- EqualizationPhase1-
EqualizationPhase2- EqualizationPhase3-
LinkEqualizationRequest-
Retimer- 2Retimers- CrosslinkRes: unsupported
Capabilities: [100 v1] Advanced Error Reporting
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt-
UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt-
UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt-
UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
CESta: RxErr+ BadTLP- BadDLLP- Rollover- Timeout-
AdvNonFatalErr-
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout-
AdvNonFatalErr+
AERCap: First Error Pointer: 00, ECRCGenCap+
ECRCGenEn- ECRCChkCap+ ECRCChkEn-
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
HeaderLog: 00000000 00000000 00000000 00000000
RootCmd: CERptEn- NFERptEn- FERptEn-
RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
FirstFatal- NonFatalMsg- FatalMsg- IntMsg 0
ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
Capabilities: [140 v1] Virtual Channel
Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
Arb: Fixed- WRR32- WRR64- WRR128-
Ctrl: ArbSelect=Fixed
Status: InProgress-
VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
Status: NegoPending- InProgress-
lspci: Unable to load libkmod resources: error -12

01:00.0 Network controller [0280]: MEDIATEK Corp. Device [14c3:7612]
Subsystem: MEDIATEK Corp. Device [14c3:7612]
Device tree node:
/sys/firmware/devicetree/base/pcie@1e140000/pcie@2,0/wifi@0,0
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
ParErr- Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort-
<TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0
Interrupt: pin A routed to IRQ 20
Region 0: Memory at 60000000 (64-bit, non-prefetchable) [size=1M]
Expansion ROM at 60100000 [virtual] [disabled] [size=64K]
Capabilities: [40] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA
PME(D0+,D1-,D2-,D3hot+,D3cold+)
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [50] MSI: Enable- Count=1/1 Maskable- 64bit+
Address: 0000000000000000 Data: 0000
Capabilities: [70] Express (v2) Endpoint, MSI 00
DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s
unlimited, L1 unlimited
ExtTag- AttnBtn- AttnInd- PwrInd- RBE+
FLReset- SlotPowerLimit 0.000W
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
MaxPayload 128 bytes, MaxReadReq 128 bytes
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq-
AuxPwr+ TransPend-
LnkCap: Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1,
Exit Latency L0s <2us, L1 unlimited
ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
LnkCtl: ASPM Disabled; RCB 64 bytes, Disabled- CommClk-
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 2.5GT/s (ok), Width x1 (ok)
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
DevCap2: Completion Timeout: Range ABCD, TimeoutDis+
NROPrPrP- LTR-
10BitTagComp- 10BitTagReq- OBFF Not
Supported, ExtFmt- EETLPPrefix-
EmergencyPowerReduction Not Supported,
EmergencyPowerReductionInit-
FRS- TPHComp- ExtTPHComp-
AtomicOpsCap: 32bit- 64bit- 128bitCAS-
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
LTR- OBFF Disabled,
AtomicOpsCtl: ReqEn-
LnkCap2: Supported Link Speeds: 2.5GT/s, Crosslink-
Retimer- 2Retimers- DRS-
LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
Transmit Margin: Normal Operating Range,
EnterModifiedCompliance- ComplianceSOS-
Compliance De-emphasis: -6dB
LnkSta2: Current De-emphasis Level: -3.5dB,
EqualizationComplete- EqualizationPhase1-
EqualizationPhase2- EqualizationPhase3-
LinkEqualizationRequest-
Retimer- 2Retimers- CrosslinkRes: unsupported
Capabilities: [100 v2] Advanced Error Reporting
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt-
UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt-
UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt-
UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout-
AdvNonFatalErr-
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout-
AdvNonFatalErr+
AERCap: First Error Pointer: 00, ECRCGenCap+
ECRCGenEn- ECRCChkCap+ ECRCChkEn-
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
HeaderLog: 00000000 00000000 00000000 00000000
Capabilities: [148 v1] Device Serial Number 00-00-00-00-00-00-00-00
Capabilities: [158 v1] Latency Tolerance Reporting
Max snoop latency: 0ns
Max no snoop latency: 0ns
Capabilities: [160 v1] L1 PM Substates
L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+
ASPM_L1.1+ L1_PM_Substates+
PortCommonModeRestoreTime=50us PortTPowerOnTime=10us
L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
T_CommonMode=0us LTR1.2_Threshold=0ns
L1SubCtl2: T_PwrOn=10us
Kernel driver in use: mt76x2e

Best regards,
Sergio Paracuellos

>
> > > > > > > + }
> > > > > > > +
> > > > > > > + return 0;
> > > > > > > +}

2021-06-04 16:59:21

by Pali Rohár

[permalink] [raw]
Subject: Re: [PATCH 2/4] MIPS: pci: Add driver for MT7621 PCIe controller

On Wednesday 02 June 2021 14:43:53 Sergio Paracuellos wrote:
> Hi Pali,
>
> On Wed, Jun 2, 2021 at 2:23 PM Pali Rohár <[email protected]> wrote:
> >
> > On Wednesday 02 June 2021 14:16:26 Sergio Paracuellos wrote:
> > > Hi Pali,
> > >
> > > On Mon, May 31, 2021 at 4:19 PM Sergio Paracuellos
> > > <[email protected]> wrote:
> > > >
> > > > On Mon, May 31, 2021 at 3:50 PM Pali Rohár <[email protected]> wrote:
> > > > >
> > > > > On Monday 31 May 2021 15:39:55 Sergio Paracuellos wrote:
> > > > > > Hi Pali,
> > > > > >
> > > > > > Thanks for your comments.
> > > > > >
> > > > > > On Mon, May 31, 2021 at 3:14 PM Pali Rohár <[email protected]> wrote:
> > > > > > >
> > > > > > > On Saturday 15 May 2021 14:40:53 Sergio Paracuellos wrote:
> > > > > > > > This patch adds a driver for the PCIe controller of MT7621 SoC.
> > > > > > > >
> > > > > > > > Signed-off-by: Sergio Paracuellos <[email protected]>
> > > > > > > > ---
> > > > > > > > arch/mips/pci/Makefile | 1 +
> > > > > > > > arch/mips/pci/pci-mt7621.c | 624 +++++++++++++++++++++++++++++++++++++
> > > > > > > > arch/mips/ralink/Kconfig | 9 +-
> > > > > > > > 3 files changed, 633 insertions(+), 1 deletion(-)
> > > > > > > > create mode 100644 arch/mips/pci/pci-mt7621.c
> > > > > > > >
> > > > > > > > diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile
> > > > > > > > index f3eecc065e5c..178c550739c4 100644
> > > > > > > > --- a/arch/mips/pci/Makefile
> > > > > > > > +++ b/arch/mips/pci/Makefile
> > > > > > > > @@ -24,6 +24,7 @@ obj-$(CONFIG_PCI_AR2315) += pci-ar2315.o
> > > > > > > > obj-$(CONFIG_SOC_AR71XX) += pci-ar71xx.o
> > > > > > > > obj-$(CONFIG_PCI_AR724X) += pci-ar724x.o
> > > > > > > > obj-$(CONFIG_PCI_XTALK_BRIDGE) += pci-xtalk-bridge.o
> > > > > > > > +obj-$(CONFIG_PCI_MT7621) += pci-mt7621.o
> > > > > > > > #
> > > > > > > > # These are still pretty much in the old state, watch, go blind.
> > > > > > > > #
> > > > > > > > diff --git a/arch/mips/pci/pci-mt7621.c b/arch/mips/pci/pci-mt7621.c
> > > > > > > > new file mode 100644
> > > > > > > > index 000000000000..fe1945819d25
> > > > > > > > --- /dev/null
> > > > > > > > +++ b/arch/mips/pci/pci-mt7621.c
> > > > > > > ...
> > > > > > > > +static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> > > > > > > > +{
> > > > > > > > + struct device *dev = pcie->dev;
> > > > > > > > + struct mt7621_pcie_port *port;
> > > > > > > > + u8 num_slots_enabled = 0;
> > > > > > > > + u32 slot;
> > > > > > > > + u32 val;
> > > > > > > > + int err;
> > > > > > > > +
> > > > > > > > + /* Setup MEMWIN and IOWIN */
> > > > > > > > + pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> > > > > > > > + pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
> > > > > > > > +
> > > > > > > > + list_for_each_entry(port, &pcie->ports, list) {
> > > > > > > > + if (port->enabled) {
> > > > > > > > + err = clk_prepare_enable(port->clk);
> > > > > > > > + if (err) {
> > > > > > > > + dev_err(dev, "enabling clk pcie%d\n", slot);
> > > > > > > > + return err;
> > > > > > > > + }
> > > > > > > > +
> > > > > > > > + mt7621_pcie_enable_port(port);
> > > > > > > > + dev_info(dev, "PCIE%d enabled\n", port->slot);
> > > > > > > > + num_slots_enabled++;
> > > > > > > > + }
> > > > > > > > + }
> > > > > > > > +
> > > > > > > > + for (slot = 0; slot < num_slots_enabled; slot++) {
> > > > > > > > + val = read_config(pcie, slot, PCI_COMMAND);
> > > > > > > > + val |= PCI_COMMAND_MASTER;
> > > > > > > > + write_config(pcie, slot, PCI_COMMAND, val);
> > > > > > >
> > > > > > > Hello! Is this part of code correct? Because it looks strange if PCIe
> > > > > > > controller driver automatically enables PCI bus mastering, prior device
> > > > > > > driver initialize itself.
> > > > > > >
> > > > > > > Moreover kernel has already function pci_set_master() for this purpose
> > > > > > > which is used by device drivers.
> > > > > > >
> > > > > > > So I think this code can confuse some device drivers...
> > > > > >
> > > > > > I agree that we have pci_set_master() to be used in pci device driver
> > > > > > code. Original controller driver set this bit for enabled slots. Since
> > > > > > there is no documentation at all for the PCI in this SoC
> > > > >
> > > > > I see... this is really a big problem to do any driver development...
> > > >
> > > > For sure it is :(.
> > > >
> > > > >
> > > > > > I have
> > > > > > maintained the setting in the driver in a cleaner way. See original
> > > > > > driver code and the setting here [0]. There is no other reason than
> > > > > > that. I am ok with removing this from here and testing with my two
> > > > > > devices that everything is still ok if having this setting in the pci
> > > > > > controller driver is a real problem.
> > > > >
> > > > > You can run lspci -nnvv with and without PCI_COMMAND_MASTER code and
> > > > > then compare outputs.
> > > > >
> > > > > Device drivers for sure enable PCI_COMMAND_MASTER at the time when it is
> > > > > needed, so it is possible that there would be no difference in lspci
> > > > > output.
> > > >
> > > > Thanks. I will take this into account when v2 is submitted after more
> > > > review comments come :).
> > >
> > > I have tested to remove this and check lspci -nnvv output with and
> > > without PCI_COMMAND_MASTER code and, as you pointed out, there is no
> > > difference between them. Also, both boards are working without
> > > regressions at all. So I will remove this code for next version.
> >
> > Perfect!
> >
> > > Thanks,
> > > Sergio Paracuellos
> > > >
> > > > >
> > > > > > [0]: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/tree/drivers/staging/mt7621-pci/pci-mt7621.c?h=v4.18#n676
> > > > > >
> > > > > > Best regards,
> > > > > > Sergio Paracuellos
> > > > > > >
> > > > > > > > + /* configure RC FTS number to 250 when it leaves L0s */
> > > > > > > > + val = read_config(pcie, slot, PCIE_FTS_NUM);
> > > > > > > > + val &= ~PCIE_FTS_NUM_MASK;
> > > > > > > > + val |= PCIE_FTS_NUM_L0(0x50);
> > > > > > > > + write_config(pcie, slot, PCIE_FTS_NUM, val);
> >
> > Could you look also what is doing this code (PCIE_FTS_NUM)? It is marked
> > as MT specific register. But from this code for me it looks like that it
> > just access config space of some device and therefore it could be some
> > standard PCIe register. Just with hardcoded calculated offset.

So based on your lspci output, there is no PCIe capability register at
address PCIE_FTS_NUM (0x70c), right? It seems strange to trying access
capability register outside of capability list.

> > Could you provide output from lspci -nnvv? So other people could look at
> > it and maybe we decode what is this code doing and if it is needed.
>
> # lspci -nnvv
> 00:02.0 PCI bridge [0604]: Device [0e8d:0801] (rev 01) (prog-if 00
> [Normal decode])

Hm... Device address is 02. But in your code is:

u8 num_slots_enabled = 0;
...
list_for_each_entry(port, &pcie->ports, list) {
if (port->enabled) {
...
num_slots_enabled++;
...
}
}
...
for (slot = 0; slot < num_slots_enabled; slot++) {
val = read_config(pcie, slot, ...);
...
write_config(pcie, slot, ...);
}

Which means that this code writes to config space of wrong device 0
(instead of 2)! In function write_config() can be seen that second
parameter specify device of BDF address for bus=0 and function=0.

> Device tree node: /sys/firmware/devicetree/base/pcie@1e140000/pcie@2,0
> Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
> ParErr- Stepping- SERR- FastB2B- DisINTx-
> Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort-
> <TAbort- <MAbort- >SERR- <PERR- INTx-
> Latency: 0
> Interrupt: pin A routed to IRQ 255
> Region 1: Memory at 60200000 (32-bit, non-prefetchable) [size=64K]
> Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
> I/O behind bridge: 00000000-00000fff [size=4K]
> Memory behind bridge: 60000000-600fffff [size=1M]
> Prefetchable memory behind bridge: 60100000-601fffff [size=1M]
> Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort-
> <TAbort- <MAbort- <SERR- <PERR-
> BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
> PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
> Capabilities: [40] Power Management version 3
> Flags: PMEClk- DSI- D1+ D2- AuxCurrent=375mA
> PME(D0+,D1+,D2-,D3hot+,D3cold-)
> Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
> Capabilities: [50] MSI: Enable- Count=1/1 Maskable- 64bit+
> Address: 0000000000000000 Data: 0000
> Capabilities: [70] Express (v2) Root Port (Slot-), MSI 00
> DevCap: MaxPayload 128 bytes, PhantFunc 0
> ExtTag- RBE+
> DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
> RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
> MaxPayload 128 bytes, MaxReadReq 128 bytes
> DevSta: CorrErr+ NonFatalErr- FatalErr- UnsupReq-
> AuxPwr- TransPend-
> LnkCap: Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1,
> Exit Latency L0s <512ns, L1 <64us
> ClockPM- Surprise- LLActRep+ BwNot- ASPMOptComp-
> LnkCtl: ASPM Disabled; RCB 128 bytes, Disabled- CommClk-
> ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
> LnkSta: Speed 2.5GT/s (ok), Width x1 (ok)
> TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
> RootCap: CRSVisible-
> RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal-
> PMEIntEna- CRSVisible-
> RootSta: PME ReqID 0000, PMEStatus- PMEPending-
> DevCap2: Completion Timeout: Not Supported,
> TimeoutDis+ NROPrPrP- LTR-
> 10BitTagComp- 10BitTagReq- OBFF Not
> Supported, ExtFmt- EETLPPrefix-
> EmergencyPowerReduction Not Supported,
> EmergencyPowerReductionInit-
> FRS- LN System CLS Not Supported, TPHComp-
> ExtTPHComp- ARIFwd-
> AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
> DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
> LTR- OBFF Disabled, ARIFwd-
> AtomicOpsCtl: ReqEn- EgressBlck-
> LnkCap2: Supported Link Speeds: 2.5GT/s, Crosslink-
> Retimer- 2Retimers- DRS-
> LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
> Transmit Margin: Normal Operating Range,
> EnterModifiedCompliance- ComplianceSOS-
> Compliance De-emphasis: -6dB
> LnkSta2: Current De-emphasis Level: -6dB,
> EqualizationComplete- EqualizationPhase1-
> EqualizationPhase2- EqualizationPhase3-
> LinkEqualizationRequest-
> Retimer- 2Retimers- CrosslinkRes: unsupported
> Capabilities: [100 v1] Advanced Error Reporting
> UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt-
> UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
> UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt-
> UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
> UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt-
> UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
> CESta: RxErr+ BadTLP- BadDLLP- Rollover- Timeout-
> AdvNonFatalErr-
> CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout-
> AdvNonFatalErr+
> AERCap: First Error Pointer: 00, ECRCGenCap+
> ECRCGenEn- ECRCChkCap+ ECRCChkEn-
> MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
> HeaderLog: 00000000 00000000 00000000 00000000
> RootCmd: CERptEn- NFERptEn- FERptEn-
> RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
> FirstFatal- NonFatalMsg- FatalMsg- IntMsg 0
> ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
> Capabilities: [140 v1] Virtual Channel
> Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
> Arb: Fixed- WRR32- WRR64- WRR128-
> Ctrl: ArbSelect=Fixed
> Status: InProgress-
> VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
> Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
> Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
> Status: NegoPending- InProgress-
> lspci: Unable to load libkmod resources: error -12
>
> 01:00.0 Network controller [0280]: MEDIATEK Corp. Device [14c3:7612]
> Subsystem: MEDIATEK Corp. Device [14c3:7612]
> Device tree node:
> /sys/firmware/devicetree/base/pcie@1e140000/pcie@2,0/wifi@0,0
> Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
> ParErr- Stepping- SERR- FastB2B- DisINTx-
> Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort-
> <TAbort- <MAbort- >SERR- <PERR- INTx-
> Latency: 0
> Interrupt: pin A routed to IRQ 20
> Region 0: Memory at 60000000 (64-bit, non-prefetchable) [size=1M]
> Expansion ROM at 60100000 [virtual] [disabled] [size=64K]
> Capabilities: [40] Power Management version 3
> Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA
> PME(D0+,D1-,D2-,D3hot+,D3cold+)
> Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
> Capabilities: [50] MSI: Enable- Count=1/1 Maskable- 64bit+
> Address: 0000000000000000 Data: 0000
> Capabilities: [70] Express (v2) Endpoint, MSI 00
> DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s
> unlimited, L1 unlimited
> ExtTag- AttnBtn- AttnInd- PwrInd- RBE+
> FLReset- SlotPowerLimit 0.000W
> DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
> RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
> MaxPayload 128 bytes, MaxReadReq 128 bytes
> DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq-
> AuxPwr+ TransPend-
> LnkCap: Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1,
> Exit Latency L0s <2us, L1 unlimited
> ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
> LnkCtl: ASPM Disabled; RCB 64 bytes, Disabled- CommClk-
> ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
> LnkSta: Speed 2.5GT/s (ok), Width x1 (ok)
> TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
> DevCap2: Completion Timeout: Range ABCD, TimeoutDis+
> NROPrPrP- LTR-
> 10BitTagComp- 10BitTagReq- OBFF Not
> Supported, ExtFmt- EETLPPrefix-
> EmergencyPowerReduction Not Supported,
> EmergencyPowerReductionInit-
> FRS- TPHComp- ExtTPHComp-
> AtomicOpsCap: 32bit- 64bit- 128bitCAS-
> DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
> LTR- OBFF Disabled,
> AtomicOpsCtl: ReqEn-
> LnkCap2: Supported Link Speeds: 2.5GT/s, Crosslink-
> Retimer- 2Retimers- DRS-
> LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
> Transmit Margin: Normal Operating Range,
> EnterModifiedCompliance- ComplianceSOS-
> Compliance De-emphasis: -6dB
> LnkSta2: Current De-emphasis Level: -3.5dB,
> EqualizationComplete- EqualizationPhase1-
> EqualizationPhase2- EqualizationPhase3-
> LinkEqualizationRequest-
> Retimer- 2Retimers- CrosslinkRes: unsupported
> Capabilities: [100 v2] Advanced Error Reporting
> UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt-
> UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
> UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt-
> UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
> UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt-
> UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
> CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout-
> AdvNonFatalErr-
> CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout-
> AdvNonFatalErr+
> AERCap: First Error Pointer: 00, ECRCGenCap+
> ECRCGenEn- ECRCChkCap+ ECRCChkEn-
> MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
> HeaderLog: 00000000 00000000 00000000 00000000
> Capabilities: [148 v1] Device Serial Number 00-00-00-00-00-00-00-00
> Capabilities: [158 v1] Latency Tolerance Reporting
> Max snoop latency: 0ns
> Max no snoop latency: 0ns
> Capabilities: [160 v1] L1 PM Substates
> L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+
> ASPM_L1.1+ L1_PM_Substates+
> PortCommonModeRestoreTime=50us PortTPowerOnTime=10us
> L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
> T_CommonMode=0us LTR1.2_Threshold=0ns
> L1SubCtl2: T_PwrOn=10us
> Kernel driver in use: mt76x2e
>
> Best regards,
> Sergio Paracuellos
>
> >
> > > > > > > > + }
> > > > > > > > +
> > > > > > > > + return 0;
> > > > > > > > +}

2021-06-04 18:46:24

by Sergio Paracuellos

[permalink] [raw]
Subject: Re: [PATCH 2/4] MIPS: pci: Add driver for MT7621 PCIe controller

Hi Pali,

Thanks for your comments.

On Fri, Jun 4, 2021 at 6:55 PM Pali Rohár <[email protected]> wrote:
>
> On Wednesday 02 June 2021 14:43:53 Sergio Paracuellos wrote:
> > Hi Pali,
> >
> > On Wed, Jun 2, 2021 at 2:23 PM Pali Rohár <[email protected]> wrote:
> > >
> > > On Wednesday 02 June 2021 14:16:26 Sergio Paracuellos wrote:
> > > > Hi Pali,
> > > >
> > > > On Mon, May 31, 2021 at 4:19 PM Sergio Paracuellos
> > > > <[email protected]> wrote:
> > > > >
> > > > > On Mon, May 31, 2021 at 3:50 PM Pali Rohár <[email protected]> wrote:
> > > > > >
> > > > > > On Monday 31 May 2021 15:39:55 Sergio Paracuellos wrote:
> > > > > > > Hi Pali,
> > > > > > >
> > > > > > > Thanks for your comments.
> > > > > > >
> > > > > > > On Mon, May 31, 2021 at 3:14 PM Pali Rohár <[email protected]> wrote:
> > > > > > > >
> > > > > > > > On Saturday 15 May 2021 14:40:53 Sergio Paracuellos wrote:
> > > > > > > > > This patch adds a driver for the PCIe controller of MT7621 SoC.
> > > > > > > > >
> > > > > > > > > Signed-off-by: Sergio Paracuellos <[email protected]>
> > > > > > > > > ---
> > > > > > > > > arch/mips/pci/Makefile | 1 +
> > > > > > > > > arch/mips/pci/pci-mt7621.c | 624 +++++++++++++++++++++++++++++++++++++
> > > > > > > > > arch/mips/ralink/Kconfig | 9 +-
> > > > > > > > > 3 files changed, 633 insertions(+), 1 deletion(-)
> > > > > > > > > create mode 100644 arch/mips/pci/pci-mt7621.c
> > > > > > > > >
> > > > > > > > > diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile
> > > > > > > > > index f3eecc065e5c..178c550739c4 100644
> > > > > > > > > --- a/arch/mips/pci/Makefile
> > > > > > > > > +++ b/arch/mips/pci/Makefile
> > > > > > > > > @@ -24,6 +24,7 @@ obj-$(CONFIG_PCI_AR2315) += pci-ar2315.o
> > > > > > > > > obj-$(CONFIG_SOC_AR71XX) += pci-ar71xx.o
> > > > > > > > > obj-$(CONFIG_PCI_AR724X) += pci-ar724x.o
> > > > > > > > > obj-$(CONFIG_PCI_XTALK_BRIDGE) += pci-xtalk-bridge.o
> > > > > > > > > +obj-$(CONFIG_PCI_MT7621) += pci-mt7621.o
> > > > > > > > > #
> > > > > > > > > # These are still pretty much in the old state, watch, go blind.
> > > > > > > > > #
> > > > > > > > > diff --git a/arch/mips/pci/pci-mt7621.c b/arch/mips/pci/pci-mt7621.c
> > > > > > > > > new file mode 100644
> > > > > > > > > index 000000000000..fe1945819d25
> > > > > > > > > --- /dev/null
> > > > > > > > > +++ b/arch/mips/pci/pci-mt7621.c
> > > > > > > > ...
> > > > > > > > > +static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> > > > > > > > > +{
> > > > > > > > > + struct device *dev = pcie->dev;
> > > > > > > > > + struct mt7621_pcie_port *port;
> > > > > > > > > + u8 num_slots_enabled = 0;
> > > > > > > > > + u32 slot;
> > > > > > > > > + u32 val;
> > > > > > > > > + int err;
> > > > > > > > > +
> > > > > > > > > + /* Setup MEMWIN and IOWIN */
> > > > > > > > > + pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> > > > > > > > > + pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
> > > > > > > > > +
> > > > > > > > > + list_for_each_entry(port, &pcie->ports, list) {
> > > > > > > > > + if (port->enabled) {
> > > > > > > > > + err = clk_prepare_enable(port->clk);
> > > > > > > > > + if (err) {
> > > > > > > > > + dev_err(dev, "enabling clk pcie%d\n", slot);
> > > > > > > > > + return err;
> > > > > > > > > + }
> > > > > > > > > +
> > > > > > > > > + mt7621_pcie_enable_port(port);
> > > > > > > > > + dev_info(dev, "PCIE%d enabled\n", port->slot);
> > > > > > > > > + num_slots_enabled++;
> > > > > > > > > + }
> > > > > > > > > + }
> > > > > > > > > +
> > > > > > > > > + for (slot = 0; slot < num_slots_enabled; slot++) {
> > > > > > > > > + val = read_config(pcie, slot, PCI_COMMAND);
> > > > > > > > > + val |= PCI_COMMAND_MASTER;
> > > > > > > > > + write_config(pcie, slot, PCI_COMMAND, val);
> > > > > > > >
> > > > > > > > Hello! Is this part of code correct? Because it looks strange if PCIe
> > > > > > > > controller driver automatically enables PCI bus mastering, prior device
> > > > > > > > driver initialize itself.
> > > > > > > >
> > > > > > > > Moreover kernel has already function pci_set_master() for this purpose
> > > > > > > > which is used by device drivers.
> > > > > > > >
> > > > > > > > So I think this code can confuse some device drivers...
> > > > > > >
> > > > > > > I agree that we have pci_set_master() to be used in pci device driver
> > > > > > > code. Original controller driver set this bit for enabled slots. Since
> > > > > > > there is no documentation at all for the PCI in this SoC
> > > > > >
> > > > > > I see... this is really a big problem to do any driver development...
> > > > >
> > > > > For sure it is :(.
> > > > >
> > > > > >
> > > > > > > I have
> > > > > > > maintained the setting in the driver in a cleaner way. See original
> > > > > > > driver code and the setting here [0]. There is no other reason than
> > > > > > > that. I am ok with removing this from here and testing with my two
> > > > > > > devices that everything is still ok if having this setting in the pci
> > > > > > > controller driver is a real problem.
> > > > > >
> > > > > > You can run lspci -nnvv with and without PCI_COMMAND_MASTER code and
> > > > > > then compare outputs.
> > > > > >
> > > > > > Device drivers for sure enable PCI_COMMAND_MASTER at the time when it is
> > > > > > needed, so it is possible that there would be no difference in lspci
> > > > > > output.
> > > > >
> > > > > Thanks. I will take this into account when v2 is submitted after more
> > > > > review comments come :).
> > > >
> > > > I have tested to remove this and check lspci -nnvv output with and
> > > > without PCI_COMMAND_MASTER code and, as you pointed out, there is no
> > > > difference between them. Also, both boards are working without
> > > > regressions at all. So I will remove this code for next version.
> > >
> > > Perfect!
> > >
> > > > Thanks,
> > > > Sergio Paracuellos
> > > > >
> > > > > >
> > > > > > > [0]: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/tree/drivers/staging/mt7621-pci/pci-mt7621.c?h=v4.18#n676
> > > > > > >
> > > > > > > Best regards,
> > > > > > > Sergio Paracuellos
> > > > > > > >
> > > > > > > > > + /* configure RC FTS number to 250 when it leaves L0s */
> > > > > > > > > + val = read_config(pcie, slot, PCIE_FTS_NUM);
> > > > > > > > > + val &= ~PCIE_FTS_NUM_MASK;
> > > > > > > > > + val |= PCIE_FTS_NUM_L0(0x50);
> > > > > > > > > + write_config(pcie, slot, PCIE_FTS_NUM, val);
> > >
> > > Could you look also what is doing this code (PCIE_FTS_NUM)? It is marked
> > > as MT specific register. But from this code for me it looks like that it
> > > just access config space of some device and therefore it could be some
> > > standard PCIe register. Just with hardcoded calculated offset.
>
> So based on your lspci output, there is no PCIe capability register at
> address PCIE_FTS_NUM (0x70c), right? It seems strange to trying access
> capability register outside of capability list.

This setting is also in the original driver code from mediatek SDK. See [0].
Anyway, I have tried to remove this code and test what happens with my
two boards and both of them seem to
work properly just by deleting this code.

>
> > > Could you provide output from lspci -nnvv? So other people could look at
> > > it and maybe we decode what is this code doing and if it is needed.
> >
> > # lspci -nnvv
> > 00:02.0 PCI bridge [0604]: Device [0e8d:0801] (rev 01) (prog-if 00
> > [Normal decode])
>
> Hm... Device address is 02. But in your code is:
>
> u8 num_slots_enabled = 0;
> ...
> list_for_each_entry(port, &pcie->ports, list) {
> if (port->enabled) {
> ...
> num_slots_enabled++;
> ...
> }
> }
> ...
> for (slot = 0; slot < num_slots_enabled; slot++) {
> val = read_config(pcie, slot, ...);
> ...
> write_config(pcie, slot, ...);
> }
>
> Which means that this code writes to config space of wrong device 0
> (instead of 2)! In function write_config() can be seen that second
> parameter specify device of BDF address for bus=0 and function=0.

Bridge enumeration depends on a virtual bridge register configuration.
But at the end devices connected to the bridge
are enumerated as 01:00.0, 02:00.0 and 03:00.0. So in this case the
phy used is the one for "pcie2" (00:02.0) and the device connected to
it
is 01:00.0. For example a board using all the virtual bridges will get
an output similar to:

[ 16.487166] mt7621-pci 1e140000.pcie: host bridge /pcie@1e140000 ranges:
[ 16.500627] mt7621-pci 1e140000.pcie: No bus range found for
/pcie@1e140000, using [bus 00-ff]
[ 16.518212] mt7621-pci 1e140000.pcie: MEM
0x0060000000..0x006fffffff -> 0x0000000000
[ 16.534531] mt7621-pci 1e140000.pcie: IO
0x001e160000..0x001e16ffff -> 0x0000000000
[ 16.786498] mt7621-pci 1e140000.pcie: PCIE0 enabled
[ 16.796220] mt7621-pci 1e140000.pcie: PCIE1 enabled
[ 16.805943] mt7621-pci 1e140000.pcie: PCIE2 enabled
[ 16.815664] mt7621-pci 1e140000.pcie: PCI coherence region base:
0x60000000, mask/settings: 0xf0000002
[ 16.834398] mt7621-pci 1e140000.pcie: PCI host bridge to bus 0000:00
[ 16.847098] pci_bus 0000:00: root bus resource [io 0x1e160000-0x1e16ffff]
[ 16.860806] pci_bus 0000:00: root bus resource [mem 0x60000000-0x6fffffff]
[ 16.874504] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 16.885441] pci_bus 0000:00: root bus resource [mem
0x60000000-0x6fffffff] (bus address [0x00000000-0x0fffffff])
[ 16.905773] pci 0000:00:00.0: [0e8d:0801] type 01 class 0x060400
[ 16.917772] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x7fffffff]
[ 16.930260] pci 0000:00:00.0: reg 0x14: initial BAR value 0x00000000 invalid
[ 16.944304] pci 0000:00:00.0: reg 0x14: [mem size 0x00010000]
[ 16.955841] pci 0000:00:00.0: supports D1
[ 16.963837] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
[ 16.975747] pci 0000:00:01.0: [0e8d:0801] type 01 class 0x060400
[ 16.987772] pci 0000:00:01.0: reg 0x10: [mem 0x00000000-0x7fffffff]
[ 17.000273] pci 0000:00:01.0: reg 0x14: initial BAR value 0x00000000 invalid
[ 17.014311] pci 0000:00:01.0: reg 0x14: [mem size 0x00010000]
[ 17.025838] pci 0000:00:01.0: supports D1
[ 17.033828] pci 0000:00:01.0: PME# supported from D0 D1 D3hot
[ 17.045699] pci 0000:00:02.0: [0e8d:0801] type 01 class 0x060400
[ 17.057726] pci 0000:00:02.0: reg 0x10: [mem 0x00000000-0x7fffffff]
[ 17.070218] pci 0000:00:02.0: reg 0x14: initial BAR value 0x00000000 invalid
[ 17.084260] pci 0000:00:02.0: reg 0x14: [mem size 0x00010000]
[ 17.095788] pci 0000:00:02.0: supports D1
[ 17.103785] pci 0000:00:02.0: PME# supported from D0 D1 D3hot
[ 17.116598] pci 0000:00:00.0: bridge configuration invalid ([bus
00-00]), reconfiguring
[ 17.132566] pci 0000:00:01.0: bridge configuration invalid ([bus
00-00]), reconfiguring
[ 17.148514] pci 0000:00:02.0: bridge configuration invalid ([bus
00-00]), reconfiguring
[ 17.164739] pci 0000:01:00.0: [1b21:0611] type 00 class 0x010185
[ 17.176775] pci 0000:01:00.0: reg 0x10: [io 0x0000-0x0007]
[ 17.187892] pci 0000:01:00.0: reg 0x14: [io 0x0000-0x0003]
[ 17.199009] pci 0000:01:00.0: reg 0x18: [io 0x0000-0x0007]
[ 17.210130] pci 0000:01:00.0: reg 0x1c: [io 0x0000-0x0003]
[ 17.221246] pci 0000:01:00.0: reg 0x20: [io 0x0000-0x000f]
[ 17.232357] pci 0000:01:00.0: reg 0x24: initial BAR value 0x00000000 invalid
[ 17.246411] pci 0000:01:00.0: reg 0x24: [mem size 0x00000200]
[ 17.258031] pci 0000:01:00.0: 2.000 Gb/s available PCIe bandwidth,
limited by 2.5 GT/s PCIe x1 link at 0000:00:00.0 (capable of 4.000
Gb/s with 5.0 GT/s PCIe x1 link)
[ 17.317563] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
[ 17.328033] pci 0000:00:00.0: bridge window [io 0x0000-0x0fff]
[ 17.340179] pci 0000:00:00.0: bridge window [mem 0x60000000-0x600fffff]
[ 17.353703] pci 0000:00:00.0: bridge window [mem
0x60000000-0x600fffff pref]
[ 17.368097] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[ 17.381550] pci 0000:02:00.0: [1b21:0611] type 00 class 0x010185
[ 17.393573] pci 0000:02:00.0: reg 0x10: [io 0x0000-0x0007]
[ 17.404694] pci 0000:02:00.0: reg 0x14: [io 0x0000-0x0003]
[ 17.415804] pci 0000:02:00.0: reg 0x18: [io 0x0000-0x0007]
[ 17.426916] pci 0000:02:00.0: reg 0x1c: [io 0x0000-0x0003]
[ 17.438040] pci 0000:02:00.0: reg 0x20: [io 0x0000-0x000f]
[ 17.449148] pci 0000:02:00.0: reg 0x24: initial BAR value 0x00000000 invalid
[ 17.463193] pci 0000:02:00.0: reg 0x24: [mem size 0x00000200]
[ 17.474803] pci 0000:02:00.0: 2.000 Gb/s available PCIe bandwidth,
limited by 2.5 GT/s PCIe x1 link at 0000:00:01.0 (capable of 4.000
Gb/s with 5.0 GT/s PCIe x1 link)
[ 17.527554] pci 0000:00:01.0: PCI bridge to [bus 02-ff]
[ 17.538014] pci 0000:00:01.0: bridge window [io 0x0000-0x0fff]
[ 17.550159] pci 0000:00:01.0: bridge window [mem 0x60000000-0x600fffff]
[ 17.563682] pci 0000:00:01.0: bridge window [mem
0x60000000-0x600fffff pref]
[ 17.578078] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02
[ 17.591529] pci 0000:03:00.0: [1b21:0611] type 00 class 0x010185
[ 17.603545] pci 0000:03:00.0: reg 0x10: [io 0x0000-0x0007]
[ 17.614665] pci 0000:03:00.0: reg 0x14: [io 0x0000-0x0003]
[ 17.625775] pci 0000:03:00.0: reg 0x18: [io 0x0000-0x0007]
[ 17.636887] pci 0000:03:00.0: reg 0x1c: [io 0x0000-0x0003]
[ 17.648009] pci 0000:03:00.0: reg 0x20: [io 0x0000-0x000f]
[ 17.659119] pci 0000:03:00.0: reg 0x24: initial BAR value 0x00000000 invalid
[ 17.673162] pci 0000:03:00.0: reg 0x24: [mem size 0x00000200]
[ 17.684777] pci 0000:03:00.0: 2.000 Gb/s available PCIe bandwidth,
limited by 2.5 GT/s PCIe x1 link at 0000:00:02.0 (capable of 4.000
Gb/s with 5.0 GT/s PCIe x1 link)
[ 17.737561] pci 0000:00:02.0: PCI bridge to [bus 03-ff]
[ 17.748022] pci 0000:00:02.0: bridge window [io 0x0000-0x0fff]
[ 17.760167] pci 0000:00:02.0: bridge window [mem 0x60000000-0x600fffff]
[ 17.773690] pci 0000:00:02.0: bridge window [mem
0x60000000-0x600fffff pref]
[ 17.788085] pci_bus 0000:03: busn_res: [bus 03-ff] end is updated to 03
[ 17.801341] pci 0000:00:00.0: BAR 0: no space for [mem size 0x80000000]
[ 17.814518] pci 0000:00:00.0: BAR 0: failed to assign [mem size 0x80000000]
[ 17.828392] pci 0000:00:01.0: BAR 0: no space for [mem size 0x80000000]
[ 17.841571] pci 0000:00:01.0: BAR 0: failed to assign [mem size 0x80000000]
[ 17.855443] pci 0000:00:02.0: BAR 0: no space for [mem size 0x80000000]
[ 17.868626] pci 0000:00:02.0: BAR 0: failed to assign [mem size 0x80000000]
[ 17.882502] pci 0000:00:00.0: BAR 8: assigned [mem 0x60000000-0x600fffff]
[ 17.896028] pci 0000:00:00.0: BAR 9: assigned [mem
0x60100000-0x601fffff pref]
[ 17.910419] pci 0000:00:01.0: BAR 8: assigned [mem 0x60200000-0x602fffff]
[ 17.923951] pci 0000:00:01.0: BAR 9: assigned [mem
0x60300000-0x603fffff pref]
[ 17.938353] pci 0000:00:02.0: BAR 8: assigned [mem 0x60400000-0x604fffff]
[ 17.951879] pci 0000:00:02.0: BAR 9: assigned [mem
0x60500000-0x605fffff pref]
[ 17.966273] pci 0000:00:00.0: BAR 1: assigned [mem 0x60600000-0x6060ffff]
[ 17.979809] pci 0000:00:01.0: BAR 1: assigned [mem 0x60610000-0x6061ffff]
[ 17.993341] pci 0000:00:02.0: BAR 1: assigned [mem 0x60620000-0x6062ffff]
[ 18.006877] pci 0000:00:00.0: BAR 7: assigned [io 0x1e160000-0x1e160fff]
[ 18.020408] pci 0000:00:01.0: BAR 7: assigned [io 0x1e161000-0x1e161fff]
[ 18.033932] pci 0000:00:02.0: BAR 7: assigned [io 0x1e162000-0x1e162fff]
[ 18.047472] pci 0000:01:00.0: BAR 5: assigned [mem 0x60000000-0x600001ff]
[ 18.061005] pci 0000:01:00.0: BAR 4: assigned [io 0x1e160000-0x1e16000f]
[ 18.074540] pci 0000:01:00.0: BAR 0: assigned [io 0x1e160010-0x1e160017]
[ 18.088070] pci 0000:01:00.0: BAR 2: assigned [io 0x1e160018-0x1e16001f]
[ 18.101606] pci 0000:01:00.0: BAR 1: assigned [io 0x1e160020-0x1e160023]
[ 18.115139] pci 0000:01:00.0: BAR 3: assigned [io 0x1e160024-0x1e160027]
[ 18.128676] pci 0000:00:00.0: PCI bridge to [bus 01]
[ 18.138577] pci 0000:00:00.0: bridge window [io 0x1e160000-0x1e160fff]
[ 18.152100] pci 0000:00:00.0: bridge window [mem 0x60000000-0x600fffff]
[ 18.165627] pci 0000:00:00.0: bridge window [mem
0x60100000-0x601fffff pref]
[ 18.180030] pci 0000:02:00.0: BAR 5: assigned [mem 0x60200000-0x602001ff]
[ 18.193566] pci 0000:02:00.0: BAR 4: assigned [io 0x1e161000-0x1e16100f]
[ 18.207110] pci 0000:02:00.0: BAR 0: assigned [io 0x1e161010-0x1e161017]
[ 18.220648] pci 0000:02:00.0: BAR 2: assigned [io 0x1e161018-0x1e16101f]
[ 18.234183] pci 0000:02:00.0: BAR 1: assigned [io 0x1e161020-0x1e161023]
[ 18.247723] pci 0000:02:00.0: BAR 3: assigned [io 0x1e161024-0x1e161027]
[ 18.261257] pci 0000:00:01.0: PCI bridge to [bus 02]
[ 18.271165] pci 0000:00:01.0: bridge window [io 0x1e161000-0x1e161fff]
[ 18.284695] pci 0000:00:01.0: bridge window [mem 0x60200000-0x602fffff]
[ 18.298225] pci 0000:00:01.0: bridge window [mem
0x60300000-0x603fffff pref]
[ 18.312630] pci 0000:03:00.0: BAR 5: assigned [mem 0x60400000-0x604001ff]
[ 18.326166] pci 0000:03:00.0: BAR 4: assigned [io 0x1e162000-0x1e16200f]
[ 18.339702] pci 0000:03:00.0: BAR 0: assigned [io 0x1e162010-0x1e162017]
[ 18.353237] pci 0000:03:00.0: BAR 2: assigned [io 0x1e162018-0x1e16201f]
[ 18.366775] pci 0000:03:00.0: BAR 1: assigned [io 0x1e162020-0x1e162023]
[ 18.380311] pci 0000:03:00.0: BAR 3: assigned [io 0x1e162024-0x1e162027]
[ 18.393841] pci 0000:00:02.0: PCI bridge to [bus 03]
[ 18.403740] pci 0000:00:02.0: bridge window [io 0x1e162000-0x1e162fff]
[ 18.417270] pci 0000:00:02.0: bridge window [mem 0x60400000-0x604fffff]
[ 18.430801] pci 0000:00:02.0: bridge window [mem
0x60500000-0x605fffff pref]
[ 18.445529] ahci 0000:01:00.0: version 3.0
[ 18.445559] pci 0000:00:00.0: enabling device (0000 -> 0003)
[ 18.456853] ahci 0000:01:00.0: enabling device (0000 -> 0003)
[ 18.468455] ahci 0000:01:00.0: SSS flag set, parallel bus scan disabled
[ 18.481700] ahci 0000:01:00.0: AHCI 0001.0200 32 slots 2 ports 6
Gbps 0x3 impl IDE mode
[ 18.497662] ahci 0000:01:00.0: flags: 64bit ncq sntf stag led clo
pmp pio slum part ccc sxs
[ 18.516777] scsi host0: ahci
[ 18.523629] scsi host1: ahci
[ 18.529829] ata1: SATA max UDMA/133 abar m512@0x60000000 port
0x60000100 irq 22
[ 18.544447] ata2: SATA max UDMA/133 abar m512@0x60000000 port
0x60000180 irq 22
[ 18.559465] pci 0000:00:01.0: enabling device (0000 -> 0003)
[ 18.570786] ahci 0000:02:00.0: enabling device (0000 -> 0003)
[ 18.582414] ahci 0000:02:00.0: SSS flag set, parallel bus scan disabled
[ 18.595665] ahci 0000:02:00.0: AHCI 0001.0200 32 slots 2 ports 6
Gbps 0x3 impl IDE mode
[ 18.611614] ahci 0000:02:00.0: flags: 64bit ncq sntf stag led clo
pmp pio slum part ccc sxs
[ 18.631053] scsi host2: ahci
[ 18.637983] scsi host3: ahci
[ 18.644138] ata3: SATA max UDMA/133 abar m512@0x60200000 port
0x60200100 irq 23
[ 18.658792] ata4: SATA max UDMA/133 abar m512@0x60200000 port
0x60200180 irq 23
[ 18.673827] pci 0000:00:02.0: enabling device (0000 -> 0003)
[ 18.685151] ahci 0000:03:00.0: enabling device (0000 -> 0003)
[ 18.696782] ahci 0000:03:00.0: SSS flag set, parallel bus scan disabled
[ 18.710025] ahci 0000:03:00.0: AHCI 0001.0200 32 slots 2 ports 6
Gbps 0x3 impl IDE mode
[ 18.725972] ahci 0000:03:00.0: flags: 64bit ncq sntf stag led clo
pmp pio slum part ccc sxs

And you are totally right, the setting is writing in the wrong place.
I changed the device tree and the way interrupts are mapped
to avoid using a custom 'map_irq' function [1]. Before that commit the
pci virtual bridge register was reordering the
buses enumeration depending on link status, so there I should also
properly rewrite the code in question.

I can rewrite the code to read and write config properly using the
slot moving the code into 'mt7621_pcie_enable_port' as follows:

static void mt7621_pcie_enable_port(struct mt7621_pcie_port *port)
{
struct mt7621_pcie *pcie = port->pcie;
u32 slot = port->slot;
u32 offset = MT7621_PCIE_OFFSET + (slot * MT7621_NEXT_PORT);
u32 val;

/* enable pcie interrupt */
val = pcie_read(pcie, RALINK_PCI_PCIMSK_ADDR);
val |= PCIE_PORT_INT_EN(slot);

/* map 2G DDR region */
pcie_write(pcie, PCIE_BAR_MAP_MAX | PCIE_BAR_ENABLE,
offset + RALINK_PCI_BAR0SETUP_ADDR);

/* configure class code and revision ID */
pcie_write(pcie, PCIE_CLASS_CODE | PCIE_REVISION_ID,
offset + RALINK_PCI_CLASS);

/* configure RC FTS number to 250 when it leaves L0s */
val = read_config(pcie, slot, PCIE_FTS_NUM);
val &= ~PCIE_FTS_NUM_MASK;
val |= PCIE_FTS_NUM_L0(0x50);
write_config(pcie, slot, PCIE_FTS_NUM, val);
}

static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
{
struct device *dev = pcie->dev;
struct mt7621_pcie_port *port;
int err;

/* Setup MEMWIN and IOWIN */
pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);

list_for_each_entry(port, &pcie->ports, list) {
if (port->enabled) {
err = clk_prepare_enable(port->clk);
if (err) {
dev_err(dev, "enabling clk pcie%d\n",
port->slot);
return err;
}

mt7621_pcie_enable_port(port);
dev_info(dev, "PCIE%d enabled\n", port->slot);
}
}

return 0;
}

Or just delete the setting and the read and write config functions
since they are not being used in any other place. My two boards work
without this setting but I don't know about other boards.

What do you think?

Best regards,
Sergio Paracuellos

[0]: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/tree/drivers/staging/mt7621-pci/pci-mt7621.c?h=v4.18#n663
[1]: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/commit/drivers/staging/mt7621-pci?h=staging-testing&id=b99cc3a2b6b62cf994acac5cced03298d9908c9b

>
> > Device tree node: /sys/firmware/devicetree/base/pcie@1e140000/pcie@2,0
> > Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
> > ParErr- Stepping- SERR- FastB2B- DisINTx-
> > Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort-
> > <TAbort- <MAbort- >SERR- <PERR- INTx-
> > Latency: 0
> > Interrupt: pin A routed to IRQ 255
> > Region 1: Memory at 60200000 (32-bit, non-prefetchable) [size=64K]
> > Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
> > I/O behind bridge: 00000000-00000fff [size=4K]
> > Memory behind bridge: 60000000-600fffff [size=1M]
> > Prefetchable memory behind bridge: 60100000-601fffff [size=1M]
> > Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort-
> > <TAbort- <MAbort- <SERR- <PERR-
> > BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
> > PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
> > Capabilities: [40] Power Management version 3
> > Flags: PMEClk- DSI- D1+ D2- AuxCurrent=375mA
> > PME(D0+,D1+,D2-,D3hot+,D3cold-)
> > Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
> > Capabilities: [50] MSI: Enable- Count=1/1 Maskable- 64bit+
> > Address: 0000000000000000 Data: 0000
> > Capabilities: [70] Express (v2) Root Port (Slot-), MSI 00
> > DevCap: MaxPayload 128 bytes, PhantFunc 0
> > ExtTag- RBE+
> > DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
> > RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
> > MaxPayload 128 bytes, MaxReadReq 128 bytes
> > DevSta: CorrErr+ NonFatalErr- FatalErr- UnsupReq-
> > AuxPwr- TransPend-
> > LnkCap: Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1,
> > Exit Latency L0s <512ns, L1 <64us
> > ClockPM- Surprise- LLActRep+ BwNot- ASPMOptComp-
> > LnkCtl: ASPM Disabled; RCB 128 bytes, Disabled- CommClk-
> > ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
> > LnkSta: Speed 2.5GT/s (ok), Width x1 (ok)
> > TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
> > RootCap: CRSVisible-
> > RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal-
> > PMEIntEna- CRSVisible-
> > RootSta: PME ReqID 0000, PMEStatus- PMEPending-
> > DevCap2: Completion Timeout: Not Supported,
> > TimeoutDis+ NROPrPrP- LTR-
> > 10BitTagComp- 10BitTagReq- OBFF Not
> > Supported, ExtFmt- EETLPPrefix-
> > EmergencyPowerReduction Not Supported,
> > EmergencyPowerReductionInit-
> > FRS- LN System CLS Not Supported, TPHComp-
> > ExtTPHComp- ARIFwd-
> > AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
> > DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
> > LTR- OBFF Disabled, ARIFwd-
> > AtomicOpsCtl: ReqEn- EgressBlck-
> > LnkCap2: Supported Link Speeds: 2.5GT/s, Crosslink-
> > Retimer- 2Retimers- DRS-
> > LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
> > Transmit Margin: Normal Operating Range,
> > EnterModifiedCompliance- ComplianceSOS-
> > Compliance De-emphasis: -6dB
> > LnkSta2: Current De-emphasis Level: -6dB,
> > EqualizationComplete- EqualizationPhase1-
> > EqualizationPhase2- EqualizationPhase3-
> > LinkEqualizationRequest-
> > Retimer- 2Retimers- CrosslinkRes: unsupported
> > Capabilities: [100 v1] Advanced Error Reporting
> > UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt-
> > UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
> > UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt-
> > UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
> > UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt-
> > UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
> > CESta: RxErr+ BadTLP- BadDLLP- Rollover- Timeout-
> > AdvNonFatalErr-
> > CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout-
> > AdvNonFatalErr+
> > AERCap: First Error Pointer: 00, ECRCGenCap+
> > ECRCGenEn- ECRCChkCap+ ECRCChkEn-
> > MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
> > HeaderLog: 00000000 00000000 00000000 00000000
> > RootCmd: CERptEn- NFERptEn- FERptEn-
> > RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
> > FirstFatal- NonFatalMsg- FatalMsg- IntMsg 0
> > ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
> > Capabilities: [140 v1] Virtual Channel
> > Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
> > Arb: Fixed- WRR32- WRR64- WRR128-
> > Ctrl: ArbSelect=Fixed
> > Status: InProgress-
> > VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
> > Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
> > Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
> > Status: NegoPending- InProgress-
> > lspci: Unable to load libkmod resources: error -12
> >
> > 01:00.0 Network controller [0280]: MEDIATEK Corp. Device [14c3:7612]
> > Subsystem: MEDIATEK Corp. Device [14c3:7612]
> > Device tree node:
> > /sys/firmware/devicetree/base/pcie@1e140000/pcie@2,0/wifi@0,0
> > Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
> > ParErr- Stepping- SERR- FastB2B- DisINTx-
> > Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort-
> > <TAbort- <MAbort- >SERR- <PERR- INTx-
> > Latency: 0
> > Interrupt: pin A routed to IRQ 20
> > Region 0: Memory at 60000000 (64-bit, non-prefetchable) [size=1M]
> > Expansion ROM at 60100000 [virtual] [disabled] [size=64K]
> > Capabilities: [40] Power Management version 3
> > Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA
> > PME(D0+,D1-,D2-,D3hot+,D3cold+)
> > Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
> > Capabilities: [50] MSI: Enable- Count=1/1 Maskable- 64bit+
> > Address: 0000000000000000 Data: 0000
> > Capabilities: [70] Express (v2) Endpoint, MSI 00
> > DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s
> > unlimited, L1 unlimited
> > ExtTag- AttnBtn- AttnInd- PwrInd- RBE+
> > FLReset- SlotPowerLimit 0.000W
> > DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
> > RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
> > MaxPayload 128 bytes, MaxReadReq 128 bytes
> > DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq-
> > AuxPwr+ TransPend-
> > LnkCap: Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1,
> > Exit Latency L0s <2us, L1 unlimited
> > ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
> > LnkCtl: ASPM Disabled; RCB 64 bytes, Disabled- CommClk-
> > ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
> > LnkSta: Speed 2.5GT/s (ok), Width x1 (ok)
> > TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
> > DevCap2: Completion Timeout: Range ABCD, TimeoutDis+
> > NROPrPrP- LTR-
> > 10BitTagComp- 10BitTagReq- OBFF Not
> > Supported, ExtFmt- EETLPPrefix-
> > EmergencyPowerReduction Not Supported,
> > EmergencyPowerReductionInit-
> > FRS- TPHComp- ExtTPHComp-
> > AtomicOpsCap: 32bit- 64bit- 128bitCAS-
> > DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
> > LTR- OBFF Disabled,
> > AtomicOpsCtl: ReqEn-
> > LnkCap2: Supported Link Speeds: 2.5GT/s, Crosslink-
> > Retimer- 2Retimers- DRS-
> > LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
> > Transmit Margin: Normal Operating Range,
> > EnterModifiedCompliance- ComplianceSOS-
> > Compliance De-emphasis: -6dB
> > LnkSta2: Current De-emphasis Level: -3.5dB,
> > EqualizationComplete- EqualizationPhase1-
> > EqualizationPhase2- EqualizationPhase3-
> > LinkEqualizationRequest-
> > Retimer- 2Retimers- CrosslinkRes: unsupported
> > Capabilities: [100 v2] Advanced Error Reporting
> > UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt-
> > UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
> > UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt-
> > UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
> > UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt-
> > UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
> > CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout-
> > AdvNonFatalErr-
> > CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout-
> > AdvNonFatalErr+
> > AERCap: First Error Pointer: 00, ECRCGenCap+
> > ECRCGenEn- ECRCChkCap+ ECRCChkEn-
> > MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
> > HeaderLog: 00000000 00000000 00000000 00000000
> > Capabilities: [148 v1] Device Serial Number 00-00-00-00-00-00-00-00
> > Capabilities: [158 v1] Latency Tolerance Reporting
> > Max snoop latency: 0ns
> > Max no snoop latency: 0ns
> > Capabilities: [160 v1] L1 PM Substates
> > L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+
> > ASPM_L1.1+ L1_PM_Substates+
> > PortCommonModeRestoreTime=50us PortTPowerOnTime=10us
> > L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
> > T_CommonMode=0us LTR1.2_Threshold=0ns
> > L1SubCtl2: T_PwrOn=10us
> > Kernel driver in use: mt76x2e
> >
> > Best regards,
> > Sergio Paracuellos
> >
> > >
> > > > > > > > > + }
> > > > > > > > > +
> > > > > > > > > + return 0;
> > > > > > > > > +}

2021-06-04 18:51:57

by Rob Herring

[permalink] [raw]
Subject: Re: [PATCH 2/4] MIPS: pci: Add driver for MT7621 PCIe controller

On Fri, Jun 04, 2021 at 06:55:25PM +0200, Pali Roh?r wrote:
> On Wednesday 02 June 2021 14:43:53 Sergio Paracuellos wrote:
> > Hi Pali,
> >
> > On Wed, Jun 2, 2021 at 2:23 PM Pali Roh?r <[email protected]> wrote:
> > >
> > > On Wednesday 02 June 2021 14:16:26 Sergio Paracuellos wrote:
> > > > Hi Pali,
> > > >
> > > > On Mon, May 31, 2021 at 4:19 PM Sergio Paracuellos
> > > > <[email protected]> wrote:
> > > > >
> > > > > On Mon, May 31, 2021 at 3:50 PM Pali Roh?r <[email protected]> wrote:
> > > > > >
> > > > > > On Monday 31 May 2021 15:39:55 Sergio Paracuellos wrote:
> > > > > > > Hi Pali,
> > > > > > >
> > > > > > > Thanks for your comments.
> > > > > > >
> > > > > > > On Mon, May 31, 2021 at 3:14 PM Pali Roh?r <[email protected]> wrote:
> > > > > > > >
> > > > > > > > On Saturday 15 May 2021 14:40:53 Sergio Paracuellos wrote:
> > > > > > > > > This patch adds a driver for the PCIe controller of MT7621 SoC.
> > > > > > > > >
> > > > > > > > > Signed-off-by: Sergio Paracuellos <[email protected]>
> > > > > > > > > ---
> > > > > > > > > arch/mips/pci/Makefile | 1 +
> > > > > > > > > arch/mips/pci/pci-mt7621.c | 624 +++++++++++++++++++++++++++++++++++++
> > > > > > > > > arch/mips/ralink/Kconfig | 9 +-
> > > > > > > > > 3 files changed, 633 insertions(+), 1 deletion(-)
> > > > > > > > > create mode 100644 arch/mips/pci/pci-mt7621.c
> > > > > > > > >
> > > > > > > > > diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile
> > > > > > > > > index f3eecc065e5c..178c550739c4 100644
> > > > > > > > > --- a/arch/mips/pci/Makefile
> > > > > > > > > +++ b/arch/mips/pci/Makefile
> > > > > > > > > @@ -24,6 +24,7 @@ obj-$(CONFIG_PCI_AR2315) += pci-ar2315.o
> > > > > > > > > obj-$(CONFIG_SOC_AR71XX) += pci-ar71xx.o
> > > > > > > > > obj-$(CONFIG_PCI_AR724X) += pci-ar724x.o
> > > > > > > > > obj-$(CONFIG_PCI_XTALK_BRIDGE) += pci-xtalk-bridge.o
> > > > > > > > > +obj-$(CONFIG_PCI_MT7621) += pci-mt7621.o
> > > > > > > > > #
> > > > > > > > > # These are still pretty much in the old state, watch, go blind.
> > > > > > > > > #
> > > > > > > > > diff --git a/arch/mips/pci/pci-mt7621.c b/arch/mips/pci/pci-mt7621.c
> > > > > > > > > new file mode 100644
> > > > > > > > > index 000000000000..fe1945819d25
> > > > > > > > > --- /dev/null
> > > > > > > > > +++ b/arch/mips/pci/pci-mt7621.c
> > > > > > > > ...
> > > > > > > > > +static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> > > > > > > > > +{
> > > > > > > > > + struct device *dev = pcie->dev;
> > > > > > > > > + struct mt7621_pcie_port *port;
> > > > > > > > > + u8 num_slots_enabled = 0;
> > > > > > > > > + u32 slot;
> > > > > > > > > + u32 val;
> > > > > > > > > + int err;
> > > > > > > > > +
> > > > > > > > > + /* Setup MEMWIN and IOWIN */
> > > > > > > > > + pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> > > > > > > > > + pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
> > > > > > > > > +
> > > > > > > > > + list_for_each_entry(port, &pcie->ports, list) {
> > > > > > > > > + if (port->enabled) {
> > > > > > > > > + err = clk_prepare_enable(port->clk);
> > > > > > > > > + if (err) {
> > > > > > > > > + dev_err(dev, "enabling clk pcie%d\n", slot);
> > > > > > > > > + return err;
> > > > > > > > > + }
> > > > > > > > > +
> > > > > > > > > + mt7621_pcie_enable_port(port);
> > > > > > > > > + dev_info(dev, "PCIE%d enabled\n", port->slot);
> > > > > > > > > + num_slots_enabled++;
> > > > > > > > > + }
> > > > > > > > > + }
> > > > > > > > > +
> > > > > > > > > + for (slot = 0; slot < num_slots_enabled; slot++) {
> > > > > > > > > + val = read_config(pcie, slot, PCI_COMMAND);
> > > > > > > > > + val |= PCI_COMMAND_MASTER;
> > > > > > > > > + write_config(pcie, slot, PCI_COMMAND, val);
> > > > > > > >
> > > > > > > > Hello! Is this part of code correct? Because it looks strange if PCIe
> > > > > > > > controller driver automatically enables PCI bus mastering, prior device
> > > > > > > > driver initialize itself.
> > > > > > > >
> > > > > > > > Moreover kernel has already function pci_set_master() for this purpose
> > > > > > > > which is used by device drivers.
> > > > > > > >
> > > > > > > > So I think this code can confuse some device drivers...
> > > > > > >
> > > > > > > I agree that we have pci_set_master() to be used in pci device driver
> > > > > > > code. Original controller driver set this bit for enabled slots. Since
> > > > > > > there is no documentation at all for the PCI in this SoC
> > > > > >
> > > > > > I see... this is really a big problem to do any driver development...
> > > > >
> > > > > For sure it is :(.
> > > > >
> > > > > >
> > > > > > > I have
> > > > > > > maintained the setting in the driver in a cleaner way. See original
> > > > > > > driver code and the setting here [0]. There is no other reason than
> > > > > > > that. I am ok with removing this from here and testing with my two
> > > > > > > devices that everything is still ok if having this setting in the pci
> > > > > > > controller driver is a real problem.
> > > > > >
> > > > > > You can run lspci -nnvv with and without PCI_COMMAND_MASTER code and
> > > > > > then compare outputs.
> > > > > >
> > > > > > Device drivers for sure enable PCI_COMMAND_MASTER at the time when it is
> > > > > > needed, so it is possible that there would be no difference in lspci
> > > > > > output.
> > > > >
> > > > > Thanks. I will take this into account when v2 is submitted after more
> > > > > review comments come :).
> > > >
> > > > I have tested to remove this and check lspci -nnvv output with and
> > > > without PCI_COMMAND_MASTER code and, as you pointed out, there is no
> > > > difference between them. Also, both boards are working without
> > > > regressions at all. So I will remove this code for next version.
> > >
> > > Perfect!
> > >
> > > > Thanks,
> > > > Sergio Paracuellos
> > > > >
> > > > > >
> > > > > > > [0]: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/tree/drivers/staging/mt7621-pci/pci-mt7621.c?h=v4.18#n676
> > > > > > >
> > > > > > > Best regards,
> > > > > > > Sergio Paracuellos
> > > > > > > >
> > > > > > > > > + /* configure RC FTS number to 250 when it leaves L0s */
> > > > > > > > > + val = read_config(pcie, slot, PCIE_FTS_NUM);
> > > > > > > > > + val &= ~PCIE_FTS_NUM_MASK;
> > > > > > > > > + val |= PCIE_FTS_NUM_L0(0x50);
> > > > > > > > > + write_config(pcie, slot, PCIE_FTS_NUM, val);
> > >
> > > Could you look also what is doing this code (PCIE_FTS_NUM)? It is marked
> > > as MT specific register. But from this code for me it looks like that it
> > > just access config space of some device and therefore it could be some
> > > standard PCIe register. Just with hardcoded calculated offset.
>
> So based on your lspci output, there is no PCIe capability register at
> address PCIE_FTS_NUM (0x70c), right? It seems strange to trying access
> capability register outside of capability list.

Looks like a DW PCIe port logic register:

drivers/pci/controller/dwc/pcie-designware.h-/* Synopsys-specific PCIe configuration registers */
drivers/pci/controller/dwc/pcie-designware.h:#define PCIE_PORT_AFR 0x70C
drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_N_FTS_MASK GENMASK(15, 8)
drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_N_FTS(n) FIELD_PREP(PORT_AFR_N_FTS_MASK, n)
drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_CC_N_FTS_MASK GENMASK(23, 16)
drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_CC_N_FTS(n) FIELD_PREP(PORT_AFR_CC_N_FTS_MASK, n)
drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_ENTER_ASPM BIT(30)
drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_L0S_ENTRANCE_LAT_SHIFT 24
drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_L0S_ENTRANCE_LAT_MASK GENMASK(26, 24)
drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_L1_ENTRANCE_LAT_SHIFT 27
drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_L1_ENTRANCE_LAT_MASK GENMASK(29, 27)

Rob

2021-06-04 19:34:34

by Rob Herring

[permalink] [raw]
Subject: Re: [PATCH 2/4] MIPS: pci: Add driver for MT7621 PCIe controller

On Sat, May 15, 2021 at 02:40:53PM +0200, Sergio Paracuellos wrote:
> This patch adds a driver for the PCIe controller of MT7621 SoC.
>
> Signed-off-by: Sergio Paracuellos <[email protected]>
> ---
> arch/mips/pci/Makefile | 1 +
> arch/mips/pci/pci-mt7621.c | 624 +++++++++++++++++++++++++++++++++++++
> arch/mips/ralink/Kconfig | 9 +-
> 3 files changed, 633 insertions(+), 1 deletion(-)
> create mode 100644 arch/mips/pci/pci-mt7621.c
>
> diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile
> index f3eecc065e5c..178c550739c4 100644
> --- a/arch/mips/pci/Makefile
> +++ b/arch/mips/pci/Makefile
> @@ -24,6 +24,7 @@ obj-$(CONFIG_PCI_AR2315) += pci-ar2315.o
> obj-$(CONFIG_SOC_AR71XX) += pci-ar71xx.o
> obj-$(CONFIG_PCI_AR724X) += pci-ar724x.o
> obj-$(CONFIG_PCI_XTALK_BRIDGE) += pci-xtalk-bridge.o
> +obj-$(CONFIG_PCI_MT7621) += pci-mt7621.o
> #
> # These are still pretty much in the old state, watch, go blind.
> #
> diff --git a/arch/mips/pci/pci-mt7621.c b/arch/mips/pci/pci-mt7621.c
> new file mode 100644
> index 000000000000..fe1945819d25
> --- /dev/null
> +++ b/arch/mips/pci/pci-mt7621.c
> @@ -0,0 +1,624 @@
> +// SPDX-License-Identifier: GPL-2.0+
> +/*
> + * BRIEF MODULE DESCRIPTION
> + * PCI init for Ralink RT2880 solution
> + *
> + * Copyright 2007 Ralink Inc. ([email protected])
> + *
> + * May 2007 Bruce Chang
> + * Initial Release
> + *
> + * May 2009 Bruce Chang
> + * support RT2880/RT3883 PCIe
> + *
> + * May 2011 Bruce Chang
> + * support RT6855/MT7620 PCIe
> + */
> +
> +#include <linux/bitops.h>
> +#include <linux/clk.h>
> +#include <linux/delay.h>
> +#include <linux/gpio/consumer.h>
> +#include <linux/module.h>
> +#include <linux/of.h>
> +#include <linux/of_address.h>
> +#include <linux/of_pci.h>
> +#include <linux/of_platform.h>
> +#include <linux/pci.h>
> +#include <linux/phy/phy.h>
> +#include <linux/platform_device.h>
> +#include <linux/reset.h>
> +#include <linux/sys_soc.h>
> +
> +/* MediaTek specific configuration registers */
> +#define PCIE_FTS_NUM 0x70c
> +#define PCIE_FTS_NUM_MASK GENMASK(15, 8)
> +#define PCIE_FTS_NUM_L0(x) (((x) & 0xff) << 8)
> +
> +/* Host-PCI bridge registers */
> +#define RALINK_PCI_PCICFG_ADDR 0x0000
> +#define RALINK_PCI_PCIMSK_ADDR 0x000C
> +#define RALINK_PCI_CONFIG_ADDR 0x0020
> +#define RALINK_PCI_CONFIG_DATA 0x0024
> +#define RALINK_PCI_MEMBASE 0x0028
> +#define RALINK_PCI_IOBASE 0x002C
> +
> +/* PCIe RC control registers */
> +#define MT7621_PCIE_OFFSET 0x2000
> +#define MT7621_NEXT_PORT 0x1000
> +
> +#define RALINK_PCI_BAR0SETUP_ADDR 0x0010

Standard BAR0 register?

> +#define RALINK_PCI_ID 0x0030
> +#define RALINK_PCI_CLASS 0x0034
> +#define RALINK_PCI_SUBID 0x0038
> +#define RALINK_PCI_STATUS 0x0050
> +
> +/* Some definition values */
> +#define PCIE_REVISION_ID BIT(0)
> +#define PCIE_CLASS_CODE (0x60400 << 8)
> +#define PCIE_BAR_MAP_MAX GENMASK(30, 16)
> +#define PCIE_BAR_ENABLE BIT(0)
> +#define PCIE_PORT_INT_EN(x) BIT(20 + (x))
> +#define PCIE_PORT_LINKUP BIT(0)
> +
> +#define PERST_DELAY_MS 100
> +
> +/**
> + * struct mt7621_pcie_port - PCIe port information
> + * @base: I/O mapped register base
> + * @list: port list
> + * @pcie: pointer to PCIe host info
> + * @clk: pointer to the port clock gate
> + * @phy: pointer to PHY control block
> + * @pcie_rst: pointer to port reset control
> + * @gpio_rst: gpio reset
> + * @slot: port slot
> + * @enabled: indicates if port is enabled
> + */
> +struct mt7621_pcie_port {
> + void __iomem *base;
> + struct list_head list;
> + struct mt7621_pcie *pcie;
> + struct clk *clk;
> + struct phy *phy;
> + struct reset_control *pcie_rst;
> + struct gpio_desc *gpio_rst;
> + u32 slot;
> + bool enabled;
> +};
> +
> +/**
> + * struct mt7621_pcie - PCIe host information
> + * @base: IO Mapped Register Base
> + * @io: IO resource
> + * @mem: pointer to non-prefetchable memory resource
> + * @dev: Pointer to PCIe device
> + * @io_map_base: virtual memory base address for io
> + * @ports: pointer to PCIe port information
> + * @resets_inverted: depends on chip revision
> + * reset lines are inverted.
> + */
> +struct mt7621_pcie {
> + void __iomem *base;
> + struct device *dev;

> + struct resource io;
> + struct resource *mem;
> + unsigned long io_map_base;

These are all stored in the host bridge struct, no need for you to store
them.

> + struct list_head ports;

A list is kind of an overkill for 3 entries and you know how many ports.
Just embed an array of struct mt7621_pcie_port. Then you only need 1
alloc.

> + bool resets_inverted;
> +};
> +
> +static inline u32 pcie_read(struct mt7621_pcie *pcie, u32 reg)
> +{
> + return readl(pcie->base + reg);

Can use _relaxed variants here and through out.

> +}
> +
> +static inline void pcie_write(struct mt7621_pcie *pcie, u32 val, u32 reg)
> +{
> + writel(val, pcie->base + reg);
> +}
> +
> +static inline void pcie_rmw(struct mt7621_pcie *pcie, u32 reg, u32 clr, u32 set)
> +{
> + u32 val = readl(pcie->base + reg);
> +
> + val &= ~clr;
> + val |= set;
> + writel(val, pcie->base + reg);
> +}
> +
> +static inline u32 pcie_port_read(struct mt7621_pcie_port *port, u32 reg)
> +{
> + return readl(port->base + reg);
> +}
> +
> +static inline void pcie_port_write(struct mt7621_pcie_port *port,
> + u32 val, u32 reg)
> +{
> + writel(val, port->base + reg);
> +}
> +
> +static inline u32 mt7621_pci_get_cfgaddr(unsigned int bus, unsigned int slot,
> + unsigned int func, unsigned int where)
> +{
> + return (((where & 0xF00) >> 8) << 24) | (bus << 16) | (slot << 11) |
> + (func << 8) | (where & 0xfc) | 0x80000000;
> +}
> +
> +static void __iomem *mt7621_pcie_map_bus(struct pci_bus *bus,
> + unsigned int devfn, int where)
> +{
> + struct mt7621_pcie *pcie = bus->sysdata;
> + u32 address = mt7621_pci_get_cfgaddr(bus->number, PCI_SLOT(devfn),
> + PCI_FUNC(devfn), where);
> +
> + writel(address, pcie->base + RALINK_PCI_CONFIG_ADDR);
> +
> + return pcie->base + RALINK_PCI_CONFIG_DATA + (where & 3);
> +}
> +
> +struct pci_ops mt7621_pci_ops = {
> + .map_bus = mt7621_pcie_map_bus,
> + .read = pci_generic_config_read,
> + .write = pci_generic_config_write,
> +};
> +
> +static u32 read_config(struct mt7621_pcie *pcie, unsigned int dev, u32 reg)
> +{
> + u32 address = mt7621_pci_get_cfgaddr(0, dev, 0, reg);
> +
> + pcie_write(pcie, address, RALINK_PCI_CONFIG_ADDR);
> + return pcie_read(pcie, RALINK_PCI_CONFIG_DATA);
> +}
> +
> +static void write_config(struct mt7621_pcie *pcie, unsigned int dev,
> + u32 reg, u32 val)
> +{
> + u32 address = mt7621_pci_get_cfgaddr(0, dev, 0, reg);
> +
> + pcie_write(pcie, address, RALINK_PCI_CONFIG_ADDR);
> + pcie_write(pcie, val, RALINK_PCI_CONFIG_DATA);
> +}
> +
> +static inline void mt7621_rst_gpio_pcie_assert(struct mt7621_pcie_port *port)
> +{
> + if (port->gpio_rst)

Don't need the if. gpiod_set_value should work with NULL.

> + gpiod_set_value(port->gpio_rst, 1);
> +}
> +
> +static inline void mt7621_rst_gpio_pcie_deassert(struct mt7621_pcie_port *port)
> +{
> + if (port->gpio_rst)
> + gpiod_set_value(port->gpio_rst, 0);
> +}
> +
> +static inline bool mt7621_pcie_port_is_linkup(struct mt7621_pcie_port *port)
> +{
> + return (pcie_port_read(port, RALINK_PCI_STATUS) & PCIE_PORT_LINKUP) != 0;
> +}
> +
> +static inline void mt7621_control_assert(struct mt7621_pcie_port *port)
> +{
> + struct mt7621_pcie *pcie = port->pcie;
> +
> + if (pcie->resets_inverted)
> + reset_control_assert(port->pcie_rst);
> + else
> + reset_control_deassert(port->pcie_rst);
> +}
> +
> +static inline void mt7621_control_deassert(struct mt7621_pcie_port *port)
> +{
> + struct mt7621_pcie *pcie = port->pcie;
> +
> + if (pcie->resets_inverted)
> + reset_control_deassert(port->pcie_rst);
> + else
> + reset_control_assert(port->pcie_rst);
> +}
> +
> +static void setup_cm_memory_region(struct mt7621_pcie *pcie)
> +{
> + struct resource *mem_resource = pcie->mem;
> + struct device *dev = pcie->dev;
> + resource_size_t mask;
> +
> + if (mips_cps_numiocu(0)) {
> + /*
> + * FIXME: hardware doesn't accept mask values with 1s after
> + * 0s (e.g. 0xffef), so it would be great to warn if that's
> + * about to happen
> + */
> + mask = ~(mem_resource->end - mem_resource->start);
> +
> + write_gcr_reg1_base(mem_resource->start);
> + write_gcr_reg1_mask(mask | CM_GCR_REGn_MASK_CMTGT_IOCU0);
> + dev_info(dev, "PCI coherence region base: 0x%08llx, mask/settings: 0x%08llx\n",
> + (unsigned long long)read_gcr_reg1_base(),
> + (unsigned long long)read_gcr_reg1_mask());
> + }
> +}
> +
> +static int mt7621_pci_parse_request_of_pci_ranges(struct pci_host_bridge *host)
> +{
> + struct mt7621_pcie *pcie = pci_host_bridge_priv(host);
> + struct device *dev = pcie->dev;
> + struct device_node *node = dev->of_node;
> + struct of_pci_range_parser parser;
> + struct resource_entry *entry;
> + struct of_pci_range range;
> + LIST_HEAD(res);
> +
> + if (of_pci_range_parser_init(&parser, node)) {
> + dev_err(dev, "missing \"ranges\" property\n");
> + return -EINVAL;
> + }
> +
> + /*
> + * IO_SPACE_LIMIT for MIPS is 0xffff but this platform uses IO at
> + * upper address 0x001e160000. of_pci_range_to_resource does not work

I think that's normal...

> + * well for MIPS platforms that don't define PCI_IOBASE, so set the IO
> + * resource manually instead.

Can't this be fixed?

> + */
> + for_each_of_pci_range(&parser, &range) {
> + switch (range.flags & IORESOURCE_TYPE_BITS) {

The core code already parses ranges for you. Try not to do it again.
(Use the resource instead)

> + case IORESOURCE_IO:
> + pcie->io_map_base =
> + (unsigned long)ioremap(range.cpu_addr,
> + range.size);
> + pcie->io.name = node->full_name;
> + pcie->io.flags = range.flags;
> + pcie->io.start = range.cpu_addr;
> + pcie->io.end = range.cpu_addr + range.size - 1;
> + pcie->io.parent = pcie->io.child = pcie->io.sibling = NULL;
> + set_io_port_base(pcie->io_map_base);
> + break;
> + }
> + }
> +
> + entry = resource_list_first_type(&host->windows, IORESOURCE_MEM);
> + if (!entry) {
> + dev_err(dev, "Cannot get memory resource");
> + return -EINVAL;
> + }
> +
> + pcie->mem = entry->res;
> + pci_add_resource(&res, &pcie->io);
> + pci_add_resource(&res, entry->res);
> + list_splice_init(&res, &host->windows);

This should already be done for you.

> +
> + return 0;
> +}
> +
> +static int mt7621_pcie_parse_port(struct mt7621_pcie *pcie,
> + int slot)
> +{
> + struct mt7621_pcie_port *port;
> + struct device *dev = pcie->dev;
> + struct platform_device *pdev = to_platform_device(dev);
> + char name[10];
> +
> + port = devm_kzalloc(dev, sizeof(*port), GFP_KERNEL);
> + if (!port)
> + return -ENOMEM;
> +
> + port->base = devm_platform_ioremap_resource(pdev, slot + 1);
> + if (IS_ERR(port->base))
> + return PTR_ERR(port->base);
> +
> + snprintf(name, sizeof(name), "pcie%d", slot);
> + port->clk = devm_clk_get(dev, name);
> + if (IS_ERR(port->clk)) {
> + dev_err(dev, "failed to get pcie%d clock\n", slot);
> + return PTR_ERR(port->clk);
> + }
> +
> + snprintf(name, sizeof(name), "pcie%d", slot);
> + port->pcie_rst = devm_reset_control_get_exclusive(dev, name);
> + if (PTR_ERR(port->pcie_rst) == -EPROBE_DEFER) {
> + dev_err(dev, "failed to get pcie%d reset control\n", slot);
> + return PTR_ERR(port->pcie_rst);
> + }
> +
> + snprintf(name, sizeof(name), "pcie-phy%d", slot);
> + port->phy = devm_phy_get(dev, name);
> + if (IS_ERR(port->phy) && slot != 1)
> + return PTR_ERR(port->phy);
> +
> + port->gpio_rst = devm_gpiod_get_index_optional(dev, "reset", slot,
> + GPIOD_OUT_LOW);
> + if (IS_ERR(port->gpio_rst)) {
> + dev_err(dev, "Failed to get GPIO for PCIe%d\n", slot);
> + return PTR_ERR(port->gpio_rst);
> + }
> +
> + port->slot = slot;
> + port->pcie = pcie;
> +
> + INIT_LIST_HEAD(&port->list);
> + list_add_tail(&port->list, &pcie->ports);
> +
> + return 0;
> +}
> +
> +static int mt7621_pcie_parse_dt(struct mt7621_pcie *pcie)
> +{
> + struct device *dev = pcie->dev;
> + struct platform_device *pdev = to_platform_device(dev);
> + struct device_node *node = dev->of_node, *child;
> + int err;
> +
> + pcie->base = devm_platform_ioremap_resource(pdev, 0);
> + if (IS_ERR(pcie->base))
> + return PTR_ERR(pcie->base);
> +
> + for_each_available_child_of_node(node, child) {
> + int slot;
> +
> + err = of_pci_get_devfn(child);
> + if (err < 0) {
> + of_node_put(child);
> + dev_err(dev, "failed to parse devfn: %d\n", err);
> + return err;
> + }
> +
> + slot = PCI_SLOT(err);
> +
> + err = mt7621_pcie_parse_port(pcie, slot);
> + if (err) {
> + of_node_put(child);
> + return err;
> + }
> + }
> +
> + return 0;
> +}
> +
> +static int mt7621_pcie_init_port(struct mt7621_pcie_port *port)
> +{
> + struct mt7621_pcie *pcie = port->pcie;
> + struct device *dev = pcie->dev;
> + u32 slot = port->slot;
> + int err;
> +
> + err = phy_init(port->phy);
> + if (err) {
> + dev_err(dev, "failed to initialize port%d phy\n", slot);
> + return err;
> + }
> +
> + err = phy_power_on(port->phy);
> + if (err) {
> + dev_err(dev, "failed to power on port%d phy\n", slot);
> + phy_exit(port->phy);
> + return err;
> + }
> +
> + port->enabled = true;
> +
> + return 0;
> +}
> +
> +static void mt7621_pcie_reset_assert(struct mt7621_pcie *pcie)
> +{
> + struct mt7621_pcie_port *port;
> +
> + list_for_each_entry(port, &pcie->ports, list) {
> + /* PCIe RC reset assert */
> + mt7621_control_assert(port);
> +
> + /* PCIe EP reset assert */
> + mt7621_rst_gpio_pcie_assert(port);
> + }
> +
> + msleep(PERST_DELAY_MS);
> +}
> +
> +static void mt7621_pcie_reset_rc_deassert(struct mt7621_pcie *pcie)
> +{
> + struct mt7621_pcie_port *port;
> +
> + list_for_each_entry(port, &pcie->ports, list)
> + mt7621_control_deassert(port);
> +}
> +
> +static void mt7621_pcie_reset_ep_deassert(struct mt7621_pcie *pcie)
> +{
> + struct mt7621_pcie_port *port;
> +
> + list_for_each_entry(port, &pcie->ports, list)
> + mt7621_rst_gpio_pcie_deassert(port);
> +
> + msleep(PERST_DELAY_MS);
> +}
> +
> +static void mt7621_pcie_init_ports(struct mt7621_pcie *pcie)
> +{
> + struct device *dev = pcie->dev;
> + struct mt7621_pcie_port *port, *tmp;
> + int err;
> +
> + mt7621_pcie_reset_assert(pcie);
> + mt7621_pcie_reset_rc_deassert(pcie);
> +
> + list_for_each_entry_safe(port, tmp, &pcie->ports, list) {
> + u32 slot = port->slot;
> +
> + if (slot == 1) {
> + port->enabled = true;
> + continue;
> + }
> +
> + err = mt7621_pcie_init_port(port);
> + if (err) {
> + dev_err(dev, "Initiating port %d failed\n", slot);
> + list_del(&port->list);
> + }
> + }
> +
> + mt7621_pcie_reset_ep_deassert(pcie);
> +
> + tmp = NULL;
> + list_for_each_entry(port, &pcie->ports, list) {
> + u32 slot = port->slot;
> +
> + if (!mt7621_pcie_port_is_linkup(port)) {
> + dev_err(dev, "pcie%d no card, disable it (RST & CLK)\n",
> + slot);
> + mt7621_control_assert(port);
> + clk_disable_unprepare(port->clk);
> + port->enabled = false;
> +
> + if (slot == 0) {
> + tmp = port;
> + continue;
> + }
> +
> + if (slot == 1 && tmp && !tmp->enabled)
> + phy_power_off(tmp->phy);
> + }
> + }
> +}
> +
> +static void mt7621_pcie_enable_port(struct mt7621_pcie_port *port)
> +{
> + struct mt7621_pcie *pcie = port->pcie;
> + u32 slot = port->slot;
> + u32 offset = MT7621_PCIE_OFFSET + (slot * MT7621_NEXT_PORT);

I don't see how this works unless the ports happen to be at the same VA
offset. The writes below are to the 'common' registers which are 0x100
bytes long based on the DT example, but the offset lines up with the
port offsets.

> + u32 val;
> +
> + /* enable pcie interrupt */
> + val = pcie_read(pcie, RALINK_PCI_PCIMSK_ADDR);
> + val |= PCIE_PORT_INT_EN(slot);
> + pcie_write(pcie, val, RALINK_PCI_PCIMSK_ADDR);
> +
> + /* map 2G DDR region */
> + pcie_write(pcie, PCIE_BAR_MAP_MAX | PCIE_BAR_ENABLE,
> + offset + RALINK_PCI_BAR0SETUP_ADDR);
> +
> + /* configure class code and revision ID */
> + pcie_write(pcie, PCIE_CLASS_CODE | PCIE_REVISION_ID,
> + offset + RALINK_PCI_CLASS);
> +}
> +
> +static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> +{
> + struct device *dev = pcie->dev;
> + struct mt7621_pcie_port *port;
> + u8 num_slots_enabled = 0;
> + u32 slot;
> + u32 val;
> + int err;
> +
> + /* Setup MEMWIN and IOWIN */
> + pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> + pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
> +
> + list_for_each_entry(port, &pcie->ports, list) {
> + if (port->enabled) {
> + err = clk_prepare_enable(port->clk);
> + if (err) {
> + dev_err(dev, "enabling clk pcie%d\n", slot);
> + return err;
> + }
> +
> + mt7621_pcie_enable_port(port);
> + dev_info(dev, "PCIE%d enabled\n", port->slot);
> + num_slots_enabled++;
> + }
> + }
> +
> + for (slot = 0; slot < num_slots_enabled; slot++) {
> + val = read_config(pcie, slot, PCI_COMMAND);
> + val |= PCI_COMMAND_MASTER;
> + write_config(pcie, slot, PCI_COMMAND, val);
> + /* configure RC FTS number to 250 when it leaves L0s */
> + val = read_config(pcie, slot, PCIE_FTS_NUM);
> + val &= ~PCIE_FTS_NUM_MASK;
> + val |= PCIE_FTS_NUM_L0(0x50);
> + write_config(pcie, slot, PCIE_FTS_NUM, val);
> + }
> +
> + return 0;
> +}
> +
> +static int mt7621_pcie_register_host(struct pci_host_bridge *host)
> +{
> + struct mt7621_pcie *pcie = pci_host_bridge_priv(host);
> +
> + host->ops = &mt7621_pci_ops;
> + host->sysdata = pcie;
> + return pci_host_probe(host);
> +}
> +
> +static const struct soc_device_attribute mt7621_pci_quirks_match[] = {
> + { .soc_id = "mt7621", .revision = "E2" }
> +};
> +
> +static int mt7621_pci_probe(struct platform_device *pdev)
> +{
> + struct device *dev = &pdev->dev;
> + const struct soc_device_attribute *attr;
> + struct mt7621_pcie *pcie;
> + struct pci_host_bridge *bridge;
> + int err;
> +
> + if (!dev->of_node)
> + return -ENODEV;
> +
> + bridge = devm_pci_alloc_host_bridge(dev, sizeof(*pcie));
> + if (!bridge)
> + return -ENOMEM;
> +
> + pcie = pci_host_bridge_priv(bridge);
> + pcie->dev = dev;
> + platform_set_drvdata(pdev, pcie);
> + INIT_LIST_HEAD(&pcie->ports);
> +
> + attr = soc_device_match(mt7621_pci_quirks_match);
> + if (attr)
> + pcie->resets_inverted = true;
> +
> + err = mt7621_pcie_parse_dt(pcie);
> + if (err) {
> + dev_err(dev, "Parsing DT failed\n");
> + return err;
> + }
> +
> + err = mt7621_pci_parse_request_of_pci_ranges(bridge);
> + if (err) {
> + dev_err(dev, "Error requesting pci resources from ranges");
> + return err;
> + }
> +
> + /* set resources limits */
> + ioport_resource.start = pcie->io.start;
> + ioport_resource.end = pcie->io.end;
> +
> + mt7621_pcie_init_ports(pcie);
> +
> + err = mt7621_pcie_enable_ports(pcie);

Really need 2 functions here?

> + if (err) {
> + dev_err(dev, "Error enabling pcie ports\n");
> + return err;
> + }
> +
> + setup_cm_memory_region(pcie);
> +
> + return mt7621_pcie_register_host(bridge);
> +}
> +
> +static const struct of_device_id mt7621_pci_ids[] = {
> + { .compatible = "mediatek,mt7621-pci" },
> + {},
> +};
> +MODULE_DEVICE_TABLE(of, mt7621_pci_ids);
> +
> +static struct platform_driver mt7621_pci_driver = {
> + .probe = mt7621_pci_probe,
> + .driver = {
> + .name = "mt7621-pci",
> + .of_match_table = of_match_ptr(mt7621_pci_ids),
> + },
> +};
> +builtin_platform_driver(mt7621_pci_driver);
> diff --git a/arch/mips/ralink/Kconfig b/arch/mips/ralink/Kconfig
> index ec4daa63c5e3..50e5a54f7d9e 100644
> --- a/arch/mips/ralink/Kconfig
> +++ b/arch/mips/ralink/Kconfig
> @@ -56,7 +56,7 @@ choice
> select MIPS_GIC
> select COMMON_CLK
> select CLKSRC_MIPS_GIC
> - select HAVE_PCI if PCI_MT7621
> + select HAVE_PCI
> select SOC_BUS
> endchoice
>
> @@ -101,4 +101,11 @@ choice
>
> endchoice
>
> +config PCI_MT7621
> + bool "MediaTek MT7621 PCI Controller"
> + depends on RALINK && SOC_MT7621

Ideally this should also have (|| COMPILE_TEST), but looks like there
are a few MIPS dependencies in here. So maybe (|| (MIPS &&
COMPILE_TEST)? If it's not built by allmodconfig or defconfig, it's hard
for people to compile test it.


> + select PCI_DRIVERS_GENERIC
> + help
> + This selects a driver for the MediaTek MT7621 PCI Controller.
> +
> endif
> --
> 2.25.1

2021-06-04 19:52:56

by Bjorn Helgaas

[permalink] [raw]
Subject: Re: [PATCH 2/4] MIPS: pci: Add driver for MT7621 PCIe controller

On Sat, May 15, 2021 at 02:40:53PM +0200, Sergio Paracuellos wrote:
> This patch adds a driver for the PCIe controller of MT7621 SoC.

If you put this in drivers/pci/, update the subject/commit log like
this:

PCI: mt7621: Add MediaTek MT7621 PCIe host controller driver

Add driver for the PCIe controller of the MT7621 SoC.

> Signed-off-by: Sergio Paracuellos <[email protected]>
> ---
> arch/mips/pci/Makefile | 1 +
> arch/mips/pci/pci-mt7621.c | 624 +++++++++++++++++++++++++++++++++++++
> arch/mips/ralink/Kconfig | 9 +-
> 3 files changed, 633 insertions(+), 1 deletion(-)
> create mode 100644 arch/mips/pci/pci-mt7621.c

I'd suggest a single commit that basically does a "git mv" from
drivers/staging/mt7621-pci to drivers/pci/controller/, with zero
changes to the driver itself.

> diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile
> index f3eecc065e5c..178c550739c4 100644
> --- a/arch/mips/pci/Makefile
> +++ b/arch/mips/pci/Makefile
> @@ -24,6 +24,7 @@ obj-$(CONFIG_PCI_AR2315) += pci-ar2315.o
> obj-$(CONFIG_SOC_AR71XX) += pci-ar71xx.o
> obj-$(CONFIG_PCI_AR724X) += pci-ar724x.o
> obj-$(CONFIG_PCI_XTALK_BRIDGE) += pci-xtalk-bridge.o
> +obj-$(CONFIG_PCI_MT7621) += pci-mt7621.o
> #
> # These are still pretty much in the old state, watch, go blind.
> #
> diff --git a/arch/mips/pci/pci-mt7621.c b/arch/mips/pci/pci-mt7621.c
> new file mode 100644
> index 000000000000..fe1945819d25
> --- /dev/null
> +++ b/arch/mips/pci/pci-mt7621.c
> @@ -0,0 +1,624 @@
> +// SPDX-License-Identifier: GPL-2.0+
> +/*
> + * BRIEF MODULE DESCRIPTION
> + * PCI init for Ralink RT2880 solution
> + *
> + * Copyright 2007 Ralink Inc. ([email protected])
> + *
> + * May 2007 Bruce Chang
> + * Initial Release
> + *
> + * May 2009 Bruce Chang
> + * support RT2880/RT3883 PCIe
> + *
> + * May 2011 Bruce Chang
> + * support RT6855/MT7620 PCIe
> + */
> +
> +#include <linux/bitops.h>
> +#include <linux/clk.h>
> +#include <linux/delay.h>
> +#include <linux/gpio/consumer.h>
> +#include <linux/module.h>
> +#include <linux/of.h>
> +#include <linux/of_address.h>
> +#include <linux/of_pci.h>
> +#include <linux/of_platform.h>
> +#include <linux/pci.h>
> +#include <linux/phy/phy.h>
> +#include <linux/platform_device.h>
> +#include <linux/reset.h>
> +#include <linux/sys_soc.h>
> +
> +/* MediaTek specific configuration registers */
> +#define PCIE_FTS_NUM 0x70c
> +#define PCIE_FTS_NUM_MASK GENMASK(15, 8)
> +#define PCIE_FTS_NUM_L0(x) (((x) & 0xff) << 8)
> +
> +/* Host-PCI bridge registers */
> +#define RALINK_PCI_PCICFG_ADDR 0x0000
> +#define RALINK_PCI_PCIMSK_ADDR 0x000C
> +#define RALINK_PCI_CONFIG_ADDR 0x0020
> +#define RALINK_PCI_CONFIG_DATA 0x0024
> +#define RALINK_PCI_MEMBASE 0x0028
> +#define RALINK_PCI_IOBASE 0x002C
> +
> +/* PCIe RC control registers */
> +#define MT7621_PCIE_OFFSET 0x2000
> +#define MT7621_NEXT_PORT 0x1000
> +
> +#define RALINK_PCI_BAR0SETUP_ADDR 0x0010
> +#define RALINK_PCI_ID 0x0030
> +#define RALINK_PCI_CLASS 0x0034
> +#define RALINK_PCI_SUBID 0x0038
> +#define RALINK_PCI_STATUS 0x0050
> +
> +/* Some definition values */
> +#define PCIE_REVISION_ID BIT(0)
> +#define PCIE_CLASS_CODE (0x60400 << 8)
> +#define PCIE_BAR_MAP_MAX GENMASK(30, 16)
> +#define PCIE_BAR_ENABLE BIT(0)
> +#define PCIE_PORT_INT_EN(x) BIT(20 + (x))
> +#define PCIE_PORT_LINKUP BIT(0)
> +
> +#define PERST_DELAY_MS 100
> +
> +/**
> + * struct mt7621_pcie_port - PCIe port information
> + * @base: I/O mapped register base
> + * @list: port list
> + * @pcie: pointer to PCIe host info
> + * @clk: pointer to the port clock gate
> + * @phy: pointer to PHY control block
> + * @pcie_rst: pointer to port reset control
> + * @gpio_rst: gpio reset
> + * @slot: port slot
> + * @enabled: indicates if port is enabled
> + */
> +struct mt7621_pcie_port {
> + void __iomem *base;
> + struct list_head list;
> + struct mt7621_pcie *pcie;
> + struct clk *clk;
> + struct phy *phy;
> + struct reset_control *pcie_rst;
> + struct gpio_desc *gpio_rst;
> + u32 slot;
> + bool enabled;
> +};
> +
> +/**
> + * struct mt7621_pcie - PCIe host information
> + * @base: IO Mapped Register Base
> + * @io: IO resource
> + * @mem: pointer to non-prefetchable memory resource
> + * @dev: Pointer to PCIe device
> + * @io_map_base: virtual memory base address for io
> + * @ports: pointer to PCIe port information
> + * @resets_inverted: depends on chip revision
> + * reset lines are inverted.
> + */
> +struct mt7621_pcie {
> + void __iomem *base;
> + struct device *dev;
> + struct resource io;
> + struct resource *mem;
> + unsigned long io_map_base;
> + struct list_head ports;
> + bool resets_inverted;
> +};
> +
> +static inline u32 pcie_read(struct mt7621_pcie *pcie, u32 reg)
> +{
> + return readl(pcie->base + reg);
> +}
> +
> +static inline void pcie_write(struct mt7621_pcie *pcie, u32 val, u32 reg)
> +{
> + writel(val, pcie->base + reg);
> +}
> +
> +static inline void pcie_rmw(struct mt7621_pcie *pcie, u32 reg, u32 clr, u32 set)
> +{
> + u32 val = readl(pcie->base + reg);
> +
> + val &= ~clr;
> + val |= set;
> + writel(val, pcie->base + reg);
> +}
> +
> +static inline u32 pcie_port_read(struct mt7621_pcie_port *port, u32 reg)
> +{
> + return readl(port->base + reg);
> +}
> +
> +static inline void pcie_port_write(struct mt7621_pcie_port *port,
> + u32 val, u32 reg)
> +{
> + writel(val, port->base + reg);
> +}
> +
> +static inline u32 mt7621_pci_get_cfgaddr(unsigned int bus, unsigned int slot,
> + unsigned int func, unsigned int where)
> +{
> + return (((where & 0xF00) >> 8) << 24) | (bus << 16) | (slot << 11) |
> + (func << 8) | (where & 0xfc) | 0x80000000;
> +}
> +
> +static void __iomem *mt7621_pcie_map_bus(struct pci_bus *bus,
> + unsigned int devfn, int where)
> +{
> + struct mt7621_pcie *pcie = bus->sysdata;
> + u32 address = mt7621_pci_get_cfgaddr(bus->number, PCI_SLOT(devfn),
> + PCI_FUNC(devfn), where);
> +
> + writel(address, pcie->base + RALINK_PCI_CONFIG_ADDR);
> +
> + return pcie->base + RALINK_PCI_CONFIG_DATA + (where & 3);
> +}
> +
> +struct pci_ops mt7621_pci_ops = {
> + .map_bus = mt7621_pcie_map_bus,
> + .read = pci_generic_config_read,
> + .write = pci_generic_config_write,
> +};
> +
> +static u32 read_config(struct mt7621_pcie *pcie, unsigned int dev, u32 reg)
> +{
> + u32 address = mt7621_pci_get_cfgaddr(0, dev, 0, reg);
> +
> + pcie_write(pcie, address, RALINK_PCI_CONFIG_ADDR);
> + return pcie_read(pcie, RALINK_PCI_CONFIG_DATA);
> +}
> +
> +static void write_config(struct mt7621_pcie *pcie, unsigned int dev,
> + u32 reg, u32 val)
> +{
> + u32 address = mt7621_pci_get_cfgaddr(0, dev, 0, reg);
> +
> + pcie_write(pcie, address, RALINK_PCI_CONFIG_ADDR);
> + pcie_write(pcie, val, RALINK_PCI_CONFIG_DATA);
> +}
> +
> +static inline void mt7621_rst_gpio_pcie_assert(struct mt7621_pcie_port *port)
> +{
> + if (port->gpio_rst)
> + gpiod_set_value(port->gpio_rst, 1);
> +}
> +
> +static inline void mt7621_rst_gpio_pcie_deassert(struct mt7621_pcie_port *port)
> +{
> + if (port->gpio_rst)
> + gpiod_set_value(port->gpio_rst, 0);
> +}
> +
> +static inline bool mt7621_pcie_port_is_linkup(struct mt7621_pcie_port *port)
> +{
> + return (pcie_port_read(port, RALINK_PCI_STATUS) & PCIE_PORT_LINKUP) != 0;
> +}
> +
> +static inline void mt7621_control_assert(struct mt7621_pcie_port *port)
> +{
> + struct mt7621_pcie *pcie = port->pcie;
> +
> + if (pcie->resets_inverted)
> + reset_control_assert(port->pcie_rst);
> + else
> + reset_control_deassert(port->pcie_rst);
> +}
> +
> +static inline void mt7621_control_deassert(struct mt7621_pcie_port *port)
> +{
> + struct mt7621_pcie *pcie = port->pcie;
> +
> + if (pcie->resets_inverted)
> + reset_control_deassert(port->pcie_rst);
> + else
> + reset_control_assert(port->pcie_rst);
> +}
> +
> +static void setup_cm_memory_region(struct mt7621_pcie *pcie)
> +{
> + struct resource *mem_resource = pcie->mem;
> + struct device *dev = pcie->dev;
> + resource_size_t mask;
> +
> + if (mips_cps_numiocu(0)) {
> + /*
> + * FIXME: hardware doesn't accept mask values with 1s after
> + * 0s (e.g. 0xffef), so it would be great to warn if that's
> + * about to happen
> + */
> + mask = ~(mem_resource->end - mem_resource->start);
> +
> + write_gcr_reg1_base(mem_resource->start);
> + write_gcr_reg1_mask(mask | CM_GCR_REGn_MASK_CMTGT_IOCU0);
> + dev_info(dev, "PCI coherence region base: 0x%08llx, mask/settings: 0x%08llx\n",
> + (unsigned long long)read_gcr_reg1_base(),
> + (unsigned long long)read_gcr_reg1_mask());
> + }
> +}
> +
> +static int mt7621_pci_parse_request_of_pci_ranges(struct pci_host_bridge *host)
> +{
> + struct mt7621_pcie *pcie = pci_host_bridge_priv(host);
> + struct device *dev = pcie->dev;
> + struct device_node *node = dev->of_node;
> + struct of_pci_range_parser parser;
> + struct resource_entry *entry;
> + struct of_pci_range range;
> + LIST_HEAD(res);
> +
> + if (of_pci_range_parser_init(&parser, node)) {
> + dev_err(dev, "missing \"ranges\" property\n");
> + return -EINVAL;
> + }
> +
> + /*
> + * IO_SPACE_LIMIT for MIPS is 0xffff but this platform uses IO at
> + * upper address 0x001e160000. of_pci_range_to_resource does not work
> + * well for MIPS platforms that don't define PCI_IOBASE, so set the IO
> + * resource manually instead.
> + */
> + for_each_of_pci_range(&parser, &range) {
> + switch (range.flags & IORESOURCE_TYPE_BITS) {
> + case IORESOURCE_IO:
> + pcie->io_map_base =
> + (unsigned long)ioremap(range.cpu_addr,
> + range.size);
> + pcie->io.name = node->full_name;
> + pcie->io.flags = range.flags;
> + pcie->io.start = range.cpu_addr;
> + pcie->io.end = range.cpu_addr + range.size - 1;
> + pcie->io.parent = pcie->io.child = pcie->io.sibling = NULL;
> + set_io_port_base(pcie->io_map_base);
> + break;
> + }
> + }
> +
> + entry = resource_list_first_type(&host->windows, IORESOURCE_MEM);
> + if (!entry) {
> + dev_err(dev, "Cannot get memory resource");
> + return -EINVAL;
> + }
> +
> + pcie->mem = entry->res;
> + pci_add_resource(&res, &pcie->io);
> + pci_add_resource(&res, entry->res);
> + list_splice_init(&res, &host->windows);
> +
> + return 0;
> +}
> +
> +static int mt7621_pcie_parse_port(struct mt7621_pcie *pcie,
> + int slot)
> +{
> + struct mt7621_pcie_port *port;
> + struct device *dev = pcie->dev;
> + struct platform_device *pdev = to_platform_device(dev);
> + char name[10];
> +
> + port = devm_kzalloc(dev, sizeof(*port), GFP_KERNEL);
> + if (!port)
> + return -ENOMEM;
> +
> + port->base = devm_platform_ioremap_resource(pdev, slot + 1);
> + if (IS_ERR(port->base))
> + return PTR_ERR(port->base);
> +
> + snprintf(name, sizeof(name), "pcie%d", slot);
> + port->clk = devm_clk_get(dev, name);
> + if (IS_ERR(port->clk)) {
> + dev_err(dev, "failed to get pcie%d clock\n", slot);
> + return PTR_ERR(port->clk);
> + }
> +
> + snprintf(name, sizeof(name), "pcie%d", slot);
> + port->pcie_rst = devm_reset_control_get_exclusive(dev, name);
> + if (PTR_ERR(port->pcie_rst) == -EPROBE_DEFER) {
> + dev_err(dev, "failed to get pcie%d reset control\n", slot);
> + return PTR_ERR(port->pcie_rst);
> + }
> +
> + snprintf(name, sizeof(name), "pcie-phy%d", slot);
> + port->phy = devm_phy_get(dev, name);
> + if (IS_ERR(port->phy) && slot != 1)
> + return PTR_ERR(port->phy);
> +
> + port->gpio_rst = devm_gpiod_get_index_optional(dev, "reset", slot,
> + GPIOD_OUT_LOW);
> + if (IS_ERR(port->gpio_rst)) {
> + dev_err(dev, "Failed to get GPIO for PCIe%d\n", slot);
> + return PTR_ERR(port->gpio_rst);
> + }
> +
> + port->slot = slot;
> + port->pcie = pcie;
> +
> + INIT_LIST_HEAD(&port->list);
> + list_add_tail(&port->list, &pcie->ports);
> +
> + return 0;
> +}
> +
> +static int mt7621_pcie_parse_dt(struct mt7621_pcie *pcie)
> +{
> + struct device *dev = pcie->dev;
> + struct platform_device *pdev = to_platform_device(dev);
> + struct device_node *node = dev->of_node, *child;
> + int err;
> +
> + pcie->base = devm_platform_ioremap_resource(pdev, 0);
> + if (IS_ERR(pcie->base))
> + return PTR_ERR(pcie->base);
> +
> + for_each_available_child_of_node(node, child) {
> + int slot;
> +
> + err = of_pci_get_devfn(child);
> + if (err < 0) {
> + of_node_put(child);
> + dev_err(dev, "failed to parse devfn: %d\n", err);
> + return err;
> + }
> +
> + slot = PCI_SLOT(err);
> +
> + err = mt7621_pcie_parse_port(pcie, slot);
> + if (err) {
> + of_node_put(child);
> + return err;
> + }
> + }
> +
> + return 0;
> +}
> +
> +static int mt7621_pcie_init_port(struct mt7621_pcie_port *port)
> +{
> + struct mt7621_pcie *pcie = port->pcie;
> + struct device *dev = pcie->dev;
> + u32 slot = port->slot;
> + int err;
> +
> + err = phy_init(port->phy);
> + if (err) {
> + dev_err(dev, "failed to initialize port%d phy\n", slot);
> + return err;
> + }
> +
> + err = phy_power_on(port->phy);
> + if (err) {
> + dev_err(dev, "failed to power on port%d phy\n", slot);
> + phy_exit(port->phy);
> + return err;
> + }
> +
> + port->enabled = true;
> +
> + return 0;
> +}
> +
> +static void mt7621_pcie_reset_assert(struct mt7621_pcie *pcie)
> +{
> + struct mt7621_pcie_port *port;
> +
> + list_for_each_entry(port, &pcie->ports, list) {
> + /* PCIe RC reset assert */
> + mt7621_control_assert(port);
> +
> + /* PCIe EP reset assert */
> + mt7621_rst_gpio_pcie_assert(port);
> + }
> +
> + msleep(PERST_DELAY_MS);
> +}
> +
> +static void mt7621_pcie_reset_rc_deassert(struct mt7621_pcie *pcie)
> +{
> + struct mt7621_pcie_port *port;
> +
> + list_for_each_entry(port, &pcie->ports, list)
> + mt7621_control_deassert(port);
> +}
> +
> +static void mt7621_pcie_reset_ep_deassert(struct mt7621_pcie *pcie)
> +{
> + struct mt7621_pcie_port *port;
> +
> + list_for_each_entry(port, &pcie->ports, list)
> + mt7621_rst_gpio_pcie_deassert(port);
> +
> + msleep(PERST_DELAY_MS);
> +}
> +
> +static void mt7621_pcie_init_ports(struct mt7621_pcie *pcie)
> +{
> + struct device *dev = pcie->dev;
> + struct mt7621_pcie_port *port, *tmp;
> + int err;
> +
> + mt7621_pcie_reset_assert(pcie);
> + mt7621_pcie_reset_rc_deassert(pcie);
> +
> + list_for_each_entry_safe(port, tmp, &pcie->ports, list) {
> + u32 slot = port->slot;
> +
> + if (slot == 1) {
> + port->enabled = true;
> + continue;
> + }
> +
> + err = mt7621_pcie_init_port(port);
> + if (err) {
> + dev_err(dev, "Initiating port %d failed\n", slot);
> + list_del(&port->list);
> + }
> + }
> +
> + mt7621_pcie_reset_ep_deassert(pcie);
> +
> + tmp = NULL;
> + list_for_each_entry(port, &pcie->ports, list) {
> + u32 slot = port->slot;
> +
> + if (!mt7621_pcie_port_is_linkup(port)) {
> + dev_err(dev, "pcie%d no card, disable it (RST & CLK)\n",
> + slot);
> + mt7621_control_assert(port);
> + clk_disable_unprepare(port->clk);
> + port->enabled = false;
> +
> + if (slot == 0) {
> + tmp = port;
> + continue;
> + }
> +
> + if (slot == 1 && tmp && !tmp->enabled)
> + phy_power_off(tmp->phy);
> + }
> + }
> +}
> +
> +static void mt7621_pcie_enable_port(struct mt7621_pcie_port *port)
> +{
> + struct mt7621_pcie *pcie = port->pcie;
> + u32 slot = port->slot;
> + u32 offset = MT7621_PCIE_OFFSET + (slot * MT7621_NEXT_PORT);
> + u32 val;
> +
> + /* enable pcie interrupt */
> + val = pcie_read(pcie, RALINK_PCI_PCIMSK_ADDR);
> + val |= PCIE_PORT_INT_EN(slot);
> + pcie_write(pcie, val, RALINK_PCI_PCIMSK_ADDR);
> +
> + /* map 2G DDR region */
> + pcie_write(pcie, PCIE_BAR_MAP_MAX | PCIE_BAR_ENABLE,
> + offset + RALINK_PCI_BAR0SETUP_ADDR);
> +
> + /* configure class code and revision ID */
> + pcie_write(pcie, PCIE_CLASS_CODE | PCIE_REVISION_ID,
> + offset + RALINK_PCI_CLASS);
> +}
> +
> +static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> +{
> + struct device *dev = pcie->dev;
> + struct mt7621_pcie_port *port;
> + u8 num_slots_enabled = 0;
> + u32 slot;
> + u32 val;
> + int err;
> +
> + /* Setup MEMWIN and IOWIN */
> + pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> + pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
> +
> + list_for_each_entry(port, &pcie->ports, list) {
> + if (port->enabled) {
> + err = clk_prepare_enable(port->clk);
> + if (err) {
> + dev_err(dev, "enabling clk pcie%d\n", slot);
> + return err;
> + }
> +
> + mt7621_pcie_enable_port(port);
> + dev_info(dev, "PCIE%d enabled\n", port->slot);
> + num_slots_enabled++;
> + }
> + }
> +
> + for (slot = 0; slot < num_slots_enabled; slot++) {
> + val = read_config(pcie, slot, PCI_COMMAND);
> + val |= PCI_COMMAND_MASTER;
> + write_config(pcie, slot, PCI_COMMAND, val);
> + /* configure RC FTS number to 250 when it leaves L0s */
> + val = read_config(pcie, slot, PCIE_FTS_NUM);
> + val &= ~PCIE_FTS_NUM_MASK;
> + val |= PCIE_FTS_NUM_L0(0x50);
> + write_config(pcie, slot, PCIE_FTS_NUM, val);
> + }
> +
> + return 0;
> +}
> +
> +static int mt7621_pcie_register_host(struct pci_host_bridge *host)
> +{
> + struct mt7621_pcie *pcie = pci_host_bridge_priv(host);
> +
> + host->ops = &mt7621_pci_ops;
> + host->sysdata = pcie;
> + return pci_host_probe(host);
> +}
> +
> +static const struct soc_device_attribute mt7621_pci_quirks_match[] = {
> + { .soc_id = "mt7621", .revision = "E2" }
> +};
> +
> +static int mt7621_pci_probe(struct platform_device *pdev)
> +{
> + struct device *dev = &pdev->dev;
> + const struct soc_device_attribute *attr;
> + struct mt7621_pcie *pcie;
> + struct pci_host_bridge *bridge;
> + int err;
> +
> + if (!dev->of_node)
> + return -ENODEV;
> +
> + bridge = devm_pci_alloc_host_bridge(dev, sizeof(*pcie));
> + if (!bridge)
> + return -ENOMEM;
> +
> + pcie = pci_host_bridge_priv(bridge);
> + pcie->dev = dev;
> + platform_set_drvdata(pdev, pcie);
> + INIT_LIST_HEAD(&pcie->ports);
> +
> + attr = soc_device_match(mt7621_pci_quirks_match);
> + if (attr)
> + pcie->resets_inverted = true;
> +
> + err = mt7621_pcie_parse_dt(pcie);
> + if (err) {
> + dev_err(dev, "Parsing DT failed\n");
> + return err;
> + }
> +
> + err = mt7621_pci_parse_request_of_pci_ranges(bridge);
> + if (err) {
> + dev_err(dev, "Error requesting pci resources from ranges");
> + return err;
> + }
> +
> + /* set resources limits */
> + ioport_resource.start = pcie->io.start;
> + ioport_resource.end = pcie->io.end;
> +
> + mt7621_pcie_init_ports(pcie);
> +
> + err = mt7621_pcie_enable_ports(pcie);
> + if (err) {
> + dev_err(dev, "Error enabling pcie ports\n");
> + return err;
> + }
> +
> + setup_cm_memory_region(pcie);
> +
> + return mt7621_pcie_register_host(bridge);
> +}
> +
> +static const struct of_device_id mt7621_pci_ids[] = {
> + { .compatible = "mediatek,mt7621-pci" },
> + {},
> +};
> +MODULE_DEVICE_TABLE(of, mt7621_pci_ids);
> +
> +static struct platform_driver mt7621_pci_driver = {
> + .probe = mt7621_pci_probe,
> + .driver = {
> + .name = "mt7621-pci",
> + .of_match_table = of_match_ptr(mt7621_pci_ids),
> + },
> +};
> +builtin_platform_driver(mt7621_pci_driver);
> diff --git a/arch/mips/ralink/Kconfig b/arch/mips/ralink/Kconfig
> index ec4daa63c5e3..50e5a54f7d9e 100644
> --- a/arch/mips/ralink/Kconfig
> +++ b/arch/mips/ralink/Kconfig
> @@ -56,7 +56,7 @@ choice
> select MIPS_GIC
> select COMMON_CLK
> select CLKSRC_MIPS_GIC
> - select HAVE_PCI if PCI_MT7621
> + select HAVE_PCI
> select SOC_BUS
> endchoice
>
> @@ -101,4 +101,11 @@ choice
>
> endchoice
>
> +config PCI_MT7621
> + bool "MediaTek MT7621 PCI Controller"
> + depends on RALINK && SOC_MT7621
> + select PCI_DRIVERS_GENERIC
> + help
> + This selects a driver for the MediaTek MT7621 PCI Controller.
> +
> endif
> --
> 2.25.1
>

2021-06-04 21:22:11

by Sergio Paracuellos

[permalink] [raw]
Subject: Re: [PATCH 2/4] MIPS: pci: Add driver for MT7621 PCIe controller

Hi Bjorn,

On Fri, Jun 4, 2021 at 9:49 PM Bjorn Helgaas <[email protected]> wrote:
>
> On Sat, May 15, 2021 at 02:40:53PM +0200, Sergio Paracuellos wrote:
> > This patch adds a driver for the PCIe controller of MT7621 SoC.
>
> If you put this in drivers/pci/, update the subject/commit log like
> this:
>
> PCI: mt7621: Add MediaTek MT7621 PCIe host controller driver
>
> Add driver for the PCIe controller of the MT7621 SoC.

Will do, thanks.

>
> > Signed-off-by: Sergio Paracuellos <[email protected]>
> > ---
> > arch/mips/pci/Makefile | 1 +
> > arch/mips/pci/pci-mt7621.c | 624 +++++++++++++++++++++++++++++++++++++
> > arch/mips/ralink/Kconfig | 9 +-
> > 3 files changed, 633 insertions(+), 1 deletion(-)
> > create mode 100644 arch/mips/pci/pci-mt7621.c
>
> I'd suggest a single commit that basically does a "git mv" from
> drivers/staging/mt7621-pci to drivers/pci/controller/, with zero
> changes to the driver itself.

Ok, I will address all the suggested changes in staging and then move
the driver using 'git mv' instead of doing an add and a later remove.

Best regards,
Sergio Paracuellos

>
> > diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile
> > index f3eecc065e5c..178c550739c4 100644
> > --- a/arch/mips/pci/Makefile
> > +++ b/arch/mips/pci/Makefile
> > @@ -24,6 +24,7 @@ obj-$(CONFIG_PCI_AR2315) += pci-ar2315.o
> > obj-$(CONFIG_SOC_AR71XX) += pci-ar71xx.o
> > obj-$(CONFIG_PCI_AR724X) += pci-ar724x.o
> > obj-$(CONFIG_PCI_XTALK_BRIDGE) += pci-xtalk-bridge.o
> > +obj-$(CONFIG_PCI_MT7621) += pci-mt7621.o
> > #
> > # These are still pretty much in the old state, watch, go blind.
> > #
> > diff --git a/arch/mips/pci/pci-mt7621.c b/arch/mips/pci/pci-mt7621.c
> > new file mode 100644
> > index 000000000000..fe1945819d25
> > --- /dev/null
> > +++ b/arch/mips/pci/pci-mt7621.c
> > @@ -0,0 +1,624 @@
> > +// SPDX-License-Identifier: GPL-2.0+
> > +/*
> > + * BRIEF MODULE DESCRIPTION
> > + * PCI init for Ralink RT2880 solution
> > + *
> > + * Copyright 2007 Ralink Inc. ([email protected])
> > + *
> > + * May 2007 Bruce Chang
> > + * Initial Release
> > + *
> > + * May 2009 Bruce Chang
> > + * support RT2880/RT3883 PCIe
> > + *
> > + * May 2011 Bruce Chang
> > + * support RT6855/MT7620 PCIe
> > + */
> > +
> > +#include <linux/bitops.h>
> > +#include <linux/clk.h>
> > +#include <linux/delay.h>
> > +#include <linux/gpio/consumer.h>
> > +#include <linux/module.h>
> > +#include <linux/of.h>
> > +#include <linux/of_address.h>
> > +#include <linux/of_pci.h>
> > +#include <linux/of_platform.h>
> > +#include <linux/pci.h>
> > +#include <linux/phy/phy.h>
> > +#include <linux/platform_device.h>
> > +#include <linux/reset.h>
> > +#include <linux/sys_soc.h>
> > +
> > +/* MediaTek specific configuration registers */
> > +#define PCIE_FTS_NUM 0x70c
> > +#define PCIE_FTS_NUM_MASK GENMASK(15, 8)
> > +#define PCIE_FTS_NUM_L0(x) (((x) & 0xff) << 8)
> > +
> > +/* Host-PCI bridge registers */
> > +#define RALINK_PCI_PCICFG_ADDR 0x0000
> > +#define RALINK_PCI_PCIMSK_ADDR 0x000C
> > +#define RALINK_PCI_CONFIG_ADDR 0x0020
> > +#define RALINK_PCI_CONFIG_DATA 0x0024
> > +#define RALINK_PCI_MEMBASE 0x0028
> > +#define RALINK_PCI_IOBASE 0x002C
> > +
> > +/* PCIe RC control registers */
> > +#define MT7621_PCIE_OFFSET 0x2000
> > +#define MT7621_NEXT_PORT 0x1000
> > +
> > +#define RALINK_PCI_BAR0SETUP_ADDR 0x0010
> > +#define RALINK_PCI_ID 0x0030
> > +#define RALINK_PCI_CLASS 0x0034
> > +#define RALINK_PCI_SUBID 0x0038
> > +#define RALINK_PCI_STATUS 0x0050
> > +
> > +/* Some definition values */
> > +#define PCIE_REVISION_ID BIT(0)
> > +#define PCIE_CLASS_CODE (0x60400 << 8)
> > +#define PCIE_BAR_MAP_MAX GENMASK(30, 16)
> > +#define PCIE_BAR_ENABLE BIT(0)
> > +#define PCIE_PORT_INT_EN(x) BIT(20 + (x))
> > +#define PCIE_PORT_LINKUP BIT(0)
> > +
> > +#define PERST_DELAY_MS 100
> > +
> > +/**
> > + * struct mt7621_pcie_port - PCIe port information
> > + * @base: I/O mapped register base
> > + * @list: port list
> > + * @pcie: pointer to PCIe host info
> > + * @clk: pointer to the port clock gate
> > + * @phy: pointer to PHY control block
> > + * @pcie_rst: pointer to port reset control
> > + * @gpio_rst: gpio reset
> > + * @slot: port slot
> > + * @enabled: indicates if port is enabled
> > + */
> > +struct mt7621_pcie_port {
> > + void __iomem *base;
> > + struct list_head list;
> > + struct mt7621_pcie *pcie;
> > + struct clk *clk;
> > + struct phy *phy;
> > + struct reset_control *pcie_rst;
> > + struct gpio_desc *gpio_rst;
> > + u32 slot;
> > + bool enabled;
> > +};
> > +
> > +/**
> > + * struct mt7621_pcie - PCIe host information
> > + * @base: IO Mapped Register Base
> > + * @io: IO resource
> > + * @mem: pointer to non-prefetchable memory resource
> > + * @dev: Pointer to PCIe device
> > + * @io_map_base: virtual memory base address for io
> > + * @ports: pointer to PCIe port information
> > + * @resets_inverted: depends on chip revision
> > + * reset lines are inverted.
> > + */
> > +struct mt7621_pcie {
> > + void __iomem *base;
> > + struct device *dev;
> > + struct resource io;
> > + struct resource *mem;
> > + unsigned long io_map_base;
> > + struct list_head ports;
> > + bool resets_inverted;
> > +};
> > +
> > +static inline u32 pcie_read(struct mt7621_pcie *pcie, u32 reg)
> > +{
> > + return readl(pcie->base + reg);
> > +}
> > +
> > +static inline void pcie_write(struct mt7621_pcie *pcie, u32 val, u32 reg)
> > +{
> > + writel(val, pcie->base + reg);
> > +}
> > +
> > +static inline void pcie_rmw(struct mt7621_pcie *pcie, u32 reg, u32 clr, u32 set)
> > +{
> > + u32 val = readl(pcie->base + reg);
> > +
> > + val &= ~clr;
> > + val |= set;
> > + writel(val, pcie->base + reg);
> > +}
> > +
> > +static inline u32 pcie_port_read(struct mt7621_pcie_port *port, u32 reg)
> > +{
> > + return readl(port->base + reg);
> > +}
> > +
> > +static inline void pcie_port_write(struct mt7621_pcie_port *port,
> > + u32 val, u32 reg)
> > +{
> > + writel(val, port->base + reg);
> > +}
> > +
> > +static inline u32 mt7621_pci_get_cfgaddr(unsigned int bus, unsigned int slot,
> > + unsigned int func, unsigned int where)
> > +{
> > + return (((where & 0xF00) >> 8) << 24) | (bus << 16) | (slot << 11) |
> > + (func << 8) | (where & 0xfc) | 0x80000000;
> > +}
> > +
> > +static void __iomem *mt7621_pcie_map_bus(struct pci_bus *bus,
> > + unsigned int devfn, int where)
> > +{
> > + struct mt7621_pcie *pcie = bus->sysdata;
> > + u32 address = mt7621_pci_get_cfgaddr(bus->number, PCI_SLOT(devfn),
> > + PCI_FUNC(devfn), where);
> > +
> > + writel(address, pcie->base + RALINK_PCI_CONFIG_ADDR);
> > +
> > + return pcie->base + RALINK_PCI_CONFIG_DATA + (where & 3);
> > +}
> > +
> > +struct pci_ops mt7621_pci_ops = {
> > + .map_bus = mt7621_pcie_map_bus,
> > + .read = pci_generic_config_read,
> > + .write = pci_generic_config_write,
> > +};
> > +
> > +static u32 read_config(struct mt7621_pcie *pcie, unsigned int dev, u32 reg)
> > +{
> > + u32 address = mt7621_pci_get_cfgaddr(0, dev, 0, reg);
> > +
> > + pcie_write(pcie, address, RALINK_PCI_CONFIG_ADDR);
> > + return pcie_read(pcie, RALINK_PCI_CONFIG_DATA);
> > +}
> > +
> > +static void write_config(struct mt7621_pcie *pcie, unsigned int dev,
> > + u32 reg, u32 val)
> > +{
> > + u32 address = mt7621_pci_get_cfgaddr(0, dev, 0, reg);
> > +
> > + pcie_write(pcie, address, RALINK_PCI_CONFIG_ADDR);
> > + pcie_write(pcie, val, RALINK_PCI_CONFIG_DATA);
> > +}
> > +
> > +static inline void mt7621_rst_gpio_pcie_assert(struct mt7621_pcie_port *port)
> > +{
> > + if (port->gpio_rst)
> > + gpiod_set_value(port->gpio_rst, 1);
> > +}
> > +
> > +static inline void mt7621_rst_gpio_pcie_deassert(struct mt7621_pcie_port *port)
> > +{
> > + if (port->gpio_rst)
> > + gpiod_set_value(port->gpio_rst, 0);
> > +}
> > +
> > +static inline bool mt7621_pcie_port_is_linkup(struct mt7621_pcie_port *port)
> > +{
> > + return (pcie_port_read(port, RALINK_PCI_STATUS) & PCIE_PORT_LINKUP) != 0;
> > +}
> > +
> > +static inline void mt7621_control_assert(struct mt7621_pcie_port *port)
> > +{
> > + struct mt7621_pcie *pcie = port->pcie;
> > +
> > + if (pcie->resets_inverted)
> > + reset_control_assert(port->pcie_rst);
> > + else
> > + reset_control_deassert(port->pcie_rst);
> > +}
> > +
> > +static inline void mt7621_control_deassert(struct mt7621_pcie_port *port)
> > +{
> > + struct mt7621_pcie *pcie = port->pcie;
> > +
> > + if (pcie->resets_inverted)
> > + reset_control_deassert(port->pcie_rst);
> > + else
> > + reset_control_assert(port->pcie_rst);
> > +}
> > +
> > +static void setup_cm_memory_region(struct mt7621_pcie *pcie)
> > +{
> > + struct resource *mem_resource = pcie->mem;
> > + struct device *dev = pcie->dev;
> > + resource_size_t mask;
> > +
> > + if (mips_cps_numiocu(0)) {
> > + /*
> > + * FIXME: hardware doesn't accept mask values with 1s after
> > + * 0s (e.g. 0xffef), so it would be great to warn if that's
> > + * about to happen
> > + */
> > + mask = ~(mem_resource->end - mem_resource->start);
> > +
> > + write_gcr_reg1_base(mem_resource->start);
> > + write_gcr_reg1_mask(mask | CM_GCR_REGn_MASK_CMTGT_IOCU0);
> > + dev_info(dev, "PCI coherence region base: 0x%08llx, mask/settings: 0x%08llx\n",
> > + (unsigned long long)read_gcr_reg1_base(),
> > + (unsigned long long)read_gcr_reg1_mask());
> > + }
> > +}
> > +
> > +static int mt7621_pci_parse_request_of_pci_ranges(struct pci_host_bridge *host)
> > +{
> > + struct mt7621_pcie *pcie = pci_host_bridge_priv(host);
> > + struct device *dev = pcie->dev;
> > + struct device_node *node = dev->of_node;
> > + struct of_pci_range_parser parser;
> > + struct resource_entry *entry;
> > + struct of_pci_range range;
> > + LIST_HEAD(res);
> > +
> > + if (of_pci_range_parser_init(&parser, node)) {
> > + dev_err(dev, "missing \"ranges\" property\n");
> > + return -EINVAL;
> > + }
> > +
> > + /*
> > + * IO_SPACE_LIMIT for MIPS is 0xffff but this platform uses IO at
> > + * upper address 0x001e160000. of_pci_range_to_resource does not work
> > + * well for MIPS platforms that don't define PCI_IOBASE, so set the IO
> > + * resource manually instead.
> > + */
> > + for_each_of_pci_range(&parser, &range) {
> > + switch (range.flags & IORESOURCE_TYPE_BITS) {
> > + case IORESOURCE_IO:
> > + pcie->io_map_base =
> > + (unsigned long)ioremap(range.cpu_addr,
> > + range.size);
> > + pcie->io.name = node->full_name;
> > + pcie->io.flags = range.flags;
> > + pcie->io.start = range.cpu_addr;
> > + pcie->io.end = range.cpu_addr + range.size - 1;
> > + pcie->io.parent = pcie->io.child = pcie->io.sibling = NULL;
> > + set_io_port_base(pcie->io_map_base);
> > + break;
> > + }
> > + }
> > +
> > + entry = resource_list_first_type(&host->windows, IORESOURCE_MEM);
> > + if (!entry) {
> > + dev_err(dev, "Cannot get memory resource");
> > + return -EINVAL;
> > + }
> > +
> > + pcie->mem = entry->res;
> > + pci_add_resource(&res, &pcie->io);
> > + pci_add_resource(&res, entry->res);
> > + list_splice_init(&res, &host->windows);
> > +
> > + return 0;
> > +}
> > +
> > +static int mt7621_pcie_parse_port(struct mt7621_pcie *pcie,
> > + int slot)
> > +{
> > + struct mt7621_pcie_port *port;
> > + struct device *dev = pcie->dev;
> > + struct platform_device *pdev = to_platform_device(dev);
> > + char name[10];
> > +
> > + port = devm_kzalloc(dev, sizeof(*port), GFP_KERNEL);
> > + if (!port)
> > + return -ENOMEM;
> > +
> > + port->base = devm_platform_ioremap_resource(pdev, slot + 1);
> > + if (IS_ERR(port->base))
> > + return PTR_ERR(port->base);
> > +
> > + snprintf(name, sizeof(name), "pcie%d", slot);
> > + port->clk = devm_clk_get(dev, name);
> > + if (IS_ERR(port->clk)) {
> > + dev_err(dev, "failed to get pcie%d clock\n", slot);
> > + return PTR_ERR(port->clk);
> > + }
> > +
> > + snprintf(name, sizeof(name), "pcie%d", slot);
> > + port->pcie_rst = devm_reset_control_get_exclusive(dev, name);
> > + if (PTR_ERR(port->pcie_rst) == -EPROBE_DEFER) {
> > + dev_err(dev, "failed to get pcie%d reset control\n", slot);
> > + return PTR_ERR(port->pcie_rst);
> > + }
> > +
> > + snprintf(name, sizeof(name), "pcie-phy%d", slot);
> > + port->phy = devm_phy_get(dev, name);
> > + if (IS_ERR(port->phy) && slot != 1)
> > + return PTR_ERR(port->phy);
> > +
> > + port->gpio_rst = devm_gpiod_get_index_optional(dev, "reset", slot,
> > + GPIOD_OUT_LOW);
> > + if (IS_ERR(port->gpio_rst)) {
> > + dev_err(dev, "Failed to get GPIO for PCIe%d\n", slot);
> > + return PTR_ERR(port->gpio_rst);
> > + }
> > +
> > + port->slot = slot;
> > + port->pcie = pcie;
> > +
> > + INIT_LIST_HEAD(&port->list);
> > + list_add_tail(&port->list, &pcie->ports);
> > +
> > + return 0;
> > +}
> > +
> > +static int mt7621_pcie_parse_dt(struct mt7621_pcie *pcie)
> > +{
> > + struct device *dev = pcie->dev;
> > + struct platform_device *pdev = to_platform_device(dev);
> > + struct device_node *node = dev->of_node, *child;
> > + int err;
> > +
> > + pcie->base = devm_platform_ioremap_resource(pdev, 0);
> > + if (IS_ERR(pcie->base))
> > + return PTR_ERR(pcie->base);
> > +
> > + for_each_available_child_of_node(node, child) {
> > + int slot;
> > +
> > + err = of_pci_get_devfn(child);
> > + if (err < 0) {
> > + of_node_put(child);
> > + dev_err(dev, "failed to parse devfn: %d\n", err);
> > + return err;
> > + }
> > +
> > + slot = PCI_SLOT(err);
> > +
> > + err = mt7621_pcie_parse_port(pcie, slot);
> > + if (err) {
> > + of_node_put(child);
> > + return err;
> > + }
> > + }
> > +
> > + return 0;
> > +}
> > +
> > +static int mt7621_pcie_init_port(struct mt7621_pcie_port *port)
> > +{
> > + struct mt7621_pcie *pcie = port->pcie;
> > + struct device *dev = pcie->dev;
> > + u32 slot = port->slot;
> > + int err;
> > +
> > + err = phy_init(port->phy);
> > + if (err) {
> > + dev_err(dev, "failed to initialize port%d phy\n", slot);
> > + return err;
> > + }
> > +
> > + err = phy_power_on(port->phy);
> > + if (err) {
> > + dev_err(dev, "failed to power on port%d phy\n", slot);
> > + phy_exit(port->phy);
> > + return err;
> > + }
> > +
> > + port->enabled = true;
> > +
> > + return 0;
> > +}
> > +
> > +static void mt7621_pcie_reset_assert(struct mt7621_pcie *pcie)
> > +{
> > + struct mt7621_pcie_port *port;
> > +
> > + list_for_each_entry(port, &pcie->ports, list) {
> > + /* PCIe RC reset assert */
> > + mt7621_control_assert(port);
> > +
> > + /* PCIe EP reset assert */
> > + mt7621_rst_gpio_pcie_assert(port);
> > + }
> > +
> > + msleep(PERST_DELAY_MS);
> > +}
> > +
> > +static void mt7621_pcie_reset_rc_deassert(struct mt7621_pcie *pcie)
> > +{
> > + struct mt7621_pcie_port *port;
> > +
> > + list_for_each_entry(port, &pcie->ports, list)
> > + mt7621_control_deassert(port);
> > +}
> > +
> > +static void mt7621_pcie_reset_ep_deassert(struct mt7621_pcie *pcie)
> > +{
> > + struct mt7621_pcie_port *port;
> > +
> > + list_for_each_entry(port, &pcie->ports, list)
> > + mt7621_rst_gpio_pcie_deassert(port);
> > +
> > + msleep(PERST_DELAY_MS);
> > +}
> > +
> > +static void mt7621_pcie_init_ports(struct mt7621_pcie *pcie)
> > +{
> > + struct device *dev = pcie->dev;
> > + struct mt7621_pcie_port *port, *tmp;
> > + int err;
> > +
> > + mt7621_pcie_reset_assert(pcie);
> > + mt7621_pcie_reset_rc_deassert(pcie);
> > +
> > + list_for_each_entry_safe(port, tmp, &pcie->ports, list) {
> > + u32 slot = port->slot;
> > +
> > + if (slot == 1) {
> > + port->enabled = true;
> > + continue;
> > + }
> > +
> > + err = mt7621_pcie_init_port(port);
> > + if (err) {
> > + dev_err(dev, "Initiating port %d failed\n", slot);
> > + list_del(&port->list);
> > + }
> > + }
> > +
> > + mt7621_pcie_reset_ep_deassert(pcie);
> > +
> > + tmp = NULL;
> > + list_for_each_entry(port, &pcie->ports, list) {
> > + u32 slot = port->slot;
> > +
> > + if (!mt7621_pcie_port_is_linkup(port)) {
> > + dev_err(dev, "pcie%d no card, disable it (RST & CLK)\n",
> > + slot);
> > + mt7621_control_assert(port);
> > + clk_disable_unprepare(port->clk);
> > + port->enabled = false;
> > +
> > + if (slot == 0) {
> > + tmp = port;
> > + continue;
> > + }
> > +
> > + if (slot == 1 && tmp && !tmp->enabled)
> > + phy_power_off(tmp->phy);
> > + }
> > + }
> > +}
> > +
> > +static void mt7621_pcie_enable_port(struct mt7621_pcie_port *port)
> > +{
> > + struct mt7621_pcie *pcie = port->pcie;
> > + u32 slot = port->slot;
> > + u32 offset = MT7621_PCIE_OFFSET + (slot * MT7621_NEXT_PORT);
> > + u32 val;
> > +
> > + /* enable pcie interrupt */
> > + val = pcie_read(pcie, RALINK_PCI_PCIMSK_ADDR);
> > + val |= PCIE_PORT_INT_EN(slot);
> > + pcie_write(pcie, val, RALINK_PCI_PCIMSK_ADDR);
> > +
> > + /* map 2G DDR region */
> > + pcie_write(pcie, PCIE_BAR_MAP_MAX | PCIE_BAR_ENABLE,
> > + offset + RALINK_PCI_BAR0SETUP_ADDR);
> > +
> > + /* configure class code and revision ID */
> > + pcie_write(pcie, PCIE_CLASS_CODE | PCIE_REVISION_ID,
> > + offset + RALINK_PCI_CLASS);
> > +}
> > +
> > +static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> > +{
> > + struct device *dev = pcie->dev;
> > + struct mt7621_pcie_port *port;
> > + u8 num_slots_enabled = 0;
> > + u32 slot;
> > + u32 val;
> > + int err;
> > +
> > + /* Setup MEMWIN and IOWIN */
> > + pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> > + pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
> > +
> > + list_for_each_entry(port, &pcie->ports, list) {
> > + if (port->enabled) {
> > + err = clk_prepare_enable(port->clk);
> > + if (err) {
> > + dev_err(dev, "enabling clk pcie%d\n", slot);
> > + return err;
> > + }
> > +
> > + mt7621_pcie_enable_port(port);
> > + dev_info(dev, "PCIE%d enabled\n", port->slot);
> > + num_slots_enabled++;
> > + }
> > + }
> > +
> > + for (slot = 0; slot < num_slots_enabled; slot++) {
> > + val = read_config(pcie, slot, PCI_COMMAND);
> > + val |= PCI_COMMAND_MASTER;
> > + write_config(pcie, slot, PCI_COMMAND, val);
> > + /* configure RC FTS number to 250 when it leaves L0s */
> > + val = read_config(pcie, slot, PCIE_FTS_NUM);
> > + val &= ~PCIE_FTS_NUM_MASK;
> > + val |= PCIE_FTS_NUM_L0(0x50);
> > + write_config(pcie, slot, PCIE_FTS_NUM, val);
> > + }
> > +
> > + return 0;
> > +}
> > +
> > +static int mt7621_pcie_register_host(struct pci_host_bridge *host)
> > +{
> > + struct mt7621_pcie *pcie = pci_host_bridge_priv(host);
> > +
> > + host->ops = &mt7621_pci_ops;
> > + host->sysdata = pcie;
> > + return pci_host_probe(host);
> > +}
> > +
> > +static const struct soc_device_attribute mt7621_pci_quirks_match[] = {
> > + { .soc_id = "mt7621", .revision = "E2" }
> > +};
> > +
> > +static int mt7621_pci_probe(struct platform_device *pdev)
> > +{
> > + struct device *dev = &pdev->dev;
> > + const struct soc_device_attribute *attr;
> > + struct mt7621_pcie *pcie;
> > + struct pci_host_bridge *bridge;
> > + int err;
> > +
> > + if (!dev->of_node)
> > + return -ENODEV;
> > +
> > + bridge = devm_pci_alloc_host_bridge(dev, sizeof(*pcie));
> > + if (!bridge)
> > + return -ENOMEM;
> > +
> > + pcie = pci_host_bridge_priv(bridge);
> > + pcie->dev = dev;
> > + platform_set_drvdata(pdev, pcie);
> > + INIT_LIST_HEAD(&pcie->ports);
> > +
> > + attr = soc_device_match(mt7621_pci_quirks_match);
> > + if (attr)
> > + pcie->resets_inverted = true;
> > +
> > + err = mt7621_pcie_parse_dt(pcie);
> > + if (err) {
> > + dev_err(dev, "Parsing DT failed\n");
> > + return err;
> > + }
> > +
> > + err = mt7621_pci_parse_request_of_pci_ranges(bridge);
> > + if (err) {
> > + dev_err(dev, "Error requesting pci resources from ranges");
> > + return err;
> > + }
> > +
> > + /* set resources limits */
> > + ioport_resource.start = pcie->io.start;
> > + ioport_resource.end = pcie->io.end;
> > +
> > + mt7621_pcie_init_ports(pcie);
> > +
> > + err = mt7621_pcie_enable_ports(pcie);
> > + if (err) {
> > + dev_err(dev, "Error enabling pcie ports\n");
> > + return err;
> > + }
> > +
> > + setup_cm_memory_region(pcie);
> > +
> > + return mt7621_pcie_register_host(bridge);
> > +}
> > +
> > +static const struct of_device_id mt7621_pci_ids[] = {
> > + { .compatible = "mediatek,mt7621-pci" },
> > + {},
> > +};
> > +MODULE_DEVICE_TABLE(of, mt7621_pci_ids);
> > +
> > +static struct platform_driver mt7621_pci_driver = {
> > + .probe = mt7621_pci_probe,
> > + .driver = {
> > + .name = "mt7621-pci",
> > + .of_match_table = of_match_ptr(mt7621_pci_ids),
> > + },
> > +};
> > +builtin_platform_driver(mt7621_pci_driver);
> > diff --git a/arch/mips/ralink/Kconfig b/arch/mips/ralink/Kconfig
> > index ec4daa63c5e3..50e5a54f7d9e 100644
> > --- a/arch/mips/ralink/Kconfig
> > +++ b/arch/mips/ralink/Kconfig
> > @@ -56,7 +56,7 @@ choice
> > select MIPS_GIC
> > select COMMON_CLK
> > select CLKSRC_MIPS_GIC
> > - select HAVE_PCI if PCI_MT7621
> > + select HAVE_PCI
> > select SOC_BUS
> > endchoice
> >
> > @@ -101,4 +101,11 @@ choice
> >
> > endchoice
> >
> > +config PCI_MT7621
> > + bool "MediaTek MT7621 PCI Controller"
> > + depends on RALINK && SOC_MT7621
> > + select PCI_DRIVERS_GENERIC
> > + help
> > + This selects a driver for the MediaTek MT7621 PCI Controller.
> > +
> > endif
> > --
> > 2.25.1
> >

2021-06-04 22:27:59

by Sergio Paracuellos

[permalink] [raw]
Subject: Re: [PATCH 2/4] MIPS: pci: Add driver for MT7621 PCIe controller

Hi Rob,

Thanks for the review.

On Fri, Jun 4, 2021 at 9:30 PM Rob Herring <[email protected]> wrote:
>
> On Sat, May 15, 2021 at 02:40:53PM +0200, Sergio Paracuellos wrote:
> > This patch adds a driver for the PCIe controller of MT7621 SoC.
> >
> > Signed-off-by: Sergio Paracuellos <[email protected]>
> > ---
> > arch/mips/pci/Makefile | 1 +
> > arch/mips/pci/pci-mt7621.c | 624 +++++++++++++++++++++++++++++++++++++
> > arch/mips/ralink/Kconfig | 9 +-
> > 3 files changed, 633 insertions(+), 1 deletion(-)
> > create mode 100644 arch/mips/pci/pci-mt7621.c
> >
> > diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile
> > index f3eecc065e5c..178c550739c4 100644
> > --- a/arch/mips/pci/Makefile
> > +++ b/arch/mips/pci/Makefile
> > @@ -24,6 +24,7 @@ obj-$(CONFIG_PCI_AR2315) += pci-ar2315.o
> > obj-$(CONFIG_SOC_AR71XX) += pci-ar71xx.o
> > obj-$(CONFIG_PCI_AR724X) += pci-ar724x.o
> > obj-$(CONFIG_PCI_XTALK_BRIDGE) += pci-xtalk-bridge.o
> > +obj-$(CONFIG_PCI_MT7621) += pci-mt7621.o
> > #
> > # These are still pretty much in the old state, watch, go blind.
> > #
> > diff --git a/arch/mips/pci/pci-mt7621.c b/arch/mips/pci/pci-mt7621.c
> > new file mode 100644
> > index 000000000000..fe1945819d25
> > --- /dev/null
> > +++ b/arch/mips/pci/pci-mt7621.c
> > @@ -0,0 +1,624 @@
> > +// SPDX-License-Identifier: GPL-2.0+
> > +/*
> > + * BRIEF MODULE DESCRIPTION
> > + * PCI init for Ralink RT2880 solution
> > + *
> > + * Copyright 2007 Ralink Inc. ([email protected])
> > + *
> > + * May 2007 Bruce Chang
> > + * Initial Release
> > + *
> > + * May 2009 Bruce Chang
> > + * support RT2880/RT3883 PCIe
> > + *
> > + * May 2011 Bruce Chang
> > + * support RT6855/MT7620 PCIe
> > + */
> > +
> > +#include <linux/bitops.h>
> > +#include <linux/clk.h>
> > +#include <linux/delay.h>
> > +#include <linux/gpio/consumer.h>
> > +#include <linux/module.h>
> > +#include <linux/of.h>
> > +#include <linux/of_address.h>
> > +#include <linux/of_pci.h>
> > +#include <linux/of_platform.h>
> > +#include <linux/pci.h>
> > +#include <linux/phy/phy.h>
> > +#include <linux/platform_device.h>
> > +#include <linux/reset.h>
> > +#include <linux/sys_soc.h>
> > +
> > +/* MediaTek specific configuration registers */
> > +#define PCIE_FTS_NUM 0x70c
> > +#define PCIE_FTS_NUM_MASK GENMASK(15, 8)
> > +#define PCIE_FTS_NUM_L0(x) (((x) & 0xff) << 8)
> > +
> > +/* Host-PCI bridge registers */
> > +#define RALINK_PCI_PCICFG_ADDR 0x0000
> > +#define RALINK_PCI_PCIMSK_ADDR 0x000C
> > +#define RALINK_PCI_CONFIG_ADDR 0x0020
> > +#define RALINK_PCI_CONFIG_DATA 0x0024
> > +#define RALINK_PCI_MEMBASE 0x0028
> > +#define RALINK_PCI_IOBASE 0x002C
> > +
> > +/* PCIe RC control registers */
> > +#define MT7621_PCIE_OFFSET 0x2000
> > +#define MT7621_NEXT_PORT 0x1000
> > +
> > +#define RALINK_PCI_BAR0SETUP_ADDR 0x0010
>
> Standard BAR0 register?

Ok, I will remove this and use 'PCI_BASE_ADDRESS_0' instead.

>
> > +#define RALINK_PCI_ID 0x0030
> > +#define RALINK_PCI_CLASS 0x0034
> > +#define RALINK_PCI_SUBID 0x0038
> > +#define RALINK_PCI_STATUS 0x0050
> > +
> > +/* Some definition values */
> > +#define PCIE_REVISION_ID BIT(0)
> > +#define PCIE_CLASS_CODE (0x60400 << 8)
> > +#define PCIE_BAR_MAP_MAX GENMASK(30, 16)
> > +#define PCIE_BAR_ENABLE BIT(0)
> > +#define PCIE_PORT_INT_EN(x) BIT(20 + (x))
> > +#define PCIE_PORT_LINKUP BIT(0)
> > +
> > +#define PERST_DELAY_MS 100
> > +
> > +/**
> > + * struct mt7621_pcie_port - PCIe port information
> > + * @base: I/O mapped register base
> > + * @list: port list
> > + * @pcie: pointer to PCIe host info
> > + * @clk: pointer to the port clock gate
> > + * @phy: pointer to PHY control block
> > + * @pcie_rst: pointer to port reset control
> > + * @gpio_rst: gpio reset
> > + * @slot: port slot
> > + * @enabled: indicates if port is enabled
> > + */
> > +struct mt7621_pcie_port {
> > + void __iomem *base;
> > + struct list_head list;
> > + struct mt7621_pcie *pcie;
> > + struct clk *clk;
> > + struct phy *phy;
> > + struct reset_control *pcie_rst;
> > + struct gpio_desc *gpio_rst;
> > + u32 slot;
> > + bool enabled;
> > +};
> > +
> > +/**
> > + * struct mt7621_pcie - PCIe host information
> > + * @base: IO Mapped Register Base
> > + * @io: IO resource
> > + * @mem: pointer to non-prefetchable memory resource
> > + * @dev: Pointer to PCIe device
> > + * @io_map_base: virtual memory base address for io
> > + * @ports: pointer to PCIe port information
> > + * @resets_inverted: depends on chip revision
> > + * reset lines are inverted.
> > + */
> > +struct mt7621_pcie {
> > + void __iomem *base;
> > + struct device *dev;
>
> > + struct resource io;
> > + struct resource *mem;
> > + unsigned long io_map_base;
>
> These are all stored in the host bridge struct, no need for you to store
> them.

IO resources must be requested and mapped manually (see my explanation
below) and I use mem resource to also setup mips iocu regions, that is
why I am storing it also here.

>
> > + struct list_head ports;
>
> A list is kind of an overkill for 3 entries and you know how many ports.
> Just embed an array of struct mt7621_pcie_port. Then you only need 1
> alloc.

Since ports are at most three but can be one or two also depending on
the board I ended up using a list instead of a fixed array of three
ports. This list is dynamically updated depending on link status. If
some of the ports are not present in the board nodes initially stored
after device tree parsing are deleted for the list. If it is not a big
problem I prefer to maintain this list as it is.

>
> > + bool resets_inverted;
> > +};
> > +
> > +static inline u32 pcie_read(struct mt7621_pcie *pcie, u32 reg)
> > +{
> > + return readl(pcie->base + reg);
>
> Can use _relaxed variants here and through out.

Ok will change into _relaxed variants if is preferred.

>
> > +}
> > +
> > +static inline void pcie_write(struct mt7621_pcie *pcie, u32 val, u32 reg)
> > +{
> > + writel(val, pcie->base + reg);
> > +}
> > +
> > +static inline void pcie_rmw(struct mt7621_pcie *pcie, u32 reg, u32 clr, u32 set)
> > +{
> > + u32 val = readl(pcie->base + reg);
> > +
> > + val &= ~clr;
> > + val |= set;
> > + writel(val, pcie->base + reg);
> > +}
> > +
> > +static inline u32 pcie_port_read(struct mt7621_pcie_port *port, u32 reg)
> > +{
> > + return readl(port->base + reg);
> > +}
> > +
> > +static inline void pcie_port_write(struct mt7621_pcie_port *port,
> > + u32 val, u32 reg)
> > +{
> > + writel(val, port->base + reg);
> > +}
> > +
> > +static inline u32 mt7621_pci_get_cfgaddr(unsigned int bus, unsigned int slot,
> > + unsigned int func, unsigned int where)
> > +{
> > + return (((where & 0xF00) >> 8) << 24) | (bus << 16) | (slot << 11) |
> > + (func << 8) | (where & 0xfc) | 0x80000000;
> > +}
> > +
> > +static void __iomem *mt7621_pcie_map_bus(struct pci_bus *bus,
> > + unsigned int devfn, int where)
> > +{
> > + struct mt7621_pcie *pcie = bus->sysdata;
> > + u32 address = mt7621_pci_get_cfgaddr(bus->number, PCI_SLOT(devfn),
> > + PCI_FUNC(devfn), where);
> > +
> > + writel(address, pcie->base + RALINK_PCI_CONFIG_ADDR);
> > +
> > + return pcie->base + RALINK_PCI_CONFIG_DATA + (where & 3);
> > +}
> > +
> > +struct pci_ops mt7621_pci_ops = {
> > + .map_bus = mt7621_pcie_map_bus,
> > + .read = pci_generic_config_read,
> > + .write = pci_generic_config_write,
> > +};
> > +
> > +static u32 read_config(struct mt7621_pcie *pcie, unsigned int dev, u32 reg)
> > +{
> > + u32 address = mt7621_pci_get_cfgaddr(0, dev, 0, reg);
> > +
> > + pcie_write(pcie, address, RALINK_PCI_CONFIG_ADDR);
> > + return pcie_read(pcie, RALINK_PCI_CONFIG_DATA);
> > +}
> > +
> > +static void write_config(struct mt7621_pcie *pcie, unsigned int dev,
> > + u32 reg, u32 val)
> > +{
> > + u32 address = mt7621_pci_get_cfgaddr(0, dev, 0, reg);
> > +
> > + pcie_write(pcie, address, RALINK_PCI_CONFIG_ADDR);
> > + pcie_write(pcie, val, RALINK_PCI_CONFIG_DATA);
> > +}
> > +
> > +static inline void mt7621_rst_gpio_pcie_assert(struct mt7621_pcie_port *port)
> > +{
> > + if (port->gpio_rst)
>
> Don't need the if. gpiod_set_value should work with NULL.

Gpio resets can be optional. Some boards use one gpio reset pin for
each port but others only one for all of them. So if no reset is not
requested for a port I don't want to do anything. Hence, the check.

>
> > + gpiod_set_value(port->gpio_rst, 1);
> > +}
> > +
> > +static inline void mt7621_rst_gpio_pcie_deassert(struct mt7621_pcie_port *port)
> > +{
> > + if (port->gpio_rst)
> > + gpiod_set_value(port->gpio_rst, 0);
> > +}
> > +
> > +static inline bool mt7621_pcie_port_is_linkup(struct mt7621_pcie_port *port)
> > +{
> > + return (pcie_port_read(port, RALINK_PCI_STATUS) & PCIE_PORT_LINKUP) != 0;
> > +}
> > +
> > +static inline void mt7621_control_assert(struct mt7621_pcie_port *port)
> > +{
> > + struct mt7621_pcie *pcie = port->pcie;
> > +
> > + if (pcie->resets_inverted)
> > + reset_control_assert(port->pcie_rst);
> > + else
> > + reset_control_deassert(port->pcie_rst);
> > +}
> > +
> > +static inline void mt7621_control_deassert(struct mt7621_pcie_port *port)
> > +{
> > + struct mt7621_pcie *pcie = port->pcie;
> > +
> > + if (pcie->resets_inverted)
> > + reset_control_deassert(port->pcie_rst);
> > + else
> > + reset_control_assert(port->pcie_rst);
> > +}
> > +
> > +static void setup_cm_memory_region(struct mt7621_pcie *pcie)
> > +{
> > + struct resource *mem_resource = pcie->mem;
> > + struct device *dev = pcie->dev;
> > + resource_size_t mask;
> > +
> > + if (mips_cps_numiocu(0)) {
> > + /*
> > + * FIXME: hardware doesn't accept mask values with 1s after
> > + * 0s (e.g. 0xffef), so it would be great to warn if that's
> > + * about to happen
> > + */
> > + mask = ~(mem_resource->end - mem_resource->start);
> > +
> > + write_gcr_reg1_base(mem_resource->start);
> > + write_gcr_reg1_mask(mask | CM_GCR_REGn_MASK_CMTGT_IOCU0);
> > + dev_info(dev, "PCI coherence region base: 0x%08llx, mask/settings: 0x%08llx\n",
> > + (unsigned long long)read_gcr_reg1_base(),
> > + (unsigned long long)read_gcr_reg1_mask());
> > + }
> > +}
> > +
> > +static int mt7621_pci_parse_request_of_pci_ranges(struct pci_host_bridge *host)
> > +{
> > + struct mt7621_pcie *pcie = pci_host_bridge_priv(host);
> > + struct device *dev = pcie->dev;
> > + struct device_node *node = dev->of_node;
> > + struct of_pci_range_parser parser;
> > + struct resource_entry *entry;
> > + struct of_pci_range range;
> > + LIST_HEAD(res);
> > +
> > + if (of_pci_range_parser_init(&parser, node)) {
> > + dev_err(dev, "missing \"ranges\" property\n");
> > + return -EINVAL;
> > + }
> > +
> > + /*
> > + * IO_SPACE_LIMIT for MIPS is 0xffff but this platform uses IO at
> > + * upper address 0x001e160000. of_pci_range_to_resource does not work
>
> I think that's normal...

No, pci_address_to_pio will fail and io resources are not properly
assigned at all.

>
> > + * well for MIPS platforms that don't define PCI_IOBASE, so set the IO
> > + * resource manually instead.
>
> Can't this be fixed?

This is the way the current PCI architecture is in mips... Maybe
Thomas has a strong opinion on this.

>
> > + */
> > + for_each_of_pci_range(&parser, &range) {
> > + switch (range.flags & IORESOURCE_TYPE_BITS) {
>
> The core code already parses ranges for you. Try not to do it again.
> (Use the resource instead)

See below...

>
> > + case IORESOURCE_IO:
> > + pcie->io_map_base =
> > + (unsigned long)ioremap(range.cpu_addr,
> > + range.size);
> > + pcie->io.name = node->full_name;
> > + pcie->io.flags = range.flags;
> > + pcie->io.start = range.cpu_addr;
> > + pcie->io.end = range.cpu_addr + range.size - 1;
> > + pcie->io.parent = pcie->io.child = pcie->io.sibling = NULL;
> > + set_io_port_base(pcie->io_map_base);
> > + break;
> > + }
> > + }
> > +
> > + entry = resource_list_first_type(&host->windows, IORESOURCE_MEM);
> > + if (!entry) {
> > + dev_err(dev, "Cannot get memory resource");
> > + return -EINVAL;
> > + }
> > +
> > + pcie->mem = entry->res;
> > + pci_add_resource(&res, &pcie->io);
> > + pci_add_resource(&res, entry->res);
> > + list_splice_init(&res, &host->windows);
>
> This should already be done for you.

Most MIPS platforms do not define PCI_IOBASE, nor implement
pci_address_to_pio(). Moreover, IO_SPACE_LIMIT is 0xffff for most MIPS
platforms. of_pci_range_to_resource passes the _start address_ of the
IO range into pci_address_to_pio, which then checks it against
IO_SPACE_LIMIT and fails. So I have to do this manually or nothing
will work properly...

>
> > +
> > + return 0;
> > +}
> > +
> > +static int mt7621_pcie_parse_port(struct mt7621_pcie *pcie,
> > + int slot)
> > +{
> > + struct mt7621_pcie_port *port;
> > + struct device *dev = pcie->dev;
> > + struct platform_device *pdev = to_platform_device(dev);
> > + char name[10];
> > +
> > + port = devm_kzalloc(dev, sizeof(*port), GFP_KERNEL);
> > + if (!port)
> > + return -ENOMEM;
> > +
> > + port->base = devm_platform_ioremap_resource(pdev, slot + 1);
> > + if (IS_ERR(port->base))
> > + return PTR_ERR(port->base);
> > +
> > + snprintf(name, sizeof(name), "pcie%d", slot);
> > + port->clk = devm_clk_get(dev, name);
> > + if (IS_ERR(port->clk)) {
> > + dev_err(dev, "failed to get pcie%d clock\n", slot);
> > + return PTR_ERR(port->clk);
> > + }
> > +
> > + snprintf(name, sizeof(name), "pcie%d", slot);
> > + port->pcie_rst = devm_reset_control_get_exclusive(dev, name);
> > + if (PTR_ERR(port->pcie_rst) == -EPROBE_DEFER) {
> > + dev_err(dev, "failed to get pcie%d reset control\n", slot);
> > + return PTR_ERR(port->pcie_rst);
> > + }
> > +
> > + snprintf(name, sizeof(name), "pcie-phy%d", slot);
> > + port->phy = devm_phy_get(dev, name);
> > + if (IS_ERR(port->phy) && slot != 1)
> > + return PTR_ERR(port->phy);
> > +
> > + port->gpio_rst = devm_gpiod_get_index_optional(dev, "reset", slot,
> > + GPIOD_OUT_LOW);
> > + if (IS_ERR(port->gpio_rst)) {
> > + dev_err(dev, "Failed to get GPIO for PCIe%d\n", slot);
> > + return PTR_ERR(port->gpio_rst);
> > + }
> > +
> > + port->slot = slot;
> > + port->pcie = pcie;
> > +
> > + INIT_LIST_HEAD(&port->list);
> > + list_add_tail(&port->list, &pcie->ports);
> > +
> > + return 0;
> > +}
> > +
> > +static int mt7621_pcie_parse_dt(struct mt7621_pcie *pcie)
> > +{
> > + struct device *dev = pcie->dev;
> > + struct platform_device *pdev = to_platform_device(dev);
> > + struct device_node *node = dev->of_node, *child;
> > + int err;
> > +
> > + pcie->base = devm_platform_ioremap_resource(pdev, 0);
> > + if (IS_ERR(pcie->base))
> > + return PTR_ERR(pcie->base);
> > +
> > + for_each_available_child_of_node(node, child) {
> > + int slot;
> > +
> > + err = of_pci_get_devfn(child);
> > + if (err < 0) {
> > + of_node_put(child);
> > + dev_err(dev, "failed to parse devfn: %d\n", err);
> > + return err;
> > + }
> > +
> > + slot = PCI_SLOT(err);
> > +
> > + err = mt7621_pcie_parse_port(pcie, slot);
> > + if (err) {
> > + of_node_put(child);
> > + return err;
> > + }
> > + }
> > +
> > + return 0;
> > +}
> > +
> > +static int mt7621_pcie_init_port(struct mt7621_pcie_port *port)
> > +{
> > + struct mt7621_pcie *pcie = port->pcie;
> > + struct device *dev = pcie->dev;
> > + u32 slot = port->slot;
> > + int err;
> > +
> > + err = phy_init(port->phy);
> > + if (err) {
> > + dev_err(dev, "failed to initialize port%d phy\n", slot);
> > + return err;
> > + }
> > +
> > + err = phy_power_on(port->phy);
> > + if (err) {
> > + dev_err(dev, "failed to power on port%d phy\n", slot);
> > + phy_exit(port->phy);
> > + return err;
> > + }
> > +
> > + port->enabled = true;
> > +
> > + return 0;
> > +}
> > +
> > +static void mt7621_pcie_reset_assert(struct mt7621_pcie *pcie)
> > +{
> > + struct mt7621_pcie_port *port;
> > +
> > + list_for_each_entry(port, &pcie->ports, list) {
> > + /* PCIe RC reset assert */
> > + mt7621_control_assert(port);
> > +
> > + /* PCIe EP reset assert */
> > + mt7621_rst_gpio_pcie_assert(port);
> > + }
> > +
> > + msleep(PERST_DELAY_MS);
> > +}
> > +
> > +static void mt7621_pcie_reset_rc_deassert(struct mt7621_pcie *pcie)
> > +{
> > + struct mt7621_pcie_port *port;
> > +
> > + list_for_each_entry(port, &pcie->ports, list)
> > + mt7621_control_deassert(port);
> > +}
> > +
> > +static void mt7621_pcie_reset_ep_deassert(struct mt7621_pcie *pcie)
> > +{
> > + struct mt7621_pcie_port *port;
> > +
> > + list_for_each_entry(port, &pcie->ports, list)
> > + mt7621_rst_gpio_pcie_deassert(port);
> > +
> > + msleep(PERST_DELAY_MS);
> > +}
> > +
> > +static void mt7621_pcie_init_ports(struct mt7621_pcie *pcie)
> > +{
> > + struct device *dev = pcie->dev;
> > + struct mt7621_pcie_port *port, *tmp;
> > + int err;
> > +
> > + mt7621_pcie_reset_assert(pcie);
> > + mt7621_pcie_reset_rc_deassert(pcie);
> > +
> > + list_for_each_entry_safe(port, tmp, &pcie->ports, list) {
> > + u32 slot = port->slot;
> > +
> > + if (slot == 1) {
> > + port->enabled = true;
> > + continue;
> > + }
> > +
> > + err = mt7621_pcie_init_port(port);
> > + if (err) {
> > + dev_err(dev, "Initiating port %d failed\n", slot);
> > + list_del(&port->list);
> > + }
> > + }
> > +
> > + mt7621_pcie_reset_ep_deassert(pcie);
> > +
> > + tmp = NULL;
> > + list_for_each_entry(port, &pcie->ports, list) {
> > + u32 slot = port->slot;
> > +
> > + if (!mt7621_pcie_port_is_linkup(port)) {
> > + dev_err(dev, "pcie%d no card, disable it (RST & CLK)\n",
> > + slot);
> > + mt7621_control_assert(port);
> > + clk_disable_unprepare(port->clk);
> > + port->enabled = false;
> > +
> > + if (slot == 0) {
> > + tmp = port;
> > + continue;
> > + }
> > +
> > + if (slot == 1 && tmp && !tmp->enabled)
> > + phy_power_off(tmp->phy)
> > + }
> > + }
> > +}
> > +
> > +static void mt7621_pcie_enable_port(struct mt7621_pcie_port *port)
> > +{
> > + struct mt7621_pcie *pcie = port->pcie;
> > + u32 slot = port->slot;
> > + u32 offset = MT7621_PCIE_OFFSET + (slot * MT7621_NEXT_PORT);
>
> I don't see how this works unless the ports happen to be at the same VA
> offset. The writes below are to the 'common' registers which are 0x100
> bytes long based on the DT example, but the offset lines up with the
> port offsets.

RC registers for port 0 start at physical address 0x1e142000, for port
1 0x1e143000 and for port 2 0x1e144000. We are using
'pcie_write' which internally uses pcie->base which is 0x1e140000, but
all the previous ones have been already requested and mapped for each
port so we calculate the offset from this 0x1e140000 and write there.

>
> > + u32 val;
> > +
> > + /* enable pcie interrupt */
> > + val = pcie_read(pcie, RALINK_PCI_PCIMSK_ADDR);
> > + val |= PCIE_PORT_INT_EN(slot);
> > + pcie_write(pcie, val, RALINK_PCI_PCIMSK_ADDR);
> > +
> > + /* map 2G DDR region */
> > + pcie_write(pcie, PCIE_BAR_MAP_MAX | PCIE_BAR_ENABLE,
> > + offset + RALINK_PCI_BAR0SETUP_ADDR);
> > +
> > + /* configure class code and revision ID */
> > + pcie_write(pcie, PCIE_CLASS_CODE | PCIE_REVISION_ID,
> > + offset + RALINK_PCI_CLASS);
> > +}
> > +
> > +static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> > +{
> > + struct device *dev = pcie->dev;
> > + struct mt7621_pcie_port *port;
> > + u8 num_slots_enabled = 0;
> > + u32 slot;
> > + u32 val;
> > + int err;
> > +
> > + /* Setup MEMWIN and IOWIN */
> > + pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> > + pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
> > +
> > + list_for_each_entry(port, &pcie->ports, list) {
> > + if (port->enabled) {
> > + err = clk_prepare_enable(port->clk);
> > + if (err) {
> > + dev_err(dev, "enabling clk pcie%d\n", slot);
> > + return err;
> > + }
> > +
> > + mt7621_pcie_enable_port(port);
> > + dev_info(dev, "PCIE%d enabled\n", port->slot);
> > + num_slots_enabled++;
> > + }
> > + }
> > +
> > + for (slot = 0; slot < num_slots_enabled; slot++) {
> > + val = read_config(pcie, slot, PCI_COMMAND);
> > + val |= PCI_COMMAND_MASTER;
> > + write_config(pcie, slot, PCI_COMMAND, val);
> > + /* configure RC FTS number to 250 when it leaves L0s */
> > + val = read_config(pcie, slot, PCIE_FTS_NUM);
> > + val &= ~PCIE_FTS_NUM_MASK;
> > + val |= PCIE_FTS_NUM_L0(0x50);
> > + write_config(pcie, slot, PCIE_FTS_NUM, val);
> > + }
> > +
> > + return 0;
> > +}
> > +
> > +static int mt7621_pcie_register_host(struct pci_host_bridge *host)
> > +{
> > + struct mt7621_pcie *pcie = pci_host_bridge_priv(host);
> > +
> > + host->ops = &mt7621_pci_ops;
> > + host->sysdata = pcie;
> > + return pci_host_probe(host);
> > +}
> > +
> > +static const struct soc_device_attribute mt7621_pci_quirks_match[] = {
> > + { .soc_id = "mt7621", .revision = "E2" }
> > +};
> > +
> > +static int mt7621_pci_probe(struct platform_device *pdev)
> > +{
> > + struct device *dev = &pdev->dev;
> > + const struct soc_device_attribute *attr;
> > + struct mt7621_pcie *pcie;
> > + struct pci_host_bridge *bridge;
> > + int err;
> > +
> > + if (!dev->of_node)
> > + return -ENODEV;
> > +
> > + bridge = devm_pci_alloc_host_bridge(dev, sizeof(*pcie));
> > + if (!bridge)
> > + return -ENOMEM;
> > +
> > + pcie = pci_host_bridge_priv(bridge);
> > + pcie->dev = dev;
> > + platform_set_drvdata(pdev, pcie);
> > + INIT_LIST_HEAD(&pcie->ports);
> > +
> > + attr = soc_device_match(mt7621_pci_quirks_match);
> > + if (attr)
> > + pcie->resets_inverted = true;
> > +
> > + err = mt7621_pcie_parse_dt(pcie);
> > + if (err) {
> > + dev_err(dev, "Parsing DT failed\n");
> > + return err;
> > + }
> > +
> > + err = mt7621_pci_parse_request_of_pci_ranges(bridge);
> > + if (err) {
> > + dev_err(dev, "Error requesting pci resources from ranges");
> > + return err;
> > + }
> > +
> > + /* set resources limits */
> > + ioport_resource.start = pcie->io.start;
> > + ioport_resource.end = pcie->io.end;
> > +
> > + mt7621_pcie_init_ports(pcie);
> > +
> > + err = mt7621_pcie_enable_ports(pcie);
>
> Really need 2 functions here?

mt7621_pcie_init_ports is in charge of power on the phy and checks for
link status to see which ports are in use and mt7621_pcie_enable_ports
just enable all the stuff to be ready to be used.

>
> > + if (err) {
> > + dev_err(dev, "Error enabling pcie ports\n");
> > + return err;
> > + }
> > +
> > + setup_cm_memory_region(pcie);
> > +
> > + return mt7621_pcie_register_host(bridge);
> > +}
> > +
> > +static const struct of_device_id mt7621_pci_ids[] = {
> > + { .compatible = "mediatek,mt7621-pci" },
> > + {},
> > +};
> > +MODULE_DEVICE_TABLE(of, mt7621_pci_ids);
> > +
> > +static struct platform_driver mt7621_pci_driver = {
> > + .probe = mt7621_pci_probe,
> > + .driver = {
> > + .name = "mt7621-pci",
> > + .of_match_table = of_match_ptr(mt7621_pci_ids),
> > + },
> > +};
> > +builtin_platform_driver(mt7621_pci_driver);
> > diff --git a/arch/mips/ralink/Kconfig b/arch/mips/ralink/Kconfig
> > index ec4daa63c5e3..50e5a54f7d9e 100644
> > --- a/arch/mips/ralink/Kconfig
> > +++ b/arch/mips/ralink/Kconfig
> > @@ -56,7 +56,7 @@ choice
> > select MIPS_GIC
> > select COMMON_CLK
> > select CLKSRC_MIPS_GIC
> > - select HAVE_PCI if PCI_MT7621
> > + select HAVE_PCI
> > select SOC_BUS
> > endchoice
> >
> > @@ -101,4 +101,11 @@ choice
> >
> > endchoice
> >
> > +config PCI_MT7621
> > + bool "MediaTek MT7621 PCI Controller"
> > + depends on RALINK && SOC_MT7621
>
> Ideally this should also have (|| COMPILE_TEST), but looks like there
> are a few MIPS dependencies in here. So maybe (|| (MIPS &&
> COMPILE_TEST)? If it's not built by allmodconfig or defconfig, it's hard
> for people to compile test it.

Ok, I will add (|| (MIPS && COMPILE_TEST) here.

Best regards,
Sergio Paracuellos

>
>
> > + select PCI_DRIVERS_GENERIC
> > + help
> > + This selects a driver for the MediaTek MT7621 PCI Controller.
> > +
> > endif
> > --
> > 2.25.1

2021-06-04 23:02:24

by Pali Rohár

[permalink] [raw]
Subject: Re: [PATCH 2/4] MIPS: pci: Add driver for MT7621 PCIe controller

On Friday 04 June 2021 13:49:39 Rob Herring wrote:
> On Fri, Jun 04, 2021 at 06:55:25PM +0200, Pali Rohár wrote:
> > On Wednesday 02 June 2021 14:43:53 Sergio Paracuellos wrote:
> > > Hi Pali,
> > >
> > > On Wed, Jun 2, 2021 at 2:23 PM Pali Rohár <[email protected]> wrote:
> > > >
> > > > On Wednesday 02 June 2021 14:16:26 Sergio Paracuellos wrote:
> > > > > Hi Pali,
> > > > >
> > > > > On Mon, May 31, 2021 at 4:19 PM Sergio Paracuellos
> > > > > <[email protected]> wrote:
> > > > > >
> > > > > > On Mon, May 31, 2021 at 3:50 PM Pali Rohár <[email protected]> wrote:
> > > > > > >
> > > > > > > On Monday 31 May 2021 15:39:55 Sergio Paracuellos wrote:
> > > > > > > > Hi Pali,
> > > > > > > >
> > > > > > > > Thanks for your comments.
> > > > > > > >
> > > > > > > > On Mon, May 31, 2021 at 3:14 PM Pali Rohár <[email protected]> wrote:
> > > > > > > > >
> > > > > > > > > On Saturday 15 May 2021 14:40:53 Sergio Paracuellos wrote:
> > > > > > > > > > This patch adds a driver for the PCIe controller of MT7621 SoC.
> > > > > > > > > >
> > > > > > > > > > Signed-off-by: Sergio Paracuellos <[email protected]>
> > > > > > > > > > ---
> > > > > > > > > > arch/mips/pci/Makefile | 1 +
> > > > > > > > > > arch/mips/pci/pci-mt7621.c | 624 +++++++++++++++++++++++++++++++++++++
> > > > > > > > > > arch/mips/ralink/Kconfig | 9 +-
> > > > > > > > > > 3 files changed, 633 insertions(+), 1 deletion(-)
> > > > > > > > > > create mode 100644 arch/mips/pci/pci-mt7621.c
> > > > > > > > > >
> > > > > > > > > > diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile
> > > > > > > > > > index f3eecc065e5c..178c550739c4 100644
> > > > > > > > > > --- a/arch/mips/pci/Makefile
> > > > > > > > > > +++ b/arch/mips/pci/Makefile
> > > > > > > > > > @@ -24,6 +24,7 @@ obj-$(CONFIG_PCI_AR2315) += pci-ar2315.o
> > > > > > > > > > obj-$(CONFIG_SOC_AR71XX) += pci-ar71xx.o
> > > > > > > > > > obj-$(CONFIG_PCI_AR724X) += pci-ar724x.o
> > > > > > > > > > obj-$(CONFIG_PCI_XTALK_BRIDGE) += pci-xtalk-bridge.o
> > > > > > > > > > +obj-$(CONFIG_PCI_MT7621) += pci-mt7621.o
> > > > > > > > > > #
> > > > > > > > > > # These are still pretty much in the old state, watch, go blind.
> > > > > > > > > > #
> > > > > > > > > > diff --git a/arch/mips/pci/pci-mt7621.c b/arch/mips/pci/pci-mt7621.c
> > > > > > > > > > new file mode 100644
> > > > > > > > > > index 000000000000..fe1945819d25
> > > > > > > > > > --- /dev/null
> > > > > > > > > > +++ b/arch/mips/pci/pci-mt7621.c
> > > > > > > > > ...
> > > > > > > > > > +static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> > > > > > > > > > +{
> > > > > > > > > > + struct device *dev = pcie->dev;
> > > > > > > > > > + struct mt7621_pcie_port *port;
> > > > > > > > > > + u8 num_slots_enabled = 0;
> > > > > > > > > > + u32 slot;
> > > > > > > > > > + u32 val;
> > > > > > > > > > + int err;
> > > > > > > > > > +
> > > > > > > > > > + /* Setup MEMWIN and IOWIN */
> > > > > > > > > > + pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> > > > > > > > > > + pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
> > > > > > > > > > +
> > > > > > > > > > + list_for_each_entry(port, &pcie->ports, list) {
> > > > > > > > > > + if (port->enabled) {
> > > > > > > > > > + err = clk_prepare_enable(port->clk);
> > > > > > > > > > + if (err) {
> > > > > > > > > > + dev_err(dev, "enabling clk pcie%d\n", slot);
> > > > > > > > > > + return err;
> > > > > > > > > > + }
> > > > > > > > > > +
> > > > > > > > > > + mt7621_pcie_enable_port(port);
> > > > > > > > > > + dev_info(dev, "PCIE%d enabled\n", port->slot);
> > > > > > > > > > + num_slots_enabled++;
> > > > > > > > > > + }
> > > > > > > > > > + }
> > > > > > > > > > +
> > > > > > > > > > + for (slot = 0; slot < num_slots_enabled; slot++) {
> > > > > > > > > > + val = read_config(pcie, slot, PCI_COMMAND);
> > > > > > > > > > + val |= PCI_COMMAND_MASTER;
> > > > > > > > > > + write_config(pcie, slot, PCI_COMMAND, val);
> > > > > > > > >
> > > > > > > > > Hello! Is this part of code correct? Because it looks strange if PCIe
> > > > > > > > > controller driver automatically enables PCI bus mastering, prior device
> > > > > > > > > driver initialize itself.
> > > > > > > > >
> > > > > > > > > Moreover kernel has already function pci_set_master() for this purpose
> > > > > > > > > which is used by device drivers.
> > > > > > > > >
> > > > > > > > > So I think this code can confuse some device drivers...
> > > > > > > >
> > > > > > > > I agree that we have pci_set_master() to be used in pci device driver
> > > > > > > > code. Original controller driver set this bit for enabled slots. Since
> > > > > > > > there is no documentation at all for the PCI in this SoC
> > > > > > >
> > > > > > > I see... this is really a big problem to do any driver development...
> > > > > >
> > > > > > For sure it is :(.
> > > > > >
> > > > > > >
> > > > > > > > I have
> > > > > > > > maintained the setting in the driver in a cleaner way. See original
> > > > > > > > driver code and the setting here [0]. There is no other reason than
> > > > > > > > that. I am ok with removing this from here and testing with my two
> > > > > > > > devices that everything is still ok if having this setting in the pci
> > > > > > > > controller driver is a real problem.
> > > > > > >
> > > > > > > You can run lspci -nnvv with and without PCI_COMMAND_MASTER code and
> > > > > > > then compare outputs.
> > > > > > >
> > > > > > > Device drivers for sure enable PCI_COMMAND_MASTER at the time when it is
> > > > > > > needed, so it is possible that there would be no difference in lspci
> > > > > > > output.
> > > > > >
> > > > > > Thanks. I will take this into account when v2 is submitted after more
> > > > > > review comments come :).
> > > > >
> > > > > I have tested to remove this and check lspci -nnvv output with and
> > > > > without PCI_COMMAND_MASTER code and, as you pointed out, there is no
> > > > > difference between them. Also, both boards are working without
> > > > > regressions at all. So I will remove this code for next version.
> > > >
> > > > Perfect!
> > > >
> > > > > Thanks,
> > > > > Sergio Paracuellos
> > > > > >
> > > > > > >
> > > > > > > > [0]: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/tree/drivers/staging/mt7621-pci/pci-mt7621.c?h=v4.18#n676
> > > > > > > >
> > > > > > > > Best regards,
> > > > > > > > Sergio Paracuellos
> > > > > > > > >
> > > > > > > > > > + /* configure RC FTS number to 250 when it leaves L0s */
> > > > > > > > > > + val = read_config(pcie, slot, PCIE_FTS_NUM);
> > > > > > > > > > + val &= ~PCIE_FTS_NUM_MASK;
> > > > > > > > > > + val |= PCIE_FTS_NUM_L0(0x50);
> > > > > > > > > > + write_config(pcie, slot, PCIE_FTS_NUM, val);
> > > >
> > > > Could you look also what is doing this code (PCIE_FTS_NUM)? It is marked
> > > > as MT specific register. But from this code for me it looks like that it
> > > > just access config space of some device and therefore it could be some
> > > > standard PCIe register. Just with hardcoded calculated offset.
> >
> > So based on your lspci output, there is no PCIe capability register at
> > address PCIE_FTS_NUM (0x70c), right? It seems strange to trying access
> > capability register outside of capability list.
>
> Looks like a DW PCIe port logic register:
>
> drivers/pci/controller/dwc/pcie-designware.h-/* Synopsys-specific PCIe configuration registers */
> drivers/pci/controller/dwc/pcie-designware.h:#define PCIE_PORT_AFR 0x70C
> drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_N_FTS_MASK GENMASK(15, 8)
> drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_N_FTS(n) FIELD_PREP(PORT_AFR_N_FTS_MASK, n)
> drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_CC_N_FTS_MASK GENMASK(23, 16)
> drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_CC_N_FTS(n) FIELD_PREP(PORT_AFR_CC_N_FTS_MASK, n)
> drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_ENTER_ASPM BIT(30)
> drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_L0S_ENTRANCE_LAT_SHIFT 24
> drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_L0S_ENTRANCE_LAT_MASK GENMASK(26, 24)
> drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_L1_ENTRANCE_LAT_SHIFT 27
> drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_L1_ENTRANCE_LAT_MASK GENMASK(29, 27)
>
> Rob

Rob: nice catch!
Does it mean that this MT7621 SoC has dwc controller and driver can be
theoretically in future rewritten to use common dwc code?

Sergio: I have tried to find some information about it and seems that
MT7620, MT7621 and MT7628 SoC are really using some designware dwc IP.
Some details are available in section "Embedded/kernel developer
friendliness" in following blog post:
https://www.abclinuxu.cz/blog/GardenOfEdenConfiguration/2019/10/opus-magnum

And seems that "programming guide" documentation for MT7620 is available
on internet with description of PCIe registers. I do not know how MT7620
and MT7621 are different but maybe it could help to develop or understand
driver.

2021-06-04 23:10:37

by Pali Rohár

[permalink] [raw]
Subject: Re: [PATCH 2/4] MIPS: pci: Add driver for MT7621 PCIe controller

On Friday 04 June 2021 20:44:42 Sergio Paracuellos wrote:
> Hi Pali,
>
> Thanks for your comments.
>
> On Fri, Jun 4, 2021 at 6:55 PM Pali Rohár <[email protected]> wrote:
> >
> > On Wednesday 02 June 2021 14:43:53 Sergio Paracuellos wrote:
> > > Hi Pali,
> > >
> > > On Wed, Jun 2, 2021 at 2:23 PM Pali Rohár <[email protected]> wrote:
> > > >
> > > > On Wednesday 02 June 2021 14:16:26 Sergio Paracuellos wrote:
> > > > > Hi Pali,
> > > > >
> > > > > On Mon, May 31, 2021 at 4:19 PM Sergio Paracuellos
> > > > > <[email protected]> wrote:
> > > > > >
> > > > > > On Mon, May 31, 2021 at 3:50 PM Pali Rohár <[email protected]> wrote:
> > > > > > >
> > > > > > > On Monday 31 May 2021 15:39:55 Sergio Paracuellos wrote:
> > > > > > > > Hi Pali,
> > > > > > > >
> > > > > > > > Thanks for your comments.
> > > > > > > >
> > > > > > > > On Mon, May 31, 2021 at 3:14 PM Pali Rohár <[email protected]> wrote:
> > > > > > > > >
> > > > > > > > > On Saturday 15 May 2021 14:40:53 Sergio Paracuellos wrote:
> > > > > > > > > > This patch adds a driver for the PCIe controller of MT7621 SoC.
> > > > > > > > > >
> > > > > > > > > > Signed-off-by: Sergio Paracuellos <[email protected]>
> > > > > > > > > > ---
> > > > > > > > > > arch/mips/pci/Makefile | 1 +
> > > > > > > > > > arch/mips/pci/pci-mt7621.c | 624 +++++++++++++++++++++++++++++++++++++
> > > > > > > > > > arch/mips/ralink/Kconfig | 9 +-
> > > > > > > > > > 3 files changed, 633 insertions(+), 1 deletion(-)
> > > > > > > > > > create mode 100644 arch/mips/pci/pci-mt7621.c
> > > > > > > > > >
> > > > > > > > > > diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile
> > > > > > > > > > index f3eecc065e5c..178c550739c4 100644
> > > > > > > > > > --- a/arch/mips/pci/Makefile
> > > > > > > > > > +++ b/arch/mips/pci/Makefile
> > > > > > > > > > @@ -24,6 +24,7 @@ obj-$(CONFIG_PCI_AR2315) += pci-ar2315.o
> > > > > > > > > > obj-$(CONFIG_SOC_AR71XX) += pci-ar71xx.o
> > > > > > > > > > obj-$(CONFIG_PCI_AR724X) += pci-ar724x.o
> > > > > > > > > > obj-$(CONFIG_PCI_XTALK_BRIDGE) += pci-xtalk-bridge.o
> > > > > > > > > > +obj-$(CONFIG_PCI_MT7621) += pci-mt7621.o
> > > > > > > > > > #
> > > > > > > > > > # These are still pretty much in the old state, watch, go blind.
> > > > > > > > > > #
> > > > > > > > > > diff --git a/arch/mips/pci/pci-mt7621.c b/arch/mips/pci/pci-mt7621.c
> > > > > > > > > > new file mode 100644
> > > > > > > > > > index 000000000000..fe1945819d25
> > > > > > > > > > --- /dev/null
> > > > > > > > > > +++ b/arch/mips/pci/pci-mt7621.c
> > > > > > > > > ...
> > > > > > > > > > +static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> > > > > > > > > > +{
> > > > > > > > > > + struct device *dev = pcie->dev;
> > > > > > > > > > + struct mt7621_pcie_port *port;
> > > > > > > > > > + u8 num_slots_enabled = 0;
> > > > > > > > > > + u32 slot;
> > > > > > > > > > + u32 val;
> > > > > > > > > > + int err;
> > > > > > > > > > +
> > > > > > > > > > + /* Setup MEMWIN and IOWIN */
> > > > > > > > > > + pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> > > > > > > > > > + pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
> > > > > > > > > > +
> > > > > > > > > > + list_for_each_entry(port, &pcie->ports, list) {
> > > > > > > > > > + if (port->enabled) {
> > > > > > > > > > + err = clk_prepare_enable(port->clk);
> > > > > > > > > > + if (err) {
> > > > > > > > > > + dev_err(dev, "enabling clk pcie%d\n", slot);
> > > > > > > > > > + return err;
> > > > > > > > > > + }
> > > > > > > > > > +
> > > > > > > > > > + mt7621_pcie_enable_port(port);
> > > > > > > > > > + dev_info(dev, "PCIE%d enabled\n", port->slot);
> > > > > > > > > > + num_slots_enabled++;
> > > > > > > > > > + }
> > > > > > > > > > + }
> > > > > > > > > > +
> > > > > > > > > > + for (slot = 0; slot < num_slots_enabled; slot++) {
> > > > > > > > > > + val = read_config(pcie, slot, PCI_COMMAND);
> > > > > > > > > > + val |= PCI_COMMAND_MASTER;
> > > > > > > > > > + write_config(pcie, slot, PCI_COMMAND, val);
> > > > > > > > >
> > > > > > > > > Hello! Is this part of code correct? Because it looks strange if PCIe
> > > > > > > > > controller driver automatically enables PCI bus mastering, prior device
> > > > > > > > > driver initialize itself.
> > > > > > > > >
> > > > > > > > > Moreover kernel has already function pci_set_master() for this purpose
> > > > > > > > > which is used by device drivers.
> > > > > > > > >
> > > > > > > > > So I think this code can confuse some device drivers...
> > > > > > > >
> > > > > > > > I agree that we have pci_set_master() to be used in pci device driver
> > > > > > > > code. Original controller driver set this bit for enabled slots. Since
> > > > > > > > there is no documentation at all for the PCI in this SoC
> > > > > > >
> > > > > > > I see... this is really a big problem to do any driver development...
> > > > > >
> > > > > > For sure it is :(.
> > > > > >
> > > > > > >
> > > > > > > > I have
> > > > > > > > maintained the setting in the driver in a cleaner way. See original
> > > > > > > > driver code and the setting here [0]. There is no other reason than
> > > > > > > > that. I am ok with removing this from here and testing with my two
> > > > > > > > devices that everything is still ok if having this setting in the pci
> > > > > > > > controller driver is a real problem.
> > > > > > >
> > > > > > > You can run lspci -nnvv with and without PCI_COMMAND_MASTER code and
> > > > > > > then compare outputs.
> > > > > > >
> > > > > > > Device drivers for sure enable PCI_COMMAND_MASTER at the time when it is
> > > > > > > needed, so it is possible that there would be no difference in lspci
> > > > > > > output.
> > > > > >
> > > > > > Thanks. I will take this into account when v2 is submitted after more
> > > > > > review comments come :).
> > > > >
> > > > > I have tested to remove this and check lspci -nnvv output with and
> > > > > without PCI_COMMAND_MASTER code and, as you pointed out, there is no
> > > > > difference between them. Also, both boards are working without
> > > > > regressions at all. So I will remove this code for next version.
> > > >
> > > > Perfect!
> > > >
> > > > > Thanks,
> > > > > Sergio Paracuellos
> > > > > >
> > > > > > >
> > > > > > > > [0]: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/tree/drivers/staging/mt7621-pci/pci-mt7621.c?h=v4.18#n676
> > > > > > > >
> > > > > > > > Best regards,
> > > > > > > > Sergio Paracuellos
> > > > > > > > >
> > > > > > > > > > + /* configure RC FTS number to 250 when it leaves L0s */
> > > > > > > > > > + val = read_config(pcie, slot, PCIE_FTS_NUM);
> > > > > > > > > > + val &= ~PCIE_FTS_NUM_MASK;
> > > > > > > > > > + val |= PCIE_FTS_NUM_L0(0x50);
> > > > > > > > > > + write_config(pcie, slot, PCIE_FTS_NUM, val);
> > > >
> > > > Could you look also what is doing this code (PCIE_FTS_NUM)? It is marked
> > > > as MT specific register. But from this code for me it looks like that it
> > > > just access config space of some device and therefore it could be some
> > > > standard PCIe register. Just with hardcoded calculated offset.
> >
> > So based on your lspci output, there is no PCIe capability register at
> > address PCIE_FTS_NUM (0x70c), right? It seems strange to trying access
> > capability register outside of capability list.
>
> This setting is also in the original driver code from mediatek SDK. See [0].
> Anyway, I have tried to remove this code and test what happens with my
> two boards and both of them seem to
> work properly just by deleting this code.

Looks like that this code is some designware stuff which seems to be
needed. So it would be better to let it here as is.

> > > > Could you provide output from lspci -nnvv? So other people could look at
> > > > it and maybe we decode what is this code doing and if it is needed.
> > >
> > > # lspci -nnvv
> > > 00:02.0 PCI bridge [0604]: Device [0e8d:0801] (rev 01) (prog-if 00
> > > [Normal decode])
> >
> > Hm... Device address is 02. But in your code is:
> >
> > u8 num_slots_enabled = 0;
> > ...
> > list_for_each_entry(port, &pcie->ports, list) {
> > if (port->enabled) {
> > ...
> > num_slots_enabled++;
> > ...
> > }
> > }
> > ...
> > for (slot = 0; slot < num_slots_enabled; slot++) {
> > val = read_config(pcie, slot, ...);
> > ...
> > write_config(pcie, slot, ...);
> > }
> >
> > Which means that this code writes to config space of wrong device 0
> > (instead of 2)! In function write_config() can be seen that second
> > parameter specify device of BDF address for bus=0 and function=0.
>
> Bridge enumeration depends on a virtual bridge register configuration.
> But at the end devices connected to the bridge
> are enumerated as 01:00.0, 02:00.0 and 03:00.0. So in this case the
> phy used is the one for "pcie2" (00:02.0) and the device connected to
> it
> is 01:00.0. For example a board using all the virtual bridges will get
> an output similar to:
>
> [ 16.487166] mt7621-pci 1e140000.pcie: host bridge /pcie@1e140000 ranges:
> [ 16.500627] mt7621-pci 1e140000.pcie: No bus range found for
> /pcie@1e140000, using [bus 00-ff]
> [ 16.518212] mt7621-pci 1e140000.pcie: MEM
> 0x0060000000..0x006fffffff -> 0x0000000000
> [ 16.534531] mt7621-pci 1e140000.pcie: IO
> 0x001e160000..0x001e16ffff -> 0x0000000000
> [ 16.786498] mt7621-pci 1e140000.pcie: PCIE0 enabled
> [ 16.796220] mt7621-pci 1e140000.pcie: PCIE1 enabled
> [ 16.805943] mt7621-pci 1e140000.pcie: PCIE2 enabled
> [ 16.815664] mt7621-pci 1e140000.pcie: PCI coherence region base:
> 0x60000000, mask/settings: 0xf0000002
> [ 16.834398] mt7621-pci 1e140000.pcie: PCI host bridge to bus 0000:00
> [ 16.847098] pci_bus 0000:00: root bus resource [io 0x1e160000-0x1e16ffff]
> [ 16.860806] pci_bus 0000:00: root bus resource [mem 0x60000000-0x6fffffff]
> [ 16.874504] pci_bus 0000:00: root bus resource [bus 00-ff]
> [ 16.885441] pci_bus 0000:00: root bus resource [mem
> 0x60000000-0x6fffffff] (bus address [0x00000000-0x0fffffff])
> [ 16.905773] pci 0000:00:00.0: [0e8d:0801] type 01 class 0x060400
> [ 16.917772] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x7fffffff]
> [ 16.930260] pci 0000:00:00.0: reg 0x14: initial BAR value 0x00000000 invalid
> [ 16.944304] pci 0000:00:00.0: reg 0x14: [mem size 0x00010000]
> [ 16.955841] pci 0000:00:00.0: supports D1
> [ 16.963837] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
> [ 16.975747] pci 0000:00:01.0: [0e8d:0801] type 01 class 0x060400
> [ 16.987772] pci 0000:00:01.0: reg 0x10: [mem 0x00000000-0x7fffffff]
> [ 17.000273] pci 0000:00:01.0: reg 0x14: initial BAR value 0x00000000 invalid
> [ 17.014311] pci 0000:00:01.0: reg 0x14: [mem size 0x00010000]
> [ 17.025838] pci 0000:00:01.0: supports D1
> [ 17.033828] pci 0000:00:01.0: PME# supported from D0 D1 D3hot
> [ 17.045699] pci 0000:00:02.0: [0e8d:0801] type 01 class 0x060400
> [ 17.057726] pci 0000:00:02.0: reg 0x10: [mem 0x00000000-0x7fffffff]
> [ 17.070218] pci 0000:00:02.0: reg 0x14: initial BAR value 0x00000000 invalid
> [ 17.084260] pci 0000:00:02.0: reg 0x14: [mem size 0x00010000]
> [ 17.095788] pci 0000:00:02.0: supports D1
> [ 17.103785] pci 0000:00:02.0: PME# supported from D0 D1 D3hot
> [ 17.116598] pci 0000:00:00.0: bridge configuration invalid ([bus
> 00-00]), reconfiguring
> [ 17.132566] pci 0000:00:01.0: bridge configuration invalid ([bus
> 00-00]), reconfiguring
> [ 17.148514] pci 0000:00:02.0: bridge configuration invalid ([bus
> 00-00]), reconfiguring
> [ 17.164739] pci 0000:01:00.0: [1b21:0611] type 00 class 0x010185
> [ 17.176775] pci 0000:01:00.0: reg 0x10: [io 0x0000-0x0007]
> [ 17.187892] pci 0000:01:00.0: reg 0x14: [io 0x0000-0x0003]
> [ 17.199009] pci 0000:01:00.0: reg 0x18: [io 0x0000-0x0007]
> [ 17.210130] pci 0000:01:00.0: reg 0x1c: [io 0x0000-0x0003]
> [ 17.221246] pci 0000:01:00.0: reg 0x20: [io 0x0000-0x000f]
> [ 17.232357] pci 0000:01:00.0: reg 0x24: initial BAR value 0x00000000 invalid
> [ 17.246411] pci 0000:01:00.0: reg 0x24: [mem size 0x00000200]
> [ 17.258031] pci 0000:01:00.0: 2.000 Gb/s available PCIe bandwidth,
> limited by 2.5 GT/s PCIe x1 link at 0000:00:00.0 (capable of 4.000
> Gb/s with 5.0 GT/s PCIe x1 link)
> [ 17.317563] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
> [ 17.328033] pci 0000:00:00.0: bridge window [io 0x0000-0x0fff]
> [ 17.340179] pci 0000:00:00.0: bridge window [mem 0x60000000-0x600fffff]
> [ 17.353703] pci 0000:00:00.0: bridge window [mem
> 0x60000000-0x600fffff pref]
> [ 17.368097] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
> [ 17.381550] pci 0000:02:00.0: [1b21:0611] type 00 class 0x010185
> [ 17.393573] pci 0000:02:00.0: reg 0x10: [io 0x0000-0x0007]
> [ 17.404694] pci 0000:02:00.0: reg 0x14: [io 0x0000-0x0003]
> [ 17.415804] pci 0000:02:00.0: reg 0x18: [io 0x0000-0x0007]
> [ 17.426916] pci 0000:02:00.0: reg 0x1c: [io 0x0000-0x0003]
> [ 17.438040] pci 0000:02:00.0: reg 0x20: [io 0x0000-0x000f]
> [ 17.449148] pci 0000:02:00.0: reg 0x24: initial BAR value 0x00000000 invalid
> [ 17.463193] pci 0000:02:00.0: reg 0x24: [mem size 0x00000200]
> [ 17.474803] pci 0000:02:00.0: 2.000 Gb/s available PCIe bandwidth,
> limited by 2.5 GT/s PCIe x1 link at 0000:00:01.0 (capable of 4.000
> Gb/s with 5.0 GT/s PCIe x1 link)
> [ 17.527554] pci 0000:00:01.0: PCI bridge to [bus 02-ff]
> [ 17.538014] pci 0000:00:01.0: bridge window [io 0x0000-0x0fff]
> [ 17.550159] pci 0000:00:01.0: bridge window [mem 0x60000000-0x600fffff]
> [ 17.563682] pci 0000:00:01.0: bridge window [mem
> 0x60000000-0x600fffff pref]
> [ 17.578078] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02
> [ 17.591529] pci 0000:03:00.0: [1b21:0611] type 00 class 0x010185
> [ 17.603545] pci 0000:03:00.0: reg 0x10: [io 0x0000-0x0007]
> [ 17.614665] pci 0000:03:00.0: reg 0x14: [io 0x0000-0x0003]
> [ 17.625775] pci 0000:03:00.0: reg 0x18: [io 0x0000-0x0007]
> [ 17.636887] pci 0000:03:00.0: reg 0x1c: [io 0x0000-0x0003]
> [ 17.648009] pci 0000:03:00.0: reg 0x20: [io 0x0000-0x000f]
> [ 17.659119] pci 0000:03:00.0: reg 0x24: initial BAR value 0x00000000 invalid
> [ 17.673162] pci 0000:03:00.0: reg 0x24: [mem size 0x00000200]
> [ 17.684777] pci 0000:03:00.0: 2.000 Gb/s available PCIe bandwidth,
> limited by 2.5 GT/s PCIe x1 link at 0000:00:02.0 (capable of 4.000
> Gb/s with 5.0 GT/s PCIe x1 link)
> [ 17.737561] pci 0000:00:02.0: PCI bridge to [bus 03-ff]
> [ 17.748022] pci 0000:00:02.0: bridge window [io 0x0000-0x0fff]
> [ 17.760167] pci 0000:00:02.0: bridge window [mem 0x60000000-0x600fffff]
> [ 17.773690] pci 0000:00:02.0: bridge window [mem
> 0x60000000-0x600fffff pref]
> [ 17.788085] pci_bus 0000:03: busn_res: [bus 03-ff] end is updated to 03
> [ 17.801341] pci 0000:00:00.0: BAR 0: no space for [mem size 0x80000000]
> [ 17.814518] pci 0000:00:00.0: BAR 0: failed to assign [mem size 0x80000000]
> [ 17.828392] pci 0000:00:01.0: BAR 0: no space for [mem size 0x80000000]
> [ 17.841571] pci 0000:00:01.0: BAR 0: failed to assign [mem size 0x80000000]
> [ 17.855443] pci 0000:00:02.0: BAR 0: no space for [mem size 0x80000000]
> [ 17.868626] pci 0000:00:02.0: BAR 0: failed to assign [mem size 0x80000000]
> [ 17.882502] pci 0000:00:00.0: BAR 8: assigned [mem 0x60000000-0x600fffff]
> [ 17.896028] pci 0000:00:00.0: BAR 9: assigned [mem
> 0x60100000-0x601fffff pref]
> [ 17.910419] pci 0000:00:01.0: BAR 8: assigned [mem 0x60200000-0x602fffff]
> [ 17.923951] pci 0000:00:01.0: BAR 9: assigned [mem
> 0x60300000-0x603fffff pref]
> [ 17.938353] pci 0000:00:02.0: BAR 8: assigned [mem 0x60400000-0x604fffff]
> [ 17.951879] pci 0000:00:02.0: BAR 9: assigned [mem
> 0x60500000-0x605fffff pref]
> [ 17.966273] pci 0000:00:00.0: BAR 1: assigned [mem 0x60600000-0x6060ffff]
> [ 17.979809] pci 0000:00:01.0: BAR 1: assigned [mem 0x60610000-0x6061ffff]
> [ 17.993341] pci 0000:00:02.0: BAR 1: assigned [mem 0x60620000-0x6062ffff]
> [ 18.006877] pci 0000:00:00.0: BAR 7: assigned [io 0x1e160000-0x1e160fff]
> [ 18.020408] pci 0000:00:01.0: BAR 7: assigned [io 0x1e161000-0x1e161fff]
> [ 18.033932] pci 0000:00:02.0: BAR 7: assigned [io 0x1e162000-0x1e162fff]
> [ 18.047472] pci 0000:01:00.0: BAR 5: assigned [mem 0x60000000-0x600001ff]
> [ 18.061005] pci 0000:01:00.0: BAR 4: assigned [io 0x1e160000-0x1e16000f]
> [ 18.074540] pci 0000:01:00.0: BAR 0: assigned [io 0x1e160010-0x1e160017]
> [ 18.088070] pci 0000:01:00.0: BAR 2: assigned [io 0x1e160018-0x1e16001f]
> [ 18.101606] pci 0000:01:00.0: BAR 1: assigned [io 0x1e160020-0x1e160023]
> [ 18.115139] pci 0000:01:00.0: BAR 3: assigned [io 0x1e160024-0x1e160027]
> [ 18.128676] pci 0000:00:00.0: PCI bridge to [bus 01]
> [ 18.138577] pci 0000:00:00.0: bridge window [io 0x1e160000-0x1e160fff]
> [ 18.152100] pci 0000:00:00.0: bridge window [mem 0x60000000-0x600fffff]
> [ 18.165627] pci 0000:00:00.0: bridge window [mem
> 0x60100000-0x601fffff pref]
> [ 18.180030] pci 0000:02:00.0: BAR 5: assigned [mem 0x60200000-0x602001ff]
> [ 18.193566] pci 0000:02:00.0: BAR 4: assigned [io 0x1e161000-0x1e16100f]
> [ 18.207110] pci 0000:02:00.0: BAR 0: assigned [io 0x1e161010-0x1e161017]
> [ 18.220648] pci 0000:02:00.0: BAR 2: assigned [io 0x1e161018-0x1e16101f]
> [ 18.234183] pci 0000:02:00.0: BAR 1: assigned [io 0x1e161020-0x1e161023]
> [ 18.247723] pci 0000:02:00.0: BAR 3: assigned [io 0x1e161024-0x1e161027]
> [ 18.261257] pci 0000:00:01.0: PCI bridge to [bus 02]
> [ 18.271165] pci 0000:00:01.0: bridge window [io 0x1e161000-0x1e161fff]
> [ 18.284695] pci 0000:00:01.0: bridge window [mem 0x60200000-0x602fffff]
> [ 18.298225] pci 0000:00:01.0: bridge window [mem
> 0x60300000-0x603fffff pref]
> [ 18.312630] pci 0000:03:00.0: BAR 5: assigned [mem 0x60400000-0x604001ff]
> [ 18.326166] pci 0000:03:00.0: BAR 4: assigned [io 0x1e162000-0x1e16200f]
> [ 18.339702] pci 0000:03:00.0: BAR 0: assigned [io 0x1e162010-0x1e162017]
> [ 18.353237] pci 0000:03:00.0: BAR 2: assigned [io 0x1e162018-0x1e16201f]
> [ 18.366775] pci 0000:03:00.0: BAR 1: assigned [io 0x1e162020-0x1e162023]
> [ 18.380311] pci 0000:03:00.0: BAR 3: assigned [io 0x1e162024-0x1e162027]
> [ 18.393841] pci 0000:00:02.0: PCI bridge to [bus 03]
> [ 18.403740] pci 0000:00:02.0: bridge window [io 0x1e162000-0x1e162fff]
> [ 18.417270] pci 0000:00:02.0: bridge window [mem 0x60400000-0x604fffff]
> [ 18.430801] pci 0000:00:02.0: bridge window [mem
> 0x60500000-0x605fffff pref]
> [ 18.445529] ahci 0000:01:00.0: version 3.0
> [ 18.445559] pci 0000:00:00.0: enabling device (0000 -> 0003)
> [ 18.456853] ahci 0000:01:00.0: enabling device (0000 -> 0003)
> [ 18.468455] ahci 0000:01:00.0: SSS flag set, parallel bus scan disabled
> [ 18.481700] ahci 0000:01:00.0: AHCI 0001.0200 32 slots 2 ports 6
> Gbps 0x3 impl IDE mode
> [ 18.497662] ahci 0000:01:00.0: flags: 64bit ncq sntf stag led clo
> pmp pio slum part ccc sxs
> [ 18.516777] scsi host0: ahci
> [ 18.523629] scsi host1: ahci
> [ 18.529829] ata1: SATA max UDMA/133 abar m512@0x60000000 port
> 0x60000100 irq 22
> [ 18.544447] ata2: SATA max UDMA/133 abar m512@0x60000000 port
> 0x60000180 irq 22
> [ 18.559465] pci 0000:00:01.0: enabling device (0000 -> 0003)
> [ 18.570786] ahci 0000:02:00.0: enabling device (0000 -> 0003)
> [ 18.582414] ahci 0000:02:00.0: SSS flag set, parallel bus scan disabled
> [ 18.595665] ahci 0000:02:00.0: AHCI 0001.0200 32 slots 2 ports 6
> Gbps 0x3 impl IDE mode
> [ 18.611614] ahci 0000:02:00.0: flags: 64bit ncq sntf stag led clo
> pmp pio slum part ccc sxs
> [ 18.631053] scsi host2: ahci
> [ 18.637983] scsi host3: ahci
> [ 18.644138] ata3: SATA max UDMA/133 abar m512@0x60200000 port
> 0x60200100 irq 23
> [ 18.658792] ata4: SATA max UDMA/133 abar m512@0x60200000 port
> 0x60200180 irq 23
> [ 18.673827] pci 0000:00:02.0: enabling device (0000 -> 0003)
> [ 18.685151] ahci 0000:03:00.0: enabling device (0000 -> 0003)
> [ 18.696782] ahci 0000:03:00.0: SSS flag set, parallel bus scan disabled
> [ 18.710025] ahci 0000:03:00.0: AHCI 0001.0200 32 slots 2 ports 6
> Gbps 0x3 impl IDE mode
> [ 18.725972] ahci 0000:03:00.0: flags: 64bit ncq sntf stag led clo
> pmp pio slum part ccc sxs
>
> And you are totally right, the setting is writing in the wrong place.
> I changed the device tree and the way interrupts are mapped
> to avoid using a custom 'map_irq' function [1]. Before that commit the
> pci virtual bridge register was reordering the
> buses enumeration depending on link status, so there I should also
> properly rewrite the code in question.
>
> I can rewrite the code to read and write config properly using the
> slot moving the code into 'mt7621_pcie_enable_port' as follows:
>
> static void mt7621_pcie_enable_port(struct mt7621_pcie_port *port)
> {
> struct mt7621_pcie *pcie = port->pcie;
> u32 slot = port->slot;
> u32 offset = MT7621_PCIE_OFFSET + (slot * MT7621_NEXT_PORT);
> u32 val;
>
> /* enable pcie interrupt */
> val = pcie_read(pcie, RALINK_PCI_PCIMSK_ADDR);
> val |= PCIE_PORT_INT_EN(slot);
>
> /* map 2G DDR region */
> pcie_write(pcie, PCIE_BAR_MAP_MAX | PCIE_BAR_ENABLE,
> offset + RALINK_PCI_BAR0SETUP_ADDR);
>
> /* configure class code and revision ID */
> pcie_write(pcie, PCIE_CLASS_CODE | PCIE_REVISION_ID,
> offset + RALINK_PCI_CLASS);
>
> /* configure RC FTS number to 250 when it leaves L0s */
> val = read_config(pcie, slot, PCIE_FTS_NUM);
> val &= ~PCIE_FTS_NUM_MASK;
> val |= PCIE_FTS_NUM_L0(0x50);
> write_config(pcie, slot, PCIE_FTS_NUM, val);
> }
>
> static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> {
> struct device *dev = pcie->dev;
> struct mt7621_pcie_port *port;
> int err;
>
> /* Setup MEMWIN and IOWIN */
> pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
>
> list_for_each_entry(port, &pcie->ports, list) {
> if (port->enabled) {
> err = clk_prepare_enable(port->clk);
> if (err) {
> dev_err(dev, "enabling clk pcie%d\n",
> port->slot);
> return err;
> }
>
> mt7621_pcie_enable_port(port);
> dev_info(dev, "PCIE%d enabled\n", port->slot);
> }
> }
>
> return 0;
> }
>
> Or just delete the setting and the read and write config functions
> since they are not being used in any other place. My two boards work
> without this setting but I don't know about other boards.
>
> What do you think?

I think that your above modification is fine and make code more
straightforward. Thanks for looking at it!

> Best regards,
> Sergio Paracuellos
>
> [0]: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/tree/drivers/staging/mt7621-pci/pci-mt7621.c?h=v4.18#n663
> [1]: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/commit/drivers/staging/mt7621-pci?h=staging-testing&id=b99cc3a2b6b62cf994acac5cced03298d9908c9b

2021-06-05 05:16:49

by Sergio Paracuellos

[permalink] [raw]
Subject: Re: [PATCH 2/4] MIPS: pci: Add driver for MT7621 PCIe controller

Hi Pali,

On Sat, Jun 5, 2021 at 12:58 AM Pali Rohár <[email protected]> wrote:
>
> On Friday 04 June 2021 13:49:39 Rob Herring wrote:
> > On Fri, Jun 04, 2021 at 06:55:25PM +0200, Pali Rohár wrote:
> > > On Wednesday 02 June 2021 14:43:53 Sergio Paracuellos wrote:
> > > > Hi Pali,
> > > >
> > > > On Wed, Jun 2, 2021 at 2:23 PM Pali Rohár <[email protected]> wrote:
> > > > >
> > > > > On Wednesday 02 June 2021 14:16:26 Sergio Paracuellos wrote:
> > > > > > Hi Pali,
> > > > > >
> > > > > > On Mon, May 31, 2021 at 4:19 PM Sergio Paracuellos
> > > > > > <[email protected]> wrote:
> > > > > > >
> > > > > > > On Mon, May 31, 2021 at 3:50 PM Pali Rohár <[email protected]> wrote:
> > > > > > > >
> > > > > > > > On Monday 31 May 2021 15:39:55 Sergio Paracuellos wrote:
> > > > > > > > > Hi Pali,
> > > > > > > > >
> > > > > > > > > Thanks for your comments.
> > > > > > > > >
> > > > > > > > > On Mon, May 31, 2021 at 3:14 PM Pali Rohár <[email protected]> wrote:
> > > > > > > > > >
> > > > > > > > > > On Saturday 15 May 2021 14:40:53 Sergio Paracuellos wrote:
> > > > > > > > > > > This patch adds a driver for the PCIe controller of MT7621 SoC.
> > > > > > > > > > >
> > > > > > > > > > > Signed-off-by: Sergio Paracuellos <[email protected]>
> > > > > > > > > > > ---
> > > > > > > > > > > arch/mips/pci/Makefile | 1 +
> > > > > > > > > > > arch/mips/pci/pci-mt7621.c | 624 +++++++++++++++++++++++++++++++++++++
> > > > > > > > > > > arch/mips/ralink/Kconfig | 9 +-
> > > > > > > > > > > 3 files changed, 633 insertions(+), 1 deletion(-)
> > > > > > > > > > > create mode 100644 arch/mips/pci/pci-mt7621.c
> > > > > > > > > > >
> > > > > > > > > > > diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile
> > > > > > > > > > > index f3eecc065e5c..178c550739c4 100644
> > > > > > > > > > > --- a/arch/mips/pci/Makefile
> > > > > > > > > > > +++ b/arch/mips/pci/Makefile
> > > > > > > > > > > @@ -24,6 +24,7 @@ obj-$(CONFIG_PCI_AR2315) += pci-ar2315.o
> > > > > > > > > > > obj-$(CONFIG_SOC_AR71XX) += pci-ar71xx.o
> > > > > > > > > > > obj-$(CONFIG_PCI_AR724X) += pci-ar724x.o
> > > > > > > > > > > obj-$(CONFIG_PCI_XTALK_BRIDGE) += pci-xtalk-bridge.o
> > > > > > > > > > > +obj-$(CONFIG_PCI_MT7621) += pci-mt7621.o
> > > > > > > > > > > #
> > > > > > > > > > > # These are still pretty much in the old state, watch, go blind.
> > > > > > > > > > > #
> > > > > > > > > > > diff --git a/arch/mips/pci/pci-mt7621.c b/arch/mips/pci/pci-mt7621.c
> > > > > > > > > > > new file mode 100644
> > > > > > > > > > > index 000000000000..fe1945819d25
> > > > > > > > > > > --- /dev/null
> > > > > > > > > > > +++ b/arch/mips/pci/pci-mt7621.c
> > > > > > > > > > ...
> > > > > > > > > > > +static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> > > > > > > > > > > +{
> > > > > > > > > > > + struct device *dev = pcie->dev;
> > > > > > > > > > > + struct mt7621_pcie_port *port;
> > > > > > > > > > > + u8 num_slots_enabled = 0;
> > > > > > > > > > > + u32 slot;
> > > > > > > > > > > + u32 val;
> > > > > > > > > > > + int err;
> > > > > > > > > > > +
> > > > > > > > > > > + /* Setup MEMWIN and IOWIN */
> > > > > > > > > > > + pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> > > > > > > > > > > + pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
> > > > > > > > > > > +
> > > > > > > > > > > + list_for_each_entry(port, &pcie->ports, list) {
> > > > > > > > > > > + if (port->enabled) {
> > > > > > > > > > > + err = clk_prepare_enable(port->clk);
> > > > > > > > > > > + if (err) {
> > > > > > > > > > > + dev_err(dev, "enabling clk pcie%d\n", slot);
> > > > > > > > > > > + return err;
> > > > > > > > > > > + }
> > > > > > > > > > > +
> > > > > > > > > > > + mt7621_pcie_enable_port(port);
> > > > > > > > > > > + dev_info(dev, "PCIE%d enabled\n", port->slot);
> > > > > > > > > > > + num_slots_enabled++;
> > > > > > > > > > > + }
> > > > > > > > > > > + }
> > > > > > > > > > > +
> > > > > > > > > > > + for (slot = 0; slot < num_slots_enabled; slot++) {
> > > > > > > > > > > + val = read_config(pcie, slot, PCI_COMMAND);
> > > > > > > > > > > + val |= PCI_COMMAND_MASTER;
> > > > > > > > > > > + write_config(pcie, slot, PCI_COMMAND, val);
> > > > > > > > > >
> > > > > > > > > > Hello! Is this part of code correct? Because it looks strange if PCIe
> > > > > > > > > > controller driver automatically enables PCI bus mastering, prior device
> > > > > > > > > > driver initialize itself.
> > > > > > > > > >
> > > > > > > > > > Moreover kernel has already function pci_set_master() for this purpose
> > > > > > > > > > which is used by device drivers.
> > > > > > > > > >
> > > > > > > > > > So I think this code can confuse some device drivers...
> > > > > > > > >
> > > > > > > > > I agree that we have pci_set_master() to be used in pci device driver
> > > > > > > > > code. Original controller driver set this bit for enabled slots. Since
> > > > > > > > > there is no documentation at all for the PCI in this SoC
> > > > > > > >
> > > > > > > > I see... this is really a big problem to do any driver development...
> > > > > > >
> > > > > > > For sure it is :(.
> > > > > > >
> > > > > > > >
> > > > > > > > > I have
> > > > > > > > > maintained the setting in the driver in a cleaner way. See original
> > > > > > > > > driver code and the setting here [0]. There is no other reason than
> > > > > > > > > that. I am ok with removing this from here and testing with my two
> > > > > > > > > devices that everything is still ok if having this setting in the pci
> > > > > > > > > controller driver is a real problem.
> > > > > > > >
> > > > > > > > You can run lspci -nnvv with and without PCI_COMMAND_MASTER code and
> > > > > > > > then compare outputs.
> > > > > > > >
> > > > > > > > Device drivers for sure enable PCI_COMMAND_MASTER at the time when it is
> > > > > > > > needed, so it is possible that there would be no difference in lspci
> > > > > > > > output.
> > > > > > >
> > > > > > > Thanks. I will take this into account when v2 is submitted after more
> > > > > > > review comments come :).
> > > > > >
> > > > > > I have tested to remove this and check lspci -nnvv output with and
> > > > > > without PCI_COMMAND_MASTER code and, as you pointed out, there is no
> > > > > > difference between them. Also, both boards are working without
> > > > > > regressions at all. So I will remove this code for next version.
> > > > >
> > > > > Perfect!
> > > > >
> > > > > > Thanks,
> > > > > > Sergio Paracuellos
> > > > > > >
> > > > > > > >
> > > > > > > > > [0]: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/tree/drivers/staging/mt7621-pci/pci-mt7621.c?h=v4.18#n676
> > > > > > > > >
> > > > > > > > > Best regards,
> > > > > > > > > Sergio Paracuellos
> > > > > > > > > >
> > > > > > > > > > > + /* configure RC FTS number to 250 when it leaves L0s */
> > > > > > > > > > > + val = read_config(pcie, slot, PCIE_FTS_NUM);
> > > > > > > > > > > + val &= ~PCIE_FTS_NUM_MASK;
> > > > > > > > > > > + val |= PCIE_FTS_NUM_L0(0x50);
> > > > > > > > > > > + write_config(pcie, slot, PCIE_FTS_NUM, val);
> > > > >
> > > > > Could you look also what is doing this code (PCIE_FTS_NUM)? It is marked
> > > > > as MT specific register. But from this code for me it looks like that it
> > > > > just access config space of some device and therefore it could be some
> > > > > standard PCIe register. Just with hardcoded calculated offset.
> > >
> > > So based on your lspci output, there is no PCIe capability register at
> > > address PCIE_FTS_NUM (0x70c), right? It seems strange to trying access
> > > capability register outside of capability list.
> >
> > Looks like a DW PCIe port logic register:
> >
> > drivers/pci/controller/dwc/pcie-designware.h-/* Synopsys-specific PCIe configuration registers */
> > drivers/pci/controller/dwc/pcie-designware.h:#define PCIE_PORT_AFR 0x70C
> > drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_N_FTS_MASK GENMASK(15, 8)
> > drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_N_FTS(n) FIELD_PREP(PORT_AFR_N_FTS_MASK, n)
> > drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_CC_N_FTS_MASK GENMASK(23, 16)
> > drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_CC_N_FTS(n) FIELD_PREP(PORT_AFR_CC_N_FTS_MASK, n)
> > drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_ENTER_ASPM BIT(30)
> > drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_L0S_ENTRANCE_LAT_SHIFT 24
> > drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_L0S_ENTRANCE_LAT_MASK GENMASK(26, 24)
> > drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_L1_ENTRANCE_LAT_SHIFT 27
> > drivers/pci/controller/dwc/pcie-designware.h-#define PORT_AFR_L1_ENTRANCE_LAT_MASK GENMASK(29, 27)
> >
> > Rob
>
> Rob: nice catch!
> Does it mean that this MT7621 SoC has dwc controller and driver can be
> theoretically in future rewritten to use common dwc code?
>
> Sergio: I have tried to find some information about it and seems that
> MT7620, MT7621 and MT7628 SoC are really using some designware dwc IP.
> Some details are available in section "Embedded/kernel developer
> friendliness" in following blog post:
> https://www.abclinuxu.cz/blog/GardenOfEdenConfiguration/2019/10/opus-magnum

Thanks. For what see in the datasheet linked there some of the
registers looks pretty similar. It also defines registers taking in
account three root ports but in mt7628 and mt7620 there is only one
available. It seems tons of things are not listed there but it is
better than nothing.

>
> And seems that "programming guide" documentation for MT7620 is available
> on internet with description of PCIe registers. I do not know how MT7620
> and MT7621 are different but maybe it could help to develop or understand
> driver.

Yes, it is available but none of the dwc stuff is inside. Only the
main register as the mt7628 datasheet has.

Best regards,
Sergio Paracuellos

2021-06-05 05:17:46

by Sergio Paracuellos

[permalink] [raw]
Subject: Re: [PATCH 2/4] MIPS: pci: Add driver for MT7621 PCIe controller

Hi Pali,

On Sat, Jun 5, 2021 at 1:07 AM Pali Rohár <[email protected]> wrote:
>
> On Friday 04 June 2021 20:44:42 Sergio Paracuellos wrote:
> > Hi Pali,
> >
> > Thanks for your comments.
> >
> > On Fri, Jun 4, 2021 at 6:55 PM Pali Rohár <[email protected]> wrote:
> > >
> > > On Wednesday 02 June 2021 14:43:53 Sergio Paracuellos wrote:
> > > > Hi Pali,
> > > >
> > > > On Wed, Jun 2, 2021 at 2:23 PM Pali Rohár <[email protected]> wrote:
> > > > >
> > > > > On Wednesday 02 June 2021 14:16:26 Sergio Paracuellos wrote:
> > > > > > Hi Pali,
> > > > > >
> > > > > > On Mon, May 31, 2021 at 4:19 PM Sergio Paracuellos
> > > > > > <[email protected]> wrote:
> > > > > > >
> > > > > > > On Mon, May 31, 2021 at 3:50 PM Pali Rohár <[email protected]> wrote:
> > > > > > > >
> > > > > > > > On Monday 31 May 2021 15:39:55 Sergio Paracuellos wrote:
> > > > > > > > > Hi Pali,
> > > > > > > > >
> > > > > > > > > Thanks for your comments.
> > > > > > > > >
> > > > > > > > > On Mon, May 31, 2021 at 3:14 PM Pali Rohár <[email protected]> wrote:
> > > > > > > > > >
> > > > > > > > > > On Saturday 15 May 2021 14:40:53 Sergio Paracuellos wrote:
> > > > > > > > > > > This patch adds a driver for the PCIe controller of MT7621 SoC.
> > > > > > > > > > >
> > > > > > > > > > > Signed-off-by: Sergio Paracuellos <[email protected]>
> > > > > > > > > > > ---
> > > > > > > > > > > arch/mips/pci/Makefile | 1 +
> > > > > > > > > > > arch/mips/pci/pci-mt7621.c | 624 +++++++++++++++++++++++++++++++++++++
> > > > > > > > > > > arch/mips/ralink/Kconfig | 9 +-
> > > > > > > > > > > 3 files changed, 633 insertions(+), 1 deletion(-)
> > > > > > > > > > > create mode 100644 arch/mips/pci/pci-mt7621.c
> > > > > > > > > > >
> > > > > > > > > > > diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile
> > > > > > > > > > > index f3eecc065e5c..178c550739c4 100644
> > > > > > > > > > > --- a/arch/mips/pci/Makefile
> > > > > > > > > > > +++ b/arch/mips/pci/Makefile
> > > > > > > > > > > @@ -24,6 +24,7 @@ obj-$(CONFIG_PCI_AR2315) += pci-ar2315.o
> > > > > > > > > > > obj-$(CONFIG_SOC_AR71XX) += pci-ar71xx.o
> > > > > > > > > > > obj-$(CONFIG_PCI_AR724X) += pci-ar724x.o
> > > > > > > > > > > obj-$(CONFIG_PCI_XTALK_BRIDGE) += pci-xtalk-bridge.o
> > > > > > > > > > > +obj-$(CONFIG_PCI_MT7621) += pci-mt7621.o
> > > > > > > > > > > #
> > > > > > > > > > > # These are still pretty much in the old state, watch, go blind.
> > > > > > > > > > > #
> > > > > > > > > > > diff --git a/arch/mips/pci/pci-mt7621.c b/arch/mips/pci/pci-mt7621.c
> > > > > > > > > > > new file mode 100644
> > > > > > > > > > > index 000000000000..fe1945819d25
> > > > > > > > > > > --- /dev/null
> > > > > > > > > > > +++ b/arch/mips/pci/pci-mt7621.c
> > > > > > > > > > ...
> > > > > > > > > > > +static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> > > > > > > > > > > +{
> > > > > > > > > > > + struct device *dev = pcie->dev;
> > > > > > > > > > > + struct mt7621_pcie_port *port;
> > > > > > > > > > > + u8 num_slots_enabled = 0;
> > > > > > > > > > > + u32 slot;
> > > > > > > > > > > + u32 val;
> > > > > > > > > > > + int err;
> > > > > > > > > > > +
> > > > > > > > > > > + /* Setup MEMWIN and IOWIN */
> > > > > > > > > > > + pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> > > > > > > > > > > + pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
> > > > > > > > > > > +
> > > > > > > > > > > + list_for_each_entry(port, &pcie->ports, list) {
> > > > > > > > > > > + if (port->enabled) {
> > > > > > > > > > > + err = clk_prepare_enable(port->clk);
> > > > > > > > > > > + if (err) {
> > > > > > > > > > > + dev_err(dev, "enabling clk pcie%d\n", slot);
> > > > > > > > > > > + return err;
> > > > > > > > > > > + }
> > > > > > > > > > > +
> > > > > > > > > > > + mt7621_pcie_enable_port(port);
> > > > > > > > > > > + dev_info(dev, "PCIE%d enabled\n", port->slot);
> > > > > > > > > > > + num_slots_enabled++;
> > > > > > > > > > > + }
> > > > > > > > > > > + }
> > > > > > > > > > > +
> > > > > > > > > > > + for (slot = 0; slot < num_slots_enabled; slot++) {
> > > > > > > > > > > + val = read_config(pcie, slot, PCI_COMMAND);
> > > > > > > > > > > + val |= PCI_COMMAND_MASTER;
> > > > > > > > > > > + write_config(pcie, slot, PCI_COMMAND, val);
> > > > > > > > > >
> > > > > > > > > > Hello! Is this part of code correct? Because it looks strange if PCIe
> > > > > > > > > > controller driver automatically enables PCI bus mastering, prior device
> > > > > > > > > > driver initialize itself.
> > > > > > > > > >
> > > > > > > > > > Moreover kernel has already function pci_set_master() for this purpose
> > > > > > > > > > which is used by device drivers.
> > > > > > > > > >
> > > > > > > > > > So I think this code can confuse some device drivers...
> > > > > > > > >
> > > > > > > > > I agree that we have pci_set_master() to be used in pci device driver
> > > > > > > > > code. Original controller driver set this bit for enabled slots. Since
> > > > > > > > > there is no documentation at all for the PCI in this SoC
> > > > > > > >
> > > > > > > > I see... this is really a big problem to do any driver development...
> > > > > > >
> > > > > > > For sure it is :(.
> > > > > > >
> > > > > > > >
> > > > > > > > > I have
> > > > > > > > > maintained the setting in the driver in a cleaner way. See original
> > > > > > > > > driver code and the setting here [0]. There is no other reason than
> > > > > > > > > that. I am ok with removing this from here and testing with my two
> > > > > > > > > devices that everything is still ok if having this setting in the pci
> > > > > > > > > controller driver is a real problem.
> > > > > > > >
> > > > > > > > You can run lspci -nnvv with and without PCI_COMMAND_MASTER code and
> > > > > > > > then compare outputs.
> > > > > > > >
> > > > > > > > Device drivers for sure enable PCI_COMMAND_MASTER at the time when it is
> > > > > > > > needed, so it is possible that there would be no difference in lspci
> > > > > > > > output.
> > > > > > >
> > > > > > > Thanks. I will take this into account when v2 is submitted after more
> > > > > > > review comments come :).
> > > > > >
> > > > > > I have tested to remove this and check lspci -nnvv output with and
> > > > > > without PCI_COMMAND_MASTER code and, as you pointed out, there is no
> > > > > > difference between them. Also, both boards are working without
> > > > > > regressions at all. So I will remove this code for next version.
> > > > >
> > > > > Perfect!
> > > > >
> > > > > > Thanks,
> > > > > > Sergio Paracuellos
> > > > > > >
> > > > > > > >
> > > > > > > > > [0]: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/tree/drivers/staging/mt7621-pci/pci-mt7621.c?h=v4.18#n676
> > > > > > > > >
> > > > > > > > > Best regards,
> > > > > > > > > Sergio Paracuellos
> > > > > > > > > >
> > > > > > > > > > > + /* configure RC FTS number to 250 when it leaves L0s */
> > > > > > > > > > > + val = read_config(pcie, slot, PCIE_FTS_NUM);
> > > > > > > > > > > + val &= ~PCIE_FTS_NUM_MASK;
> > > > > > > > > > > + val |= PCIE_FTS_NUM_L0(0x50);
> > > > > > > > > > > + write_config(pcie, slot, PCIE_FTS_NUM, val);
> > > > >
> > > > > Could you look also what is doing this code (PCIE_FTS_NUM)? It is marked
> > > > > as MT specific register. But from this code for me it looks like that it
> > > > > just access config space of some device and therefore it could be some
> > > > > standard PCIe register. Just with hardcoded calculated offset.
> > >
> > > So based on your lspci output, there is no PCIe capability register at
> > > address PCIE_FTS_NUM (0x70c), right? It seems strange to trying access
> > > capability register outside of capability list.
> >
> > This setting is also in the original driver code from mediatek SDK. See [0].
> > Anyway, I have tried to remove this code and test what happens with my
> > two boards and both of them seem to
> > work properly just by deleting this code.
>
> Looks like that this code is some designware stuff which seems to be
> needed. So it would be better to let it here as is.

Ok, will do.

>
> > > > > Could you provide output from lspci -nnvv? So other people could look at
> > > > > it and maybe we decode what is this code doing and if it is needed.
> > > >
> > > > # lspci -nnvv
> > > > 00:02.0 PCI bridge [0604]: Device [0e8d:0801] (rev 01) (prog-if 00
> > > > [Normal decode])
> > >
> > > Hm... Device address is 02. But in your code is:
> > >
> > > u8 num_slots_enabled = 0;
> > > ...
> > > list_for_each_entry(port, &pcie->ports, list) {
> > > if (port->enabled) {
> > > ...
> > > num_slots_enabled++;
> > > ...
> > > }
> > > }
> > > ...
> > > for (slot = 0; slot < num_slots_enabled; slot++) {
> > > val = read_config(pcie, slot, ...);
> > > ...
> > > write_config(pcie, slot, ...);
> > > }
> > >
> > > Which means that this code writes to config space of wrong device 0
> > > (instead of 2)! In function write_config() can be seen that second
> > > parameter specify device of BDF address for bus=0 and function=0.
> >
> > Bridge enumeration depends on a virtual bridge register configuration.
> > But at the end devices connected to the bridge
> > are enumerated as 01:00.0, 02:00.0 and 03:00.0. So in this case the
> > phy used is the one for "pcie2" (00:02.0) and the device connected to
> > it
> > is 01:00.0. For example a board using all the virtual bridges will get
> > an output similar to:
> >
> > [ 16.487166] mt7621-pci 1e140000.pcie: host bridge /pcie@1e140000 ranges:
> > [ 16.500627] mt7621-pci 1e140000.pcie: No bus range found for
> > /pcie@1e140000, using [bus 00-ff]
> > [ 16.518212] mt7621-pci 1e140000.pcie: MEM
> > 0x0060000000..0x006fffffff -> 0x0000000000
> > [ 16.534531] mt7621-pci 1e140000.pcie: IO
> > 0x001e160000..0x001e16ffff -> 0x0000000000
> > [ 16.786498] mt7621-pci 1e140000.pcie: PCIE0 enabled
> > [ 16.796220] mt7621-pci 1e140000.pcie: PCIE1 enabled
> > [ 16.805943] mt7621-pci 1e140000.pcie: PCIE2 enabled
> > [ 16.815664] mt7621-pci 1e140000.pcie: PCI coherence region base:
> > 0x60000000, mask/settings: 0xf0000002
> > [ 16.834398] mt7621-pci 1e140000.pcie: PCI host bridge to bus 0000:00
> > [ 16.847098] pci_bus 0000:00: root bus resource [io 0x1e160000-0x1e16ffff]
> > [ 16.860806] pci_bus 0000:00: root bus resource [mem 0x60000000-0x6fffffff]
> > [ 16.874504] pci_bus 0000:00: root bus resource [bus 00-ff]
> > [ 16.885441] pci_bus 0000:00: root bus resource [mem
> > 0x60000000-0x6fffffff] (bus address [0x00000000-0x0fffffff])
> > [ 16.905773] pci 0000:00:00.0: [0e8d:0801] type 01 class 0x060400
> > [ 16.917772] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x7fffffff]
> > [ 16.930260] pci 0000:00:00.0: reg 0x14: initial BAR value 0x00000000 invalid
> > [ 16.944304] pci 0000:00:00.0: reg 0x14: [mem size 0x00010000]
> > [ 16.955841] pci 0000:00:00.0: supports D1
> > [ 16.963837] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
> > [ 16.975747] pci 0000:00:01.0: [0e8d:0801] type 01 class 0x060400
> > [ 16.987772] pci 0000:00:01.0: reg 0x10: [mem 0x00000000-0x7fffffff]
> > [ 17.000273] pci 0000:00:01.0: reg 0x14: initial BAR value 0x00000000 invalid
> > [ 17.014311] pci 0000:00:01.0: reg 0x14: [mem size 0x00010000]
> > [ 17.025838] pci 0000:00:01.0: supports D1
> > [ 17.033828] pci 0000:00:01.0: PME# supported from D0 D1 D3hot
> > [ 17.045699] pci 0000:00:02.0: [0e8d:0801] type 01 class 0x060400
> > [ 17.057726] pci 0000:00:02.0: reg 0x10: [mem 0x00000000-0x7fffffff]
> > [ 17.070218] pci 0000:00:02.0: reg 0x14: initial BAR value 0x00000000 invalid
> > [ 17.084260] pci 0000:00:02.0: reg 0x14: [mem size 0x00010000]
> > [ 17.095788] pci 0000:00:02.0: supports D1
> > [ 17.103785] pci 0000:00:02.0: PME# supported from D0 D1 D3hot
> > [ 17.116598] pci 0000:00:00.0: bridge configuration invalid ([bus
> > 00-00]), reconfiguring
> > [ 17.132566] pci 0000:00:01.0: bridge configuration invalid ([bus
> > 00-00]), reconfiguring
> > [ 17.148514] pci 0000:00:02.0: bridge configuration invalid ([bus
> > 00-00]), reconfiguring
> > [ 17.164739] pci 0000:01:00.0: [1b21:0611] type 00 class 0x010185
> > [ 17.176775] pci 0000:01:00.0: reg 0x10: [io 0x0000-0x0007]
> > [ 17.187892] pci 0000:01:00.0: reg 0x14: [io 0x0000-0x0003]
> > [ 17.199009] pci 0000:01:00.0: reg 0x18: [io 0x0000-0x0007]
> > [ 17.210130] pci 0000:01:00.0: reg 0x1c: [io 0x0000-0x0003]
> > [ 17.221246] pci 0000:01:00.0: reg 0x20: [io 0x0000-0x000f]
> > [ 17.232357] pci 0000:01:00.0: reg 0x24: initial BAR value 0x00000000 invalid
> > [ 17.246411] pci 0000:01:00.0: reg 0x24: [mem size 0x00000200]
> > [ 17.258031] pci 0000:01:00.0: 2.000 Gb/s available PCIe bandwidth,
> > limited by 2.5 GT/s PCIe x1 link at 0000:00:00.0 (capable of 4.000
> > Gb/s with 5.0 GT/s PCIe x1 link)
> > [ 17.317563] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
> > [ 17.328033] pci 0000:00:00.0: bridge window [io 0x0000-0x0fff]
> > [ 17.340179] pci 0000:00:00.0: bridge window [mem 0x60000000-0x600fffff]
> > [ 17.353703] pci 0000:00:00.0: bridge window [mem
> > 0x60000000-0x600fffff pref]
> > [ 17.368097] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
> > [ 17.381550] pci 0000:02:00.0: [1b21:0611] type 00 class 0x010185
> > [ 17.393573] pci 0000:02:00.0: reg 0x10: [io 0x0000-0x0007]
> > [ 17.404694] pci 0000:02:00.0: reg 0x14: [io 0x0000-0x0003]
> > [ 17.415804] pci 0000:02:00.0: reg 0x18: [io 0x0000-0x0007]
> > [ 17.426916] pci 0000:02:00.0: reg 0x1c: [io 0x0000-0x0003]
> > [ 17.438040] pci 0000:02:00.0: reg 0x20: [io 0x0000-0x000f]
> > [ 17.449148] pci 0000:02:00.0: reg 0x24: initial BAR value 0x00000000 invalid
> > [ 17.463193] pci 0000:02:00.0: reg 0x24: [mem size 0x00000200]
> > [ 17.474803] pci 0000:02:00.0: 2.000 Gb/s available PCIe bandwidth,
> > limited by 2.5 GT/s PCIe x1 link at 0000:00:01.0 (capable of 4.000
> > Gb/s with 5.0 GT/s PCIe x1 link)
> > [ 17.527554] pci 0000:00:01.0: PCI bridge to [bus 02-ff]
> > [ 17.538014] pci 0000:00:01.0: bridge window [io 0x0000-0x0fff]
> > [ 17.550159] pci 0000:00:01.0: bridge window [mem 0x60000000-0x600fffff]
> > [ 17.563682] pci 0000:00:01.0: bridge window [mem
> > 0x60000000-0x600fffff pref]
> > [ 17.578078] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02
> > [ 17.591529] pci 0000:03:00.0: [1b21:0611] type 00 class 0x010185
> > [ 17.603545] pci 0000:03:00.0: reg 0x10: [io 0x0000-0x0007]
> > [ 17.614665] pci 0000:03:00.0: reg 0x14: [io 0x0000-0x0003]
> > [ 17.625775] pci 0000:03:00.0: reg 0x18: [io 0x0000-0x0007]
> > [ 17.636887] pci 0000:03:00.0: reg 0x1c: [io 0x0000-0x0003]
> > [ 17.648009] pci 0000:03:00.0: reg 0x20: [io 0x0000-0x000f]
> > [ 17.659119] pci 0000:03:00.0: reg 0x24: initial BAR value 0x00000000 invalid
> > [ 17.673162] pci 0000:03:00.0: reg 0x24: [mem size 0x00000200]
> > [ 17.684777] pci 0000:03:00.0: 2.000 Gb/s available PCIe bandwidth,
> > limited by 2.5 GT/s PCIe x1 link at 0000:00:02.0 (capable of 4.000
> > Gb/s with 5.0 GT/s PCIe x1 link)
> > [ 17.737561] pci 0000:00:02.0: PCI bridge to [bus 03-ff]
> > [ 17.748022] pci 0000:00:02.0: bridge window [io 0x0000-0x0fff]
> > [ 17.760167] pci 0000:00:02.0: bridge window [mem 0x60000000-0x600fffff]
> > [ 17.773690] pci 0000:00:02.0: bridge window [mem
> > 0x60000000-0x600fffff pref]
> > [ 17.788085] pci_bus 0000:03: busn_res: [bus 03-ff] end is updated to 03
> > [ 17.801341] pci 0000:00:00.0: BAR 0: no space for [mem size 0x80000000]
> > [ 17.814518] pci 0000:00:00.0: BAR 0: failed to assign [mem size 0x80000000]
> > [ 17.828392] pci 0000:00:01.0: BAR 0: no space for [mem size 0x80000000]
> > [ 17.841571] pci 0000:00:01.0: BAR 0: failed to assign [mem size 0x80000000]
> > [ 17.855443] pci 0000:00:02.0: BAR 0: no space for [mem size 0x80000000]
> > [ 17.868626] pci 0000:00:02.0: BAR 0: failed to assign [mem size 0x80000000]
> > [ 17.882502] pci 0000:00:00.0: BAR 8: assigned [mem 0x60000000-0x600fffff]
> > [ 17.896028] pci 0000:00:00.0: BAR 9: assigned [mem
> > 0x60100000-0x601fffff pref]
> > [ 17.910419] pci 0000:00:01.0: BAR 8: assigned [mem 0x60200000-0x602fffff]
> > [ 17.923951] pci 0000:00:01.0: BAR 9: assigned [mem
> > 0x60300000-0x603fffff pref]
> > [ 17.938353] pci 0000:00:02.0: BAR 8: assigned [mem 0x60400000-0x604fffff]
> > [ 17.951879] pci 0000:00:02.0: BAR 9: assigned [mem
> > 0x60500000-0x605fffff pref]
> > [ 17.966273] pci 0000:00:00.0: BAR 1: assigned [mem 0x60600000-0x6060ffff]
> > [ 17.979809] pci 0000:00:01.0: BAR 1: assigned [mem 0x60610000-0x6061ffff]
> > [ 17.993341] pci 0000:00:02.0: BAR 1: assigned [mem 0x60620000-0x6062ffff]
> > [ 18.006877] pci 0000:00:00.0: BAR 7: assigned [io 0x1e160000-0x1e160fff]
> > [ 18.020408] pci 0000:00:01.0: BAR 7: assigned [io 0x1e161000-0x1e161fff]
> > [ 18.033932] pci 0000:00:02.0: BAR 7: assigned [io 0x1e162000-0x1e162fff]
> > [ 18.047472] pci 0000:01:00.0: BAR 5: assigned [mem 0x60000000-0x600001ff]
> > [ 18.061005] pci 0000:01:00.0: BAR 4: assigned [io 0x1e160000-0x1e16000f]
> > [ 18.074540] pci 0000:01:00.0: BAR 0: assigned [io 0x1e160010-0x1e160017]
> > [ 18.088070] pci 0000:01:00.0: BAR 2: assigned [io 0x1e160018-0x1e16001f]
> > [ 18.101606] pci 0000:01:00.0: BAR 1: assigned [io 0x1e160020-0x1e160023]
> > [ 18.115139] pci 0000:01:00.0: BAR 3: assigned [io 0x1e160024-0x1e160027]
> > [ 18.128676] pci 0000:00:00.0: PCI bridge to [bus 01]
> > [ 18.138577] pci 0000:00:00.0: bridge window [io 0x1e160000-0x1e160fff]
> > [ 18.152100] pci 0000:00:00.0: bridge window [mem 0x60000000-0x600fffff]
> > [ 18.165627] pci 0000:00:00.0: bridge window [mem
> > 0x60100000-0x601fffff pref]
> > [ 18.180030] pci 0000:02:00.0: BAR 5: assigned [mem 0x60200000-0x602001ff]
> > [ 18.193566] pci 0000:02:00.0: BAR 4: assigned [io 0x1e161000-0x1e16100f]
> > [ 18.207110] pci 0000:02:00.0: BAR 0: assigned [io 0x1e161010-0x1e161017]
> > [ 18.220648] pci 0000:02:00.0: BAR 2: assigned [io 0x1e161018-0x1e16101f]
> > [ 18.234183] pci 0000:02:00.0: BAR 1: assigned [io 0x1e161020-0x1e161023]
> > [ 18.247723] pci 0000:02:00.0: BAR 3: assigned [io 0x1e161024-0x1e161027]
> > [ 18.261257] pci 0000:00:01.0: PCI bridge to [bus 02]
> > [ 18.271165] pci 0000:00:01.0: bridge window [io 0x1e161000-0x1e161fff]
> > [ 18.284695] pci 0000:00:01.0: bridge window [mem 0x60200000-0x602fffff]
> > [ 18.298225] pci 0000:00:01.0: bridge window [mem
> > 0x60300000-0x603fffff pref]
> > [ 18.312630] pci 0000:03:00.0: BAR 5: assigned [mem 0x60400000-0x604001ff]
> > [ 18.326166] pci 0000:03:00.0: BAR 4: assigned [io 0x1e162000-0x1e16200f]
> > [ 18.339702] pci 0000:03:00.0: BAR 0: assigned [io 0x1e162010-0x1e162017]
> > [ 18.353237] pci 0000:03:00.0: BAR 2: assigned [io 0x1e162018-0x1e16201f]
> > [ 18.366775] pci 0000:03:00.0: BAR 1: assigned [io 0x1e162020-0x1e162023]
> > [ 18.380311] pci 0000:03:00.0: BAR 3: assigned [io 0x1e162024-0x1e162027]
> > [ 18.393841] pci 0000:00:02.0: PCI bridge to [bus 03]
> > [ 18.403740] pci 0000:00:02.0: bridge window [io 0x1e162000-0x1e162fff]
> > [ 18.417270] pci 0000:00:02.0: bridge window [mem 0x60400000-0x604fffff]
> > [ 18.430801] pci 0000:00:02.0: bridge window [mem
> > 0x60500000-0x605fffff pref]
> > [ 18.445529] ahci 0000:01:00.0: version 3.0
> > [ 18.445559] pci 0000:00:00.0: enabling device (0000 -> 0003)
> > [ 18.456853] ahci 0000:01:00.0: enabling device (0000 -> 0003)
> > [ 18.468455] ahci 0000:01:00.0: SSS flag set, parallel bus scan disabled
> > [ 18.481700] ahci 0000:01:00.0: AHCI 0001.0200 32 slots 2 ports 6
> > Gbps 0x3 impl IDE mode
> > [ 18.497662] ahci 0000:01:00.0: flags: 64bit ncq sntf stag led clo
> > pmp pio slum part ccc sxs
> > [ 18.516777] scsi host0: ahci
> > [ 18.523629] scsi host1: ahci
> > [ 18.529829] ata1: SATA max UDMA/133 abar m512@0x60000000 port
> > 0x60000100 irq 22
> > [ 18.544447] ata2: SATA max UDMA/133 abar m512@0x60000000 port
> > 0x60000180 irq 22
> > [ 18.559465] pci 0000:00:01.0: enabling device (0000 -> 0003)
> > [ 18.570786] ahci 0000:02:00.0: enabling device (0000 -> 0003)
> > [ 18.582414] ahci 0000:02:00.0: SSS flag set, parallel bus scan disabled
> > [ 18.595665] ahci 0000:02:00.0: AHCI 0001.0200 32 slots 2 ports 6
> > Gbps 0x3 impl IDE mode
> > [ 18.611614] ahci 0000:02:00.0: flags: 64bit ncq sntf stag led clo
> > pmp pio slum part ccc sxs
> > [ 18.631053] scsi host2: ahci
> > [ 18.637983] scsi host3: ahci
> > [ 18.644138] ata3: SATA max UDMA/133 abar m512@0x60200000 port
> > 0x60200100 irq 23
> > [ 18.658792] ata4: SATA max UDMA/133 abar m512@0x60200000 port
> > 0x60200180 irq 23
> > [ 18.673827] pci 0000:00:02.0: enabling device (0000 -> 0003)
> > [ 18.685151] ahci 0000:03:00.0: enabling device (0000 -> 0003)
> > [ 18.696782] ahci 0000:03:00.0: SSS flag set, parallel bus scan disabled
> > [ 18.710025] ahci 0000:03:00.0: AHCI 0001.0200 32 slots 2 ports 6
> > Gbps 0x3 impl IDE mode
> > [ 18.725972] ahci 0000:03:00.0: flags: 64bit ncq sntf stag led clo
> > pmp pio slum part ccc sxs
> >
> > And you are totally right, the setting is writing in the wrong place.
> > I changed the device tree and the way interrupts are mapped
> > to avoid using a custom 'map_irq' function [1]. Before that commit the
> > pci virtual bridge register was reordering the
> > buses enumeration depending on link status, so there I should also
> > properly rewrite the code in question.
> >
> > I can rewrite the code to read and write config properly using the
> > slot moving the code into 'mt7621_pcie_enable_port' as follows:
> >
> > static void mt7621_pcie_enable_port(struct mt7621_pcie_port *port)
> > {
> > struct mt7621_pcie *pcie = port->pcie;
> > u32 slot = port->slot;
> > u32 offset = MT7621_PCIE_OFFSET + (slot * MT7621_NEXT_PORT);
> > u32 val;
> >
> > /* enable pcie interrupt */
> > val = pcie_read(pcie, RALINK_PCI_PCIMSK_ADDR);
> > val |= PCIE_PORT_INT_EN(slot);
> >
> > /* map 2G DDR region */
> > pcie_write(pcie, PCIE_BAR_MAP_MAX | PCIE_BAR_ENABLE,
> > offset + RALINK_PCI_BAR0SETUP_ADDR);
> >
> > /* configure class code and revision ID */
> > pcie_write(pcie, PCIE_CLASS_CODE | PCIE_REVISION_ID,
> > offset + RALINK_PCI_CLASS);
> >
> > /* configure RC FTS number to 250 when it leaves L0s */
> > val = read_config(pcie, slot, PCIE_FTS_NUM);
> > val &= ~PCIE_FTS_NUM_MASK;
> > val |= PCIE_FTS_NUM_L0(0x50);
> > write_config(pcie, slot, PCIE_FTS_NUM, val);
> > }
> >
> > static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> > {
> > struct device *dev = pcie->dev;
> > struct mt7621_pcie_port *port;
> > int err;
> >
> > /* Setup MEMWIN and IOWIN */
> > pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> > pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
> >
> > list_for_each_entry(port, &pcie->ports, list) {
> > if (port->enabled) {
> > err = clk_prepare_enable(port->clk);
> > if (err) {
> > dev_err(dev, "enabling clk pcie%d\n",
> > port->slot);
> > return err;
> > }
> >
> > mt7621_pcie_enable_port(port);
> > dev_info(dev, "PCIE%d enabled\n", port->slot);
> > }
> > }
> >
> > return 0;
> > }
> >
> > Or just delete the setting and the read and write config functions
> > since they are not being used in any other place. My two boards work
> > without this setting but I don't know about other boards.
> >
> > What do you think?
>
> I think that your above modification is fine and make code more
> straightforward. Thanks for looking at it!

Ok I will change this in this way, then.

Thanks for your comments and help.

Best regards,
Sergio Paracuellos

>
> > Best regards,
> > Sergio Paracuellos
> >
> > [0]: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/tree/drivers/staging/mt7621-pci/pci-mt7621.c?h=v4.18#n663
> > [1]: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git/commit/drivers/staging/mt7621-pci?h=staging-testing&id=b99cc3a2b6b62cf994acac5cced03298d9908c9b

2021-06-07 06:47:47

by Sergio Paracuellos

[permalink] [raw]
Subject: Re: [PATCH 2/4] MIPS: pci: Add driver for MT7621 PCIe controller

Hi Rob,

On Sat, Jun 5, 2021 at 12:25 AM Sergio Paracuellos
<[email protected]> wrote:
>
> Hi Rob,
>
> Thanks for the review.
>
> On Fri, Jun 4, 2021 at 9:30 PM Rob Herring <[email protected]> wrote:
> >
> > On Sat, May 15, 2021 at 02:40:53PM +0200, Sergio Paracuellos wrote:
> > > This patch adds a driver for the PCIe controller of MT7621 SoC.
> > >
> > > Signed-off-by: Sergio Paracuellos <[email protected]>
> > > ---
> > > arch/mips/pci/Makefile | 1 +
> > > arch/mips/pci/pci-mt7621.c | 624 +++++++++++++++++++++++++++++++++++++
> > > arch/mips/ralink/Kconfig | 9 +-
> > > 3 files changed, 633 insertions(+), 1 deletion(-)
> > > create mode 100644 arch/mips/pci/pci-mt7621.c
> > >
> > > diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile
> > > index f3eecc065e5c..178c550739c4 100644
> > > --- a/arch/mips/pci/Makefile
> > > +++ b/arch/mips/pci/Makefile
> > > @@ -24,6 +24,7 @@ obj-$(CONFIG_PCI_AR2315) += pci-ar2315.o
> > > obj-$(CONFIG_SOC_AR71XX) += pci-ar71xx.o
> > > obj-$(CONFIG_PCI_AR724X) += pci-ar724x.o
> > > obj-$(CONFIG_PCI_XTALK_BRIDGE) += pci-xtalk-bridge.o
> > > +obj-$(CONFIG_PCI_MT7621) += pci-mt7621.o
> > > #
> > > # These are still pretty much in the old state, watch, go blind.
> > > #
> > > diff --git a/arch/mips/pci/pci-mt7621.c b/arch/mips/pci/pci-mt7621.c
> > > new file mode 100644
> > > index 000000000000..fe1945819d25
> > > --- /dev/null
> > > +++ b/arch/mips/pci/pci-mt7621.c
> > > @@ -0,0 +1,624 @@
> > > +// SPDX-License-Identifier: GPL-2.0+
> > > +/*
> > > + * BRIEF MODULE DESCRIPTION
> > > + * PCI init for Ralink RT2880 solution
> > > + *
> > > + * Copyright 2007 Ralink Inc. ([email protected])
> > > + *
> > > + * May 2007 Bruce Chang
> > > + * Initial Release
> > > + *
> > > + * May 2009 Bruce Chang
> > > + * support RT2880/RT3883 PCIe
> > > + *
> > > + * May 2011 Bruce Chang
> > > + * support RT6855/MT7620 PCIe
> > > + */
> > > +
> > > +#include <linux/bitops.h>
> > > +#include <linux/clk.h>
> > > +#include <linux/delay.h>
> > > +#include <linux/gpio/consumer.h>
> > > +#include <linux/module.h>
> > > +#include <linux/of.h>
> > > +#include <linux/of_address.h>
> > > +#include <linux/of_pci.h>
> > > +#include <linux/of_platform.h>
> > > +#include <linux/pci.h>
> > > +#include <linux/phy/phy.h>
> > > +#include <linux/platform_device.h>
> > > +#include <linux/reset.h>
> > > +#include <linux/sys_soc.h>
> > > +
> > > +/* MediaTek specific configuration registers */
> > > +#define PCIE_FTS_NUM 0x70c
> > > +#define PCIE_FTS_NUM_MASK GENMASK(15, 8)
> > > +#define PCIE_FTS_NUM_L0(x) (((x) & 0xff) << 8)
> > > +
> > > +/* Host-PCI bridge registers */
> > > +#define RALINK_PCI_PCICFG_ADDR 0x0000
> > > +#define RALINK_PCI_PCIMSK_ADDR 0x000C
> > > +#define RALINK_PCI_CONFIG_ADDR 0x0020
> > > +#define RALINK_PCI_CONFIG_DATA 0x0024
> > > +#define RALINK_PCI_MEMBASE 0x0028
> > > +#define RALINK_PCI_IOBASE 0x002C
> > > +
> > > +/* PCIe RC control registers */
> > > +#define MT7621_PCIE_OFFSET 0x2000
> > > +#define MT7621_NEXT_PORT 0x1000
> > > +
> > > +#define RALINK_PCI_BAR0SETUP_ADDR 0x0010
> >
> > Standard BAR0 register?
>
> Ok, I will remove this and use 'PCI_BASE_ADDRESS_0' instead.
>
> >
> > > +#define RALINK_PCI_ID 0x0030
> > > +#define RALINK_PCI_CLASS 0x0034
> > > +#define RALINK_PCI_SUBID 0x0038
> > > +#define RALINK_PCI_STATUS 0x0050
> > > +
> > > +/* Some definition values */
> > > +#define PCIE_REVISION_ID BIT(0)
> > > +#define PCIE_CLASS_CODE (0x60400 << 8)
> > > +#define PCIE_BAR_MAP_MAX GENMASK(30, 16)
> > > +#define PCIE_BAR_ENABLE BIT(0)
> > > +#define PCIE_PORT_INT_EN(x) BIT(20 + (x))
> > > +#define PCIE_PORT_LINKUP BIT(0)
> > > +
> > > +#define PERST_DELAY_MS 100
> > > +
> > > +/**
> > > + * struct mt7621_pcie_port - PCIe port information
> > > + * @base: I/O mapped register base
> > > + * @list: port list
> > > + * @pcie: pointer to PCIe host info
> > > + * @clk: pointer to the port clock gate
> > > + * @phy: pointer to PHY control block
> > > + * @pcie_rst: pointer to port reset control
> > > + * @gpio_rst: gpio reset
> > > + * @slot: port slot
> > > + * @enabled: indicates if port is enabled
> > > + */
> > > +struct mt7621_pcie_port {
> > > + void __iomem *base;
> > > + struct list_head list;
> > > + struct mt7621_pcie *pcie;
> > > + struct clk *clk;
> > > + struct phy *phy;
> > > + struct reset_control *pcie_rst;
> > > + struct gpio_desc *gpio_rst;
> > > + u32 slot;
> > > + bool enabled;
> > > +};
> > > +
> > > +/**
> > > + * struct mt7621_pcie - PCIe host information
> > > + * @base: IO Mapped Register Base
> > > + * @io: IO resource
> > > + * @mem: pointer to non-prefetchable memory resource
> > > + * @dev: Pointer to PCIe device
> > > + * @io_map_base: virtual memory base address for io
> > > + * @ports: pointer to PCIe port information
> > > + * @resets_inverted: depends on chip revision
> > > + * reset lines are inverted.
> > > + */
> > > +struct mt7621_pcie {
> > > + void __iomem *base;
> > > + struct device *dev;
> >
> > > + struct resource io;
> > > + struct resource *mem;
> > > + unsigned long io_map_base;
> >
> > These are all stored in the host bridge struct, no need for you to store
> > them.
>
> IO resources must be requested and mapped manually (see my explanation
> below) and I use mem resource to also setup mips iocu regions, that is
> why I am storing it also here.
>
> >
> > > + struct list_head ports;
> >
> > A list is kind of an overkill for 3 entries and you know how many ports.
> > Just embed an array of struct mt7621_pcie_port. Then you only need 1
> > alloc.
>
> Since ports are at most three but can be one or two also depending on
> the board I ended up using a list instead of a fixed array of three
> ports. This list is dynamically updated depending on link status. If
> some of the ports are not present in the board nodes initially stored
> after device tree parsing are deleted for the list. If it is not a big
> problem I prefer to maintain this list as it is.
>
> >
> > > + bool resets_inverted;
> > > +};
> > > +
> > > +static inline u32 pcie_read(struct mt7621_pcie *pcie, u32 reg)
> > > +{
> > > + return readl(pcie->base + reg);
> >
> > Can use _relaxed variants here and through out.
>
> Ok will change into _relaxed variants if is preferred.
>
> >
> > > +}
> > > +
> > > +static inline void pcie_write(struct mt7621_pcie *pcie, u32 val, u32 reg)
> > > +{
> > > + writel(val, pcie->base + reg);
> > > +}
> > > +
> > > +static inline void pcie_rmw(struct mt7621_pcie *pcie, u32 reg, u32 clr, u32 set)
> > > +{
> > > + u32 val = readl(pcie->base + reg);
> > > +
> > > + val &= ~clr;
> > > + val |= set;
> > > + writel(val, pcie->base + reg);
> > > +}
> > > +
> > > +static inline u32 pcie_port_read(struct mt7621_pcie_port *port, u32 reg)
> > > +{
> > > + return readl(port->base + reg);
> > > +}
> > > +
> > > +static inline void pcie_port_write(struct mt7621_pcie_port *port,
> > > + u32 val, u32 reg)
> > > +{
> > > + writel(val, port->base + reg);
> > > +}
> > > +
> > > +static inline u32 mt7621_pci_get_cfgaddr(unsigned int bus, unsigned int slot,
> > > + unsigned int func, unsigned int where)
> > > +{
> > > + return (((where & 0xF00) >> 8) << 24) | (bus << 16) | (slot << 11) |
> > > + (func << 8) | (where & 0xfc) | 0x80000000;
> > > +}
> > > +
> > > +static void __iomem *mt7621_pcie_map_bus(struct pci_bus *bus,
> > > + unsigned int devfn, int where)
> > > +{
> > > + struct mt7621_pcie *pcie = bus->sysdata;
> > > + u32 address = mt7621_pci_get_cfgaddr(bus->number, PCI_SLOT(devfn),
> > > + PCI_FUNC(devfn), where);
> > > +
> > > + writel(address, pcie->base + RALINK_PCI_CONFIG_ADDR);
> > > +
> > > + return pcie->base + RALINK_PCI_CONFIG_DATA + (where & 3);
> > > +}
> > > +
> > > +struct pci_ops mt7621_pci_ops = {
> > > + .map_bus = mt7621_pcie_map_bus,
> > > + .read = pci_generic_config_read,
> > > + .write = pci_generic_config_write,
> > > +};
> > > +
> > > +static u32 read_config(struct mt7621_pcie *pcie, unsigned int dev, u32 reg)
> > > +{
> > > + u32 address = mt7621_pci_get_cfgaddr(0, dev, 0, reg);
> > > +
> > > + pcie_write(pcie, address, RALINK_PCI_CONFIG_ADDR);
> > > + return pcie_read(pcie, RALINK_PCI_CONFIG_DATA);
> > > +}
> > > +
> > > +static void write_config(struct mt7621_pcie *pcie, unsigned int dev,
> > > + u32 reg, u32 val)
> > > +{
> > > + u32 address = mt7621_pci_get_cfgaddr(0, dev, 0, reg);
> > > +
> > > + pcie_write(pcie, address, RALINK_PCI_CONFIG_ADDR);
> > > + pcie_write(pcie, val, RALINK_PCI_CONFIG_DATA);
> > > +}
> > > +
> > > +static inline void mt7621_rst_gpio_pcie_assert(struct mt7621_pcie_port *port)
> > > +{
> > > + if (port->gpio_rst)
> >
> > Don't need the if. gpiod_set_value should work with NULL.
>
> Gpio resets can be optional. Some boards use one gpio reset pin for
> each port but others only one for all of them. So if no reset is not
> requested for a port I don't want to do anything. Hence, the check.
>
> >
> > > + gpiod_set_value(port->gpio_rst, 1);
> > > +}
> > > +
> > > +static inline void mt7621_rst_gpio_pcie_deassert(struct mt7621_pcie_port *port)
> > > +{
> > > + if (port->gpio_rst)
> > > + gpiod_set_value(port->gpio_rst, 0);
> > > +}
> > > +
> > > +static inline bool mt7621_pcie_port_is_linkup(struct mt7621_pcie_port *port)
> > > +{
> > > + return (pcie_port_read(port, RALINK_PCI_STATUS) & PCIE_PORT_LINKUP) != 0;
> > > +}
> > > +
> > > +static inline void mt7621_control_assert(struct mt7621_pcie_port *port)
> > > +{
> > > + struct mt7621_pcie *pcie = port->pcie;
> > > +
> > > + if (pcie->resets_inverted)
> > > + reset_control_assert(port->pcie_rst);
> > > + else
> > > + reset_control_deassert(port->pcie_rst);
> > > +}
> > > +
> > > +static inline void mt7621_control_deassert(struct mt7621_pcie_port *port)
> > > +{
> > > + struct mt7621_pcie *pcie = port->pcie;
> > > +
> > > + if (pcie->resets_inverted)
> > > + reset_control_deassert(port->pcie_rst);
> > > + else
> > > + reset_control_assert(port->pcie_rst);
> > > +}
> > > +
> > > +static void setup_cm_memory_region(struct mt7621_pcie *pcie)
> > > +{
> > > + struct resource *mem_resource = pcie->mem;
> > > + struct device *dev = pcie->dev;
> > > + resource_size_t mask;
> > > +
> > > + if (mips_cps_numiocu(0)) {
> > > + /*
> > > + * FIXME: hardware doesn't accept mask values with 1s after
> > > + * 0s (e.g. 0xffef), so it would be great to warn if that's
> > > + * about to happen
> > > + */
> > > + mask = ~(mem_resource->end - mem_resource->start);
> > > +
> > > + write_gcr_reg1_base(mem_resource->start);
> > > + write_gcr_reg1_mask(mask | CM_GCR_REGn_MASK_CMTGT_IOCU0);
> > > + dev_info(dev, "PCI coherence region base: 0x%08llx, mask/settings: 0x%08llx\n",
> > > + (unsigned long long)read_gcr_reg1_base(),
> > > + (unsigned long long)read_gcr_reg1_mask());
> > > + }
> > > +}
> > > +
> > > +static int mt7621_pci_parse_request_of_pci_ranges(struct pci_host_bridge *host)
> > > +{
> > > + struct mt7621_pcie *pcie = pci_host_bridge_priv(host);
> > > + struct device *dev = pcie->dev;
> > > + struct device_node *node = dev->of_node;
> > > + struct of_pci_range_parser parser;
> > > + struct resource_entry *entry;
> > > + struct of_pci_range range;
> > > + LIST_HEAD(res);
> > > +
> > > + if (of_pci_range_parser_init(&parser, node)) {
> > > + dev_err(dev, "missing \"ranges\" property\n");
> > > + return -EINVAL;
> > > + }
> > > +
> > > + /*
> > > + * IO_SPACE_LIMIT for MIPS is 0xffff but this platform uses IO at
> > > + * upper address 0x001e160000. of_pci_range_to_resource does not work
> >
> > I think that's normal...
>
> No, pci_address_to_pio will fail and io resources are not properly
> assigned at all.
>
> >
> > > + * well for MIPS platforms that don't define PCI_IOBASE, so set the IO
> > > + * resource manually instead.
> >
> > Can't this be fixed?
>
> This is the way the current PCI architecture is in mips... Maybe
> Thomas has a strong opinion on this.
>
> >
> > > + */
> > > + for_each_of_pci_range(&parser, &range) {
> > > + switch (range.flags & IORESOURCE_TYPE_BITS) {
> >
> > The core code already parses ranges for you. Try not to do it again.
> > (Use the resource instead)
>
> See below...
>
> >
> > > + case IORESOURCE_IO:
> > > + pcie->io_map_base =
> > > + (unsigned long)ioremap(range.cpu_addr,
> > > + range.size);
> > > + pcie->io.name = node->full_name;
> > > + pcie->io.flags = range.flags;
> > > + pcie->io.start = range.cpu_addr;
> > > + pcie->io.end = range.cpu_addr + range.size - 1;
> > > + pcie->io.parent = pcie->io.child = pcie->io.sibling = NULL;
> > > + set_io_port_base(pcie->io_map_base);
> > > + break;
> > > + }
> > > + }
> > > +
> > > + entry = resource_list_first_type(&host->windows, IORESOURCE_MEM);
> > > + if (!entry) {
> > > + dev_err(dev, "Cannot get memory resource");
> > > + return -EINVAL;
> > > + }
> > > +
> > > + pcie->mem = entry->res;
> > > + pci_add_resource(&res, &pcie->io);
> > > + pci_add_resource(&res, entry->res);
> > > + list_splice_init(&res, &host->windows);
> >
> > This should already be done for you.
>
> Most MIPS platforms do not define PCI_IOBASE, nor implement
> pci_address_to_pio(). Moreover, IO_SPACE_LIMIT is 0xffff for most MIPS
> platforms. of_pci_range_to_resource passes the _start address_ of the
> IO range into pci_address_to_pio, which then checks it against
> IO_SPACE_LIMIT and fails. So I have to do this manually or nothing
> will work properly...
>
> >
> > > +
> > > + return 0;
> > > +}
> > > +
> > > +static int mt7621_pcie_parse_port(struct mt7621_pcie *pcie,
> > > + int slot)
> > > +{
> > > + struct mt7621_pcie_port *port;
> > > + struct device *dev = pcie->dev;
> > > + struct platform_device *pdev = to_platform_device(dev);
> > > + char name[10];
> > > +
> > > + port = devm_kzalloc(dev, sizeof(*port), GFP_KERNEL);
> > > + if (!port)
> > > + return -ENOMEM;
> > > +
> > > + port->base = devm_platform_ioremap_resource(pdev, slot + 1);
> > > + if (IS_ERR(port->base))
> > > + return PTR_ERR(port->base);
> > > +
> > > + snprintf(name, sizeof(name), "pcie%d", slot);
> > > + port->clk = devm_clk_get(dev, name);
> > > + if (IS_ERR(port->clk)) {
> > > + dev_err(dev, "failed to get pcie%d clock\n", slot);
> > > + return PTR_ERR(port->clk);
> > > + }
> > > +
> > > + snprintf(name, sizeof(name), "pcie%d", slot);
> > > + port->pcie_rst = devm_reset_control_get_exclusive(dev, name);
> > > + if (PTR_ERR(port->pcie_rst) == -EPROBE_DEFER) {
> > > + dev_err(dev, "failed to get pcie%d reset control\n", slot);
> > > + return PTR_ERR(port->pcie_rst);
> > > + }
> > > +
> > > + snprintf(name, sizeof(name), "pcie-phy%d", slot);
> > > + port->phy = devm_phy_get(dev, name);
> > > + if (IS_ERR(port->phy) && slot != 1)
> > > + return PTR_ERR(port->phy);
> > > +
> > > + port->gpio_rst = devm_gpiod_get_index_optional(dev, "reset", slot,
> > > + GPIOD_OUT_LOW);
> > > + if (IS_ERR(port->gpio_rst)) {
> > > + dev_err(dev, "Failed to get GPIO for PCIe%d\n", slot);
> > > + return PTR_ERR(port->gpio_rst);
> > > + }
> > > +
> > > + port->slot = slot;
> > > + port->pcie = pcie;
> > > +
> > > + INIT_LIST_HEAD(&port->list);
> > > + list_add_tail(&port->list, &pcie->ports);
> > > +
> > > + return 0;
> > > +}
> > > +
> > > +static int mt7621_pcie_parse_dt(struct mt7621_pcie *pcie)
> > > +{
> > > + struct device *dev = pcie->dev;
> > > + struct platform_device *pdev = to_platform_device(dev);
> > > + struct device_node *node = dev->of_node, *child;
> > > + int err;
> > > +
> > > + pcie->base = devm_platform_ioremap_resource(pdev, 0);
> > > + if (IS_ERR(pcie->base))
> > > + return PTR_ERR(pcie->base);
> > > +
> > > + for_each_available_child_of_node(node, child) {
> > > + int slot;
> > > +
> > > + err = of_pci_get_devfn(child);
> > > + if (err < 0) {
> > > + of_node_put(child);
> > > + dev_err(dev, "failed to parse devfn: %d\n", err);
> > > + return err;
> > > + }
> > > +
> > > + slot = PCI_SLOT(err);
> > > +
> > > + err = mt7621_pcie_parse_port(pcie, slot);
> > > + if (err) {
> > > + of_node_put(child);
> > > + return err;
> > > + }
> > > + }
> > > +
> > > + return 0;
> > > +}
> > > +
> > > +static int mt7621_pcie_init_port(struct mt7621_pcie_port *port)
> > > +{
> > > + struct mt7621_pcie *pcie = port->pcie;
> > > + struct device *dev = pcie->dev;
> > > + u32 slot = port->slot;
> > > + int err;
> > > +
> > > + err = phy_init(port->phy);
> > > + if (err) {
> > > + dev_err(dev, "failed to initialize port%d phy\n", slot);
> > > + return err;
> > > + }
> > > +
> > > + err = phy_power_on(port->phy);
> > > + if (err) {
> > > + dev_err(dev, "failed to power on port%d phy\n", slot);
> > > + phy_exit(port->phy);
> > > + return err;
> > > + }
> > > +
> > > + port->enabled = true;
> > > +
> > > + return 0;
> > > +}
> > > +
> > > +static void mt7621_pcie_reset_assert(struct mt7621_pcie *pcie)
> > > +{
> > > + struct mt7621_pcie_port *port;
> > > +
> > > + list_for_each_entry(port, &pcie->ports, list) {
> > > + /* PCIe RC reset assert */
> > > + mt7621_control_assert(port);
> > > +
> > > + /* PCIe EP reset assert */
> > > + mt7621_rst_gpio_pcie_assert(port);
> > > + }
> > > +
> > > + msleep(PERST_DELAY_MS);
> > > +}
> > > +
> > > +static void mt7621_pcie_reset_rc_deassert(struct mt7621_pcie *pcie)
> > > +{
> > > + struct mt7621_pcie_port *port;
> > > +
> > > + list_for_each_entry(port, &pcie->ports, list)
> > > + mt7621_control_deassert(port);
> > > +}
> > > +
> > > +static void mt7621_pcie_reset_ep_deassert(struct mt7621_pcie *pcie)
> > > +{
> > > + struct mt7621_pcie_port *port;
> > > +
> > > + list_for_each_entry(port, &pcie->ports, list)
> > > + mt7621_rst_gpio_pcie_deassert(port);
> > > +
> > > + msleep(PERST_DELAY_MS);
> > > +}
> > > +
> > > +static void mt7621_pcie_init_ports(struct mt7621_pcie *pcie)
> > > +{
> > > + struct device *dev = pcie->dev;
> > > + struct mt7621_pcie_port *port, *tmp;
> > > + int err;
> > > +
> > > + mt7621_pcie_reset_assert(pcie);
> > > + mt7621_pcie_reset_rc_deassert(pcie);
> > > +
> > > + list_for_each_entry_safe(port, tmp, &pcie->ports, list) {
> > > + u32 slot = port->slot;
> > > +
> > > + if (slot == 1) {
> > > + port->enabled = true;
> > > + continue;
> > > + }
> > > +
> > > + err = mt7621_pcie_init_port(port);
> > > + if (err) {
> > > + dev_err(dev, "Initiating port %d failed\n", slot);
> > > + list_del(&port->list);
> > > + }
> > > + }
> > > +
> > > + mt7621_pcie_reset_ep_deassert(pcie);
> > > +
> > > + tmp = NULL;
> > > + list_for_each_entry(port, &pcie->ports, list) {
> > > + u32 slot = port->slot;
> > > +
> > > + if (!mt7621_pcie_port_is_linkup(port)) {
> > > + dev_err(dev, "pcie%d no card, disable it (RST & CLK)\n",
> > > + slot);
> > > + mt7621_control_assert(port);
> > > + clk_disable_unprepare(port->clk);
> > > + port->enabled = false;
> > > +
> > > + if (slot == 0) {
> > > + tmp = port;
> > > + continue;
> > > + }
> > > +
> > > + if (slot == 1 && tmp && !tmp->enabled)
> > > + phy_power_off(tmp->phy)
> > > + }
> > > + }
> > > +}
> > > +
> > > +static void mt7621_pcie_enable_port(struct mt7621_pcie_port *port)
> > > +{
> > > + struct mt7621_pcie *pcie = port->pcie;
> > > + u32 slot = port->slot;
> > > + u32 offset = MT7621_PCIE_OFFSET + (slot * MT7621_NEXT_PORT);
> >
> > I don't see how this works unless the ports happen to be at the same VA
> > offset. The writes below are to the 'common' registers which are 0x100
> > bytes long based on the DT example, but the offset lines up with the
> > port offsets.
>
> RC registers for port 0 start at physical address 0x1e142000, for port
> 1 0x1e143000 and for port 2 0x1e144000. We are using
> 'pcie_write' which internally uses pcie->base which is 0x1e140000, but
> all the previous ones have been already requested and mapped for each
> port so we calculate the offset from this 0x1e140000 and write there.
>
> >
> > > + u32 val;
> > > +
> > > + /* enable pcie interrupt */
> > > + val = pcie_read(pcie, RALINK_PCI_PCIMSK_ADDR);
> > > + val |= PCIE_PORT_INT_EN(slot);
> > > + pcie_write(pcie, val, RALINK_PCI_PCIMSK_ADDR);
> > > +
> > > + /* map 2G DDR region */
> > > + pcie_write(pcie, PCIE_BAR_MAP_MAX | PCIE_BAR_ENABLE,
> > > + offset + RALINK_PCI_BAR0SETUP_ADDR);
> > > +
> > > + /* configure class code and revision ID */
> > > + pcie_write(pcie, PCIE_CLASS_CODE | PCIE_REVISION_ID,
> > > + offset + RALINK_PCI_CLASS);
> > > +}
> > > +
> > > +static int mt7621_pcie_enable_ports(struct mt7621_pcie *pcie)
> > > +{
> > > + struct device *dev = pcie->dev;
> > > + struct mt7621_pcie_port *port;
> > > + u8 num_slots_enabled = 0;
> > > + u32 slot;
> > > + u32 val;
> > > + int err;
> > > +
> > > + /* Setup MEMWIN and IOWIN */
> > > + pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
> > > + pcie_write(pcie, pcie->io.start, RALINK_PCI_IOBASE);
> > > +
> > > + list_for_each_entry(port, &pcie->ports, list) {
> > > + if (port->enabled) {
> > > + err = clk_prepare_enable(port->clk);
> > > + if (err) {
> > > + dev_err(dev, "enabling clk pcie%d\n", slot);
> > > + return err;
> > > + }
> > > +
> > > + mt7621_pcie_enable_port(port);
> > > + dev_info(dev, "PCIE%d enabled\n", port->slot);
> > > + num_slots_enabled++;
> > > + }
> > > + }
> > > +
> > > + for (slot = 0; slot < num_slots_enabled; slot++) {
> > > + val = read_config(pcie, slot, PCI_COMMAND);
> > > + val |= PCI_COMMAND_MASTER;
> > > + write_config(pcie, slot, PCI_COMMAND, val);
> > > + /* configure RC FTS number to 250 when it leaves L0s */
> > > + val = read_config(pcie, slot, PCIE_FTS_NUM);
> > > + val &= ~PCIE_FTS_NUM_MASK;
> > > + val |= PCIE_FTS_NUM_L0(0x50);
> > > + write_config(pcie, slot, PCIE_FTS_NUM, val);
> > > + }
> > > +
> > > + return 0;
> > > +}
> > > +
> > > +static int mt7621_pcie_register_host(struct pci_host_bridge *host)
> > > +{
> > > + struct mt7621_pcie *pcie = pci_host_bridge_priv(host);
> > > +
> > > + host->ops = &mt7621_pci_ops;
> > > + host->sysdata = pcie;
> > > + return pci_host_probe(host);
> > > +}
> > > +
> > > +static const struct soc_device_attribute mt7621_pci_quirks_match[] = {
> > > + { .soc_id = "mt7621", .revision = "E2" }
> > > +};
> > > +
> > > +static int mt7621_pci_probe(struct platform_device *pdev)
> > > +{
> > > + struct device *dev = &pdev->dev;
> > > + const struct soc_device_attribute *attr;
> > > + struct mt7621_pcie *pcie;
> > > + struct pci_host_bridge *bridge;
> > > + int err;
> > > +
> > > + if (!dev->of_node)
> > > + return -ENODEV;
> > > +
> > > + bridge = devm_pci_alloc_host_bridge(dev, sizeof(*pcie));
> > > + if (!bridge)
> > > + return -ENOMEM;
> > > +
> > > + pcie = pci_host_bridge_priv(bridge);
> > > + pcie->dev = dev;
> > > + platform_set_drvdata(pdev, pcie);
> > > + INIT_LIST_HEAD(&pcie->ports);
> > > +
> > > + attr = soc_device_match(mt7621_pci_quirks_match);
> > > + if (attr)
> > > + pcie->resets_inverted = true;
> > > +
> > > + err = mt7621_pcie_parse_dt(pcie);
> > > + if (err) {
> > > + dev_err(dev, "Parsing DT failed\n");
> > > + return err;
> > > + }
> > > +
> > > + err = mt7621_pci_parse_request_of_pci_ranges(bridge);
> > > + if (err) {
> > > + dev_err(dev, "Error requesting pci resources from ranges");
> > > + return err;
> > > + }
> > > +
> > > + /* set resources limits */
> > > + ioport_resource.start = pcie->io.start;
> > > + ioport_resource.end = pcie->io.end;
> > > +
> > > + mt7621_pcie_init_ports(pcie);
> > > +
> > > + err = mt7621_pcie_enable_ports(pcie);
> >
> > Really need 2 functions here?
>
> mt7621_pcie_init_ports is in charge of power on the phy and checks for
> link status to see which ports are in use and mt7621_pcie_enable_ports
> just enable all the stuff to be ready to be used.
>
> >
> > > + if (err) {
> > > + dev_err(dev, "Error enabling pcie ports\n");
> > > + return err;
> > > + }
> > > +
> > > + setup_cm_memory_region(pcie);
> > > +
> > > + return mt7621_pcie_register_host(bridge);
> > > +}
> > > +
> > > +static const struct of_device_id mt7621_pci_ids[] = {
> > > + { .compatible = "mediatek,mt7621-pci" },
> > > + {},
> > > +};
> > > +MODULE_DEVICE_TABLE(of, mt7621_pci_ids);
> > > +
> > > +static struct platform_driver mt7621_pci_driver = {
> > > + .probe = mt7621_pci_probe,
> > > + .driver = {
> > > + .name = "mt7621-pci",
> > > + .of_match_table = of_match_ptr(mt7621_pci_ids),
> > > + },
> > > +};
> > > +builtin_platform_driver(mt7621_pci_driver);
> > > diff --git a/arch/mips/ralink/Kconfig b/arch/mips/ralink/Kconfig
> > > index ec4daa63c5e3..50e5a54f7d9e 100644
> > > --- a/arch/mips/ralink/Kconfig
> > > +++ b/arch/mips/ralink/Kconfig
> > > @@ -56,7 +56,7 @@ choice
> > > select MIPS_GIC
> > > select COMMON_CLK
> > > select CLKSRC_MIPS_GIC
> > > - select HAVE_PCI if PCI_MT7621
> > > + select HAVE_PCI
> > > select SOC_BUS
> > > endchoice
> > >
> > > @@ -101,4 +101,11 @@ choice
> > >
> > > endchoice
> > >
> > > +config PCI_MT7621
> > > + bool "MediaTek MT7621 PCI Controller"
> > > + depends on RALINK && SOC_MT7621
> >
> > Ideally this should also have (|| COMPILE_TEST), but looks like there
> > are a few MIPS dependencies in here. So maybe (|| (MIPS &&
> > COMPILE_TEST)? If it's not built by allmodconfig or defconfig, it's hard
> > for people to compile test it.
>
> Ok, I will add (|| (MIPS && COMPILE_TEST) here.
>
> Best regards,
> Sergio Paracuellos
>
> >
> >
> > > + select PCI_DRIVERS_GENERIC
> > > + help
> > > + This selects a driver for the MediaTek MT7621 PCI Controller.
> > > +
> > > endif
> > > --
> > > 2.25.1

I have already sent to staging this patchset[0] regarding your
comments before moving this driver to 'drivers/pci/controller' and
sending v2:

[0]: https://lore.kernel.org/linux-staging/[email protected]/T/#t

Thanks,
Sergio Paracuellos