blob: 374c4aa2432e8f55bc96002e3a97f2867965289b [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Anton Schubert98530e92015-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 Schubert98530e92015-08-11 11:54:01 +020010 */
11
12#include <common.h>
Stefan Roese3179ec62019-01-25 11:52:43 +010013#include <dm.h>
Simon Glass0f2af882020-05-10 11:40:05 -060014#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070015#include <malloc.h>
Stefan Roese3179ec62019-01-25 11:52:43 +010016#include <dm/device-internal.h>
17#include <dm/lists.h>
18#include <dm/of_access.h>
Anton Schubert98530e92015-08-11 11:54:01 +020019#include <pci.h>
Anton Schubert98530e92015-08-11 11:54:01 +020020#include <asm/io.h>
21#include <asm/arch/cpu.h>
22#include <asm/arch/soc.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060023#include <linux/bitops.h>
Stefan Roese3179ec62019-01-25 11:52:43 +010024#include <linux/errno.h>
25#include <linux/ioport.h>
Anton Schubert98530e92015-08-11 11:54:01 +020026#include <linux/mbus.h>
27
28DECLARE_GLOBAL_DATA_PTR;
29
30/* PCIe unit register offsets */
31#define SELECT(x, n) ((x >> n) & 1UL)
32
33#define PCIE_DEV_ID_OFF 0x0000
34#define PCIE_CMD_OFF 0x0004
35#define PCIE_DEV_REV_OFF 0x0008
36#define PCIE_BAR_LO_OFF(n) (0x0010 + ((n) << 3))
37#define PCIE_BAR_HI_OFF(n) (0x0014 + ((n) << 3))
38#define PCIE_CAPAB_OFF 0x0060
39#define PCIE_CTRL_STAT_OFF 0x0068
40#define PCIE_HEADER_LOG_4_OFF 0x0128
41#define PCIE_BAR_CTRL_OFF(n) (0x1804 + (((n) - 1) * 4))
42#define PCIE_WIN04_CTRL_OFF(n) (0x1820 + ((n) << 4))
43#define PCIE_WIN04_BASE_OFF(n) (0x1824 + ((n) << 4))
44#define PCIE_WIN04_REMAP_OFF(n) (0x182c + ((n) << 4))
45#define PCIE_WIN5_CTRL_OFF 0x1880
46#define PCIE_WIN5_BASE_OFF 0x1884
47#define PCIE_WIN5_REMAP_OFF 0x188c
48#define PCIE_CONF_ADDR_OFF 0x18f8
49#define PCIE_CONF_ADDR_EN BIT(31)
50#define PCIE_CONF_REG(r) ((((r) & 0xf00) << 16) | ((r) & 0xfc))
51#define PCIE_CONF_BUS(b) (((b) & 0xff) << 16)
52#define PCIE_CONF_DEV(d) (((d) & 0x1f) << 11)
53#define PCIE_CONF_FUNC(f) (((f) & 0x7) << 8)
54#define PCIE_CONF_ADDR(dev, reg) \
55 (PCIE_CONF_BUS(PCI_BUS(dev)) | PCIE_CONF_DEV(PCI_DEV(dev)) | \
56 PCIE_CONF_FUNC(PCI_FUNC(dev)) | PCIE_CONF_REG(reg) | \
57 PCIE_CONF_ADDR_EN)
58#define PCIE_CONF_DATA_OFF 0x18fc
59#define PCIE_MASK_OFF 0x1910
60#define PCIE_MASK_ENABLE_INTS (0xf << 24)
61#define PCIE_CTRL_OFF 0x1a00
62#define PCIE_CTRL_X1_MODE BIT(0)
63#define PCIE_STAT_OFF 0x1a04
64#define PCIE_STAT_BUS (0xff << 8)
65#define PCIE_STAT_DEV (0x1f << 16)
66#define PCIE_STAT_LINK_DOWN BIT(0)
67#define PCIE_DEBUG_CTRL 0x1a60
68#define PCIE_DEBUG_SOFT_RESET BIT(20)
69
Anton Schubert98530e92015-08-11 11:54:01 +020070struct mvebu_pcie {
71 struct pci_controller hose;
Anton Schubert98530e92015-08-11 11:54:01 +020072 void __iomem *base;
73 void __iomem *membase;
74 struct resource mem;
75 void __iomem *iobase;
Phil Sutter09577aa2021-01-03 23:06:46 +010076 struct resource io;
Anton Schubert98530e92015-08-11 11:54:01 +020077 u32 port;
78 u32 lane;
Stefan Roese3179ec62019-01-25 11:52:43 +010079 int devfn;
Anton Schubert98530e92015-08-11 11:54:01 +020080 u32 lane_mask;
81 pci_dev_t dev;
Stefan Roese3179ec62019-01-25 11:52:43 +010082 char name[16];
83 unsigned int mem_target;
84 unsigned int mem_attr;
Phil Sutter09577aa2021-01-03 23:06:46 +010085 unsigned int io_target;
86 unsigned int io_attr;
Anton Schubert98530e92015-08-11 11:54:01 +020087};
88
Anton Schubert98530e92015-08-11 11:54:01 +020089/*
90 * MVEBU PCIe controller needs MEMORY and I/O BARs to be mapped
VlaoMao9b9606d2017-09-22 18:49:02 +030091 * into SoCs address space. Each controller will map 128M of MEM
Anton Schubert98530e92015-08-11 11:54:01 +020092 * and 64K of I/O space when registered.
93 */
94static void __iomem *mvebu_pcie_membase = (void __iomem *)MBUS_PCI_MEM_BASE;
VlaoMao9b9606d2017-09-22 18:49:02 +030095#define PCIE_MEM_SIZE (128 << 20)
Phil Sutter09577aa2021-01-03 23:06:46 +010096static void __iomem *mvebu_pcie_iobase = (void __iomem *)MBUS_PCI_IO_BASE;
Anton Schubert98530e92015-08-11 11:54:01 +020097
Anton Schubert98530e92015-08-11 11:54:01 +020098static inline bool mvebu_pcie_link_up(struct mvebu_pcie *pcie)
99{
100 u32 val;
101 val = readl(pcie->base + PCIE_STAT_OFF);
102 return !(val & PCIE_STAT_LINK_DOWN);
103}
104
105static void mvebu_pcie_set_local_bus_nr(struct mvebu_pcie *pcie, int busno)
106{
107 u32 stat;
108
109 stat = readl(pcie->base + PCIE_STAT_OFF);
110 stat &= ~PCIE_STAT_BUS;
111 stat |= busno << 8;
112 writel(stat, pcie->base + PCIE_STAT_OFF);
113}
114
115static void mvebu_pcie_set_local_dev_nr(struct mvebu_pcie *pcie, int devno)
116{
117 u32 stat;
118
119 stat = readl(pcie->base + PCIE_STAT_OFF);
120 stat &= ~PCIE_STAT_DEV;
121 stat |= devno << 16;
122 writel(stat, pcie->base + PCIE_STAT_OFF);
123}
124
125static int mvebu_pcie_get_local_bus_nr(struct mvebu_pcie *pcie)
126{
127 u32 stat;
128
129 stat = readl(pcie->base + PCIE_STAT_OFF);
130 return (stat & PCIE_STAT_BUS) >> 8;
131}
132
133static int mvebu_pcie_get_local_dev_nr(struct mvebu_pcie *pcie)
134{
135 u32 stat;
136
137 stat = readl(pcie->base + PCIE_STAT_OFF);
138 return (stat & PCIE_STAT_DEV) >> 16;
139}
140
141static inline struct mvebu_pcie *hose_to_pcie(struct pci_controller *hose)
142{
143 return container_of(hose, struct mvebu_pcie, hose);
144}
145
Simon Glass2a311e82020-01-27 08:49:37 -0700146static int mvebu_pcie_read_config(const struct udevice *bus, pci_dev_t bdf,
Stefan Roese3179ec62019-01-25 11:52:43 +0100147 uint offset, ulong *valuep,
148 enum pci_size_t size)
Anton Schubert98530e92015-08-11 11:54:01 +0200149{
Simon Glassfa20e932020-12-03 16:55:20 -0700150 struct mvebu_pcie *pcie = dev_get_plat(bus);
Anton Schubert98530e92015-08-11 11:54:01 +0200151 int local_bus = PCI_BUS(pcie->dev);
152 int local_dev = PCI_DEV(pcie->dev);
153 u32 reg;
Stefan Roese3179ec62019-01-25 11:52:43 +0100154 u32 data;
155
156 debug("PCIE CFG read: (b,d,f)=(%2d,%2d,%2d) ",
157 PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf));
Anton Schubert98530e92015-08-11 11:54:01 +0200158
159 /* Only allow one other device besides the local one on the local bus */
Stefan Roese3179ec62019-01-25 11:52:43 +0100160 if (PCI_BUS(bdf) == local_bus && PCI_DEV(bdf) != local_dev) {
161 if (local_dev == 0 && PCI_DEV(bdf) != 1) {
162 debug("- out of range\n");
Anton Schubert98530e92015-08-11 11:54:01 +0200163 /*
164 * If local dev is 0, the first other dev can
165 * only be 1
166 */
Stefan Roese3179ec62019-01-25 11:52:43 +0100167 *valuep = pci_get_ff(size);
168 return 0;
169 } else if (local_dev != 0 && PCI_DEV(bdf) != 0) {
170 debug("- out of range\n");
Anton Schubert98530e92015-08-11 11:54:01 +0200171 /*
172 * If local dev is not 0, the first other dev can
173 * only be 0
174 */
Stefan Roese3179ec62019-01-25 11:52:43 +0100175 *valuep = pci_get_ff(size);
176 return 0;
Anton Schubert98530e92015-08-11 11:54:01 +0200177 }
178 }
179
180 /* write address */
Stefan Roese3179ec62019-01-25 11:52:43 +0100181 reg = PCIE_CONF_ADDR(bdf, offset);
Anton Schubert98530e92015-08-11 11:54:01 +0200182 writel(reg, pcie->base + PCIE_CONF_ADDR_OFF);
Stefan Roese3179ec62019-01-25 11:52:43 +0100183 data = readl(pcie->base + PCIE_CONF_DATA_OFF);
184 debug("(addr,val)=(0x%04x, 0x%08x)\n", offset, data);
185 *valuep = pci_conv_32_to_size(data, offset, size);
Anton Schubert98530e92015-08-11 11:54:01 +0200186
187 return 0;
188}
189
Stefan Roese3179ec62019-01-25 11:52:43 +0100190static int mvebu_pcie_write_config(struct udevice *bus, pci_dev_t bdf,
191 uint offset, ulong value,
192 enum pci_size_t size)
Anton Schubert98530e92015-08-11 11:54:01 +0200193{
Simon Glassfa20e932020-12-03 16:55:20 -0700194 struct mvebu_pcie *pcie = dev_get_plat(bus);
Anton Schubert98530e92015-08-11 11:54:01 +0200195 int local_bus = PCI_BUS(pcie->dev);
196 int local_dev = PCI_DEV(pcie->dev);
Stefan Roese3179ec62019-01-25 11:52:43 +0100197 u32 data;
198
199 debug("PCIE CFG write: (b,d,f)=(%2d,%2d,%2d) ",
200 PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf));
201 debug("(addr,val)=(0x%04x, 0x%08lx)\n", offset, value);
Anton Schubert98530e92015-08-11 11:54:01 +0200202
203 /* Only allow one other device besides the local one on the local bus */
Stefan Roese3179ec62019-01-25 11:52:43 +0100204 if (PCI_BUS(bdf) == local_bus && PCI_DEV(bdf) != local_dev) {
205 if (local_dev == 0 && PCI_DEV(bdf) != 1) {
Anton Schubert98530e92015-08-11 11:54:01 +0200206 /*
207 * If local dev is 0, the first other dev can
208 * only be 1
209 */
Stefan Roese3179ec62019-01-25 11:52:43 +0100210 return 0;
211 } else if (local_dev != 0 && PCI_DEV(bdf) != 0) {
Anton Schubert98530e92015-08-11 11:54:01 +0200212 /*
213 * If local dev is not 0, the first other dev can
214 * only be 0
215 */
Stefan Roese3179ec62019-01-25 11:52:43 +0100216 return 0;
Anton Schubert98530e92015-08-11 11:54:01 +0200217 }
218 }
219
Stefan Roese3179ec62019-01-25 11:52:43 +0100220 writel(PCIE_CONF_ADDR(bdf, offset), pcie->base + PCIE_CONF_ADDR_OFF);
221 data = pci_conv_size_to_32(0, value, offset, size);
222 writel(data, pcie->base + PCIE_CONF_DATA_OFF);
Anton Schubert98530e92015-08-11 11:54:01 +0200223
224 return 0;
225}
226
227/*
228 * Setup PCIE BARs and Address Decode Wins:
229 * BAR[0,2] -> disabled, BAR[1] -> covers all DRAM banks
230 * WIN[0-3] -> DRAM bank[0-3]
231 */
232static void mvebu_pcie_setup_wins(struct mvebu_pcie *pcie)
233{
234 const struct mbus_dram_target_info *dram = mvebu_mbus_dram_info();
235 u32 size;
236 int i;
237
238 /* First, disable and clear BARs and windows. */
239 for (i = 1; i < 3; i++) {
240 writel(0, pcie->base + PCIE_BAR_CTRL_OFF(i));
241 writel(0, pcie->base + PCIE_BAR_LO_OFF(i));
242 writel(0, pcie->base + PCIE_BAR_HI_OFF(i));
243 }
244
245 for (i = 0; i < 5; i++) {
246 writel(0, pcie->base + PCIE_WIN04_CTRL_OFF(i));
247 writel(0, pcie->base + PCIE_WIN04_BASE_OFF(i));
248 writel(0, pcie->base + PCIE_WIN04_REMAP_OFF(i));
249 }
250
251 writel(0, pcie->base + PCIE_WIN5_CTRL_OFF);
252 writel(0, pcie->base + PCIE_WIN5_BASE_OFF);
253 writel(0, pcie->base + PCIE_WIN5_REMAP_OFF);
254
255 /* Setup windows for DDR banks. Count total DDR size on the fly. */
256 size = 0;
257 for (i = 0; i < dram->num_cs; i++) {
258 const struct mbus_dram_window *cs = dram->cs + i;
259
260 writel(cs->base & 0xffff0000,
261 pcie->base + PCIE_WIN04_BASE_OFF(i));
262 writel(0, pcie->base + PCIE_WIN04_REMAP_OFF(i));
263 writel(((cs->size - 1) & 0xffff0000) |
264 (cs->mbus_attr << 8) |
265 (dram->mbus_dram_target_id << 4) | 1,
266 pcie->base + PCIE_WIN04_CTRL_OFF(i));
267
268 size += cs->size;
269 }
270
271 /* Round up 'size' to the nearest power of two. */
272 if ((size & (size - 1)) != 0)
273 size = 1 << fls(size);
274
275 /* Setup BAR[1] to all DRAM banks. */
276 writel(dram->cs[0].base | 0xc, pcie->base + PCIE_BAR_LO_OFF(1));
277 writel(0, pcie->base + PCIE_BAR_HI_OFF(1));
278 writel(((size - 1) & 0xffff0000) | 0x1,
279 pcie->base + PCIE_BAR_CTRL_OFF(1));
280}
281
Stefan Roese3179ec62019-01-25 11:52:43 +0100282static int mvebu_pcie_probe(struct udevice *dev)
Anton Schubert98530e92015-08-11 11:54:01 +0200283{
Simon Glassfa20e932020-12-03 16:55:20 -0700284 struct mvebu_pcie *pcie = dev_get_plat(dev);
Stefan Roese3179ec62019-01-25 11:52:43 +0100285 struct udevice *ctlr = pci_get_controller(dev);
286 struct pci_controller *hose = dev_get_uclass_priv(ctlr);
287 static int bus;
Anton Schubert98530e92015-08-11 11:54:01 +0200288 u32 reg;
Anton Schubert98530e92015-08-11 11:54:01 +0200289
Stefan Roese3179ec62019-01-25 11:52:43 +0100290 debug("%s: PCIe %d.%d - up, base %08x\n", __func__,
291 pcie->port, pcie->lane, (u32)pcie->base);
Anton Schubert98530e92015-08-11 11:54:01 +0200292
Stefan Roese3179ec62019-01-25 11:52:43 +0100293 /* Read Id info and local bus/dev */
294 debug("direct conf read %08x, local bus %d, local dev %d\n",
295 readl(pcie->base), mvebu_pcie_get_local_bus_nr(pcie),
296 mvebu_pcie_get_local_dev_nr(pcie));
Anton Schubert98530e92015-08-11 11:54:01 +0200297
Stefan Roese3179ec62019-01-25 11:52:43 +0100298 mvebu_pcie_set_local_bus_nr(pcie, bus);
299 mvebu_pcie_set_local_dev_nr(pcie, 0);
300 pcie->dev = PCI_BDF(bus, 0, 0);
Anton Schubert98530e92015-08-11 11:54:01 +0200301
Stefan Roese3179ec62019-01-25 11:52:43 +0100302 pcie->mem.start = (u32)mvebu_pcie_membase;
303 pcie->mem.end = pcie->mem.start + PCIE_MEM_SIZE - 1;
304 mvebu_pcie_membase += PCIE_MEM_SIZE;
305
306 if (mvebu_mbus_add_window_by_id(pcie->mem_target, pcie->mem_attr,
307 (phys_addr_t)pcie->mem.start,
308 PCIE_MEM_SIZE)) {
309 printf("PCIe unable to add mbus window for mem at %08x+%08x\n",
310 (u32)pcie->mem.start, PCIE_MEM_SIZE);
311 }
312
Phil Sutter09577aa2021-01-03 23:06:46 +0100313 pcie->io.start = (u32)mvebu_pcie_iobase;
314 pcie->io.end = pcie->io.start + MBUS_PCI_IO_SIZE - 1;
315 mvebu_pcie_iobase += MBUS_PCI_IO_SIZE;
316
317 if (mvebu_mbus_add_window_by_id(pcie->io_target, pcie->io_attr,
318 (phys_addr_t)pcie->io.start,
319 MBUS_PCI_IO_SIZE)) {
320 printf("PCIe unable to add mbus window for IO at %08x+%08x\n",
321 (u32)pcie->io.start, MBUS_PCI_IO_SIZE);
322 }
323
Stefan Roese3179ec62019-01-25 11:52:43 +0100324 /* Setup windows and configure host bridge */
325 mvebu_pcie_setup_wins(pcie);
326
327 /* Master + slave enable. */
328 reg = readl(pcie->base + PCIE_CMD_OFF);
329 reg |= PCI_COMMAND_MEMORY;
Phil Sutter09577aa2021-01-03 23:06:46 +0100330 reg |= PCI_COMMAND_IO;
Stefan Roese3179ec62019-01-25 11:52:43 +0100331 reg |= PCI_COMMAND_MASTER;
332 reg |= BIT(10); /* disable interrupts */
333 writel(reg, pcie->base + PCIE_CMD_OFF);
334
Stefan Roese3179ec62019-01-25 11:52:43 +0100335 /* PCI memory space */
336 pci_set_region(hose->regions + 0, pcie->mem.start,
337 pcie->mem.start, PCIE_MEM_SIZE, PCI_REGION_MEM);
338 pci_set_region(hose->regions + 1,
339 0, 0,
340 gd->ram_size,
341 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
Phil Sutter09577aa2021-01-03 23:06:46 +0100342 pci_set_region(hose->regions + 2, pcie->io.start,
343 pcie->io.start, MBUS_PCI_IO_SIZE, PCI_REGION_IO);
344 hose->region_count = 3;
Stefan Roese3179ec62019-01-25 11:52:43 +0100345
Marek Behún587816d2019-08-07 15:01:56 +0200346 /* Set BAR0 to internal registers */
347 writel(SOC_REGS_PHY_BASE, pcie->base + PCIE_BAR_LO_OFF(0));
348 writel(0, pcie->base + PCIE_BAR_HI_OFF(0));
349
Stefan Roese3179ec62019-01-25 11:52:43 +0100350 bus++;
351
352 return 0;
353}
354
355static int mvebu_pcie_port_parse_dt(ofnode node, struct mvebu_pcie *pcie)
356{
357 const u32 *addr;
358 int len;
359
360 addr = ofnode_get_property(node, "assigned-addresses", &len);
361 if (!addr) {
362 pr_err("property \"assigned-addresses\" not found");
363 return -FDT_ERR_NOTFOUND;
364 }
365
366 pcie->base = (void *)(fdt32_to_cpu(addr[2]) + SOC_REGS_PHY_BASE);
367
368 return 0;
369}
370
371#define DT_FLAGS_TO_TYPE(flags) (((flags) >> 24) & 0x03)
372#define DT_TYPE_IO 0x1
373#define DT_TYPE_MEM32 0x2
374#define DT_CPUADDR_TO_TARGET(cpuaddr) (((cpuaddr) >> 56) & 0xFF)
375#define DT_CPUADDR_TO_ATTR(cpuaddr) (((cpuaddr) >> 48) & 0xFF)
376
377static int mvebu_get_tgt_attr(ofnode node, int devfn,
378 unsigned long type,
379 unsigned int *tgt,
380 unsigned int *attr)
381{
382 const int na = 3, ns = 2;
383 const __be32 *range;
384 int rlen, nranges, rangesz, pna, i;
385
386 *tgt = -1;
387 *attr = -1;
388
389 range = ofnode_get_property(node, "ranges", &rlen);
390 if (!range)
391 return -EINVAL;
392
Stefan Roese24e23bd2019-02-11 07:53:34 +0100393 /*
394 * Linux uses of_n_addr_cells() to get the number of address cells
395 * here. Currently this function is only available in U-Boot when
396 * CONFIG_OF_LIVE is enabled. Until this is enabled for MVEBU in
397 * general, lets't hardcode the "pna" value in the U-Boot code.
398 */
Stefan Roese3179ec62019-01-25 11:52:43 +0100399 pna = 2; /* hardcoded for now because of lack of of_n_addr_cells() */
400 rangesz = pna + na + ns;
401 nranges = rlen / sizeof(__be32) / rangesz;
Anton Schubert98530e92015-08-11 11:54:01 +0200402
Stefan Roese3179ec62019-01-25 11:52:43 +0100403 for (i = 0; i < nranges; i++, range += rangesz) {
404 u32 flags = of_read_number(range, 1);
405 u32 slot = of_read_number(range + 1, 1);
406 u64 cpuaddr = of_read_number(range + na, pna);
407 unsigned long rtype;
Anton Schubert98530e92015-08-11 11:54:01 +0200408
Stefan Roese3179ec62019-01-25 11:52:43 +0100409 if (DT_FLAGS_TO_TYPE(flags) == DT_TYPE_IO)
410 rtype = IORESOURCE_IO;
411 else if (DT_FLAGS_TO_TYPE(flags) == DT_TYPE_MEM32)
412 rtype = IORESOURCE_MEM;
413 else
Anton Schubert98530e92015-08-11 11:54:01 +0200414 continue;
Stefan Roese3179ec62019-01-25 11:52:43 +0100415
416 /*
417 * The Linux code used PCI_SLOT() here, which expects devfn
418 * in bits 7..0. PCI_DEV() in U-Boot is similar to PCI_SLOT(),
419 * only expects devfn in 15..8, where its saved in this driver.
420 */
421 if (slot == PCI_DEV(devfn) && type == rtype) {
422 *tgt = DT_CPUADDR_TO_TARGET(cpuaddr);
423 *attr = DT_CPUADDR_TO_ATTR(cpuaddr);
424 return 0;
Anton Schubert98530e92015-08-11 11:54:01 +0200425 }
Stefan Roese3179ec62019-01-25 11:52:43 +0100426 }
Anton Schubert98530e92015-08-11 11:54:01 +0200427
Stefan Roese3179ec62019-01-25 11:52:43 +0100428 return -ENOENT;
429}
Anton Schubert98530e92015-08-11 11:54:01 +0200430
Simon Glassaad29ae2020-12-03 16:55:21 -0700431static int mvebu_pcie_of_to_plat(struct udevice *dev)
Stefan Roese3179ec62019-01-25 11:52:43 +0100432{
Simon Glassfa20e932020-12-03 16:55:20 -0700433 struct mvebu_pcie *pcie = dev_get_plat(dev);
Stefan Roese3179ec62019-01-25 11:52:43 +0100434 int ret = 0;
Anton Schubert98530e92015-08-11 11:54:01 +0200435
Stefan Roese3179ec62019-01-25 11:52:43 +0100436 /* Get port number, lane number and memory target / attr */
437 if (ofnode_read_u32(dev_ofnode(dev), "marvell,pcie-port",
438 &pcie->port)) {
439 ret = -ENODEV;
440 goto err;
441 }
Anton Schubert98530e92015-08-11 11:54:01 +0200442
Stefan Roese3179ec62019-01-25 11:52:43 +0100443 if (ofnode_read_u32(dev_ofnode(dev), "marvell,pcie-lane", &pcie->lane))
444 pcie->lane = 0;
Anton Schubert98530e92015-08-11 11:54:01 +0200445
Stefan Roese3179ec62019-01-25 11:52:43 +0100446 sprintf(pcie->name, "pcie%d.%d", pcie->port, pcie->lane);
Anton Schubert98530e92015-08-11 11:54:01 +0200447
Stefan Roese3179ec62019-01-25 11:52:43 +0100448 /* pci_get_devfn() returns devfn in bits 15..8, see PCI_DEV usage */
449 pcie->devfn = pci_get_devfn(dev);
450 if (pcie->devfn < 0) {
451 ret = -ENODEV;
452 goto err;
453 }
Anton Schubert98530e92015-08-11 11:54:01 +0200454
Stefan Roese3179ec62019-01-25 11:52:43 +0100455 ret = mvebu_get_tgt_attr(dev_ofnode(dev->parent), pcie->devfn,
456 IORESOURCE_MEM,
457 &pcie->mem_target, &pcie->mem_attr);
458 if (ret < 0) {
459 printf("%s: cannot get tgt/attr for mem window\n", pcie->name);
460 goto err;
461 }
Anton Schubert98530e92015-08-11 11:54:01 +0200462
Phil Sutter09577aa2021-01-03 23:06:46 +0100463 ret = mvebu_get_tgt_attr(dev_ofnode(dev->parent), pcie->devfn,
464 IORESOURCE_IO,
465 &pcie->io_target, &pcie->io_attr);
466 if (ret < 0) {
467 printf("%s: cannot get tgt/attr for IO window\n", pcie->name);
468 goto err;
469 }
470
Stefan Roese3179ec62019-01-25 11:52:43 +0100471 /* Parse PCIe controller register base from DT */
472 ret = mvebu_pcie_port_parse_dt(dev_ofnode(dev), pcie);
473 if (ret < 0)
474 goto err;
Anton Schubert98530e92015-08-11 11:54:01 +0200475
Stefan Roese3179ec62019-01-25 11:52:43 +0100476 /* Check link and skip ports that have no link */
477 if (!mvebu_pcie_link_up(pcie)) {
478 debug("%s: %s - down\n", __func__, pcie->name);
479 ret = -ENODEV;
480 goto err;
481 }
Anton Schubert98530e92015-08-11 11:54:01 +0200482
Stefan Roese3179ec62019-01-25 11:52:43 +0100483 return 0;
Anton Schubert98530e92015-08-11 11:54:01 +0200484
Stefan Roese3179ec62019-01-25 11:52:43 +0100485err:
486 return ret;
487}
Anton Schubert98530e92015-08-11 11:54:01 +0200488
Stefan Roese3179ec62019-01-25 11:52:43 +0100489static const struct dm_pci_ops mvebu_pcie_ops = {
490 .read_config = mvebu_pcie_read_config,
491 .write_config = mvebu_pcie_write_config,
492};
Phil Sutter68010aa2015-12-25 14:41:20 +0100493
Stefan Roese3179ec62019-01-25 11:52:43 +0100494static struct driver pcie_mvebu_drv = {
495 .name = "pcie_mvebu",
496 .id = UCLASS_PCI,
497 .ops = &mvebu_pcie_ops,
498 .probe = mvebu_pcie_probe,
Simon Glassaad29ae2020-12-03 16:55:21 -0700499 .of_to_plat = mvebu_pcie_of_to_plat,
Simon Glass71fa5b42020-12-03 16:55:18 -0700500 .plat_auto = sizeof(struct mvebu_pcie),
Stefan Roese3179ec62019-01-25 11:52:43 +0100501};
502
503/*
504 * Use a MISC device to bind the n instances (child nodes) of the
505 * PCIe base controller in UCLASS_PCI.
506 */
507static int mvebu_pcie_bind(struct udevice *parent)
508{
509 struct mvebu_pcie *pcie;
510 struct uclass_driver *drv;
511 struct udevice *dev;
512 ofnode subnode;
513
514 /* Lookup eth driver */
515 drv = lists_uclass_lookup(UCLASS_PCI);
516 if (!drv) {
517 puts("Cannot find PCI driver\n");
518 return -ENOENT;
519 }
520
521 ofnode_for_each_subnode(subnode, dev_ofnode(parent)) {
522 if (!ofnode_is_available(subnode))
523 continue;
524
525 pcie = calloc(1, sizeof(*pcie));
526 if (!pcie)
527 return -ENOMEM;
528
529 /* Create child device UCLASS_PCI and bind it */
Simon Glass884870f2020-11-28 17:50:01 -0700530 device_bind(parent, &pcie_mvebu_drv, pcie->name, pcie, subnode,
531 &dev);
Anton Schubert98530e92015-08-11 11:54:01 +0200532 }
Stefan Roese3179ec62019-01-25 11:52:43 +0100533
534 return 0;
Anton Schubert98530e92015-08-11 11:54:01 +0200535}
Stefan Roese3179ec62019-01-25 11:52:43 +0100536
537static const struct udevice_id mvebu_pcie_ids[] = {
538 { .compatible = "marvell,armada-xp-pcie" },
539 { .compatible = "marvell,armada-370-pcie" },
540 { }
541};
542
543U_BOOT_DRIVER(pcie_mvebu_base) = {
544 .name = "pcie_mvebu_base",
545 .id = UCLASS_MISC,
546 .of_match = mvebu_pcie_ids,
547 .bind = mvebu_pcie_bind,
548};