2 * Copyright (C) 2014 Hauke Mehrtens <hauke@hauke-m.de>
3 * Copyright (C) 2015 Broadcom Corporation
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation version 2.
9 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
10 * kind, whether express or implied; without even the implied warranty
11 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
15 #include <linux/kernel.h>
16 #include <linux/pci.h>
17 #include <linux/msi.h>
18 #include <linux/clk.h>
19 #include <linux/module.h>
20 #include <linux/mbus.h>
21 #include <linux/slab.h>
22 #include <linux/delay.h>
23 #include <linux/interrupt.h>
24 #include <linux/irqchip/arm-gic-v3.h>
25 #include <linux/platform_device.h>
26 #include <linux/of_address.h>
27 #include <linux/of_pci.h>
28 #include <linux/of_irq.h>
29 #include <linux/of_platform.h>
30 #include <linux/phy/phy.h>
32 #include "pcie-iproc.h"
34 #define EP_PERST_SOURCE_SELECT_SHIFT 2
35 #define EP_PERST_SOURCE_SELECT BIT(EP_PERST_SOURCE_SELECT_SHIFT)
36 #define EP_MODE_SURVIVE_PERST_SHIFT 1
37 #define EP_MODE_SURVIVE_PERST BIT(EP_MODE_SURVIVE_PERST_SHIFT)
38 #define RC_PCIE_RST_OUTPUT_SHIFT 0
39 #define RC_PCIE_RST_OUTPUT BIT(RC_PCIE_RST_OUTPUT_SHIFT)
40 #define PAXC_RESET_MASK 0x7f
42 #define GIC_V3_CFG_SHIFT 0
43 #define GIC_V3_CFG BIT(GIC_V3_CFG_SHIFT)
45 #define MSI_ENABLE_CFG_SHIFT 0
46 #define MSI_ENABLE_CFG BIT(MSI_ENABLE_CFG_SHIFT)
48 #define CFG_IND_ADDR_MASK 0x00001ffc
50 #define CFG_ADDR_BUS_NUM_SHIFT 20
51 #define CFG_ADDR_BUS_NUM_MASK 0x0ff00000
52 #define CFG_ADDR_DEV_NUM_SHIFT 15
53 #define CFG_ADDR_DEV_NUM_MASK 0x000f8000
54 #define CFG_ADDR_FUNC_NUM_SHIFT 12
55 #define CFG_ADDR_FUNC_NUM_MASK 0x00007000
56 #define CFG_ADDR_REG_NUM_SHIFT 2
57 #define CFG_ADDR_REG_NUM_MASK 0x00000ffc
58 #define CFG_ADDR_CFG_TYPE_SHIFT 0
59 #define CFG_ADDR_CFG_TYPE_MASK 0x00000003
61 #define SYS_RC_INTX_MASK 0xf
63 #define PCIE_PHYLINKUP_SHIFT 3
64 #define PCIE_PHYLINKUP BIT(PCIE_PHYLINKUP_SHIFT)
65 #define PCIE_DL_ACTIVE_SHIFT 2
66 #define PCIE_DL_ACTIVE BIT(PCIE_DL_ACTIVE_SHIFT)
68 #define APB_ERR_EN_SHIFT 0
69 #define APB_ERR_EN BIT(APB_ERR_EN_SHIFT)
71 /* derive the enum index of the outbound/inbound mapping registers */
72 #define MAP_REG(base_reg, index) ((base_reg) + (index) * 2)
75 * Maximum number of outbound mapping window sizes that can be supported by any
76 * OARR/OMAP mapping pair
78 #define MAX_NUM_OB_WINDOW_SIZES 4
80 #define OARR_VALID_SHIFT 0
81 #define OARR_VALID BIT(OARR_VALID_SHIFT)
82 #define OARR_SIZE_CFG_SHIFT 1
85 * Maximum number of inbound mapping region sizes that can be supported by an
88 #define MAX_NUM_IB_REGION_SIZES 9
90 #define IMAP_VALID_SHIFT 0
91 #define IMAP_VALID BIT(IMAP_VALID_SHIFT)
93 #define PCI_EXP_CAP 0xac
95 #define IPROC_PCIE_REG_INVALID 0xffff
98 * iProc PCIe outbound mapping controller specific parameters
100 * @window_sizes: list of supported outbound mapping window sizes in MB
101 * @nr_sizes: number of supported outbound mapping window sizes
103 struct iproc_pcie_ob_map
{
104 resource_size_t window_sizes
[MAX_NUM_OB_WINDOW_SIZES
];
105 unsigned int nr_sizes
;
108 static const struct iproc_pcie_ob_map paxb_ob_map
[] = {
111 .window_sizes
= { 128, 256 },
116 .window_sizes
= { 128, 256 },
121 static const struct iproc_pcie_ob_map paxb_v2_ob_map
[] = {
124 .window_sizes
= { 128, 256 },
129 .window_sizes
= { 128, 256 },
134 .window_sizes
= { 128, 256, 512, 1024 },
139 .window_sizes
= { 128, 256, 512, 1024 },
145 * iProc PCIe inbound mapping type
147 enum iproc_pcie_ib_map_type
{
149 IPROC_PCIE_IB_MAP_MEM
= 0,
151 /* for device I/O memory */
152 IPROC_PCIE_IB_MAP_IO
,
154 /* invalid or unused */
155 IPROC_PCIE_IB_MAP_INVALID
159 * iProc PCIe inbound mapping controller specific parameters
161 * @type: inbound mapping region type
162 * @size_unit: inbound mapping region size unit, could be SZ_1K, SZ_1M, or
164 * @region_sizes: list of supported inbound mapping region sizes in KB, MB, or
165 * GB, depedning on the size unit
166 * @nr_sizes: number of supported inbound mapping region sizes
167 * @nr_windows: number of supported inbound mapping windows for the region
168 * @imap_addr_offset: register offset between the upper and lower 32-bit
169 * IMAP address registers
170 * @imap_window_offset: register offset between each IMAP window
172 struct iproc_pcie_ib_map
{
173 enum iproc_pcie_ib_map_type type
;
174 unsigned int size_unit
;
175 resource_size_t region_sizes
[MAX_NUM_IB_REGION_SIZES
];
176 unsigned int nr_sizes
;
177 unsigned int nr_windows
;
178 u16 imap_addr_offset
;
179 u16 imap_window_offset
;
182 static const struct iproc_pcie_ib_map paxb_v2_ib_map
[] = {
185 .type
= IPROC_PCIE_IB_MAP_IO
,
187 .region_sizes
= { 32 },
190 .imap_addr_offset
= 0x40,
191 .imap_window_offset
= 0x4,
194 /* IARR1/IMAP1 (currently unused) */
195 .type
= IPROC_PCIE_IB_MAP_INVALID
,
199 .type
= IPROC_PCIE_IB_MAP_MEM
,
201 .region_sizes
= { 64, 128, 256, 512, 1024, 2048, 4096, 8192,
205 .imap_addr_offset
= 0x4,
206 .imap_window_offset
= 0x8,
210 .type
= IPROC_PCIE_IB_MAP_MEM
,
212 .region_sizes
= { 1, 2, 4, 8, 16, 32 },
215 .imap_addr_offset
= 0x4,
216 .imap_window_offset
= 0x8,
220 .type
= IPROC_PCIE_IB_MAP_MEM
,
222 .region_sizes
= { 32, 64, 128, 256, 512 },
225 .imap_addr_offset
= 0x4,
226 .imap_window_offset
= 0x8,
231 * iProc PCIe host registers
233 enum iproc_pcie_reg
{
234 /* clock/reset signal control */
235 IPROC_PCIE_CLK_CTRL
= 0,
238 * To allow MSI to be steered to an external MSI controller (e.g., ARM
241 IPROC_PCIE_MSI_GIC_MODE
,
244 * IPROC_PCIE_MSI_BASE_ADDR and IPROC_PCIE_MSI_WINDOW_SIZE define the
245 * window where the MSI posted writes are written, for the writes to be
246 * interpreted as MSI writes.
248 IPROC_PCIE_MSI_BASE_ADDR
,
249 IPROC_PCIE_MSI_WINDOW_SIZE
,
252 * To hold the address of the register where the MSI writes are
253 * programed. When ARM GICv3 ITS is used, this should be programmed
254 * with the address of the GITS_TRANSLATER register.
256 IPROC_PCIE_MSI_ADDR_LO
,
257 IPROC_PCIE_MSI_ADDR_HI
,
260 IPROC_PCIE_MSI_EN_CFG
,
262 /* allow access to root complex configuration space */
263 IPROC_PCIE_CFG_IND_ADDR
,
264 IPROC_PCIE_CFG_IND_DATA
,
266 /* allow access to device configuration space */
273 /* outbound address mapping */
283 /* inbound address mapping */
296 IPROC_PCIE_LINK_STATUS
,
298 /* enable APB error for unsupported requests */
299 IPROC_PCIE_APB_ERR_EN
,
301 /* total number of core registers */
302 IPROC_PCIE_MAX_NUM_REG
,
305 /* iProc PCIe PAXB BCMA registers */
306 static const u16 iproc_pcie_reg_paxb_bcma
[] = {
307 [IPROC_PCIE_CLK_CTRL
] = 0x000,
308 [IPROC_PCIE_CFG_IND_ADDR
] = 0x120,
309 [IPROC_PCIE_CFG_IND_DATA
] = 0x124,
310 [IPROC_PCIE_CFG_ADDR
] = 0x1f8,
311 [IPROC_PCIE_CFG_DATA
] = 0x1fc,
312 [IPROC_PCIE_INTX_EN
] = 0x330,
313 [IPROC_PCIE_LINK_STATUS
] = 0xf0c,
316 /* iProc PCIe PAXB registers */
317 static const u16 iproc_pcie_reg_paxb
[] = {
318 [IPROC_PCIE_CLK_CTRL
] = 0x000,
319 [IPROC_PCIE_CFG_IND_ADDR
] = 0x120,
320 [IPROC_PCIE_CFG_IND_DATA
] = 0x124,
321 [IPROC_PCIE_CFG_ADDR
] = 0x1f8,
322 [IPROC_PCIE_CFG_DATA
] = 0x1fc,
323 [IPROC_PCIE_INTX_EN
] = 0x330,
324 [IPROC_PCIE_OARR0
] = 0xd20,
325 [IPROC_PCIE_OMAP0
] = 0xd40,
326 [IPROC_PCIE_OARR1
] = 0xd28,
327 [IPROC_PCIE_OMAP1
] = 0xd48,
328 [IPROC_PCIE_LINK_STATUS
] = 0xf0c,
329 [IPROC_PCIE_APB_ERR_EN
] = 0xf40,
332 /* iProc PCIe PAXB v2 registers */
333 static const u16 iproc_pcie_reg_paxb_v2
[] = {
334 [IPROC_PCIE_CLK_CTRL
] = 0x000,
335 [IPROC_PCIE_CFG_IND_ADDR
] = 0x120,
336 [IPROC_PCIE_CFG_IND_DATA
] = 0x124,
337 [IPROC_PCIE_CFG_ADDR
] = 0x1f8,
338 [IPROC_PCIE_CFG_DATA
] = 0x1fc,
339 [IPROC_PCIE_INTX_EN
] = 0x330,
340 [IPROC_PCIE_OARR0
] = 0xd20,
341 [IPROC_PCIE_OMAP0
] = 0xd40,
342 [IPROC_PCIE_OARR1
] = 0xd28,
343 [IPROC_PCIE_OMAP1
] = 0xd48,
344 [IPROC_PCIE_OARR2
] = 0xd60,
345 [IPROC_PCIE_OMAP2
] = 0xd68,
346 [IPROC_PCIE_OARR3
] = 0xdf0,
347 [IPROC_PCIE_OMAP3
] = 0xdf8,
348 [IPROC_PCIE_IARR0
] = 0xd00,
349 [IPROC_PCIE_IMAP0
] = 0xc00,
350 [IPROC_PCIE_IARR2
] = 0xd10,
351 [IPROC_PCIE_IMAP2
] = 0xcc0,
352 [IPROC_PCIE_IARR3
] = 0xe00,
353 [IPROC_PCIE_IMAP3
] = 0xe08,
354 [IPROC_PCIE_IARR4
] = 0xe68,
355 [IPROC_PCIE_IMAP4
] = 0xe70,
356 [IPROC_PCIE_LINK_STATUS
] = 0xf0c,
357 [IPROC_PCIE_APB_ERR_EN
] = 0xf40,
360 /* iProc PCIe PAXC v1 registers */
361 static const u16 iproc_pcie_reg_paxc
[] = {
362 [IPROC_PCIE_CLK_CTRL
] = 0x000,
363 [IPROC_PCIE_CFG_IND_ADDR
] = 0x1f0,
364 [IPROC_PCIE_CFG_IND_DATA
] = 0x1f4,
365 [IPROC_PCIE_CFG_ADDR
] = 0x1f8,
366 [IPROC_PCIE_CFG_DATA
] = 0x1fc,
369 /* iProc PCIe PAXC v2 registers */
370 static const u16 iproc_pcie_reg_paxc_v2
[] = {
371 [IPROC_PCIE_MSI_GIC_MODE
] = 0x050,
372 [IPROC_PCIE_MSI_BASE_ADDR
] = 0x074,
373 [IPROC_PCIE_MSI_WINDOW_SIZE
] = 0x078,
374 [IPROC_PCIE_MSI_ADDR_LO
] = 0x07c,
375 [IPROC_PCIE_MSI_ADDR_HI
] = 0x080,
376 [IPROC_PCIE_MSI_EN_CFG
] = 0x09c,
377 [IPROC_PCIE_CFG_IND_ADDR
] = 0x1f0,
378 [IPROC_PCIE_CFG_IND_DATA
] = 0x1f4,
379 [IPROC_PCIE_CFG_ADDR
] = 0x1f8,
380 [IPROC_PCIE_CFG_DATA
] = 0x1fc,
383 static inline struct iproc_pcie
*iproc_data(struct pci_bus
*bus
)
385 struct iproc_pcie
*pcie
;
387 struct pci_sys_data
*sys
= bus
->sysdata
;
389 pcie
= sys
->private_data
;
396 static inline bool iproc_pcie_reg_is_invalid(u16 reg_offset
)
398 return !!(reg_offset
== IPROC_PCIE_REG_INVALID
);
401 static inline u16
iproc_pcie_reg_offset(struct iproc_pcie
*pcie
,
402 enum iproc_pcie_reg reg
)
404 return pcie
->reg_offsets
[reg
];
407 static inline u32
iproc_pcie_read_reg(struct iproc_pcie
*pcie
,
408 enum iproc_pcie_reg reg
)
410 u16 offset
= iproc_pcie_reg_offset(pcie
, reg
);
412 if (iproc_pcie_reg_is_invalid(offset
))
415 return readl(pcie
->base
+ offset
);
418 static inline void iproc_pcie_write_reg(struct iproc_pcie
*pcie
,
419 enum iproc_pcie_reg reg
, u32 val
)
421 u16 offset
= iproc_pcie_reg_offset(pcie
, reg
);
423 if (iproc_pcie_reg_is_invalid(offset
))
426 writel(val
, pcie
->base
+ offset
);
430 * APB error forwarding can be disabled during access of configuration
431 * registers of the endpoint device, to prevent unsupported requests
432 * (typically seen during enumeration with multi-function devices) from
433 * triggering a system exception.
435 static inline void iproc_pcie_apb_err_disable(struct pci_bus
*bus
,
438 struct iproc_pcie
*pcie
= iproc_data(bus
);
441 if (bus
->number
&& pcie
->has_apb_err_disable
) {
442 val
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_APB_ERR_EN
);
447 iproc_pcie_write_reg(pcie
, IPROC_PCIE_APB_ERR_EN
, val
);
452 * Note access to the configuration registers are protected at the higher layer
453 * by 'pci_lock' in drivers/pci/access.c
455 static void __iomem
*iproc_pcie_map_cfg_bus(struct pci_bus
*bus
,
459 struct iproc_pcie
*pcie
= iproc_data(bus
);
460 unsigned slot
= PCI_SLOT(devfn
);
461 unsigned fn
= PCI_FUNC(devfn
);
462 unsigned busno
= bus
->number
;
466 /* root complex access */
468 if (slot
> 0 || fn
> 0)
471 iproc_pcie_write_reg(pcie
, IPROC_PCIE_CFG_IND_ADDR
,
472 where
& CFG_IND_ADDR_MASK
);
473 offset
= iproc_pcie_reg_offset(pcie
, IPROC_PCIE_CFG_IND_DATA
);
474 if (iproc_pcie_reg_is_invalid(offset
))
477 return (pcie
->base
+ offset
);
481 * PAXC is connected to an internally emulated EP within the SoC. It
482 * allows only one device.
484 if (pcie
->ep_is_internal
)
488 /* EP device access */
489 val
= (busno
<< CFG_ADDR_BUS_NUM_SHIFT
) |
490 (slot
<< CFG_ADDR_DEV_NUM_SHIFT
) |
491 (fn
<< CFG_ADDR_FUNC_NUM_SHIFT
) |
492 (where
& CFG_ADDR_REG_NUM_MASK
) |
493 (1 & CFG_ADDR_CFG_TYPE_MASK
);
494 iproc_pcie_write_reg(pcie
, IPROC_PCIE_CFG_ADDR
, val
);
495 offset
= iproc_pcie_reg_offset(pcie
, IPROC_PCIE_CFG_DATA
);
496 if (iproc_pcie_reg_is_invalid(offset
))
499 return (pcie
->base
+ offset
);
502 static int iproc_pcie_config_read32(struct pci_bus
*bus
, unsigned int devfn
,
503 int where
, int size
, u32
*val
)
507 iproc_pcie_apb_err_disable(bus
, true);
508 ret
= pci_generic_config_read32(bus
, devfn
, where
, size
, val
);
509 iproc_pcie_apb_err_disable(bus
, false);
514 static int iproc_pcie_config_write32(struct pci_bus
*bus
, unsigned int devfn
,
515 int where
, int size
, u32 val
)
519 iproc_pcie_apb_err_disable(bus
, true);
520 ret
= pci_generic_config_write32(bus
, devfn
, where
, size
, val
);
521 iproc_pcie_apb_err_disable(bus
, false);
526 static struct pci_ops iproc_pcie_ops
= {
527 .map_bus
= iproc_pcie_map_cfg_bus
,
528 .read
= iproc_pcie_config_read32
,
529 .write
= iproc_pcie_config_write32
,
532 static void iproc_pcie_reset(struct iproc_pcie
*pcie
)
537 * PAXC and the internal emulated endpoint device downstream should not
538 * be reset. If firmware has been loaded on the endpoint device at an
539 * earlier boot stage, reset here causes issues.
541 if (pcie
->ep_is_internal
)
545 * Select perst_b signal as reset source. Put the device into reset,
546 * and then bring it out of reset
548 val
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_CLK_CTRL
);
549 val
&= ~EP_PERST_SOURCE_SELECT
& ~EP_MODE_SURVIVE_PERST
&
551 iproc_pcie_write_reg(pcie
, IPROC_PCIE_CLK_CTRL
, val
);
554 val
|= RC_PCIE_RST_OUTPUT
;
555 iproc_pcie_write_reg(pcie
, IPROC_PCIE_CLK_CTRL
, val
);
559 static int iproc_pcie_check_link(struct iproc_pcie
*pcie
, struct pci_bus
*bus
)
561 struct device
*dev
= pcie
->dev
;
563 u32 link_ctrl
, class, val
;
564 u16 pos
= PCI_EXP_CAP
, link_status
;
565 bool link_is_active
= false;
568 * PAXC connects to emulated endpoint devices directly and does not
569 * have a Serdes. Therefore skip the link detection logic here.
571 if (pcie
->ep_is_internal
)
574 val
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_LINK_STATUS
);
575 if (!(val
& PCIE_PHYLINKUP
) || !(val
& PCIE_DL_ACTIVE
)) {
576 dev_err(dev
, "PHY or data link is INACTIVE!\n");
580 /* make sure we are not in EP mode */
581 pci_bus_read_config_byte(bus
, 0, PCI_HEADER_TYPE
, &hdr_type
);
582 if ((hdr_type
& 0x7f) != PCI_HEADER_TYPE_BRIDGE
) {
583 dev_err(dev
, "in EP mode, hdr=%#02x\n", hdr_type
);
587 /* force class to PCI_CLASS_BRIDGE_PCI (0x0604) */
588 #define PCI_BRIDGE_CTRL_REG_OFFSET 0x43c
589 #define PCI_CLASS_BRIDGE_MASK 0xffff00
590 #define PCI_CLASS_BRIDGE_SHIFT 8
591 pci_bus_read_config_dword(bus
, 0, PCI_BRIDGE_CTRL_REG_OFFSET
, &class);
592 class &= ~PCI_CLASS_BRIDGE_MASK
;
593 class |= (PCI_CLASS_BRIDGE_PCI
<< PCI_CLASS_BRIDGE_SHIFT
);
594 pci_bus_write_config_dword(bus
, 0, PCI_BRIDGE_CTRL_REG_OFFSET
, class);
596 /* check link status to see if link is active */
597 pci_bus_read_config_word(bus
, 0, pos
+ PCI_EXP_LNKSTA
, &link_status
);
598 if (link_status
& PCI_EXP_LNKSTA_NLW
)
599 link_is_active
= true;
601 if (!link_is_active
) {
602 /* try GEN 1 link speed */
603 #define PCI_TARGET_LINK_SPEED_MASK 0xf
604 #define PCI_TARGET_LINK_SPEED_GEN2 0x2
605 #define PCI_TARGET_LINK_SPEED_GEN1 0x1
606 pci_bus_read_config_dword(bus
, 0,
607 pos
+ PCI_EXP_LNKCTL2
,
609 if ((link_ctrl
& PCI_TARGET_LINK_SPEED_MASK
) ==
610 PCI_TARGET_LINK_SPEED_GEN2
) {
611 link_ctrl
&= ~PCI_TARGET_LINK_SPEED_MASK
;
612 link_ctrl
|= PCI_TARGET_LINK_SPEED_GEN1
;
613 pci_bus_write_config_dword(bus
, 0,
614 pos
+ PCI_EXP_LNKCTL2
,
618 pci_bus_read_config_word(bus
, 0, pos
+ PCI_EXP_LNKSTA
,
620 if (link_status
& PCI_EXP_LNKSTA_NLW
)
621 link_is_active
= true;
625 dev_info(dev
, "link: %s\n", link_is_active
? "UP" : "DOWN");
627 return link_is_active
? 0 : -ENODEV
;
630 static void iproc_pcie_enable(struct iproc_pcie
*pcie
)
632 iproc_pcie_write_reg(pcie
, IPROC_PCIE_INTX_EN
, SYS_RC_INTX_MASK
);
635 static inline bool iproc_pcie_ob_is_valid(struct iproc_pcie
*pcie
,
640 val
= iproc_pcie_read_reg(pcie
, MAP_REG(IPROC_PCIE_OARR0
, window_idx
));
642 return !!(val
& OARR_VALID
);
645 static inline int iproc_pcie_ob_write(struct iproc_pcie
*pcie
, int window_idx
,
646 int size_idx
, u64 axi_addr
, u64 pci_addr
)
648 struct device
*dev
= pcie
->dev
;
649 u16 oarr_offset
, omap_offset
;
652 * Derive the OARR/OMAP offset from the first pair (OARR0/OMAP0) based
655 oarr_offset
= iproc_pcie_reg_offset(pcie
, MAP_REG(IPROC_PCIE_OARR0
,
657 omap_offset
= iproc_pcie_reg_offset(pcie
, MAP_REG(IPROC_PCIE_OMAP0
,
659 if (iproc_pcie_reg_is_invalid(oarr_offset
) ||
660 iproc_pcie_reg_is_invalid(omap_offset
))
664 * Program the OARR registers. The upper 32-bit OARR register is
665 * always right after the lower 32-bit OARR register.
667 writel(lower_32_bits(axi_addr
) | (size_idx
<< OARR_SIZE_CFG_SHIFT
) |
668 OARR_VALID
, pcie
->base
+ oarr_offset
);
669 writel(upper_32_bits(axi_addr
), pcie
->base
+ oarr_offset
+ 4);
671 /* now program the OMAP registers */
672 writel(lower_32_bits(pci_addr
), pcie
->base
+ omap_offset
);
673 writel(upper_32_bits(pci_addr
), pcie
->base
+ omap_offset
+ 4);
675 dev_info(dev
, "ob window [%d]: offset 0x%x axi %pap pci %pap\n",
676 window_idx
, oarr_offset
, &axi_addr
, &pci_addr
);
677 dev_info(dev
, "oarr lo 0x%x oarr hi 0x%x\n",
678 readl(pcie
->base
+ oarr_offset
),
679 readl(pcie
->base
+ oarr_offset
+ 4));
680 dev_info(dev
, "omap lo 0x%x omap hi 0x%x\n",
681 readl(pcie
->base
+ omap_offset
),
682 readl(pcie
->base
+ omap_offset
+ 4));
688 * Some iProc SoCs require the SW to configure the outbound address mapping
690 * Outbound address translation:
692 * iproc_pcie_address = axi_address - axi_offset
693 * OARR = iproc_pcie_address
696 * axi_addr -> iproc_pcie_address -> OARR -> OMAP -> pci_address
698 static int iproc_pcie_setup_ob(struct iproc_pcie
*pcie
, u64 axi_addr
,
699 u64 pci_addr
, resource_size_t size
)
701 struct iproc_pcie_ob
*ob
= &pcie
->ob
;
702 struct device
*dev
= pcie
->dev
;
703 int ret
= -EINVAL
, window_idx
, size_idx
;
705 if (axi_addr
< ob
->axi_offset
) {
706 dev_err(dev
, "axi address %pap less than offset %pap\n",
707 &axi_addr
, &ob
->axi_offset
);
712 * Translate the AXI address to the internal address used by the iProc
713 * PCIe core before programming the OARR
715 axi_addr
-= ob
->axi_offset
;
717 /* iterate through all OARR/OMAP mapping windows */
718 for (window_idx
= ob
->nr_windows
- 1; window_idx
>= 0; window_idx
--) {
719 const struct iproc_pcie_ob_map
*ob_map
=
720 &pcie
->ob_map
[window_idx
];
723 * If current outbound window is already in use, move on to the
726 if (iproc_pcie_ob_is_valid(pcie
, window_idx
))
730 * Iterate through all supported window sizes within the
731 * OARR/OMAP pair to find a match. Go through the window sizes
732 * in a descending order.
734 for (size_idx
= ob_map
->nr_sizes
- 1; size_idx
>= 0;
736 resource_size_t window_size
=
737 ob_map
->window_sizes
[size_idx
] * SZ_1M
;
739 if (size
< window_size
)
742 if (!IS_ALIGNED(axi_addr
, window_size
) ||
743 !IS_ALIGNED(pci_addr
, window_size
)) {
745 "axi %pap or pci %pap not aligned\n",
746 &axi_addr
, &pci_addr
);
751 * Match found! Program both OARR and OMAP and mark
752 * them as a valid entry.
754 ret
= iproc_pcie_ob_write(pcie
, window_idx
, size_idx
,
764 * If we are here, we are done with the current window,
765 * but not yet finished all mappings. Need to move on
766 * to the next window.
768 axi_addr
+= window_size
;
769 pci_addr
+= window_size
;
775 dev_err(dev
, "unable to configure outbound mapping\n");
777 "axi %pap, axi offset %pap, pci %pap, res size %pap\n",
778 &axi_addr
, &ob
->axi_offset
, &pci_addr
, &size
);
783 static int iproc_pcie_map_ranges(struct iproc_pcie
*pcie
,
784 struct list_head
*resources
)
786 struct device
*dev
= pcie
->dev
;
787 struct resource_entry
*window
;
790 resource_list_for_each_entry(window
, resources
) {
791 struct resource
*res
= window
->res
;
792 u64 res_type
= resource_type(res
);
799 ret
= iproc_pcie_setup_ob(pcie
, res
->start
,
800 res
->start
- window
->offset
,
806 dev_err(dev
, "invalid resource %pR\n", res
);
814 static inline bool iproc_pcie_ib_is_in_use(struct iproc_pcie
*pcie
,
817 const struct iproc_pcie_ib_map
*ib_map
= &pcie
->ib_map
[region_idx
];
820 val
= iproc_pcie_read_reg(pcie
, MAP_REG(IPROC_PCIE_IARR0
, region_idx
));
822 return !!(val
& (BIT(ib_map
->nr_sizes
) - 1));
825 static inline bool iproc_pcie_ib_check_type(const struct iproc_pcie_ib_map
*ib_map
,
826 enum iproc_pcie_ib_map_type type
)
828 return !!(ib_map
->type
== type
);
831 static int iproc_pcie_ib_write(struct iproc_pcie
*pcie
, int region_idx
,
832 int size_idx
, int nr_windows
, u64 axi_addr
,
833 u64 pci_addr
, resource_size_t size
)
835 struct device
*dev
= pcie
->dev
;
836 const struct iproc_pcie_ib_map
*ib_map
= &pcie
->ib_map
[region_idx
];
837 u16 iarr_offset
, imap_offset
;
841 iarr_offset
= iproc_pcie_reg_offset(pcie
,
842 MAP_REG(IPROC_PCIE_IARR0
, region_idx
));
843 imap_offset
= iproc_pcie_reg_offset(pcie
,
844 MAP_REG(IPROC_PCIE_IMAP0
, region_idx
));
845 if (iproc_pcie_reg_is_invalid(iarr_offset
) ||
846 iproc_pcie_reg_is_invalid(imap_offset
))
849 dev_info(dev
, "ib region [%d]: offset 0x%x axi %pap pci %pap\n",
850 region_idx
, iarr_offset
, &axi_addr
, &pci_addr
);
853 * Program the IARR registers. The upper 32-bit IARR register is
854 * always right after the lower 32-bit IARR register.
856 writel(lower_32_bits(pci_addr
) | BIT(size_idx
),
857 pcie
->base
+ iarr_offset
);
858 writel(upper_32_bits(pci_addr
), pcie
->base
+ iarr_offset
+ 4);
860 dev_info(dev
, "iarr lo 0x%x iarr hi 0x%x\n",
861 readl(pcie
->base
+ iarr_offset
),
862 readl(pcie
->base
+ iarr_offset
+ 4));
865 * Now program the IMAP registers. Each IARR region may have one or
868 size
>>= ilog2(nr_windows
);
869 for (window_idx
= 0; window_idx
< nr_windows
; window_idx
++) {
870 val
= readl(pcie
->base
+ imap_offset
);
871 val
|= lower_32_bits(axi_addr
) | IMAP_VALID
;
872 writel(val
, pcie
->base
+ imap_offset
);
873 writel(upper_32_bits(axi_addr
),
874 pcie
->base
+ imap_offset
+ ib_map
->imap_addr_offset
);
876 dev_info(dev
, "imap window [%d] lo 0x%x hi 0x%x\n",
877 window_idx
, readl(pcie
->base
+ imap_offset
),
878 readl(pcie
->base
+ imap_offset
+
879 ib_map
->imap_addr_offset
));
881 imap_offset
+= ib_map
->imap_window_offset
;
888 static int iproc_pcie_setup_ib(struct iproc_pcie
*pcie
,
889 struct of_pci_range
*range
,
890 enum iproc_pcie_ib_map_type type
)
892 struct device
*dev
= pcie
->dev
;
893 struct iproc_pcie_ib
*ib
= &pcie
->ib
;
895 unsigned int region_idx
, size_idx
;
896 u64 axi_addr
= range
->cpu_addr
, pci_addr
= range
->pci_addr
;
897 resource_size_t size
= range
->size
;
899 /* iterate through all IARR mapping regions */
900 for (region_idx
= 0; region_idx
< ib
->nr_regions
; region_idx
++) {
901 const struct iproc_pcie_ib_map
*ib_map
=
902 &pcie
->ib_map
[region_idx
];
905 * If current inbound region is already in use or not a
906 * compatible type, move on to the next.
908 if (iproc_pcie_ib_is_in_use(pcie
, region_idx
) ||
909 !iproc_pcie_ib_check_type(ib_map
, type
))
912 /* iterate through all supported region sizes to find a match */
913 for (size_idx
= 0; size_idx
< ib_map
->nr_sizes
; size_idx
++) {
914 resource_size_t region_size
=
915 ib_map
->region_sizes
[size_idx
] * ib_map
->size_unit
;
917 if (size
!= region_size
)
920 if (!IS_ALIGNED(axi_addr
, region_size
) ||
921 !IS_ALIGNED(pci_addr
, region_size
)) {
923 "axi %pap or pci %pap not aligned\n",
924 &axi_addr
, &pci_addr
);
928 /* Match found! Program IARR and all IMAP windows. */
929 ret
= iproc_pcie_ib_write(pcie
, region_idx
, size_idx
,
930 ib_map
->nr_windows
, axi_addr
,
942 dev_err(dev
, "unable to configure inbound mapping\n");
943 dev_err(dev
, "axi %pap, pci %pap, res size %pap\n",
944 &axi_addr
, &pci_addr
, &size
);
949 static int pci_dma_range_parser_init(struct of_pci_range_parser
*parser
,
950 struct device_node
*node
)
952 const int na
= 3, ns
= 2;
956 parser
->pna
= of_n_addr_cells(node
);
957 parser
->np
= parser
->pna
+ na
+ ns
;
959 parser
->range
= of_get_property(node
, "dma-ranges", &rlen
);
963 parser
->end
= parser
->range
+ rlen
/ sizeof(__be32
);
967 static int iproc_pcie_map_dma_ranges(struct iproc_pcie
*pcie
)
969 struct of_pci_range range
;
970 struct of_pci_range_parser parser
;
973 /* Get the dma-ranges from DT */
974 ret
= pci_dma_range_parser_init(&parser
, pcie
->dev
->of_node
);
978 for_each_of_pci_range(&parser
, &range
) {
979 /* Each range entry corresponds to an inbound mapping region */
980 ret
= iproc_pcie_setup_ib(pcie
, &range
, IPROC_PCIE_IB_MAP_MEM
);
988 static int iproce_pcie_get_msi(struct iproc_pcie
*pcie
,
989 struct device_node
*msi_node
,
992 struct device
*dev
= pcie
->dev
;
997 * Check if 'msi-map' points to ARM GICv3 ITS, which is the only
998 * supported external MSI controller that requires steering.
1000 if (!of_device_is_compatible(msi_node
, "arm,gic-v3-its")) {
1001 dev_err(dev
, "unable to find compatible MSI controller\n");
1005 /* derive GITS_TRANSLATER address from GICv3 */
1006 ret
= of_address_to_resource(msi_node
, 0, &res
);
1008 dev_err(dev
, "unable to obtain MSI controller resources\n");
1012 *msi_addr
= res
.start
+ GITS_TRANSLATER
;
1016 static int iproc_pcie_paxb_v2_msi_steer(struct iproc_pcie
*pcie
, u64 msi_addr
)
1019 struct of_pci_range range
;
1021 memset(&range
, 0, sizeof(range
));
1022 range
.size
= SZ_32K
;
1023 range
.pci_addr
= range
.cpu_addr
= msi_addr
& ~(range
.size
- 1);
1025 ret
= iproc_pcie_setup_ib(pcie
, &range
, IPROC_PCIE_IB_MAP_IO
);
1029 static void iproc_pcie_paxc_v2_msi_steer(struct iproc_pcie
*pcie
, u64 msi_addr
)
1034 * Program bits [43:13] of address of GITS_TRANSLATER register into
1035 * bits [30:0] of the MSI base address register. In fact, in all iProc
1036 * based SoCs, all I/O register bases are well below the 32-bit
1037 * boundary, so we can safely assume bits [43:32] are always zeros.
1039 iproc_pcie_write_reg(pcie
, IPROC_PCIE_MSI_BASE_ADDR
,
1040 (u32
)(msi_addr
>> 13));
1042 /* use a default 8K window size */
1043 iproc_pcie_write_reg(pcie
, IPROC_PCIE_MSI_WINDOW_SIZE
, 0);
1045 /* steering MSI to GICv3 ITS */
1046 val
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_MSI_GIC_MODE
);
1048 iproc_pcie_write_reg(pcie
, IPROC_PCIE_MSI_GIC_MODE
, val
);
1051 * Program bits [43:2] of address of GITS_TRANSLATER register into the
1052 * iProc MSI address registers.
1055 iproc_pcie_write_reg(pcie
, IPROC_PCIE_MSI_ADDR_HI
,
1056 upper_32_bits(msi_addr
));
1057 iproc_pcie_write_reg(pcie
, IPROC_PCIE_MSI_ADDR_LO
,
1058 lower_32_bits(msi_addr
));
1061 val
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_MSI_EN_CFG
);
1062 val
|= MSI_ENABLE_CFG
;
1063 iproc_pcie_write_reg(pcie
, IPROC_PCIE_MSI_EN_CFG
, val
);
1066 static int iproc_pcie_msi_steer(struct iproc_pcie
*pcie
,
1067 struct device_node
*msi_node
)
1069 struct device
*dev
= pcie
->dev
;
1073 ret
= iproce_pcie_get_msi(pcie
, msi_node
, &msi_addr
);
1075 dev_err(dev
, "msi steering failed\n");
1079 switch (pcie
->type
) {
1080 case IPROC_PCIE_PAXB_V2
:
1081 ret
= iproc_pcie_paxb_v2_msi_steer(pcie
, msi_addr
);
1085 case IPROC_PCIE_PAXC_V2
:
1086 iproc_pcie_paxc_v2_msi_steer(pcie
, msi_addr
);
1095 static int iproc_pcie_msi_enable(struct iproc_pcie
*pcie
)
1097 struct device_node
*msi_node
;
1101 * Either the "msi-parent" or the "msi-map" phandle needs to exist
1102 * for us to obtain the MSI node.
1105 msi_node
= of_parse_phandle(pcie
->dev
->of_node
, "msi-parent", 0);
1107 const __be32
*msi_map
= NULL
;
1111 msi_map
= of_get_property(pcie
->dev
->of_node
, "msi-map", &len
);
1115 phandle
= be32_to_cpup(msi_map
+ 1);
1116 msi_node
= of_find_node_by_phandle(phandle
);
1122 * Certain revisions of the iProc PCIe controller require additional
1123 * configurations to steer the MSI writes towards an external MSI
1126 if (pcie
->need_msi_steer
) {
1127 ret
= iproc_pcie_msi_steer(pcie
, msi_node
);
1133 * If another MSI controller is being used, the call below should fail
1136 return iproc_msi_init(pcie
, msi_node
);
1139 static void iproc_pcie_msi_disable(struct iproc_pcie
*pcie
)
1141 iproc_msi_exit(pcie
);
1144 static int iproc_pcie_rev_init(struct iproc_pcie
*pcie
)
1146 struct device
*dev
= pcie
->dev
;
1147 unsigned int reg_idx
;
1150 switch (pcie
->type
) {
1151 case IPROC_PCIE_PAXB_BCMA
:
1152 regs
= iproc_pcie_reg_paxb_bcma
;
1154 case IPROC_PCIE_PAXB
:
1155 regs
= iproc_pcie_reg_paxb
;
1156 pcie
->has_apb_err_disable
= true;
1157 if (pcie
->need_ob_cfg
) {
1158 pcie
->ob_map
= paxb_ob_map
;
1159 pcie
->ob
.nr_windows
= ARRAY_SIZE(paxb_ob_map
);
1162 case IPROC_PCIE_PAXB_V2
:
1163 regs
= iproc_pcie_reg_paxb_v2
;
1164 pcie
->has_apb_err_disable
= true;
1165 if (pcie
->need_ob_cfg
) {
1166 pcie
->ob_map
= paxb_v2_ob_map
;
1167 pcie
->ob
.nr_windows
= ARRAY_SIZE(paxb_v2_ob_map
);
1169 pcie
->ib
.nr_regions
= ARRAY_SIZE(paxb_v2_ib_map
);
1170 pcie
->ib_map
= paxb_v2_ib_map
;
1171 pcie
->need_msi_steer
= true;
1173 case IPROC_PCIE_PAXC
:
1174 regs
= iproc_pcie_reg_paxc
;
1175 pcie
->ep_is_internal
= true;
1177 case IPROC_PCIE_PAXC_V2
:
1178 regs
= iproc_pcie_reg_paxc_v2
;
1179 pcie
->ep_is_internal
= true;
1180 pcie
->need_msi_steer
= true;
1183 dev_err(dev
, "incompatible iProc PCIe interface\n");
1187 pcie
->reg_offsets
= devm_kcalloc(dev
, IPROC_PCIE_MAX_NUM_REG
,
1188 sizeof(*pcie
->reg_offsets
),
1190 if (!pcie
->reg_offsets
)
1193 /* go through the register table and populate all valid registers */
1194 pcie
->reg_offsets
[0] = (pcie
->type
== IPROC_PCIE_PAXC_V2
) ?
1195 IPROC_PCIE_REG_INVALID
: regs
[0];
1196 for (reg_idx
= 1; reg_idx
< IPROC_PCIE_MAX_NUM_REG
; reg_idx
++)
1197 pcie
->reg_offsets
[reg_idx
] = regs
[reg_idx
] ?
1198 regs
[reg_idx
] : IPROC_PCIE_REG_INVALID
;
1203 int iproc_pcie_setup(struct iproc_pcie
*pcie
, struct list_head
*res
)
1208 struct pci_bus
*bus
;
1212 ret
= iproc_pcie_rev_init(pcie
);
1214 dev_err(dev
, "unable to initialize controller parameters\n");
1218 ret
= devm_request_pci_bus_resources(dev
, res
);
1222 ret
= phy_init(pcie
->phy
);
1224 dev_err(dev
, "unable to initialize PCIe PHY\n");
1228 ret
= phy_power_on(pcie
->phy
);
1230 dev_err(dev
, "unable to power on PCIe PHY\n");
1234 iproc_pcie_reset(pcie
);
1236 if (pcie
->need_ob_cfg
) {
1237 ret
= iproc_pcie_map_ranges(pcie
, res
);
1239 dev_err(dev
, "map failed\n");
1240 goto err_power_off_phy
;
1244 ret
= iproc_pcie_map_dma_ranges(pcie
);
1245 if (ret
&& ret
!= -ENOENT
)
1246 goto err_power_off_phy
;
1249 pcie
->sysdata
.private_data
= pcie
;
1250 sysdata
= &pcie
->sysdata
;
1255 bus
= pci_create_root_bus(dev
, 0, &iproc_pcie_ops
, sysdata
, res
);
1257 dev_err(dev
, "unable to create PCI root bus\n");
1259 goto err_power_off_phy
;
1261 pcie
->root_bus
= bus
;
1263 ret
= iproc_pcie_check_link(pcie
, bus
);
1265 dev_err(dev
, "no PCIe EP device detected\n");
1266 goto err_rm_root_bus
;
1269 iproc_pcie_enable(pcie
);
1271 if (IS_ENABLED(CONFIG_PCI_MSI
))
1272 if (iproc_pcie_msi_enable(pcie
))
1273 dev_info(dev
, "not using iProc MSI\n");
1275 pci_scan_child_bus(bus
);
1276 pci_assign_unassigned_bus_resources(bus
);
1279 pci_fixup_irqs(pci_common_swizzle
, pcie
->map_irq
);
1281 pci_bus_add_devices(bus
);
1286 pci_stop_root_bus(bus
);
1287 pci_remove_root_bus(bus
);
1290 phy_power_off(pcie
->phy
);
1292 phy_exit(pcie
->phy
);
1295 EXPORT_SYMBOL(iproc_pcie_setup
);
1297 int iproc_pcie_remove(struct iproc_pcie
*pcie
)
1299 pci_stop_root_bus(pcie
->root_bus
);
1300 pci_remove_root_bus(pcie
->root_bus
);
1302 iproc_pcie_msi_disable(pcie
);
1304 phy_power_off(pcie
->phy
);
1305 phy_exit(pcie
->phy
);
1309 EXPORT_SYMBOL(iproc_pcie_remove
);
1311 MODULE_AUTHOR("Ray Jui <rjui@broadcom.com>");
1312 MODULE_DESCRIPTION("Broadcom iPROC PCIe common driver");
1313 MODULE_LICENSE("GPL v2");