1 // SPDX-License-Identifier: GPL-2.0+
3 * PCIe host controller driver for NWL PCIe Bridge
4 * Based on pcie-xilinx.c, pci-tegra.c
6 * (C) Copyright 2014 - 2015, Xilinx, Inc.
9 #include <linux/delay.h>
10 #include <linux/interrupt.h>
11 #include <linux/irq.h>
12 #include <linux/irqdomain.h>
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/msi.h>
16 #include <linux/of_address.h>
17 #include <linux/of_pci.h>
18 #include <linux/of_platform.h>
19 #include <linux/of_irq.h>
20 #include <linux/pci.h>
21 #include <linux/platform_device.h>
22 #include <linux/irqchip/chained_irq.h>
26 /* Bridge core config registers */
27 #define BRCFG_PCIE_RX0 0x00000000
28 #define BRCFG_INTERRUPT 0x00000010
29 #define BRCFG_PCIE_RX_MSG_FILTER 0x00000020
31 /* Egress - Bridge translation registers */
32 #define E_BREG_CAPABILITIES 0x00000200
33 #define E_BREG_CONTROL 0x00000208
34 #define E_BREG_BASE_LO 0x00000210
35 #define E_BREG_BASE_HI 0x00000214
36 #define E_ECAM_CAPABILITIES 0x00000220
37 #define E_ECAM_CONTROL 0x00000228
38 #define E_ECAM_BASE_LO 0x00000230
39 #define E_ECAM_BASE_HI 0x00000234
41 /* Ingress - address translations */
42 #define I_MSII_CAPABILITIES 0x00000300
43 #define I_MSII_CONTROL 0x00000308
44 #define I_MSII_BASE_LO 0x00000310
45 #define I_MSII_BASE_HI 0x00000314
47 #define I_ISUB_CONTROL 0x000003E8
48 #define SET_ISUB_CONTROL BIT(0)
49 /* Rxed msg fifo - Interrupt status registers */
50 #define MSGF_MISC_STATUS 0x00000400
51 #define MSGF_MISC_MASK 0x00000404
52 #define MSGF_LEG_STATUS 0x00000420
53 #define MSGF_LEG_MASK 0x00000424
54 #define MSGF_MSI_STATUS_LO 0x00000440
55 #define MSGF_MSI_STATUS_HI 0x00000444
56 #define MSGF_MSI_MASK_LO 0x00000448
57 #define MSGF_MSI_MASK_HI 0x0000044C
59 /* Msg filter mask bits */
60 #define CFG_ENABLE_PM_MSG_FWD BIT(1)
61 #define CFG_ENABLE_INT_MSG_FWD BIT(2)
62 #define CFG_ENABLE_ERR_MSG_FWD BIT(3)
63 #define CFG_ENABLE_MSG_FILTER_MASK (CFG_ENABLE_PM_MSG_FWD | \
64 CFG_ENABLE_INT_MSG_FWD | \
65 CFG_ENABLE_ERR_MSG_FWD)
67 /* Misc interrupt status mask bits */
68 #define MSGF_MISC_SR_RXMSG_AVAIL BIT(0)
69 #define MSGF_MISC_SR_RXMSG_OVER BIT(1)
70 #define MSGF_MISC_SR_SLAVE_ERR BIT(4)
71 #define MSGF_MISC_SR_MASTER_ERR BIT(5)
72 #define MSGF_MISC_SR_I_ADDR_ERR BIT(6)
73 #define MSGF_MISC_SR_E_ADDR_ERR BIT(7)
74 #define MSGF_MISC_SR_FATAL_AER BIT(16)
75 #define MSGF_MISC_SR_NON_FATAL_AER BIT(17)
76 #define MSGF_MISC_SR_CORR_AER BIT(18)
77 #define MSGF_MISC_SR_UR_DETECT BIT(20)
78 #define MSGF_MISC_SR_NON_FATAL_DEV BIT(22)
79 #define MSGF_MISC_SR_FATAL_DEV BIT(23)
80 #define MSGF_MISC_SR_LINK_DOWN BIT(24)
81 #define MSGF_MSIC_SR_LINK_AUTO_BWIDTH BIT(25)
82 #define MSGF_MSIC_SR_LINK_BWIDTH BIT(26)
84 #define MSGF_MISC_SR_MASKALL (MSGF_MISC_SR_RXMSG_AVAIL | \
85 MSGF_MISC_SR_RXMSG_OVER | \
86 MSGF_MISC_SR_SLAVE_ERR | \
87 MSGF_MISC_SR_MASTER_ERR | \
88 MSGF_MISC_SR_I_ADDR_ERR | \
89 MSGF_MISC_SR_E_ADDR_ERR | \
90 MSGF_MISC_SR_FATAL_AER | \
91 MSGF_MISC_SR_NON_FATAL_AER | \
92 MSGF_MISC_SR_CORR_AER | \
93 MSGF_MISC_SR_UR_DETECT | \
94 MSGF_MISC_SR_NON_FATAL_DEV | \
95 MSGF_MISC_SR_FATAL_DEV | \
96 MSGF_MISC_SR_LINK_DOWN | \
97 MSGF_MSIC_SR_LINK_AUTO_BWIDTH | \
98 MSGF_MSIC_SR_LINK_BWIDTH)
100 /* Legacy interrupt status mask bits */
101 #define MSGF_LEG_SR_INTA BIT(0)
102 #define MSGF_LEG_SR_INTB BIT(1)
103 #define MSGF_LEG_SR_INTC BIT(2)
104 #define MSGF_LEG_SR_INTD BIT(3)
105 #define MSGF_LEG_SR_MASKALL (MSGF_LEG_SR_INTA | MSGF_LEG_SR_INTB | \
106 MSGF_LEG_SR_INTC | MSGF_LEG_SR_INTD)
108 /* MSI interrupt status mask bits */
109 #define MSGF_MSI_SR_LO_MASK GENMASK(31, 0)
110 #define MSGF_MSI_SR_HI_MASK GENMASK(31, 0)
112 #define MSII_PRESENT BIT(0)
113 #define MSII_ENABLE BIT(0)
114 #define MSII_STATUS_ENABLE BIT(15)
116 /* Bridge config interrupt mask */
117 #define BRCFG_INTERRUPT_MASK BIT(0)
118 #define BREG_PRESENT BIT(0)
119 #define BREG_ENABLE BIT(0)
120 #define BREG_ENABLE_FORCE BIT(1)
122 /* E_ECAM status mask bits */
123 #define E_ECAM_PRESENT BIT(0)
124 #define E_ECAM_CR_ENABLE BIT(0)
125 #define E_ECAM_SIZE_LOC GENMASK(20, 16)
126 #define E_ECAM_SIZE_SHIFT 16
127 #define ECAM_BUS_LOC_SHIFT 20
128 #define ECAM_DEV_LOC_SHIFT 12
129 #define NWL_ECAM_VALUE_DEFAULT 12
131 #define CFG_DMA_REG_BAR GENMASK(2, 0)
133 #define INT_PCI_MSI_NR (2 * 32)
135 /* Readin the PS_LINKUP */
136 #define PS_LINKUP_OFFSET 0x00000238
137 #define PCIE_PHY_LINKUP_BIT BIT(0)
138 #define PHY_RDY_LINKUP_BIT BIT(1)
140 /* Parameters for the waiting for link up routine */
141 #define LINK_WAIT_MAX_RETRIES 10
142 #define LINK_WAIT_USLEEP_MIN 90000
143 #define LINK_WAIT_USLEEP_MAX 100000
145 struct nwl_msi
{ /* MSI information */
146 struct irq_domain
*msi_domain
;
147 unsigned long *bitmap
;
148 struct irq_domain
*dev_domain
;
149 struct mutex lock
; /* protect bitmap variable */
156 void __iomem
*breg_base
;
157 void __iomem
*pcireg_base
;
158 void __iomem
*ecam_base
;
159 phys_addr_t phys_breg_base
; /* Physical Bridge Register Base */
160 phys_addr_t phys_pcie_reg_base
; /* Physical PCIe Controller Base */
161 phys_addr_t phys_ecam_base
; /* Physical Configuration Base */
171 struct irq_domain
*legacy_irq_domain
;
172 raw_spinlock_t leg_mask_lock
;
175 static inline u32
nwl_bridge_readl(struct nwl_pcie
*pcie
, u32 off
)
177 return readl(pcie
->breg_base
+ off
);
180 static inline void nwl_bridge_writel(struct nwl_pcie
*pcie
, u32 val
, u32 off
)
182 writel(val
, pcie
->breg_base
+ off
);
185 static bool nwl_pcie_link_up(struct nwl_pcie
*pcie
)
187 if (readl(pcie
->pcireg_base
+ PS_LINKUP_OFFSET
) & PCIE_PHY_LINKUP_BIT
)
192 static bool nwl_phy_link_up(struct nwl_pcie
*pcie
)
194 if (readl(pcie
->pcireg_base
+ PS_LINKUP_OFFSET
) & PHY_RDY_LINKUP_BIT
)
199 static int nwl_wait_for_link(struct nwl_pcie
*pcie
)
201 struct device
*dev
= pcie
->dev
;
204 /* check if the link is up or not */
205 for (retries
= 0; retries
< LINK_WAIT_MAX_RETRIES
; retries
++) {
206 if (nwl_phy_link_up(pcie
))
208 usleep_range(LINK_WAIT_USLEEP_MIN
, LINK_WAIT_USLEEP_MAX
);
211 dev_err(dev
, "PHY link never came up\n");
215 static bool nwl_pcie_valid_device(struct pci_bus
*bus
, unsigned int devfn
)
217 struct nwl_pcie
*pcie
= bus
->sysdata
;
219 /* Check link before accessing downstream ports */
220 if (bus
->number
!= pcie
->root_busno
) {
221 if (!nwl_pcie_link_up(pcie
))
225 /* Only one device down on each root port */
226 if (bus
->number
== pcie
->root_busno
&& devfn
> 0)
233 * nwl_pcie_map_bus - Get configuration base
235 * @bus: Bus structure of current bus
236 * @devfn: Device/function
237 * @where: Offset from base
239 * Return: Base address of the configuration space needed to be
242 static void __iomem
*nwl_pcie_map_bus(struct pci_bus
*bus
, unsigned int devfn
,
245 struct nwl_pcie
*pcie
= bus
->sysdata
;
248 if (!nwl_pcie_valid_device(bus
, devfn
))
251 relbus
= (bus
->number
<< ECAM_BUS_LOC_SHIFT
) |
252 (devfn
<< ECAM_DEV_LOC_SHIFT
);
254 return pcie
->ecam_base
+ relbus
+ where
;
257 /* PCIe operations */
258 static struct pci_ops nwl_pcie_ops
= {
259 .map_bus
= nwl_pcie_map_bus
,
260 .read
= pci_generic_config_read
,
261 .write
= pci_generic_config_write
,
264 static irqreturn_t
nwl_pcie_misc_handler(int irq
, void *data
)
266 struct nwl_pcie
*pcie
= data
;
267 struct device
*dev
= pcie
->dev
;
270 /* Checking for misc interrupts */
271 misc_stat
= nwl_bridge_readl(pcie
, MSGF_MISC_STATUS
) &
272 MSGF_MISC_SR_MASKALL
;
276 if (misc_stat
& MSGF_MISC_SR_RXMSG_OVER
)
277 dev_err(dev
, "Received Message FIFO Overflow\n");
279 if (misc_stat
& MSGF_MISC_SR_SLAVE_ERR
)
280 dev_err(dev
, "Slave error\n");
282 if (misc_stat
& MSGF_MISC_SR_MASTER_ERR
)
283 dev_err(dev
, "Master error\n");
285 if (misc_stat
& MSGF_MISC_SR_I_ADDR_ERR
)
286 dev_err(dev
, "In Misc Ingress address translation error\n");
288 if (misc_stat
& MSGF_MISC_SR_E_ADDR_ERR
)
289 dev_err(dev
, "In Misc Egress address translation error\n");
291 if (misc_stat
& MSGF_MISC_SR_FATAL_AER
)
292 dev_err(dev
, "Fatal Error in AER Capability\n");
294 if (misc_stat
& MSGF_MISC_SR_NON_FATAL_AER
)
295 dev_err(dev
, "Non-Fatal Error in AER Capability\n");
297 if (misc_stat
& MSGF_MISC_SR_CORR_AER
)
298 dev_err(dev
, "Correctable Error in AER Capability\n");
300 if (misc_stat
& MSGF_MISC_SR_UR_DETECT
)
301 dev_err(dev
, "Unsupported request Detected\n");
303 if (misc_stat
& MSGF_MISC_SR_NON_FATAL_DEV
)
304 dev_err(dev
, "Non-Fatal Error Detected\n");
306 if (misc_stat
& MSGF_MISC_SR_FATAL_DEV
)
307 dev_err(dev
, "Fatal Error Detected\n");
309 if (misc_stat
& MSGF_MSIC_SR_LINK_AUTO_BWIDTH
)
310 dev_info(dev
, "Link Autonomous Bandwidth Management Status bit set\n");
312 if (misc_stat
& MSGF_MSIC_SR_LINK_BWIDTH
)
313 dev_info(dev
, "Link Bandwidth Management Status bit set\n");
315 /* Clear misc interrupt status */
316 nwl_bridge_writel(pcie
, misc_stat
, MSGF_MISC_STATUS
);
321 static void nwl_pcie_leg_handler(struct irq_desc
*desc
)
323 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
324 struct nwl_pcie
*pcie
;
325 unsigned long status
;
329 chained_irq_enter(chip
, desc
);
330 pcie
= irq_desc_get_handler_data(desc
);
332 while ((status
= nwl_bridge_readl(pcie
, MSGF_LEG_STATUS
) &
333 MSGF_LEG_SR_MASKALL
) != 0) {
334 for_each_set_bit(bit
, &status
, PCI_NUM_INTX
) {
335 virq
= irq_find_mapping(pcie
->legacy_irq_domain
, bit
);
337 generic_handle_irq(virq
);
341 chained_irq_exit(chip
, desc
);
344 static void nwl_pcie_handle_msi_irq(struct nwl_pcie
*pcie
, u32 status_reg
)
347 unsigned long status
;
353 while ((status
= nwl_bridge_readl(pcie
, status_reg
)) != 0) {
354 for_each_set_bit(bit
, &status
, 32) {
355 nwl_bridge_writel(pcie
, 1 << bit
, status_reg
);
356 virq
= irq_find_mapping(msi
->dev_domain
, bit
);
358 generic_handle_irq(virq
);
363 static void nwl_pcie_msi_handler_high(struct irq_desc
*desc
)
365 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
366 struct nwl_pcie
*pcie
= irq_desc_get_handler_data(desc
);
368 chained_irq_enter(chip
, desc
);
369 nwl_pcie_handle_msi_irq(pcie
, MSGF_MSI_STATUS_HI
);
370 chained_irq_exit(chip
, desc
);
373 static void nwl_pcie_msi_handler_low(struct irq_desc
*desc
)
375 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
376 struct nwl_pcie
*pcie
= irq_desc_get_handler_data(desc
);
378 chained_irq_enter(chip
, desc
);
379 nwl_pcie_handle_msi_irq(pcie
, MSGF_MSI_STATUS_LO
);
380 chained_irq_exit(chip
, desc
);
383 static void nwl_mask_leg_irq(struct irq_data
*data
)
385 struct irq_desc
*desc
= irq_to_desc(data
->irq
);
386 struct nwl_pcie
*pcie
;
391 pcie
= irq_desc_get_chip_data(desc
);
392 mask
= 1 << (data
->hwirq
- 1);
393 raw_spin_lock_irqsave(&pcie
->leg_mask_lock
, flags
);
394 val
= nwl_bridge_readl(pcie
, MSGF_LEG_MASK
);
395 nwl_bridge_writel(pcie
, (val
& (~mask
)), MSGF_LEG_MASK
);
396 raw_spin_unlock_irqrestore(&pcie
->leg_mask_lock
, flags
);
399 static void nwl_unmask_leg_irq(struct irq_data
*data
)
401 struct irq_desc
*desc
= irq_to_desc(data
->irq
);
402 struct nwl_pcie
*pcie
;
407 pcie
= irq_desc_get_chip_data(desc
);
408 mask
= 1 << (data
->hwirq
- 1);
409 raw_spin_lock_irqsave(&pcie
->leg_mask_lock
, flags
);
410 val
= nwl_bridge_readl(pcie
, MSGF_LEG_MASK
);
411 nwl_bridge_writel(pcie
, (val
| mask
), MSGF_LEG_MASK
);
412 raw_spin_unlock_irqrestore(&pcie
->leg_mask_lock
, flags
);
415 static struct irq_chip nwl_leg_irq_chip
= {
416 .name
= "nwl_pcie:legacy",
417 .irq_enable
= nwl_unmask_leg_irq
,
418 .irq_disable
= nwl_mask_leg_irq
,
419 .irq_mask
= nwl_mask_leg_irq
,
420 .irq_unmask
= nwl_unmask_leg_irq
,
423 static int nwl_legacy_map(struct irq_domain
*domain
, unsigned int irq
,
424 irq_hw_number_t hwirq
)
426 irq_set_chip_and_handler(irq
, &nwl_leg_irq_chip
, handle_level_irq
);
427 irq_set_chip_data(irq
, domain
->host_data
);
428 irq_set_status_flags(irq
, IRQ_LEVEL
);
433 static const struct irq_domain_ops legacy_domain_ops
= {
434 .map
= nwl_legacy_map
,
435 .xlate
= pci_irqd_intx_xlate
,
438 #ifdef CONFIG_PCI_MSI
439 static struct irq_chip nwl_msi_irq_chip
= {
440 .name
= "nwl_pcie:msi",
441 .irq_enable
= unmask_msi_irq
,
442 .irq_disable
= mask_msi_irq
,
443 .irq_mask
= mask_msi_irq
,
444 .irq_unmask
= unmask_msi_irq
,
448 static struct msi_domain_info nwl_msi_domain_info
= {
449 .flags
= (MSI_FLAG_USE_DEF_DOM_OPS
| MSI_FLAG_USE_DEF_CHIP_OPS
|
450 MSI_FLAG_MULTI_PCI_MSI
),
451 .chip
= &nwl_msi_irq_chip
,
455 static void nwl_compose_msi_msg(struct irq_data
*data
, struct msi_msg
*msg
)
457 struct nwl_pcie
*pcie
= irq_data_get_irq_chip_data(data
);
458 phys_addr_t msi_addr
= pcie
->phys_pcie_reg_base
;
460 msg
->address_lo
= lower_32_bits(msi_addr
);
461 msg
->address_hi
= upper_32_bits(msi_addr
);
462 msg
->data
= data
->hwirq
;
465 static int nwl_msi_set_affinity(struct irq_data
*irq_data
,
466 const struct cpumask
*mask
, bool force
)
471 static struct irq_chip nwl_irq_chip
= {
472 .name
= "Xilinx MSI",
473 .irq_compose_msi_msg
= nwl_compose_msi_msg
,
474 .irq_set_affinity
= nwl_msi_set_affinity
,
477 static int nwl_irq_domain_alloc(struct irq_domain
*domain
, unsigned int virq
,
478 unsigned int nr_irqs
, void *args
)
480 struct nwl_pcie
*pcie
= domain
->host_data
;
481 struct nwl_msi
*msi
= &pcie
->msi
;
485 mutex_lock(&msi
->lock
);
486 bit
= bitmap_find_free_region(msi
->bitmap
, INT_PCI_MSI_NR
,
487 get_count_order(nr_irqs
));
489 mutex_unlock(&msi
->lock
);
493 for (i
= 0; i
< nr_irqs
; i
++) {
494 irq_domain_set_info(domain
, virq
+ i
, bit
+ i
, &nwl_irq_chip
,
495 domain
->host_data
, handle_simple_irq
,
498 mutex_unlock(&msi
->lock
);
502 static void nwl_irq_domain_free(struct irq_domain
*domain
, unsigned int virq
,
503 unsigned int nr_irqs
)
505 struct irq_data
*data
= irq_domain_get_irq_data(domain
, virq
);
506 struct nwl_pcie
*pcie
= irq_data_get_irq_chip_data(data
);
507 struct nwl_msi
*msi
= &pcie
->msi
;
509 mutex_lock(&msi
->lock
);
510 bitmap_release_region(msi
->bitmap
, data
->hwirq
,
511 get_count_order(nr_irqs
));
512 mutex_unlock(&msi
->lock
);
515 static const struct irq_domain_ops dev_msi_domain_ops
= {
516 .alloc
= nwl_irq_domain_alloc
,
517 .free
= nwl_irq_domain_free
,
520 static int nwl_pcie_init_msi_irq_domain(struct nwl_pcie
*pcie
)
522 #ifdef CONFIG_PCI_MSI
523 struct device
*dev
= pcie
->dev
;
524 struct fwnode_handle
*fwnode
= of_node_to_fwnode(dev
->of_node
);
525 struct nwl_msi
*msi
= &pcie
->msi
;
527 msi
->dev_domain
= irq_domain_add_linear(NULL
, INT_PCI_MSI_NR
,
528 &dev_msi_domain_ops
, pcie
);
529 if (!msi
->dev_domain
) {
530 dev_err(dev
, "failed to create dev IRQ domain\n");
533 msi
->msi_domain
= pci_msi_create_irq_domain(fwnode
,
534 &nwl_msi_domain_info
,
536 if (!msi
->msi_domain
) {
537 dev_err(dev
, "failed to create msi IRQ domain\n");
538 irq_domain_remove(msi
->dev_domain
);
545 static int nwl_pcie_init_irq_domain(struct nwl_pcie
*pcie
)
547 struct device
*dev
= pcie
->dev
;
548 struct device_node
*node
= dev
->of_node
;
549 struct device_node
*legacy_intc_node
;
551 legacy_intc_node
= of_get_next_child(node
, NULL
);
552 if (!legacy_intc_node
) {
553 dev_err(dev
, "No legacy intc node found\n");
557 pcie
->legacy_irq_domain
= irq_domain_add_linear(legacy_intc_node
,
561 of_node_put(legacy_intc_node
);
562 if (!pcie
->legacy_irq_domain
) {
563 dev_err(dev
, "failed to create IRQ domain\n");
567 raw_spin_lock_init(&pcie
->leg_mask_lock
);
568 nwl_pcie_init_msi_irq_domain(pcie
);
572 static int nwl_pcie_enable_msi(struct nwl_pcie
*pcie
)
574 struct device
*dev
= pcie
->dev
;
575 struct platform_device
*pdev
= to_platform_device(dev
);
576 struct nwl_msi
*msi
= &pcie
->msi
;
579 int size
= BITS_TO_LONGS(INT_PCI_MSI_NR
) * sizeof(long);
581 mutex_init(&msi
->lock
);
583 msi
->bitmap
= kzalloc(size
, GFP_KERNEL
);
587 /* Get msi_1 IRQ number */
588 msi
->irq_msi1
= platform_get_irq_byname(pdev
, "msi1");
589 if (msi
->irq_msi1
< 0) {
590 dev_err(dev
, "failed to get IRQ#%d\n", msi
->irq_msi1
);
595 irq_set_chained_handler_and_data(msi
->irq_msi1
,
596 nwl_pcie_msi_handler_high
, pcie
);
598 /* Get msi_0 IRQ number */
599 msi
->irq_msi0
= platform_get_irq_byname(pdev
, "msi0");
600 if (msi
->irq_msi0
< 0) {
601 dev_err(dev
, "failed to get IRQ#%d\n", msi
->irq_msi0
);
606 irq_set_chained_handler_and_data(msi
->irq_msi0
,
607 nwl_pcie_msi_handler_low
, pcie
);
609 /* Check for msii_present bit */
610 ret
= nwl_bridge_readl(pcie
, I_MSII_CAPABILITIES
) & MSII_PRESENT
;
612 dev_err(dev
, "MSI not present\n");
618 nwl_bridge_writel(pcie
, nwl_bridge_readl(pcie
, I_MSII_CONTROL
) |
619 MSII_ENABLE
, I_MSII_CONTROL
);
621 /* Enable MSII status */
622 nwl_bridge_writel(pcie
, nwl_bridge_readl(pcie
, I_MSII_CONTROL
) |
623 MSII_STATUS_ENABLE
, I_MSII_CONTROL
);
625 /* setup AFI/FPCI range */
626 base
= pcie
->phys_pcie_reg_base
;
627 nwl_bridge_writel(pcie
, lower_32_bits(base
), I_MSII_BASE_LO
);
628 nwl_bridge_writel(pcie
, upper_32_bits(base
), I_MSII_BASE_HI
);
631 * For high range MSI interrupts: disable, clear any pending,
634 nwl_bridge_writel(pcie
, 0, MSGF_MSI_MASK_HI
);
636 nwl_bridge_writel(pcie
, nwl_bridge_readl(pcie
, MSGF_MSI_STATUS_HI
) &
637 MSGF_MSI_SR_HI_MASK
, MSGF_MSI_STATUS_HI
);
639 nwl_bridge_writel(pcie
, MSGF_MSI_SR_HI_MASK
, MSGF_MSI_MASK_HI
);
642 * For low range MSI interrupts: disable, clear any pending,
645 nwl_bridge_writel(pcie
, 0, MSGF_MSI_MASK_LO
);
647 nwl_bridge_writel(pcie
, nwl_bridge_readl(pcie
, MSGF_MSI_STATUS_LO
) &
648 MSGF_MSI_SR_LO_MASK
, MSGF_MSI_STATUS_LO
);
650 nwl_bridge_writel(pcie
, MSGF_MSI_SR_LO_MASK
, MSGF_MSI_MASK_LO
);
659 static int nwl_pcie_bridge_init(struct nwl_pcie
*pcie
)
661 struct device
*dev
= pcie
->dev
;
662 struct platform_device
*pdev
= to_platform_device(dev
);
663 u32 breg_val
, ecam_val
, first_busno
= 0;
666 breg_val
= nwl_bridge_readl(pcie
, E_BREG_CAPABILITIES
) & BREG_PRESENT
;
668 dev_err(dev
, "BREG is not present\n");
672 /* Write bridge_off to breg base */
673 nwl_bridge_writel(pcie
, lower_32_bits(pcie
->phys_breg_base
),
675 nwl_bridge_writel(pcie
, upper_32_bits(pcie
->phys_breg_base
),
679 nwl_bridge_writel(pcie
, ~BREG_ENABLE_FORCE
& BREG_ENABLE
,
682 /* Disable DMA channel registers */
683 nwl_bridge_writel(pcie
, nwl_bridge_readl(pcie
, BRCFG_PCIE_RX0
) |
684 CFG_DMA_REG_BAR
, BRCFG_PCIE_RX0
);
686 /* Enable Ingress subtractive decode translation */
687 nwl_bridge_writel(pcie
, SET_ISUB_CONTROL
, I_ISUB_CONTROL
);
689 /* Enable msg filtering details */
690 nwl_bridge_writel(pcie
, CFG_ENABLE_MSG_FILTER_MASK
,
691 BRCFG_PCIE_RX_MSG_FILTER
);
693 err
= nwl_wait_for_link(pcie
);
697 ecam_val
= nwl_bridge_readl(pcie
, E_ECAM_CAPABILITIES
) & E_ECAM_PRESENT
;
699 dev_err(dev
, "ECAM is not present\n");
704 nwl_bridge_writel(pcie
, nwl_bridge_readl(pcie
, E_ECAM_CONTROL
) |
705 E_ECAM_CR_ENABLE
, E_ECAM_CONTROL
);
707 nwl_bridge_writel(pcie
, nwl_bridge_readl(pcie
, E_ECAM_CONTROL
) |
708 (pcie
->ecam_value
<< E_ECAM_SIZE_SHIFT
),
711 nwl_bridge_writel(pcie
, lower_32_bits(pcie
->phys_ecam_base
),
713 nwl_bridge_writel(pcie
, upper_32_bits(pcie
->phys_ecam_base
),
717 ecam_val
= nwl_bridge_readl(pcie
, E_ECAM_CONTROL
);
718 pcie
->last_busno
= (ecam_val
& E_ECAM_SIZE_LOC
) >> E_ECAM_SIZE_SHIFT
;
719 /* Write primary, secondary and subordinate bus numbers */
720 ecam_val
= first_busno
;
721 ecam_val
|= (first_busno
+ 1) << 8;
722 ecam_val
|= (pcie
->last_busno
<< E_ECAM_SIZE_SHIFT
);
723 writel(ecam_val
, (pcie
->ecam_base
+ PCI_PRIMARY_BUS
));
725 if (nwl_pcie_link_up(pcie
))
726 dev_info(dev
, "Link is UP\n");
728 dev_info(dev
, "Link is DOWN\n");
730 /* Get misc IRQ number */
731 pcie
->irq_misc
= platform_get_irq_byname(pdev
, "misc");
732 if (pcie
->irq_misc
< 0) {
733 dev_err(dev
, "failed to get misc IRQ %d\n",
738 err
= devm_request_irq(dev
, pcie
->irq_misc
,
739 nwl_pcie_misc_handler
, IRQF_SHARED
,
740 "nwl_pcie:misc", pcie
);
742 dev_err(dev
, "fail to register misc IRQ#%d\n",
747 /* Disable all misc interrupts */
748 nwl_bridge_writel(pcie
, (u32
)~MSGF_MISC_SR_MASKALL
, MSGF_MISC_MASK
);
750 /* Clear pending misc interrupts */
751 nwl_bridge_writel(pcie
, nwl_bridge_readl(pcie
, MSGF_MISC_STATUS
) &
752 MSGF_MISC_SR_MASKALL
, MSGF_MISC_STATUS
);
754 /* Enable all misc interrupts */
755 nwl_bridge_writel(pcie
, MSGF_MISC_SR_MASKALL
, MSGF_MISC_MASK
);
758 /* Disable all legacy interrupts */
759 nwl_bridge_writel(pcie
, (u32
)~MSGF_LEG_SR_MASKALL
, MSGF_LEG_MASK
);
761 /* Clear pending legacy interrupts */
762 nwl_bridge_writel(pcie
, nwl_bridge_readl(pcie
, MSGF_LEG_STATUS
) &
763 MSGF_LEG_SR_MASKALL
, MSGF_LEG_STATUS
);
765 /* Enable all legacy interrupts */
766 nwl_bridge_writel(pcie
, MSGF_LEG_SR_MASKALL
, MSGF_LEG_MASK
);
768 /* Enable the bridge config interrupt */
769 nwl_bridge_writel(pcie
, nwl_bridge_readl(pcie
, BRCFG_INTERRUPT
) |
770 BRCFG_INTERRUPT_MASK
, BRCFG_INTERRUPT
);
775 static int nwl_pcie_parse_dt(struct nwl_pcie
*pcie
,
776 struct platform_device
*pdev
)
778 struct device
*dev
= pcie
->dev
;
779 struct device_node
*node
= dev
->of_node
;
780 struct resource
*res
;
783 /* Check for device type */
784 type
= of_get_property(node
, "device_type", NULL
);
785 if (!type
|| strcmp(type
, "pci")) {
786 dev_err(dev
, "invalid \"device_type\" %s\n", type
);
790 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "breg");
791 pcie
->breg_base
= devm_ioremap_resource(dev
, res
);
792 if (IS_ERR(pcie
->breg_base
))
793 return PTR_ERR(pcie
->breg_base
);
794 pcie
->phys_breg_base
= res
->start
;
796 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "pcireg");
797 pcie
->pcireg_base
= devm_ioremap_resource(dev
, res
);
798 if (IS_ERR(pcie
->pcireg_base
))
799 return PTR_ERR(pcie
->pcireg_base
);
800 pcie
->phys_pcie_reg_base
= res
->start
;
802 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "cfg");
803 pcie
->ecam_base
= devm_pci_remap_cfg_resource(dev
, res
);
804 if (IS_ERR(pcie
->ecam_base
))
805 return PTR_ERR(pcie
->ecam_base
);
806 pcie
->phys_ecam_base
= res
->start
;
808 /* Get intx IRQ number */
809 pcie
->irq_intx
= platform_get_irq_byname(pdev
, "intx");
810 if (pcie
->irq_intx
< 0) {
811 dev_err(dev
, "failed to get intx IRQ %d\n", pcie
->irq_intx
);
812 return pcie
->irq_intx
;
815 irq_set_chained_handler_and_data(pcie
->irq_intx
,
816 nwl_pcie_leg_handler
, pcie
);
821 static const struct of_device_id nwl_pcie_of_match
[] = {
822 { .compatible
= "xlnx,nwl-pcie-2.11", },
826 static int nwl_pcie_probe(struct platform_device
*pdev
)
828 struct device
*dev
= &pdev
->dev
;
829 struct nwl_pcie
*pcie
;
831 struct pci_bus
*child
;
832 struct pci_host_bridge
*bridge
;
834 resource_size_t iobase
= 0;
837 bridge
= devm_pci_alloc_host_bridge(dev
, sizeof(*pcie
));
841 pcie
= pci_host_bridge_priv(bridge
);
844 pcie
->ecam_value
= NWL_ECAM_VALUE_DEFAULT
;
846 err
= nwl_pcie_parse_dt(pcie
, pdev
);
848 dev_err(dev
, "Parsing DT failed\n");
852 err
= nwl_pcie_bridge_init(pcie
);
854 dev_err(dev
, "HW Initialization failed\n");
858 err
= devm_of_pci_get_host_bridge_resources(dev
, 0, 0xff, &res
,
861 dev_err(dev
, "Getting bridge resources failed\n");
865 err
= devm_request_pci_bus_resources(dev
, &res
);
869 err
= nwl_pcie_init_irq_domain(pcie
);
871 dev_err(dev
, "Failed creating IRQ Domain\n");
875 list_splice_init(&res
, &bridge
->windows
);
876 bridge
->dev
.parent
= dev
;
877 bridge
->sysdata
= pcie
;
878 bridge
->busnr
= pcie
->root_busno
;
879 bridge
->ops
= &nwl_pcie_ops
;
880 bridge
->map_irq
= of_irq_parse_and_map_pci
;
881 bridge
->swizzle_irq
= pci_common_swizzle
;
883 if (IS_ENABLED(CONFIG_PCI_MSI
)) {
884 err
= nwl_pcie_enable_msi(pcie
);
886 dev_err(dev
, "failed to enable MSI support: %d\n", err
);
891 err
= pci_scan_root_bus_bridge(bridge
);
897 pci_assign_unassigned_bus_resources(bus
);
898 list_for_each_entry(child
, &bus
->children
, node
)
899 pcie_bus_configure_settings(child
);
900 pci_bus_add_devices(bus
);
904 pci_free_resource_list(&res
);
908 static struct platform_driver nwl_pcie_driver
= {
911 .suppress_bind_attrs
= true,
912 .of_match_table
= nwl_pcie_of_match
,
914 .probe
= nwl_pcie_probe
,
916 builtin_platform_driver(nwl_pcie_driver
);