1 // SPDX-License-Identifier: GPL-2.0
3 * PCIe driver for Marvell MVEBU SoCs
5 * Based on Barebox drivers/pci/pci-mvebu.c
8 * Anton Schubert <anton.schubert@gmx.de>
9 * Stefan Roese <sr@denx.de>
14 #include <dm/device-internal.h>
16 #include <dm/of_access.h>
19 #include <asm/arch/cpu.h>
20 #include <asm/arch/soc.h>
21 #include <linux/errno.h>
22 #include <linux/ioport.h>
23 #include <linux/mbus.h>
25 DECLARE_GLOBAL_DATA_PTR;
27 /* PCIe unit register offsets */
28 #define SELECT(x, n) ((x >> n) & 1UL)
30 #define PCIE_DEV_ID_OFF 0x0000
31 #define PCIE_CMD_OFF 0x0004
32 #define PCIE_DEV_REV_OFF 0x0008
33 #define PCIE_BAR_LO_OFF(n) (0x0010 + ((n) << 3))
34 #define PCIE_BAR_HI_OFF(n) (0x0014 + ((n) << 3))
35 #define PCIE_CAPAB_OFF 0x0060
36 #define PCIE_CTRL_STAT_OFF 0x0068
37 #define PCIE_HEADER_LOG_4_OFF 0x0128
38 #define PCIE_BAR_CTRL_OFF(n) (0x1804 + (((n) - 1) * 4))
39 #define PCIE_WIN04_CTRL_OFF(n) (0x1820 + ((n) << 4))
40 #define PCIE_WIN04_BASE_OFF(n) (0x1824 + ((n) << 4))
41 #define PCIE_WIN04_REMAP_OFF(n) (0x182c + ((n) << 4))
42 #define PCIE_WIN5_CTRL_OFF 0x1880
43 #define PCIE_WIN5_BASE_OFF 0x1884
44 #define PCIE_WIN5_REMAP_OFF 0x188c
45 #define PCIE_CONF_ADDR_OFF 0x18f8
46 #define PCIE_CONF_ADDR_EN BIT(31)
47 #define PCIE_CONF_REG(r) ((((r) & 0xf00) << 16) | ((r) & 0xfc))
48 #define PCIE_CONF_BUS(b) (((b) & 0xff) << 16)
49 #define PCIE_CONF_DEV(d) (((d) & 0x1f) << 11)
50 #define PCIE_CONF_FUNC(f) (((f) & 0x7) << 8)
51 #define PCIE_CONF_ADDR(dev, reg) \
52 (PCIE_CONF_BUS(PCI_BUS(dev)) | PCIE_CONF_DEV(PCI_DEV(dev)) | \
53 PCIE_CONF_FUNC(PCI_FUNC(dev)) | PCIE_CONF_REG(reg) | \
55 #define PCIE_CONF_DATA_OFF 0x18fc
56 #define PCIE_MASK_OFF 0x1910
57 #define PCIE_MASK_ENABLE_INTS (0xf << 24)
58 #define PCIE_CTRL_OFF 0x1a00
59 #define PCIE_CTRL_X1_MODE BIT(0)
60 #define PCIE_STAT_OFF 0x1a04
61 #define PCIE_STAT_BUS (0xff << 8)
62 #define PCIE_STAT_DEV (0x1f << 16)
63 #define PCIE_STAT_LINK_DOWN BIT(0)
64 #define PCIE_DEBUG_CTRL 0x1a60
65 #define PCIE_DEBUG_SOFT_RESET BIT(20)
68 struct pci_controller hose;
70 void __iomem *membase;
79 unsigned int mem_target;
80 unsigned int mem_attr;
84 * MVEBU PCIe controller needs MEMORY and I/O BARs to be mapped
85 * into SoCs address space. Each controller will map 128M of MEM
86 * and 64K of I/O space when registered.
88 static void __iomem *mvebu_pcie_membase = (void __iomem *)MBUS_PCI_MEM_BASE;
89 #define PCIE_MEM_SIZE (128 << 20)
91 static inline bool mvebu_pcie_link_up(struct mvebu_pcie *pcie)
94 val = readl(pcie->base + PCIE_STAT_OFF);
95 return !(val & PCIE_STAT_LINK_DOWN);
98 static void mvebu_pcie_set_local_bus_nr(struct mvebu_pcie *pcie, int busno)
102 stat = readl(pcie->base + PCIE_STAT_OFF);
103 stat &= ~PCIE_STAT_BUS;
105 writel(stat, pcie->base + PCIE_STAT_OFF);
108 static void mvebu_pcie_set_local_dev_nr(struct mvebu_pcie *pcie, int devno)
112 stat = readl(pcie->base + PCIE_STAT_OFF);
113 stat &= ~PCIE_STAT_DEV;
115 writel(stat, pcie->base + PCIE_STAT_OFF);
118 static int mvebu_pcie_get_local_bus_nr(struct mvebu_pcie *pcie)
122 stat = readl(pcie->base + PCIE_STAT_OFF);
123 return (stat & PCIE_STAT_BUS) >> 8;
126 static int mvebu_pcie_get_local_dev_nr(struct mvebu_pcie *pcie)
130 stat = readl(pcie->base + PCIE_STAT_OFF);
131 return (stat & PCIE_STAT_DEV) >> 16;
134 static inline struct mvebu_pcie *hose_to_pcie(struct pci_controller *hose)
136 return container_of(hose, struct mvebu_pcie, hose);
139 static int mvebu_pcie_read_config(struct udevice *bus, pci_dev_t bdf,
140 uint offset, ulong *valuep,
141 enum pci_size_t size)
143 struct mvebu_pcie *pcie = dev_get_platdata(bus);
144 int local_bus = PCI_BUS(pcie->dev);
145 int local_dev = PCI_DEV(pcie->dev);
149 debug("PCIE CFG read: (b,d,f)=(%2d,%2d,%2d) ",
150 PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf));
152 /* Only allow one other device besides the local one on the local bus */
153 if (PCI_BUS(bdf) == local_bus && PCI_DEV(bdf) != local_dev) {
154 if (local_dev == 0 && PCI_DEV(bdf) != 1) {
155 debug("- out of range\n");
157 * If local dev is 0, the first other dev can
160 *valuep = pci_get_ff(size);
162 } else if (local_dev != 0 && PCI_DEV(bdf) != 0) {
163 debug("- out of range\n");
165 * If local dev is not 0, the first other dev can
168 *valuep = pci_get_ff(size);
174 reg = PCIE_CONF_ADDR(bdf, offset);
175 writel(reg, pcie->base + PCIE_CONF_ADDR_OFF);
176 data = readl(pcie->base + PCIE_CONF_DATA_OFF);
177 debug("(addr,val)=(0x%04x, 0x%08x)\n", offset, data);
178 *valuep = pci_conv_32_to_size(data, offset, size);
183 static int mvebu_pcie_write_config(struct udevice *bus, pci_dev_t bdf,
184 uint offset, ulong value,
185 enum pci_size_t size)
187 struct mvebu_pcie *pcie = dev_get_platdata(bus);
188 int local_bus = PCI_BUS(pcie->dev);
189 int local_dev = PCI_DEV(pcie->dev);
192 debug("PCIE CFG write: (b,d,f)=(%2d,%2d,%2d) ",
193 PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf));
194 debug("(addr,val)=(0x%04x, 0x%08lx)\n", offset, value);
196 /* Only allow one other device besides the local one on the local bus */
197 if (PCI_BUS(bdf) == local_bus && PCI_DEV(bdf) != local_dev) {
198 if (local_dev == 0 && PCI_DEV(bdf) != 1) {
200 * If local dev is 0, the first other dev can
204 } else if (local_dev != 0 && PCI_DEV(bdf) != 0) {
206 * If local dev is not 0, the first other dev can
213 writel(PCIE_CONF_ADDR(bdf, offset), pcie->base + PCIE_CONF_ADDR_OFF);
214 data = pci_conv_size_to_32(0, value, offset, size);
215 writel(data, pcie->base + PCIE_CONF_DATA_OFF);
221 * Setup PCIE BARs and Address Decode Wins:
222 * BAR[0,2] -> disabled, BAR[1] -> covers all DRAM banks
223 * WIN[0-3] -> DRAM bank[0-3]
225 static void mvebu_pcie_setup_wins(struct mvebu_pcie *pcie)
227 const struct mbus_dram_target_info *dram = mvebu_mbus_dram_info();
231 /* First, disable and clear BARs and windows. */
232 for (i = 1; i < 3; i++) {
233 writel(0, pcie->base + PCIE_BAR_CTRL_OFF(i));
234 writel(0, pcie->base + PCIE_BAR_LO_OFF(i));
235 writel(0, pcie->base + PCIE_BAR_HI_OFF(i));
238 for (i = 0; i < 5; i++) {
239 writel(0, pcie->base + PCIE_WIN04_CTRL_OFF(i));
240 writel(0, pcie->base + PCIE_WIN04_BASE_OFF(i));
241 writel(0, pcie->base + PCIE_WIN04_REMAP_OFF(i));
244 writel(0, pcie->base + PCIE_WIN5_CTRL_OFF);
245 writel(0, pcie->base + PCIE_WIN5_BASE_OFF);
246 writel(0, pcie->base + PCIE_WIN5_REMAP_OFF);
248 /* Setup windows for DDR banks. Count total DDR size on the fly. */
250 for (i = 0; i < dram->num_cs; i++) {
251 const struct mbus_dram_window *cs = dram->cs + i;
253 writel(cs->base & 0xffff0000,
254 pcie->base + PCIE_WIN04_BASE_OFF(i));
255 writel(0, pcie->base + PCIE_WIN04_REMAP_OFF(i));
256 writel(((cs->size - 1) & 0xffff0000) |
257 (cs->mbus_attr << 8) |
258 (dram->mbus_dram_target_id << 4) | 1,
259 pcie->base + PCIE_WIN04_CTRL_OFF(i));
264 /* Round up 'size' to the nearest power of two. */
265 if ((size & (size - 1)) != 0)
266 size = 1 << fls(size);
268 /* Setup BAR[1] to all DRAM banks. */
269 writel(dram->cs[0].base | 0xc, pcie->base + PCIE_BAR_LO_OFF(1));
270 writel(0, pcie->base + PCIE_BAR_HI_OFF(1));
271 writel(((size - 1) & 0xffff0000) | 0x1,
272 pcie->base + PCIE_BAR_CTRL_OFF(1));
275 static int mvebu_pcie_probe(struct udevice *dev)
277 struct mvebu_pcie *pcie = dev_get_platdata(dev);
278 struct udevice *ctlr = pci_get_controller(dev);
279 struct pci_controller *hose = dev_get_uclass_priv(ctlr);
283 debug("%s: PCIe %d.%d - up, base %08x\n", __func__,
284 pcie->port, pcie->lane, (u32)pcie->base);
286 /* Read Id info and local bus/dev */
287 debug("direct conf read %08x, local bus %d, local dev %d\n",
288 readl(pcie->base), mvebu_pcie_get_local_bus_nr(pcie),
289 mvebu_pcie_get_local_dev_nr(pcie));
291 mvebu_pcie_set_local_bus_nr(pcie, bus);
292 mvebu_pcie_set_local_dev_nr(pcie, 0);
293 pcie->dev = PCI_BDF(bus, 0, 0);
295 pcie->mem.start = (u32)mvebu_pcie_membase;
296 pcie->mem.end = pcie->mem.start + PCIE_MEM_SIZE - 1;
297 mvebu_pcie_membase += PCIE_MEM_SIZE;
299 if (mvebu_mbus_add_window_by_id(pcie->mem_target, pcie->mem_attr,
300 (phys_addr_t)pcie->mem.start,
302 printf("PCIe unable to add mbus window for mem at %08x+%08x\n",
303 (u32)pcie->mem.start, PCIE_MEM_SIZE);
306 /* Setup windows and configure host bridge */
307 mvebu_pcie_setup_wins(pcie);
309 /* Master + slave enable. */
310 reg = readl(pcie->base + PCIE_CMD_OFF);
311 reg |= PCI_COMMAND_MEMORY;
312 reg |= PCI_COMMAND_MASTER;
313 reg |= BIT(10); /* disable interrupts */
314 writel(reg, pcie->base + PCIE_CMD_OFF);
316 /* Set BAR0 to internal registers */
317 writel(SOC_REGS_PHY_BASE, pcie->base + PCIE_BAR_LO_OFF(0));
318 writel(0, pcie->base + PCIE_BAR_HI_OFF(0));
320 /* PCI memory space */
321 pci_set_region(hose->regions + 0, pcie->mem.start,
322 pcie->mem.start, PCIE_MEM_SIZE, PCI_REGION_MEM);
323 pci_set_region(hose->regions + 1,
326 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
327 hose->region_count = 2;
334 static int mvebu_pcie_port_parse_dt(ofnode node, struct mvebu_pcie *pcie)
339 addr = ofnode_get_property(node, "assigned-addresses", &len);
341 pr_err("property \"assigned-addresses\" not found");
342 return -FDT_ERR_NOTFOUND;
345 pcie->base = (void *)(fdt32_to_cpu(addr[2]) + SOC_REGS_PHY_BASE);
350 #define DT_FLAGS_TO_TYPE(flags) (((flags) >> 24) & 0x03)
351 #define DT_TYPE_IO 0x1
352 #define DT_TYPE_MEM32 0x2
353 #define DT_CPUADDR_TO_TARGET(cpuaddr) (((cpuaddr) >> 56) & 0xFF)
354 #define DT_CPUADDR_TO_ATTR(cpuaddr) (((cpuaddr) >> 48) & 0xFF)
356 static int mvebu_get_tgt_attr(ofnode node, int devfn,
361 const int na = 3, ns = 2;
363 int rlen, nranges, rangesz, pna, i;
368 range = ofnode_get_property(node, "ranges", &rlen);
372 pna = 2; /* hardcoded for now because of lack of of_n_addr_cells() */
373 rangesz = pna + na + ns;
374 nranges = rlen / sizeof(__be32) / rangesz;
376 for (i = 0; i < nranges; i++, range += rangesz) {
377 u32 flags = of_read_number(range, 1);
378 u32 slot = of_read_number(range + 1, 1);
379 u64 cpuaddr = of_read_number(range + na, pna);
382 if (DT_FLAGS_TO_TYPE(flags) == DT_TYPE_IO)
383 rtype = IORESOURCE_IO;
384 else if (DT_FLAGS_TO_TYPE(flags) == DT_TYPE_MEM32)
385 rtype = IORESOURCE_MEM;
390 * The Linux code used PCI_SLOT() here, which expects devfn
391 * in bits 7..0. PCI_DEV() in U-Boot is similar to PCI_SLOT(),
392 * only expects devfn in 15..8, where its saved in this driver.
394 if (slot == PCI_DEV(devfn) && type == rtype) {
395 *tgt = DT_CPUADDR_TO_TARGET(cpuaddr);
396 *attr = DT_CPUADDR_TO_ATTR(cpuaddr);
404 static int mvebu_pcie_ofdata_to_platdata(struct udevice *dev)
406 struct mvebu_pcie *pcie = dev_get_platdata(dev);
409 /* Get port number, lane number and memory target / attr */
410 if (ofnode_read_u32(dev_ofnode(dev), "marvell,pcie-port",
416 if (ofnode_read_u32(dev_ofnode(dev), "marvell,pcie-lane", &pcie->lane))
419 sprintf(pcie->name, "pcie%d.%d", pcie->port, pcie->lane);
421 /* pci_get_devfn() returns devfn in bits 15..8, see PCI_DEV usage */
422 pcie->devfn = pci_get_devfn(dev);
423 if (pcie->devfn < 0) {
428 ret = mvebu_get_tgt_attr(dev_ofnode(dev->parent), pcie->devfn,
430 &pcie->mem_target, &pcie->mem_attr);
432 printf("%s: cannot get tgt/attr for mem window\n", pcie->name);
436 /* Parse PCIe controller register base from DT */
437 ret = mvebu_pcie_port_parse_dt(dev_ofnode(dev), pcie);
441 /* Check link and skip ports that have no link */
442 if (!mvebu_pcie_link_up(pcie)) {
443 debug("%s: %s - down\n", __func__, pcie->name);
454 static const struct dm_pci_ops mvebu_pcie_ops = {
455 .read_config = mvebu_pcie_read_config,
456 .write_config = mvebu_pcie_write_config,
459 static struct driver pcie_mvebu_drv = {
460 .name = "pcie_mvebu",
462 .ops = &mvebu_pcie_ops,
463 .probe = mvebu_pcie_probe,
464 .ofdata_to_platdata = mvebu_pcie_ofdata_to_platdata,
465 .platdata_auto_alloc_size = sizeof(struct mvebu_pcie),
469 * Use a MISC device to bind the n instances (child nodes) of the
470 * PCIe base controller in UCLASS_PCI.
472 static int mvebu_pcie_bind(struct udevice *parent)
474 struct mvebu_pcie *pcie;
475 struct uclass_driver *drv;
479 /* Lookup eth driver */
480 drv = lists_uclass_lookup(UCLASS_PCI);
482 puts("Cannot find PCI driver\n");
486 ofnode_for_each_subnode(subnode, dev_ofnode(parent)) {
487 if (!ofnode_is_available(subnode))
490 pcie = calloc(1, sizeof(*pcie));
494 /* Create child device UCLASS_PCI and bind it */
495 device_bind_ofnode(parent, &pcie_mvebu_drv, pcie->name, pcie,
502 static const struct udevice_id mvebu_pcie_ids[] = {
503 { .compatible = "marvell,armada-xp-pcie" },
504 { .compatible = "marvell,armada-370-pcie" },
508 U_BOOT_DRIVER(pcie_mvebu_base) = {
509 .name = "pcie_mvebu_base",
511 .of_match = mvebu_pcie_ids,
512 .bind = mvebu_pcie_bind,