2 * PCIe driver for Marvell Armada 370 and Armada XP SoCs
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.
9 #include <linux/kernel.h>
10 #include <linux/pci.h>
11 #include <linux/clk.h>
12 #include <linux/delay.h>
13 #include <linux/gpio.h>
14 #include <linux/module.h>
15 #include <linux/mbus.h>
16 #include <linux/msi.h>
17 #include <linux/slab.h>
18 #include <linux/platform_device.h>
19 #include <linux/of_address.h>
20 #include <linux/of_irq.h>
21 #include <linux/of_gpio.h>
22 #include <linux/of_pci.h>
23 #include <linux/of_platform.h>
26 * PCIe unit register offsets.
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) | \
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
58 #define PCIE_STAT_DEV 0x1f0000
59 #define PCIE_STAT_LINK_DOWN BIT(0)
60 #define PCIE_DEBUG_CTRL 0x1a60
61 #define PCIE_DEBUG_SOFT_RESET BIT(20)
64 * This product ID is registered by Marvell, and used when the Marvell
65 * SoC is not the root complex, but an endpoint on the PCIe bus. It is
66 * therefore safe to re-use this PCI ID for our emulated PCI-to-PCI
69 #define MARVELL_EMULATED_PCI_PCI_BRIDGE_ID 0x7846
71 /* PCI configuration space of a PCI-to-PCI bridge */
72 struct mvebu_sw_pci_bridge
{
87 u8 secondary_latency_timer
;
104 struct mvebu_pcie_port
;
106 /* Structure representing all PCIe interfaces */
108 struct platform_device
*pdev
;
109 struct mvebu_pcie_port
*ports
;
110 struct msi_chip
*msi
;
112 struct resource realio
;
114 struct resource busn
;
118 /* Structure representing one PCIe interface */
119 struct mvebu_pcie_port
{
122 spinlock_t conf_lock
;
126 unsigned int mem_target
;
127 unsigned int mem_attr
;
128 unsigned int io_target
;
129 unsigned int io_attr
;
132 int reset_active_low
;
134 struct mvebu_sw_pci_bridge bridge
;
135 struct device_node
*dn
;
136 struct mvebu_pcie
*pcie
;
137 phys_addr_t memwin_base
;
139 phys_addr_t iowin_base
;
143 static inline void mvebu_writel(struct mvebu_pcie_port
*port
, u32 val
, u32 reg
)
145 writel(val
, port
->base
+ reg
);
148 static inline u32
mvebu_readl(struct mvebu_pcie_port
*port
, u32 reg
)
150 return readl(port
->base
+ reg
);
153 static inline bool mvebu_has_ioport(struct mvebu_pcie_port
*port
)
155 return port
->io_target
!= -1 && port
->io_attr
!= -1;
158 static bool mvebu_pcie_link_up(struct mvebu_pcie_port
*port
)
160 return !(mvebu_readl(port
, PCIE_STAT_OFF
) & PCIE_STAT_LINK_DOWN
);
163 static void mvebu_pcie_set_local_bus_nr(struct mvebu_pcie_port
*port
, int nr
)
167 stat
= mvebu_readl(port
, PCIE_STAT_OFF
);
168 stat
&= ~PCIE_STAT_BUS
;
170 mvebu_writel(port
, stat
, PCIE_STAT_OFF
);
173 static void mvebu_pcie_set_local_dev_nr(struct mvebu_pcie_port
*port
, int nr
)
177 stat
= mvebu_readl(port
, PCIE_STAT_OFF
);
178 stat
&= ~PCIE_STAT_DEV
;
180 mvebu_writel(port
, stat
, PCIE_STAT_OFF
);
184 * Setup PCIE BARs and Address Decode Wins:
185 * BAR[0,2] -> disabled, BAR[1] -> covers all DRAM banks
186 * WIN[0-3] -> DRAM bank[0-3]
188 static void mvebu_pcie_setup_wins(struct mvebu_pcie_port
*port
)
190 const struct mbus_dram_target_info
*dram
;
194 dram
= mv_mbus_dram_info();
196 /* First, disable and clear BARs and windows. */
197 for (i
= 1; i
< 3; i
++) {
198 mvebu_writel(port
, 0, PCIE_BAR_CTRL_OFF(i
));
199 mvebu_writel(port
, 0, PCIE_BAR_LO_OFF(i
));
200 mvebu_writel(port
, 0, PCIE_BAR_HI_OFF(i
));
203 for (i
= 0; i
< 5; i
++) {
204 mvebu_writel(port
, 0, PCIE_WIN04_CTRL_OFF(i
));
205 mvebu_writel(port
, 0, PCIE_WIN04_BASE_OFF(i
));
206 mvebu_writel(port
, 0, PCIE_WIN04_REMAP_OFF(i
));
209 mvebu_writel(port
, 0, PCIE_WIN5_CTRL_OFF
);
210 mvebu_writel(port
, 0, PCIE_WIN5_BASE_OFF
);
211 mvebu_writel(port
, 0, PCIE_WIN5_REMAP_OFF
);
213 /* Setup windows for DDR banks. Count total DDR size on the fly. */
215 for (i
= 0; i
< dram
->num_cs
; i
++) {
216 const struct mbus_dram_window
*cs
= dram
->cs
+ i
;
218 mvebu_writel(port
, cs
->base
& 0xffff0000,
219 PCIE_WIN04_BASE_OFF(i
));
220 mvebu_writel(port
, 0, PCIE_WIN04_REMAP_OFF(i
));
222 ((cs
->size
- 1) & 0xffff0000) |
223 (cs
->mbus_attr
<< 8) |
224 (dram
->mbus_dram_target_id
<< 4) | 1,
225 PCIE_WIN04_CTRL_OFF(i
));
230 /* Round up 'size' to the nearest power of two. */
231 if ((size
& (size
- 1)) != 0)
232 size
= 1 << fls(size
);
234 /* Setup BAR[1] to all DRAM banks. */
235 mvebu_writel(port
, dram
->cs
[0].base
, PCIE_BAR_LO_OFF(1));
236 mvebu_writel(port
, 0, PCIE_BAR_HI_OFF(1));
237 mvebu_writel(port
, ((size
- 1) & 0xffff0000) | 1,
238 PCIE_BAR_CTRL_OFF(1));
241 static void mvebu_pcie_setup_hw(struct mvebu_pcie_port
*port
)
245 /* Point PCIe unit MBUS decode windows to DRAM space. */
246 mvebu_pcie_setup_wins(port
);
248 /* Master + slave enable. */
249 cmd
= mvebu_readl(port
, PCIE_CMD_OFF
);
250 cmd
|= PCI_COMMAND_IO
;
251 cmd
|= PCI_COMMAND_MEMORY
;
252 cmd
|= PCI_COMMAND_MASTER
;
253 mvebu_writel(port
, cmd
, PCIE_CMD_OFF
);
255 /* Enable interrupt lines A-D. */
256 mask
= mvebu_readl(port
, PCIE_MASK_OFF
);
257 mask
|= PCIE_MASK_ENABLE_INTS
;
258 mvebu_writel(port
, mask
, PCIE_MASK_OFF
);
261 static int mvebu_pcie_hw_rd_conf(struct mvebu_pcie_port
*port
,
263 u32 devfn
, int where
, int size
, u32
*val
)
265 mvebu_writel(port
, PCIE_CONF_ADDR(bus
->number
, devfn
, where
),
268 *val
= mvebu_readl(port
, PCIE_CONF_DATA_OFF
);
271 *val
= (*val
>> (8 * (where
& 3))) & 0xff;
273 *val
= (*val
>> (8 * (where
& 3))) & 0xffff;
275 return PCIBIOS_SUCCESSFUL
;
278 static int mvebu_pcie_hw_wr_conf(struct mvebu_pcie_port
*port
,
280 u32 devfn
, int where
, int size
, u32 val
)
282 u32 _val
, shift
= 8 * (where
& 3);
284 mvebu_writel(port
, PCIE_CONF_ADDR(bus
->number
, devfn
, where
),
286 _val
= mvebu_readl(port
, PCIE_CONF_DATA_OFF
);
291 _val
= (_val
& ~(0xffff << shift
)) | ((val
& 0xffff) << shift
);
293 _val
= (_val
& ~(0xff << shift
)) | ((val
& 0xff) << shift
);
295 return PCIBIOS_BAD_REGISTER_NUMBER
;
297 mvebu_writel(port
, _val
, PCIE_CONF_DATA_OFF
);
299 return PCIBIOS_SUCCESSFUL
;
302 static void mvebu_pcie_handle_iobase_change(struct mvebu_pcie_port
*port
)
306 /* Are the new iobase/iolimit values invalid? */
307 if (port
->bridge
.iolimit
< port
->bridge
.iobase
||
308 port
->bridge
.iolimitupper
< port
->bridge
.iobaseupper
||
309 !(port
->bridge
.command
& PCI_COMMAND_IO
)) {
311 /* If a window was configured, remove it */
312 if (port
->iowin_base
) {
313 mvebu_mbus_del_window(port
->iowin_base
,
315 port
->iowin_base
= 0;
316 port
->iowin_size
= 0;
322 if (!mvebu_has_ioport(port
)) {
323 dev_WARN(&port
->pcie
->pdev
->dev
,
324 "Attempt to set IO when IO is disabled\n");
329 * We read the PCI-to-PCI bridge emulated registers, and
330 * calculate the base address and size of the address decoding
331 * window to setup, according to the PCI-to-PCI bridge
332 * specifications. iobase is the bus address, port->iowin_base
333 * is the CPU address.
335 iobase
= ((port
->bridge
.iobase
& 0xF0) << 8) |
336 (port
->bridge
.iobaseupper
<< 16);
337 port
->iowin_base
= port
->pcie
->io
.start
+ iobase
;
338 port
->iowin_size
= ((0xFFF | ((port
->bridge
.iolimit
& 0xF0) << 8) |
339 (port
->bridge
.iolimitupper
<< 16)) -
342 mvebu_mbus_add_window_remap_by_id(port
->io_target
, port
->io_attr
,
343 port
->iowin_base
, port
->iowin_size
,
347 static void mvebu_pcie_handle_membase_change(struct mvebu_pcie_port
*port
)
349 /* Are the new membase/memlimit values invalid? */
350 if (port
->bridge
.memlimit
< port
->bridge
.membase
||
351 !(port
->bridge
.command
& PCI_COMMAND_MEMORY
)) {
353 /* If a window was configured, remove it */
354 if (port
->memwin_base
) {
355 mvebu_mbus_del_window(port
->memwin_base
,
357 port
->memwin_base
= 0;
358 port
->memwin_size
= 0;
365 * We read the PCI-to-PCI bridge emulated registers, and
366 * calculate the base address and size of the address decoding
367 * window to setup, according to the PCI-to-PCI bridge
370 port
->memwin_base
= ((port
->bridge
.membase
& 0xFFF0) << 16);
372 (((port
->bridge
.memlimit
& 0xFFF0) << 16) | 0xFFFFF) -
375 mvebu_mbus_add_window_by_id(port
->mem_target
, port
->mem_attr
,
376 port
->memwin_base
, port
->memwin_size
);
380 * Initialize the configuration space of the PCI-to-PCI bridge
381 * associated with the given PCIe interface.
383 static void mvebu_sw_pci_bridge_init(struct mvebu_pcie_port
*port
)
385 struct mvebu_sw_pci_bridge
*bridge
= &port
->bridge
;
387 memset(bridge
, 0, sizeof(struct mvebu_sw_pci_bridge
));
389 bridge
->class = PCI_CLASS_BRIDGE_PCI
;
390 bridge
->vendor
= PCI_VENDOR_ID_MARVELL
;
391 bridge
->device
= MARVELL_EMULATED_PCI_PCI_BRIDGE_ID
;
392 bridge
->header_type
= PCI_HEADER_TYPE_BRIDGE
;
393 bridge
->cache_line_size
= 0x10;
395 /* We support 32 bits I/O addressing */
396 bridge
->iobase
= PCI_IO_RANGE_TYPE_32
;
397 bridge
->iolimit
= PCI_IO_RANGE_TYPE_32
;
401 * Read the configuration space of the PCI-to-PCI bridge associated to
402 * the given PCIe interface.
404 static int mvebu_sw_pci_bridge_read(struct mvebu_pcie_port
*port
,
405 unsigned int where
, int size
, u32
*value
)
407 struct mvebu_sw_pci_bridge
*bridge
= &port
->bridge
;
409 switch (where
& ~3) {
411 *value
= bridge
->device
<< 16 | bridge
->vendor
;
415 *value
= bridge
->command
;
418 case PCI_CLASS_REVISION
:
419 *value
= bridge
->class << 16 | bridge
->interface
<< 8 |
423 case PCI_CACHE_LINE_SIZE
:
424 *value
= bridge
->bist
<< 24 | bridge
->header_type
<< 16 |
425 bridge
->latency_timer
<< 8 | bridge
->cache_line_size
;
428 case PCI_BASE_ADDRESS_0
... PCI_BASE_ADDRESS_1
:
429 *value
= bridge
->bar
[((where
& ~3) - PCI_BASE_ADDRESS_0
) / 4];
432 case PCI_PRIMARY_BUS
:
433 *value
= (bridge
->secondary_latency_timer
<< 24 |
434 bridge
->subordinate_bus
<< 16 |
435 bridge
->secondary_bus
<< 8 |
436 bridge
->primary_bus
);
440 if (!mvebu_has_ioport(port
))
441 *value
= bridge
->secondary_status
<< 16;
443 *value
= (bridge
->secondary_status
<< 16 |
444 bridge
->iolimit
<< 8 |
448 case PCI_MEMORY_BASE
:
449 *value
= (bridge
->memlimit
<< 16 | bridge
->membase
);
452 case PCI_PREF_MEMORY_BASE
:
456 case PCI_IO_BASE_UPPER16
:
457 *value
= (bridge
->iolimitupper
<< 16 | bridge
->iobaseupper
);
460 case PCI_ROM_ADDRESS1
:
464 case PCI_INTERRUPT_LINE
:
465 /* LINE PIN MIN_GNT MAX_LAT */
471 return PCIBIOS_BAD_REGISTER_NUMBER
;
475 *value
= (*value
>> (8 * (where
& 3))) & 0xffff;
477 *value
= (*value
>> (8 * (where
& 3))) & 0xff;
479 return PCIBIOS_SUCCESSFUL
;
482 /* Write to the PCI-to-PCI bridge configuration space */
483 static int mvebu_sw_pci_bridge_write(struct mvebu_pcie_port
*port
,
484 unsigned int where
, int size
, u32 value
)
486 struct mvebu_sw_pci_bridge
*bridge
= &port
->bridge
;
493 mask
= ~(0xffff << ((where
& 3) * 8));
495 mask
= ~(0xff << ((where
& 3) * 8));
497 return PCIBIOS_BAD_REGISTER_NUMBER
;
499 err
= mvebu_sw_pci_bridge_read(port
, where
& ~3, 4, ®
);
503 value
= (reg
& mask
) | value
<< ((where
& 3) * 8);
505 switch (where
& ~3) {
508 u32 old
= bridge
->command
;
510 if (!mvebu_has_ioport(port
))
511 value
&= ~PCI_COMMAND_IO
;
513 bridge
->command
= value
& 0xffff;
514 if ((old
^ bridge
->command
) & PCI_COMMAND_IO
)
515 mvebu_pcie_handle_iobase_change(port
);
516 if ((old
^ bridge
->command
) & PCI_COMMAND_MEMORY
)
517 mvebu_pcie_handle_membase_change(port
);
521 case PCI_BASE_ADDRESS_0
... PCI_BASE_ADDRESS_1
:
522 bridge
->bar
[((where
& ~3) - PCI_BASE_ADDRESS_0
) / 4] = value
;
527 * We also keep bit 1 set, it is a read-only bit that
528 * indicates we support 32 bits addressing for the
531 bridge
->iobase
= (value
& 0xff) | PCI_IO_RANGE_TYPE_32
;
532 bridge
->iolimit
= ((value
>> 8) & 0xff) | PCI_IO_RANGE_TYPE_32
;
533 mvebu_pcie_handle_iobase_change(port
);
536 case PCI_MEMORY_BASE
:
537 bridge
->membase
= value
& 0xffff;
538 bridge
->memlimit
= value
>> 16;
539 mvebu_pcie_handle_membase_change(port
);
542 case PCI_IO_BASE_UPPER16
:
543 bridge
->iobaseupper
= value
& 0xffff;
544 bridge
->iolimitupper
= value
>> 16;
545 mvebu_pcie_handle_iobase_change(port
);
548 case PCI_PRIMARY_BUS
:
549 bridge
->primary_bus
= value
& 0xff;
550 bridge
->secondary_bus
= (value
>> 8) & 0xff;
551 bridge
->subordinate_bus
= (value
>> 16) & 0xff;
552 bridge
->secondary_latency_timer
= (value
>> 24) & 0xff;
553 mvebu_pcie_set_local_bus_nr(port
, bridge
->secondary_bus
);
560 return PCIBIOS_SUCCESSFUL
;
563 static inline struct mvebu_pcie
*sys_to_pcie(struct pci_sys_data
*sys
)
565 return sys
->private_data
;
568 static struct mvebu_pcie_port
*
569 mvebu_pcie_find_port(struct mvebu_pcie
*pcie
, struct pci_bus
*bus
,
574 for (i
= 0; i
< pcie
->nports
; i
++) {
575 struct mvebu_pcie_port
*port
= &pcie
->ports
[i
];
576 if (bus
->number
== 0 && port
->devfn
== devfn
)
578 if (bus
->number
!= 0 &&
579 bus
->number
>= port
->bridge
.secondary_bus
&&
580 bus
->number
<= port
->bridge
.subordinate_bus
)
587 /* PCI configuration space write function */
588 static int mvebu_pcie_wr_conf(struct pci_bus
*bus
, u32 devfn
,
589 int where
, int size
, u32 val
)
591 struct mvebu_pcie
*pcie
= sys_to_pcie(bus
->sysdata
);
592 struct mvebu_pcie_port
*port
;
596 port
= mvebu_pcie_find_port(pcie
, bus
, devfn
);
598 return PCIBIOS_DEVICE_NOT_FOUND
;
600 /* Access the emulated PCI-to-PCI bridge */
601 if (bus
->number
== 0)
602 return mvebu_sw_pci_bridge_write(port
, where
, size
, val
);
604 if (!mvebu_pcie_link_up(port
))
605 return PCIBIOS_DEVICE_NOT_FOUND
;
608 * On the secondary bus, we don't want to expose any other
609 * device than the device physically connected in the PCIe
610 * slot, visible in slot 0. In slot 1, there's a special
611 * Marvell device that only makes sense when the Armada is
612 * used as a PCIe endpoint.
614 if (bus
->number
== port
->bridge
.secondary_bus
&&
615 PCI_SLOT(devfn
) != 0)
616 return PCIBIOS_DEVICE_NOT_FOUND
;
618 /* Access the real PCIe interface */
619 spin_lock_irqsave(&port
->conf_lock
, flags
);
620 ret
= mvebu_pcie_hw_wr_conf(port
, bus
, devfn
,
622 spin_unlock_irqrestore(&port
->conf_lock
, flags
);
627 /* PCI configuration space read function */
628 static int mvebu_pcie_rd_conf(struct pci_bus
*bus
, u32 devfn
, int where
,
631 struct mvebu_pcie
*pcie
= sys_to_pcie(bus
->sysdata
);
632 struct mvebu_pcie_port
*port
;
636 port
= mvebu_pcie_find_port(pcie
, bus
, devfn
);
639 return PCIBIOS_DEVICE_NOT_FOUND
;
642 /* Access the emulated PCI-to-PCI bridge */
643 if (bus
->number
== 0)
644 return mvebu_sw_pci_bridge_read(port
, where
, size
, val
);
646 if (!mvebu_pcie_link_up(port
)) {
648 return PCIBIOS_DEVICE_NOT_FOUND
;
652 * On the secondary bus, we don't want to expose any other
653 * device than the device physically connected in the PCIe
654 * slot, visible in slot 0. In slot 1, there's a special
655 * Marvell device that only makes sense when the Armada is
656 * used as a PCIe endpoint.
658 if (bus
->number
== port
->bridge
.secondary_bus
&&
659 PCI_SLOT(devfn
) != 0) {
661 return PCIBIOS_DEVICE_NOT_FOUND
;
664 /* Access the real PCIe interface */
665 spin_lock_irqsave(&port
->conf_lock
, flags
);
666 ret
= mvebu_pcie_hw_rd_conf(port
, bus
, devfn
,
668 spin_unlock_irqrestore(&port
->conf_lock
, flags
);
673 static struct pci_ops mvebu_pcie_ops
= {
674 .read
= mvebu_pcie_rd_conf
,
675 .write
= mvebu_pcie_wr_conf
,
678 static int mvebu_pcie_setup(int nr
, struct pci_sys_data
*sys
)
680 struct mvebu_pcie
*pcie
= sys_to_pcie(sys
);
683 if (resource_size(&pcie
->realio
) != 0)
684 pci_add_resource_offset(&sys
->resources
, &pcie
->realio
,
686 pci_add_resource_offset(&sys
->resources
, &pcie
->mem
, sys
->mem_offset
);
687 pci_add_resource(&sys
->resources
, &pcie
->busn
);
689 for (i
= 0; i
< pcie
->nports
; i
++) {
690 struct mvebu_pcie_port
*port
= &pcie
->ports
[i
];
693 mvebu_pcie_setup_hw(port
);
699 static struct pci_bus
*mvebu_pcie_scan_bus(int nr
, struct pci_sys_data
*sys
)
701 struct mvebu_pcie
*pcie
= sys_to_pcie(sys
);
704 bus
= pci_create_root_bus(&pcie
->pdev
->dev
, sys
->busnr
,
705 &mvebu_pcie_ops
, sys
, &sys
->resources
);
709 pci_scan_child_bus(bus
);
714 static void mvebu_pcie_add_bus(struct pci_bus
*bus
)
716 struct mvebu_pcie
*pcie
= sys_to_pcie(bus
->sysdata
);
717 bus
->msi
= pcie
->msi
;
720 static resource_size_t
mvebu_pcie_align_resource(struct pci_dev
*dev
,
721 const struct resource
*res
,
722 resource_size_t start
,
723 resource_size_t size
,
724 resource_size_t align
)
726 if (dev
->bus
->number
!= 0)
730 * On the PCI-to-PCI bridge side, the I/O windows must have at
731 * least a 64 KB size and be aligned on their size, and the
732 * memory windows must have at least a 1 MB size and be
733 * aligned on their size
735 if (res
->flags
& IORESOURCE_IO
)
736 return round_up(start
, max_t(resource_size_t
, SZ_64K
, size
));
737 else if (res
->flags
& IORESOURCE_MEM
)
738 return round_up(start
, max_t(resource_size_t
, SZ_1M
, size
));
743 static void mvebu_pcie_enable(struct mvebu_pcie
*pcie
)
747 memset(&hw
, 0, sizeof(hw
));
749 hw
.nr_controllers
= 1;
750 hw
.private_data
= (void **)&pcie
;
751 hw
.setup
= mvebu_pcie_setup
;
752 hw
.scan
= mvebu_pcie_scan_bus
;
753 hw
.map_irq
= of_irq_parse_and_map_pci
;
754 hw
.ops
= &mvebu_pcie_ops
;
755 hw
.align_resource
= mvebu_pcie_align_resource
;
756 hw
.add_bus
= mvebu_pcie_add_bus
;
758 pci_common_init(&hw
);
762 * Looks up the list of register addresses encoded into the reg =
763 * <...> property for one that matches the given port/lane. Once
766 static void __iomem
*mvebu_pcie_map_registers(struct platform_device
*pdev
,
767 struct device_node
*np
, struct mvebu_pcie_port
*port
)
769 struct resource regs
;
772 ret
= of_address_to_resource(np
, 0, ®s
);
776 return devm_ioremap_resource(&pdev
->dev
, ®s
);
779 #define DT_FLAGS_TO_TYPE(flags) (((flags) >> 24) & 0x03)
780 #define DT_TYPE_IO 0x1
781 #define DT_TYPE_MEM32 0x2
782 #define DT_CPUADDR_TO_TARGET(cpuaddr) (((cpuaddr) >> 56) & 0xFF)
783 #define DT_CPUADDR_TO_ATTR(cpuaddr) (((cpuaddr) >> 48) & 0xFF)
785 static int mvebu_get_tgt_attr(struct device_node
*np
, int devfn
,
790 const int na
= 3, ns
= 2;
792 int rlen
, nranges
, rangesz
, pna
, i
;
797 range
= of_get_property(np
, "ranges", &rlen
);
801 pna
= of_n_addr_cells(np
);
802 rangesz
= pna
+ na
+ ns
;
803 nranges
= rlen
/ sizeof(__be32
) / rangesz
;
805 for (i
= 0; i
< nranges
; i
++) {
806 u32 flags
= of_read_number(range
, 1);
807 u32 slot
= of_read_number(range
, 2);
808 u64 cpuaddr
= of_read_number(range
+ na
, pna
);
811 if (DT_FLAGS_TO_TYPE(flags
) == DT_TYPE_IO
)
812 rtype
= IORESOURCE_IO
;
813 else if (DT_FLAGS_TO_TYPE(flags
) == DT_TYPE_MEM32
)
814 rtype
= IORESOURCE_MEM
;
816 if (slot
== PCI_SLOT(devfn
) && type
== rtype
) {
817 *tgt
= DT_CPUADDR_TO_TARGET(cpuaddr
);
818 *attr
= DT_CPUADDR_TO_ATTR(cpuaddr
);
828 static void mvebu_pcie_msi_enable(struct mvebu_pcie
*pcie
)
830 struct device_node
*msi_node
;
832 msi_node
= of_parse_phandle(pcie
->pdev
->dev
.of_node
,
837 pcie
->msi
= of_pci_find_msi_chip_by_node(msi_node
);
840 pcie
->msi
->dev
= &pcie
->pdev
->dev
;
843 static int mvebu_pcie_probe(struct platform_device
*pdev
)
845 struct mvebu_pcie
*pcie
;
846 struct device_node
*np
= pdev
->dev
.of_node
;
847 struct device_node
*child
;
850 pcie
= devm_kzalloc(&pdev
->dev
, sizeof(struct mvebu_pcie
),
856 platform_set_drvdata(pdev
, pcie
);
858 /* Get the PCIe memory and I/O aperture */
859 mvebu_mbus_get_pcie_mem_aperture(&pcie
->mem
);
860 if (resource_size(&pcie
->mem
) == 0) {
861 dev_err(&pdev
->dev
, "invalid memory aperture size\n");
865 mvebu_mbus_get_pcie_io_aperture(&pcie
->io
);
867 if (resource_size(&pcie
->io
) != 0) {
868 pcie
->realio
.flags
= pcie
->io
.flags
;
869 pcie
->realio
.start
= PCIBIOS_MIN_IO
;
870 pcie
->realio
.end
= min_t(resource_size_t
,
872 resource_size(&pcie
->io
));
874 pcie
->realio
= pcie
->io
;
876 /* Get the bus range */
877 ret
= of_pci_parse_bus_range(np
, &pcie
->busn
);
879 dev_err(&pdev
->dev
, "failed to parse bus-range property: %d\n",
885 for_each_child_of_node(pdev
->dev
.of_node
, child
) {
886 if (!of_device_is_available(child
))
891 pcie
->ports
= devm_kzalloc(&pdev
->dev
, i
*
892 sizeof(struct mvebu_pcie_port
),
898 for_each_child_of_node(pdev
->dev
.of_node
, child
) {
899 struct mvebu_pcie_port
*port
= &pcie
->ports
[i
];
900 enum of_gpio_flags flags
;
902 if (!of_device_is_available(child
))
907 if (of_property_read_u32(child
, "marvell,pcie-port",
910 "ignoring PCIe DT node, missing pcie-port property\n");
914 if (of_property_read_u32(child
, "marvell,pcie-lane",
918 port
->name
= kasprintf(GFP_KERNEL
, "pcie%d.%d",
919 port
->port
, port
->lane
);
921 port
->devfn
= of_pci_get_devfn(child
);
925 ret
= mvebu_get_tgt_attr(np
, port
->devfn
, IORESOURCE_MEM
,
926 &port
->mem_target
, &port
->mem_attr
);
928 dev_err(&pdev
->dev
, "PCIe%d.%d: cannot get tgt/attr for mem window\n",
929 port
->port
, port
->lane
);
933 if (resource_size(&pcie
->io
) != 0)
934 mvebu_get_tgt_attr(np
, port
->devfn
, IORESOURCE_IO
,
935 &port
->io_target
, &port
->io_attr
);
937 port
->io_target
= -1;
941 port
->reset_gpio
= of_get_named_gpio_flags(child
,
942 "reset-gpios", 0, &flags
);
943 if (gpio_is_valid(port
->reset_gpio
)) {
944 u32 reset_udelay
= 20000;
946 port
->reset_active_low
= flags
& OF_GPIO_ACTIVE_LOW
;
947 port
->reset_name
= kasprintf(GFP_KERNEL
,
948 "pcie%d.%d-reset", port
->port
, port
->lane
);
949 of_property_read_u32(child
, "reset-delay-us",
952 ret
= devm_gpio_request_one(&pdev
->dev
,
953 port
->reset_gpio
, GPIOF_DIR_OUT
, port
->reset_name
);
955 if (ret
== -EPROBE_DEFER
)
960 gpio_set_value(port
->reset_gpio
,
961 (port
->reset_active_low
) ? 1 : 0);
962 msleep(reset_udelay
/1000);
965 port
->clk
= of_clk_get_by_name(child
, NULL
);
966 if (IS_ERR(port
->clk
)) {
967 dev_err(&pdev
->dev
, "PCIe%d.%d: cannot get clock\n",
968 port
->port
, port
->lane
);
972 ret
= clk_prepare_enable(port
->clk
);
976 port
->base
= mvebu_pcie_map_registers(pdev
, child
, port
);
977 if (IS_ERR(port
->base
)) {
978 dev_err(&pdev
->dev
, "PCIe%d.%d: cannot map registers\n",
979 port
->port
, port
->lane
);
981 clk_disable_unprepare(port
->clk
);
985 mvebu_pcie_set_local_dev_nr(port
, 1);
988 spin_lock_init(&port
->conf_lock
);
989 mvebu_sw_pci_bridge_init(port
);
995 for (i
= 0; i
< (IO_SPACE_LIMIT
- SZ_64K
); i
+= SZ_64K
)
996 pci_ioremap_io(i
, pcie
->io
.start
+ i
);
998 mvebu_pcie_msi_enable(pcie
);
999 mvebu_pcie_enable(pcie
);
1004 static const struct of_device_id mvebu_pcie_of_match_table
[] = {
1005 { .compatible
= "marvell,armada-xp-pcie", },
1006 { .compatible
= "marvell,armada-370-pcie", },
1007 { .compatible
= "marvell,dove-pcie", },
1008 { .compatible
= "marvell,kirkwood-pcie", },
1011 MODULE_DEVICE_TABLE(of
, mvebu_pcie_of_match_table
);
1013 static struct platform_driver mvebu_pcie_driver
= {
1015 .owner
= THIS_MODULE
,
1016 .name
= "mvebu-pcie",
1017 .of_match_table
= mvebu_pcie_of_match_table
,
1018 /* driver unloading/unbinding currently not supported */
1019 .suppress_bind_attrs
= true,
1021 .probe
= mvebu_pcie_probe
,
1023 module_platform_driver(mvebu_pcie_driver
);
1025 MODULE_AUTHOR("Thomas Petazzoni <thomas.petazzoni@free-electrons.com>");
1026 MODULE_DESCRIPTION("Marvell EBU PCIe driver");
1027 MODULE_LICENSE("GPLv2");