blob: bea8dcfc919bb3f5045aa6476cd6d036966b1127 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Anton Schubert9c28d612015-08-11 11:54:01 +02002/*
3 * PCIe driver for Marvell MVEBU SoCs
4 *
5 * Based on Barebox drivers/pci/pci-mvebu.c
6 *
7 * Ported to U-Boot by:
8 * Anton Schubert <anton.schubert@gmx.de>
9 * Stefan Roese <sr@denx.de>
Anton Schubert9c28d612015-08-11 11:54:01 +020010 */
11
12#include <common.h>
Stefan Roese94f453e2019-01-25 11:52:43 +010013#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060014#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070015#include <malloc.h>
Simon Glass401d1c42020-10-30 21:38:53 -060016#include <asm/global_data.h>
Stefan Roese94f453e2019-01-25 11:52:43 +010017#include <dm/device-internal.h>
18#include <dm/lists.h>
19#include <dm/of_access.h>
Anton Schubert9c28d612015-08-11 11:54:01 +020020#include <pci.h>
Anton Schubert9c28d612015-08-11 11:54:01 +020021#include <asm/io.h>
22#include <asm/arch/cpu.h>
23#include <asm/arch/soc.h>
Simon Glasscd93d622020-05-10 11:40:13 -060024#include <linux/bitops.h>
Stefan Roese94f453e2019-01-25 11:52:43 +010025#include <linux/errno.h>
26#include <linux/ioport.h>
Anton Schubert9c28d612015-08-11 11:54:01 +020027#include <linux/mbus.h>
28
29DECLARE_GLOBAL_DATA_PTR;
30
31/* PCIe unit register offsets */
32#define SELECT(x, n) ((x >> n) & 1UL)
33
34#define PCIE_DEV_ID_OFF 0x0000
35#define PCIE_CMD_OFF 0x0004
36#define PCIE_DEV_REV_OFF 0x0008
37#define PCIE_BAR_LO_OFF(n) (0x0010 + ((n) << 3))
38#define PCIE_BAR_HI_OFF(n) (0x0014 + ((n) << 3))
39#define PCIE_CAPAB_OFF 0x0060
40#define PCIE_CTRL_STAT_OFF 0x0068
41#define PCIE_HEADER_LOG_4_OFF 0x0128
42#define PCIE_BAR_CTRL_OFF(n) (0x1804 + (((n) - 1) * 4))
43#define PCIE_WIN04_CTRL_OFF(n) (0x1820 + ((n) << 4))
44#define PCIE_WIN04_BASE_OFF(n) (0x1824 + ((n) << 4))
45#define PCIE_WIN04_REMAP_OFF(n) (0x182c + ((n) << 4))
46#define PCIE_WIN5_CTRL_OFF 0x1880
47#define PCIE_WIN5_BASE_OFF 0x1884
48#define PCIE_WIN5_REMAP_OFF 0x188c
49#define PCIE_CONF_ADDR_OFF 0x18f8
50#define PCIE_CONF_ADDR_EN BIT(31)
51#define PCIE_CONF_REG(r) ((((r) & 0xf00) << 16) | ((r) & 0xfc))
52#define PCIE_CONF_BUS(b) (((b) & 0xff) << 16)
53#define PCIE_CONF_DEV(d) (((d) & 0x1f) << 11)
54#define PCIE_CONF_FUNC(f) (((f) & 0x7) << 8)
55#define PCIE_CONF_ADDR(dev, reg) \
56 (PCIE_CONF_BUS(PCI_BUS(dev)) | PCIE_CONF_DEV(PCI_DEV(dev)) | \
57 PCIE_CONF_FUNC(PCI_FUNC(dev)) | PCIE_CONF_REG(reg) | \
58 PCIE_CONF_ADDR_EN)
59#define PCIE_CONF_DATA_OFF 0x18fc
60#define PCIE_MASK_OFF 0x1910
61#define PCIE_MASK_ENABLE_INTS (0xf << 24)
62#define PCIE_CTRL_OFF 0x1a00
63#define PCIE_CTRL_X1_MODE BIT(0)
64#define PCIE_STAT_OFF 0x1a04
65#define PCIE_STAT_BUS (0xff << 8)
66#define PCIE_STAT_DEV (0x1f << 16)
67#define PCIE_STAT_LINK_DOWN BIT(0)
68#define PCIE_DEBUG_CTRL 0x1a60
69#define PCIE_DEBUG_SOFT_RESET BIT(20)
70
Anton Schubert9c28d612015-08-11 11:54:01 +020071struct mvebu_pcie {
72 struct pci_controller hose;
Anton Schubert9c28d612015-08-11 11:54:01 +020073 void __iomem *base;
74 void __iomem *membase;
75 struct resource mem;
76 void __iomem *iobase;
Phil Sutterba8ae032021-01-03 23:06:46 +010077 struct resource io;
Anton Schubert9c28d612015-08-11 11:54:01 +020078 u32 port;
79 u32 lane;
Stefan Roese94f453e2019-01-25 11:52:43 +010080 int devfn;
Anton Schubert9c28d612015-08-11 11:54:01 +020081 u32 lane_mask;
82 pci_dev_t dev;
Stefan Roese94f453e2019-01-25 11:52:43 +010083 char name[16];
84 unsigned int mem_target;
85 unsigned int mem_attr;
Phil Sutterba8ae032021-01-03 23:06:46 +010086 unsigned int io_target;
87 unsigned int io_attr;
Anton Schubert9c28d612015-08-11 11:54:01 +020088};
89
Anton Schubert9c28d612015-08-11 11:54:01 +020090/*
91 * MVEBU PCIe controller needs MEMORY and I/O BARs to be mapped
VlaoMao49b23e02017-09-22 18:49:02 +030092 * into SoCs address space. Each controller will map 128M of MEM
Anton Schubert9c28d612015-08-11 11:54:01 +020093 * and 64K of I/O space when registered.
94 */
95static void __iomem *mvebu_pcie_membase = (void __iomem *)MBUS_PCI_MEM_BASE;
VlaoMao49b23e02017-09-22 18:49:02 +030096#define PCIE_MEM_SIZE (128 << 20)
Phil Sutterba8ae032021-01-03 23:06:46 +010097static void __iomem *mvebu_pcie_iobase = (void __iomem *)MBUS_PCI_IO_BASE;
Anton Schubert9c28d612015-08-11 11:54:01 +020098
Anton Schubert9c28d612015-08-11 11:54:01 +020099static inline bool mvebu_pcie_link_up(struct mvebu_pcie *pcie)
100{
101 u32 val;
102 val = readl(pcie->base + PCIE_STAT_OFF);
103 return !(val & PCIE_STAT_LINK_DOWN);
104}
105
106static void mvebu_pcie_set_local_bus_nr(struct mvebu_pcie *pcie, int busno)
107{
108 u32 stat;
109
110 stat = readl(pcie->base + PCIE_STAT_OFF);
111 stat &= ~PCIE_STAT_BUS;
112 stat |= busno << 8;
113 writel(stat, pcie->base + PCIE_STAT_OFF);
114}
115
116static void mvebu_pcie_set_local_dev_nr(struct mvebu_pcie *pcie, int devno)
117{
118 u32 stat;
119
120 stat = readl(pcie->base + PCIE_STAT_OFF);
121 stat &= ~PCIE_STAT_DEV;
122 stat |= devno << 16;
123 writel(stat, pcie->base + PCIE_STAT_OFF);
124}
125
126static int mvebu_pcie_get_local_bus_nr(struct mvebu_pcie *pcie)
127{
128 u32 stat;
129
130 stat = readl(pcie->base + PCIE_STAT_OFF);
131 return (stat & PCIE_STAT_BUS) >> 8;
132}
133
134static int mvebu_pcie_get_local_dev_nr(struct mvebu_pcie *pcie)
135{
136 u32 stat;
137
138 stat = readl(pcie->base + PCIE_STAT_OFF);
139 return (stat & PCIE_STAT_DEV) >> 16;
140}
141
142static inline struct mvebu_pcie *hose_to_pcie(struct pci_controller *hose)
143{
144 return container_of(hose, struct mvebu_pcie, hose);
145}
146
Simon Glassc4e72c42020-01-27 08:49:37 -0700147static int mvebu_pcie_read_config(const struct udevice *bus, pci_dev_t bdf,
Stefan Roese94f453e2019-01-25 11:52:43 +0100148 uint offset, ulong *valuep,
149 enum pci_size_t size)
Anton Schubert9c28d612015-08-11 11:54:01 +0200150{
Simon Glassc69cda22020-12-03 16:55:20 -0700151 struct mvebu_pcie *pcie = dev_get_plat(bus);
Anton Schubert9c28d612015-08-11 11:54:01 +0200152 int local_bus = PCI_BUS(pcie->dev);
153 int local_dev = PCI_DEV(pcie->dev);
154 u32 reg;
Stefan Roese94f453e2019-01-25 11:52:43 +0100155 u32 data;
156
Stefan Roese6a2fa282021-01-25 15:25:31 +0100157 debug("PCIE CFG read: loc_bus=%d loc_dev=%d (b,d,f)=(%2d,%2d,%2d) ",
158 local_bus, local_dev, PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf));
Anton Schubert9c28d612015-08-11 11:54:01 +0200159
Stefan Roese6a2fa282021-01-25 15:25:31 +0100160 /* Don't access the local host controller via this API */
161 if (PCI_BUS(bdf) == local_bus && PCI_DEV(bdf) == local_dev) {
162 debug("- skipping host controller\n");
163 *valuep = pci_get_ff(size);
164 return 0;
165 }
166
167 /* If local dev is 0, the first other dev can only be 1 */
168 if (PCI_BUS(bdf) == local_bus && local_dev == 0 && PCI_DEV(bdf) != 1) {
169 debug("- out of range\n");
170 *valuep = pci_get_ff(size);
171 return 0;
Anton Schubert9c28d612015-08-11 11:54:01 +0200172 }
173
174 /* write address */
Stefan Roese94f453e2019-01-25 11:52:43 +0100175 reg = PCIE_CONF_ADDR(bdf, offset);
Anton Schubert9c28d612015-08-11 11:54:01 +0200176 writel(reg, pcie->base + PCIE_CONF_ADDR_OFF);
Stefan Roese94f453e2019-01-25 11:52:43 +0100177 data = readl(pcie->base + PCIE_CONF_DATA_OFF);
178 debug("(addr,val)=(0x%04x, 0x%08x)\n", offset, data);
179 *valuep = pci_conv_32_to_size(data, offset, size);
Anton Schubert9c28d612015-08-11 11:54:01 +0200180
181 return 0;
182}
183
Stefan Roese94f453e2019-01-25 11:52:43 +0100184static int mvebu_pcie_write_config(struct udevice *bus, pci_dev_t bdf,
185 uint offset, ulong value,
186 enum pci_size_t size)
Anton Schubert9c28d612015-08-11 11:54:01 +0200187{
Simon Glassc69cda22020-12-03 16:55:20 -0700188 struct mvebu_pcie *pcie = dev_get_plat(bus);
Anton Schubert9c28d612015-08-11 11:54:01 +0200189 int local_bus = PCI_BUS(pcie->dev);
190 int local_dev = PCI_DEV(pcie->dev);
Stefan Roese94f453e2019-01-25 11:52:43 +0100191 u32 data;
192
Stefan Roese6a2fa282021-01-25 15:25:31 +0100193 debug("PCIE CFG write: loc_bus=%d loc_dev=%d (b,d,f)=(%2d,%2d,%2d) ",
194 local_bus, local_dev, PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf));
Stefan Roese94f453e2019-01-25 11:52:43 +0100195 debug("(addr,val)=(0x%04x, 0x%08lx)\n", offset, value);
Anton Schubert9c28d612015-08-11 11:54:01 +0200196
Stefan Roese6a2fa282021-01-25 15:25:31 +0100197 /* Don't access the local host controller via this API */
198 if (PCI_BUS(bdf) == local_bus && PCI_DEV(bdf) == local_dev) {
199 debug("- skipping host controller\n");
200 return 0;
201 }
202
203 /* If local dev is 0, the first other dev can only be 1 */
204 if (PCI_BUS(bdf) == local_bus && local_dev == 0 && PCI_DEV(bdf) != 1) {
205 debug("- out of range\n");
206 return 0;
Anton Schubert9c28d612015-08-11 11:54:01 +0200207 }
208
Stefan Roese94f453e2019-01-25 11:52:43 +0100209 writel(PCIE_CONF_ADDR(bdf, offset), pcie->base + PCIE_CONF_ADDR_OFF);
210 data = pci_conv_size_to_32(0, value, offset, size);
211 writel(data, pcie->base + PCIE_CONF_DATA_OFF);
Anton Schubert9c28d612015-08-11 11:54:01 +0200212
213 return 0;
214}
215
216/*
217 * Setup PCIE BARs and Address Decode Wins:
218 * BAR[0,2] -> disabled, BAR[1] -> covers all DRAM banks
219 * WIN[0-3] -> DRAM bank[0-3]
220 */
221static void mvebu_pcie_setup_wins(struct mvebu_pcie *pcie)
222{
223 const struct mbus_dram_target_info *dram = mvebu_mbus_dram_info();
224 u32 size;
225 int i;
226
227 /* First, disable and clear BARs and windows. */
228 for (i = 1; i < 3; i++) {
229 writel(0, pcie->base + PCIE_BAR_CTRL_OFF(i));
230 writel(0, pcie->base + PCIE_BAR_LO_OFF(i));
231 writel(0, pcie->base + PCIE_BAR_HI_OFF(i));
232 }
233
234 for (i = 0; i < 5; i++) {
235 writel(0, pcie->base + PCIE_WIN04_CTRL_OFF(i));
236 writel(0, pcie->base + PCIE_WIN04_BASE_OFF(i));
237 writel(0, pcie->base + PCIE_WIN04_REMAP_OFF(i));
238 }
239
240 writel(0, pcie->base + PCIE_WIN5_CTRL_OFF);
241 writel(0, pcie->base + PCIE_WIN5_BASE_OFF);
242 writel(0, pcie->base + PCIE_WIN5_REMAP_OFF);
243
244 /* Setup windows for DDR banks. Count total DDR size on the fly. */
245 size = 0;
246 for (i = 0; i < dram->num_cs; i++) {
247 const struct mbus_dram_window *cs = dram->cs + i;
248
249 writel(cs->base & 0xffff0000,
250 pcie->base + PCIE_WIN04_BASE_OFF(i));
251 writel(0, pcie->base + PCIE_WIN04_REMAP_OFF(i));
252 writel(((cs->size - 1) & 0xffff0000) |
253 (cs->mbus_attr << 8) |
254 (dram->mbus_dram_target_id << 4) | 1,
255 pcie->base + PCIE_WIN04_CTRL_OFF(i));
256
257 size += cs->size;
258 }
259
260 /* Round up 'size' to the nearest power of two. */
261 if ((size & (size - 1)) != 0)
262 size = 1 << fls(size);
263
264 /* Setup BAR[1] to all DRAM banks. */
265 writel(dram->cs[0].base | 0xc, pcie->base + PCIE_BAR_LO_OFF(1));
266 writel(0, pcie->base + PCIE_BAR_HI_OFF(1));
267 writel(((size - 1) & 0xffff0000) | 0x1,
268 pcie->base + PCIE_BAR_CTRL_OFF(1));
269}
270
Stefan Roese94f453e2019-01-25 11:52:43 +0100271static int mvebu_pcie_probe(struct udevice *dev)
Anton Schubert9c28d612015-08-11 11:54:01 +0200272{
Simon Glassc69cda22020-12-03 16:55:20 -0700273 struct mvebu_pcie *pcie = dev_get_plat(dev);
Stefan Roese94f453e2019-01-25 11:52:43 +0100274 struct udevice *ctlr = pci_get_controller(dev);
275 struct pci_controller *hose = dev_get_uclass_priv(ctlr);
Marek Behún201958a2021-02-08 23:01:37 +0100276 int bus = dev_seq(dev);
Anton Schubert9c28d612015-08-11 11:54:01 +0200277 u32 reg;
Anton Schubert9c28d612015-08-11 11:54:01 +0200278
Stefan Roese94f453e2019-01-25 11:52:43 +0100279 debug("%s: PCIe %d.%d - up, base %08x\n", __func__,
280 pcie->port, pcie->lane, (u32)pcie->base);
Anton Schubert9c28d612015-08-11 11:54:01 +0200281
Stefan Roese94f453e2019-01-25 11:52:43 +0100282 /* Read Id info and local bus/dev */
283 debug("direct conf read %08x, local bus %d, local dev %d\n",
284 readl(pcie->base), mvebu_pcie_get_local_bus_nr(pcie),
285 mvebu_pcie_get_local_dev_nr(pcie));
Anton Schubert9c28d612015-08-11 11:54:01 +0200286
Stefan Roese94f453e2019-01-25 11:52:43 +0100287 mvebu_pcie_set_local_bus_nr(pcie, bus);
288 mvebu_pcie_set_local_dev_nr(pcie, 0);
289 pcie->dev = PCI_BDF(bus, 0, 0);
Anton Schubert9c28d612015-08-11 11:54:01 +0200290
Stefan Roese94f453e2019-01-25 11:52:43 +0100291 pcie->mem.start = (u32)mvebu_pcie_membase;
292 pcie->mem.end = pcie->mem.start + PCIE_MEM_SIZE - 1;
293 mvebu_pcie_membase += PCIE_MEM_SIZE;
294
295 if (mvebu_mbus_add_window_by_id(pcie->mem_target, pcie->mem_attr,
296 (phys_addr_t)pcie->mem.start,
297 PCIE_MEM_SIZE)) {
298 printf("PCIe unable to add mbus window for mem at %08x+%08x\n",
299 (u32)pcie->mem.start, PCIE_MEM_SIZE);
300 }
301
Phil Sutterba8ae032021-01-03 23:06:46 +0100302 pcie->io.start = (u32)mvebu_pcie_iobase;
303 pcie->io.end = pcie->io.start + MBUS_PCI_IO_SIZE - 1;
304 mvebu_pcie_iobase += MBUS_PCI_IO_SIZE;
305
306 if (mvebu_mbus_add_window_by_id(pcie->io_target, pcie->io_attr,
307 (phys_addr_t)pcie->io.start,
308 MBUS_PCI_IO_SIZE)) {
309 printf("PCIe unable to add mbus window for IO at %08x+%08x\n",
310 (u32)pcie->io.start, MBUS_PCI_IO_SIZE);
311 }
312
Stefan Roese94f453e2019-01-25 11:52:43 +0100313 /* Setup windows and configure host bridge */
314 mvebu_pcie_setup_wins(pcie);
315
316 /* Master + slave enable. */
317 reg = readl(pcie->base + PCIE_CMD_OFF);
318 reg |= PCI_COMMAND_MEMORY;
Phil Sutterba8ae032021-01-03 23:06:46 +0100319 reg |= PCI_COMMAND_IO;
Stefan Roese94f453e2019-01-25 11:52:43 +0100320 reg |= PCI_COMMAND_MASTER;
321 reg |= BIT(10); /* disable interrupts */
322 writel(reg, pcie->base + PCIE_CMD_OFF);
323
Stefan Roese94f453e2019-01-25 11:52:43 +0100324 /* PCI memory space */
325 pci_set_region(hose->regions + 0, pcie->mem.start,
326 pcie->mem.start, PCIE_MEM_SIZE, PCI_REGION_MEM);
327 pci_set_region(hose->regions + 1,
328 0, 0,
329 gd->ram_size,
330 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
Phil Sutterba8ae032021-01-03 23:06:46 +0100331 pci_set_region(hose->regions + 2, pcie->io.start,
332 pcie->io.start, MBUS_PCI_IO_SIZE, PCI_REGION_IO);
333 hose->region_count = 3;
Stefan Roese94f453e2019-01-25 11:52:43 +0100334
Marek Behún193a1e92019-08-07 15:01:56 +0200335 /* Set BAR0 to internal registers */
336 writel(SOC_REGS_PHY_BASE, pcie->base + PCIE_BAR_LO_OFF(0));
337 writel(0, pcie->base + PCIE_BAR_HI_OFF(0));
338
Stefan Roese94f453e2019-01-25 11:52:43 +0100339 return 0;
340}
341
342static int mvebu_pcie_port_parse_dt(ofnode node, struct mvebu_pcie *pcie)
343{
344 const u32 *addr;
345 int len;
346
347 addr = ofnode_get_property(node, "assigned-addresses", &len);
348 if (!addr) {
349 pr_err("property \"assigned-addresses\" not found");
350 return -FDT_ERR_NOTFOUND;
351 }
352
353 pcie->base = (void *)(fdt32_to_cpu(addr[2]) + SOC_REGS_PHY_BASE);
354
355 return 0;
356}
357
358#define DT_FLAGS_TO_TYPE(flags) (((flags) >> 24) & 0x03)
359#define DT_TYPE_IO 0x1
360#define DT_TYPE_MEM32 0x2
361#define DT_CPUADDR_TO_TARGET(cpuaddr) (((cpuaddr) >> 56) & 0xFF)
362#define DT_CPUADDR_TO_ATTR(cpuaddr) (((cpuaddr) >> 48) & 0xFF)
363
364static int mvebu_get_tgt_attr(ofnode node, int devfn,
365 unsigned long type,
366 unsigned int *tgt,
367 unsigned int *attr)
368{
369 const int na = 3, ns = 2;
370 const __be32 *range;
371 int rlen, nranges, rangesz, pna, i;
372
373 *tgt = -1;
374 *attr = -1;
375
376 range = ofnode_get_property(node, "ranges", &rlen);
377 if (!range)
378 return -EINVAL;
379
Stefan Roese0df62e82019-02-11 07:53:34 +0100380 /*
381 * Linux uses of_n_addr_cells() to get the number of address cells
382 * here. Currently this function is only available in U-Boot when
383 * CONFIG_OF_LIVE is enabled. Until this is enabled for MVEBU in
384 * general, lets't hardcode the "pna" value in the U-Boot code.
385 */
Stefan Roese94f453e2019-01-25 11:52:43 +0100386 pna = 2; /* hardcoded for now because of lack of of_n_addr_cells() */
387 rangesz = pna + na + ns;
388 nranges = rlen / sizeof(__be32) / rangesz;
389
390 for (i = 0; i < nranges; i++, range += rangesz) {
391 u32 flags = of_read_number(range, 1);
392 u32 slot = of_read_number(range + 1, 1);
393 u64 cpuaddr = of_read_number(range + na, pna);
394 unsigned long rtype;
395
396 if (DT_FLAGS_TO_TYPE(flags) == DT_TYPE_IO)
397 rtype = IORESOURCE_IO;
398 else if (DT_FLAGS_TO_TYPE(flags) == DT_TYPE_MEM32)
399 rtype = IORESOURCE_MEM;
400 else
Anton Schubert9c28d612015-08-11 11:54:01 +0200401 continue;
Anton Schubert9c28d612015-08-11 11:54:01 +0200402
Stefan Roese94f453e2019-01-25 11:52:43 +0100403 /*
404 * The Linux code used PCI_SLOT() here, which expects devfn
405 * in bits 7..0. PCI_DEV() in U-Boot is similar to PCI_SLOT(),
406 * only expects devfn in 15..8, where its saved in this driver.
407 */
408 if (slot == PCI_DEV(devfn) && type == rtype) {
409 *tgt = DT_CPUADDR_TO_TARGET(cpuaddr);
410 *attr = DT_CPUADDR_TO_ATTR(cpuaddr);
411 return 0;
Phil Sutter9a045272015-12-25 14:41:20 +0100412 }
Anton Schubert9c28d612015-08-11 11:54:01 +0200413 }
Stefan Roese94f453e2019-01-25 11:52:43 +0100414
415 return -ENOENT;
Anton Schubert9c28d612015-08-11 11:54:01 +0200416}
Stefan Roese94f453e2019-01-25 11:52:43 +0100417
Simon Glassd1998a92020-12-03 16:55:21 -0700418static int mvebu_pcie_of_to_plat(struct udevice *dev)
Stefan Roese94f453e2019-01-25 11:52:43 +0100419{
Simon Glassc69cda22020-12-03 16:55:20 -0700420 struct mvebu_pcie *pcie = dev_get_plat(dev);
Stefan Roese94f453e2019-01-25 11:52:43 +0100421 int ret = 0;
422
423 /* Get port number, lane number and memory target / attr */
424 if (ofnode_read_u32(dev_ofnode(dev), "marvell,pcie-port",
425 &pcie->port)) {
426 ret = -ENODEV;
427 goto err;
428 }
429
430 if (ofnode_read_u32(dev_ofnode(dev), "marvell,pcie-lane", &pcie->lane))
431 pcie->lane = 0;
432
433 sprintf(pcie->name, "pcie%d.%d", pcie->port, pcie->lane);
434
435 /* pci_get_devfn() returns devfn in bits 15..8, see PCI_DEV usage */
436 pcie->devfn = pci_get_devfn(dev);
437 if (pcie->devfn < 0) {
438 ret = -ENODEV;
439 goto err;
440 }
441
442 ret = mvebu_get_tgt_attr(dev_ofnode(dev->parent), pcie->devfn,
443 IORESOURCE_MEM,
444 &pcie->mem_target, &pcie->mem_attr);
445 if (ret < 0) {
446 printf("%s: cannot get tgt/attr for mem window\n", pcie->name);
447 goto err;
448 }
449
Phil Sutterba8ae032021-01-03 23:06:46 +0100450 ret = mvebu_get_tgt_attr(dev_ofnode(dev->parent), pcie->devfn,
451 IORESOURCE_IO,
452 &pcie->io_target, &pcie->io_attr);
453 if (ret < 0) {
454 printf("%s: cannot get tgt/attr for IO window\n", pcie->name);
455 goto err;
456 }
457
Stefan Roese94f453e2019-01-25 11:52:43 +0100458 /* Parse PCIe controller register base from DT */
459 ret = mvebu_pcie_port_parse_dt(dev_ofnode(dev), pcie);
460 if (ret < 0)
461 goto err;
462
463 /* Check link and skip ports that have no link */
464 if (!mvebu_pcie_link_up(pcie)) {
465 debug("%s: %s - down\n", __func__, pcie->name);
466 ret = -ENODEV;
467 goto err;
468 }
469
470 return 0;
471
472err:
473 return ret;
474}
475
476static const struct dm_pci_ops mvebu_pcie_ops = {
477 .read_config = mvebu_pcie_read_config,
478 .write_config = mvebu_pcie_write_config,
479};
480
481static struct driver pcie_mvebu_drv = {
482 .name = "pcie_mvebu",
483 .id = UCLASS_PCI,
484 .ops = &mvebu_pcie_ops,
485 .probe = mvebu_pcie_probe,
Simon Glassd1998a92020-12-03 16:55:21 -0700486 .of_to_plat = mvebu_pcie_of_to_plat,
Simon Glasscaa4daa2020-12-03 16:55:18 -0700487 .plat_auto = sizeof(struct mvebu_pcie),
Stefan Roese94f453e2019-01-25 11:52:43 +0100488};
489
490/*
491 * Use a MISC device to bind the n instances (child nodes) of the
492 * PCIe base controller in UCLASS_PCI.
493 */
494static int mvebu_pcie_bind(struct udevice *parent)
495{
496 struct mvebu_pcie *pcie;
497 struct uclass_driver *drv;
498 struct udevice *dev;
499 ofnode subnode;
500
501 /* Lookup eth driver */
502 drv = lists_uclass_lookup(UCLASS_PCI);
503 if (!drv) {
504 puts("Cannot find PCI driver\n");
505 return -ENOENT;
506 }
507
508 ofnode_for_each_subnode(subnode, dev_ofnode(parent)) {
509 if (!ofnode_is_available(subnode))
510 continue;
511
512 pcie = calloc(1, sizeof(*pcie));
513 if (!pcie)
514 return -ENOMEM;
515
516 /* Create child device UCLASS_PCI and bind it */
Simon Glass734206d2020-11-28 17:50:01 -0700517 device_bind(parent, &pcie_mvebu_drv, pcie->name, pcie, subnode,
518 &dev);
Stefan Roese94f453e2019-01-25 11:52:43 +0100519 }
520
521 return 0;
522}
523
524static const struct udevice_id mvebu_pcie_ids[] = {
525 { .compatible = "marvell,armada-xp-pcie" },
526 { .compatible = "marvell,armada-370-pcie" },
527 { }
528};
529
530U_BOOT_DRIVER(pcie_mvebu_base) = {
531 .name = "pcie_mvebu_base",
532 .id = UCLASS_MISC,
533 .of_match = mvebu_pcie_ids,
534 .bind = mvebu_pcie_bind,
535};