1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2014 Hauke Mehrtens <hauke@hauke-m.de>
4 * Copyright (C) 2015 Broadcom Corporation
7 #include <linux/kernel.h>
10 #include <linux/clk.h>
11 #include <linux/module.h>
12 #include <linux/mbus.h>
13 #include <linux/slab.h>
14 #include <linux/delay.h>
15 #include <linux/interrupt.h>
16 #include <linux/irqchip/arm-gic-v3.h>
17 #include <linux/platform_device.h>
18 #include <linux/of_address.h>
19 #include <linux/of_pci.h>
20 #include <linux/of_irq.h>
21 #include <linux/of_platform.h>
22 #include <linux/phy/phy.h>
24 #include "pcie-iproc.h"
26 #define EP_PERST_SOURCE_SELECT_SHIFT 2
27 #define EP_PERST_SOURCE_SELECT BIT(EP_PERST_SOURCE_SELECT_SHIFT)
28 #define EP_MODE_SURVIVE_PERST_SHIFT 1
29 #define EP_MODE_SURVIVE_PERST BIT(EP_MODE_SURVIVE_PERST_SHIFT)
30 #define RC_PCIE_RST_OUTPUT_SHIFT 0
31 #define RC_PCIE_RST_OUTPUT BIT(RC_PCIE_RST_OUTPUT_SHIFT)
32 #define PAXC_RESET_MASK 0x7f
34 #define GIC_V3_CFG_SHIFT 0
35 #define GIC_V3_CFG BIT(GIC_V3_CFG_SHIFT)
37 #define MSI_ENABLE_CFG_SHIFT 0
38 #define MSI_ENABLE_CFG BIT(MSI_ENABLE_CFG_SHIFT)
40 #define CFG_IND_ADDR_MASK 0x00001ffc
42 #define CFG_ADDR_BUS_NUM_SHIFT 20
43 #define CFG_ADDR_BUS_NUM_MASK 0x0ff00000
44 #define CFG_ADDR_DEV_NUM_SHIFT 15
45 #define CFG_ADDR_DEV_NUM_MASK 0x000f8000
46 #define CFG_ADDR_FUNC_NUM_SHIFT 12
47 #define CFG_ADDR_FUNC_NUM_MASK 0x00007000
48 #define CFG_ADDR_REG_NUM_SHIFT 2
49 #define CFG_ADDR_REG_NUM_MASK 0x00000ffc
50 #define CFG_ADDR_CFG_TYPE_SHIFT 0
51 #define CFG_ADDR_CFG_TYPE_MASK 0x00000003
53 #define SYS_RC_INTX_MASK 0xf
55 #define PCIE_PHYLINKUP_SHIFT 3
56 #define PCIE_PHYLINKUP BIT(PCIE_PHYLINKUP_SHIFT)
57 #define PCIE_DL_ACTIVE_SHIFT 2
58 #define PCIE_DL_ACTIVE BIT(PCIE_DL_ACTIVE_SHIFT)
60 #define APB_ERR_EN_SHIFT 0
61 #define APB_ERR_EN BIT(APB_ERR_EN_SHIFT)
63 #define CFG_RD_SUCCESS 0
67 #define CFG_RETRY_STATUS 0xffff0001
68 #define CFG_RETRY_STATUS_TIMEOUT_US 500000 /* 500 milliseconds */
70 /* derive the enum index of the outbound/inbound mapping registers */
71 #define MAP_REG(base_reg, index) ((base_reg) + (index) * 2)
74 * Maximum number of outbound mapping window sizes that can be supported by any
75 * OARR/OMAP mapping pair
77 #define MAX_NUM_OB_WINDOW_SIZES 4
79 #define OARR_VALID_SHIFT 0
80 #define OARR_VALID BIT(OARR_VALID_SHIFT)
81 #define OARR_SIZE_CFG_SHIFT 1
84 * Maximum number of inbound mapping region sizes that can be supported by an
87 #define MAX_NUM_IB_REGION_SIZES 9
89 #define IMAP_VALID_SHIFT 0
90 #define IMAP_VALID BIT(IMAP_VALID_SHIFT)
92 #define IPROC_PCI_PM_CAP 0x48
93 #define IPROC_PCI_PM_CAP_MASK 0xffff
94 #define IPROC_PCI_EXP_CAP 0xac
96 #define IPROC_PCIE_REG_INVALID 0xffff
99 * iProc PCIe outbound mapping controller specific parameters
101 * @window_sizes: list of supported outbound mapping window sizes in MB
102 * @nr_sizes: number of supported outbound mapping window sizes
104 struct iproc_pcie_ob_map
{
105 resource_size_t window_sizes
[MAX_NUM_OB_WINDOW_SIZES
];
106 unsigned int nr_sizes
;
109 static const struct iproc_pcie_ob_map paxb_ob_map
[] = {
112 .window_sizes
= { 128, 256 },
117 .window_sizes
= { 128, 256 },
122 static const struct iproc_pcie_ob_map paxb_v2_ob_map
[] = {
125 .window_sizes
= { 128, 256 },
130 .window_sizes
= { 128, 256 },
135 .window_sizes
= { 128, 256, 512, 1024 },
140 .window_sizes
= { 128, 256, 512, 1024 },
146 * iProc PCIe inbound mapping type
148 enum iproc_pcie_ib_map_type
{
150 IPROC_PCIE_IB_MAP_MEM
= 0,
152 /* for device I/O memory */
153 IPROC_PCIE_IB_MAP_IO
,
155 /* invalid or unused */
156 IPROC_PCIE_IB_MAP_INVALID
160 * iProc PCIe inbound mapping controller specific parameters
162 * @type: inbound mapping region type
163 * @size_unit: inbound mapping region size unit, could be SZ_1K, SZ_1M, or
165 * @region_sizes: list of supported inbound mapping region sizes in KB, MB, or
166 * GB, depending on the size unit
167 * @nr_sizes: number of supported inbound mapping region sizes
168 * @nr_windows: number of supported inbound mapping windows for the region
169 * @imap_addr_offset: register offset between the upper and lower 32-bit
170 * IMAP address registers
171 * @imap_window_offset: register offset between each IMAP window
173 struct iproc_pcie_ib_map
{
174 enum iproc_pcie_ib_map_type type
;
175 unsigned int size_unit
;
176 resource_size_t region_sizes
[MAX_NUM_IB_REGION_SIZES
];
177 unsigned int nr_sizes
;
178 unsigned int nr_windows
;
179 u16 imap_addr_offset
;
180 u16 imap_window_offset
;
183 static const struct iproc_pcie_ib_map paxb_v2_ib_map
[] = {
186 .type
= IPROC_PCIE_IB_MAP_IO
,
188 .region_sizes
= { 32 },
191 .imap_addr_offset
= 0x40,
192 .imap_window_offset
= 0x4,
195 /* IARR1/IMAP1 (currently unused) */
196 .type
= IPROC_PCIE_IB_MAP_INVALID
,
200 .type
= IPROC_PCIE_IB_MAP_MEM
,
202 .region_sizes
= { 64, 128, 256, 512, 1024, 2048, 4096, 8192,
206 .imap_addr_offset
= 0x4,
207 .imap_window_offset
= 0x8,
211 .type
= IPROC_PCIE_IB_MAP_MEM
,
213 .region_sizes
= { 1, 2, 4, 8, 16, 32 },
216 .imap_addr_offset
= 0x4,
217 .imap_window_offset
= 0x8,
221 .type
= IPROC_PCIE_IB_MAP_MEM
,
223 .region_sizes
= { 32, 64, 128, 256, 512 },
226 .imap_addr_offset
= 0x4,
227 .imap_window_offset
= 0x8,
232 * iProc PCIe host registers
234 enum iproc_pcie_reg
{
235 /* clock/reset signal control */
236 IPROC_PCIE_CLK_CTRL
= 0,
239 * To allow MSI to be steered to an external MSI controller (e.g., ARM
242 IPROC_PCIE_MSI_GIC_MODE
,
245 * IPROC_PCIE_MSI_BASE_ADDR and IPROC_PCIE_MSI_WINDOW_SIZE define the
246 * window where the MSI posted writes are written, for the writes to be
247 * interpreted as MSI writes.
249 IPROC_PCIE_MSI_BASE_ADDR
,
250 IPROC_PCIE_MSI_WINDOW_SIZE
,
253 * To hold the address of the register where the MSI writes are
254 * programed. When ARM GICv3 ITS is used, this should be programmed
255 * with the address of the GITS_TRANSLATER register.
257 IPROC_PCIE_MSI_ADDR_LO
,
258 IPROC_PCIE_MSI_ADDR_HI
,
261 IPROC_PCIE_MSI_EN_CFG
,
263 /* allow access to root complex configuration space */
264 IPROC_PCIE_CFG_IND_ADDR
,
265 IPROC_PCIE_CFG_IND_DATA
,
267 /* allow access to device configuration space */
274 /* outbound address mapping */
284 /* inbound address mapping */
296 /* config read status */
297 IPROC_PCIE_CFG_RD_STATUS
,
300 IPROC_PCIE_LINK_STATUS
,
302 /* enable APB error for unsupported requests */
303 IPROC_PCIE_APB_ERR_EN
,
305 /* total number of core registers */
306 IPROC_PCIE_MAX_NUM_REG
,
309 /* iProc PCIe PAXB BCMA registers */
310 static const u16 iproc_pcie_reg_paxb_bcma
[] = {
311 [IPROC_PCIE_CLK_CTRL
] = 0x000,
312 [IPROC_PCIE_CFG_IND_ADDR
] = 0x120,
313 [IPROC_PCIE_CFG_IND_DATA
] = 0x124,
314 [IPROC_PCIE_CFG_ADDR
] = 0x1f8,
315 [IPROC_PCIE_CFG_DATA
] = 0x1fc,
316 [IPROC_PCIE_INTX_EN
] = 0x330,
317 [IPROC_PCIE_LINK_STATUS
] = 0xf0c,
320 /* iProc PCIe PAXB registers */
321 static const u16 iproc_pcie_reg_paxb
[] = {
322 [IPROC_PCIE_CLK_CTRL
] = 0x000,
323 [IPROC_PCIE_CFG_IND_ADDR
] = 0x120,
324 [IPROC_PCIE_CFG_IND_DATA
] = 0x124,
325 [IPROC_PCIE_CFG_ADDR
] = 0x1f8,
326 [IPROC_PCIE_CFG_DATA
] = 0x1fc,
327 [IPROC_PCIE_INTX_EN
] = 0x330,
328 [IPROC_PCIE_OARR0
] = 0xd20,
329 [IPROC_PCIE_OMAP0
] = 0xd40,
330 [IPROC_PCIE_OARR1
] = 0xd28,
331 [IPROC_PCIE_OMAP1
] = 0xd48,
332 [IPROC_PCIE_LINK_STATUS
] = 0xf0c,
333 [IPROC_PCIE_APB_ERR_EN
] = 0xf40,
336 /* iProc PCIe PAXB v2 registers */
337 static const u16 iproc_pcie_reg_paxb_v2
[] = {
338 [IPROC_PCIE_CLK_CTRL
] = 0x000,
339 [IPROC_PCIE_CFG_IND_ADDR
] = 0x120,
340 [IPROC_PCIE_CFG_IND_DATA
] = 0x124,
341 [IPROC_PCIE_CFG_ADDR
] = 0x1f8,
342 [IPROC_PCIE_CFG_DATA
] = 0x1fc,
343 [IPROC_PCIE_INTX_EN
] = 0x330,
344 [IPROC_PCIE_OARR0
] = 0xd20,
345 [IPROC_PCIE_OMAP0
] = 0xd40,
346 [IPROC_PCIE_OARR1
] = 0xd28,
347 [IPROC_PCIE_OMAP1
] = 0xd48,
348 [IPROC_PCIE_OARR2
] = 0xd60,
349 [IPROC_PCIE_OMAP2
] = 0xd68,
350 [IPROC_PCIE_OARR3
] = 0xdf0,
351 [IPROC_PCIE_OMAP3
] = 0xdf8,
352 [IPROC_PCIE_IARR0
] = 0xd00,
353 [IPROC_PCIE_IMAP0
] = 0xc00,
354 [IPROC_PCIE_IARR2
] = 0xd10,
355 [IPROC_PCIE_IMAP2
] = 0xcc0,
356 [IPROC_PCIE_IARR3
] = 0xe00,
357 [IPROC_PCIE_IMAP3
] = 0xe08,
358 [IPROC_PCIE_IARR4
] = 0xe68,
359 [IPROC_PCIE_IMAP4
] = 0xe70,
360 [IPROC_PCIE_CFG_RD_STATUS
] = 0xee0,
361 [IPROC_PCIE_LINK_STATUS
] = 0xf0c,
362 [IPROC_PCIE_APB_ERR_EN
] = 0xf40,
365 /* iProc PCIe PAXC v1 registers */
366 static const u16 iproc_pcie_reg_paxc
[] = {
367 [IPROC_PCIE_CLK_CTRL
] = 0x000,
368 [IPROC_PCIE_CFG_IND_ADDR
] = 0x1f0,
369 [IPROC_PCIE_CFG_IND_DATA
] = 0x1f4,
370 [IPROC_PCIE_CFG_ADDR
] = 0x1f8,
371 [IPROC_PCIE_CFG_DATA
] = 0x1fc,
374 /* iProc PCIe PAXC v2 registers */
375 static const u16 iproc_pcie_reg_paxc_v2
[] = {
376 [IPROC_PCIE_MSI_GIC_MODE
] = 0x050,
377 [IPROC_PCIE_MSI_BASE_ADDR
] = 0x074,
378 [IPROC_PCIE_MSI_WINDOW_SIZE
] = 0x078,
379 [IPROC_PCIE_MSI_ADDR_LO
] = 0x07c,
380 [IPROC_PCIE_MSI_ADDR_HI
] = 0x080,
381 [IPROC_PCIE_MSI_EN_CFG
] = 0x09c,
382 [IPROC_PCIE_CFG_IND_ADDR
] = 0x1f0,
383 [IPROC_PCIE_CFG_IND_DATA
] = 0x1f4,
384 [IPROC_PCIE_CFG_ADDR
] = 0x1f8,
385 [IPROC_PCIE_CFG_DATA
] = 0x1fc,
389 * List of device IDs of controllers that have corrupted capability list that
392 static const u16 iproc_pcie_corrupt_cap_did
[] = {
399 static inline struct iproc_pcie
*iproc_data(struct pci_bus
*bus
)
401 struct iproc_pcie
*pcie
= bus
->sysdata
;
405 static inline bool iproc_pcie_reg_is_invalid(u16 reg_offset
)
407 return !!(reg_offset
== IPROC_PCIE_REG_INVALID
);
410 static inline u16
iproc_pcie_reg_offset(struct iproc_pcie
*pcie
,
411 enum iproc_pcie_reg reg
)
413 return pcie
->reg_offsets
[reg
];
416 static inline u32
iproc_pcie_read_reg(struct iproc_pcie
*pcie
,
417 enum iproc_pcie_reg reg
)
419 u16 offset
= iproc_pcie_reg_offset(pcie
, reg
);
421 if (iproc_pcie_reg_is_invalid(offset
))
424 return readl(pcie
->base
+ offset
);
427 static inline void iproc_pcie_write_reg(struct iproc_pcie
*pcie
,
428 enum iproc_pcie_reg reg
, u32 val
)
430 u16 offset
= iproc_pcie_reg_offset(pcie
, reg
);
432 if (iproc_pcie_reg_is_invalid(offset
))
435 writel(val
, pcie
->base
+ offset
);
439 * APB error forwarding can be disabled during access of configuration
440 * registers of the endpoint device, to prevent unsupported requests
441 * (typically seen during enumeration with multi-function devices) from
442 * triggering a system exception.
444 static inline void iproc_pcie_apb_err_disable(struct pci_bus
*bus
,
447 struct iproc_pcie
*pcie
= iproc_data(bus
);
450 if (bus
->number
&& pcie
->has_apb_err_disable
) {
451 val
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_APB_ERR_EN
);
456 iproc_pcie_write_reg(pcie
, IPROC_PCIE_APB_ERR_EN
, val
);
460 static void __iomem
*iproc_pcie_map_ep_cfg_reg(struct iproc_pcie
*pcie
,
469 /* EP device access */
470 val
= (busno
<< CFG_ADDR_BUS_NUM_SHIFT
) |
471 (slot
<< CFG_ADDR_DEV_NUM_SHIFT
) |
472 (fn
<< CFG_ADDR_FUNC_NUM_SHIFT
) |
473 (where
& CFG_ADDR_REG_NUM_MASK
) |
474 (1 & CFG_ADDR_CFG_TYPE_MASK
);
476 iproc_pcie_write_reg(pcie
, IPROC_PCIE_CFG_ADDR
, val
);
477 offset
= iproc_pcie_reg_offset(pcie
, IPROC_PCIE_CFG_DATA
);
479 if (iproc_pcie_reg_is_invalid(offset
))
482 return (pcie
->base
+ offset
);
485 static unsigned int iproc_pcie_cfg_retry(struct iproc_pcie
*pcie
,
486 void __iomem
*cfg_data_p
)
488 int timeout
= CFG_RETRY_STATUS_TIMEOUT_US
;
493 * As per PCIe spec r3.1, sec 2.3.2, CRS Software Visibility only
494 * affects config reads of the Vendor ID. For config writes or any
495 * other config reads, the Root may automatically reissue the
496 * configuration request again as a new request.
498 * For config reads, this hardware returns CFG_RETRY_STATUS data
499 * when it receives a CRS completion, regardless of the address of
500 * the read or the CRS Software Visibility Enable bit. As a
501 * partial workaround for this, we retry in software any read that
502 * returns CFG_RETRY_STATUS.
504 * Note that a non-Vendor ID config register may have a value of
505 * CFG_RETRY_STATUS. If we read that, we can't distinguish it from
506 * a CRS completion, so we will incorrectly retry the read and
507 * eventually return the wrong data (0xffffffff).
509 data
= readl(cfg_data_p
);
510 while (data
== CFG_RETRY_STATUS
&& timeout
--) {
512 * CRS state is set in CFG_RD status register
513 * This will handle the case where CFG_RETRY_STATUS is
516 status
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_CFG_RD_STATUS
);
517 if (status
!= CFG_RD_CRS
)
521 data
= readl(cfg_data_p
);
524 if (data
== CFG_RETRY_STATUS
)
530 static void iproc_pcie_fix_cap(struct iproc_pcie
*pcie
, int where
, u32
*val
)
534 switch (where
& ~0x3) {
539 * Activate fixup for those controllers that have corrupted
540 * capability list registers
542 for (i
= 0; i
< ARRAY_SIZE(iproc_pcie_corrupt_cap_did
); i
++)
543 if (dev_id
== iproc_pcie_corrupt_cap_did
[i
])
544 pcie
->fix_paxc_cap
= true;
547 case IPROC_PCI_PM_CAP
:
548 if (pcie
->fix_paxc_cap
) {
549 /* advertise PM, force next capability to PCIe */
550 *val
&= ~IPROC_PCI_PM_CAP_MASK
;
551 *val
|= IPROC_PCI_EXP_CAP
<< 8 | PCI_CAP_ID_PM
;
555 case IPROC_PCI_EXP_CAP
:
556 if (pcie
->fix_paxc_cap
) {
557 /* advertise root port, version 2, terminate here */
558 *val
= (PCI_EXP_TYPE_ROOT_PORT
<< 4 | 2) << 16 |
563 case IPROC_PCI_EXP_CAP
+ PCI_EXP_RTCTL
:
564 /* Don't advertise CRS SV support */
565 *val
&= ~(PCI_EXP_RTCAP_CRSVIS
<< 16);
573 static int iproc_pcie_config_read(struct pci_bus
*bus
, unsigned int devfn
,
574 int where
, int size
, u32
*val
)
576 struct iproc_pcie
*pcie
= iproc_data(bus
);
577 unsigned int slot
= PCI_SLOT(devfn
);
578 unsigned int fn
= PCI_FUNC(devfn
);
579 unsigned int busno
= bus
->number
;
580 void __iomem
*cfg_data_p
;
584 /* root complex access */
586 ret
= pci_generic_config_read32(bus
, devfn
, where
, size
, val
);
587 if (ret
== PCIBIOS_SUCCESSFUL
)
588 iproc_pcie_fix_cap(pcie
, where
, val
);
593 cfg_data_p
= iproc_pcie_map_ep_cfg_reg(pcie
, busno
, slot
, fn
, where
);
596 return PCIBIOS_DEVICE_NOT_FOUND
;
598 data
= iproc_pcie_cfg_retry(pcie
, cfg_data_p
);
602 *val
= (data
>> (8 * (where
& 3))) & ((1 << (size
* 8)) - 1);
605 * For PAXC and PAXCv2, the total number of PFs that one can enumerate
606 * depends on the firmware configuration. Unfortunately, due to an ASIC
607 * bug, unconfigured PFs cannot be properly hidden from the root
608 * complex. As a result, write access to these PFs will cause bus lock
609 * up on the embedded processor
611 * Since all unconfigured PFs are left with an incorrect, staled device
612 * ID of 0x168e (PCI_DEVICE_ID_NX2_57810), we try to catch those access
613 * early here and reject them all
615 #define DEVICE_ID_MASK 0xffff0000
616 #define DEVICE_ID_SHIFT 16
617 if (pcie
->rej_unconfig_pf
&&
618 (where
& CFG_ADDR_REG_NUM_MASK
) == PCI_VENDOR_ID
)
619 if ((*val
& DEVICE_ID_MASK
) ==
620 (PCI_DEVICE_ID_NX2_57810
<< DEVICE_ID_SHIFT
))
621 return PCIBIOS_FUNC_NOT_SUPPORTED
;
623 return PCIBIOS_SUCCESSFUL
;
627 * Note access to the configuration registers are protected at the higher layer
628 * by 'pci_lock' in drivers/pci/access.c
630 static void __iomem
*iproc_pcie_map_cfg_bus(struct iproc_pcie
*pcie
,
631 int busno
, unsigned int devfn
,
634 unsigned slot
= PCI_SLOT(devfn
);
635 unsigned fn
= PCI_FUNC(devfn
);
638 /* root complex access */
640 if (slot
> 0 || fn
> 0)
643 iproc_pcie_write_reg(pcie
, IPROC_PCIE_CFG_IND_ADDR
,
644 where
& CFG_IND_ADDR_MASK
);
645 offset
= iproc_pcie_reg_offset(pcie
, IPROC_PCIE_CFG_IND_DATA
);
646 if (iproc_pcie_reg_is_invalid(offset
))
649 return (pcie
->base
+ offset
);
652 return iproc_pcie_map_ep_cfg_reg(pcie
, busno
, slot
, fn
, where
);
655 static void __iomem
*iproc_pcie_bus_map_cfg_bus(struct pci_bus
*bus
,
659 return iproc_pcie_map_cfg_bus(iproc_data(bus
), bus
->number
, devfn
,
663 static int iproc_pci_raw_config_read32(struct iproc_pcie
*pcie
,
664 unsigned int devfn
, int where
,
669 addr
= iproc_pcie_map_cfg_bus(pcie
, 0, devfn
, where
& ~0x3);
672 return PCIBIOS_DEVICE_NOT_FOUND
;
678 *val
= (*val
>> (8 * (where
& 3))) & ((1 << (size
* 8)) - 1);
680 return PCIBIOS_SUCCESSFUL
;
683 static int iproc_pci_raw_config_write32(struct iproc_pcie
*pcie
,
684 unsigned int devfn
, int where
,
690 addr
= iproc_pcie_map_cfg_bus(pcie
, 0, devfn
, where
& ~0x3);
692 return PCIBIOS_DEVICE_NOT_FOUND
;
696 return PCIBIOS_SUCCESSFUL
;
699 mask
= ~(((1 << (size
* 8)) - 1) << ((where
& 0x3) * 8));
700 tmp
= readl(addr
) & mask
;
701 tmp
|= val
<< ((where
& 0x3) * 8);
704 return PCIBIOS_SUCCESSFUL
;
707 static int iproc_pcie_config_read32(struct pci_bus
*bus
, unsigned int devfn
,
708 int where
, int size
, u32
*val
)
711 struct iproc_pcie
*pcie
= iproc_data(bus
);
713 iproc_pcie_apb_err_disable(bus
, true);
714 if (pcie
->iproc_cfg_read
)
715 ret
= iproc_pcie_config_read(bus
, devfn
, where
, size
, val
);
717 ret
= pci_generic_config_read32(bus
, devfn
, where
, size
, val
);
718 iproc_pcie_apb_err_disable(bus
, false);
723 static int iproc_pcie_config_write32(struct pci_bus
*bus
, unsigned int devfn
,
724 int where
, int size
, u32 val
)
728 iproc_pcie_apb_err_disable(bus
, true);
729 ret
= pci_generic_config_write32(bus
, devfn
, where
, size
, val
);
730 iproc_pcie_apb_err_disable(bus
, false);
735 static struct pci_ops iproc_pcie_ops
= {
736 .map_bus
= iproc_pcie_bus_map_cfg_bus
,
737 .read
= iproc_pcie_config_read32
,
738 .write
= iproc_pcie_config_write32
,
741 static void iproc_pcie_perst_ctrl(struct iproc_pcie
*pcie
, bool assert)
746 * PAXC and the internal emulated endpoint device downstream should not
747 * be reset. If firmware has been loaded on the endpoint device at an
748 * earlier boot stage, reset here causes issues.
750 if (pcie
->ep_is_internal
)
754 val
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_CLK_CTRL
);
755 val
&= ~EP_PERST_SOURCE_SELECT
& ~EP_MODE_SURVIVE_PERST
&
757 iproc_pcie_write_reg(pcie
, IPROC_PCIE_CLK_CTRL
, val
);
760 val
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_CLK_CTRL
);
761 val
|= RC_PCIE_RST_OUTPUT
;
762 iproc_pcie_write_reg(pcie
, IPROC_PCIE_CLK_CTRL
, val
);
767 int iproc_pcie_shutdown(struct iproc_pcie
*pcie
)
769 iproc_pcie_perst_ctrl(pcie
, true);
774 EXPORT_SYMBOL_GPL(iproc_pcie_shutdown
);
776 static int iproc_pcie_check_link(struct iproc_pcie
*pcie
)
778 struct device
*dev
= pcie
->dev
;
779 u32 hdr_type
, link_ctrl
, link_status
, class, val
;
780 bool link_is_active
= false;
783 * PAXC connects to emulated endpoint devices directly and does not
784 * have a Serdes. Therefore skip the link detection logic here.
786 if (pcie
->ep_is_internal
)
789 val
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_LINK_STATUS
);
790 if (!(val
& PCIE_PHYLINKUP
) || !(val
& PCIE_DL_ACTIVE
)) {
791 dev_err(dev
, "PHY or data link is INACTIVE!\n");
795 /* make sure we are not in EP mode */
796 iproc_pci_raw_config_read32(pcie
, 0, PCI_HEADER_TYPE
, 1, &hdr_type
);
797 if ((hdr_type
& 0x7f) != PCI_HEADER_TYPE_BRIDGE
) {
798 dev_err(dev
, "in EP mode, hdr=%#02x\n", hdr_type
);
802 /* force class to PCI_CLASS_BRIDGE_PCI (0x0604) */
803 #define PCI_BRIDGE_CTRL_REG_OFFSET 0x43c
804 #define PCI_CLASS_BRIDGE_MASK 0xffff00
805 #define PCI_CLASS_BRIDGE_SHIFT 8
806 iproc_pci_raw_config_read32(pcie
, 0, PCI_BRIDGE_CTRL_REG_OFFSET
,
808 class &= ~PCI_CLASS_BRIDGE_MASK
;
809 class |= (PCI_CLASS_BRIDGE_PCI
<< PCI_CLASS_BRIDGE_SHIFT
);
810 iproc_pci_raw_config_write32(pcie
, 0, PCI_BRIDGE_CTRL_REG_OFFSET
,
813 /* check link status to see if link is active */
814 iproc_pci_raw_config_read32(pcie
, 0, IPROC_PCI_EXP_CAP
+ PCI_EXP_LNKSTA
,
816 if (link_status
& PCI_EXP_LNKSTA_NLW
)
817 link_is_active
= true;
819 if (!link_is_active
) {
820 /* try GEN 1 link speed */
821 #define PCI_TARGET_LINK_SPEED_MASK 0xf
822 #define PCI_TARGET_LINK_SPEED_GEN2 0x2
823 #define PCI_TARGET_LINK_SPEED_GEN1 0x1
824 iproc_pci_raw_config_read32(pcie
, 0,
825 IPROC_PCI_EXP_CAP
+ PCI_EXP_LNKCTL2
,
827 if ((link_ctrl
& PCI_TARGET_LINK_SPEED_MASK
) ==
828 PCI_TARGET_LINK_SPEED_GEN2
) {
829 link_ctrl
&= ~PCI_TARGET_LINK_SPEED_MASK
;
830 link_ctrl
|= PCI_TARGET_LINK_SPEED_GEN1
;
831 iproc_pci_raw_config_write32(pcie
, 0,
832 IPROC_PCI_EXP_CAP
+ PCI_EXP_LNKCTL2
,
836 iproc_pci_raw_config_read32(pcie
, 0,
837 IPROC_PCI_EXP_CAP
+ PCI_EXP_LNKSTA
,
839 if (link_status
& PCI_EXP_LNKSTA_NLW
)
840 link_is_active
= true;
844 dev_info(dev
, "link: %s\n", link_is_active
? "UP" : "DOWN");
846 return link_is_active
? 0 : -ENODEV
;
849 static void iproc_pcie_enable(struct iproc_pcie
*pcie
)
851 iproc_pcie_write_reg(pcie
, IPROC_PCIE_INTX_EN
, SYS_RC_INTX_MASK
);
854 static inline bool iproc_pcie_ob_is_valid(struct iproc_pcie
*pcie
,
859 val
= iproc_pcie_read_reg(pcie
, MAP_REG(IPROC_PCIE_OARR0
, window_idx
));
861 return !!(val
& OARR_VALID
);
864 static inline int iproc_pcie_ob_write(struct iproc_pcie
*pcie
, int window_idx
,
865 int size_idx
, u64 axi_addr
, u64 pci_addr
)
867 struct device
*dev
= pcie
->dev
;
868 u16 oarr_offset
, omap_offset
;
871 * Derive the OARR/OMAP offset from the first pair (OARR0/OMAP0) based
874 oarr_offset
= iproc_pcie_reg_offset(pcie
, MAP_REG(IPROC_PCIE_OARR0
,
876 omap_offset
= iproc_pcie_reg_offset(pcie
, MAP_REG(IPROC_PCIE_OMAP0
,
878 if (iproc_pcie_reg_is_invalid(oarr_offset
) ||
879 iproc_pcie_reg_is_invalid(omap_offset
))
883 * Program the OARR registers. The upper 32-bit OARR register is
884 * always right after the lower 32-bit OARR register.
886 writel(lower_32_bits(axi_addr
) | (size_idx
<< OARR_SIZE_CFG_SHIFT
) |
887 OARR_VALID
, pcie
->base
+ oarr_offset
);
888 writel(upper_32_bits(axi_addr
), pcie
->base
+ oarr_offset
+ 4);
890 /* now program the OMAP registers */
891 writel(lower_32_bits(pci_addr
), pcie
->base
+ omap_offset
);
892 writel(upper_32_bits(pci_addr
), pcie
->base
+ omap_offset
+ 4);
894 dev_dbg(dev
, "ob window [%d]: offset 0x%x axi %pap pci %pap\n",
895 window_idx
, oarr_offset
, &axi_addr
, &pci_addr
);
896 dev_dbg(dev
, "oarr lo 0x%x oarr hi 0x%x\n",
897 readl(pcie
->base
+ oarr_offset
),
898 readl(pcie
->base
+ oarr_offset
+ 4));
899 dev_dbg(dev
, "omap lo 0x%x omap hi 0x%x\n",
900 readl(pcie
->base
+ omap_offset
),
901 readl(pcie
->base
+ omap_offset
+ 4));
907 * Some iProc SoCs require the SW to configure the outbound address mapping
909 * Outbound address translation:
911 * iproc_pcie_address = axi_address - axi_offset
912 * OARR = iproc_pcie_address
915 * axi_addr -> iproc_pcie_address -> OARR -> OMAP -> pci_address
917 static int iproc_pcie_setup_ob(struct iproc_pcie
*pcie
, u64 axi_addr
,
918 u64 pci_addr
, resource_size_t size
)
920 struct iproc_pcie_ob
*ob
= &pcie
->ob
;
921 struct device
*dev
= pcie
->dev
;
922 int ret
= -EINVAL
, window_idx
, size_idx
;
924 if (axi_addr
< ob
->axi_offset
) {
925 dev_err(dev
, "axi address %pap less than offset %pap\n",
926 &axi_addr
, &ob
->axi_offset
);
931 * Translate the AXI address to the internal address used by the iProc
932 * PCIe core before programming the OARR
934 axi_addr
-= ob
->axi_offset
;
936 /* iterate through all OARR/OMAP mapping windows */
937 for (window_idx
= ob
->nr_windows
- 1; window_idx
>= 0; window_idx
--) {
938 const struct iproc_pcie_ob_map
*ob_map
=
939 &pcie
->ob_map
[window_idx
];
942 * If current outbound window is already in use, move on to the
945 if (iproc_pcie_ob_is_valid(pcie
, window_idx
))
949 * Iterate through all supported window sizes within the
950 * OARR/OMAP pair to find a match. Go through the window sizes
951 * in a descending order.
953 for (size_idx
= ob_map
->nr_sizes
- 1; size_idx
>= 0;
955 resource_size_t window_size
=
956 ob_map
->window_sizes
[size_idx
] * SZ_1M
;
959 * Keep iterating until we reach the last window and
960 * with the minimal window size at index zero. In this
961 * case, we take a compromise by mapping it using the
962 * minimum window size that can be supported
964 if (size
< window_size
) {
965 if (size_idx
> 0 || window_idx
> 0)
969 * For the corner case of reaching the minimal
970 * window size that can be supported on the
973 axi_addr
= ALIGN_DOWN(axi_addr
, window_size
);
974 pci_addr
= ALIGN_DOWN(pci_addr
, window_size
);
978 if (!IS_ALIGNED(axi_addr
, window_size
) ||
979 !IS_ALIGNED(pci_addr
, window_size
)) {
981 "axi %pap or pci %pap not aligned\n",
982 &axi_addr
, &pci_addr
);
987 * Match found! Program both OARR and OMAP and mark
988 * them as a valid entry.
990 ret
= iproc_pcie_ob_write(pcie
, window_idx
, size_idx
,
1000 * If we are here, we are done with the current window,
1001 * but not yet finished all mappings. Need to move on
1002 * to the next window.
1004 axi_addr
+= window_size
;
1005 pci_addr
+= window_size
;
1011 dev_err(dev
, "unable to configure outbound mapping\n");
1013 "axi %pap, axi offset %pap, pci %pap, res size %pap\n",
1014 &axi_addr
, &ob
->axi_offset
, &pci_addr
, &size
);
1019 static int iproc_pcie_map_ranges(struct iproc_pcie
*pcie
,
1020 struct list_head
*resources
)
1022 struct device
*dev
= pcie
->dev
;
1023 struct resource_entry
*window
;
1026 resource_list_for_each_entry(window
, resources
) {
1027 struct resource
*res
= window
->res
;
1028 u64 res_type
= resource_type(res
);
1032 case IORESOURCE_BUS
:
1034 case IORESOURCE_MEM
:
1035 ret
= iproc_pcie_setup_ob(pcie
, res
->start
,
1036 res
->start
- window
->offset
,
1037 resource_size(res
));
1042 dev_err(dev
, "invalid resource %pR\n", res
);
1050 static inline bool iproc_pcie_ib_is_in_use(struct iproc_pcie
*pcie
,
1053 const struct iproc_pcie_ib_map
*ib_map
= &pcie
->ib_map
[region_idx
];
1056 val
= iproc_pcie_read_reg(pcie
, MAP_REG(IPROC_PCIE_IARR0
, region_idx
));
1058 return !!(val
& (BIT(ib_map
->nr_sizes
) - 1));
1061 static inline bool iproc_pcie_ib_check_type(const struct iproc_pcie_ib_map
*ib_map
,
1062 enum iproc_pcie_ib_map_type type
)
1064 return !!(ib_map
->type
== type
);
1067 static int iproc_pcie_ib_write(struct iproc_pcie
*pcie
, int region_idx
,
1068 int size_idx
, int nr_windows
, u64 axi_addr
,
1069 u64 pci_addr
, resource_size_t size
)
1071 struct device
*dev
= pcie
->dev
;
1072 const struct iproc_pcie_ib_map
*ib_map
= &pcie
->ib_map
[region_idx
];
1073 u16 iarr_offset
, imap_offset
;
1077 iarr_offset
= iproc_pcie_reg_offset(pcie
,
1078 MAP_REG(IPROC_PCIE_IARR0
, region_idx
));
1079 imap_offset
= iproc_pcie_reg_offset(pcie
,
1080 MAP_REG(IPROC_PCIE_IMAP0
, region_idx
));
1081 if (iproc_pcie_reg_is_invalid(iarr_offset
) ||
1082 iproc_pcie_reg_is_invalid(imap_offset
))
1085 dev_dbg(dev
, "ib region [%d]: offset 0x%x axi %pap pci %pap\n",
1086 region_idx
, iarr_offset
, &axi_addr
, &pci_addr
);
1089 * Program the IARR registers. The upper 32-bit IARR register is
1090 * always right after the lower 32-bit IARR register.
1092 writel(lower_32_bits(pci_addr
) | BIT(size_idx
),
1093 pcie
->base
+ iarr_offset
);
1094 writel(upper_32_bits(pci_addr
), pcie
->base
+ iarr_offset
+ 4);
1096 dev_dbg(dev
, "iarr lo 0x%x iarr hi 0x%x\n",
1097 readl(pcie
->base
+ iarr_offset
),
1098 readl(pcie
->base
+ iarr_offset
+ 4));
1101 * Now program the IMAP registers. Each IARR region may have one or
1102 * more IMAP windows.
1104 size
>>= ilog2(nr_windows
);
1105 for (window_idx
= 0; window_idx
< nr_windows
; window_idx
++) {
1106 val
= readl(pcie
->base
+ imap_offset
);
1107 val
|= lower_32_bits(axi_addr
) | IMAP_VALID
;
1108 writel(val
, pcie
->base
+ imap_offset
);
1109 writel(upper_32_bits(axi_addr
),
1110 pcie
->base
+ imap_offset
+ ib_map
->imap_addr_offset
);
1112 dev_dbg(dev
, "imap window [%d] lo 0x%x hi 0x%x\n",
1113 window_idx
, readl(pcie
->base
+ imap_offset
),
1114 readl(pcie
->base
+ imap_offset
+
1115 ib_map
->imap_addr_offset
));
1117 imap_offset
+= ib_map
->imap_window_offset
;
1124 static int iproc_pcie_setup_ib(struct iproc_pcie
*pcie
,
1125 struct resource_entry
*entry
,
1126 enum iproc_pcie_ib_map_type type
)
1128 struct device
*dev
= pcie
->dev
;
1129 struct iproc_pcie_ib
*ib
= &pcie
->ib
;
1131 unsigned int region_idx
, size_idx
;
1132 u64 axi_addr
= entry
->res
->start
;
1133 u64 pci_addr
= entry
->res
->start
- entry
->offset
;
1134 resource_size_t size
= resource_size(entry
->res
);
1136 /* iterate through all IARR mapping regions */
1137 for (region_idx
= 0; region_idx
< ib
->nr_regions
; region_idx
++) {
1138 const struct iproc_pcie_ib_map
*ib_map
=
1139 &pcie
->ib_map
[region_idx
];
1142 * If current inbound region is already in use or not a
1143 * compatible type, move on to the next.
1145 if (iproc_pcie_ib_is_in_use(pcie
, region_idx
) ||
1146 !iproc_pcie_ib_check_type(ib_map
, type
))
1149 /* iterate through all supported region sizes to find a match */
1150 for (size_idx
= 0; size_idx
< ib_map
->nr_sizes
; size_idx
++) {
1151 resource_size_t region_size
=
1152 ib_map
->region_sizes
[size_idx
] * ib_map
->size_unit
;
1154 if (size
!= region_size
)
1157 if (!IS_ALIGNED(axi_addr
, region_size
) ||
1158 !IS_ALIGNED(pci_addr
, region_size
)) {
1160 "axi %pap or pci %pap not aligned\n",
1161 &axi_addr
, &pci_addr
);
1165 /* Match found! Program IARR and all IMAP windows. */
1166 ret
= iproc_pcie_ib_write(pcie
, region_idx
, size_idx
,
1167 ib_map
->nr_windows
, axi_addr
,
1179 dev_err(dev
, "unable to configure inbound mapping\n");
1180 dev_err(dev
, "axi %pap, pci %pap, res size %pap\n",
1181 &axi_addr
, &pci_addr
, &size
);
1186 static int iproc_pcie_map_dma_ranges(struct iproc_pcie
*pcie
)
1188 struct pci_host_bridge
*host
= pci_host_bridge_from_priv(pcie
);
1189 struct resource_entry
*entry
;
1192 resource_list_for_each_entry(entry
, &host
->dma_ranges
) {
1193 /* Each range entry corresponds to an inbound mapping region */
1194 ret
= iproc_pcie_setup_ib(pcie
, entry
, IPROC_PCIE_IB_MAP_MEM
);
1202 static void iproc_pcie_invalidate_mapping(struct iproc_pcie
*pcie
)
1204 struct iproc_pcie_ib
*ib
= &pcie
->ib
;
1205 struct iproc_pcie_ob
*ob
= &pcie
->ob
;
1208 if (pcie
->ep_is_internal
)
1211 if (pcie
->need_ob_cfg
) {
1212 /* iterate through all OARR mapping regions */
1213 for (idx
= ob
->nr_windows
- 1; idx
>= 0; idx
--) {
1214 iproc_pcie_write_reg(pcie
,
1215 MAP_REG(IPROC_PCIE_OARR0
, idx
), 0);
1219 if (pcie
->need_ib_cfg
) {
1220 /* iterate through all IARR mapping regions */
1221 for (idx
= 0; idx
< ib
->nr_regions
; idx
++) {
1222 iproc_pcie_write_reg(pcie
,
1223 MAP_REG(IPROC_PCIE_IARR0
, idx
), 0);
1228 static int iproce_pcie_get_msi(struct iproc_pcie
*pcie
,
1229 struct device_node
*msi_node
,
1232 struct device
*dev
= pcie
->dev
;
1234 struct resource res
;
1237 * Check if 'msi-map' points to ARM GICv3 ITS, which is the only
1238 * supported external MSI controller that requires steering.
1240 if (!of_device_is_compatible(msi_node
, "arm,gic-v3-its")) {
1241 dev_err(dev
, "unable to find compatible MSI controller\n");
1245 /* derive GITS_TRANSLATER address from GICv3 */
1246 ret
= of_address_to_resource(msi_node
, 0, &res
);
1248 dev_err(dev
, "unable to obtain MSI controller resources\n");
1252 *msi_addr
= res
.start
+ GITS_TRANSLATER
;
1256 static int iproc_pcie_paxb_v2_msi_steer(struct iproc_pcie
*pcie
, u64 msi_addr
)
1259 struct resource_entry entry
;
1261 memset(&entry
, 0, sizeof(entry
));
1262 entry
.res
= &entry
.__res
;
1264 msi_addr
&= ~(SZ_32K
- 1);
1265 entry
.res
->start
= msi_addr
;
1266 entry
.res
->end
= msi_addr
+ SZ_32K
- 1;
1268 ret
= iproc_pcie_setup_ib(pcie
, &entry
, IPROC_PCIE_IB_MAP_IO
);
1272 static void iproc_pcie_paxc_v2_msi_steer(struct iproc_pcie
*pcie
, u64 msi_addr
,
1279 * Disable PAXC MSI steering. All write transfers will be
1280 * treated as non-MSI transfers
1282 val
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_MSI_EN_CFG
);
1283 val
&= ~MSI_ENABLE_CFG
;
1284 iproc_pcie_write_reg(pcie
, IPROC_PCIE_MSI_EN_CFG
, val
);
1289 * Program bits [43:13] of address of GITS_TRANSLATER register into
1290 * bits [30:0] of the MSI base address register. In fact, in all iProc
1291 * based SoCs, all I/O register bases are well below the 32-bit
1292 * boundary, so we can safely assume bits [43:32] are always zeros.
1294 iproc_pcie_write_reg(pcie
, IPROC_PCIE_MSI_BASE_ADDR
,
1295 (u32
)(msi_addr
>> 13));
1297 /* use a default 8K window size */
1298 iproc_pcie_write_reg(pcie
, IPROC_PCIE_MSI_WINDOW_SIZE
, 0);
1300 /* steering MSI to GICv3 ITS */
1301 val
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_MSI_GIC_MODE
);
1303 iproc_pcie_write_reg(pcie
, IPROC_PCIE_MSI_GIC_MODE
, val
);
1306 * Program bits [43:2] of address of GITS_TRANSLATER register into the
1307 * iProc MSI address registers.
1310 iproc_pcie_write_reg(pcie
, IPROC_PCIE_MSI_ADDR_HI
,
1311 upper_32_bits(msi_addr
));
1312 iproc_pcie_write_reg(pcie
, IPROC_PCIE_MSI_ADDR_LO
,
1313 lower_32_bits(msi_addr
));
1316 val
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_MSI_EN_CFG
);
1317 val
|= MSI_ENABLE_CFG
;
1318 iproc_pcie_write_reg(pcie
, IPROC_PCIE_MSI_EN_CFG
, val
);
1321 static int iproc_pcie_msi_steer(struct iproc_pcie
*pcie
,
1322 struct device_node
*msi_node
)
1324 struct device
*dev
= pcie
->dev
;
1328 ret
= iproce_pcie_get_msi(pcie
, msi_node
, &msi_addr
);
1330 dev_err(dev
, "msi steering failed\n");
1334 switch (pcie
->type
) {
1335 case IPROC_PCIE_PAXB_V2
:
1336 ret
= iproc_pcie_paxb_v2_msi_steer(pcie
, msi_addr
);
1340 case IPROC_PCIE_PAXC_V2
:
1341 iproc_pcie_paxc_v2_msi_steer(pcie
, msi_addr
, true);
1350 static int iproc_pcie_msi_enable(struct iproc_pcie
*pcie
)
1352 struct device_node
*msi_node
;
1356 * Either the "msi-parent" or the "msi-map" phandle needs to exist
1357 * for us to obtain the MSI node.
1360 msi_node
= of_parse_phandle(pcie
->dev
->of_node
, "msi-parent", 0);
1362 const __be32
*msi_map
= NULL
;
1366 msi_map
= of_get_property(pcie
->dev
->of_node
, "msi-map", &len
);
1370 phandle
= be32_to_cpup(msi_map
+ 1);
1371 msi_node
= of_find_node_by_phandle(phandle
);
1377 * Certain revisions of the iProc PCIe controller require additional
1378 * configurations to steer the MSI writes towards an external MSI
1381 if (pcie
->need_msi_steer
) {
1382 ret
= iproc_pcie_msi_steer(pcie
, msi_node
);
1388 * If another MSI controller is being used, the call below should fail
1391 ret
= iproc_msi_init(pcie
, msi_node
);
1394 of_node_put(msi_node
);
1398 static void iproc_pcie_msi_disable(struct iproc_pcie
*pcie
)
1400 iproc_msi_exit(pcie
);
1403 static int iproc_pcie_rev_init(struct iproc_pcie
*pcie
)
1405 struct device
*dev
= pcie
->dev
;
1406 unsigned int reg_idx
;
1409 switch (pcie
->type
) {
1410 case IPROC_PCIE_PAXB_BCMA
:
1411 regs
= iproc_pcie_reg_paxb_bcma
;
1413 case IPROC_PCIE_PAXB
:
1414 regs
= iproc_pcie_reg_paxb
;
1415 pcie
->has_apb_err_disable
= true;
1416 if (pcie
->need_ob_cfg
) {
1417 pcie
->ob_map
= paxb_ob_map
;
1418 pcie
->ob
.nr_windows
= ARRAY_SIZE(paxb_ob_map
);
1421 case IPROC_PCIE_PAXB_V2
:
1422 regs
= iproc_pcie_reg_paxb_v2
;
1423 pcie
->iproc_cfg_read
= true;
1424 pcie
->has_apb_err_disable
= true;
1425 if (pcie
->need_ob_cfg
) {
1426 pcie
->ob_map
= paxb_v2_ob_map
;
1427 pcie
->ob
.nr_windows
= ARRAY_SIZE(paxb_v2_ob_map
);
1429 pcie
->ib
.nr_regions
= ARRAY_SIZE(paxb_v2_ib_map
);
1430 pcie
->ib_map
= paxb_v2_ib_map
;
1431 pcie
->need_msi_steer
= true;
1432 dev_warn(dev
, "reads of config registers that contain %#x return incorrect data\n",
1435 case IPROC_PCIE_PAXC
:
1436 regs
= iproc_pcie_reg_paxc
;
1437 pcie
->ep_is_internal
= true;
1438 pcie
->iproc_cfg_read
= true;
1439 pcie
->rej_unconfig_pf
= true;
1441 case IPROC_PCIE_PAXC_V2
:
1442 regs
= iproc_pcie_reg_paxc_v2
;
1443 pcie
->ep_is_internal
= true;
1444 pcie
->iproc_cfg_read
= true;
1445 pcie
->rej_unconfig_pf
= true;
1446 pcie
->need_msi_steer
= true;
1449 dev_err(dev
, "incompatible iProc PCIe interface\n");
1453 pcie
->reg_offsets
= devm_kcalloc(dev
, IPROC_PCIE_MAX_NUM_REG
,
1454 sizeof(*pcie
->reg_offsets
),
1456 if (!pcie
->reg_offsets
)
1459 /* go through the register table and populate all valid registers */
1460 pcie
->reg_offsets
[0] = (pcie
->type
== IPROC_PCIE_PAXC_V2
) ?
1461 IPROC_PCIE_REG_INVALID
: regs
[0];
1462 for (reg_idx
= 1; reg_idx
< IPROC_PCIE_MAX_NUM_REG
; reg_idx
++)
1463 pcie
->reg_offsets
[reg_idx
] = regs
[reg_idx
] ?
1464 regs
[reg_idx
] : IPROC_PCIE_REG_INVALID
;
1469 int iproc_pcie_setup(struct iproc_pcie
*pcie
, struct list_head
*res
)
1473 struct pci_bus
*child
;
1474 struct pci_host_bridge
*host
= pci_host_bridge_from_priv(pcie
);
1478 ret
= iproc_pcie_rev_init(pcie
);
1480 dev_err(dev
, "unable to initialize controller parameters\n");
1484 ret
= phy_init(pcie
->phy
);
1486 dev_err(dev
, "unable to initialize PCIe PHY\n");
1490 ret
= phy_power_on(pcie
->phy
);
1492 dev_err(dev
, "unable to power on PCIe PHY\n");
1496 iproc_pcie_perst_ctrl(pcie
, true);
1497 iproc_pcie_perst_ctrl(pcie
, false);
1499 iproc_pcie_invalidate_mapping(pcie
);
1501 if (pcie
->need_ob_cfg
) {
1502 ret
= iproc_pcie_map_ranges(pcie
, res
);
1504 dev_err(dev
, "map failed\n");
1505 goto err_power_off_phy
;
1509 if (pcie
->need_ib_cfg
) {
1510 ret
= iproc_pcie_map_dma_ranges(pcie
);
1511 if (ret
&& ret
!= -ENOENT
)
1512 goto err_power_off_phy
;
1515 ret
= iproc_pcie_check_link(pcie
);
1517 dev_err(dev
, "no PCIe EP device detected\n");
1518 goto err_power_off_phy
;
1521 iproc_pcie_enable(pcie
);
1523 if (IS_ENABLED(CONFIG_PCI_MSI
))
1524 if (iproc_pcie_msi_enable(pcie
))
1525 dev_info(dev
, "not using iProc MSI\n");
1528 host
->dev
.parent
= dev
;
1529 host
->ops
= &iproc_pcie_ops
;
1530 host
->sysdata
= pcie
;
1531 host
->map_irq
= pcie
->map_irq
;
1532 host
->swizzle_irq
= pci_common_swizzle
;
1534 ret
= pci_scan_root_bus_bridge(host
);
1536 dev_err(dev
, "failed to scan host: %d\n", ret
);
1537 goto err_power_off_phy
;
1540 pci_assign_unassigned_bus_resources(host
->bus
);
1542 pcie
->root_bus
= host
->bus
;
1544 list_for_each_entry(child
, &host
->bus
->children
, node
)
1545 pcie_bus_configure_settings(child
);
1547 pci_bus_add_devices(host
->bus
);
1552 phy_power_off(pcie
->phy
);
1554 phy_exit(pcie
->phy
);
1557 EXPORT_SYMBOL(iproc_pcie_setup
);
1559 int iproc_pcie_remove(struct iproc_pcie
*pcie
)
1561 pci_stop_root_bus(pcie
->root_bus
);
1562 pci_remove_root_bus(pcie
->root_bus
);
1564 iproc_pcie_msi_disable(pcie
);
1566 phy_power_off(pcie
->phy
);
1567 phy_exit(pcie
->phy
);
1571 EXPORT_SYMBOL(iproc_pcie_remove
);
1574 * The MSI parsing logic in certain revisions of Broadcom PAXC based root
1575 * complex does not work and needs to be disabled
1577 static void quirk_paxc_disable_msi_parsing(struct pci_dev
*pdev
)
1579 struct iproc_pcie
*pcie
= iproc_data(pdev
->bus
);
1581 if (pdev
->hdr_type
== PCI_HEADER_TYPE_BRIDGE
)
1582 iproc_pcie_paxc_v2_msi_steer(pcie
, 0, false);
1584 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_BROADCOM
, 0x16f0,
1585 quirk_paxc_disable_msi_parsing
);
1586 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_BROADCOM
, 0xd802,
1587 quirk_paxc_disable_msi_parsing
);
1588 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_BROADCOM
, 0xd804,
1589 quirk_paxc_disable_msi_parsing
);
1591 static void quirk_paxc_bridge(struct pci_dev
*pdev
)
1594 * The PCI config space is shared with the PAXC root port and the first
1595 * Ethernet device. So, we need to workaround this by telling the PCI
1596 * code that the bridge is not an Ethernet device.
1598 if (pdev
->hdr_type
== PCI_HEADER_TYPE_BRIDGE
)
1599 pdev
->class = PCI_CLASS_BRIDGE_PCI
<< 8;
1602 * MPSS is not being set properly (as it is currently 0). This is
1603 * because that area of the PCI config space is hard coded to zero, and
1604 * is not modifiable by firmware. Set this to 2 (e.g., 512 byte MPS)
1605 * so that the MPS can be set to the real max value.
1607 pdev
->pcie_mpss
= 2;
1609 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_BROADCOM
, 0x16cd, quirk_paxc_bridge
);
1610 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_BROADCOM
, 0x16f0, quirk_paxc_bridge
);
1611 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_BROADCOM
, 0xd750, quirk_paxc_bridge
);
1612 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_BROADCOM
, 0xd802, quirk_paxc_bridge
);
1613 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_BROADCOM
, 0xd804, quirk_paxc_bridge
);
1615 MODULE_AUTHOR("Ray Jui <rjui@broadcom.com>");
1616 MODULE_DESCRIPTION("Broadcom iPROC PCIe common driver");
1617 MODULE_LICENSE("GPL v2");