]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/pci/host/pci-mvebu.c
Merge remote-tracking branches 'spi/topic/s3c64xx', 'spi/topic/sc18is602', 'spi/topic...
[mirror_ubuntu-jammy-kernel.git] / drivers / pci / host / pci-mvebu.c
CommitLineData
45361a4f
TP
1/*
2 * PCIe driver for Marvell Armada 370 and Armada XP SoCs
3 *
4 * This file is licensed under the terms of the GNU General Public
5 * License version 2. This program is licensed "as is" without any
6 * warranty of any kind, whether express or implied.
7 */
8
9#include <linux/kernel.h>
10#include <linux/pci.h>
11#include <linux/clk.h>
52ba992e
SH
12#include <linux/delay.h>
13#include <linux/gpio.h>
45361a4f
TP
14#include <linux/module.h>
15#include <linux/mbus.h>
5b4deb65 16#include <linux/msi.h>
45361a4f
TP
17#include <linux/slab.h>
18#include <linux/platform_device.h>
19#include <linux/of_address.h>
45361a4f 20#include <linux/of_irq.h>
52ba992e
SH
21#include <linux/of_gpio.h>
22#include <linux/of_pci.h>
45361a4f
TP
23#include <linux/of_platform.h>
24
25/*
26 * PCIe unit register offsets.
27 */
28#define PCIE_DEV_ID_OFF 0x0000
29#define PCIE_CMD_OFF 0x0004
30#define PCIE_DEV_REV_OFF 0x0008
31#define PCIE_BAR_LO_OFF(n) (0x0010 + ((n) << 3))
32#define PCIE_BAR_HI_OFF(n) (0x0014 + ((n) << 3))
33#define PCIE_HEADER_LOG_4_OFF 0x0128
34#define PCIE_BAR_CTRL_OFF(n) (0x1804 + (((n) - 1) * 4))
35#define PCIE_WIN04_CTRL_OFF(n) (0x1820 + ((n) << 4))
36#define PCIE_WIN04_BASE_OFF(n) (0x1824 + ((n) << 4))
37#define PCIE_WIN04_REMAP_OFF(n) (0x182c + ((n) << 4))
38#define PCIE_WIN5_CTRL_OFF 0x1880
39#define PCIE_WIN5_BASE_OFF 0x1884
40#define PCIE_WIN5_REMAP_OFF 0x188c
41#define PCIE_CONF_ADDR_OFF 0x18f8
42#define PCIE_CONF_ADDR_EN 0x80000000
43#define PCIE_CONF_REG(r) ((((r) & 0xf00) << 16) | ((r) & 0xfc))
44#define PCIE_CONF_BUS(b) (((b) & 0xff) << 16)
45#define PCIE_CONF_DEV(d) (((d) & 0x1f) << 11)
46#define PCIE_CONF_FUNC(f) (((f) & 0x7) << 8)
47#define PCIE_CONF_ADDR(bus, devfn, where) \
48 (PCIE_CONF_BUS(bus) | PCIE_CONF_DEV(PCI_SLOT(devfn)) | \
49 PCIE_CONF_FUNC(PCI_FUNC(devfn)) | PCIE_CONF_REG(where) | \
50 PCIE_CONF_ADDR_EN)
51#define PCIE_CONF_DATA_OFF 0x18fc
52#define PCIE_MASK_OFF 0x1910
53#define PCIE_MASK_ENABLE_INTS 0x0f000000
54#define PCIE_CTRL_OFF 0x1a00
55#define PCIE_CTRL_X1_MODE 0x0001
56#define PCIE_STAT_OFF 0x1a04
57#define PCIE_STAT_BUS 0xff00
f4ac9901 58#define PCIE_STAT_DEV 0x1f0000
45361a4f
TP
59#define PCIE_STAT_LINK_DOWN BIT(0)
60#define PCIE_DEBUG_CTRL 0x1a60
61#define PCIE_DEBUG_SOFT_RESET BIT(20)
62
45361a4f
TP
63/* PCI configuration space of a PCI-to-PCI bridge */
64struct mvebu_sw_pci_bridge {
65 u16 vendor;
66 u16 device;
67 u16 command;
45361a4f
TP
68 u16 class;
69 u8 interface;
70 u8 revision;
71 u8 bist;
72 u8 header_type;
73 u8 latency_timer;
74 u8 cache_line_size;
75 u32 bar[2];
76 u8 primary_bus;
77 u8 secondary_bus;
78 u8 subordinate_bus;
79 u8 secondary_latency_timer;
80 u8 iobase;
81 u8 iolimit;
82 u16 secondary_status;
83 u16 membase;
84 u16 memlimit;
45361a4f
TP
85 u16 iobaseupper;
86 u16 iolimitupper;
87 u8 cappointer;
88 u8 reserved1;
89 u16 reserved2;
90 u32 romaddr;
91 u8 intline;
92 u8 intpin;
93 u16 bridgectrl;
94};
95
96struct mvebu_pcie_port;
97
98/* Structure representing all PCIe interfaces */
99struct mvebu_pcie {
100 struct platform_device *pdev;
101 struct mvebu_pcie_port *ports;
5b4deb65 102 struct msi_chip *msi;
45361a4f
TP
103 struct resource io;
104 struct resource realio;
105 struct resource mem;
106 struct resource busn;
107 int nports;
108};
109
110/* Structure representing one PCIe interface */
111struct mvebu_pcie_port {
112 char *name;
113 void __iomem *base;
114 spinlock_t conf_lock;
45361a4f
TP
115 u32 port;
116 u32 lane;
117 int devfn;
11be6547
TP
118 unsigned int mem_target;
119 unsigned int mem_attr;
120 unsigned int io_target;
121 unsigned int io_attr;
45361a4f 122 struct clk *clk;
52ba992e
SH
123 int reset_gpio;
124 int reset_active_low;
125 char *reset_name;
45361a4f
TP
126 struct mvebu_sw_pci_bridge bridge;
127 struct device_node *dn;
128 struct mvebu_pcie *pcie;
129 phys_addr_t memwin_base;
130 size_t memwin_size;
131 phys_addr_t iowin_base;
132 size_t iowin_size;
133};
134
032b4c0c
SJ
135static inline void mvebu_writel(struct mvebu_pcie_port *port, u32 val, u32 reg)
136{
137 writel(val, port->base + reg);
138}
139
140static inline u32 mvebu_readl(struct mvebu_pcie_port *port, u32 reg)
141{
142 return readl(port->base + reg);
143}
144
641e674d
JG
145static inline bool mvebu_has_ioport(struct mvebu_pcie_port *port)
146{
147 return port->io_target != -1 && port->io_attr != -1;
148}
149
45361a4f
TP
150static bool mvebu_pcie_link_up(struct mvebu_pcie_port *port)
151{
032b4c0c 152 return !(mvebu_readl(port, PCIE_STAT_OFF) & PCIE_STAT_LINK_DOWN);
45361a4f
TP
153}
154
155static void mvebu_pcie_set_local_bus_nr(struct mvebu_pcie_port *port, int nr)
156{
157 u32 stat;
158
032b4c0c 159 stat = mvebu_readl(port, PCIE_STAT_OFF);
45361a4f
TP
160 stat &= ~PCIE_STAT_BUS;
161 stat |= nr << 8;
032b4c0c 162 mvebu_writel(port, stat, PCIE_STAT_OFF);
45361a4f
TP
163}
164
f4ac9901
TP
165static void mvebu_pcie_set_local_dev_nr(struct mvebu_pcie_port *port, int nr)
166{
167 u32 stat;
168
032b4c0c 169 stat = mvebu_readl(port, PCIE_STAT_OFF);
f4ac9901
TP
170 stat &= ~PCIE_STAT_DEV;
171 stat |= nr << 16;
032b4c0c 172 mvebu_writel(port, stat, PCIE_STAT_OFF);
f4ac9901
TP
173}
174
45361a4f
TP
175/*
176 * Setup PCIE BARs and Address Decode Wins:
177 * BAR[0,2] -> disabled, BAR[1] -> covers all DRAM banks
178 * WIN[0-3] -> DRAM bank[0-3]
179 */
e5615c30 180static void mvebu_pcie_setup_wins(struct mvebu_pcie_port *port)
45361a4f
TP
181{
182 const struct mbus_dram_target_info *dram;
183 u32 size;
184 int i;
185
186 dram = mv_mbus_dram_info();
187
188 /* First, disable and clear BARs and windows. */
189 for (i = 1; i < 3; i++) {
032b4c0c
SJ
190 mvebu_writel(port, 0, PCIE_BAR_CTRL_OFF(i));
191 mvebu_writel(port, 0, PCIE_BAR_LO_OFF(i));
192 mvebu_writel(port, 0, PCIE_BAR_HI_OFF(i));
45361a4f
TP
193 }
194
195 for (i = 0; i < 5; i++) {
032b4c0c
SJ
196 mvebu_writel(port, 0, PCIE_WIN04_CTRL_OFF(i));
197 mvebu_writel(port, 0, PCIE_WIN04_BASE_OFF(i));
198 mvebu_writel(port, 0, PCIE_WIN04_REMAP_OFF(i));
45361a4f
TP
199 }
200
032b4c0c
SJ
201 mvebu_writel(port, 0, PCIE_WIN5_CTRL_OFF);
202 mvebu_writel(port, 0, PCIE_WIN5_BASE_OFF);
203 mvebu_writel(port, 0, PCIE_WIN5_REMAP_OFF);
45361a4f
TP
204
205 /* Setup windows for DDR banks. Count total DDR size on the fly. */
206 size = 0;
207 for (i = 0; i < dram->num_cs; i++) {
208 const struct mbus_dram_window *cs = dram->cs + i;
209
032b4c0c
SJ
210 mvebu_writel(port, cs->base & 0xffff0000,
211 PCIE_WIN04_BASE_OFF(i));
212 mvebu_writel(port, 0, PCIE_WIN04_REMAP_OFF(i));
213 mvebu_writel(port,
214 ((cs->size - 1) & 0xffff0000) |
215 (cs->mbus_attr << 8) |
216 (dram->mbus_dram_target_id << 4) | 1,
217 PCIE_WIN04_CTRL_OFF(i));
45361a4f
TP
218
219 size += cs->size;
220 }
221
222 /* Round up 'size' to the nearest power of two. */
223 if ((size & (size - 1)) != 0)
224 size = 1 << fls(size);
225
226 /* Setup BAR[1] to all DRAM banks. */
032b4c0c
SJ
227 mvebu_writel(port, dram->cs[0].base, PCIE_BAR_LO_OFF(1));
228 mvebu_writel(port, 0, PCIE_BAR_HI_OFF(1));
229 mvebu_writel(port, ((size - 1) & 0xffff0000) | 1,
230 PCIE_BAR_CTRL_OFF(1));
45361a4f
TP
231}
232
e5615c30 233static void mvebu_pcie_setup_hw(struct mvebu_pcie_port *port)
45361a4f 234{
032b4c0c 235 u32 cmd, mask;
45361a4f
TP
236
237 /* Point PCIe unit MBUS decode windows to DRAM space. */
238 mvebu_pcie_setup_wins(port);
239
240 /* Master + slave enable. */
032b4c0c 241 cmd = mvebu_readl(port, PCIE_CMD_OFF);
45361a4f
TP
242 cmd |= PCI_COMMAND_IO;
243 cmd |= PCI_COMMAND_MEMORY;
244 cmd |= PCI_COMMAND_MASTER;
032b4c0c 245 mvebu_writel(port, cmd, PCIE_CMD_OFF);
45361a4f
TP
246
247 /* Enable interrupt lines A-D. */
032b4c0c 248 mask = mvebu_readl(port, PCIE_MASK_OFF);
45361a4f 249 mask |= PCIE_MASK_ENABLE_INTS;
032b4c0c 250 mvebu_writel(port, mask, PCIE_MASK_OFF);
45361a4f
TP
251}
252
253static int mvebu_pcie_hw_rd_conf(struct mvebu_pcie_port *port,
254 struct pci_bus *bus,
255 u32 devfn, int where, int size, u32 *val)
256{
032b4c0c
SJ
257 mvebu_writel(port, PCIE_CONF_ADDR(bus->number, devfn, where),
258 PCIE_CONF_ADDR_OFF);
45361a4f 259
032b4c0c 260 *val = mvebu_readl(port, PCIE_CONF_DATA_OFF);
45361a4f
TP
261
262 if (size == 1)
263 *val = (*val >> (8 * (where & 3))) & 0xff;
264 else if (size == 2)
265 *val = (*val >> (8 * (where & 3))) & 0xffff;
266
267 return PCIBIOS_SUCCESSFUL;
268}
269
270static int mvebu_pcie_hw_wr_conf(struct mvebu_pcie_port *port,
271 struct pci_bus *bus,
272 u32 devfn, int where, int size, u32 val)
273{
032b4c0c 274 u32 _val, shift = 8 * (where & 3);
45361a4f 275
032b4c0c
SJ
276 mvebu_writel(port, PCIE_CONF_ADDR(bus->number, devfn, where),
277 PCIE_CONF_ADDR_OFF);
278 _val = mvebu_readl(port, PCIE_CONF_DATA_OFF);
45361a4f
TP
279
280 if (size == 4)
032b4c0c 281 _val = val;
45361a4f 282 else if (size == 2)
032b4c0c 283 _val = (_val & ~(0xffff << shift)) | ((val & 0xffff) << shift);
45361a4f 284 else if (size == 1)
032b4c0c 285 _val = (_val & ~(0xff << shift)) | ((val & 0xff) << shift);
45361a4f 286 else
032b4c0c 287 return PCIBIOS_BAD_REGISTER_NUMBER;
45361a4f 288
032b4c0c
SJ
289 mvebu_writel(port, _val, PCIE_CONF_DATA_OFF);
290
291 return PCIBIOS_SUCCESSFUL;
45361a4f
TP
292}
293
294static void mvebu_pcie_handle_iobase_change(struct mvebu_pcie_port *port)
295{
296 phys_addr_t iobase;
297
298 /* Are the new iobase/iolimit values invalid? */
299 if (port->bridge.iolimit < port->bridge.iobase ||
43a16f94
JG
300 port->bridge.iolimitupper < port->bridge.iobaseupper ||
301 !(port->bridge.command & PCI_COMMAND_IO)) {
45361a4f
TP
302
303 /* If a window was configured, remove it */
304 if (port->iowin_base) {
305 mvebu_mbus_del_window(port->iowin_base,
306 port->iowin_size);
307 port->iowin_base = 0;
308 port->iowin_size = 0;
309 }
310
311 return;
312 }
313
641e674d
JG
314 if (!mvebu_has_ioport(port)) {
315 dev_WARN(&port->pcie->pdev->dev,
316 "Attempt to set IO when IO is disabled\n");
317 return;
318 }
319
45361a4f
TP
320 /*
321 * We read the PCI-to-PCI bridge emulated registers, and
322 * calculate the base address and size of the address decoding
323 * window to setup, according to the PCI-to-PCI bridge
324 * specifications. iobase is the bus address, port->iowin_base
325 * is the CPU address.
326 */
327 iobase = ((port->bridge.iobase & 0xF0) << 8) |
328 (port->bridge.iobaseupper << 16);
329 port->iowin_base = port->pcie->io.start + iobase;
330 port->iowin_size = ((0xFFF | ((port->bridge.iolimit & 0xF0) << 8) |
331 (port->bridge.iolimitupper << 16)) -
332 iobase);
333
11be6547
TP
334 mvebu_mbus_add_window_remap_by_id(port->io_target, port->io_attr,
335 port->iowin_base, port->iowin_size,
336 iobase);
45361a4f
TP
337}
338
339static void mvebu_pcie_handle_membase_change(struct mvebu_pcie_port *port)
340{
341 /* Are the new membase/memlimit values invalid? */
43a16f94
JG
342 if (port->bridge.memlimit < port->bridge.membase ||
343 !(port->bridge.command & PCI_COMMAND_MEMORY)) {
45361a4f
TP
344
345 /* If a window was configured, remove it */
346 if (port->memwin_base) {
347 mvebu_mbus_del_window(port->memwin_base,
348 port->memwin_size);
349 port->memwin_base = 0;
350 port->memwin_size = 0;
351 }
352
353 return;
354 }
355
356 /*
357 * We read the PCI-to-PCI bridge emulated registers, and
358 * calculate the base address and size of the address decoding
359 * window to setup, according to the PCI-to-PCI bridge
360 * specifications.
361 */
362 port->memwin_base = ((port->bridge.membase & 0xFFF0) << 16);
363 port->memwin_size =
364 (((port->bridge.memlimit & 0xFFF0) << 16) | 0xFFFFF) -
365 port->memwin_base;
366
11be6547
TP
367 mvebu_mbus_add_window_by_id(port->mem_target, port->mem_attr,
368 port->memwin_base, port->memwin_size);
45361a4f
TP
369}
370
371/*
372 * Initialize the configuration space of the PCI-to-PCI bridge
373 * associated with the given PCIe interface.
374 */
375static void mvebu_sw_pci_bridge_init(struct mvebu_pcie_port *port)
376{
377 struct mvebu_sw_pci_bridge *bridge = &port->bridge;
378
379 memset(bridge, 0, sizeof(struct mvebu_sw_pci_bridge));
380
45361a4f
TP
381 bridge->class = PCI_CLASS_BRIDGE_PCI;
382 bridge->vendor = PCI_VENDOR_ID_MARVELL;
322a8e91
AL
383 bridge->device = mvebu_readl(port, PCIE_DEV_ID_OFF) >> 16;
384 bridge->revision = mvebu_readl(port, PCIE_DEV_REV_OFF) & 0xff;
45361a4f
TP
385 bridge->header_type = PCI_HEADER_TYPE_BRIDGE;
386 bridge->cache_line_size = 0x10;
387
388 /* We support 32 bits I/O addressing */
389 bridge->iobase = PCI_IO_RANGE_TYPE_32;
390 bridge->iolimit = PCI_IO_RANGE_TYPE_32;
391}
392
393/*
394 * Read the configuration space of the PCI-to-PCI bridge associated to
395 * the given PCIe interface.
396 */
397static int mvebu_sw_pci_bridge_read(struct mvebu_pcie_port *port,
398 unsigned int where, int size, u32 *value)
399{
400 struct mvebu_sw_pci_bridge *bridge = &port->bridge;
401
402 switch (where & ~3) {
403 case PCI_VENDOR_ID:
404 *value = bridge->device << 16 | bridge->vendor;
405 break;
406
407 case PCI_COMMAND:
6eb237c4 408 *value = bridge->command;
45361a4f
TP
409 break;
410
411 case PCI_CLASS_REVISION:
412 *value = bridge->class << 16 | bridge->interface << 8 |
413 bridge->revision;
414 break;
415
416 case PCI_CACHE_LINE_SIZE:
417 *value = bridge->bist << 24 | bridge->header_type << 16 |
418 bridge->latency_timer << 8 | bridge->cache_line_size;
419 break;
420
421 case PCI_BASE_ADDRESS_0 ... PCI_BASE_ADDRESS_1:
422 *value = bridge->bar[((where & ~3) - PCI_BASE_ADDRESS_0) / 4];
423 break;
424
425 case PCI_PRIMARY_BUS:
426 *value = (bridge->secondary_latency_timer << 24 |
427 bridge->subordinate_bus << 16 |
428 bridge->secondary_bus << 8 |
429 bridge->primary_bus);
430 break;
431
432 case PCI_IO_BASE:
641e674d
JG
433 if (!mvebu_has_ioport(port))
434 *value = bridge->secondary_status << 16;
435 else
436 *value = (bridge->secondary_status << 16 |
437 bridge->iolimit << 8 |
438 bridge->iobase);
45361a4f
TP
439 break;
440
441 case PCI_MEMORY_BASE:
442 *value = (bridge->memlimit << 16 | bridge->membase);
443 break;
444
445 case PCI_PREF_MEMORY_BASE:
36dd1f3e 446 *value = 0;
45361a4f
TP
447 break;
448
449 case PCI_IO_BASE_UPPER16:
450 *value = (bridge->iolimitupper << 16 | bridge->iobaseupper);
451 break;
452
453 case PCI_ROM_ADDRESS1:
454 *value = 0;
455 break;
456
f407dae7
JG
457 case PCI_INTERRUPT_LINE:
458 /* LINE PIN MIN_GNT MAX_LAT */
459 *value = 0;
460 break;
461
45361a4f
TP
462 default:
463 *value = 0xffffffff;
464 return PCIBIOS_BAD_REGISTER_NUMBER;
465 }
466
467 if (size == 2)
468 *value = (*value >> (8 * (where & 3))) & 0xffff;
469 else if (size == 1)
470 *value = (*value >> (8 * (where & 3))) & 0xff;
471
472 return PCIBIOS_SUCCESSFUL;
473}
474
475/* Write to the PCI-to-PCI bridge configuration space */
476static int mvebu_sw_pci_bridge_write(struct mvebu_pcie_port *port,
477 unsigned int where, int size, u32 value)
478{
479 struct mvebu_sw_pci_bridge *bridge = &port->bridge;
480 u32 mask, reg;
481 int err;
482
483 if (size == 4)
484 mask = 0x0;
485 else if (size == 2)
486 mask = ~(0xffff << ((where & 3) * 8));
487 else if (size == 1)
488 mask = ~(0xff << ((where & 3) * 8));
489 else
490 return PCIBIOS_BAD_REGISTER_NUMBER;
491
492 err = mvebu_sw_pci_bridge_read(port, where & ~3, 4, &reg);
493 if (err)
494 return err;
495
496 value = (reg & mask) | value << ((where & 3) * 8);
497
498 switch (where & ~3) {
499 case PCI_COMMAND:
43a16f94
JG
500 {
501 u32 old = bridge->command;
502
641e674d
JG
503 if (!mvebu_has_ioport(port))
504 value &= ~PCI_COMMAND_IO;
505
45361a4f 506 bridge->command = value & 0xffff;
43a16f94
JG
507 if ((old ^ bridge->command) & PCI_COMMAND_IO)
508 mvebu_pcie_handle_iobase_change(port);
509 if ((old ^ bridge->command) & PCI_COMMAND_MEMORY)
510 mvebu_pcie_handle_membase_change(port);
45361a4f 511 break;
43a16f94 512 }
45361a4f
TP
513
514 case PCI_BASE_ADDRESS_0 ... PCI_BASE_ADDRESS_1:
515 bridge->bar[((where & ~3) - PCI_BASE_ADDRESS_0) / 4] = value;
516 break;
517
518 case PCI_IO_BASE:
519 /*
520 * We also keep bit 1 set, it is a read-only bit that
521 * indicates we support 32 bits addressing for the
522 * I/O
523 */
524 bridge->iobase = (value & 0xff) | PCI_IO_RANGE_TYPE_32;
525 bridge->iolimit = ((value >> 8) & 0xff) | PCI_IO_RANGE_TYPE_32;
45361a4f
TP
526 mvebu_pcie_handle_iobase_change(port);
527 break;
528
529 case PCI_MEMORY_BASE:
530 bridge->membase = value & 0xffff;
531 bridge->memlimit = value >> 16;
532 mvebu_pcie_handle_membase_change(port);
533 break;
534
45361a4f
TP
535 case PCI_IO_BASE_UPPER16:
536 bridge->iobaseupper = value & 0xffff;
537 bridge->iolimitupper = value >> 16;
538 mvebu_pcie_handle_iobase_change(port);
539 break;
540
541 case PCI_PRIMARY_BUS:
542 bridge->primary_bus = value & 0xff;
543 bridge->secondary_bus = (value >> 8) & 0xff;
544 bridge->subordinate_bus = (value >> 16) & 0xff;
545 bridge->secondary_latency_timer = (value >> 24) & 0xff;
546 mvebu_pcie_set_local_bus_nr(port, bridge->secondary_bus);
547 break;
548
549 default:
550 break;
551 }
552
553 return PCIBIOS_SUCCESSFUL;
554}
555
556static inline struct mvebu_pcie *sys_to_pcie(struct pci_sys_data *sys)
557{
558 return sys->private_data;
559}
560
561static struct mvebu_pcie_port *
562mvebu_pcie_find_port(struct mvebu_pcie *pcie, struct pci_bus *bus,
563 int devfn)
564{
565 int i;
566
567 for (i = 0; i < pcie->nports; i++) {
568 struct mvebu_pcie_port *port = &pcie->ports[i];
569 if (bus->number == 0 && port->devfn == devfn)
570 return port;
571 if (bus->number != 0 &&
197fc226
TP
572 bus->number >= port->bridge.secondary_bus &&
573 bus->number <= port->bridge.subordinate_bus)
45361a4f
TP
574 return port;
575 }
576
577 return NULL;
578}
579
580/* PCI configuration space write function */
581static int mvebu_pcie_wr_conf(struct pci_bus *bus, u32 devfn,
582 int where, int size, u32 val)
583{
584 struct mvebu_pcie *pcie = sys_to_pcie(bus->sysdata);
585 struct mvebu_pcie_port *port;
586 unsigned long flags;
587 int ret;
588
589 port = mvebu_pcie_find_port(pcie, bus, devfn);
590 if (!port)
591 return PCIBIOS_DEVICE_NOT_FOUND;
592
593 /* Access the emulated PCI-to-PCI bridge */
594 if (bus->number == 0)
595 return mvebu_sw_pci_bridge_write(port, where, size, val);
596
9f352f0e 597 if (!mvebu_pcie_link_up(port))
197fc226
TP
598 return PCIBIOS_DEVICE_NOT_FOUND;
599
600 /*
601 * On the secondary bus, we don't want to expose any other
602 * device than the device physically connected in the PCIe
603 * slot, visible in slot 0. In slot 1, there's a special
604 * Marvell device that only makes sense when the Armada is
605 * used as a PCIe endpoint.
606 */
607 if (bus->number == port->bridge.secondary_bus &&
608 PCI_SLOT(devfn) != 0)
45361a4f
TP
609 return PCIBIOS_DEVICE_NOT_FOUND;
610
611 /* Access the real PCIe interface */
612 spin_lock_irqsave(&port->conf_lock, flags);
f4ac9901 613 ret = mvebu_pcie_hw_wr_conf(port, bus, devfn,
45361a4f
TP
614 where, size, val);
615 spin_unlock_irqrestore(&port->conf_lock, flags);
616
617 return ret;
618}
619
620/* PCI configuration space read function */
621static int mvebu_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where,
622 int size, u32 *val)
623{
624 struct mvebu_pcie *pcie = sys_to_pcie(bus->sysdata);
625 struct mvebu_pcie_port *port;
626 unsigned long flags;
627 int ret;
628
629 port = mvebu_pcie_find_port(pcie, bus, devfn);
630 if (!port) {
631 *val = 0xffffffff;
632 return PCIBIOS_DEVICE_NOT_FOUND;
633 }
634
635 /* Access the emulated PCI-to-PCI bridge */
636 if (bus->number == 0)
637 return mvebu_sw_pci_bridge_read(port, where, size, val);
638
9f352f0e 639 if (!mvebu_pcie_link_up(port)) {
197fc226
TP
640 *val = 0xffffffff;
641 return PCIBIOS_DEVICE_NOT_FOUND;
642 }
643
644 /*
645 * On the secondary bus, we don't want to expose any other
646 * device than the device physically connected in the PCIe
647 * slot, visible in slot 0. In slot 1, there's a special
648 * Marvell device that only makes sense when the Armada is
649 * used as a PCIe endpoint.
650 */
651 if (bus->number == port->bridge.secondary_bus &&
652 PCI_SLOT(devfn) != 0) {
45361a4f
TP
653 *val = 0xffffffff;
654 return PCIBIOS_DEVICE_NOT_FOUND;
655 }
656
657 /* Access the real PCIe interface */
658 spin_lock_irqsave(&port->conf_lock, flags);
f4ac9901 659 ret = mvebu_pcie_hw_rd_conf(port, bus, devfn,
45361a4f
TP
660 where, size, val);
661 spin_unlock_irqrestore(&port->conf_lock, flags);
662
663 return ret;
664}
665
666static struct pci_ops mvebu_pcie_ops = {
667 .read = mvebu_pcie_rd_conf,
668 .write = mvebu_pcie_wr_conf,
669};
670
e5615c30 671static int mvebu_pcie_setup(int nr, struct pci_sys_data *sys)
45361a4f
TP
672{
673 struct mvebu_pcie *pcie = sys_to_pcie(sys);
674 int i;
675
641e674d
JG
676 if (resource_size(&pcie->realio) != 0)
677 pci_add_resource_offset(&sys->resources, &pcie->realio,
678 sys->io_offset);
45361a4f
TP
679 pci_add_resource_offset(&sys->resources, &pcie->mem, sys->mem_offset);
680 pci_add_resource(&sys->resources, &pcie->busn);
681
682 for (i = 0; i < pcie->nports; i++) {
683 struct mvebu_pcie_port *port = &pcie->ports[i];
b22503a9
EG
684 if (!port->base)
685 continue;
45361a4f
TP
686 mvebu_pcie_setup_hw(port);
687 }
688
689 return 1;
690}
691
45361a4f
TP
692static struct pci_bus *mvebu_pcie_scan_bus(int nr, struct pci_sys_data *sys)
693{
694 struct mvebu_pcie *pcie = sys_to_pcie(sys);
695 struct pci_bus *bus;
696
697 bus = pci_create_root_bus(&pcie->pdev->dev, sys->busnr,
698 &mvebu_pcie_ops, sys, &sys->resources);
699 if (!bus)
700 return NULL;
701
702 pci_scan_child_bus(bus);
703
704 return bus;
705}
706
f5072dfb 707static void mvebu_pcie_add_bus(struct pci_bus *bus)
5b4deb65
TP
708{
709 struct mvebu_pcie *pcie = sys_to_pcie(bus->sysdata);
710 bus->msi = pcie->msi;
711}
712
f5072dfb
JH
713static resource_size_t mvebu_pcie_align_resource(struct pci_dev *dev,
714 const struct resource *res,
715 resource_size_t start,
716 resource_size_t size,
717 resource_size_t align)
45361a4f
TP
718{
719 if (dev->bus->number != 0)
720 return start;
721
722 /*
723 * On the PCI-to-PCI bridge side, the I/O windows must have at
724 * least a 64 KB size and be aligned on their size, and the
725 * memory windows must have at least a 1 MB size and be
726 * aligned on their size
727 */
728 if (res->flags & IORESOURCE_IO)
06489002 729 return round_up(start, max_t(resource_size_t, SZ_64K, size));
45361a4f 730 else if (res->flags & IORESOURCE_MEM)
06489002 731 return round_up(start, max_t(resource_size_t, SZ_1M, size));
45361a4f
TP
732 else
733 return start;
734}
735
e5615c30 736static void mvebu_pcie_enable(struct mvebu_pcie *pcie)
45361a4f
TP
737{
738 struct hw_pci hw;
739
740 memset(&hw, 0, sizeof(hw));
741
742 hw.nr_controllers = 1;
743 hw.private_data = (void **)&pcie;
744 hw.setup = mvebu_pcie_setup;
745 hw.scan = mvebu_pcie_scan_bus;
16b84e5a 746 hw.map_irq = of_irq_parse_and_map_pci;
45361a4f
TP
747 hw.ops = &mvebu_pcie_ops;
748 hw.align_resource = mvebu_pcie_align_resource;
5b4deb65 749 hw.add_bus = mvebu_pcie_add_bus;
45361a4f
TP
750
751 pci_common_init(&hw);
752}
753
754/*
755 * Looks up the list of register addresses encoded into the reg =
756 * <...> property for one that matches the given port/lane. Once
757 * found, maps it.
758 */
e5615c30
SH
759static void __iomem *mvebu_pcie_map_registers(struct platform_device *pdev,
760 struct device_node *np, struct mvebu_pcie_port *port)
45361a4f
TP
761{
762 struct resource regs;
763 int ret = 0;
764
765 ret = of_address_to_resource(np, 0, &regs);
766 if (ret)
f48fbf9c 767 return ERR_PTR(ret);
45361a4f 768
f48fbf9c 769 return devm_ioremap_resource(&pdev->dev, &regs);
45361a4f
TP
770}
771
11be6547
TP
772#define DT_FLAGS_TO_TYPE(flags) (((flags) >> 24) & 0x03)
773#define DT_TYPE_IO 0x1
774#define DT_TYPE_MEM32 0x2
775#define DT_CPUADDR_TO_TARGET(cpuaddr) (((cpuaddr) >> 56) & 0xFF)
776#define DT_CPUADDR_TO_ATTR(cpuaddr) (((cpuaddr) >> 48) & 0xFF)
777
778static int mvebu_get_tgt_attr(struct device_node *np, int devfn,
641e674d
JG
779 unsigned long type,
780 unsigned int *tgt,
781 unsigned int *attr)
11be6547
TP
782{
783 const int na = 3, ns = 2;
784 const __be32 *range;
785 int rlen, nranges, rangesz, pna, i;
786
641e674d
JG
787 *tgt = -1;
788 *attr = -1;
789
11be6547
TP
790 range = of_get_property(np, "ranges", &rlen);
791 if (!range)
792 return -EINVAL;
793
794 pna = of_n_addr_cells(np);
795 rangesz = pna + na + ns;
796 nranges = rlen / sizeof(__be32) / rangesz;
797
798 for (i = 0; i < nranges; i++) {
799 u32 flags = of_read_number(range, 1);
800 u32 slot = of_read_number(range, 2);
801 u64 cpuaddr = of_read_number(range + na, pna);
802 unsigned long rtype;
803
804 if (DT_FLAGS_TO_TYPE(flags) == DT_TYPE_IO)
805 rtype = IORESOURCE_IO;
806 else if (DT_FLAGS_TO_TYPE(flags) == DT_TYPE_MEM32)
807 rtype = IORESOURCE_MEM;
808
809 if (slot == PCI_SLOT(devfn) && type == rtype) {
810 *tgt = DT_CPUADDR_TO_TARGET(cpuaddr);
811 *attr = DT_CPUADDR_TO_ATTR(cpuaddr);
812 return 0;
813 }
814
815 range += rangesz;
816 }
817
818 return -ENOENT;
819}
820
e5615c30 821static void mvebu_pcie_msi_enable(struct mvebu_pcie *pcie)
5b4deb65
TP
822{
823 struct device_node *msi_node;
824
825 msi_node = of_parse_phandle(pcie->pdev->dev.of_node,
826 "msi-parent", 0);
827 if (!msi_node)
828 return;
829
830 pcie->msi = of_pci_find_msi_chip_by_node(msi_node);
831
832 if (pcie->msi)
833 pcie->msi->dev = &pcie->pdev->dev;
834}
835
e5615c30 836static int mvebu_pcie_probe(struct platform_device *pdev)
45361a4f
TP
837{
838 struct mvebu_pcie *pcie;
839 struct device_node *np = pdev->dev.of_node;
45361a4f
TP
840 struct device_node *child;
841 int i, ret;
842
843 pcie = devm_kzalloc(&pdev->dev, sizeof(struct mvebu_pcie),
844 GFP_KERNEL);
845 if (!pcie)
846 return -ENOMEM;
847
848 pcie->pdev = pdev;
e5615c30 849 platform_set_drvdata(pdev, pcie);
45361a4f 850
11be6547
TP
851 /* Get the PCIe memory and I/O aperture */
852 mvebu_mbus_get_pcie_mem_aperture(&pcie->mem);
853 if (resource_size(&pcie->mem) == 0) {
854 dev_err(&pdev->dev, "invalid memory aperture size\n");
45361a4f 855 return -EINVAL;
11be6547 856 }
45361a4f 857
11be6547 858 mvebu_mbus_get_pcie_io_aperture(&pcie->io);
45361a4f 859
641e674d
JG
860 if (resource_size(&pcie->io) != 0) {
861 pcie->realio.flags = pcie->io.flags;
862 pcie->realio.start = PCIBIOS_MIN_IO;
863 pcie->realio.end = min_t(resource_size_t,
864 IO_SPACE_LIMIT,
865 resource_size(&pcie->io));
866 } else
867 pcie->realio = pcie->io;
11be6547 868
45361a4f
TP
869 /* Get the bus range */
870 ret = of_pci_parse_bus_range(np, &pcie->busn);
871 if (ret) {
872 dev_err(&pdev->dev, "failed to parse bus-range property: %d\n",
873 ret);
874 return ret;
875 }
876
bf09b6ae 877 i = 0;
45361a4f
TP
878 for_each_child_of_node(pdev->dev.of_node, child) {
879 if (!of_device_is_available(child))
880 continue;
bf09b6ae 881 i++;
45361a4f
TP
882 }
883
bf09b6ae 884 pcie->ports = devm_kzalloc(&pdev->dev, i *
45361a4f
TP
885 sizeof(struct mvebu_pcie_port),
886 GFP_KERNEL);
887 if (!pcie->ports)
888 return -ENOMEM;
889
890 i = 0;
891 for_each_child_of_node(pdev->dev.of_node, child) {
892 struct mvebu_pcie_port *port = &pcie->ports[i];
52ba992e 893 enum of_gpio_flags flags;
45361a4f
TP
894
895 if (!of_device_is_available(child))
896 continue;
897
898 port->pcie = pcie;
899
900 if (of_property_read_u32(child, "marvell,pcie-port",
901 &port->port)) {
902 dev_warn(&pdev->dev,
903 "ignoring PCIe DT node, missing pcie-port property\n");
904 continue;
905 }
906
907 if (of_property_read_u32(child, "marvell,pcie-lane",
908 &port->lane))
909 port->lane = 0;
910
911 port->name = kasprintf(GFP_KERNEL, "pcie%d.%d",
912 port->port, port->lane);
913
914 port->devfn = of_pci_get_devfn(child);
915 if (port->devfn < 0)
916 continue;
917
11be6547
TP
918 ret = mvebu_get_tgt_attr(np, port->devfn, IORESOURCE_MEM,
919 &port->mem_target, &port->mem_attr);
920 if (ret < 0) {
921 dev_err(&pdev->dev, "PCIe%d.%d: cannot get tgt/attr for mem window\n",
922 port->port, port->lane);
923 continue;
924 }
925
641e674d
JG
926 if (resource_size(&pcie->io) != 0)
927 mvebu_get_tgt_attr(np, port->devfn, IORESOURCE_IO,
928 &port->io_target, &port->io_attr);
929 else {
930 port->io_target = -1;
931 port->io_attr = -1;
11be6547
TP
932 }
933
52ba992e
SH
934 port->reset_gpio = of_get_named_gpio_flags(child,
935 "reset-gpios", 0, &flags);
936 if (gpio_is_valid(port->reset_gpio)) {
937 u32 reset_udelay = 20000;
938
939 port->reset_active_low = flags & OF_GPIO_ACTIVE_LOW;
940 port->reset_name = kasprintf(GFP_KERNEL,
941 "pcie%d.%d-reset", port->port, port->lane);
942 of_property_read_u32(child, "reset-delay-us",
943 &reset_udelay);
944
945 ret = devm_gpio_request_one(&pdev->dev,
946 port->reset_gpio, GPIOF_DIR_OUT, port->reset_name);
947 if (ret) {
948 if (ret == -EPROBE_DEFER)
949 return ret;
950 continue;
951 }
952
953 gpio_set_value(port->reset_gpio,
954 (port->reset_active_low) ? 1 : 0);
955 msleep(reset_udelay/1000);
956 }
957
b42285f6
SH
958 port->clk = of_clk_get_by_name(child, NULL);
959 if (IS_ERR(port->clk)) {
960 dev_err(&pdev->dev, "PCIe%d.%d: cannot get clock\n",
961 port->port, port->lane);
962 continue;
963 }
964
965 ret = clk_prepare_enable(port->clk);
966 if (ret)
967 continue;
968
45361a4f 969 port->base = mvebu_pcie_map_registers(pdev, child, port);
f48fbf9c 970 if (IS_ERR(port->base)) {
45361a4f
TP
971 dev_err(&pdev->dev, "PCIe%d.%d: cannot map registers\n",
972 port->port, port->lane);
f48fbf9c 973 port->base = NULL;
b42285f6 974 clk_disable_unprepare(port->clk);
45361a4f
TP
975 continue;
976 }
977
f4ac9901
TP
978 mvebu_pcie_set_local_dev_nr(port, 1);
979
45361a4f 980 port->dn = child;
45361a4f 981 spin_lock_init(&port->conf_lock);
45361a4f 982 mvebu_sw_pci_bridge_init(port);
45361a4f
TP
983 i++;
984 }
985
bf09b6ae 986 pcie->nports = i;
31e45ec3
TP
987
988 for (i = 0; i < (IO_SPACE_LIMIT - SZ_64K); i += SZ_64K)
989 pci_ioremap_io(i, pcie->io.start + i);
990
5b4deb65 991 mvebu_pcie_msi_enable(pcie);
45361a4f
TP
992 mvebu_pcie_enable(pcie);
993
994 return 0;
995}
996
997static const struct of_device_id mvebu_pcie_of_match_table[] = {
998 { .compatible = "marvell,armada-xp-pcie", },
999 { .compatible = "marvell,armada-370-pcie", },
cc54ccd9 1000 { .compatible = "marvell,dove-pcie", },
005625fc 1001 { .compatible = "marvell,kirkwood-pcie", },
45361a4f
TP
1002 {},
1003};
1004MODULE_DEVICE_TABLE(of, mvebu_pcie_of_match_table);
1005
1006static struct platform_driver mvebu_pcie_driver = {
1007 .driver = {
1008 .owner = THIS_MODULE,
1009 .name = "mvebu-pcie",
339135ff 1010 .of_match_table = mvebu_pcie_of_match_table,
e5615c30
SH
1011 /* driver unloading/unbinding currently not supported */
1012 .suppress_bind_attrs = true,
45361a4f 1013 },
e5615c30 1014 .probe = mvebu_pcie_probe,
45361a4f 1015};
e5615c30 1016module_platform_driver(mvebu_pcie_driver);
45361a4f
TP
1017
1018MODULE_AUTHOR("Thomas Petazzoni <thomas.petazzoni@free-electrons.com>");
1019MODULE_DESCRIPTION("Marvell EBU PCIe driver");
1020MODULE_LICENSE("GPLv2");