12bdd5238SSergio Paracuellos // SPDX-License-Identifier: GPL-2.0+
22bdd5238SSergio Paracuellos /*
32bdd5238SSergio Paracuellos * BRIEF MODULE DESCRIPTION
42bdd5238SSergio Paracuellos * PCI init for Ralink RT2880 solution
52bdd5238SSergio Paracuellos *
62bdd5238SSergio Paracuellos * Copyright 2007 Ralink Inc. (bruce_chang@ralinktech.com.tw)
72bdd5238SSergio Paracuellos *
82bdd5238SSergio Paracuellos * May 2007 Bruce Chang
92bdd5238SSergio Paracuellos * Initial Release
102bdd5238SSergio Paracuellos *
112bdd5238SSergio Paracuellos * May 2009 Bruce Chang
122bdd5238SSergio Paracuellos * support RT2880/RT3883 PCIe
132bdd5238SSergio Paracuellos *
142bdd5238SSergio Paracuellos * May 2011 Bruce Chang
152bdd5238SSergio Paracuellos * support RT6855/MT7620 PCIe
162bdd5238SSergio Paracuellos */
172bdd5238SSergio Paracuellos
182bdd5238SSergio Paracuellos #include <linux/bitops.h>
192bdd5238SSergio Paracuellos #include <linux/clk.h>
202bdd5238SSergio Paracuellos #include <linux/delay.h>
212bdd5238SSergio Paracuellos #include <linux/gpio/consumer.h>
222bdd5238SSergio Paracuellos #include <linux/module.h>
232bdd5238SSergio Paracuellos #include <linux/of.h>
242bdd5238SSergio Paracuellos #include <linux/of_address.h>
252bdd5238SSergio Paracuellos #include <linux/of_pci.h>
262bdd5238SSergio Paracuellos #include <linux/of_platform.h>
272bdd5238SSergio Paracuellos #include <linux/pci.h>
282bdd5238SSergio Paracuellos #include <linux/phy/phy.h>
292bdd5238SSergio Paracuellos #include <linux/platform_device.h>
302bdd5238SSergio Paracuellos #include <linux/reset.h>
312bdd5238SSergio Paracuellos #include <linux/sys_soc.h>
322bdd5238SSergio Paracuellos
332301a3e1SPali Rohár #include "../pci.h"
342301a3e1SPali Rohár
352bdd5238SSergio Paracuellos /* MediaTek-specific configuration registers */
362bdd5238SSergio Paracuellos #define PCIE_FTS_NUM 0x70c
372bdd5238SSergio Paracuellos #define PCIE_FTS_NUM_MASK GENMASK(15, 8)
382bdd5238SSergio Paracuellos #define PCIE_FTS_NUM_L0(x) (((x) & 0xff) << 8)
392bdd5238SSergio Paracuellos
402bdd5238SSergio Paracuellos /* Host-PCI bridge registers */
412bdd5238SSergio Paracuellos #define RALINK_PCI_PCICFG_ADDR 0x0000
422bdd5238SSergio Paracuellos #define RALINK_PCI_PCIMSK_ADDR 0x000c
432bdd5238SSergio Paracuellos #define RALINK_PCI_CONFIG_ADDR 0x0020
442bdd5238SSergio Paracuellos #define RALINK_PCI_CONFIG_DATA 0x0024
452bdd5238SSergio Paracuellos #define RALINK_PCI_MEMBASE 0x0028
462bdd5238SSergio Paracuellos #define RALINK_PCI_IOBASE 0x002c
472bdd5238SSergio Paracuellos
482bdd5238SSergio Paracuellos /* PCIe RC control registers */
492bdd5238SSergio Paracuellos #define RALINK_PCI_ID 0x0030
502bdd5238SSergio Paracuellos #define RALINK_PCI_CLASS 0x0034
512bdd5238SSergio Paracuellos #define RALINK_PCI_SUBID 0x0038
522bdd5238SSergio Paracuellos #define RALINK_PCI_STATUS 0x0050
532bdd5238SSergio Paracuellos
542bdd5238SSergio Paracuellos /* Some definition values */
552bdd5238SSergio Paracuellos #define PCIE_REVISION_ID BIT(0)
562bdd5238SSergio Paracuellos #define PCIE_CLASS_CODE (0x60400 << 8)
572bdd5238SSergio Paracuellos #define PCIE_BAR_MAP_MAX GENMASK(30, 16)
582bdd5238SSergio Paracuellos #define PCIE_BAR_ENABLE BIT(0)
592bdd5238SSergio Paracuellos #define PCIE_PORT_INT_EN(x) BIT(20 + (x))
602bdd5238SSergio Paracuellos #define PCIE_PORT_LINKUP BIT(0)
612bdd5238SSergio Paracuellos #define PCIE_PORT_CNT 3
622bdd5238SSergio Paracuellos
630cb2a8f3SSergio Paracuellos #define INIT_PORTS_DELAY_MS 100
642bdd5238SSergio Paracuellos #define PERST_DELAY_MS 100
652bdd5238SSergio Paracuellos
662bdd5238SSergio Paracuellos /**
672bdd5238SSergio Paracuellos * struct mt7621_pcie_port - PCIe port information
682bdd5238SSergio Paracuellos * @base: I/O mapped register base
692bdd5238SSergio Paracuellos * @list: port list
702bdd5238SSergio Paracuellos * @pcie: pointer to PCIe host info
712bdd5238SSergio Paracuellos * @clk: pointer to the port clock gate
722bdd5238SSergio Paracuellos * @phy: pointer to PHY control block
732bdd5238SSergio Paracuellos * @pcie_rst: pointer to port reset control
742bdd5238SSergio Paracuellos * @gpio_rst: gpio reset
752bdd5238SSergio Paracuellos * @slot: port slot
762bdd5238SSergio Paracuellos * @enabled: indicates if port is enabled
772bdd5238SSergio Paracuellos */
782bdd5238SSergio Paracuellos struct mt7621_pcie_port {
792bdd5238SSergio Paracuellos void __iomem *base;
802bdd5238SSergio Paracuellos struct list_head list;
812bdd5238SSergio Paracuellos struct mt7621_pcie *pcie;
822bdd5238SSergio Paracuellos struct clk *clk;
832bdd5238SSergio Paracuellos struct phy *phy;
842bdd5238SSergio Paracuellos struct reset_control *pcie_rst;
852bdd5238SSergio Paracuellos struct gpio_desc *gpio_rst;
862bdd5238SSergio Paracuellos u32 slot;
872bdd5238SSergio Paracuellos bool enabled;
882bdd5238SSergio Paracuellos };
892bdd5238SSergio Paracuellos
902bdd5238SSergio Paracuellos /**
912bdd5238SSergio Paracuellos * struct mt7621_pcie - PCIe host information
922bdd5238SSergio Paracuellos * @base: IO Mapped Register Base
932bdd5238SSergio Paracuellos * @dev: Pointer to PCIe device
942bdd5238SSergio Paracuellos * @ports: pointer to PCIe port information
952bdd5238SSergio Paracuellos * @resets_inverted: depends on chip revision
962bdd5238SSergio Paracuellos * reset lines are inverted.
972bdd5238SSergio Paracuellos */
982bdd5238SSergio Paracuellos struct mt7621_pcie {
992bdd5238SSergio Paracuellos struct device *dev;
1004793895fSBjorn Helgaas void __iomem *base;
1012bdd5238SSergio Paracuellos struct list_head ports;
1022bdd5238SSergio Paracuellos bool resets_inverted;
1032bdd5238SSergio Paracuellos };
1042bdd5238SSergio Paracuellos
pcie_read(struct mt7621_pcie * pcie,u32 reg)1052bdd5238SSergio Paracuellos static inline u32 pcie_read(struct mt7621_pcie *pcie, u32 reg)
1062bdd5238SSergio Paracuellos {
1072bdd5238SSergio Paracuellos return readl_relaxed(pcie->base + reg);
1082bdd5238SSergio Paracuellos }
1092bdd5238SSergio Paracuellos
pcie_write(struct mt7621_pcie * pcie,u32 val,u32 reg)1102bdd5238SSergio Paracuellos static inline void pcie_write(struct mt7621_pcie *pcie, u32 val, u32 reg)
1112bdd5238SSergio Paracuellos {
1122bdd5238SSergio Paracuellos writel_relaxed(val, pcie->base + reg);
1132bdd5238SSergio Paracuellos }
1142bdd5238SSergio Paracuellos
pcie_port_read(struct mt7621_pcie_port * port,u32 reg)1152bdd5238SSergio Paracuellos static inline u32 pcie_port_read(struct mt7621_pcie_port *port, u32 reg)
1162bdd5238SSergio Paracuellos {
1172bdd5238SSergio Paracuellos return readl_relaxed(port->base + reg);
1182bdd5238SSergio Paracuellos }
1192bdd5238SSergio Paracuellos
pcie_port_write(struct mt7621_pcie_port * port,u32 val,u32 reg)1202bdd5238SSergio Paracuellos static inline void pcie_port_write(struct mt7621_pcie_port *port,
1212bdd5238SSergio Paracuellos u32 val, u32 reg)
1222bdd5238SSergio Paracuellos {
1232bdd5238SSergio Paracuellos writel_relaxed(val, port->base + reg);
1242bdd5238SSergio Paracuellos }
1252bdd5238SSergio Paracuellos
mt7621_pcie_map_bus(struct pci_bus * bus,unsigned int devfn,int where)1262bdd5238SSergio Paracuellos static void __iomem *mt7621_pcie_map_bus(struct pci_bus *bus,
1272bdd5238SSergio Paracuellos unsigned int devfn, int where)
1282bdd5238SSergio Paracuellos {
1292bdd5238SSergio Paracuellos struct mt7621_pcie *pcie = bus->sysdata;
1302301a3e1SPali Rohár u32 address = PCI_CONF1_EXT_ADDRESS(bus->number, PCI_SLOT(devfn),
1312bdd5238SSergio Paracuellos PCI_FUNC(devfn), where);
1322bdd5238SSergio Paracuellos
1332bdd5238SSergio Paracuellos writel_relaxed(address, pcie->base + RALINK_PCI_CONFIG_ADDR);
1342bdd5238SSergio Paracuellos
1352bdd5238SSergio Paracuellos return pcie->base + RALINK_PCI_CONFIG_DATA + (where & 3);
1362bdd5238SSergio Paracuellos }
1372bdd5238SSergio Paracuellos
13887c71931SBjorn Helgaas static struct pci_ops mt7621_pcie_ops = {
1392bdd5238SSergio Paracuellos .map_bus = mt7621_pcie_map_bus,
1402bdd5238SSergio Paracuellos .read = pci_generic_config_read,
1412bdd5238SSergio Paracuellos .write = pci_generic_config_write,
1422bdd5238SSergio Paracuellos };
1432bdd5238SSergio Paracuellos
read_config(struct mt7621_pcie * pcie,unsigned int dev,u32 reg)1442bdd5238SSergio Paracuellos static u32 read_config(struct mt7621_pcie *pcie, unsigned int dev, u32 reg)
1452bdd5238SSergio Paracuellos {
1462301a3e1SPali Rohár u32 address = PCI_CONF1_EXT_ADDRESS(0, dev, 0, reg);
1472bdd5238SSergio Paracuellos
1482bdd5238SSergio Paracuellos pcie_write(pcie, address, RALINK_PCI_CONFIG_ADDR);
1492bdd5238SSergio Paracuellos return pcie_read(pcie, RALINK_PCI_CONFIG_DATA);
1502bdd5238SSergio Paracuellos }
1512bdd5238SSergio Paracuellos
write_config(struct mt7621_pcie * pcie,unsigned int dev,u32 reg,u32 val)1522bdd5238SSergio Paracuellos static void write_config(struct mt7621_pcie *pcie, unsigned int dev,
1532bdd5238SSergio Paracuellos u32 reg, u32 val)
1542bdd5238SSergio Paracuellos {
1552301a3e1SPali Rohár u32 address = PCI_CONF1_EXT_ADDRESS(0, dev, 0, reg);
1562bdd5238SSergio Paracuellos
1572bdd5238SSergio Paracuellos pcie_write(pcie, address, RALINK_PCI_CONFIG_ADDR);
1582bdd5238SSergio Paracuellos pcie_write(pcie, val, RALINK_PCI_CONFIG_DATA);
1592bdd5238SSergio Paracuellos }
1602bdd5238SSergio Paracuellos
mt7621_rst_gpio_pcie_assert(struct mt7621_pcie_port * port)1612bdd5238SSergio Paracuellos static inline void mt7621_rst_gpio_pcie_assert(struct mt7621_pcie_port *port)
1622bdd5238SSergio Paracuellos {
1632bdd5238SSergio Paracuellos if (port->gpio_rst)
1642bdd5238SSergio Paracuellos gpiod_set_value(port->gpio_rst, 1);
1652bdd5238SSergio Paracuellos }
1662bdd5238SSergio Paracuellos
mt7621_rst_gpio_pcie_deassert(struct mt7621_pcie_port * port)1672bdd5238SSergio Paracuellos static inline void mt7621_rst_gpio_pcie_deassert(struct mt7621_pcie_port *port)
1682bdd5238SSergio Paracuellos {
1692bdd5238SSergio Paracuellos if (port->gpio_rst)
1702bdd5238SSergio Paracuellos gpiod_set_value(port->gpio_rst, 0);
1712bdd5238SSergio Paracuellos }
1722bdd5238SSergio Paracuellos
mt7621_pcie_port_is_linkup(struct mt7621_pcie_port * port)1732bdd5238SSergio Paracuellos static inline bool mt7621_pcie_port_is_linkup(struct mt7621_pcie_port *port)
1742bdd5238SSergio Paracuellos {
1752bdd5238SSergio Paracuellos return (pcie_port_read(port, RALINK_PCI_STATUS) & PCIE_PORT_LINKUP) != 0;
1762bdd5238SSergio Paracuellos }
1772bdd5238SSergio Paracuellos
mt7621_control_assert(struct mt7621_pcie_port * port)1782bdd5238SSergio Paracuellos static inline void mt7621_control_assert(struct mt7621_pcie_port *port)
1792bdd5238SSergio Paracuellos {
1802bdd5238SSergio Paracuellos struct mt7621_pcie *pcie = port->pcie;
1812bdd5238SSergio Paracuellos
1822bdd5238SSergio Paracuellos if (pcie->resets_inverted)
1832bdd5238SSergio Paracuellos reset_control_assert(port->pcie_rst);
1842bdd5238SSergio Paracuellos else
1852bdd5238SSergio Paracuellos reset_control_deassert(port->pcie_rst);
1862bdd5238SSergio Paracuellos }
1872bdd5238SSergio Paracuellos
mt7621_control_deassert(struct mt7621_pcie_port * port)1882bdd5238SSergio Paracuellos static inline void mt7621_control_deassert(struct mt7621_pcie_port *port)
1892bdd5238SSergio Paracuellos {
1902bdd5238SSergio Paracuellos struct mt7621_pcie *pcie = port->pcie;
1912bdd5238SSergio Paracuellos
1922bdd5238SSergio Paracuellos if (pcie->resets_inverted)
1932bdd5238SSergio Paracuellos reset_control_deassert(port->pcie_rst);
1942bdd5238SSergio Paracuellos else
1952bdd5238SSergio Paracuellos reset_control_assert(port->pcie_rst);
1962bdd5238SSergio Paracuellos }
1972bdd5238SSergio Paracuellos
mt7621_pcie_parse_port(struct mt7621_pcie * pcie,struct device_node * node,int slot)1982bdd5238SSergio Paracuellos static int mt7621_pcie_parse_port(struct mt7621_pcie *pcie,
1992bdd5238SSergio Paracuellos struct device_node *node,
2002bdd5238SSergio Paracuellos int slot)
2012bdd5238SSergio Paracuellos {
2022bdd5238SSergio Paracuellos struct mt7621_pcie_port *port;
2032bdd5238SSergio Paracuellos struct device *dev = pcie->dev;
2042bdd5238SSergio Paracuellos struct platform_device *pdev = to_platform_device(dev);
205fd6eb49aSSergio Paracuellos char name[11];
2062bdd5238SSergio Paracuellos int err;
2072bdd5238SSergio Paracuellos
2082bdd5238SSergio Paracuellos port = devm_kzalloc(dev, sizeof(*port), GFP_KERNEL);
2092bdd5238SSergio Paracuellos if (!port)
2102bdd5238SSergio Paracuellos return -ENOMEM;
2112bdd5238SSergio Paracuellos
2122bdd5238SSergio Paracuellos port->base = devm_platform_ioremap_resource(pdev, slot + 1);
2132bdd5238SSergio Paracuellos if (IS_ERR(port->base))
2142bdd5238SSergio Paracuellos return PTR_ERR(port->base);
2152bdd5238SSergio Paracuellos
2162bdd5238SSergio Paracuellos port->clk = devm_get_clk_from_child(dev, node, NULL);
2172bdd5238SSergio Paracuellos if (IS_ERR(port->clk)) {
2182bdd5238SSergio Paracuellos dev_err(dev, "failed to get pcie%d clock\n", slot);
2192bdd5238SSergio Paracuellos return PTR_ERR(port->clk);
2202bdd5238SSergio Paracuellos }
2212bdd5238SSergio Paracuellos
2222bdd5238SSergio Paracuellos port->pcie_rst = of_reset_control_get_exclusive(node, NULL);
2232bdd5238SSergio Paracuellos if (PTR_ERR(port->pcie_rst) == -EPROBE_DEFER) {
2242bdd5238SSergio Paracuellos dev_err(dev, "failed to get pcie%d reset control\n", slot);
2252bdd5238SSergio Paracuellos return PTR_ERR(port->pcie_rst);
2262bdd5238SSergio Paracuellos }
2272bdd5238SSergio Paracuellos
2282bdd5238SSergio Paracuellos snprintf(name, sizeof(name), "pcie-phy%d", slot);
2292bdd5238SSergio Paracuellos port->phy = devm_of_phy_get(dev, node, name);
2302bdd5238SSergio Paracuellos if (IS_ERR(port->phy)) {
2312bdd5238SSergio Paracuellos dev_err(dev, "failed to get pcie-phy%d\n", slot);
2322bdd5238SSergio Paracuellos err = PTR_ERR(port->phy);
2332bdd5238SSergio Paracuellos goto remove_reset;
2342bdd5238SSergio Paracuellos }
2352bdd5238SSergio Paracuellos
2362bdd5238SSergio Paracuellos port->gpio_rst = devm_gpiod_get_index_optional(dev, "reset", slot,
2372bdd5238SSergio Paracuellos GPIOD_OUT_LOW);
2382bdd5238SSergio Paracuellos if (IS_ERR(port->gpio_rst)) {
2392bdd5238SSergio Paracuellos dev_err(dev, "failed to get GPIO for PCIe%d\n", slot);
2402bdd5238SSergio Paracuellos err = PTR_ERR(port->gpio_rst);
2412bdd5238SSergio Paracuellos goto remove_reset;
2422bdd5238SSergio Paracuellos }
2432bdd5238SSergio Paracuellos
2442bdd5238SSergio Paracuellos port->slot = slot;
2452bdd5238SSergio Paracuellos port->pcie = pcie;
2462bdd5238SSergio Paracuellos
2472bdd5238SSergio Paracuellos INIT_LIST_HEAD(&port->list);
2482bdd5238SSergio Paracuellos list_add_tail(&port->list, &pcie->ports);
2492bdd5238SSergio Paracuellos
2502bdd5238SSergio Paracuellos return 0;
2512bdd5238SSergio Paracuellos
2522bdd5238SSergio Paracuellos remove_reset:
2532bdd5238SSergio Paracuellos reset_control_put(port->pcie_rst);
2542bdd5238SSergio Paracuellos return err;
2552bdd5238SSergio Paracuellos }
2562bdd5238SSergio Paracuellos
mt7621_pcie_parse_dt(struct mt7621_pcie * pcie)2572bdd5238SSergio Paracuellos static int mt7621_pcie_parse_dt(struct mt7621_pcie *pcie)
2582bdd5238SSergio Paracuellos {
2592bdd5238SSergio Paracuellos struct device *dev = pcie->dev;
2602bdd5238SSergio Paracuellos struct platform_device *pdev = to_platform_device(dev);
2612bdd5238SSergio Paracuellos struct device_node *node = dev->of_node, *child;
2622bdd5238SSergio Paracuellos int err;
2632bdd5238SSergio Paracuellos
2642bdd5238SSergio Paracuellos pcie->base = devm_platform_ioremap_resource(pdev, 0);
2652bdd5238SSergio Paracuellos if (IS_ERR(pcie->base))
2662bdd5238SSergio Paracuellos return PTR_ERR(pcie->base);
2672bdd5238SSergio Paracuellos
2682bdd5238SSergio Paracuellos for_each_available_child_of_node(node, child) {
2692bdd5238SSergio Paracuellos int slot;
2702bdd5238SSergio Paracuellos
2712bdd5238SSergio Paracuellos err = of_pci_get_devfn(child);
2722bdd5238SSergio Paracuellos if (err < 0) {
2732bdd5238SSergio Paracuellos of_node_put(child);
2742bdd5238SSergio Paracuellos dev_err(dev, "failed to parse devfn: %d\n", err);
2752bdd5238SSergio Paracuellos return err;
2762bdd5238SSergio Paracuellos }
2772bdd5238SSergio Paracuellos
2782bdd5238SSergio Paracuellos slot = PCI_SLOT(err);
2792bdd5238SSergio Paracuellos
2802bdd5238SSergio Paracuellos err = mt7621_pcie_parse_port(pcie, child, slot);
2812bdd5238SSergio Paracuellos if (err) {
2822bdd5238SSergio Paracuellos of_node_put(child);
2832bdd5238SSergio Paracuellos return err;
2842bdd5238SSergio Paracuellos }
2852bdd5238SSergio Paracuellos }
2862bdd5238SSergio Paracuellos
2872bdd5238SSergio Paracuellos return 0;
2882bdd5238SSergio Paracuellos }
2892bdd5238SSergio Paracuellos
mt7621_pcie_init_port(struct mt7621_pcie_port * port)2902bdd5238SSergio Paracuellos static int mt7621_pcie_init_port(struct mt7621_pcie_port *port)
2912bdd5238SSergio Paracuellos {
2922bdd5238SSergio Paracuellos struct mt7621_pcie *pcie = port->pcie;
2932bdd5238SSergio Paracuellos struct device *dev = pcie->dev;
2942bdd5238SSergio Paracuellos u32 slot = port->slot;
2952bdd5238SSergio Paracuellos int err;
2962bdd5238SSergio Paracuellos
2972bdd5238SSergio Paracuellos err = phy_init(port->phy);
2982bdd5238SSergio Paracuellos if (err) {
2992bdd5238SSergio Paracuellos dev_err(dev, "failed to initialize port%d phy\n", slot);
3002bdd5238SSergio Paracuellos return err;
3012bdd5238SSergio Paracuellos }
3022bdd5238SSergio Paracuellos
3032bdd5238SSergio Paracuellos err = phy_power_on(port->phy);
3042bdd5238SSergio Paracuellos if (err) {
3052bdd5238SSergio Paracuellos dev_err(dev, "failed to power on port%d phy\n", slot);
3062bdd5238SSergio Paracuellos phy_exit(port->phy);
3072bdd5238SSergio Paracuellos return err;
3082bdd5238SSergio Paracuellos }
3092bdd5238SSergio Paracuellos
3102bdd5238SSergio Paracuellos port->enabled = true;
3112bdd5238SSergio Paracuellos
3122bdd5238SSergio Paracuellos return 0;
3132bdd5238SSergio Paracuellos }
3142bdd5238SSergio Paracuellos
mt7621_pcie_reset_assert(struct mt7621_pcie * pcie)3152bdd5238SSergio Paracuellos static void mt7621_pcie_reset_assert(struct mt7621_pcie *pcie)
3162bdd5238SSergio Paracuellos {
3172bdd5238SSergio Paracuellos struct mt7621_pcie_port *port;
3182bdd5238SSergio Paracuellos
3192bdd5238SSergio Paracuellos list_for_each_entry(port, &pcie->ports, list) {
3202bdd5238SSergio Paracuellos /* PCIe RC reset assert */
3212bdd5238SSergio Paracuellos mt7621_control_assert(port);
3222bdd5238SSergio Paracuellos
3232bdd5238SSergio Paracuellos /* PCIe EP reset assert */
3242bdd5238SSergio Paracuellos mt7621_rst_gpio_pcie_assert(port);
3252bdd5238SSergio Paracuellos }
3262bdd5238SSergio Paracuellos
3272bdd5238SSergio Paracuellos msleep(PERST_DELAY_MS);
3282bdd5238SSergio Paracuellos }
3292bdd5238SSergio Paracuellos
mt7621_pcie_reset_rc_deassert(struct mt7621_pcie * pcie)3302bdd5238SSergio Paracuellos static void mt7621_pcie_reset_rc_deassert(struct mt7621_pcie *pcie)
3312bdd5238SSergio Paracuellos {
3322bdd5238SSergio Paracuellos struct mt7621_pcie_port *port;
3332bdd5238SSergio Paracuellos
3342bdd5238SSergio Paracuellos list_for_each_entry(port, &pcie->ports, list)
3352bdd5238SSergio Paracuellos mt7621_control_deassert(port);
3362bdd5238SSergio Paracuellos }
3372bdd5238SSergio Paracuellos
mt7621_pcie_reset_ep_deassert(struct mt7621_pcie * pcie)3382bdd5238SSergio Paracuellos static void mt7621_pcie_reset_ep_deassert(struct mt7621_pcie *pcie)
3392bdd5238SSergio Paracuellos {
3402bdd5238SSergio Paracuellos struct mt7621_pcie_port *port;
3412bdd5238SSergio Paracuellos
3422bdd5238SSergio Paracuellos list_for_each_entry(port, &pcie->ports, list)
3432bdd5238SSergio Paracuellos mt7621_rst_gpio_pcie_deassert(port);
3442bdd5238SSergio Paracuellos
3452bdd5238SSergio Paracuellos msleep(PERST_DELAY_MS);
3462bdd5238SSergio Paracuellos }
3472bdd5238SSergio Paracuellos
mt7621_pcie_init_ports(struct mt7621_pcie * pcie)3482bdd5238SSergio Paracuellos static int mt7621_pcie_init_ports(struct mt7621_pcie *pcie)
3492bdd5238SSergio Paracuellos {
3502bdd5238SSergio Paracuellos struct device *dev = pcie->dev;
3512bdd5238SSergio Paracuellos struct mt7621_pcie_port *port, *tmp;
3522bdd5238SSergio Paracuellos u8 num_disabled = 0;
3532bdd5238SSergio Paracuellos int err;
3542bdd5238SSergio Paracuellos
3552bdd5238SSergio Paracuellos mt7621_pcie_reset_assert(pcie);
3562bdd5238SSergio Paracuellos mt7621_pcie_reset_rc_deassert(pcie);
3572bdd5238SSergio Paracuellos
3582bdd5238SSergio Paracuellos list_for_each_entry_safe(port, tmp, &pcie->ports, list) {
3592bdd5238SSergio Paracuellos u32 slot = port->slot;
3602bdd5238SSergio Paracuellos
3612bdd5238SSergio Paracuellos if (slot == 1) {
3622bdd5238SSergio Paracuellos port->enabled = true;
3632bdd5238SSergio Paracuellos continue;
3642bdd5238SSergio Paracuellos }
3652bdd5238SSergio Paracuellos
3662bdd5238SSergio Paracuellos err = mt7621_pcie_init_port(port);
3672bdd5238SSergio Paracuellos if (err) {
3682bdd5238SSergio Paracuellos dev_err(dev, "initializing port %d failed\n", slot);
3692bdd5238SSergio Paracuellos list_del(&port->list);
3702bdd5238SSergio Paracuellos }
3712bdd5238SSergio Paracuellos }
3722bdd5238SSergio Paracuellos
3730cb2a8f3SSergio Paracuellos msleep(INIT_PORTS_DELAY_MS);
3742bdd5238SSergio Paracuellos mt7621_pcie_reset_ep_deassert(pcie);
3752bdd5238SSergio Paracuellos
3762bdd5238SSergio Paracuellos tmp = NULL;
3772bdd5238SSergio Paracuellos list_for_each_entry(port, &pcie->ports, list) {
3782bdd5238SSergio Paracuellos u32 slot = port->slot;
3792bdd5238SSergio Paracuellos
3802bdd5238SSergio Paracuellos if (!mt7621_pcie_port_is_linkup(port)) {
38150233e10SSergio Paracuellos dev_info(dev, "pcie%d no card, disable it (RST & CLK)\n",
3822bdd5238SSergio Paracuellos slot);
3832bdd5238SSergio Paracuellos mt7621_control_assert(port);
3842bdd5238SSergio Paracuellos port->enabled = false;
3852bdd5238SSergio Paracuellos num_disabled++;
3862bdd5238SSergio Paracuellos
3872bdd5238SSergio Paracuellos if (slot == 0) {
3882bdd5238SSergio Paracuellos tmp = port;
3892bdd5238SSergio Paracuellos continue;
3902bdd5238SSergio Paracuellos }
3912bdd5238SSergio Paracuellos
3922bdd5238SSergio Paracuellos if (slot == 1 && tmp && !tmp->enabled)
3932bdd5238SSergio Paracuellos phy_power_off(tmp->phy);
3942bdd5238SSergio Paracuellos }
3952bdd5238SSergio Paracuellos }
3962bdd5238SSergio Paracuellos
3972bdd5238SSergio Paracuellos return (num_disabled != PCIE_PORT_CNT) ? 0 : -ENODEV;
3982bdd5238SSergio Paracuellos }
3992bdd5238SSergio Paracuellos
mt7621_pcie_enable_port(struct mt7621_pcie_port * port)4002bdd5238SSergio Paracuellos static void mt7621_pcie_enable_port(struct mt7621_pcie_port *port)
4012bdd5238SSergio Paracuellos {
4022bdd5238SSergio Paracuellos struct mt7621_pcie *pcie = port->pcie;
4032bdd5238SSergio Paracuellos u32 slot = port->slot;
4042bdd5238SSergio Paracuellos u32 val;
4052bdd5238SSergio Paracuellos
4062bdd5238SSergio Paracuellos /* enable pcie interrupt */
4072bdd5238SSergio Paracuellos val = pcie_read(pcie, RALINK_PCI_PCIMSK_ADDR);
4082bdd5238SSergio Paracuellos val |= PCIE_PORT_INT_EN(slot);
4092bdd5238SSergio Paracuellos pcie_write(pcie, val, RALINK_PCI_PCIMSK_ADDR);
4102bdd5238SSergio Paracuellos
4112bdd5238SSergio Paracuellos /* map 2G DDR region */
4122bdd5238SSergio Paracuellos pcie_port_write(port, PCIE_BAR_MAP_MAX | PCIE_BAR_ENABLE,
4132bdd5238SSergio Paracuellos PCI_BASE_ADDRESS_0);
4142bdd5238SSergio Paracuellos
4152bdd5238SSergio Paracuellos /* configure class code and revision ID */
4162bdd5238SSergio Paracuellos pcie_port_write(port, PCIE_CLASS_CODE | PCIE_REVISION_ID,
4172bdd5238SSergio Paracuellos RALINK_PCI_CLASS);
4182bdd5238SSergio Paracuellos
4192bdd5238SSergio Paracuellos /* configure RC FTS number to 250 when it leaves L0s */
4202bdd5238SSergio Paracuellos val = read_config(pcie, slot, PCIE_FTS_NUM);
4212bdd5238SSergio Paracuellos val &= ~PCIE_FTS_NUM_MASK;
4222bdd5238SSergio Paracuellos val |= PCIE_FTS_NUM_L0(0x50);
4232bdd5238SSergio Paracuellos write_config(pcie, slot, PCIE_FTS_NUM, val);
4242bdd5238SSergio Paracuellos }
4252bdd5238SSergio Paracuellos
mt7621_pcie_enable_ports(struct pci_host_bridge * host)4262bdd5238SSergio Paracuellos static int mt7621_pcie_enable_ports(struct pci_host_bridge *host)
4272bdd5238SSergio Paracuellos {
4282bdd5238SSergio Paracuellos struct mt7621_pcie *pcie = pci_host_bridge_priv(host);
4292bdd5238SSergio Paracuellos struct device *dev = pcie->dev;
4302bdd5238SSergio Paracuellos struct mt7621_pcie_port *port;
4312bdd5238SSergio Paracuellos struct resource_entry *entry;
4322bdd5238SSergio Paracuellos int err;
4332bdd5238SSergio Paracuellos
4342bdd5238SSergio Paracuellos entry = resource_list_first_type(&host->windows, IORESOURCE_IO);
4352bdd5238SSergio Paracuellos if (!entry) {
4362bdd5238SSergio Paracuellos dev_err(dev, "cannot get io resource\n");
4372bdd5238SSergio Paracuellos return -EINVAL;
4382bdd5238SSergio Paracuellos }
4392bdd5238SSergio Paracuellos
4402bdd5238SSergio Paracuellos /* Setup MEMWIN and IOWIN */
4412bdd5238SSergio Paracuellos pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
4420c5c62ddSLinus Torvalds pcie_write(pcie, entry->res->start - entry->offset, RALINK_PCI_IOBASE);
4432bdd5238SSergio Paracuellos
4442bdd5238SSergio Paracuellos list_for_each_entry(port, &pcie->ports, list) {
4452bdd5238SSergio Paracuellos if (port->enabled) {
4462bdd5238SSergio Paracuellos err = clk_prepare_enable(port->clk);
4472bdd5238SSergio Paracuellos if (err) {
4482bdd5238SSergio Paracuellos dev_err(dev, "enabling clk pcie%d\n",
4492bdd5238SSergio Paracuellos port->slot);
4502bdd5238SSergio Paracuellos return err;
4512bdd5238SSergio Paracuellos }
4522bdd5238SSergio Paracuellos
4532bdd5238SSergio Paracuellos mt7621_pcie_enable_port(port);
4542bdd5238SSergio Paracuellos dev_info(dev, "PCIE%d enabled\n", port->slot);
4552bdd5238SSergio Paracuellos }
4562bdd5238SSergio Paracuellos }
4572bdd5238SSergio Paracuellos
4582bdd5238SSergio Paracuellos return 0;
4592bdd5238SSergio Paracuellos }
4602bdd5238SSergio Paracuellos
mt7621_pcie_register_host(struct pci_host_bridge * host)4612bdd5238SSergio Paracuellos static int mt7621_pcie_register_host(struct pci_host_bridge *host)
4622bdd5238SSergio Paracuellos {
4632bdd5238SSergio Paracuellos struct mt7621_pcie *pcie = pci_host_bridge_priv(host);
4642bdd5238SSergio Paracuellos
4654793895fSBjorn Helgaas host->ops = &mt7621_pcie_ops;
4662bdd5238SSergio Paracuellos host->sysdata = pcie;
4672bdd5238SSergio Paracuellos return pci_host_probe(host);
4682bdd5238SSergio Paracuellos }
4692bdd5238SSergio Paracuellos
4704793895fSBjorn Helgaas static const struct soc_device_attribute mt7621_pcie_quirks_match[] = {
47119098934SJohn Thomson { .soc_id = "mt7621", .revision = "E2" },
47219098934SJohn Thomson { /* sentinel */ }
4732bdd5238SSergio Paracuellos };
4742bdd5238SSergio Paracuellos
mt7621_pcie_probe(struct platform_device * pdev)4754793895fSBjorn Helgaas static int mt7621_pcie_probe(struct platform_device *pdev)
4762bdd5238SSergio Paracuellos {
4772bdd5238SSergio Paracuellos struct device *dev = &pdev->dev;
4782bdd5238SSergio Paracuellos const struct soc_device_attribute *attr;
4792bdd5238SSergio Paracuellos struct mt7621_pcie_port *port;
4802bdd5238SSergio Paracuellos struct mt7621_pcie *pcie;
4812bdd5238SSergio Paracuellos struct pci_host_bridge *bridge;
4822bdd5238SSergio Paracuellos int err;
4832bdd5238SSergio Paracuellos
4842bdd5238SSergio Paracuellos if (!dev->of_node)
4852bdd5238SSergio Paracuellos return -ENODEV;
4862bdd5238SSergio Paracuellos
4872bdd5238SSergio Paracuellos bridge = devm_pci_alloc_host_bridge(dev, sizeof(*pcie));
4882bdd5238SSergio Paracuellos if (!bridge)
4892bdd5238SSergio Paracuellos return -ENOMEM;
4902bdd5238SSergio Paracuellos
4912bdd5238SSergio Paracuellos pcie = pci_host_bridge_priv(bridge);
4922bdd5238SSergio Paracuellos pcie->dev = dev;
4932bdd5238SSergio Paracuellos platform_set_drvdata(pdev, pcie);
4942bdd5238SSergio Paracuellos INIT_LIST_HEAD(&pcie->ports);
4952bdd5238SSergio Paracuellos
4964793895fSBjorn Helgaas attr = soc_device_match(mt7621_pcie_quirks_match);
4972bdd5238SSergio Paracuellos if (attr)
4982bdd5238SSergio Paracuellos pcie->resets_inverted = true;
4992bdd5238SSergio Paracuellos
5002bdd5238SSergio Paracuellos err = mt7621_pcie_parse_dt(pcie);
5012bdd5238SSergio Paracuellos if (err) {
5022bdd5238SSergio Paracuellos dev_err(dev, "parsing DT failed\n");
5032bdd5238SSergio Paracuellos return err;
5042bdd5238SSergio Paracuellos }
5052bdd5238SSergio Paracuellos
5062bdd5238SSergio Paracuellos err = mt7621_pcie_init_ports(pcie);
5072bdd5238SSergio Paracuellos if (err) {
5082bdd5238SSergio Paracuellos dev_err(dev, "nothing connected in virtual bridges\n");
5092bdd5238SSergio Paracuellos return 0;
5102bdd5238SSergio Paracuellos }
5112bdd5238SSergio Paracuellos
5122bdd5238SSergio Paracuellos err = mt7621_pcie_enable_ports(bridge);
5132bdd5238SSergio Paracuellos if (err) {
5142bdd5238SSergio Paracuellos dev_err(dev, "error enabling pcie ports\n");
5152bdd5238SSergio Paracuellos goto remove_resets;
5162bdd5238SSergio Paracuellos }
5172bdd5238SSergio Paracuellos
5182bdd5238SSergio Paracuellos return mt7621_pcie_register_host(bridge);
5192bdd5238SSergio Paracuellos
5202bdd5238SSergio Paracuellos remove_resets:
5212bdd5238SSergio Paracuellos list_for_each_entry(port, &pcie->ports, list)
5222bdd5238SSergio Paracuellos reset_control_put(port->pcie_rst);
5232bdd5238SSergio Paracuellos
5242bdd5238SSergio Paracuellos return err;
5252bdd5238SSergio Paracuellos }
5262bdd5238SSergio Paracuellos
mt7621_pcie_remove(struct platform_device * pdev)5278c47ac2aSUwe Kleine-König static void mt7621_pcie_remove(struct platform_device *pdev)
5282bdd5238SSergio Paracuellos {
5292bdd5238SSergio Paracuellos struct mt7621_pcie *pcie = platform_get_drvdata(pdev);
5302bdd5238SSergio Paracuellos struct mt7621_pcie_port *port;
5312bdd5238SSergio Paracuellos
5322bdd5238SSergio Paracuellos list_for_each_entry(port, &pcie->ports, list)
5332bdd5238SSergio Paracuellos reset_control_put(port->pcie_rst);
5342bdd5238SSergio Paracuellos }
5352bdd5238SSergio Paracuellos
5364793895fSBjorn Helgaas static const struct of_device_id mt7621_pcie_ids[] = {
5372bdd5238SSergio Paracuellos { .compatible = "mediatek,mt7621-pci" },
5382bdd5238SSergio Paracuellos {},
5392bdd5238SSergio Paracuellos };
5404793895fSBjorn Helgaas MODULE_DEVICE_TABLE(of, mt7621_pcie_ids);
5412bdd5238SSergio Paracuellos
5424793895fSBjorn Helgaas static struct platform_driver mt7621_pcie_driver = {
5434793895fSBjorn Helgaas .probe = mt7621_pcie_probe,
5448c47ac2aSUwe Kleine-König .remove_new = mt7621_pcie_remove,
5452bdd5238SSergio Paracuellos .driver = {
5462bdd5238SSergio Paracuellos .name = "mt7621-pci",
5474b77e4abSSergio Paracuellos .of_match_table = mt7621_pcie_ids,
5482bdd5238SSergio Paracuellos },
5492bdd5238SSergio Paracuellos };
5504793895fSBjorn Helgaas builtin_platform_driver(mt7621_pcie_driver);
551e4b1cd02SSergio Paracuellos
552*142a41daSJeff Johnson MODULE_DESCRIPTION("MediaTek MT7621 PCIe host controller driver");
553e4b1cd02SSergio Paracuellos MODULE_LICENSE("GPL v2");
554