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.
9 * Implementation based on pci-exynos.c and pcie-designware.c
12 #include <linux/clk.h>
13 #include <linux/delay.h>
14 #include <linux/gpio/consumer.h>
15 #include <linux/init.h>
16 #include <linux/interrupt.h>
17 #include <linux/irqchip/chained_irq.h>
18 #include <linux/irqdomain.h>
19 #include <linux/mfd/syscon.h>
20 #include <linux/msi.h>
22 #include <linux/of_device.h>
23 #include <linux/of_irq.h>
24 #include <linux/of_pci.h>
25 #include <linux/phy/phy.h>
26 #include <linux/platform_device.h>
27 #include <linux/regmap.h>
28 #include <linux/resource.h>
29 #include <linux/signal.h>
31 #include "../../pci.h"
32 #include "pcie-designware.h"
34 #define PCIE_VENDORID_MASK 0xffff
35 #define PCIE_DEVICEID_SHIFT 16
37 /* Application registers */
38 #define CMD_STATUS 0x004
39 #define LTSSM_EN_VAL BIT(0)
40 #define OB_XLAT_EN_VAL BIT(1)
41 #define DBI_CS2 BIT(5)
43 #define CFG_SETUP 0x008
44 #define CFG_BUS(x) (((x) & 0xff) << 16)
45 #define CFG_DEVICE(x) (((x) & 0x1f) << 8)
46 #define CFG_FUNC(x) ((x) & 0x7)
47 #define CFG_TYPE1 BIT(24)
50 #define OB_OFFSET_INDEX(n) (0x200 + (8 * (n)))
51 #define OB_OFFSET_HI(n) (0x204 + (8 * (n)))
52 #define OB_ENABLEN BIT(0)
53 #define OB_WIN_SIZE 8 /* 8MB */
55 #define PCIE_LEGACY_IRQ_ENABLE_SET(n) (0x188 + (0x10 * ((n) - 1)))
56 #define PCIE_LEGACY_IRQ_ENABLE_CLR(n) (0x18c + (0x10 * ((n) - 1)))
57 #define PCIE_EP_IRQ_SET 0x64
58 #define PCIE_EP_IRQ_CLR 0x68
59 #define INT_ENABLE BIT(0)
61 /* IRQ register defines */
65 #define MSI_IRQ_STATUS(n) (0x104 + ((n) << 4))
66 #define MSI_IRQ_ENABLE_SET(n) (0x108 + ((n) << 4))
67 #define MSI_IRQ_ENABLE_CLR(n) (0x10c + ((n) << 4))
68 #define MSI_IRQ_OFFSET 4
70 #define IRQ_STATUS(n) (0x184 + ((n) << 4))
71 #define IRQ_ENABLE_SET(n) (0x188 + ((n) << 4))
72 #define INTx_EN BIT(0)
74 #define ERR_IRQ_STATUS 0x1c4
75 #define ERR_IRQ_ENABLE_SET 0x1c8
76 #define ERR_AER BIT(5) /* ECRC error */
77 #define AM6_ERR_AER BIT(4) /* AM6 ECRC error */
78 #define ERR_AXI BIT(4) /* AXI tag lookup fatal error */
79 #define ERR_CORR BIT(3) /* Correctable error */
80 #define ERR_NONFATAL BIT(2) /* Non-fatal error */
81 #define ERR_FATAL BIT(1) /* Fatal error */
82 #define ERR_SYS BIT(0) /* System error */
83 #define ERR_IRQ_ALL (ERR_AER | ERR_AXI | ERR_CORR | \
84 ERR_NONFATAL | ERR_FATAL | ERR_SYS)
86 /* PCIE controller device IDs */
87 #define PCIE_RC_K2HK 0xb008
88 #define PCIE_RC_K2E 0xb009
89 #define PCIE_RC_K2L 0xb00a
90 #define PCIE_RC_K2G 0xb00b
92 #define KS_PCIE_DEV_TYPE_MASK (0x3 << 1)
93 #define KS_PCIE_DEV_TYPE(mode) ((mode) << 1)
99 #define KS_PCIE_SYSCLOCKOUTEN BIT(0)
101 #define AM654_PCIE_DEV_TYPE_MASK 0x3
102 #define AM654_WIN_SIZE SZ_64K
104 #define APP_ADDR_SPACE_0 (16 * SZ_1K)
106 #define to_keystone_pcie(x) dev_get_drvdata((x)->dev)
108 struct ks_pcie_of_data {
109 enum dw_pcie_device_mode mode;
110 const struct dw_pcie_host_ops *host_ops;
111 const struct dw_pcie_ep_ops *ep_ops;
112 unsigned int version;
115 struct keystone_pcie {
119 int legacy_host_irqs[PCI_NUM_INTX];
120 struct device_node *legacy_intc_np;
126 struct device_link **link;
127 struct device_node *msi_intc_np;
128 struct irq_domain *legacy_irq_domain;
129 struct device_node *np;
131 /* Application register space */
132 void __iomem *va_app_base; /* DT 1st resource */
137 static u32 ks_pcie_app_readl(struct keystone_pcie *ks_pcie, u32 offset)
139 return readl(ks_pcie->va_app_base + offset);
142 static void ks_pcie_app_writel(struct keystone_pcie *ks_pcie, u32 offset,
145 writel(val, ks_pcie->va_app_base + offset);
148 static void ks_pcie_msi_irq_ack(struct irq_data *data)
150 struct pcie_port *pp = irq_data_get_irq_chip_data(data);
151 struct keystone_pcie *ks_pcie;
152 u32 irq = data->hwirq;
157 pci = to_dw_pcie_from_pp(pp);
158 ks_pcie = to_keystone_pcie(pci);
160 reg_offset = irq % 8;
163 ks_pcie_app_writel(ks_pcie, MSI_IRQ_STATUS(reg_offset),
165 ks_pcie_app_writel(ks_pcie, IRQ_EOI, reg_offset + MSI_IRQ_OFFSET);
168 static void ks_pcie_compose_msi_msg(struct irq_data *data, struct msi_msg *msg)
170 struct pcie_port *pp = irq_data_get_irq_chip_data(data);
171 struct keystone_pcie *ks_pcie;
175 pci = to_dw_pcie_from_pp(pp);
176 ks_pcie = to_keystone_pcie(pci);
178 msi_target = ks_pcie->app.start + MSI_IRQ;
179 msg->address_lo = lower_32_bits(msi_target);
180 msg->address_hi = upper_32_bits(msi_target);
181 msg->data = data->hwirq;
183 dev_dbg(pci->dev, "msi#%d address_hi %#x address_lo %#x\n",
184 (int)data->hwirq, msg->address_hi, msg->address_lo);
187 static int ks_pcie_msi_set_affinity(struct irq_data *irq_data,
188 const struct cpumask *mask, bool force)
193 static void ks_pcie_msi_mask(struct irq_data *data)
195 struct pcie_port *pp = irq_data_get_irq_chip_data(data);
196 struct keystone_pcie *ks_pcie;
197 u32 irq = data->hwirq;
203 raw_spin_lock_irqsave(&pp->lock, flags);
205 pci = to_dw_pcie_from_pp(pp);
206 ks_pcie = to_keystone_pcie(pci);
208 reg_offset = irq % 8;
211 ks_pcie_app_writel(ks_pcie, MSI_IRQ_ENABLE_CLR(reg_offset),
214 raw_spin_unlock_irqrestore(&pp->lock, flags);
217 static void ks_pcie_msi_unmask(struct irq_data *data)
219 struct pcie_port *pp = irq_data_get_irq_chip_data(data);
220 struct keystone_pcie *ks_pcie;
221 u32 irq = data->hwirq;
227 raw_spin_lock_irqsave(&pp->lock, flags);
229 pci = to_dw_pcie_from_pp(pp);
230 ks_pcie = to_keystone_pcie(pci);
232 reg_offset = irq % 8;
235 ks_pcie_app_writel(ks_pcie, MSI_IRQ_ENABLE_SET(reg_offset),
238 raw_spin_unlock_irqrestore(&pp->lock, flags);
241 static struct irq_chip ks_pcie_msi_irq_chip = {
242 .name = "KEYSTONE-PCI-MSI",
243 .irq_ack = ks_pcie_msi_irq_ack,
244 .irq_compose_msi_msg = ks_pcie_compose_msi_msg,
245 .irq_set_affinity = ks_pcie_msi_set_affinity,
246 .irq_mask = ks_pcie_msi_mask,
247 .irq_unmask = ks_pcie_msi_unmask,
250 static int ks_pcie_msi_host_init(struct pcie_port *pp)
252 pp->msi_irq_chip = &ks_pcie_msi_irq_chip;
253 return dw_pcie_allocate_domains(pp);
256 static void ks_pcie_handle_legacy_irq(struct keystone_pcie *ks_pcie,
259 struct dw_pcie *pci = ks_pcie->pci;
260 struct device *dev = pci->dev;
264 pending = ks_pcie_app_readl(ks_pcie, IRQ_STATUS(offset));
266 if (BIT(0) & pending) {
267 virq = irq_linear_revmap(ks_pcie->legacy_irq_domain, offset);
268 dev_dbg(dev, ": irq: irq_offset %d, virq %d\n", offset, virq);
269 generic_handle_irq(virq);
272 /* EOI the INTx interrupt */
273 ks_pcie_app_writel(ks_pcie, IRQ_EOI, offset);
276 static void ks_pcie_enable_error_irq(struct keystone_pcie *ks_pcie)
278 ks_pcie_app_writel(ks_pcie, ERR_IRQ_ENABLE_SET, ERR_IRQ_ALL);
281 static irqreturn_t ks_pcie_handle_error_irq(struct keystone_pcie *ks_pcie)
284 struct device *dev = ks_pcie->pci->dev;
286 reg = ks_pcie_app_readl(ks_pcie, ERR_IRQ_STATUS);
291 dev_err(dev, "System Error\n");
294 dev_err(dev, "Fatal Error\n");
296 if (reg & ERR_NONFATAL)
297 dev_dbg(dev, "Non Fatal Error\n");
300 dev_dbg(dev, "Correctable Error\n");
302 if (!ks_pcie->is_am6 && (reg & ERR_AXI))
303 dev_err(dev, "AXI tag lookup fatal Error\n");
305 if (reg & ERR_AER || (ks_pcie->is_am6 && (reg & AM6_ERR_AER)))
306 dev_err(dev, "ECRC Error\n");
308 ks_pcie_app_writel(ks_pcie, ERR_IRQ_STATUS, reg);
313 static void ks_pcie_ack_legacy_irq(struct irq_data *d)
317 static void ks_pcie_mask_legacy_irq(struct irq_data *d)
321 static void ks_pcie_unmask_legacy_irq(struct irq_data *d)
325 static struct irq_chip ks_pcie_legacy_irq_chip = {
326 .name = "Keystone-PCI-Legacy-IRQ",
327 .irq_ack = ks_pcie_ack_legacy_irq,
328 .irq_mask = ks_pcie_mask_legacy_irq,
329 .irq_unmask = ks_pcie_unmask_legacy_irq,
332 static int ks_pcie_init_legacy_irq_map(struct irq_domain *d,
334 irq_hw_number_t hw_irq)
336 irq_set_chip_and_handler(irq, &ks_pcie_legacy_irq_chip,
338 irq_set_chip_data(irq, d->host_data);
343 static const struct irq_domain_ops ks_pcie_legacy_irq_domain_ops = {
344 .map = ks_pcie_init_legacy_irq_map,
345 .xlate = irq_domain_xlate_onetwocell,
349 * ks_pcie_set_dbi_mode() - Set DBI mode to access overlaid BAR mask registers
350 * @ks_pcie: A pointer to the keystone_pcie structure which holds the KeyStone
351 * PCIe host controller driver information.
353 * Since modification of dbi_cs2 involves different clock domain, read the
354 * status back to ensure the transition is complete.
356 static void ks_pcie_set_dbi_mode(struct keystone_pcie *ks_pcie)
360 val = ks_pcie_app_readl(ks_pcie, CMD_STATUS);
362 ks_pcie_app_writel(ks_pcie, CMD_STATUS, val);
365 val = ks_pcie_app_readl(ks_pcie, CMD_STATUS);
366 } while (!(val & DBI_CS2));
370 * ks_pcie_clear_dbi_mode() - Disable DBI mode
371 * @ks_pcie: A pointer to the keystone_pcie structure which holds the KeyStone
372 * PCIe host controller driver information.
374 * Since modification of dbi_cs2 involves different clock domain, read the
375 * status back to ensure the transition is complete.
377 static void ks_pcie_clear_dbi_mode(struct keystone_pcie *ks_pcie)
381 val = ks_pcie_app_readl(ks_pcie, CMD_STATUS);
383 ks_pcie_app_writel(ks_pcie, CMD_STATUS, val);
386 val = ks_pcie_app_readl(ks_pcie, CMD_STATUS);
387 } while (val & DBI_CS2);
390 static void ks_pcie_setup_rc_app_regs(struct keystone_pcie *ks_pcie)
393 u32 num_viewport = ks_pcie->num_viewport;
394 struct dw_pcie *pci = ks_pcie->pci;
395 struct pcie_port *pp = &pci->pp;
397 struct resource *mem;
400 mem = resource_list_first_type(&pp->bridge->windows, IORESOURCE_MEM)->res;
404 /* Disable BARs for inbound access */
405 ks_pcie_set_dbi_mode(ks_pcie);
406 dw_pcie_writel_dbi(pci, PCI_BASE_ADDRESS_0, 0);
407 dw_pcie_writel_dbi(pci, PCI_BASE_ADDRESS_1, 0);
408 ks_pcie_clear_dbi_mode(ks_pcie);
413 val = ilog2(OB_WIN_SIZE);
414 ks_pcie_app_writel(ks_pcie, OB_SIZE, val);
416 /* Using Direct 1:1 mapping of RC <-> PCI memory space */
417 for (i = 0; i < num_viewport && (start < end); i++) {
418 ks_pcie_app_writel(ks_pcie, OB_OFFSET_INDEX(i),
419 lower_32_bits(start) | OB_ENABLEN);
420 ks_pcie_app_writel(ks_pcie, OB_OFFSET_HI(i),
421 upper_32_bits(start));
422 start += OB_WIN_SIZE * SZ_1M;
425 val = ks_pcie_app_readl(ks_pcie, CMD_STATUS);
426 val |= OB_XLAT_EN_VAL;
427 ks_pcie_app_writel(ks_pcie, CMD_STATUS, val);
430 static void __iomem *ks_pcie_other_map_bus(struct pci_bus *bus,
431 unsigned int devfn, int where)
433 struct pcie_port *pp = bus->sysdata;
434 struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
435 struct keystone_pcie *ks_pcie = to_keystone_pcie(pci);
438 reg = CFG_BUS(bus->number) | CFG_DEVICE(PCI_SLOT(devfn)) |
439 CFG_FUNC(PCI_FUNC(devfn));
440 if (!pci_is_root_bus(bus->parent))
442 ks_pcie_app_writel(ks_pcie, CFG_SETUP, reg);
444 return pp->va_cfg0_base + where;
447 static struct pci_ops ks_child_pcie_ops = {
448 .map_bus = ks_pcie_other_map_bus,
449 .read = pci_generic_config_read,
450 .write = pci_generic_config_write,
454 * ks_pcie_v3_65_add_bus() - keystone add_bus post initialization
455 * @bus: A pointer to the PCI bus structure.
457 * This sets BAR0 to enable inbound access for MSI_IRQ register
459 static int ks_pcie_v3_65_add_bus(struct pci_bus *bus)
461 struct pcie_port *pp = bus->sysdata;
462 struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
463 struct keystone_pcie *ks_pcie = to_keystone_pcie(pci);
465 if (!pci_is_root_bus(bus))
468 /* Configure and set up BAR0 */
469 ks_pcie_set_dbi_mode(ks_pcie);
472 dw_pcie_writel_dbi(pci, PCI_BASE_ADDRESS_0, 1);
473 dw_pcie_writel_dbi(pci, PCI_BASE_ADDRESS_0, SZ_4K - 1);
475 ks_pcie_clear_dbi_mode(ks_pcie);
478 * For BAR0, just setting bus address for inbound writes (MSI) should
479 * be sufficient. Use physical address to avoid any conflicts.
481 dw_pcie_writel_dbi(pci, PCI_BASE_ADDRESS_0, ks_pcie->app.start);
486 static struct pci_ops ks_pcie_ops = {
487 .map_bus = dw_pcie_own_conf_map_bus,
488 .read = pci_generic_config_read,
489 .write = pci_generic_config_write,
490 .add_bus = ks_pcie_v3_65_add_bus,
494 * ks_pcie_link_up() - Check if link up
495 * @pci: A pointer to the dw_pcie structure which holds the DesignWare PCIe host
496 * controller driver information.
498 static int ks_pcie_link_up(struct dw_pcie *pci)
502 val = dw_pcie_readl_dbi(pci, PCIE_PORT_DEBUG0);
503 val &= PORT_LOGIC_LTSSM_STATE_MASK;
504 return (val == PORT_LOGIC_LTSSM_STATE_L0);
507 static void ks_pcie_stop_link(struct dw_pcie *pci)
509 struct keystone_pcie *ks_pcie = to_keystone_pcie(pci);
512 /* Disable Link training */
513 val = ks_pcie_app_readl(ks_pcie, CMD_STATUS);
514 val &= ~LTSSM_EN_VAL;
515 ks_pcie_app_writel(ks_pcie, CMD_STATUS, val);
518 static int ks_pcie_start_link(struct dw_pcie *pci)
520 struct keystone_pcie *ks_pcie = to_keystone_pcie(pci);
523 /* Initiate Link Training */
524 val = ks_pcie_app_readl(ks_pcie, CMD_STATUS);
525 ks_pcie_app_writel(ks_pcie, CMD_STATUS, LTSSM_EN_VAL | val);
530 static void ks_pcie_quirk(struct pci_dev *dev)
532 struct pci_bus *bus = dev->bus;
533 struct pci_dev *bridge;
534 static const struct pci_device_id rc_pci_devids[] = {
535 { PCI_DEVICE(PCI_VENDOR_ID_TI, PCIE_RC_K2HK),
536 .class = PCI_CLASS_BRIDGE_PCI << 8, .class_mask = ~0, },
537 { PCI_DEVICE(PCI_VENDOR_ID_TI, PCIE_RC_K2E),
538 .class = PCI_CLASS_BRIDGE_PCI << 8, .class_mask = ~0, },
539 { PCI_DEVICE(PCI_VENDOR_ID_TI, PCIE_RC_K2L),
540 .class = PCI_CLASS_BRIDGE_PCI << 8, .class_mask = ~0, },
541 { PCI_DEVICE(PCI_VENDOR_ID_TI, PCIE_RC_K2G),
542 .class = PCI_CLASS_BRIDGE_PCI << 8, .class_mask = ~0, },
546 if (pci_is_root_bus(bus))
549 /* look for the host bridge */
550 while (!pci_is_root_bus(bus)) {
559 * Keystone PCI controller has a h/w limitation of
560 * 256 bytes maximum read request size. It can't handle
561 * anything higher than this. So force this limit on
562 * all downstream devices.
564 if (pci_match_id(rc_pci_devids, bridge)) {
565 if (pcie_get_readrq(dev) > 256) {
566 dev_info(&dev->dev, "limiting MRRS to 256\n");
567 pcie_set_readrq(dev, 256);
571 DECLARE_PCI_FIXUP_ENABLE(PCI_ANY_ID, PCI_ANY_ID, ks_pcie_quirk);
573 static void ks_pcie_msi_irq_handler(struct irq_desc *desc)
575 unsigned int irq = desc->irq_data.hwirq;
576 struct keystone_pcie *ks_pcie = irq_desc_get_handler_data(desc);
577 u32 offset = irq - ks_pcie->msi_host_irq;
578 struct dw_pcie *pci = ks_pcie->pci;
579 struct pcie_port *pp = &pci->pp;
580 struct device *dev = pci->dev;
581 struct irq_chip *chip = irq_desc_get_chip(desc);
582 u32 vector, virq, reg, pos;
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);
593 reg = ks_pcie_app_readl(ks_pcie, MSI_IRQ_STATUS(offset));
595 * MSI0 status bit 0-3 shows vectors 0, 8, 16, 24, MSI1 status bit
596 * shows 1, 9, 17, 25 and so forth
598 for (pos = 0; pos < 4; pos++) {
599 if (!(reg & BIT(pos)))
602 vector = offset + (pos << 3);
603 virq = irq_linear_revmap(pp->irq_domain, vector);
604 dev_dbg(dev, "irq: bit %d, vector %d, virq %d\n", pos, vector,
606 generic_handle_irq(virq);
609 chained_irq_exit(chip, desc);
613 * ks_pcie_legacy_irq_handler() - Handle legacy interrupt
614 * @desc: Pointer to irq descriptor
616 * Traverse through pending legacy interrupts and invoke handler for each. Also
617 * takes care of interrupt controller level mask/ack operation.
619 static void ks_pcie_legacy_irq_handler(struct irq_desc *desc)
621 unsigned int irq = irq_desc_get_irq(desc);
622 struct keystone_pcie *ks_pcie = irq_desc_get_handler_data(desc);
623 struct dw_pcie *pci = ks_pcie->pci;
624 struct device *dev = pci->dev;
625 u32 irq_offset = irq - ks_pcie->legacy_host_irqs[0];
626 struct irq_chip *chip = irq_desc_get_chip(desc);
628 dev_dbg(dev, ": Handling legacy irq %d\n", irq);
631 * The chained irq handler installation would have replaced normal
632 * interrupt driver handler so we need to take care of mask/unmask and
635 chained_irq_enter(chip, desc);
636 ks_pcie_handle_legacy_irq(ks_pcie, irq_offset);
637 chained_irq_exit(chip, desc);
640 static int ks_pcie_config_msi_irq(struct keystone_pcie *ks_pcie)
642 struct device *dev = ks_pcie->pci->dev;
643 struct device_node *np = ks_pcie->np;
644 struct device_node *intc_np;
645 struct irq_data *irq_data;
646 int irq_count, irq, ret, i;
648 if (!IS_ENABLED(CONFIG_PCI_MSI))
651 intc_np = of_get_child_by_name(np, "msi-interrupt-controller");
655 dev_warn(dev, "msi-interrupt-controller node is absent\n");
659 irq_count = of_irq_count(intc_np);
661 dev_err(dev, "No IRQ entries in msi-interrupt-controller\n");
666 for (i = 0; i < irq_count; i++) {
667 irq = irq_of_parse_and_map(intc_np, i);
673 if (!ks_pcie->msi_host_irq) {
674 irq_data = irq_get_irq_data(irq);
679 ks_pcie->msi_host_irq = irq_data->hwirq;
682 irq_set_chained_handler_and_data(irq, ks_pcie_msi_irq_handler,
686 of_node_put(intc_np);
690 of_node_put(intc_np);
694 static int ks_pcie_config_legacy_irq(struct keystone_pcie *ks_pcie)
696 struct device *dev = ks_pcie->pci->dev;
697 struct irq_domain *legacy_irq_domain;
698 struct device_node *np = ks_pcie->np;
699 struct device_node *intc_np;
700 int irq_count, irq, ret = 0, i;
702 intc_np = of_get_child_by_name(np, "legacy-interrupt-controller");
705 * Since legacy interrupts are modeled as edge-interrupts in
706 * AM6, keep it disabled for now.
710 dev_warn(dev, "legacy-interrupt-controller node is absent\n");
714 irq_count = of_irq_count(intc_np);
716 dev_err(dev, "No IRQ entries in legacy-interrupt-controller\n");
721 for (i = 0; i < irq_count; i++) {
722 irq = irq_of_parse_and_map(intc_np, i);
727 ks_pcie->legacy_host_irqs[i] = irq;
729 irq_set_chained_handler_and_data(irq,
730 ks_pcie_legacy_irq_handler,
735 irq_domain_add_linear(intc_np, PCI_NUM_INTX,
736 &ks_pcie_legacy_irq_domain_ops, NULL);
737 if (!legacy_irq_domain) {
738 dev_err(dev, "Failed to add irq domain for legacy irqs\n");
742 ks_pcie->legacy_irq_domain = legacy_irq_domain;
744 for (i = 0; i < PCI_NUM_INTX; i++)
745 ks_pcie_app_writel(ks_pcie, IRQ_ENABLE_SET(i), INTx_EN);
748 of_node_put(intc_np);
754 * When a PCI device does not exist during config cycles, keystone host gets a
755 * bus error instead of returning 0xffffffff. This handler always returns 0
756 * for this kind of faults.
758 static int ks_pcie_fault(unsigned long addr, unsigned int fsr,
759 struct pt_regs *regs)
761 unsigned long instr = *(unsigned long *) instruction_pointer(regs);
763 if ((instr & 0x0e100090) == 0x00100090) {
764 int reg = (instr >> 12) & 15;
766 regs->uregs[reg] = -1;
774 static int __init ks_pcie_init_id(struct keystone_pcie *ks_pcie)
778 struct regmap *devctrl_regs;
779 struct dw_pcie *pci = ks_pcie->pci;
780 struct device *dev = pci->dev;
781 struct device_node *np = dev->of_node;
783 devctrl_regs = syscon_regmap_lookup_by_phandle(np, "ti,syscon-pcie-id");
784 if (IS_ERR(devctrl_regs))
785 return PTR_ERR(devctrl_regs);
787 ret = regmap_read(devctrl_regs, 0, &id);
791 dw_pcie_dbi_ro_wr_en(pci);
792 dw_pcie_writew_dbi(pci, PCI_VENDOR_ID, id & PCIE_VENDORID_MASK);
793 dw_pcie_writew_dbi(pci, PCI_DEVICE_ID, id >> PCIE_DEVICEID_SHIFT);
794 dw_pcie_dbi_ro_wr_dis(pci);
799 static int __init ks_pcie_host_init(struct pcie_port *pp)
801 struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
802 struct keystone_pcie *ks_pcie = to_keystone_pcie(pci);
805 pp->bridge->ops = &ks_pcie_ops;
806 if (!ks_pcie->is_am6)
807 pp->bridge->child_ops = &ks_child_pcie_ops;
809 ret = ks_pcie_config_legacy_irq(ks_pcie);
813 ret = ks_pcie_config_msi_irq(ks_pcie);
817 ks_pcie_stop_link(pci);
818 ks_pcie_setup_rc_app_regs(ks_pcie);
819 writew(PCI_IO_RANGE_TYPE_32 | (PCI_IO_RANGE_TYPE_32 << 8),
820 pci->dbi_base + PCI_IO_BASE);
822 ret = ks_pcie_init_id(ks_pcie);
828 * PCIe access errors that result into OCP errors are caught by ARM as
831 hook_fault_code(17, ks_pcie_fault, SIGBUS, 0,
832 "Asynchronous external abort");
838 static const struct dw_pcie_host_ops ks_pcie_host_ops = {
839 .host_init = ks_pcie_host_init,
840 .msi_host_init = ks_pcie_msi_host_init,
843 static const struct dw_pcie_host_ops ks_pcie_am654_host_ops = {
844 .host_init = ks_pcie_host_init,
847 static irqreturn_t ks_pcie_err_irq_handler(int irq, void *priv)
849 struct keystone_pcie *ks_pcie = priv;
851 return ks_pcie_handle_error_irq(ks_pcie);
854 static void ks_pcie_am654_write_dbi2(struct dw_pcie *pci, void __iomem *base,
855 u32 reg, size_t size, u32 val)
857 struct keystone_pcie *ks_pcie = to_keystone_pcie(pci);
859 ks_pcie_set_dbi_mode(ks_pcie);
860 dw_pcie_write(base + reg, size, val);
861 ks_pcie_clear_dbi_mode(ks_pcie);
864 static const struct dw_pcie_ops ks_pcie_dw_pcie_ops = {
865 .start_link = ks_pcie_start_link,
866 .stop_link = ks_pcie_stop_link,
867 .link_up = ks_pcie_link_up,
868 .write_dbi2 = ks_pcie_am654_write_dbi2,
871 static void ks_pcie_am654_ep_init(struct dw_pcie_ep *ep)
873 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
876 ep->page_size = AM654_WIN_SIZE;
877 flags = PCI_BASE_ADDRESS_SPACE_MEMORY | PCI_BASE_ADDRESS_MEM_TYPE_32;
878 dw_pcie_writel_dbi2(pci, PCI_BASE_ADDRESS_0, APP_ADDR_SPACE_0 - 1);
879 dw_pcie_writel_dbi(pci, PCI_BASE_ADDRESS_0, flags);
882 static void ks_pcie_am654_raise_legacy_irq(struct keystone_pcie *ks_pcie)
884 struct dw_pcie *pci = ks_pcie->pci;
887 int_pin = dw_pcie_readb_dbi(pci, PCI_INTERRUPT_PIN);
888 if (int_pin == 0 || int_pin > 4)
891 ks_pcie_app_writel(ks_pcie, PCIE_LEGACY_IRQ_ENABLE_SET(int_pin),
893 ks_pcie_app_writel(ks_pcie, PCIE_EP_IRQ_SET, INT_ENABLE);
895 ks_pcie_app_writel(ks_pcie, PCIE_EP_IRQ_CLR, INT_ENABLE);
896 ks_pcie_app_writel(ks_pcie, PCIE_LEGACY_IRQ_ENABLE_CLR(int_pin),
900 static int ks_pcie_am654_raise_irq(struct dw_pcie_ep *ep, u8 func_no,
901 enum pci_epc_irq_type type,
904 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
905 struct keystone_pcie *ks_pcie = to_keystone_pcie(pci);
908 case PCI_EPC_IRQ_LEGACY:
909 ks_pcie_am654_raise_legacy_irq(ks_pcie);
911 case PCI_EPC_IRQ_MSI:
912 dw_pcie_ep_raise_msi_irq(ep, func_no, interrupt_num);
914 case PCI_EPC_IRQ_MSIX:
915 dw_pcie_ep_raise_msix_irq(ep, func_no, interrupt_num);
918 dev_err(pci->dev, "UNKNOWN IRQ type\n");
925 static const struct pci_epc_features ks_pcie_am654_epc_features = {
926 .linkup_notifier = false,
928 .msix_capable = true,
929 .reserved_bar = 1 << BAR_0 | 1 << BAR_1,
930 .bar_fixed_64bit = 1 << BAR_0,
931 .bar_fixed_size[2] = SZ_1M,
932 .bar_fixed_size[3] = SZ_64K,
933 .bar_fixed_size[4] = 256,
934 .bar_fixed_size[5] = SZ_1M,
938 static const struct pci_epc_features*
939 ks_pcie_am654_get_features(struct dw_pcie_ep *ep)
941 return &ks_pcie_am654_epc_features;
944 static const struct dw_pcie_ep_ops ks_pcie_am654_ep_ops = {
945 .ep_init = ks_pcie_am654_ep_init,
946 .raise_irq = ks_pcie_am654_raise_irq,
947 .get_features = &ks_pcie_am654_get_features,
950 static void ks_pcie_disable_phy(struct keystone_pcie *ks_pcie)
952 int num_lanes = ks_pcie->num_lanes;
954 while (num_lanes--) {
955 phy_power_off(ks_pcie->phy[num_lanes]);
956 phy_exit(ks_pcie->phy[num_lanes]);
960 static int ks_pcie_enable_phy(struct keystone_pcie *ks_pcie)
964 int num_lanes = ks_pcie->num_lanes;
966 for (i = 0; i < num_lanes; i++) {
967 ret = phy_reset(ks_pcie->phy[i]);
971 ret = phy_init(ks_pcie->phy[i]);
975 ret = phy_power_on(ks_pcie->phy[i]);
977 phy_exit(ks_pcie->phy[i]);
986 phy_power_off(ks_pcie->phy[i]);
987 phy_exit(ks_pcie->phy[i]);
993 static int ks_pcie_set_mode(struct device *dev)
995 struct device_node *np = dev->of_node;
996 struct regmap *syscon;
1001 syscon = syscon_regmap_lookup_by_phandle(np, "ti,syscon-pcie-mode");
1005 mask = KS_PCIE_DEV_TYPE_MASK | KS_PCIE_SYSCLOCKOUTEN;
1006 val = KS_PCIE_DEV_TYPE(RC) | KS_PCIE_SYSCLOCKOUTEN;
1008 ret = regmap_update_bits(syscon, 0, mask, val);
1010 dev_err(dev, "failed to set pcie mode\n");
1017 static int ks_pcie_am654_set_mode(struct device *dev,
1018 enum dw_pcie_device_mode mode)
1020 struct device_node *np = dev->of_node;
1021 struct regmap *syscon;
1026 syscon = syscon_regmap_lookup_by_phandle(np, "ti,syscon-pcie-mode");
1030 mask = AM654_PCIE_DEV_TYPE_MASK;
1033 case DW_PCIE_RC_TYPE:
1036 case DW_PCIE_EP_TYPE:
1040 dev_err(dev, "INVALID device type %d\n", mode);
1044 ret = regmap_update_bits(syscon, 0, mask, val);
1046 dev_err(dev, "failed to set pcie mode\n");
1053 static const struct ks_pcie_of_data ks_pcie_rc_of_data = {
1054 .host_ops = &ks_pcie_host_ops,
1058 static const struct ks_pcie_of_data ks_pcie_am654_rc_of_data = {
1059 .host_ops = &ks_pcie_am654_host_ops,
1060 .mode = DW_PCIE_RC_TYPE,
1064 static const struct ks_pcie_of_data ks_pcie_am654_ep_of_data = {
1065 .ep_ops = &ks_pcie_am654_ep_ops,
1066 .mode = DW_PCIE_EP_TYPE,
1070 static const struct of_device_id ks_pcie_of_match[] = {
1073 .data = &ks_pcie_rc_of_data,
1074 .compatible = "ti,keystone-pcie",
1077 .data = &ks_pcie_am654_rc_of_data,
1078 .compatible = "ti,am654-pcie-rc",
1081 .data = &ks_pcie_am654_ep_of_data,
1082 .compatible = "ti,am654-pcie-ep",
1087 static int __init ks_pcie_probe(struct platform_device *pdev)
1089 const struct dw_pcie_host_ops *host_ops;
1090 const struct dw_pcie_ep_ops *ep_ops;
1091 struct device *dev = &pdev->dev;
1092 struct device_node *np = dev->of_node;
1093 const struct ks_pcie_of_data *data;
1094 const struct of_device_id *match;
1095 enum dw_pcie_device_mode mode;
1096 struct dw_pcie *pci;
1097 struct keystone_pcie *ks_pcie;
1098 struct device_link **link;
1099 struct gpio_desc *gpiod;
1100 struct resource *res;
1101 unsigned int version;
1111 match = of_match_device(of_match_ptr(ks_pcie_of_match), dev);
1112 data = (struct ks_pcie_of_data *)match->data;
1116 version = data->version;
1117 host_ops = data->host_ops;
1118 ep_ops = data->ep_ops;
1121 ks_pcie = devm_kzalloc(dev, sizeof(*ks_pcie), GFP_KERNEL);
1125 pci = devm_kzalloc(dev, sizeof(*pci), GFP_KERNEL);
1129 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "app");
1130 ks_pcie->va_app_base = devm_ioremap_resource(dev, res);
1131 if (IS_ERR(ks_pcie->va_app_base))
1132 return PTR_ERR(ks_pcie->va_app_base);
1134 ks_pcie->app = *res;
1136 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "dbics");
1137 base = devm_pci_remap_cfg_resource(dev, res);
1139 return PTR_ERR(base);
1141 if (of_device_is_compatible(np, "ti,am654-pcie-rc"))
1142 ks_pcie->is_am6 = true;
1144 pci->dbi_base = base;
1145 pci->dbi_base2 = base;
1147 pci->ops = &ks_pcie_dw_pcie_ops;
1148 pci->version = version;
1150 irq = platform_get_irq(pdev, 0);
1154 ret = request_irq(irq, ks_pcie_err_irq_handler, IRQF_SHARED,
1155 "ks-pcie-error-irq", ks_pcie);
1157 dev_err(dev, "failed to request error IRQ %d\n",
1162 ret = of_property_read_u32(np, "num-lanes", &num_lanes);
1166 phy = devm_kzalloc(dev, sizeof(*phy) * num_lanes, GFP_KERNEL);
1170 link = devm_kzalloc(dev, sizeof(*link) * num_lanes, GFP_KERNEL);
1174 for (i = 0; i < num_lanes; i++) {
1175 snprintf(name, sizeof(name), "pcie-phy%d", i);
1176 phy[i] = devm_phy_optional_get(dev, name);
1177 if (IS_ERR(phy[i])) {
1178 ret = PTR_ERR(phy[i]);
1185 link[i] = device_link_add(dev, &phy[i]->dev, DL_FLAG_STATELESS);
1194 ks_pcie->link = link;
1195 ks_pcie->num_lanes = num_lanes;
1198 gpiod = devm_gpiod_get_optional(dev, "reset",
1200 if (IS_ERR(gpiod)) {
1201 ret = PTR_ERR(gpiod);
1202 if (ret != -EPROBE_DEFER)
1203 dev_err(dev, "Failed to get reset GPIO\n");
1207 ret = ks_pcie_enable_phy(ks_pcie);
1209 dev_err(dev, "failed to enable phy\n");
1213 platform_set_drvdata(pdev, ks_pcie);
1214 pm_runtime_enable(dev);
1215 ret = pm_runtime_get_sync(dev);
1217 dev_err(dev, "pm_runtime_get_sync failed\n");
1221 if (pci->version >= 0x480A)
1222 ret = ks_pcie_am654_set_mode(dev, mode);
1224 ret = ks_pcie_set_mode(dev);
1229 case DW_PCIE_RC_TYPE:
1230 if (!IS_ENABLED(CONFIG_PCI_KEYSTONE_HOST)) {
1235 ret = of_property_read_u32(np, "num-viewport", &num_viewport);
1237 dev_err(dev, "unable to read *num-viewport* property\n");
1242 * "Power Sequencing and Reset Signal Timings" table in
1243 * PCI EXPRESS CARD ELECTROMECHANICAL SPECIFICATION, REV. 2.0
1244 * indicates PERST# should be deasserted after minimum of 100us
1245 * once REFCLK is stable. The REFCLK to the connector in RC
1246 * mode is selected while enabling the PHY. So deassert PERST#
1250 usleep_range(100, 200);
1251 gpiod_set_value_cansleep(gpiod, 1);
1254 ks_pcie->num_viewport = num_viewport;
1255 pci->pp.ops = host_ops;
1256 ret = dw_pcie_host_init(&pci->pp);
1260 case DW_PCIE_EP_TYPE:
1261 if (!IS_ENABLED(CONFIG_PCI_KEYSTONE_EP)) {
1266 pci->ep.ops = ep_ops;
1267 ret = dw_pcie_ep_init(&pci->ep);
1272 dev_err(dev, "INVALID device type %d\n", mode);
1275 ks_pcie_enable_error_irq(ks_pcie);
1280 pm_runtime_put(dev);
1281 pm_runtime_disable(dev);
1282 ks_pcie_disable_phy(ks_pcie);
1285 while (--i >= 0 && link[i])
1286 device_link_del(link[i]);
1291 static int __exit ks_pcie_remove(struct platform_device *pdev)
1293 struct keystone_pcie *ks_pcie = platform_get_drvdata(pdev);
1294 struct device_link **link = ks_pcie->link;
1295 int num_lanes = ks_pcie->num_lanes;
1296 struct device *dev = &pdev->dev;
1298 pm_runtime_put(dev);
1299 pm_runtime_disable(dev);
1300 ks_pcie_disable_phy(ks_pcie);
1302 device_link_del(link[num_lanes]);
1307 static struct platform_driver ks_pcie_driver __refdata = {
1308 .probe = ks_pcie_probe,
1309 .remove = __exit_p(ks_pcie_remove),
1311 .name = "keystone-pcie",
1312 .of_match_table = of_match_ptr(ks_pcie_of_match),
1315 builtin_platform_driver(ks_pcie_driver);