blob: 729d5a101d621ece6d36b425ad213a48a57a859f [file] [log] [blame]
Thomas Petazzoni45361a42013-05-16 17:55:22 +02001/*
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>
12#include <linux/module.h>
13#include <linux/mbus.h>
14#include <linux/slab.h>
15#include <linux/platform_device.h>
16#include <linux/of_address.h>
17#include <linux/of_pci.h>
18#include <linux/of_irq.h>
19#include <linux/of_platform.h>
20
21/*
22 * PCIe unit register offsets.
23 */
24#define PCIE_DEV_ID_OFF 0x0000
25#define PCIE_CMD_OFF 0x0004
26#define PCIE_DEV_REV_OFF 0x0008
27#define PCIE_BAR_LO_OFF(n) (0x0010 + ((n) << 3))
28#define PCIE_BAR_HI_OFF(n) (0x0014 + ((n) << 3))
29#define PCIE_HEADER_LOG_4_OFF 0x0128
30#define PCIE_BAR_CTRL_OFF(n) (0x1804 + (((n) - 1) * 4))
31#define PCIE_WIN04_CTRL_OFF(n) (0x1820 + ((n) << 4))
32#define PCIE_WIN04_BASE_OFF(n) (0x1824 + ((n) << 4))
33#define PCIE_WIN04_REMAP_OFF(n) (0x182c + ((n) << 4))
34#define PCIE_WIN5_CTRL_OFF 0x1880
35#define PCIE_WIN5_BASE_OFF 0x1884
36#define PCIE_WIN5_REMAP_OFF 0x188c
37#define PCIE_CONF_ADDR_OFF 0x18f8
38#define PCIE_CONF_ADDR_EN 0x80000000
39#define PCIE_CONF_REG(r) ((((r) & 0xf00) << 16) | ((r) & 0xfc))
40#define PCIE_CONF_BUS(b) (((b) & 0xff) << 16)
41#define PCIE_CONF_DEV(d) (((d) & 0x1f) << 11)
42#define PCIE_CONF_FUNC(f) (((f) & 0x7) << 8)
43#define PCIE_CONF_ADDR(bus, devfn, where) \
44 (PCIE_CONF_BUS(bus) | PCIE_CONF_DEV(PCI_SLOT(devfn)) | \
45 PCIE_CONF_FUNC(PCI_FUNC(devfn)) | PCIE_CONF_REG(where) | \
46 PCIE_CONF_ADDR_EN)
47#define PCIE_CONF_DATA_OFF 0x18fc
48#define PCIE_MASK_OFF 0x1910
49#define PCIE_MASK_ENABLE_INTS 0x0f000000
50#define PCIE_CTRL_OFF 0x1a00
51#define PCIE_CTRL_X1_MODE 0x0001
52#define PCIE_STAT_OFF 0x1a04
53#define PCIE_STAT_BUS 0xff00
Thomas Petazzonif4ac9902013-05-23 16:32:51 +020054#define PCIE_STAT_DEV 0x1f0000
Thomas Petazzoni45361a42013-05-16 17:55:22 +020055#define PCIE_STAT_LINK_DOWN BIT(0)
56#define PCIE_DEBUG_CTRL 0x1a60
57#define PCIE_DEBUG_SOFT_RESET BIT(20)
58
59/*
60 * This product ID is registered by Marvell, and used when the Marvell
61 * SoC is not the root complex, but an endpoint on the PCIe bus. It is
62 * therefore safe to re-use this PCI ID for our emulated PCI-to-PCI
63 * bridge.
64 */
65#define MARVELL_EMULATED_PCI_PCI_BRIDGE_ID 0x7846
66
67/* PCI configuration space of a PCI-to-PCI bridge */
68struct mvebu_sw_pci_bridge {
69 u16 vendor;
70 u16 device;
71 u16 command;
Thomas Petazzoni45361a42013-05-16 17:55:22 +020072 u16 class;
73 u8 interface;
74 u8 revision;
75 u8 bist;
76 u8 header_type;
77 u8 latency_timer;
78 u8 cache_line_size;
79 u32 bar[2];
80 u8 primary_bus;
81 u8 secondary_bus;
82 u8 subordinate_bus;
83 u8 secondary_latency_timer;
84 u8 iobase;
85 u8 iolimit;
86 u16 secondary_status;
87 u16 membase;
88 u16 memlimit;
Thomas Petazzoni45361a42013-05-16 17:55:22 +020089 u16 iobaseupper;
90 u16 iolimitupper;
91 u8 cappointer;
92 u8 reserved1;
93 u16 reserved2;
94 u32 romaddr;
95 u8 intline;
96 u8 intpin;
97 u16 bridgectrl;
98};
99
100struct mvebu_pcie_port;
101
102/* Structure representing all PCIe interfaces */
103struct mvebu_pcie {
104 struct platform_device *pdev;
105 struct mvebu_pcie_port *ports;
106 struct resource io;
107 struct resource realio;
108 struct resource mem;
109 struct resource busn;
110 int nports;
111};
112
113/* Structure representing one PCIe interface */
114struct mvebu_pcie_port {
115 char *name;
116 void __iomem *base;
117 spinlock_t conf_lock;
118 int haslink;
119 u32 port;
120 u32 lane;
121 int devfn;
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300122 unsigned int mem_target;
123 unsigned int mem_attr;
124 unsigned int io_target;
125 unsigned int io_attr;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200126 struct clk *clk;
127 struct mvebu_sw_pci_bridge bridge;
128 struct device_node *dn;
129 struct mvebu_pcie *pcie;
130 phys_addr_t memwin_base;
131 size_t memwin_size;
132 phys_addr_t iowin_base;
133 size_t iowin_size;
134};
135
136static bool mvebu_pcie_link_up(struct mvebu_pcie_port *port)
137{
138 return !(readl(port->base + PCIE_STAT_OFF) & PCIE_STAT_LINK_DOWN);
139}
140
141static void mvebu_pcie_set_local_bus_nr(struct mvebu_pcie_port *port, int nr)
142{
143 u32 stat;
144
145 stat = readl(port->base + PCIE_STAT_OFF);
146 stat &= ~PCIE_STAT_BUS;
147 stat |= nr << 8;
148 writel(stat, port->base + PCIE_STAT_OFF);
149}
150
Thomas Petazzonif4ac9902013-05-23 16:32:51 +0200151static void mvebu_pcie_set_local_dev_nr(struct mvebu_pcie_port *port, int nr)
152{
153 u32 stat;
154
155 stat = readl(port->base + PCIE_STAT_OFF);
156 stat &= ~PCIE_STAT_DEV;
157 stat |= nr << 16;
158 writel(stat, port->base + PCIE_STAT_OFF);
159}
160
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200161/*
162 * Setup PCIE BARs and Address Decode Wins:
163 * BAR[0,2] -> disabled, BAR[1] -> covers all DRAM banks
164 * WIN[0-3] -> DRAM bank[0-3]
165 */
166static void __init mvebu_pcie_setup_wins(struct mvebu_pcie_port *port)
167{
168 const struct mbus_dram_target_info *dram;
169 u32 size;
170 int i;
171
172 dram = mv_mbus_dram_info();
173
174 /* First, disable and clear BARs and windows. */
175 for (i = 1; i < 3; i++) {
176 writel(0, port->base + PCIE_BAR_CTRL_OFF(i));
177 writel(0, port->base + PCIE_BAR_LO_OFF(i));
178 writel(0, port->base + PCIE_BAR_HI_OFF(i));
179 }
180
181 for (i = 0; i < 5; i++) {
182 writel(0, port->base + PCIE_WIN04_CTRL_OFF(i));
183 writel(0, port->base + PCIE_WIN04_BASE_OFF(i));
184 writel(0, port->base + PCIE_WIN04_REMAP_OFF(i));
185 }
186
187 writel(0, port->base + PCIE_WIN5_CTRL_OFF);
188 writel(0, port->base + PCIE_WIN5_BASE_OFF);
189 writel(0, port->base + PCIE_WIN5_REMAP_OFF);
190
191 /* Setup windows for DDR banks. Count total DDR size on the fly. */
192 size = 0;
193 for (i = 0; i < dram->num_cs; i++) {
194 const struct mbus_dram_window *cs = dram->cs + i;
195
196 writel(cs->base & 0xffff0000,
197 port->base + PCIE_WIN04_BASE_OFF(i));
198 writel(0, port->base + PCIE_WIN04_REMAP_OFF(i));
199 writel(((cs->size - 1) & 0xffff0000) |
200 (cs->mbus_attr << 8) |
201 (dram->mbus_dram_target_id << 4) | 1,
202 port->base + PCIE_WIN04_CTRL_OFF(i));
203
204 size += cs->size;
205 }
206
207 /* Round up 'size' to the nearest power of two. */
208 if ((size & (size - 1)) != 0)
209 size = 1 << fls(size);
210
211 /* Setup BAR[1] to all DRAM banks. */
212 writel(dram->cs[0].base, port->base + PCIE_BAR_LO_OFF(1));
213 writel(0, port->base + PCIE_BAR_HI_OFF(1));
214 writel(((size - 1) & 0xffff0000) | 1,
215 port->base + PCIE_BAR_CTRL_OFF(1));
216}
217
218static void __init mvebu_pcie_setup_hw(struct mvebu_pcie_port *port)
219{
220 u16 cmd;
221 u32 mask;
222
223 /* Point PCIe unit MBUS decode windows to DRAM space. */
224 mvebu_pcie_setup_wins(port);
225
226 /* Master + slave enable. */
227 cmd = readw(port->base + PCIE_CMD_OFF);
228 cmd |= PCI_COMMAND_IO;
229 cmd |= PCI_COMMAND_MEMORY;
230 cmd |= PCI_COMMAND_MASTER;
231 writew(cmd, port->base + PCIE_CMD_OFF);
232
233 /* Enable interrupt lines A-D. */
234 mask = readl(port->base + PCIE_MASK_OFF);
235 mask |= PCIE_MASK_ENABLE_INTS;
236 writel(mask, port->base + PCIE_MASK_OFF);
237}
238
239static int mvebu_pcie_hw_rd_conf(struct mvebu_pcie_port *port,
240 struct pci_bus *bus,
241 u32 devfn, int where, int size, u32 *val)
242{
243 writel(PCIE_CONF_ADDR(bus->number, devfn, where),
244 port->base + PCIE_CONF_ADDR_OFF);
245
246 *val = readl(port->base + PCIE_CONF_DATA_OFF);
247
248 if (size == 1)
249 *val = (*val >> (8 * (where & 3))) & 0xff;
250 else if (size == 2)
251 *val = (*val >> (8 * (where & 3))) & 0xffff;
252
253 return PCIBIOS_SUCCESSFUL;
254}
255
256static int mvebu_pcie_hw_wr_conf(struct mvebu_pcie_port *port,
257 struct pci_bus *bus,
258 u32 devfn, int where, int size, u32 val)
259{
260 int ret = PCIBIOS_SUCCESSFUL;
261
262 writel(PCIE_CONF_ADDR(bus->number, devfn, where),
263 port->base + PCIE_CONF_ADDR_OFF);
264
265 if (size == 4)
266 writel(val, port->base + PCIE_CONF_DATA_OFF);
267 else if (size == 2)
268 writew(val, port->base + PCIE_CONF_DATA_OFF + (where & 3));
269 else if (size == 1)
270 writeb(val, port->base + PCIE_CONF_DATA_OFF + (where & 3));
271 else
272 ret = PCIBIOS_BAD_REGISTER_NUMBER;
273
274 return ret;
275}
276
277static void mvebu_pcie_handle_iobase_change(struct mvebu_pcie_port *port)
278{
279 phys_addr_t iobase;
280
281 /* Are the new iobase/iolimit values invalid? */
282 if (port->bridge.iolimit < port->bridge.iobase ||
283 port->bridge.iolimitupper < port->bridge.iobaseupper) {
284
285 /* If a window was configured, remove it */
286 if (port->iowin_base) {
287 mvebu_mbus_del_window(port->iowin_base,
288 port->iowin_size);
289 port->iowin_base = 0;
290 port->iowin_size = 0;
291 }
292
293 return;
294 }
295
296 /*
297 * We read the PCI-to-PCI bridge emulated registers, and
298 * calculate the base address and size of the address decoding
299 * window to setup, according to the PCI-to-PCI bridge
300 * specifications. iobase is the bus address, port->iowin_base
301 * is the CPU address.
302 */
303 iobase = ((port->bridge.iobase & 0xF0) << 8) |
304 (port->bridge.iobaseupper << 16);
305 port->iowin_base = port->pcie->io.start + iobase;
306 port->iowin_size = ((0xFFF | ((port->bridge.iolimit & 0xF0) << 8) |
307 (port->bridge.iolimitupper << 16)) -
308 iobase);
309
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300310 mvebu_mbus_add_window_remap_by_id(port->io_target, port->io_attr,
311 port->iowin_base, port->iowin_size,
312 iobase);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200313
314 pci_ioremap_io(iobase, port->iowin_base);
315}
316
317static void mvebu_pcie_handle_membase_change(struct mvebu_pcie_port *port)
318{
319 /* Are the new membase/memlimit values invalid? */
320 if (port->bridge.memlimit < port->bridge.membase) {
321
322 /* If a window was configured, remove it */
323 if (port->memwin_base) {
324 mvebu_mbus_del_window(port->memwin_base,
325 port->memwin_size);
326 port->memwin_base = 0;
327 port->memwin_size = 0;
328 }
329
330 return;
331 }
332
333 /*
334 * We read the PCI-to-PCI bridge emulated registers, and
335 * calculate the base address and size of the address decoding
336 * window to setup, according to the PCI-to-PCI bridge
337 * specifications.
338 */
339 port->memwin_base = ((port->bridge.membase & 0xFFF0) << 16);
340 port->memwin_size =
341 (((port->bridge.memlimit & 0xFFF0) << 16) | 0xFFFFF) -
342 port->memwin_base;
343
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300344 mvebu_mbus_add_window_by_id(port->mem_target, port->mem_attr,
345 port->memwin_base, port->memwin_size);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200346}
347
348/*
349 * Initialize the configuration space of the PCI-to-PCI bridge
350 * associated with the given PCIe interface.
351 */
352static void mvebu_sw_pci_bridge_init(struct mvebu_pcie_port *port)
353{
354 struct mvebu_sw_pci_bridge *bridge = &port->bridge;
355
356 memset(bridge, 0, sizeof(struct mvebu_sw_pci_bridge));
357
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200358 bridge->class = PCI_CLASS_BRIDGE_PCI;
359 bridge->vendor = PCI_VENDOR_ID_MARVELL;
360 bridge->device = MARVELL_EMULATED_PCI_PCI_BRIDGE_ID;
361 bridge->header_type = PCI_HEADER_TYPE_BRIDGE;
362 bridge->cache_line_size = 0x10;
363
364 /* We support 32 bits I/O addressing */
365 bridge->iobase = PCI_IO_RANGE_TYPE_32;
366 bridge->iolimit = PCI_IO_RANGE_TYPE_32;
367}
368
369/*
370 * Read the configuration space of the PCI-to-PCI bridge associated to
371 * the given PCIe interface.
372 */
373static int mvebu_sw_pci_bridge_read(struct mvebu_pcie_port *port,
374 unsigned int where, int size, u32 *value)
375{
376 struct mvebu_sw_pci_bridge *bridge = &port->bridge;
377
378 switch (where & ~3) {
379 case PCI_VENDOR_ID:
380 *value = bridge->device << 16 | bridge->vendor;
381 break;
382
383 case PCI_COMMAND:
Thomas Petazzoni6eb237c2013-05-23 16:32:53 +0200384 *value = bridge->command;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200385 break;
386
387 case PCI_CLASS_REVISION:
388 *value = bridge->class << 16 | bridge->interface << 8 |
389 bridge->revision;
390 break;
391
392 case PCI_CACHE_LINE_SIZE:
393 *value = bridge->bist << 24 | bridge->header_type << 16 |
394 bridge->latency_timer << 8 | bridge->cache_line_size;
395 break;
396
397 case PCI_BASE_ADDRESS_0 ... PCI_BASE_ADDRESS_1:
398 *value = bridge->bar[((where & ~3) - PCI_BASE_ADDRESS_0) / 4];
399 break;
400
401 case PCI_PRIMARY_BUS:
402 *value = (bridge->secondary_latency_timer << 24 |
403 bridge->subordinate_bus << 16 |
404 bridge->secondary_bus << 8 |
405 bridge->primary_bus);
406 break;
407
408 case PCI_IO_BASE:
409 *value = (bridge->secondary_status << 16 |
410 bridge->iolimit << 8 |
411 bridge->iobase);
412 break;
413
414 case PCI_MEMORY_BASE:
415 *value = (bridge->memlimit << 16 | bridge->membase);
416 break;
417
418 case PCI_PREF_MEMORY_BASE:
Thomas Petazzoni36dd1f32013-08-01 15:44:19 +0200419 *value = 0;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200420 break;
421
422 case PCI_IO_BASE_UPPER16:
423 *value = (bridge->iolimitupper << 16 | bridge->iobaseupper);
424 break;
425
426 case PCI_ROM_ADDRESS1:
427 *value = 0;
428 break;
429
430 default:
431 *value = 0xffffffff;
432 return PCIBIOS_BAD_REGISTER_NUMBER;
433 }
434
435 if (size == 2)
436 *value = (*value >> (8 * (where & 3))) & 0xffff;
437 else if (size == 1)
438 *value = (*value >> (8 * (where & 3))) & 0xff;
439
440 return PCIBIOS_SUCCESSFUL;
441}
442
443/* Write to the PCI-to-PCI bridge configuration space */
444static int mvebu_sw_pci_bridge_write(struct mvebu_pcie_port *port,
445 unsigned int where, int size, u32 value)
446{
447 struct mvebu_sw_pci_bridge *bridge = &port->bridge;
448 u32 mask, reg;
449 int err;
450
451 if (size == 4)
452 mask = 0x0;
453 else if (size == 2)
454 mask = ~(0xffff << ((where & 3) * 8));
455 else if (size == 1)
456 mask = ~(0xff << ((where & 3) * 8));
457 else
458 return PCIBIOS_BAD_REGISTER_NUMBER;
459
460 err = mvebu_sw_pci_bridge_read(port, where & ~3, 4, &reg);
461 if (err)
462 return err;
463
464 value = (reg & mask) | value << ((where & 3) * 8);
465
466 switch (where & ~3) {
467 case PCI_COMMAND:
468 bridge->command = value & 0xffff;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200469 break;
470
471 case PCI_BASE_ADDRESS_0 ... PCI_BASE_ADDRESS_1:
472 bridge->bar[((where & ~3) - PCI_BASE_ADDRESS_0) / 4] = value;
473 break;
474
475 case PCI_IO_BASE:
476 /*
477 * We also keep bit 1 set, it is a read-only bit that
478 * indicates we support 32 bits addressing for the
479 * I/O
480 */
481 bridge->iobase = (value & 0xff) | PCI_IO_RANGE_TYPE_32;
482 bridge->iolimit = ((value >> 8) & 0xff) | PCI_IO_RANGE_TYPE_32;
483 bridge->secondary_status = value >> 16;
484 mvebu_pcie_handle_iobase_change(port);
485 break;
486
487 case PCI_MEMORY_BASE:
488 bridge->membase = value & 0xffff;
489 bridge->memlimit = value >> 16;
490 mvebu_pcie_handle_membase_change(port);
491 break;
492
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200493 case PCI_IO_BASE_UPPER16:
494 bridge->iobaseupper = value & 0xffff;
495 bridge->iolimitupper = value >> 16;
496 mvebu_pcie_handle_iobase_change(port);
497 break;
498
499 case PCI_PRIMARY_BUS:
500 bridge->primary_bus = value & 0xff;
501 bridge->secondary_bus = (value >> 8) & 0xff;
502 bridge->subordinate_bus = (value >> 16) & 0xff;
503 bridge->secondary_latency_timer = (value >> 24) & 0xff;
504 mvebu_pcie_set_local_bus_nr(port, bridge->secondary_bus);
505 break;
506
507 default:
508 break;
509 }
510
511 return PCIBIOS_SUCCESSFUL;
512}
513
514static inline struct mvebu_pcie *sys_to_pcie(struct pci_sys_data *sys)
515{
516 return sys->private_data;
517}
518
519static struct mvebu_pcie_port *
520mvebu_pcie_find_port(struct mvebu_pcie *pcie, struct pci_bus *bus,
521 int devfn)
522{
523 int i;
524
525 for (i = 0; i < pcie->nports; i++) {
526 struct mvebu_pcie_port *port = &pcie->ports[i];
527 if (bus->number == 0 && port->devfn == devfn)
528 return port;
529 if (bus->number != 0 &&
Thomas Petazzoni197fc222013-05-23 16:32:52 +0200530 bus->number >= port->bridge.secondary_bus &&
531 bus->number <= port->bridge.subordinate_bus)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200532 return port;
533 }
534
535 return NULL;
536}
537
538/* PCI configuration space write function */
539static int mvebu_pcie_wr_conf(struct pci_bus *bus, u32 devfn,
540 int where, int size, u32 val)
541{
542 struct mvebu_pcie *pcie = sys_to_pcie(bus->sysdata);
543 struct mvebu_pcie_port *port;
544 unsigned long flags;
545 int ret;
546
547 port = mvebu_pcie_find_port(pcie, bus, devfn);
548 if (!port)
549 return PCIBIOS_DEVICE_NOT_FOUND;
550
551 /* Access the emulated PCI-to-PCI bridge */
552 if (bus->number == 0)
553 return mvebu_sw_pci_bridge_write(port, where, size, val);
554
Thomas Petazzoni197fc222013-05-23 16:32:52 +0200555 if (!port->haslink)
556 return PCIBIOS_DEVICE_NOT_FOUND;
557
558 /*
559 * On the secondary bus, we don't want to expose any other
560 * device than the device physically connected in the PCIe
561 * slot, visible in slot 0. In slot 1, there's a special
562 * Marvell device that only makes sense when the Armada is
563 * used as a PCIe endpoint.
564 */
565 if (bus->number == port->bridge.secondary_bus &&
566 PCI_SLOT(devfn) != 0)
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200567 return PCIBIOS_DEVICE_NOT_FOUND;
568
569 /* Access the real PCIe interface */
570 spin_lock_irqsave(&port->conf_lock, flags);
Thomas Petazzonif4ac9902013-05-23 16:32:51 +0200571 ret = mvebu_pcie_hw_wr_conf(port, bus, devfn,
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200572 where, size, val);
573 spin_unlock_irqrestore(&port->conf_lock, flags);
574
575 return ret;
576}
577
578/* PCI configuration space read function */
579static int mvebu_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where,
580 int size, u32 *val)
581{
582 struct mvebu_pcie *pcie = sys_to_pcie(bus->sysdata);
583 struct mvebu_pcie_port *port;
584 unsigned long flags;
585 int ret;
586
587 port = mvebu_pcie_find_port(pcie, bus, devfn);
588 if (!port) {
589 *val = 0xffffffff;
590 return PCIBIOS_DEVICE_NOT_FOUND;
591 }
592
593 /* Access the emulated PCI-to-PCI bridge */
594 if (bus->number == 0)
595 return mvebu_sw_pci_bridge_read(port, where, size, val);
596
Thomas Petazzoni197fc222013-05-23 16:32:52 +0200597 if (!port->haslink) {
598 *val = 0xffffffff;
599 return PCIBIOS_DEVICE_NOT_FOUND;
600 }
601
602 /*
603 * On the secondary bus, we don't want to expose any other
604 * device than the device physically connected in the PCIe
605 * slot, visible in slot 0. In slot 1, there's a special
606 * Marvell device that only makes sense when the Armada is
607 * used as a PCIe endpoint.
608 */
609 if (bus->number == port->bridge.secondary_bus &&
610 PCI_SLOT(devfn) != 0) {
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200611 *val = 0xffffffff;
612 return PCIBIOS_DEVICE_NOT_FOUND;
613 }
614
615 /* Access the real PCIe interface */
616 spin_lock_irqsave(&port->conf_lock, flags);
Thomas Petazzonif4ac9902013-05-23 16:32:51 +0200617 ret = mvebu_pcie_hw_rd_conf(port, bus, devfn,
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200618 where, size, val);
619 spin_unlock_irqrestore(&port->conf_lock, flags);
620
621 return ret;
622}
623
624static struct pci_ops mvebu_pcie_ops = {
625 .read = mvebu_pcie_rd_conf,
626 .write = mvebu_pcie_wr_conf,
627};
628
629static int __init mvebu_pcie_setup(int nr, struct pci_sys_data *sys)
630{
631 struct mvebu_pcie *pcie = sys_to_pcie(sys);
632 int i;
633
634 pci_add_resource_offset(&sys->resources, &pcie->realio, sys->io_offset);
635 pci_add_resource_offset(&sys->resources, &pcie->mem, sys->mem_offset);
636 pci_add_resource(&sys->resources, &pcie->busn);
637
638 for (i = 0; i < pcie->nports; i++) {
639 struct mvebu_pcie_port *port = &pcie->ports[i];
Ezequiel Garciab22503a2013-07-26 10:17:49 -0300640 if (!port->base)
641 continue;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200642 mvebu_pcie_setup_hw(port);
643 }
644
645 return 1;
646}
647
648static int __init mvebu_pcie_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
649{
650 struct of_irq oirq;
651 int ret;
652
653 ret = of_irq_map_pci(dev, &oirq);
654 if (ret)
655 return ret;
656
657 return irq_create_of_mapping(oirq.controller, oirq.specifier,
658 oirq.size);
659}
660
661static struct pci_bus *mvebu_pcie_scan_bus(int nr, struct pci_sys_data *sys)
662{
663 struct mvebu_pcie *pcie = sys_to_pcie(sys);
664 struct pci_bus *bus;
665
666 bus = pci_create_root_bus(&pcie->pdev->dev, sys->busnr,
667 &mvebu_pcie_ops, sys, &sys->resources);
668 if (!bus)
669 return NULL;
670
671 pci_scan_child_bus(bus);
672
673 return bus;
674}
675
676resource_size_t mvebu_pcie_align_resource(struct pci_dev *dev,
677 const struct resource *res,
678 resource_size_t start,
679 resource_size_t size,
680 resource_size_t align)
681{
682 if (dev->bus->number != 0)
683 return start;
684
685 /*
686 * On the PCI-to-PCI bridge side, the I/O windows must have at
687 * least a 64 KB size and be aligned on their size, and the
688 * memory windows must have at least a 1 MB size and be
689 * aligned on their size
690 */
691 if (res->flags & IORESOURCE_IO)
692 return round_up(start, max((resource_size_t)SZ_64K, size));
693 else if (res->flags & IORESOURCE_MEM)
694 return round_up(start, max((resource_size_t)SZ_1M, size));
695 else
696 return start;
697}
698
699static void __init mvebu_pcie_enable(struct mvebu_pcie *pcie)
700{
701 struct hw_pci hw;
702
703 memset(&hw, 0, sizeof(hw));
704
705 hw.nr_controllers = 1;
706 hw.private_data = (void **)&pcie;
707 hw.setup = mvebu_pcie_setup;
708 hw.scan = mvebu_pcie_scan_bus;
709 hw.map_irq = mvebu_pcie_map_irq;
710 hw.ops = &mvebu_pcie_ops;
711 hw.align_resource = mvebu_pcie_align_resource;
712
713 pci_common_init(&hw);
714}
715
716/*
717 * Looks up the list of register addresses encoded into the reg =
718 * <...> property for one that matches the given port/lane. Once
719 * found, maps it.
720 */
721static void __iomem * __init
722mvebu_pcie_map_registers(struct platform_device *pdev,
723 struct device_node *np,
724 struct mvebu_pcie_port *port)
725{
726 struct resource regs;
727 int ret = 0;
728
729 ret = of_address_to_resource(np, 0, &regs);
730 if (ret)
Tushar Beheraf48fbf92013-06-17 14:46:13 +0530731 return ERR_PTR(ret);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200732
Tushar Beheraf48fbf92013-06-17 14:46:13 +0530733 return devm_ioremap_resource(&pdev->dev, &regs);
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200734}
735
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300736#define DT_FLAGS_TO_TYPE(flags) (((flags) >> 24) & 0x03)
737#define DT_TYPE_IO 0x1
738#define DT_TYPE_MEM32 0x2
739#define DT_CPUADDR_TO_TARGET(cpuaddr) (((cpuaddr) >> 56) & 0xFF)
740#define DT_CPUADDR_TO_ATTR(cpuaddr) (((cpuaddr) >> 48) & 0xFF)
741
742static int mvebu_get_tgt_attr(struct device_node *np, int devfn,
743 unsigned long type, int *tgt, int *attr)
744{
745 const int na = 3, ns = 2;
746 const __be32 *range;
747 int rlen, nranges, rangesz, pna, i;
748
749 range = of_get_property(np, "ranges", &rlen);
750 if (!range)
751 return -EINVAL;
752
753 pna = of_n_addr_cells(np);
754 rangesz = pna + na + ns;
755 nranges = rlen / sizeof(__be32) / rangesz;
756
757 for (i = 0; i < nranges; i++) {
758 u32 flags = of_read_number(range, 1);
759 u32 slot = of_read_number(range, 2);
760 u64 cpuaddr = of_read_number(range + na, pna);
761 unsigned long rtype;
762
763 if (DT_FLAGS_TO_TYPE(flags) == DT_TYPE_IO)
764 rtype = IORESOURCE_IO;
765 else if (DT_FLAGS_TO_TYPE(flags) == DT_TYPE_MEM32)
766 rtype = IORESOURCE_MEM;
767
768 if (slot == PCI_SLOT(devfn) && type == rtype) {
769 *tgt = DT_CPUADDR_TO_TARGET(cpuaddr);
770 *attr = DT_CPUADDR_TO_ATTR(cpuaddr);
771 return 0;
772 }
773
774 range += rangesz;
775 }
776
777 return -ENOENT;
778}
779
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200780static int __init mvebu_pcie_probe(struct platform_device *pdev)
781{
782 struct mvebu_pcie *pcie;
783 struct device_node *np = pdev->dev.of_node;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200784 struct device_node *child;
785 int i, ret;
786
787 pcie = devm_kzalloc(&pdev->dev, sizeof(struct mvebu_pcie),
788 GFP_KERNEL);
789 if (!pcie)
790 return -ENOMEM;
791
792 pcie->pdev = pdev;
793
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300794 /* Get the PCIe memory and I/O aperture */
795 mvebu_mbus_get_pcie_mem_aperture(&pcie->mem);
796 if (resource_size(&pcie->mem) == 0) {
797 dev_err(&pdev->dev, "invalid memory aperture size\n");
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200798 return -EINVAL;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200799 }
800
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300801 mvebu_mbus_get_pcie_io_aperture(&pcie->io);
802 if (resource_size(&pcie->io) == 0) {
803 dev_err(&pdev->dev, "invalid I/O aperture size\n");
804 return -EINVAL;
805 }
806
807 pcie->realio.flags = pcie->io.flags;
808 pcie->realio.start = PCIBIOS_MIN_IO;
809 pcie->realio.end = min_t(resource_size_t,
810 IO_SPACE_LIMIT,
811 resource_size(&pcie->io));
812
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200813 /* Get the bus range */
814 ret = of_pci_parse_bus_range(np, &pcie->busn);
815 if (ret) {
816 dev_err(&pdev->dev, "failed to parse bus-range property: %d\n",
817 ret);
818 return ret;
819 }
820
821 for_each_child_of_node(pdev->dev.of_node, child) {
822 if (!of_device_is_available(child))
823 continue;
824 pcie->nports++;
825 }
826
827 pcie->ports = devm_kzalloc(&pdev->dev, pcie->nports *
828 sizeof(struct mvebu_pcie_port),
829 GFP_KERNEL);
830 if (!pcie->ports)
831 return -ENOMEM;
832
833 i = 0;
834 for_each_child_of_node(pdev->dev.of_node, child) {
835 struct mvebu_pcie_port *port = &pcie->ports[i];
836
837 if (!of_device_is_available(child))
838 continue;
839
840 port->pcie = pcie;
841
842 if (of_property_read_u32(child, "marvell,pcie-port",
843 &port->port)) {
844 dev_warn(&pdev->dev,
845 "ignoring PCIe DT node, missing pcie-port property\n");
846 continue;
847 }
848
849 if (of_property_read_u32(child, "marvell,pcie-lane",
850 &port->lane))
851 port->lane = 0;
852
853 port->name = kasprintf(GFP_KERNEL, "pcie%d.%d",
854 port->port, port->lane);
855
856 port->devfn = of_pci_get_devfn(child);
857 if (port->devfn < 0)
858 continue;
859
Thomas Petazzoni11be6542013-07-26 10:17:48 -0300860 ret = mvebu_get_tgt_attr(np, port->devfn, IORESOURCE_MEM,
861 &port->mem_target, &port->mem_attr);
862 if (ret < 0) {
863 dev_err(&pdev->dev, "PCIe%d.%d: cannot get tgt/attr for mem window\n",
864 port->port, port->lane);
865 continue;
866 }
867
868 ret = mvebu_get_tgt_attr(np, port->devfn, IORESOURCE_IO,
869 &port->io_target, &port->io_attr);
870 if (ret < 0) {
871 dev_err(&pdev->dev, "PCIe%d.%d: cannot get tgt/attr for io window\n",
872 port->port, port->lane);
873 continue;
874 }
875
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200876 port->base = mvebu_pcie_map_registers(pdev, child, port);
Tushar Beheraf48fbf92013-06-17 14:46:13 +0530877 if (IS_ERR(port->base)) {
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200878 dev_err(&pdev->dev, "PCIe%d.%d: cannot map registers\n",
879 port->port, port->lane);
Tushar Beheraf48fbf92013-06-17 14:46:13 +0530880 port->base = NULL;
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200881 continue;
882 }
883
Thomas Petazzonif4ac9902013-05-23 16:32:51 +0200884 mvebu_pcie_set_local_dev_nr(port, 1);
885
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200886 if (mvebu_pcie_link_up(port)) {
887 port->haslink = 1;
888 dev_info(&pdev->dev, "PCIe%d.%d: link up\n",
889 port->port, port->lane);
890 } else {
891 port->haslink = 0;
892 dev_info(&pdev->dev, "PCIe%d.%d: link down\n",
893 port->port, port->lane);
894 }
895
896 port->clk = of_clk_get_by_name(child, NULL);
Wei Yongjun3d9939c2013-05-27 11:38:41 +0800897 if (IS_ERR(port->clk)) {
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200898 dev_err(&pdev->dev, "PCIe%d.%d: cannot get clock\n",
899 port->port, port->lane);
900 iounmap(port->base);
901 port->haslink = 0;
902 continue;
903 }
904
905 port->dn = child;
906
907 clk_prepare_enable(port->clk);
908 spin_lock_init(&port->conf_lock);
909
910 mvebu_sw_pci_bridge_init(port);
911
912 i++;
913 }
914
915 mvebu_pcie_enable(pcie);
916
917 return 0;
918}
919
920static const struct of_device_id mvebu_pcie_of_match_table[] = {
921 { .compatible = "marvell,armada-xp-pcie", },
922 { .compatible = "marvell,armada-370-pcie", },
Thomas Petazzoni005625f2013-05-15 15:36:54 +0200923 { .compatible = "marvell,kirkwood-pcie", },
Thomas Petazzoni45361a42013-05-16 17:55:22 +0200924 {},
925};
926MODULE_DEVICE_TABLE(of, mvebu_pcie_of_match_table);
927
928static struct platform_driver mvebu_pcie_driver = {
929 .driver = {
930 .owner = THIS_MODULE,
931 .name = "mvebu-pcie",
932 .of_match_table =
933 of_match_ptr(mvebu_pcie_of_match_table),
934 },
935};
936
937static int __init mvebu_pcie_init(void)
938{
939 return platform_driver_probe(&mvebu_pcie_driver,
940 mvebu_pcie_probe);
941}
942
943subsys_initcall(mvebu_pcie_init);
944
945MODULE_AUTHOR("Thomas Petazzoni <thomas.petazzoni@free-electrons.com>");
946MODULE_DESCRIPTION("Marvell EBU PCIe driver");
947MODULE_LICENSE("GPLv2");