1 // SPDX-License-Identifier: GPL-2.0
3 * PCIe host controller driver for Texas Instruments Keystone SoCs
5 * Copyright (C) 2013-2014 Texas Instruments., Ltd.
8 * Author: Murali Karicheri <m-karicheri2@ti.com>
9 * Implementation based on pci-exynos.c and pcie-designware.c
12 #include <linux/clk.h>
13 #include <linux/delay.h>
14 #include <linux/init.h>
15 #include <linux/interrupt.h>
16 #include <linux/irqchip/chained_irq.h>
17 #include <linux/irqdomain.h>
18 #include <linux/mfd/syscon.h>
19 #include <linux/msi.h>
21 #include <linux/of_irq.h>
22 #include <linux/of_pci.h>
23 #include <linux/phy/phy.h>
24 #include <linux/platform_device.h>
25 #include <linux/regmap.h>
26 #include <linux/resource.h>
27 #include <linux/signal.h>
29 #include "pcie-designware.h"
31 #define PCIE_VENDORID_MASK 0xffff
32 #define PCIE_DEVICEID_SHIFT 16
34 /* Application registers */
35 #define CMD_STATUS 0x004
36 #define LTSSM_EN_VAL BIT(0)
37 #define OB_XLAT_EN_VAL BIT(1)
38 #define DBI_CS2 BIT(5)
40 #define CFG_SETUP 0x008
41 #define CFG_BUS(x) (((x) & 0xff) << 16)
42 #define CFG_DEVICE(x) (((x) & 0x1f) << 8)
43 #define CFG_FUNC(x) ((x) & 0x7)
44 #define CFG_TYPE1 BIT(24)
47 #define SPACE0_REMOTE_CFG_OFFSET 0x1000
48 #define OB_OFFSET_INDEX(n) (0x200 + (8 * (n)))
49 #define OB_OFFSET_HI(n) (0x204 + (8 * (n)))
50 #define OB_ENABLEN BIT(0)
51 #define OB_WIN_SIZE 8 /* 8MB */
53 /* IRQ register defines */
55 #define IRQ_STATUS 0x184
56 #define IRQ_ENABLE_SET 0x188
57 #define IRQ_ENABLE_CLR 0x18c
60 #define MSI0_IRQ_STATUS 0x104
61 #define MSI0_IRQ_ENABLE_SET 0x108
62 #define MSI0_IRQ_ENABLE_CLR 0x10c
63 #define IRQ_STATUS 0x184
64 #define MSI_IRQ_OFFSET 4
66 #define ERR_IRQ_STATUS 0x1c4
67 #define ERR_IRQ_ENABLE_SET 0x1c8
68 #define ERR_AER BIT(5) /* ECRC error */
69 #define ERR_AXI BIT(4) /* AXI tag lookup fatal error */
70 #define ERR_CORR BIT(3) /* Correctable error */
71 #define ERR_NONFATAL BIT(2) /* Non-fatal error */
72 #define ERR_FATAL BIT(1) /* Fatal error */
73 #define ERR_SYS BIT(0) /* System error */
74 #define ERR_IRQ_ALL (ERR_AER | ERR_AXI | ERR_CORR | \
75 ERR_NONFATAL | ERR_FATAL | ERR_SYS)
77 #define MAX_MSI_HOST_IRQS 8
78 /* PCIE controller device IDs */
79 #define PCIE_RC_K2HK 0xb008
80 #define PCIE_RC_K2E 0xb009
81 #define PCIE_RC_K2L 0xb00a
82 #define PCIE_RC_K2G 0xb00b
84 #define to_keystone_pcie(x) dev_get_drvdata((x)->dev)
86 struct keystone_pcie
{
90 int num_legacy_host_irqs
;
91 int legacy_host_irqs
[PCI_NUM_INTX
];
92 struct device_node
*legacy_intc_np
;
94 int num_msi_host_irqs
;
95 int msi_host_irqs
[MAX_MSI_HOST_IRQS
];
99 struct device_link
**link
;
100 struct device_node
*msi_intc_np
;
101 struct irq_domain
*legacy_irq_domain
;
102 struct device_node
*np
;
106 /* Application register space */
107 void __iomem
*va_app_base
; /* DT 1st resource */
111 static inline void update_reg_offset_bit_pos(u32 offset
, u32
*reg_offset
,
114 *reg_offset
= offset
% 8;
115 *bit_pos
= offset
>> 3;
118 static phys_addr_t
ks_pcie_get_msi_addr(struct pcie_port
*pp
)
120 struct dw_pcie
*pci
= to_dw_pcie_from_pp(pp
);
121 struct keystone_pcie
*ks_pcie
= to_keystone_pcie(pci
);
123 return ks_pcie
->app
.start
+ MSI_IRQ
;
126 static u32
ks_pcie_app_readl(struct keystone_pcie
*ks_pcie
, u32 offset
)
128 return readl(ks_pcie
->va_app_base
+ offset
);
131 static void ks_pcie_app_writel(struct keystone_pcie
*ks_pcie
, u32 offset
,
134 writel(val
, ks_pcie
->va_app_base
+ offset
);
137 static void ks_pcie_handle_msi_irq(struct keystone_pcie
*ks_pcie
, int offset
)
139 struct dw_pcie
*pci
= ks_pcie
->pci
;
140 struct pcie_port
*pp
= &pci
->pp
;
141 struct device
*dev
= pci
->dev
;
145 pending
= ks_pcie_app_readl(ks_pcie
, MSI0_IRQ_STATUS
+ (offset
<< 4));
148 * MSI0 status bit 0-3 shows vectors 0, 8, 16, 24, MSI1 status bit
149 * shows 1, 9, 17, 25 and so forth
151 for (src
= 0; src
< 4; src
++) {
152 if (BIT(src
) & pending
) {
153 vector
= offset
+ (src
<< 3);
154 virq
= irq_linear_revmap(pp
->irq_domain
, vector
);
155 dev_dbg(dev
, "irq: bit %d, vector %d, virq %d\n",
157 generic_handle_irq(virq
);
162 static void ks_pcie_msi_irq_ack(int irq
, struct pcie_port
*pp
)
164 u32 reg_offset
, bit_pos
;
165 struct keystone_pcie
*ks_pcie
;
168 pci
= to_dw_pcie_from_pp(pp
);
169 ks_pcie
= to_keystone_pcie(pci
);
170 update_reg_offset_bit_pos(irq
, ®_offset
, &bit_pos
);
172 ks_pcie_app_writel(ks_pcie
, MSI0_IRQ_STATUS
+ (reg_offset
<< 4),
174 ks_pcie_app_writel(ks_pcie
, IRQ_EOI
, reg_offset
+ MSI_IRQ_OFFSET
);
177 static void ks_pcie_msi_set_irq(struct pcie_port
*pp
, int irq
)
179 u32 reg_offset
, bit_pos
;
180 struct dw_pcie
*pci
= to_dw_pcie_from_pp(pp
);
181 struct keystone_pcie
*ks_pcie
= to_keystone_pcie(pci
);
183 update_reg_offset_bit_pos(irq
, ®_offset
, &bit_pos
);
184 ks_pcie_app_writel(ks_pcie
, MSI0_IRQ_ENABLE_SET
+ (reg_offset
<< 4),
188 static void ks_pcie_msi_clear_irq(struct pcie_port
*pp
, int irq
)
190 u32 reg_offset
, bit_pos
;
191 struct dw_pcie
*pci
= to_dw_pcie_from_pp(pp
);
192 struct keystone_pcie
*ks_pcie
= to_keystone_pcie(pci
);
194 update_reg_offset_bit_pos(irq
, ®_offset
, &bit_pos
);
195 ks_pcie_app_writel(ks_pcie
, MSI0_IRQ_ENABLE_CLR
+ (reg_offset
<< 4),
199 static int ks_pcie_msi_host_init(struct pcie_port
*pp
)
201 return dw_pcie_allocate_domains(pp
);
204 static void ks_pcie_enable_legacy_irqs(struct keystone_pcie
*ks_pcie
)
208 for (i
= 0; i
< PCI_NUM_INTX
; i
++)
209 ks_pcie_app_writel(ks_pcie
, IRQ_ENABLE_SET
+ (i
<< 4), 0x1);
212 static void ks_pcie_handle_legacy_irq(struct keystone_pcie
*ks_pcie
,
215 struct dw_pcie
*pci
= ks_pcie
->pci
;
216 struct device
*dev
= pci
->dev
;
220 pending
= ks_pcie_app_readl(ks_pcie
, IRQ_STATUS
+ (offset
<< 4));
222 if (BIT(0) & pending
) {
223 virq
= irq_linear_revmap(ks_pcie
->legacy_irq_domain
, offset
);
224 dev_dbg(dev
, ": irq: irq_offset %d, virq %d\n", offset
, virq
);
225 generic_handle_irq(virq
);
228 /* EOI the INTx interrupt */
229 ks_pcie_app_writel(ks_pcie
, IRQ_EOI
, offset
);
232 static void ks_pcie_enable_error_irq(struct keystone_pcie
*ks_pcie
)
234 ks_pcie_app_writel(ks_pcie
, ERR_IRQ_ENABLE_SET
, ERR_IRQ_ALL
);
237 static irqreturn_t
ks_pcie_handle_error_irq(struct keystone_pcie
*ks_pcie
)
240 struct device
*dev
= ks_pcie
->pci
->dev
;
242 reg
= ks_pcie_app_readl(ks_pcie
, ERR_IRQ_STATUS
);
247 dev_err(dev
, "System Error\n");
250 dev_err(dev
, "Fatal Error\n");
252 if (reg
& ERR_NONFATAL
)
253 dev_dbg(dev
, "Non Fatal Error\n");
256 dev_dbg(dev
, "Correctable Error\n");
259 dev_err(dev
, "AXI tag lookup fatal Error\n");
262 dev_err(dev
, "ECRC Error\n");
264 ks_pcie_app_writel(ks_pcie
, ERR_IRQ_STATUS
, reg
);
269 static void ks_pcie_ack_legacy_irq(struct irq_data
*d
)
273 static void ks_pcie_mask_legacy_irq(struct irq_data
*d
)
277 static void ks_pcie_unmask_legacy_irq(struct irq_data
*d
)
281 static struct irq_chip ks_pcie_legacy_irq_chip
= {
282 .name
= "Keystone-PCI-Legacy-IRQ",
283 .irq_ack
= ks_pcie_ack_legacy_irq
,
284 .irq_mask
= ks_pcie_mask_legacy_irq
,
285 .irq_unmask
= ks_pcie_unmask_legacy_irq
,
288 static int ks_pcie_init_legacy_irq_map(struct irq_domain
*d
,
290 irq_hw_number_t hw_irq
)
292 irq_set_chip_and_handler(irq
, &ks_pcie_legacy_irq_chip
,
294 irq_set_chip_data(irq
, d
->host_data
);
299 static const struct irq_domain_ops ks_pcie_legacy_irq_domain_ops
= {
300 .map
= ks_pcie_init_legacy_irq_map
,
301 .xlate
= irq_domain_xlate_onetwocell
,
305 * ks_pcie_set_dbi_mode() - Set DBI mode to access overlaid BAR mask
308 * Since modification of dbi_cs2 involves different clock domain, read the
309 * status back to ensure the transition is complete.
311 static void ks_pcie_set_dbi_mode(struct keystone_pcie
*ks_pcie
)
315 val
= ks_pcie_app_readl(ks_pcie
, CMD_STATUS
);
317 ks_pcie_app_writel(ks_pcie
, CMD_STATUS
, val
);
320 val
= ks_pcie_app_readl(ks_pcie
, CMD_STATUS
);
321 } while (!(val
& DBI_CS2
));
325 * ks_pcie_clear_dbi_mode() - Disable DBI mode
327 * Since modification of dbi_cs2 involves different clock domain, read the
328 * status back to ensure the transition is complete.
330 static void ks_pcie_clear_dbi_mode(struct keystone_pcie
*ks_pcie
)
334 val
= ks_pcie_app_readl(ks_pcie
, CMD_STATUS
);
336 ks_pcie_app_writel(ks_pcie
, CMD_STATUS
, val
);
339 val
= ks_pcie_app_readl(ks_pcie
, CMD_STATUS
);
340 } while (val
& DBI_CS2
);
343 static void ks_pcie_setup_rc_app_regs(struct keystone_pcie
*ks_pcie
)
346 u32 num_viewport
= ks_pcie
->num_viewport
;
347 struct dw_pcie
*pci
= ks_pcie
->pci
;
348 struct pcie_port
*pp
= &pci
->pp
;
349 u64 start
= pp
->mem
->start
;
350 u64 end
= pp
->mem
->end
;
353 /* Disable BARs for inbound access */
354 ks_pcie_set_dbi_mode(ks_pcie
);
355 dw_pcie_writel_dbi(pci
, PCI_BASE_ADDRESS_0
, 0);
356 dw_pcie_writel_dbi(pci
, PCI_BASE_ADDRESS_1
, 0);
357 ks_pcie_clear_dbi_mode(ks_pcie
);
359 val
= ilog2(OB_WIN_SIZE
);
360 ks_pcie_app_writel(ks_pcie
, OB_SIZE
, val
);
362 /* Using Direct 1:1 mapping of RC <-> PCI memory space */
363 for (i
= 0; i
< num_viewport
&& (start
< end
); i
++) {
364 ks_pcie_app_writel(ks_pcie
, OB_OFFSET_INDEX(i
),
365 lower_32_bits(start
) | OB_ENABLEN
);
366 ks_pcie_app_writel(ks_pcie
, OB_OFFSET_HI(i
),
367 upper_32_bits(start
));
368 start
+= OB_WIN_SIZE
;
371 val
= ks_pcie_app_readl(ks_pcie
, CMD_STATUS
);
372 val
|= OB_XLAT_EN_VAL
;
373 ks_pcie_app_writel(ks_pcie
, CMD_STATUS
, val
);
376 static int ks_pcie_rd_other_conf(struct pcie_port
*pp
, struct pci_bus
*bus
,
377 unsigned int devfn
, int where
, int size
,
380 struct dw_pcie
*pci
= to_dw_pcie_from_pp(pp
);
381 struct keystone_pcie
*ks_pcie
= to_keystone_pcie(pci
);
384 reg
= CFG_BUS(bus
->number
) | CFG_DEVICE(PCI_SLOT(devfn
)) |
385 CFG_FUNC(PCI_FUNC(devfn
));
386 if (bus
->parent
->number
!= pp
->root_bus_nr
)
388 ks_pcie_app_writel(ks_pcie
, CFG_SETUP
, reg
);
390 return dw_pcie_read(pp
->va_cfg0_base
+ where
, size
, val
);
393 static int ks_pcie_wr_other_conf(struct pcie_port
*pp
, struct pci_bus
*bus
,
394 unsigned int devfn
, int where
, int size
,
397 struct dw_pcie
*pci
= to_dw_pcie_from_pp(pp
);
398 struct keystone_pcie
*ks_pcie
= to_keystone_pcie(pci
);
401 reg
= CFG_BUS(bus
->number
) | CFG_DEVICE(PCI_SLOT(devfn
)) |
402 CFG_FUNC(PCI_FUNC(devfn
));
403 if (bus
->parent
->number
!= pp
->root_bus_nr
)
405 ks_pcie_app_writel(ks_pcie
, CFG_SETUP
, reg
);
407 return dw_pcie_write(pp
->va_cfg0_base
+ where
, size
, val
);
411 * ks_pcie_v3_65_scan_bus() - keystone scan_bus post initialization
413 * This sets BAR0 to enable inbound access for MSI_IRQ register
415 static void ks_pcie_v3_65_scan_bus(struct pcie_port
*pp
)
417 struct dw_pcie
*pci
= to_dw_pcie_from_pp(pp
);
418 struct keystone_pcie
*ks_pcie
= to_keystone_pcie(pci
);
420 /* Configure and set up BAR0 */
421 ks_pcie_set_dbi_mode(ks_pcie
);
424 dw_pcie_writel_dbi(pci
, PCI_BASE_ADDRESS_0
, 1);
425 dw_pcie_writel_dbi(pci
, PCI_BASE_ADDRESS_0
, SZ_4K
- 1);
427 ks_pcie_clear_dbi_mode(ks_pcie
);
430 * For BAR0, just setting bus address for inbound writes (MSI) should
431 * be sufficient. Use physical address to avoid any conflicts.
433 dw_pcie_writel_dbi(pci
, PCI_BASE_ADDRESS_0
, ks_pcie
->app
.start
);
437 * ks_pcie_link_up() - Check if link up
439 static int ks_pcie_link_up(struct dw_pcie
*pci
)
443 val
= dw_pcie_readl_dbi(pci
, PCIE_PORT_DEBUG0
);
444 val
&= PORT_LOGIC_LTSSM_STATE_MASK
;
445 return (val
== PORT_LOGIC_LTSSM_STATE_L0
);
448 static void ks_pcie_initiate_link_train(struct keystone_pcie
*ks_pcie
)
452 /* Disable Link training */
453 val
= ks_pcie_app_readl(ks_pcie
, CMD_STATUS
);
454 val
&= ~LTSSM_EN_VAL
;
455 ks_pcie_app_writel(ks_pcie
, CMD_STATUS
, LTSSM_EN_VAL
| val
);
457 /* Initiate Link Training */
458 val
= ks_pcie_app_readl(ks_pcie
, CMD_STATUS
);
459 ks_pcie_app_writel(ks_pcie
, CMD_STATUS
, LTSSM_EN_VAL
| val
);
463 * ks_pcie_dw_host_init() - initialize host for v3_65 dw hardware
465 * Ioremap the register resources, initialize legacy irq domain
466 * and call dw_pcie_v3_65_host_init() API to initialize the Keystone
467 * PCI host controller.
469 static int __init
ks_pcie_dw_host_init(struct keystone_pcie
*ks_pcie
)
471 struct dw_pcie
*pci
= ks_pcie
->pci
;
472 struct pcie_port
*pp
= &pci
->pp
;
473 struct device
*dev
= pci
->dev
;
474 struct platform_device
*pdev
= to_platform_device(dev
);
475 struct resource
*res
;
477 /* Index 0 is the config reg. space address */
478 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
479 pci
->dbi_base
= devm_pci_remap_cfg_resource(dev
, res
);
480 if (IS_ERR(pci
->dbi_base
))
481 return PTR_ERR(pci
->dbi_base
);
484 * We set these same and is used in pcie rd/wr_other_conf
487 pp
->va_cfg0_base
= pci
->dbi_base
+ SPACE0_REMOTE_CFG_OFFSET
;
488 pp
->va_cfg1_base
= pp
->va_cfg0_base
;
490 /* Index 1 is the application reg. space address */
491 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
492 ks_pcie
->va_app_base
= devm_ioremap_resource(dev
, res
);
493 if (IS_ERR(ks_pcie
->va_app_base
))
494 return PTR_ERR(ks_pcie
->va_app_base
);
498 /* Create legacy IRQ domain */
499 ks_pcie
->legacy_irq_domain
=
500 irq_domain_add_linear(ks_pcie
->legacy_intc_np
,
502 &ks_pcie_legacy_irq_domain_ops
,
504 if (!ks_pcie
->legacy_irq_domain
) {
505 dev_err(dev
, "Failed to add irq domain for legacy irqs\n");
509 return dw_pcie_host_init(pp
);
512 static void ks_pcie_quirk(struct pci_dev
*dev
)
514 struct pci_bus
*bus
= dev
->bus
;
515 struct pci_dev
*bridge
;
516 static const struct pci_device_id rc_pci_devids
[] = {
517 { PCI_DEVICE(PCI_VENDOR_ID_TI
, PCIE_RC_K2HK
),
518 .class = PCI_CLASS_BRIDGE_PCI
<< 8, .class_mask
= ~0, },
519 { PCI_DEVICE(PCI_VENDOR_ID_TI
, PCIE_RC_K2E
),
520 .class = PCI_CLASS_BRIDGE_PCI
<< 8, .class_mask
= ~0, },
521 { PCI_DEVICE(PCI_VENDOR_ID_TI
, PCIE_RC_K2L
),
522 .class = PCI_CLASS_BRIDGE_PCI
<< 8, .class_mask
= ~0, },
523 { PCI_DEVICE(PCI_VENDOR_ID_TI
, PCIE_RC_K2G
),
524 .class = PCI_CLASS_BRIDGE_PCI
<< 8, .class_mask
= ~0, },
528 if (pci_is_root_bus(bus
))
531 /* look for the host bridge */
532 while (!pci_is_root_bus(bus
)) {
541 * Keystone PCI controller has a h/w limitation of
542 * 256 bytes maximum read request size. It can't handle
543 * anything higher than this. So force this limit on
544 * all downstream devices.
546 if (pci_match_id(rc_pci_devids
, bridge
)) {
547 if (pcie_get_readrq(dev
) > 256) {
548 dev_info(&dev
->dev
, "limiting MRRS to 256\n");
549 pcie_set_readrq(dev
, 256);
553 DECLARE_PCI_FIXUP_ENABLE(PCI_ANY_ID
, PCI_ANY_ID
, ks_pcie_quirk
);
555 static int ks_pcie_establish_link(struct keystone_pcie
*ks_pcie
)
557 struct dw_pcie
*pci
= ks_pcie
->pci
;
558 struct device
*dev
= pci
->dev
;
560 if (dw_pcie_link_up(pci
)) {
561 dev_info(dev
, "Link already up\n");
565 ks_pcie_initiate_link_train(ks_pcie
);
567 /* check if the link is up or not */
568 if (!dw_pcie_wait_for_link(pci
))
571 dev_err(dev
, "phy link never came up\n");
575 static void ks_pcie_msi_irq_handler(struct irq_desc
*desc
)
577 unsigned int irq
= irq_desc_get_irq(desc
);
578 struct keystone_pcie
*ks_pcie
= irq_desc_get_handler_data(desc
);
579 u32 offset
= irq
- ks_pcie
->msi_host_irqs
[0];
580 struct dw_pcie
*pci
= ks_pcie
->pci
;
581 struct device
*dev
= pci
->dev
;
582 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
584 dev_dbg(dev
, "%s, irq %d\n", __func__
, irq
);
587 * The chained irq handler installation would have replaced normal
588 * interrupt driver handler so we need to take care of mask/unmask and
591 chained_irq_enter(chip
, desc
);
592 ks_pcie_handle_msi_irq(ks_pcie
, offset
);
593 chained_irq_exit(chip
, desc
);
597 * ks_pcie_legacy_irq_handler() - Handle legacy interrupt
598 * @irq: IRQ line for legacy interrupts
599 * @desc: Pointer to irq descriptor
601 * Traverse through pending legacy interrupts and invoke handler for each. Also
602 * takes care of interrupt controller level mask/ack operation.
604 static void ks_pcie_legacy_irq_handler(struct irq_desc
*desc
)
606 unsigned int irq
= irq_desc_get_irq(desc
);
607 struct keystone_pcie
*ks_pcie
= irq_desc_get_handler_data(desc
);
608 struct dw_pcie
*pci
= ks_pcie
->pci
;
609 struct device
*dev
= pci
->dev
;
610 u32 irq_offset
= irq
- ks_pcie
->legacy_host_irqs
[0];
611 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
613 dev_dbg(dev
, ": Handling legacy irq %d\n", irq
);
616 * The chained irq handler installation would have replaced normal
617 * interrupt driver handler so we need to take care of mask/unmask and
620 chained_irq_enter(chip
, desc
);
621 ks_pcie_handle_legacy_irq(ks_pcie
, irq_offset
);
622 chained_irq_exit(chip
, desc
);
625 static int ks_pcie_get_irq_controller_info(struct keystone_pcie
*ks_pcie
,
626 char *controller
, int *num_irqs
)
628 int temp
, max_host_irqs
, legacy
= 1, *host_irqs
;
629 struct device
*dev
= ks_pcie
->pci
->dev
;
630 struct device_node
*np_pcie
= dev
->of_node
, **np_temp
;
632 if (!strcmp(controller
, "msi-interrupt-controller"))
636 np_temp
= &ks_pcie
->legacy_intc_np
;
637 max_host_irqs
= PCI_NUM_INTX
;
638 host_irqs
= &ks_pcie
->legacy_host_irqs
[0];
640 np_temp
= &ks_pcie
->msi_intc_np
;
641 max_host_irqs
= MAX_MSI_HOST_IRQS
;
642 host_irqs
= &ks_pcie
->msi_host_irqs
[0];
645 /* interrupt controller is in a child node */
646 *np_temp
= of_get_child_by_name(np_pcie
, controller
);
648 dev_err(dev
, "Node for %s is absent\n", controller
);
652 temp
= of_irq_count(*np_temp
);
654 dev_err(dev
, "No IRQ entries in %s\n", controller
);
655 of_node_put(*np_temp
);
659 if (temp
> max_host_irqs
)
660 dev_warn(dev
, "Too many %s interrupts defined %u\n",
661 (legacy
? "legacy" : "MSI"), temp
);
664 * support upto max_host_irqs. In dt from index 0 to 3 (legacy) or 0 to
667 for (temp
= 0; temp
< max_host_irqs
; temp
++) {
668 host_irqs
[temp
] = irq_of_parse_and_map(*np_temp
, temp
);
669 if (!host_irqs
[temp
])
673 of_node_put(*np_temp
);
683 static void ks_pcie_setup_interrupts(struct keystone_pcie
*ks_pcie
)
688 for (i
= 0; i
< ks_pcie
->num_legacy_host_irqs
; i
++) {
689 irq_set_chained_handler_and_data(ks_pcie
->legacy_host_irqs
[i
],
690 ks_pcie_legacy_irq_handler
,
693 ks_pcie_enable_legacy_irqs(ks_pcie
);
696 if (IS_ENABLED(CONFIG_PCI_MSI
)) {
697 for (i
= 0; i
< ks_pcie
->num_msi_host_irqs
; i
++) {
698 irq_set_chained_handler_and_data(ks_pcie
->msi_host_irqs
[i
],
699 ks_pcie_msi_irq_handler
,
704 if (ks_pcie
->error_irq
> 0)
705 ks_pcie_enable_error_irq(ks_pcie
);
709 * When a PCI device does not exist during config cycles, keystone host gets a
710 * bus error instead of returning 0xffffffff. This handler always returns 0
711 * for this kind of faults.
713 static int ks_pcie_fault(unsigned long addr
, unsigned int fsr
,
714 struct pt_regs
*regs
)
716 unsigned long instr
= *(unsigned long *) instruction_pointer(regs
);
718 if ((instr
& 0x0e100090) == 0x00100090) {
719 int reg
= (instr
>> 12) & 15;
721 regs
->uregs
[reg
] = -1;
728 static int __init
ks_pcie_init_id(struct keystone_pcie
*ks_pcie
)
732 struct regmap
*devctrl_regs
;
733 struct dw_pcie
*pci
= ks_pcie
->pci
;
734 struct device
*dev
= pci
->dev
;
735 struct device_node
*np
= dev
->of_node
;
737 devctrl_regs
= syscon_regmap_lookup_by_phandle(np
, "ti,syscon-pcie-id");
738 if (IS_ERR(devctrl_regs
))
739 return PTR_ERR(devctrl_regs
);
741 ret
= regmap_read(devctrl_regs
, 0, &id
);
745 dw_pcie_writew_dbi(pci
, PCI_VENDOR_ID
, id
& PCIE_VENDORID_MASK
);
746 dw_pcie_writew_dbi(pci
, PCI_DEVICE_ID
, id
>> PCIE_DEVICEID_SHIFT
);
751 static int __init
ks_pcie_host_init(struct pcie_port
*pp
)
753 struct dw_pcie
*pci
= to_dw_pcie_from_pp(pp
);
754 struct keystone_pcie
*ks_pcie
= to_keystone_pcie(pci
);
757 dw_pcie_setup_rc(pp
);
759 ks_pcie_establish_link(ks_pcie
);
760 ks_pcie_setup_rc_app_regs(ks_pcie
);
761 ks_pcie_setup_interrupts(ks_pcie
);
762 writew(PCI_IO_RANGE_TYPE_32
| (PCI_IO_RANGE_TYPE_32
<< 8),
763 pci
->dbi_base
+ PCI_IO_BASE
);
765 ret
= ks_pcie_init_id(ks_pcie
);
770 * PCIe access errors that result into OCP errors are caught by ARM as
773 hook_fault_code(17, ks_pcie_fault
, SIGBUS
, 0,
774 "Asynchronous external abort");
779 static const struct dw_pcie_host_ops ks_pcie_host_ops
= {
780 .rd_other_conf
= ks_pcie_rd_other_conf
,
781 .wr_other_conf
= ks_pcie_wr_other_conf
,
782 .host_init
= ks_pcie_host_init
,
783 .msi_set_irq
= ks_pcie_msi_set_irq
,
784 .msi_clear_irq
= ks_pcie_msi_clear_irq
,
785 .get_msi_addr
= ks_pcie_get_msi_addr
,
786 .msi_host_init
= ks_pcie_msi_host_init
,
787 .msi_irq_ack
= ks_pcie_msi_irq_ack
,
788 .scan_bus
= ks_pcie_v3_65_scan_bus
,
791 static irqreturn_t
ks_pcie_err_irq_handler(int irq
, void *priv
)
793 struct keystone_pcie
*ks_pcie
= priv
;
795 return ks_pcie_handle_error_irq(ks_pcie
);
798 static int __init
ks_pcie_add_pcie_port(struct keystone_pcie
*ks_pcie
,
799 struct platform_device
*pdev
)
801 struct dw_pcie
*pci
= ks_pcie
->pci
;
802 struct pcie_port
*pp
= &pci
->pp
;
803 struct device
*dev
= &pdev
->dev
;
806 ret
= ks_pcie_get_irq_controller_info(ks_pcie
,
807 "legacy-interrupt-controller",
808 &ks_pcie
->num_legacy_host_irqs
);
812 if (IS_ENABLED(CONFIG_PCI_MSI
)) {
813 ret
= ks_pcie_get_irq_controller_info(ks_pcie
,
814 "msi-interrupt-controller",
815 &ks_pcie
->num_msi_host_irqs
);
821 * Index 0 is the platform interrupt for error interrupt
822 * from RC. This is optional.
824 ks_pcie
->error_irq
= irq_of_parse_and_map(ks_pcie
->np
, 0);
825 if (ks_pcie
->error_irq
<= 0)
826 dev_info(dev
, "no error IRQ defined\n");
828 ret
= request_irq(ks_pcie
->error_irq
, ks_pcie_err_irq_handler
,
829 IRQF_SHARED
, "pcie-error-irq", ks_pcie
);
831 dev_err(dev
, "failed to request error IRQ %d\n",
837 pp
->ops
= &ks_pcie_host_ops
;
838 ret
= ks_pcie_dw_host_init(ks_pcie
);
840 dev_err(dev
, "failed to initialize host\n");
847 static const struct of_device_id ks_pcie_of_match
[] = {
850 .compatible
= "ti,keystone-pcie",
855 static const struct dw_pcie_ops ks_pcie_dw_pcie_ops
= {
856 .link_up
= ks_pcie_link_up
,
859 static void ks_pcie_disable_phy(struct keystone_pcie
*ks_pcie
)
861 int num_lanes
= ks_pcie
->num_lanes
;
863 while (num_lanes
--) {
864 phy_power_off(ks_pcie
->phy
[num_lanes
]);
865 phy_exit(ks_pcie
->phy
[num_lanes
]);
869 static int ks_pcie_enable_phy(struct keystone_pcie
*ks_pcie
)
873 int num_lanes
= ks_pcie
->num_lanes
;
875 for (i
= 0; i
< num_lanes
; i
++) {
876 ret
= phy_init(ks_pcie
->phy
[i
]);
880 ret
= phy_power_on(ks_pcie
->phy
[i
]);
882 phy_exit(ks_pcie
->phy
[i
]);
891 phy_power_off(ks_pcie
->phy
[i
]);
892 phy_exit(ks_pcie
->phy
[i
]);
898 static int __init
ks_pcie_probe(struct platform_device
*pdev
)
900 struct device
*dev
= &pdev
->dev
;
901 struct device_node
*np
= dev
->of_node
;
903 struct keystone_pcie
*ks_pcie
;
904 struct device_link
**link
;
912 ks_pcie
= devm_kzalloc(dev
, sizeof(*ks_pcie
), GFP_KERNEL
);
916 pci
= devm_kzalloc(dev
, sizeof(*pci
), GFP_KERNEL
);
921 pci
->ops
= &ks_pcie_dw_pcie_ops
;
923 ret
= of_property_read_u32(np
, "num-viewport", &num_viewport
);
925 dev_err(dev
, "unable to read *num-viewport* property\n");
929 ret
= of_property_read_u32(np
, "num-lanes", &num_lanes
);
933 phy
= devm_kzalloc(dev
, sizeof(*phy
) * num_lanes
, GFP_KERNEL
);
937 link
= devm_kzalloc(dev
, sizeof(*link
) * num_lanes
, GFP_KERNEL
);
941 for (i
= 0; i
< num_lanes
; i
++) {
942 snprintf(name
, sizeof(name
), "pcie-phy%d", i
);
943 phy
[i
] = devm_phy_optional_get(dev
, name
);
944 if (IS_ERR(phy
[i
])) {
945 ret
= PTR_ERR(phy
[i
]);
952 link
[i
] = device_link_add(dev
, &phy
[i
]->dev
, DL_FLAG_STATELESS
);
961 ks_pcie
->link
= link
;
962 ks_pcie
->num_lanes
= num_lanes
;
963 ks_pcie
->num_viewport
= num_viewport
;
966 ret
= ks_pcie_enable_phy(ks_pcie
);
968 dev_err(dev
, "failed to enable phy\n");
972 platform_set_drvdata(pdev
, ks_pcie
);
973 pm_runtime_enable(dev
);
974 ret
= pm_runtime_get_sync(dev
);
976 dev_err(dev
, "pm_runtime_get_sync failed\n");
980 ret
= ks_pcie_add_pcie_port(ks_pcie
, pdev
);
988 pm_runtime_disable(dev
);
989 ks_pcie_disable_phy(ks_pcie
);
992 while (--i
>= 0 && link
[i
])
993 device_link_del(link
[i
]);
998 static int __exit
ks_pcie_remove(struct platform_device
*pdev
)
1000 struct keystone_pcie
*ks_pcie
= platform_get_drvdata(pdev
);
1001 struct device_link
**link
= ks_pcie
->link
;
1002 int num_lanes
= ks_pcie
->num_lanes
;
1003 struct device
*dev
= &pdev
->dev
;
1005 pm_runtime_put(dev
);
1006 pm_runtime_disable(dev
);
1007 ks_pcie_disable_phy(ks_pcie
);
1009 device_link_del(link
[num_lanes
]);
1014 static struct platform_driver ks_pcie_driver __refdata
= {
1015 .probe
= ks_pcie_probe
,
1016 .remove
= __exit_p(ks_pcie_remove
),
1018 .name
= "keystone-pcie",
1019 .of_match_table
= of_match_ptr(ks_pcie_of_match
),
1022 builtin_platform_driver(ks_pcie_driver
);