1 // SPDX-License-Identifier: GPL-2.0+
3 * BRIEF MODULE DESCRIPTION
4 * PCI init for Ralink RT2880 solution
11 * May 2009 Bruce Chang
12 * support RT2880/RT3883 PCIe
14 * May 2011 Bruce Chang
15 * support RT6855/MT7620 PCIe
18 #include <linux/bitops.h>
19 #include <linux/clk.h>
20 #include <linux/delay.h>
21 #include <linux/gpio/consumer.h>
22 #include <linux/module.h>
24 #include <linux/of_address.h>
25 #include <linux/of_pci.h>
26 #include <linux/of_platform.h>
27 #include <linux/pci.h>
28 #include <linux/phy/phy.h>
29 #include <linux/platform_device.h>
30 #include <linux/reset.h>
31 #include <linux/sys_soc.h>
35 /* MediaTek-specific configuration registers */
36 #define PCIE_FTS_NUM 0x70c
37 #define PCIE_FTS_NUM_MASK GENMASK(15, 8)
38 #define PCIE_FTS_NUM_L0(x) (((x) & 0xff) << 8)
40 /* Host-PCI bridge registers */
41 #define RALINK_PCI_PCICFG_ADDR 0x0000
42 #define RALINK_PCI_PCIMSK_ADDR 0x000c
43 #define RALINK_PCI_CONFIG_ADDR 0x0020
44 #define RALINK_PCI_CONFIG_DATA 0x0024
45 #define RALINK_PCI_MEMBASE 0x0028
46 #define RALINK_PCI_IOBASE 0x002c
48 /* PCIe RC control registers */
49 #define RALINK_PCI_ID 0x0030
50 #define RALINK_PCI_CLASS 0x0034
51 #define RALINK_PCI_SUBID 0x0038
52 #define RALINK_PCI_STATUS 0x0050
54 /* Some definition values */
55 #define PCIE_REVISION_ID BIT(0)
56 #define PCIE_CLASS_CODE (0x60400 << 8)
57 #define PCIE_BAR_MAP_MAX GENMASK(30, 16)
58 #define PCIE_BAR_ENABLE BIT(0)
59 #define PCIE_PORT_INT_EN(x) BIT(20 + (x))
60 #define PCIE_PORT_LINKUP BIT(0)
61 #define PCIE_PORT_CNT 3
63 #define PERST_DELAY_MS 100
66 * struct mt7621_pcie_port - PCIe port information
67 * @base: I/O mapped register base
69 * @pcie: pointer to PCIe host info
70 * @clk: pointer to the port clock gate
71 * @phy: pointer to PHY control block
72 * @pcie_rst: pointer to port reset control
73 * @gpio_rst: gpio reset
75 * @enabled: indicates if port is enabled
77 struct mt7621_pcie_port {
79 struct list_head list;
80 struct mt7621_pcie *pcie;
83 struct reset_control *pcie_rst;
84 struct gpio_desc *gpio_rst;
90 * struct mt7621_pcie - PCIe host information
91 * @base: IO Mapped Register Base
92 * @dev: Pointer to PCIe device
93 * @ports: pointer to PCIe port information
94 * @resets_inverted: depends on chip revision
95 * reset lines are inverted.
100 struct list_head ports;
101 bool resets_inverted;
104 static inline u32 pcie_read(struct mt7621_pcie *pcie, u32 reg)
106 return readl_relaxed(pcie->base + reg);
109 static inline void pcie_write(struct mt7621_pcie *pcie, u32 val, u32 reg)
111 writel_relaxed(val, pcie->base + reg);
114 static inline u32 pcie_port_read(struct mt7621_pcie_port *port, u32 reg)
116 return readl_relaxed(port->base + reg);
119 static inline void pcie_port_write(struct mt7621_pcie_port *port,
122 writel_relaxed(val, port->base + reg);
125 static void __iomem *mt7621_pcie_map_bus(struct pci_bus *bus,
126 unsigned int devfn, int where)
128 struct mt7621_pcie *pcie = bus->sysdata;
129 u32 address = PCI_CONF1_EXT_ADDRESS(bus->number, PCI_SLOT(devfn),
130 PCI_FUNC(devfn), where);
132 writel_relaxed(address, pcie->base + RALINK_PCI_CONFIG_ADDR);
134 return pcie->base + RALINK_PCI_CONFIG_DATA + (where & 3);
137 static struct pci_ops mt7621_pcie_ops = {
138 .map_bus = mt7621_pcie_map_bus,
139 .read = pci_generic_config_read,
140 .write = pci_generic_config_write,
143 static u32 read_config(struct mt7621_pcie *pcie, unsigned int dev, u32 reg)
145 u32 address = PCI_CONF1_EXT_ADDRESS(0, dev, 0, reg);
147 pcie_write(pcie, address, RALINK_PCI_CONFIG_ADDR);
148 return pcie_read(pcie, RALINK_PCI_CONFIG_DATA);
151 static void write_config(struct mt7621_pcie *pcie, unsigned int dev,
154 u32 address = PCI_CONF1_EXT_ADDRESS(0, dev, 0, reg);
156 pcie_write(pcie, address, RALINK_PCI_CONFIG_ADDR);
157 pcie_write(pcie, val, RALINK_PCI_CONFIG_DATA);
160 static inline void mt7621_rst_gpio_pcie_assert(struct mt7621_pcie_port *port)
163 gpiod_set_value(port->gpio_rst, 1);
166 static inline void mt7621_rst_gpio_pcie_deassert(struct mt7621_pcie_port *port)
169 gpiod_set_value(port->gpio_rst, 0);
172 static inline bool mt7621_pcie_port_is_linkup(struct mt7621_pcie_port *port)
174 return (pcie_port_read(port, RALINK_PCI_STATUS) & PCIE_PORT_LINKUP) != 0;
177 static inline void mt7621_control_assert(struct mt7621_pcie_port *port)
179 struct mt7621_pcie *pcie = port->pcie;
181 if (pcie->resets_inverted)
182 reset_control_assert(port->pcie_rst);
184 reset_control_deassert(port->pcie_rst);
187 static inline void mt7621_control_deassert(struct mt7621_pcie_port *port)
189 struct mt7621_pcie *pcie = port->pcie;
191 if (pcie->resets_inverted)
192 reset_control_deassert(port->pcie_rst);
194 reset_control_assert(port->pcie_rst);
197 static int mt7621_pcie_parse_port(struct mt7621_pcie *pcie,
198 struct device_node *node,
201 struct mt7621_pcie_port *port;
202 struct device *dev = pcie->dev;
203 struct platform_device *pdev = to_platform_device(dev);
207 port = devm_kzalloc(dev, sizeof(*port), GFP_KERNEL);
211 port->base = devm_platform_ioremap_resource(pdev, slot + 1);
212 if (IS_ERR(port->base))
213 return PTR_ERR(port->base);
215 port->clk = devm_get_clk_from_child(dev, node, NULL);
216 if (IS_ERR(port->clk)) {
217 dev_err(dev, "failed to get pcie%d clock\n", slot);
218 return PTR_ERR(port->clk);
221 port->pcie_rst = of_reset_control_get_exclusive(node, NULL);
222 if (PTR_ERR(port->pcie_rst) == -EPROBE_DEFER) {
223 dev_err(dev, "failed to get pcie%d reset control\n", slot);
224 return PTR_ERR(port->pcie_rst);
227 snprintf(name, sizeof(name), "pcie-phy%d", slot);
228 port->phy = devm_of_phy_get(dev, node, name);
229 if (IS_ERR(port->phy)) {
230 dev_err(dev, "failed to get pcie-phy%d\n", slot);
231 err = PTR_ERR(port->phy);
235 port->gpio_rst = devm_gpiod_get_index_optional(dev, "reset", slot,
237 if (IS_ERR(port->gpio_rst)) {
238 dev_err(dev, "failed to get GPIO for PCIe%d\n", slot);
239 err = PTR_ERR(port->gpio_rst);
246 INIT_LIST_HEAD(&port->list);
247 list_add_tail(&port->list, &pcie->ports);
252 reset_control_put(port->pcie_rst);
256 static int mt7621_pcie_parse_dt(struct mt7621_pcie *pcie)
258 struct device *dev = pcie->dev;
259 struct platform_device *pdev = to_platform_device(dev);
260 struct device_node *node = dev->of_node, *child;
263 pcie->base = devm_platform_ioremap_resource(pdev, 0);
264 if (IS_ERR(pcie->base))
265 return PTR_ERR(pcie->base);
267 for_each_available_child_of_node(node, child) {
270 err = of_pci_get_devfn(child);
273 dev_err(dev, "failed to parse devfn: %d\n", err);
277 slot = PCI_SLOT(err);
279 err = mt7621_pcie_parse_port(pcie, child, slot);
289 static int mt7621_pcie_init_port(struct mt7621_pcie_port *port)
291 struct mt7621_pcie *pcie = port->pcie;
292 struct device *dev = pcie->dev;
293 u32 slot = port->slot;
296 err = phy_init(port->phy);
298 dev_err(dev, "failed to initialize port%d phy\n", slot);
302 err = phy_power_on(port->phy);
304 dev_err(dev, "failed to power on port%d phy\n", slot);
309 port->enabled = true;
314 static void mt7621_pcie_reset_assert(struct mt7621_pcie *pcie)
316 struct mt7621_pcie_port *port;
318 list_for_each_entry(port, &pcie->ports, list) {
319 /* PCIe RC reset assert */
320 mt7621_control_assert(port);
322 /* PCIe EP reset assert */
323 mt7621_rst_gpio_pcie_assert(port);
326 msleep(PERST_DELAY_MS);
329 static void mt7621_pcie_reset_rc_deassert(struct mt7621_pcie *pcie)
331 struct mt7621_pcie_port *port;
333 list_for_each_entry(port, &pcie->ports, list)
334 mt7621_control_deassert(port);
337 static void mt7621_pcie_reset_ep_deassert(struct mt7621_pcie *pcie)
339 struct mt7621_pcie_port *port;
341 list_for_each_entry(port, &pcie->ports, list)
342 mt7621_rst_gpio_pcie_deassert(port);
344 msleep(PERST_DELAY_MS);
347 static int mt7621_pcie_init_ports(struct mt7621_pcie *pcie)
349 struct device *dev = pcie->dev;
350 struct mt7621_pcie_port *port, *tmp;
354 mt7621_pcie_reset_assert(pcie);
355 mt7621_pcie_reset_rc_deassert(pcie);
357 list_for_each_entry_safe(port, tmp, &pcie->ports, list) {
358 u32 slot = port->slot;
361 port->enabled = true;
365 err = mt7621_pcie_init_port(port);
367 dev_err(dev, "initializing port %d failed\n", slot);
368 list_del(&port->list);
372 mt7621_pcie_reset_ep_deassert(pcie);
375 list_for_each_entry(port, &pcie->ports, list) {
376 u32 slot = port->slot;
378 if (!mt7621_pcie_port_is_linkup(port)) {
379 dev_err(dev, "pcie%d no card, disable it (RST & CLK)\n",
381 mt7621_control_assert(port);
382 port->enabled = false;
390 if (slot == 1 && tmp && !tmp->enabled)
391 phy_power_off(tmp->phy);
395 return (num_disabled != PCIE_PORT_CNT) ? 0 : -ENODEV;
398 static void mt7621_pcie_enable_port(struct mt7621_pcie_port *port)
400 struct mt7621_pcie *pcie = port->pcie;
401 u32 slot = port->slot;
404 /* enable pcie interrupt */
405 val = pcie_read(pcie, RALINK_PCI_PCIMSK_ADDR);
406 val |= PCIE_PORT_INT_EN(slot);
407 pcie_write(pcie, val, RALINK_PCI_PCIMSK_ADDR);
409 /* map 2G DDR region */
410 pcie_port_write(port, PCIE_BAR_MAP_MAX | PCIE_BAR_ENABLE,
413 /* configure class code and revision ID */
414 pcie_port_write(port, PCIE_CLASS_CODE | PCIE_REVISION_ID,
417 /* configure RC FTS number to 250 when it leaves L0s */
418 val = read_config(pcie, slot, PCIE_FTS_NUM);
419 val &= ~PCIE_FTS_NUM_MASK;
420 val |= PCIE_FTS_NUM_L0(0x50);
421 write_config(pcie, slot, PCIE_FTS_NUM, val);
424 static int mt7621_pcie_enable_ports(struct pci_host_bridge *host)
426 struct mt7621_pcie *pcie = pci_host_bridge_priv(host);
427 struct device *dev = pcie->dev;
428 struct mt7621_pcie_port *port;
429 struct resource_entry *entry;
432 entry = resource_list_first_type(&host->windows, IORESOURCE_IO);
434 dev_err(dev, "cannot get io resource\n");
438 /* Setup MEMWIN and IOWIN */
439 pcie_write(pcie, 0xffffffff, RALINK_PCI_MEMBASE);
440 pcie_write(pcie, entry->res->start - entry->offset, RALINK_PCI_IOBASE);
442 list_for_each_entry(port, &pcie->ports, list) {
444 err = clk_prepare_enable(port->clk);
446 dev_err(dev, "enabling clk pcie%d\n",
451 mt7621_pcie_enable_port(port);
452 dev_info(dev, "PCIE%d enabled\n", port->slot);
459 static int mt7621_pcie_register_host(struct pci_host_bridge *host)
461 struct mt7621_pcie *pcie = pci_host_bridge_priv(host);
463 host->ops = &mt7621_pcie_ops;
464 host->sysdata = pcie;
465 return pci_host_probe(host);
468 static const struct soc_device_attribute mt7621_pcie_quirks_match[] = {
469 { .soc_id = "mt7621", .revision = "E2" },
473 static int mt7621_pcie_probe(struct platform_device *pdev)
475 struct device *dev = &pdev->dev;
476 const struct soc_device_attribute *attr;
477 struct mt7621_pcie_port *port;
478 struct mt7621_pcie *pcie;
479 struct pci_host_bridge *bridge;
485 bridge = devm_pci_alloc_host_bridge(dev, sizeof(*pcie));
489 pcie = pci_host_bridge_priv(bridge);
491 platform_set_drvdata(pdev, pcie);
492 INIT_LIST_HEAD(&pcie->ports);
494 attr = soc_device_match(mt7621_pcie_quirks_match);
496 pcie->resets_inverted = true;
498 err = mt7621_pcie_parse_dt(pcie);
500 dev_err(dev, "parsing DT failed\n");
504 err = mt7621_pcie_init_ports(pcie);
506 dev_err(dev, "nothing connected in virtual bridges\n");
510 err = mt7621_pcie_enable_ports(bridge);
512 dev_err(dev, "error enabling pcie ports\n");
516 return mt7621_pcie_register_host(bridge);
519 list_for_each_entry(port, &pcie->ports, list)
520 reset_control_put(port->pcie_rst);
525 static int mt7621_pcie_remove(struct platform_device *pdev)
527 struct mt7621_pcie *pcie = platform_get_drvdata(pdev);
528 struct mt7621_pcie_port *port;
530 list_for_each_entry(port, &pcie->ports, list)
531 reset_control_put(port->pcie_rst);
536 static const struct of_device_id mt7621_pcie_ids[] = {
537 { .compatible = "mediatek,mt7621-pci" },
540 MODULE_DEVICE_TABLE(of, mt7621_pcie_ids);
542 static struct platform_driver mt7621_pcie_driver = {
543 .probe = mt7621_pcie_probe,
544 .remove = mt7621_pcie_remove,
546 .name = "mt7621-pci",
547 .of_match_table = mt7621_pcie_ids,
550 builtin_platform_driver(mt7621_pcie_driver);
552 MODULE_LICENSE("GPL v2");