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>
9 #include <linux/pci-ecam.h>
10 #include <linux/msi.h>
11 #include <linux/clk.h>
12 #include <linux/module.h>
13 #include <linux/mbus.h>
14 #include <linux/slab.h>
15 #include <linux/delay.h>
16 #include <linux/interrupt.h>
17 #include <linux/irqchip/arm-gic-v3.h>
18 #include <linux/platform_device.h>
19 #include <linux/of_address.h>
20 #include <linux/of_pci.h>
21 #include <linux/of_irq.h>
22 #include <linux/of_platform.h>
23 #include <linux/phy/phy.h>
25 #include "pcie-iproc.h"
27 #define EP_PERST_SOURCE_SELECT_SHIFT 2
28 #define EP_PERST_SOURCE_SELECT BIT(EP_PERST_SOURCE_SELECT_SHIFT)
29 #define EP_MODE_SURVIVE_PERST_SHIFT 1
30 #define EP_MODE_SURVIVE_PERST BIT(EP_MODE_SURVIVE_PERST_SHIFT)
31 #define RC_PCIE_RST_OUTPUT_SHIFT 0
32 #define RC_PCIE_RST_OUTPUT BIT(RC_PCIE_RST_OUTPUT_SHIFT)
33 #define PAXC_RESET_MASK 0x7f
35 #define GIC_V3_CFG_SHIFT 0
36 #define GIC_V3_CFG BIT(GIC_V3_CFG_SHIFT)
38 #define MSI_ENABLE_CFG_SHIFT 0
39 #define MSI_ENABLE_CFG BIT(MSI_ENABLE_CFG_SHIFT)
41 #define CFG_IND_ADDR_MASK 0x00001ffc
43 #define CFG_ADDR_REG_NUM_MASK 0x00000ffc
44 #define CFG_ADDR_CFG_TYPE_1 1
46 #define SYS_RC_INTX_MASK 0xf
48 #define PCIE_PHYLINKUP_SHIFT 3
49 #define PCIE_PHYLINKUP BIT(PCIE_PHYLINKUP_SHIFT)
50 #define PCIE_DL_ACTIVE_SHIFT 2
51 #define PCIE_DL_ACTIVE BIT(PCIE_DL_ACTIVE_SHIFT)
53 #define APB_ERR_EN_SHIFT 0
54 #define APB_ERR_EN BIT(APB_ERR_EN_SHIFT)
56 #define CFG_RD_SUCCESS 0
60 #define CFG_RETRY_STATUS 0xffff0001
61 #define CFG_RETRY_STATUS_TIMEOUT_US 500000 /* 500 milliseconds */
63 /* derive the enum index of the outbound/inbound mapping registers */
64 #define MAP_REG(base_reg, index) ((base_reg) + (index) * 2)
67 * Maximum number of outbound mapping window sizes that can be supported by any
68 * OARR/OMAP mapping pair
70 #define MAX_NUM_OB_WINDOW_SIZES 4
72 #define OARR_VALID_SHIFT 0
73 #define OARR_VALID BIT(OARR_VALID_SHIFT)
74 #define OARR_SIZE_CFG_SHIFT 1
77 * Maximum number of inbound mapping region sizes that can be supported by an
80 #define MAX_NUM_IB_REGION_SIZES 9
82 #define IMAP_VALID_SHIFT 0
83 #define IMAP_VALID BIT(IMAP_VALID_SHIFT)
85 #define IPROC_PCI_PM_CAP 0x48
86 #define IPROC_PCI_PM_CAP_MASK 0xffff
87 #define IPROC_PCI_EXP_CAP 0xac
89 #define IPROC_PCIE_REG_INVALID 0xffff
92 * iProc PCIe outbound mapping controller specific parameters
94 * @window_sizes: list of supported outbound mapping window sizes in MB
95 * @nr_sizes: number of supported outbound mapping window sizes
97 struct iproc_pcie_ob_map
{
98 resource_size_t window_sizes
[MAX_NUM_OB_WINDOW_SIZES
];
99 unsigned int nr_sizes
;
102 static const struct iproc_pcie_ob_map paxb_ob_map
[] = {
105 .window_sizes
= { 128, 256 },
110 .window_sizes
= { 128, 256 },
115 static const struct iproc_pcie_ob_map paxb_v2_ob_map
[] = {
118 .window_sizes
= { 128, 256 },
123 .window_sizes
= { 128, 256 },
128 .window_sizes
= { 128, 256, 512, 1024 },
133 .window_sizes
= { 128, 256, 512, 1024 },
139 * iProc PCIe inbound mapping type
141 enum iproc_pcie_ib_map_type
{
143 IPROC_PCIE_IB_MAP_MEM
= 0,
145 /* for device I/O memory */
146 IPROC_PCIE_IB_MAP_IO
,
148 /* invalid or unused */
149 IPROC_PCIE_IB_MAP_INVALID
153 * iProc PCIe inbound mapping controller specific parameters
155 * @type: inbound mapping region type
156 * @size_unit: inbound mapping region size unit, could be SZ_1K, SZ_1M, or
158 * @region_sizes: list of supported inbound mapping region sizes in KB, MB, or
159 * GB, depending on the size unit
160 * @nr_sizes: number of supported inbound mapping region sizes
161 * @nr_windows: number of supported inbound mapping windows for the region
162 * @imap_addr_offset: register offset between the upper and lower 32-bit
163 * IMAP address registers
164 * @imap_window_offset: register offset between each IMAP window
166 struct iproc_pcie_ib_map
{
167 enum iproc_pcie_ib_map_type type
;
168 unsigned int size_unit
;
169 resource_size_t region_sizes
[MAX_NUM_IB_REGION_SIZES
];
170 unsigned int nr_sizes
;
171 unsigned int nr_windows
;
172 u16 imap_addr_offset
;
173 u16 imap_window_offset
;
176 static const struct iproc_pcie_ib_map paxb_v2_ib_map
[] = {
179 .type
= IPROC_PCIE_IB_MAP_IO
,
181 .region_sizes
= { 32 },
184 .imap_addr_offset
= 0x40,
185 .imap_window_offset
= 0x4,
189 .type
= IPROC_PCIE_IB_MAP_MEM
,
191 .region_sizes
= { 8 },
194 .imap_addr_offset
= 0x4,
195 .imap_window_offset
= 0x8,
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
[IPROC_PCIE_MAX_NUM_REG
] = {
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
[IPROC_PCIE_MAX_NUM_REG
] = {
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
[IPROC_PCIE_MAX_NUM_REG
] = {
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_IARR1
] = 0xd08,
355 [IPROC_PCIE_IMAP1
] = 0xd70,
356 [IPROC_PCIE_IARR2
] = 0xd10,
357 [IPROC_PCIE_IMAP2
] = 0xcc0,
358 [IPROC_PCIE_IARR3
] = 0xe00,
359 [IPROC_PCIE_IMAP3
] = 0xe08,
360 [IPROC_PCIE_IARR4
] = 0xe68,
361 [IPROC_PCIE_IMAP4
] = 0xe70,
362 [IPROC_PCIE_CFG_RD_STATUS
] = 0xee0,
363 [IPROC_PCIE_LINK_STATUS
] = 0xf0c,
364 [IPROC_PCIE_APB_ERR_EN
] = 0xf40,
367 /* iProc PCIe PAXC v1 registers */
368 static const u16 iproc_pcie_reg_paxc
[IPROC_PCIE_MAX_NUM_REG
] = {
369 [IPROC_PCIE_CLK_CTRL
] = 0x000,
370 [IPROC_PCIE_CFG_IND_ADDR
] = 0x1f0,
371 [IPROC_PCIE_CFG_IND_DATA
] = 0x1f4,
372 [IPROC_PCIE_CFG_ADDR
] = 0x1f8,
373 [IPROC_PCIE_CFG_DATA
] = 0x1fc,
376 /* iProc PCIe PAXC v2 registers */
377 static const u16 iproc_pcie_reg_paxc_v2
[IPROC_PCIE_MAX_NUM_REG
] = {
378 [IPROC_PCIE_MSI_GIC_MODE
] = 0x050,
379 [IPROC_PCIE_MSI_BASE_ADDR
] = 0x074,
380 [IPROC_PCIE_MSI_WINDOW_SIZE
] = 0x078,
381 [IPROC_PCIE_MSI_ADDR_LO
] = 0x07c,
382 [IPROC_PCIE_MSI_ADDR_HI
] = 0x080,
383 [IPROC_PCIE_MSI_EN_CFG
] = 0x09c,
384 [IPROC_PCIE_CFG_IND_ADDR
] = 0x1f0,
385 [IPROC_PCIE_CFG_IND_DATA
] = 0x1f4,
386 [IPROC_PCIE_CFG_ADDR
] = 0x1f8,
387 [IPROC_PCIE_CFG_DATA
] = 0x1fc,
391 * List of device IDs of controllers that have corrupted capability list that
394 static const u16 iproc_pcie_corrupt_cap_did
[] = {
401 static inline struct iproc_pcie
*iproc_data(struct pci_bus
*bus
)
403 struct iproc_pcie
*pcie
= bus
->sysdata
;
407 static inline bool iproc_pcie_reg_is_invalid(u16 reg_offset
)
409 return !!(reg_offset
== IPROC_PCIE_REG_INVALID
);
412 static inline u16
iproc_pcie_reg_offset(struct iproc_pcie
*pcie
,
413 enum iproc_pcie_reg reg
)
415 return pcie
->reg_offsets
[reg
];
418 static inline u32
iproc_pcie_read_reg(struct iproc_pcie
*pcie
,
419 enum iproc_pcie_reg reg
)
421 u16 offset
= iproc_pcie_reg_offset(pcie
, reg
);
423 if (iproc_pcie_reg_is_invalid(offset
))
426 return readl(pcie
->base
+ offset
);
429 static inline void iproc_pcie_write_reg(struct iproc_pcie
*pcie
,
430 enum iproc_pcie_reg reg
, u32 val
)
432 u16 offset
= iproc_pcie_reg_offset(pcie
, reg
);
434 if (iproc_pcie_reg_is_invalid(offset
))
437 writel(val
, pcie
->base
+ offset
);
441 * APB error forwarding can be disabled during access of configuration
442 * registers of the endpoint device, to prevent unsupported requests
443 * (typically seen during enumeration with multi-function devices) from
444 * triggering a system exception.
446 static inline void iproc_pcie_apb_err_disable(struct pci_bus
*bus
,
449 struct iproc_pcie
*pcie
= iproc_data(bus
);
452 if (bus
->number
&& pcie
->has_apb_err_disable
) {
453 val
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_APB_ERR_EN
);
458 iproc_pcie_write_reg(pcie
, IPROC_PCIE_APB_ERR_EN
, val
);
462 static void __iomem
*iproc_pcie_map_ep_cfg_reg(struct iproc_pcie
*pcie
,
470 /* EP device access */
471 val
= ALIGN_DOWN(PCIE_ECAM_OFFSET(busno
, devfn
, where
), 4) |
474 iproc_pcie_write_reg(pcie
, IPROC_PCIE_CFG_ADDR
, val
);
475 offset
= iproc_pcie_reg_offset(pcie
, IPROC_PCIE_CFG_DATA
);
477 if (iproc_pcie_reg_is_invalid(offset
))
480 return (pcie
->base
+ offset
);
483 static unsigned int iproc_pcie_cfg_retry(struct iproc_pcie
*pcie
,
484 void __iomem
*cfg_data_p
)
486 int timeout
= CFG_RETRY_STATUS_TIMEOUT_US
;
491 * As per PCIe spec r3.1, sec 2.3.2, CRS Software Visibility only
492 * affects config reads of the Vendor ID. For config writes or any
493 * other config reads, the Root may automatically reissue the
494 * configuration request again as a new request.
496 * For config reads, this hardware returns CFG_RETRY_STATUS data
497 * when it receives a CRS completion, regardless of the address of
498 * the read or the CRS Software Visibility Enable bit. As a
499 * partial workaround for this, we retry in software any read that
500 * returns CFG_RETRY_STATUS.
502 * Note that a non-Vendor ID config register may have a value of
503 * CFG_RETRY_STATUS. If we read that, we can't distinguish it from
504 * a CRS completion, so we will incorrectly retry the read and
505 * eventually return the wrong data (0xffffffff).
507 data
= readl(cfg_data_p
);
508 while (data
== CFG_RETRY_STATUS
&& timeout
--) {
510 * CRS state is set in CFG_RD status register
511 * This will handle the case where CFG_RETRY_STATUS is
514 status
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_CFG_RD_STATUS
);
515 if (status
!= CFG_RD_CRS
)
519 data
= readl(cfg_data_p
);
522 if (data
== CFG_RETRY_STATUS
)
528 static void iproc_pcie_fix_cap(struct iproc_pcie
*pcie
, int where
, u32
*val
)
532 switch (where
& ~0x3) {
537 * Activate fixup for those controllers that have corrupted
538 * capability list registers
540 for (i
= 0; i
< ARRAY_SIZE(iproc_pcie_corrupt_cap_did
); i
++)
541 if (dev_id
== iproc_pcie_corrupt_cap_did
[i
])
542 pcie
->fix_paxc_cap
= true;
545 case IPROC_PCI_PM_CAP
:
546 if (pcie
->fix_paxc_cap
) {
547 /* advertise PM, force next capability to PCIe */
548 *val
&= ~IPROC_PCI_PM_CAP_MASK
;
549 *val
|= IPROC_PCI_EXP_CAP
<< 8 | PCI_CAP_ID_PM
;
553 case IPROC_PCI_EXP_CAP
:
554 if (pcie
->fix_paxc_cap
) {
555 /* advertise root port, version 2, terminate here */
556 *val
= (PCI_EXP_TYPE_ROOT_PORT
<< 4 | 2) << 16 |
561 case IPROC_PCI_EXP_CAP
+ PCI_EXP_RTCTL
:
562 /* Don't advertise CRS SV support */
563 *val
&= ~(PCI_EXP_RTCAP_CRSVIS
<< 16);
571 static int iproc_pcie_config_read(struct pci_bus
*bus
, unsigned int devfn
,
572 int where
, int size
, u32
*val
)
574 struct iproc_pcie
*pcie
= iproc_data(bus
);
575 unsigned int busno
= bus
->number
;
576 void __iomem
*cfg_data_p
;
580 /* root complex access */
582 ret
= pci_generic_config_read32(bus
, devfn
, where
, size
, val
);
583 if (ret
== PCIBIOS_SUCCESSFUL
)
584 iproc_pcie_fix_cap(pcie
, where
, val
);
589 cfg_data_p
= iproc_pcie_map_ep_cfg_reg(pcie
, busno
, devfn
, where
);
592 return PCIBIOS_DEVICE_NOT_FOUND
;
594 data
= iproc_pcie_cfg_retry(pcie
, cfg_data_p
);
598 *val
= (data
>> (8 * (where
& 3))) & ((1 << (size
* 8)) - 1);
601 * For PAXC and PAXCv2, the total number of PFs that one can enumerate
602 * depends on the firmware configuration. Unfortunately, due to an ASIC
603 * bug, unconfigured PFs cannot be properly hidden from the root
604 * complex. As a result, write access to these PFs will cause bus lock
605 * up on the embedded processor
607 * Since all unconfigured PFs are left with an incorrect, staled device
608 * ID of 0x168e (PCI_DEVICE_ID_NX2_57810), we try to catch those access
609 * early here and reject them all
611 #define DEVICE_ID_MASK 0xffff0000
612 #define DEVICE_ID_SHIFT 16
613 if (pcie
->rej_unconfig_pf
&&
614 (where
& CFG_ADDR_REG_NUM_MASK
) == PCI_VENDOR_ID
)
615 if ((*val
& DEVICE_ID_MASK
) ==
616 (PCI_DEVICE_ID_NX2_57810
<< DEVICE_ID_SHIFT
))
617 return PCIBIOS_FUNC_NOT_SUPPORTED
;
619 return PCIBIOS_SUCCESSFUL
;
623 * Note access to the configuration registers are protected at the higher layer
624 * by 'pci_lock' in drivers/pci/access.c
626 static void __iomem
*iproc_pcie_map_cfg_bus(struct iproc_pcie
*pcie
,
627 int busno
, unsigned int devfn
,
632 /* root complex access */
634 if (PCIE_ECAM_DEVFN(devfn
) > 0)
637 iproc_pcie_write_reg(pcie
, IPROC_PCIE_CFG_IND_ADDR
,
638 where
& CFG_IND_ADDR_MASK
);
639 offset
= iproc_pcie_reg_offset(pcie
, IPROC_PCIE_CFG_IND_DATA
);
640 if (iproc_pcie_reg_is_invalid(offset
))
643 return (pcie
->base
+ offset
);
646 return iproc_pcie_map_ep_cfg_reg(pcie
, busno
, devfn
, where
);
649 static void __iomem
*iproc_pcie_bus_map_cfg_bus(struct pci_bus
*bus
,
653 return iproc_pcie_map_cfg_bus(iproc_data(bus
), bus
->number
, devfn
,
657 static int iproc_pci_raw_config_read32(struct iproc_pcie
*pcie
,
658 unsigned int devfn
, int where
,
663 addr
= iproc_pcie_map_cfg_bus(pcie
, 0, devfn
, where
& ~0x3);
666 return PCIBIOS_DEVICE_NOT_FOUND
;
672 *val
= (*val
>> (8 * (where
& 3))) & ((1 << (size
* 8)) - 1);
674 return PCIBIOS_SUCCESSFUL
;
677 static int iproc_pci_raw_config_write32(struct iproc_pcie
*pcie
,
678 unsigned int devfn
, int where
,
684 addr
= iproc_pcie_map_cfg_bus(pcie
, 0, devfn
, where
& ~0x3);
686 return PCIBIOS_DEVICE_NOT_FOUND
;
690 return PCIBIOS_SUCCESSFUL
;
693 mask
= ~(((1 << (size
* 8)) - 1) << ((where
& 0x3) * 8));
694 tmp
= readl(addr
) & mask
;
695 tmp
|= val
<< ((where
& 0x3) * 8);
698 return PCIBIOS_SUCCESSFUL
;
701 static int iproc_pcie_config_read32(struct pci_bus
*bus
, unsigned int devfn
,
702 int where
, int size
, u32
*val
)
705 struct iproc_pcie
*pcie
= iproc_data(bus
);
707 iproc_pcie_apb_err_disable(bus
, true);
708 if (pcie
->iproc_cfg_read
)
709 ret
= iproc_pcie_config_read(bus
, devfn
, where
, size
, val
);
711 ret
= pci_generic_config_read32(bus
, devfn
, where
, size
, val
);
712 iproc_pcie_apb_err_disable(bus
, false);
717 static int iproc_pcie_config_write32(struct pci_bus
*bus
, unsigned int devfn
,
718 int where
, int size
, u32 val
)
722 iproc_pcie_apb_err_disable(bus
, true);
723 ret
= pci_generic_config_write32(bus
, devfn
, where
, size
, val
);
724 iproc_pcie_apb_err_disable(bus
, false);
729 static struct pci_ops iproc_pcie_ops
= {
730 .map_bus
= iproc_pcie_bus_map_cfg_bus
,
731 .read
= iproc_pcie_config_read32
,
732 .write
= iproc_pcie_config_write32
,
735 static void iproc_pcie_perst_ctrl(struct iproc_pcie
*pcie
, bool assert)
740 * PAXC and the internal emulated endpoint device downstream should not
741 * be reset. If firmware has been loaded on the endpoint device at an
742 * earlier boot stage, reset here causes issues.
744 if (pcie
->ep_is_internal
)
748 val
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_CLK_CTRL
);
749 val
&= ~EP_PERST_SOURCE_SELECT
& ~EP_MODE_SURVIVE_PERST
&
751 iproc_pcie_write_reg(pcie
, IPROC_PCIE_CLK_CTRL
, val
);
754 val
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_CLK_CTRL
);
755 val
|= RC_PCIE_RST_OUTPUT
;
756 iproc_pcie_write_reg(pcie
, IPROC_PCIE_CLK_CTRL
, val
);
761 int iproc_pcie_shutdown(struct iproc_pcie
*pcie
)
763 iproc_pcie_perst_ctrl(pcie
, true);
768 EXPORT_SYMBOL_GPL(iproc_pcie_shutdown
);
770 static int iproc_pcie_check_link(struct iproc_pcie
*pcie
)
772 struct device
*dev
= pcie
->dev
;
773 u32 hdr_type
, link_ctrl
, link_status
, class, val
;
774 bool link_is_active
= false;
777 * PAXC connects to emulated endpoint devices directly and does not
778 * have a Serdes. Therefore skip the link detection logic here.
780 if (pcie
->ep_is_internal
)
783 val
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_LINK_STATUS
);
784 if (!(val
& PCIE_PHYLINKUP
) || !(val
& PCIE_DL_ACTIVE
)) {
785 dev_err(dev
, "PHY or data link is INACTIVE!\n");
789 /* make sure we are not in EP mode */
790 iproc_pci_raw_config_read32(pcie
, 0, PCI_HEADER_TYPE
, 1, &hdr_type
);
791 if ((hdr_type
& 0x7f) != PCI_HEADER_TYPE_BRIDGE
) {
792 dev_err(dev
, "in EP mode, hdr=%#02x\n", hdr_type
);
796 /* force class to PCI_CLASS_BRIDGE_PCI (0x0604) */
797 #define PCI_BRIDGE_CTRL_REG_OFFSET 0x43c
798 #define PCI_CLASS_BRIDGE_MASK 0xffff00
799 #define PCI_CLASS_BRIDGE_SHIFT 8
800 iproc_pci_raw_config_read32(pcie
, 0, PCI_BRIDGE_CTRL_REG_OFFSET
,
802 class &= ~PCI_CLASS_BRIDGE_MASK
;
803 class |= (PCI_CLASS_BRIDGE_PCI
<< PCI_CLASS_BRIDGE_SHIFT
);
804 iproc_pci_raw_config_write32(pcie
, 0, PCI_BRIDGE_CTRL_REG_OFFSET
,
807 /* check link status to see if link is active */
808 iproc_pci_raw_config_read32(pcie
, 0, IPROC_PCI_EXP_CAP
+ PCI_EXP_LNKSTA
,
810 if (link_status
& PCI_EXP_LNKSTA_NLW
)
811 link_is_active
= true;
813 if (!link_is_active
) {
814 /* try GEN 1 link speed */
815 #define PCI_TARGET_LINK_SPEED_MASK 0xf
816 #define PCI_TARGET_LINK_SPEED_GEN2 0x2
817 #define PCI_TARGET_LINK_SPEED_GEN1 0x1
818 iproc_pci_raw_config_read32(pcie
, 0,
819 IPROC_PCI_EXP_CAP
+ PCI_EXP_LNKCTL2
,
821 if ((link_ctrl
& PCI_TARGET_LINK_SPEED_MASK
) ==
822 PCI_TARGET_LINK_SPEED_GEN2
) {
823 link_ctrl
&= ~PCI_TARGET_LINK_SPEED_MASK
;
824 link_ctrl
|= PCI_TARGET_LINK_SPEED_GEN1
;
825 iproc_pci_raw_config_write32(pcie
, 0,
826 IPROC_PCI_EXP_CAP
+ PCI_EXP_LNKCTL2
,
830 iproc_pci_raw_config_read32(pcie
, 0,
831 IPROC_PCI_EXP_CAP
+ PCI_EXP_LNKSTA
,
833 if (link_status
& PCI_EXP_LNKSTA_NLW
)
834 link_is_active
= true;
838 dev_info(dev
, "link: %s\n", link_is_active
? "UP" : "DOWN");
840 return link_is_active
? 0 : -ENODEV
;
843 static void iproc_pcie_enable(struct iproc_pcie
*pcie
)
845 iproc_pcie_write_reg(pcie
, IPROC_PCIE_INTX_EN
, SYS_RC_INTX_MASK
);
848 static inline bool iproc_pcie_ob_is_valid(struct iproc_pcie
*pcie
,
853 val
= iproc_pcie_read_reg(pcie
, MAP_REG(IPROC_PCIE_OARR0
, window_idx
));
855 return !!(val
& OARR_VALID
);
858 static inline int iproc_pcie_ob_write(struct iproc_pcie
*pcie
, int window_idx
,
859 int size_idx
, u64 axi_addr
, u64 pci_addr
)
861 struct device
*dev
= pcie
->dev
;
862 u16 oarr_offset
, omap_offset
;
865 * Derive the OARR/OMAP offset from the first pair (OARR0/OMAP0) based
868 oarr_offset
= iproc_pcie_reg_offset(pcie
, MAP_REG(IPROC_PCIE_OARR0
,
870 omap_offset
= iproc_pcie_reg_offset(pcie
, MAP_REG(IPROC_PCIE_OMAP0
,
872 if (iproc_pcie_reg_is_invalid(oarr_offset
) ||
873 iproc_pcie_reg_is_invalid(omap_offset
))
877 * Program the OARR registers. The upper 32-bit OARR register is
878 * always right after the lower 32-bit OARR register.
880 writel(lower_32_bits(axi_addr
) | (size_idx
<< OARR_SIZE_CFG_SHIFT
) |
881 OARR_VALID
, pcie
->base
+ oarr_offset
);
882 writel(upper_32_bits(axi_addr
), pcie
->base
+ oarr_offset
+ 4);
884 /* now program the OMAP registers */
885 writel(lower_32_bits(pci_addr
), pcie
->base
+ omap_offset
);
886 writel(upper_32_bits(pci_addr
), pcie
->base
+ omap_offset
+ 4);
888 dev_dbg(dev
, "ob window [%d]: offset 0x%x axi %pap pci %pap\n",
889 window_idx
, oarr_offset
, &axi_addr
, &pci_addr
);
890 dev_dbg(dev
, "oarr lo 0x%x oarr hi 0x%x\n",
891 readl(pcie
->base
+ oarr_offset
),
892 readl(pcie
->base
+ oarr_offset
+ 4));
893 dev_dbg(dev
, "omap lo 0x%x omap hi 0x%x\n",
894 readl(pcie
->base
+ omap_offset
),
895 readl(pcie
->base
+ omap_offset
+ 4));
901 * Some iProc SoCs require the SW to configure the outbound address mapping
903 * Outbound address translation:
905 * iproc_pcie_address = axi_address - axi_offset
906 * OARR = iproc_pcie_address
909 * axi_addr -> iproc_pcie_address -> OARR -> OMAP -> pci_address
911 static int iproc_pcie_setup_ob(struct iproc_pcie
*pcie
, u64 axi_addr
,
912 u64 pci_addr
, resource_size_t size
)
914 struct iproc_pcie_ob
*ob
= &pcie
->ob
;
915 struct device
*dev
= pcie
->dev
;
916 int ret
= -EINVAL
, window_idx
, size_idx
;
918 if (axi_addr
< ob
->axi_offset
) {
919 dev_err(dev
, "axi address %pap less than offset %pap\n",
920 &axi_addr
, &ob
->axi_offset
);
925 * Translate the AXI address to the internal address used by the iProc
926 * PCIe core before programming the OARR
928 axi_addr
-= ob
->axi_offset
;
930 /* iterate through all OARR/OMAP mapping windows */
931 for (window_idx
= ob
->nr_windows
- 1; window_idx
>= 0; window_idx
--) {
932 const struct iproc_pcie_ob_map
*ob_map
=
933 &pcie
->ob_map
[window_idx
];
936 * If current outbound window is already in use, move on to the
939 if (iproc_pcie_ob_is_valid(pcie
, window_idx
))
943 * Iterate through all supported window sizes within the
944 * OARR/OMAP pair to find a match. Go through the window sizes
945 * in a descending order.
947 for (size_idx
= ob_map
->nr_sizes
- 1; size_idx
>= 0;
949 resource_size_t window_size
=
950 ob_map
->window_sizes
[size_idx
] * SZ_1M
;
953 * Keep iterating until we reach the last window and
954 * with the minimal window size at index zero. In this
955 * case, we take a compromise by mapping it using the
956 * minimum window size that can be supported
958 if (size
< window_size
) {
959 if (size_idx
> 0 || window_idx
> 0)
963 * For the corner case of reaching the minimal
964 * window size that can be supported on the
967 axi_addr
= ALIGN_DOWN(axi_addr
, window_size
);
968 pci_addr
= ALIGN_DOWN(pci_addr
, window_size
);
972 if (!IS_ALIGNED(axi_addr
, window_size
) ||
973 !IS_ALIGNED(pci_addr
, window_size
)) {
975 "axi %pap or pci %pap not aligned\n",
976 &axi_addr
, &pci_addr
);
981 * Match found! Program both OARR and OMAP and mark
982 * them as a valid entry.
984 ret
= iproc_pcie_ob_write(pcie
, window_idx
, size_idx
,
994 * If we are here, we are done with the current window,
995 * but not yet finished all mappings. Need to move on
996 * to the next window.
998 axi_addr
+= window_size
;
999 pci_addr
+= window_size
;
1005 dev_err(dev
, "unable to configure outbound mapping\n");
1007 "axi %pap, axi offset %pap, pci %pap, res size %pap\n",
1008 &axi_addr
, &ob
->axi_offset
, &pci_addr
, &size
);
1013 static int iproc_pcie_map_ranges(struct iproc_pcie
*pcie
,
1014 struct list_head
*resources
)
1016 struct device
*dev
= pcie
->dev
;
1017 struct resource_entry
*window
;
1020 resource_list_for_each_entry(window
, resources
) {
1021 struct resource
*res
= window
->res
;
1022 u64 res_type
= resource_type(res
);
1026 case IORESOURCE_BUS
:
1028 case IORESOURCE_MEM
:
1029 ret
= iproc_pcie_setup_ob(pcie
, res
->start
,
1030 res
->start
- window
->offset
,
1031 resource_size(res
));
1036 dev_err(dev
, "invalid resource %pR\n", res
);
1044 static inline bool iproc_pcie_ib_is_in_use(struct iproc_pcie
*pcie
,
1047 const struct iproc_pcie_ib_map
*ib_map
= &pcie
->ib_map
[region_idx
];
1050 val
= iproc_pcie_read_reg(pcie
, MAP_REG(IPROC_PCIE_IARR0
, region_idx
));
1052 return !!(val
& (BIT(ib_map
->nr_sizes
) - 1));
1055 static inline bool iproc_pcie_ib_check_type(const struct iproc_pcie_ib_map
*ib_map
,
1056 enum iproc_pcie_ib_map_type type
)
1058 return !!(ib_map
->type
== type
);
1061 static int iproc_pcie_ib_write(struct iproc_pcie
*pcie
, int region_idx
,
1062 int size_idx
, int nr_windows
, u64 axi_addr
,
1063 u64 pci_addr
, resource_size_t size
)
1065 struct device
*dev
= pcie
->dev
;
1066 const struct iproc_pcie_ib_map
*ib_map
= &pcie
->ib_map
[region_idx
];
1067 u16 iarr_offset
, imap_offset
;
1071 iarr_offset
= iproc_pcie_reg_offset(pcie
,
1072 MAP_REG(IPROC_PCIE_IARR0
, region_idx
));
1073 imap_offset
= iproc_pcie_reg_offset(pcie
,
1074 MAP_REG(IPROC_PCIE_IMAP0
, region_idx
));
1075 if (iproc_pcie_reg_is_invalid(iarr_offset
) ||
1076 iproc_pcie_reg_is_invalid(imap_offset
))
1079 dev_dbg(dev
, "ib region [%d]: offset 0x%x axi %pap pci %pap\n",
1080 region_idx
, iarr_offset
, &axi_addr
, &pci_addr
);
1083 * Program the IARR registers. The upper 32-bit IARR register is
1084 * always right after the lower 32-bit IARR register.
1086 writel(lower_32_bits(pci_addr
) | BIT(size_idx
),
1087 pcie
->base
+ iarr_offset
);
1088 writel(upper_32_bits(pci_addr
), pcie
->base
+ iarr_offset
+ 4);
1090 dev_dbg(dev
, "iarr lo 0x%x iarr hi 0x%x\n",
1091 readl(pcie
->base
+ iarr_offset
),
1092 readl(pcie
->base
+ iarr_offset
+ 4));
1095 * Now program the IMAP registers. Each IARR region may have one or
1096 * more IMAP windows.
1098 size
>>= ilog2(nr_windows
);
1099 for (window_idx
= 0; window_idx
< nr_windows
; window_idx
++) {
1100 val
= readl(pcie
->base
+ imap_offset
);
1101 val
|= lower_32_bits(axi_addr
) | IMAP_VALID
;
1102 writel(val
, pcie
->base
+ imap_offset
);
1103 writel(upper_32_bits(axi_addr
),
1104 pcie
->base
+ imap_offset
+ ib_map
->imap_addr_offset
);
1106 dev_dbg(dev
, "imap window [%d] lo 0x%x hi 0x%x\n",
1107 window_idx
, readl(pcie
->base
+ imap_offset
),
1108 readl(pcie
->base
+ imap_offset
+
1109 ib_map
->imap_addr_offset
));
1111 imap_offset
+= ib_map
->imap_window_offset
;
1118 static int iproc_pcie_setup_ib(struct iproc_pcie
*pcie
,
1119 struct resource_entry
*entry
,
1120 enum iproc_pcie_ib_map_type type
)
1122 struct device
*dev
= pcie
->dev
;
1123 struct iproc_pcie_ib
*ib
= &pcie
->ib
;
1125 unsigned int region_idx
, size_idx
;
1126 u64 axi_addr
= entry
->res
->start
;
1127 u64 pci_addr
= entry
->res
->start
- entry
->offset
;
1128 resource_size_t size
= resource_size(entry
->res
);
1130 /* iterate through all IARR mapping regions */
1131 for (region_idx
= 0; region_idx
< ib
->nr_regions
; region_idx
++) {
1132 const struct iproc_pcie_ib_map
*ib_map
=
1133 &pcie
->ib_map
[region_idx
];
1136 * If current inbound region is already in use or not a
1137 * compatible type, move on to the next.
1139 if (iproc_pcie_ib_is_in_use(pcie
, region_idx
) ||
1140 !iproc_pcie_ib_check_type(ib_map
, type
))
1143 /* iterate through all supported region sizes to find a match */
1144 for (size_idx
= 0; size_idx
< ib_map
->nr_sizes
; size_idx
++) {
1145 resource_size_t region_size
=
1146 ib_map
->region_sizes
[size_idx
] * ib_map
->size_unit
;
1148 if (size
!= region_size
)
1151 if (!IS_ALIGNED(axi_addr
, region_size
) ||
1152 !IS_ALIGNED(pci_addr
, region_size
)) {
1154 "axi %pap or pci %pap not aligned\n",
1155 &axi_addr
, &pci_addr
);
1159 /* Match found! Program IARR and all IMAP windows. */
1160 ret
= iproc_pcie_ib_write(pcie
, region_idx
, size_idx
,
1161 ib_map
->nr_windows
, axi_addr
,
1173 dev_err(dev
, "unable to configure inbound mapping\n");
1174 dev_err(dev
, "axi %pap, pci %pap, res size %pap\n",
1175 &axi_addr
, &pci_addr
, &size
);
1180 static int iproc_pcie_map_dma_ranges(struct iproc_pcie
*pcie
)
1182 struct pci_host_bridge
*host
= pci_host_bridge_from_priv(pcie
);
1183 struct resource_entry
*entry
;
1186 resource_list_for_each_entry(entry
, &host
->dma_ranges
) {
1187 /* Each range entry corresponds to an inbound mapping region */
1188 ret
= iproc_pcie_setup_ib(pcie
, entry
, IPROC_PCIE_IB_MAP_MEM
);
1196 static void iproc_pcie_invalidate_mapping(struct iproc_pcie
*pcie
)
1198 struct iproc_pcie_ib
*ib
= &pcie
->ib
;
1199 struct iproc_pcie_ob
*ob
= &pcie
->ob
;
1202 if (pcie
->ep_is_internal
)
1205 if (pcie
->need_ob_cfg
) {
1206 /* iterate through all OARR mapping regions */
1207 for (idx
= ob
->nr_windows
- 1; idx
>= 0; idx
--) {
1208 iproc_pcie_write_reg(pcie
,
1209 MAP_REG(IPROC_PCIE_OARR0
, idx
), 0);
1213 if (pcie
->need_ib_cfg
) {
1214 /* iterate through all IARR mapping regions */
1215 for (idx
= 0; idx
< ib
->nr_regions
; idx
++) {
1216 iproc_pcie_write_reg(pcie
,
1217 MAP_REG(IPROC_PCIE_IARR0
, idx
), 0);
1222 static int iproce_pcie_get_msi(struct iproc_pcie
*pcie
,
1223 struct device_node
*msi_node
,
1226 struct device
*dev
= pcie
->dev
;
1228 struct resource res
;
1231 * Check if 'msi-map' points to ARM GICv3 ITS, which is the only
1232 * supported external MSI controller that requires steering.
1234 if (!of_device_is_compatible(msi_node
, "arm,gic-v3-its")) {
1235 dev_err(dev
, "unable to find compatible MSI controller\n");
1239 /* derive GITS_TRANSLATER address from GICv3 */
1240 ret
= of_address_to_resource(msi_node
, 0, &res
);
1242 dev_err(dev
, "unable to obtain MSI controller resources\n");
1246 *msi_addr
= res
.start
+ GITS_TRANSLATER
;
1250 static int iproc_pcie_paxb_v2_msi_steer(struct iproc_pcie
*pcie
, u64 msi_addr
)
1253 struct resource_entry entry
;
1255 memset(&entry
, 0, sizeof(entry
));
1256 entry
.res
= &entry
.__res
;
1258 msi_addr
&= ~(SZ_32K
- 1);
1259 entry
.res
->start
= msi_addr
;
1260 entry
.res
->end
= msi_addr
+ SZ_32K
- 1;
1262 ret
= iproc_pcie_setup_ib(pcie
, &entry
, IPROC_PCIE_IB_MAP_IO
);
1266 static void iproc_pcie_paxc_v2_msi_steer(struct iproc_pcie
*pcie
, u64 msi_addr
,
1273 * Disable PAXC MSI steering. All write transfers will be
1274 * treated as non-MSI transfers
1276 val
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_MSI_EN_CFG
);
1277 val
&= ~MSI_ENABLE_CFG
;
1278 iproc_pcie_write_reg(pcie
, IPROC_PCIE_MSI_EN_CFG
, val
);
1283 * Program bits [43:13] of address of GITS_TRANSLATER register into
1284 * bits [30:0] of the MSI base address register. In fact, in all iProc
1285 * based SoCs, all I/O register bases are well below the 32-bit
1286 * boundary, so we can safely assume bits [43:32] are always zeros.
1288 iproc_pcie_write_reg(pcie
, IPROC_PCIE_MSI_BASE_ADDR
,
1289 (u32
)(msi_addr
>> 13));
1291 /* use a default 8K window size */
1292 iproc_pcie_write_reg(pcie
, IPROC_PCIE_MSI_WINDOW_SIZE
, 0);
1294 /* steering MSI to GICv3 ITS */
1295 val
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_MSI_GIC_MODE
);
1297 iproc_pcie_write_reg(pcie
, IPROC_PCIE_MSI_GIC_MODE
, val
);
1300 * Program bits [43:2] of address of GITS_TRANSLATER register into the
1301 * iProc MSI address registers.
1304 iproc_pcie_write_reg(pcie
, IPROC_PCIE_MSI_ADDR_HI
,
1305 upper_32_bits(msi_addr
));
1306 iproc_pcie_write_reg(pcie
, IPROC_PCIE_MSI_ADDR_LO
,
1307 lower_32_bits(msi_addr
));
1310 val
= iproc_pcie_read_reg(pcie
, IPROC_PCIE_MSI_EN_CFG
);
1311 val
|= MSI_ENABLE_CFG
;
1312 iproc_pcie_write_reg(pcie
, IPROC_PCIE_MSI_EN_CFG
, val
);
1315 static int iproc_pcie_msi_steer(struct iproc_pcie
*pcie
,
1316 struct device_node
*msi_node
)
1318 struct device
*dev
= pcie
->dev
;
1322 ret
= iproce_pcie_get_msi(pcie
, msi_node
, &msi_addr
);
1324 dev_err(dev
, "msi steering failed\n");
1328 switch (pcie
->type
) {
1329 case IPROC_PCIE_PAXB_V2
:
1330 ret
= iproc_pcie_paxb_v2_msi_steer(pcie
, msi_addr
);
1334 case IPROC_PCIE_PAXC_V2
:
1335 iproc_pcie_paxc_v2_msi_steer(pcie
, msi_addr
, true);
1344 static int iproc_pcie_msi_enable(struct iproc_pcie
*pcie
)
1346 struct device_node
*msi_node
;
1350 * Either the "msi-parent" or the "msi-map" phandle needs to exist
1351 * for us to obtain the MSI node.
1354 msi_node
= of_parse_phandle(pcie
->dev
->of_node
, "msi-parent", 0);
1356 const __be32
*msi_map
= NULL
;
1360 msi_map
= of_get_property(pcie
->dev
->of_node
, "msi-map", &len
);
1364 phandle
= be32_to_cpup(msi_map
+ 1);
1365 msi_node
= of_find_node_by_phandle(phandle
);
1371 * Certain revisions of the iProc PCIe controller require additional
1372 * configurations to steer the MSI writes towards an external MSI
1375 if (pcie
->need_msi_steer
) {
1376 ret
= iproc_pcie_msi_steer(pcie
, msi_node
);
1382 * If another MSI controller is being used, the call below should fail
1385 ret
= iproc_msi_init(pcie
, msi_node
);
1388 of_node_put(msi_node
);
1392 static void iproc_pcie_msi_disable(struct iproc_pcie
*pcie
)
1394 iproc_msi_exit(pcie
);
1397 static int iproc_pcie_rev_init(struct iproc_pcie
*pcie
)
1399 struct device
*dev
= pcie
->dev
;
1400 unsigned int reg_idx
;
1403 switch (pcie
->type
) {
1404 case IPROC_PCIE_PAXB_BCMA
:
1405 regs
= iproc_pcie_reg_paxb_bcma
;
1407 case IPROC_PCIE_PAXB
:
1408 regs
= iproc_pcie_reg_paxb
;
1409 pcie
->has_apb_err_disable
= true;
1410 if (pcie
->need_ob_cfg
) {
1411 pcie
->ob_map
= paxb_ob_map
;
1412 pcie
->ob
.nr_windows
= ARRAY_SIZE(paxb_ob_map
);
1415 case IPROC_PCIE_PAXB_V2
:
1416 regs
= iproc_pcie_reg_paxb_v2
;
1417 pcie
->iproc_cfg_read
= true;
1418 pcie
->has_apb_err_disable
= true;
1419 if (pcie
->need_ob_cfg
) {
1420 pcie
->ob_map
= paxb_v2_ob_map
;
1421 pcie
->ob
.nr_windows
= ARRAY_SIZE(paxb_v2_ob_map
);
1423 pcie
->ib
.nr_regions
= ARRAY_SIZE(paxb_v2_ib_map
);
1424 pcie
->ib_map
= paxb_v2_ib_map
;
1425 pcie
->need_msi_steer
= true;
1426 dev_warn(dev
, "reads of config registers that contain %#x return incorrect data\n",
1429 case IPROC_PCIE_PAXC
:
1430 regs
= iproc_pcie_reg_paxc
;
1431 pcie
->ep_is_internal
= true;
1432 pcie
->iproc_cfg_read
= true;
1433 pcie
->rej_unconfig_pf
= true;
1435 case IPROC_PCIE_PAXC_V2
:
1436 regs
= iproc_pcie_reg_paxc_v2
;
1437 pcie
->ep_is_internal
= true;
1438 pcie
->iproc_cfg_read
= true;
1439 pcie
->rej_unconfig_pf
= true;
1440 pcie
->need_msi_steer
= true;
1443 dev_err(dev
, "incompatible iProc PCIe interface\n");
1447 pcie
->reg_offsets
= devm_kcalloc(dev
, IPROC_PCIE_MAX_NUM_REG
,
1448 sizeof(*pcie
->reg_offsets
),
1450 if (!pcie
->reg_offsets
)
1453 /* go through the register table and populate all valid registers */
1454 pcie
->reg_offsets
[0] = (pcie
->type
== IPROC_PCIE_PAXC_V2
) ?
1455 IPROC_PCIE_REG_INVALID
: regs
[0];
1456 for (reg_idx
= 1; reg_idx
< IPROC_PCIE_MAX_NUM_REG
; reg_idx
++)
1457 pcie
->reg_offsets
[reg_idx
] = regs
[reg_idx
] ?
1458 regs
[reg_idx
] : IPROC_PCIE_REG_INVALID
;
1463 int iproc_pcie_setup(struct iproc_pcie
*pcie
, struct list_head
*res
)
1467 struct pci_dev
*pdev
;
1468 struct pci_host_bridge
*host
= pci_host_bridge_from_priv(pcie
);
1472 ret
= iproc_pcie_rev_init(pcie
);
1474 dev_err(dev
, "unable to initialize controller parameters\n");
1478 ret
= phy_init(pcie
->phy
);
1480 dev_err(dev
, "unable to initialize PCIe PHY\n");
1484 ret
= phy_power_on(pcie
->phy
);
1486 dev_err(dev
, "unable to power on PCIe PHY\n");
1490 iproc_pcie_perst_ctrl(pcie
, true);
1491 iproc_pcie_perst_ctrl(pcie
, false);
1493 iproc_pcie_invalidate_mapping(pcie
);
1495 if (pcie
->need_ob_cfg
) {
1496 ret
= iproc_pcie_map_ranges(pcie
, res
);
1498 dev_err(dev
, "map failed\n");
1499 goto err_power_off_phy
;
1503 if (pcie
->need_ib_cfg
) {
1504 ret
= iproc_pcie_map_dma_ranges(pcie
);
1505 if (ret
&& ret
!= -ENOENT
)
1506 goto err_power_off_phy
;
1509 ret
= iproc_pcie_check_link(pcie
);
1511 dev_err(dev
, "no PCIe EP device detected\n");
1512 goto err_power_off_phy
;
1515 iproc_pcie_enable(pcie
);
1517 if (IS_ENABLED(CONFIG_PCI_MSI
))
1518 if (iproc_pcie_msi_enable(pcie
))
1519 dev_info(dev
, "not using iProc MSI\n");
1521 host
->ops
= &iproc_pcie_ops
;
1522 host
->sysdata
= pcie
;
1523 host
->map_irq
= pcie
->map_irq
;
1525 ret
= pci_host_probe(host
);
1527 dev_err(dev
, "failed to scan host: %d\n", ret
);
1528 goto err_power_off_phy
;
1531 for_each_pci_bridge(pdev
, host
->bus
) {
1532 if (pci_pcie_type(pdev
) == PCI_EXP_TYPE_ROOT_PORT
)
1533 pcie_print_link_status(pdev
);
1539 phy_power_off(pcie
->phy
);
1541 phy_exit(pcie
->phy
);
1544 EXPORT_SYMBOL(iproc_pcie_setup
);
1546 int iproc_pcie_remove(struct iproc_pcie
*pcie
)
1548 struct pci_host_bridge
*host
= pci_host_bridge_from_priv(pcie
);
1550 pci_stop_root_bus(host
->bus
);
1551 pci_remove_root_bus(host
->bus
);
1553 iproc_pcie_msi_disable(pcie
);
1555 phy_power_off(pcie
->phy
);
1556 phy_exit(pcie
->phy
);
1560 EXPORT_SYMBOL(iproc_pcie_remove
);
1563 * The MSI parsing logic in certain revisions of Broadcom PAXC based root
1564 * complex does not work and needs to be disabled
1566 static void quirk_paxc_disable_msi_parsing(struct pci_dev
*pdev
)
1568 struct iproc_pcie
*pcie
= iproc_data(pdev
->bus
);
1570 if (pdev
->hdr_type
== PCI_HEADER_TYPE_BRIDGE
)
1571 iproc_pcie_paxc_v2_msi_steer(pcie
, 0, false);
1573 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_BROADCOM
, 0x16f0,
1574 quirk_paxc_disable_msi_parsing
);
1575 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_BROADCOM
, 0xd802,
1576 quirk_paxc_disable_msi_parsing
);
1577 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_BROADCOM
, 0xd804,
1578 quirk_paxc_disable_msi_parsing
);
1580 static void quirk_paxc_bridge(struct pci_dev
*pdev
)
1583 * The PCI config space is shared with the PAXC root port and the first
1584 * Ethernet device. So, we need to workaround this by telling the PCI
1585 * code that the bridge is not an Ethernet device.
1587 if (pdev
->hdr_type
== PCI_HEADER_TYPE_BRIDGE
)
1588 pdev
->class = PCI_CLASS_BRIDGE_PCI
<< 8;
1591 * MPSS is not being set properly (as it is currently 0). This is
1592 * because that area of the PCI config space is hard coded to zero, and
1593 * is not modifiable by firmware. Set this to 2 (e.g., 512 byte MPS)
1594 * so that the MPS can be set to the real max value.
1596 pdev
->pcie_mpss
= 2;
1598 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_BROADCOM
, 0x16cd, quirk_paxc_bridge
);
1599 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_BROADCOM
, 0x16f0, quirk_paxc_bridge
);
1600 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_BROADCOM
, 0xd750, quirk_paxc_bridge
);
1601 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_BROADCOM
, 0xd802, quirk_paxc_bridge
);
1602 DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_BROADCOM
, 0xd804, quirk_paxc_bridge
);
1604 MODULE_AUTHOR("Ray Jui <rjui@broadcom.com>");
1605 MODULE_DESCRIPTION("Broadcom iPROC PCIe common driver");
1606 MODULE_LICENSE("GPL v2");