1 // SPDX-License-Identifier: GPL-2.0
3 * pcie-dra7xx - PCIe controller driver for TI DRA7xx SoCs
5 * Copyright (C) 2013-2014 Texas Instruments Incorporated - http://www.ti.com
7 * Authors: Kishon Vijay Abraham I <kishon@ti.com>
10 #include <linux/delay.h>
11 #include <linux/device.h>
12 #include <linux/err.h>
13 #include <linux/interrupt.h>
14 #include <linux/irq.h>
15 #include <linux/irqdomain.h>
16 #include <linux/kernel.h>
17 #include <linux/init.h>
18 #include <linux/of_device.h>
19 #include <linux/of_gpio.h>
20 #include <linux/of_pci.h>
21 #include <linux/pci.h>
22 #include <linux/phy/phy.h>
23 #include <linux/platform_device.h>
24 #include <linux/pm_runtime.h>
25 #include <linux/resource.h>
26 #include <linux/types.h>
27 #include <linux/mfd/syscon.h>
28 #include <linux/regmap.h>
30 #include "../../pci.h"
31 #include "pcie-designware.h"
33 /* PCIe controller wrapper DRA7XX configuration registers */
35 #define PCIECTRL_DRA7XX_CONF_IRQSTATUS_MAIN 0x0024
36 #define PCIECTRL_DRA7XX_CONF_IRQENABLE_SET_MAIN 0x0028
37 #define ERR_SYS BIT(0)
38 #define ERR_FATAL BIT(1)
39 #define ERR_NONFATAL BIT(2)
40 #define ERR_COR BIT(3)
41 #define ERR_AXI BIT(4)
42 #define ERR_ECRC BIT(5)
43 #define PME_TURN_OFF BIT(8)
44 #define PME_TO_ACK BIT(9)
45 #define PM_PME BIT(10)
46 #define LINK_REQ_RST BIT(11)
47 #define LINK_UP_EVT BIT(12)
48 #define CFG_BME_EVT BIT(13)
49 #define CFG_MSE_EVT BIT(14)
50 #define INTERRUPTS (ERR_SYS | ERR_FATAL | ERR_NONFATAL | ERR_COR | ERR_AXI | \
51 ERR_ECRC | PME_TURN_OFF | PME_TO_ACK | PM_PME | \
52 LINK_REQ_RST | LINK_UP_EVT | CFG_BME_EVT | CFG_MSE_EVT)
54 #define PCIECTRL_DRA7XX_CONF_IRQSTATUS_MSI 0x0034
55 #define PCIECTRL_DRA7XX_CONF_IRQENABLE_SET_MSI 0x0038
61 #define LEG_EP_INTERRUPTS (INTA | INTB | INTC | INTD)
63 #define PCIECTRL_TI_CONF_DEVICE_TYPE 0x0100
64 #define DEVICE_TYPE_EP 0x0
65 #define DEVICE_TYPE_LEG_EP 0x1
66 #define DEVICE_TYPE_RC 0x4
68 #define PCIECTRL_DRA7XX_CONF_DEVICE_CMD 0x0104
71 #define PCIECTRL_DRA7XX_CONF_PHY_CS 0x010C
72 #define LINK_UP BIT(16)
73 #define DRA7XX_CPU_TO_BUS_ADDR 0x0FFFFFFF
75 #define EXP_CAP_ID_OFFSET 0x70
77 #define PCIECTRL_TI_CONF_INTX_ASSERT 0x0124
78 #define PCIECTRL_TI_CONF_INTX_DEASSERT 0x0128
80 #define PCIECTRL_TI_CONF_MSI_XMT 0x012c
81 #define MSI_REQ_GRANT BIT(0)
82 #define MSI_VECTOR_SHIFT 7
86 void __iomem
*base
; /* DT ti_conf */
87 int phy_count
; /* DT phy-names count */
90 struct irq_domain
*irq_domain
;
91 enum dw_pcie_device_mode mode
;
94 struct dra7xx_pcie_of_data
{
95 enum dw_pcie_device_mode mode
;
98 #define to_dra7xx_pcie(x) dev_get_drvdata((x)->dev)
100 static inline u32
dra7xx_pcie_readl(struct dra7xx_pcie
*pcie
, u32 offset
)
102 return readl(pcie
->base
+ offset
);
105 static inline void dra7xx_pcie_writel(struct dra7xx_pcie
*pcie
, u32 offset
,
108 writel(value
, pcie
->base
+ offset
);
111 static u64
dra7xx_pcie_cpu_addr_fixup(struct dw_pcie
*pci
, u64 pci_addr
)
113 return pci_addr
& DRA7XX_CPU_TO_BUS_ADDR
;
116 static int dra7xx_pcie_link_up(struct dw_pcie
*pci
)
118 struct dra7xx_pcie
*dra7xx
= to_dra7xx_pcie(pci
);
119 u32 reg
= dra7xx_pcie_readl(dra7xx
, PCIECTRL_DRA7XX_CONF_PHY_CS
);
121 return !!(reg
& LINK_UP
);
124 static void dra7xx_pcie_stop_link(struct dw_pcie
*pci
)
126 struct dra7xx_pcie
*dra7xx
= to_dra7xx_pcie(pci
);
129 reg
= dra7xx_pcie_readl(dra7xx
, PCIECTRL_DRA7XX_CONF_DEVICE_CMD
);
131 dra7xx_pcie_writel(dra7xx
, PCIECTRL_DRA7XX_CONF_DEVICE_CMD
, reg
);
134 static int dra7xx_pcie_establish_link(struct dw_pcie
*pci
)
136 struct dra7xx_pcie
*dra7xx
= to_dra7xx_pcie(pci
);
137 struct device
*dev
= pci
->dev
;
139 u32 exp_cap_off
= EXP_CAP_ID_OFFSET
;
141 if (dw_pcie_link_up(pci
)) {
142 dev_err(dev
, "link is already up\n");
146 if (dra7xx
->link_gen
== 1) {
147 dw_pcie_read(pci
->dbi_base
+ exp_cap_off
+ PCI_EXP_LNKCAP
,
149 if ((reg
& PCI_EXP_LNKCAP_SLS
) != PCI_EXP_LNKCAP_SLS_2_5GB
) {
150 reg
&= ~((u32
)PCI_EXP_LNKCAP_SLS
);
151 reg
|= PCI_EXP_LNKCAP_SLS_2_5GB
;
152 dw_pcie_write(pci
->dbi_base
+ exp_cap_off
+
153 PCI_EXP_LNKCAP
, 4, reg
);
156 dw_pcie_read(pci
->dbi_base
+ exp_cap_off
+ PCI_EXP_LNKCTL2
,
158 if ((reg
& PCI_EXP_LNKCAP_SLS
) != PCI_EXP_LNKCAP_SLS_2_5GB
) {
159 reg
&= ~((u32
)PCI_EXP_LNKCAP_SLS
);
160 reg
|= PCI_EXP_LNKCAP_SLS_2_5GB
;
161 dw_pcie_write(pci
->dbi_base
+ exp_cap_off
+
162 PCI_EXP_LNKCTL2
, 2, reg
);
166 reg
= dra7xx_pcie_readl(dra7xx
, PCIECTRL_DRA7XX_CONF_DEVICE_CMD
);
168 dra7xx_pcie_writel(dra7xx
, PCIECTRL_DRA7XX_CONF_DEVICE_CMD
, reg
);
173 static void dra7xx_pcie_enable_msi_interrupts(struct dra7xx_pcie
*dra7xx
)
175 dra7xx_pcie_writel(dra7xx
, PCIECTRL_DRA7XX_CONF_IRQSTATUS_MSI
,
176 LEG_EP_INTERRUPTS
| MSI
);
178 dra7xx_pcie_writel(dra7xx
,
179 PCIECTRL_DRA7XX_CONF_IRQENABLE_SET_MSI
,
180 MSI
| LEG_EP_INTERRUPTS
);
183 static void dra7xx_pcie_enable_wrapper_interrupts(struct dra7xx_pcie
*dra7xx
)
185 dra7xx_pcie_writel(dra7xx
, PCIECTRL_DRA7XX_CONF_IRQSTATUS_MAIN
,
187 dra7xx_pcie_writel(dra7xx
, PCIECTRL_DRA7XX_CONF_IRQENABLE_SET_MAIN
,
191 static void dra7xx_pcie_enable_interrupts(struct dra7xx_pcie
*dra7xx
)
193 dra7xx_pcie_enable_wrapper_interrupts(dra7xx
);
194 dra7xx_pcie_enable_msi_interrupts(dra7xx
);
197 static int dra7xx_pcie_host_init(struct pcie_port
*pp
)
199 struct dw_pcie
*pci
= to_dw_pcie_from_pp(pp
);
200 struct dra7xx_pcie
*dra7xx
= to_dra7xx_pcie(pci
);
202 dw_pcie_setup_rc(pp
);
204 dra7xx_pcie_establish_link(pci
);
205 dw_pcie_wait_for_link(pci
);
206 dw_pcie_msi_init(pp
);
207 dra7xx_pcie_enable_interrupts(dra7xx
);
212 static const struct dw_pcie_host_ops dra7xx_pcie_host_ops
= {
213 .host_init
= dra7xx_pcie_host_init
,
216 static int dra7xx_pcie_intx_map(struct irq_domain
*domain
, unsigned int irq
,
217 irq_hw_number_t hwirq
)
219 irq_set_chip_and_handler(irq
, &dummy_irq_chip
, handle_simple_irq
);
220 irq_set_chip_data(irq
, domain
->host_data
);
225 static const struct irq_domain_ops intx_domain_ops
= {
226 .map
= dra7xx_pcie_intx_map
,
227 .xlate
= pci_irqd_intx_xlate
,
230 static int dra7xx_pcie_init_irq_domain(struct pcie_port
*pp
)
232 struct dw_pcie
*pci
= to_dw_pcie_from_pp(pp
);
233 struct device
*dev
= pci
->dev
;
234 struct dra7xx_pcie
*dra7xx
= to_dra7xx_pcie(pci
);
235 struct device_node
*node
= dev
->of_node
;
236 struct device_node
*pcie_intc_node
= of_get_next_child(node
, NULL
);
238 if (!pcie_intc_node
) {
239 dev_err(dev
, "No PCIe Intc node found\n");
243 dra7xx
->irq_domain
= irq_domain_add_linear(pcie_intc_node
, PCI_NUM_INTX
,
244 &intx_domain_ops
, pp
);
245 if (!dra7xx
->irq_domain
) {
246 dev_err(dev
, "Failed to get a INTx IRQ domain\n");
253 static irqreturn_t
dra7xx_pcie_msi_irq_handler(int irq
, void *arg
)
255 struct dra7xx_pcie
*dra7xx
= arg
;
256 struct dw_pcie
*pci
= dra7xx
->pci
;
257 struct pcie_port
*pp
= &pci
->pp
;
261 reg
= dra7xx_pcie_readl(dra7xx
, PCIECTRL_DRA7XX_CONF_IRQSTATUS_MSI
);
265 dw_handle_msi_irq(pp
);
271 for_each_set_bit(bit
, ®
, PCI_NUM_INTX
) {
272 virq
= irq_find_mapping(dra7xx
->irq_domain
, bit
);
274 generic_handle_irq(virq
);
279 dra7xx_pcie_writel(dra7xx
, PCIECTRL_DRA7XX_CONF_IRQSTATUS_MSI
, reg
);
284 static irqreturn_t
dra7xx_pcie_irq_handler(int irq
, void *arg
)
286 struct dra7xx_pcie
*dra7xx
= arg
;
287 struct dw_pcie
*pci
= dra7xx
->pci
;
288 struct device
*dev
= pci
->dev
;
289 struct dw_pcie_ep
*ep
= &pci
->ep
;
292 reg
= dra7xx_pcie_readl(dra7xx
, PCIECTRL_DRA7XX_CONF_IRQSTATUS_MAIN
);
295 dev_dbg(dev
, "System Error\n");
298 dev_dbg(dev
, "Fatal Error\n");
300 if (reg
& ERR_NONFATAL
)
301 dev_dbg(dev
, "Non Fatal Error\n");
304 dev_dbg(dev
, "Correctable Error\n");
307 dev_dbg(dev
, "AXI tag lookup fatal Error\n");
310 dev_dbg(dev
, "ECRC Error\n");
312 if (reg
& PME_TURN_OFF
)
314 "Power Management Event Turn-Off message received\n");
316 if (reg
& PME_TO_ACK
)
318 "Power Management Turn-Off Ack message received\n");
321 dev_dbg(dev
, "PM Power Management Event message received\n");
323 if (reg
& LINK_REQ_RST
)
324 dev_dbg(dev
, "Link Request Reset\n");
326 if (reg
& LINK_UP_EVT
) {
327 if (dra7xx
->mode
== DW_PCIE_EP_TYPE
)
328 dw_pcie_ep_linkup(ep
);
329 dev_dbg(dev
, "Link-up state change\n");
332 if (reg
& CFG_BME_EVT
)
333 dev_dbg(dev
, "CFG 'Bus Master Enable' change\n");
335 if (reg
& CFG_MSE_EVT
)
336 dev_dbg(dev
, "CFG 'Memory Space Enable' change\n");
338 dra7xx_pcie_writel(dra7xx
, PCIECTRL_DRA7XX_CONF_IRQSTATUS_MAIN
, reg
);
343 static void dra7xx_pcie_ep_init(struct dw_pcie_ep
*ep
)
345 struct dw_pcie
*pci
= to_dw_pcie_from_ep(ep
);
346 struct dra7xx_pcie
*dra7xx
= to_dra7xx_pcie(pci
);
349 for (bar
= BAR_0
; bar
<= BAR_5
; bar
++)
350 dw_pcie_ep_reset_bar(pci
, bar
);
352 dra7xx_pcie_enable_wrapper_interrupts(dra7xx
);
355 static void dra7xx_pcie_raise_legacy_irq(struct dra7xx_pcie
*dra7xx
)
357 dra7xx_pcie_writel(dra7xx
, PCIECTRL_TI_CONF_INTX_ASSERT
, 0x1);
359 dra7xx_pcie_writel(dra7xx
, PCIECTRL_TI_CONF_INTX_DEASSERT
, 0x1);
362 static void dra7xx_pcie_raise_msi_irq(struct dra7xx_pcie
*dra7xx
,
367 reg
= (interrupt_num
- 1) << MSI_VECTOR_SHIFT
;
368 reg
|= MSI_REQ_GRANT
;
369 dra7xx_pcie_writel(dra7xx
, PCIECTRL_TI_CONF_MSI_XMT
, reg
);
372 static int dra7xx_pcie_raise_irq(struct dw_pcie_ep
*ep
, u8 func_no
,
373 enum pci_epc_irq_type type
, u16 interrupt_num
)
375 struct dw_pcie
*pci
= to_dw_pcie_from_ep(ep
);
376 struct dra7xx_pcie
*dra7xx
= to_dra7xx_pcie(pci
);
379 case PCI_EPC_IRQ_LEGACY
:
380 dra7xx_pcie_raise_legacy_irq(dra7xx
);
382 case PCI_EPC_IRQ_MSI
:
383 dra7xx_pcie_raise_msi_irq(dra7xx
, interrupt_num
);
386 dev_err(pci
->dev
, "UNKNOWN IRQ type\n");
392 static struct dw_pcie_ep_ops pcie_ep_ops
= {
393 .ep_init
= dra7xx_pcie_ep_init
,
394 .raise_irq
= dra7xx_pcie_raise_irq
,
397 static int __init
dra7xx_add_pcie_ep(struct dra7xx_pcie
*dra7xx
,
398 struct platform_device
*pdev
)
401 struct dw_pcie_ep
*ep
;
402 struct resource
*res
;
403 struct device
*dev
= &pdev
->dev
;
404 struct dw_pcie
*pci
= dra7xx
->pci
;
407 ep
->ops
= &pcie_ep_ops
;
409 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "ep_dbics");
410 pci
->dbi_base
= devm_ioremap_resource(dev
, res
);
411 if (IS_ERR(pci
->dbi_base
))
412 return PTR_ERR(pci
->dbi_base
);
414 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "ep_dbics2");
415 pci
->dbi_base2
= devm_ioremap_resource(dev
, res
);
416 if (IS_ERR(pci
->dbi_base2
))
417 return PTR_ERR(pci
->dbi_base2
);
419 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "addr_space");
423 ep
->phys_base
= res
->start
;
424 ep
->addr_size
= resource_size(res
);
426 ret
= dw_pcie_ep_init(ep
);
428 dev_err(dev
, "failed to initialize endpoint\n");
435 static int __init
dra7xx_add_pcie_port(struct dra7xx_pcie
*dra7xx
,
436 struct platform_device
*pdev
)
439 struct dw_pcie
*pci
= dra7xx
->pci
;
440 struct pcie_port
*pp
= &pci
->pp
;
441 struct device
*dev
= pci
->dev
;
442 struct resource
*res
;
444 pp
->irq
= platform_get_irq(pdev
, 1);
446 dev_err(dev
, "missing IRQ resource\n");
450 ret
= devm_request_irq(dev
, pp
->irq
, dra7xx_pcie_msi_irq_handler
,
451 IRQF_SHARED
| IRQF_NO_THREAD
,
452 "dra7-pcie-msi", dra7xx
);
454 dev_err(dev
, "failed to request irq\n");
458 ret
= dra7xx_pcie_init_irq_domain(pp
);
462 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "rc_dbics");
463 pci
->dbi_base
= devm_ioremap_resource(dev
, res
);
464 if (IS_ERR(pci
->dbi_base
))
465 return PTR_ERR(pci
->dbi_base
);
467 pp
->ops
= &dra7xx_pcie_host_ops
;
469 ret
= dw_pcie_host_init(pp
);
471 dev_err(dev
, "failed to initialize host\n");
478 static const struct dw_pcie_ops dw_pcie_ops
= {
479 .cpu_addr_fixup
= dra7xx_pcie_cpu_addr_fixup
,
480 .start_link
= dra7xx_pcie_establish_link
,
481 .stop_link
= dra7xx_pcie_stop_link
,
482 .link_up
= dra7xx_pcie_link_up
,
485 static void dra7xx_pcie_disable_phy(struct dra7xx_pcie
*dra7xx
)
487 int phy_count
= dra7xx
->phy_count
;
489 while (phy_count
--) {
490 phy_power_off(dra7xx
->phy
[phy_count
]);
491 phy_exit(dra7xx
->phy
[phy_count
]);
495 static int dra7xx_pcie_enable_phy(struct dra7xx_pcie
*dra7xx
)
497 int phy_count
= dra7xx
->phy_count
;
501 for (i
= 0; i
< phy_count
; i
++) {
502 ret
= phy_init(dra7xx
->phy
[i
]);
506 ret
= phy_power_on(dra7xx
->phy
[i
]);
508 phy_exit(dra7xx
->phy
[i
]);
517 phy_power_off(dra7xx
->phy
[i
]);
518 phy_exit(dra7xx
->phy
[i
]);
524 static const struct dra7xx_pcie_of_data dra7xx_pcie_rc_of_data
= {
525 .mode
= DW_PCIE_RC_TYPE
,
528 static const struct dra7xx_pcie_of_data dra7xx_pcie_ep_of_data
= {
529 .mode
= DW_PCIE_EP_TYPE
,
532 static const struct of_device_id of_dra7xx_pcie_match
[] = {
534 .compatible
= "ti,dra7-pcie",
535 .data
= &dra7xx_pcie_rc_of_data
,
538 .compatible
= "ti,dra7-pcie-ep",
539 .data
= &dra7xx_pcie_ep_of_data
,
545 * dra7xx_pcie_ep_unaligned_memaccess: workaround for AM572x/AM571x Errata i870
546 * @dra7xx: the dra7xx device where the workaround should be applied
548 * Access to the PCIe slave port that are not 32-bit aligned will result
549 * in incorrect mapping to TLP Address and Byte enable fields. Therefore,
550 * byte and half-word accesses are not possible to byte offset 0x1, 0x2, or
553 * To avoid this issue set PCIE_SS1_AXI2OCP_LEGACY_MODE_ENABLE to 1.
555 static int dra7xx_pcie_ep_unaligned_memaccess(struct device
*dev
)
558 struct device_node
*np
= dev
->of_node
;
559 struct of_phandle_args args
;
560 struct regmap
*regmap
;
562 regmap
= syscon_regmap_lookup_by_phandle(np
,
563 "ti,syscon-unaligned-access");
564 if (IS_ERR(regmap
)) {
565 dev_dbg(dev
, "can't get ti,syscon-unaligned-access\n");
569 ret
= of_parse_phandle_with_fixed_args(np
, "ti,syscon-unaligned-access",
572 dev_err(dev
, "failed to parse ti,syscon-unaligned-access\n");
576 ret
= regmap_update_bits(regmap
, args
.args
[0], args
.args
[1],
579 dev_err(dev
, "failed to enable unaligned access\n");
581 of_node_put(args
.np
);
586 static int __init
dra7xx_pcie_probe(struct platform_device
*pdev
)
594 struct device_link
**link
;
596 struct resource
*res
;
598 struct dra7xx_pcie
*dra7xx
;
599 struct device
*dev
= &pdev
->dev
;
600 struct device_node
*np
= dev
->of_node
;
602 struct gpio_desc
*reset
;
603 const struct of_device_id
*match
;
604 const struct dra7xx_pcie_of_data
*data
;
605 enum dw_pcie_device_mode mode
;
607 match
= of_match_device(of_match_ptr(of_dra7xx_pcie_match
), dev
);
611 data
= (struct dra7xx_pcie_of_data
*)match
->data
;
612 mode
= (enum dw_pcie_device_mode
)data
->mode
;
614 dra7xx
= devm_kzalloc(dev
, sizeof(*dra7xx
), GFP_KERNEL
);
618 pci
= devm_kzalloc(dev
, sizeof(*pci
), GFP_KERNEL
);
623 pci
->ops
= &dw_pcie_ops
;
625 irq
= platform_get_irq(pdev
, 0);
627 dev_err(dev
, "missing IRQ resource: %d\n", irq
);
631 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "ti_conf");
632 base
= devm_ioremap_nocache(dev
, res
->start
, resource_size(res
));
636 phy_count
= of_property_count_strings(np
, "phy-names");
638 dev_err(dev
, "unable to find the strings\n");
642 phy
= devm_kcalloc(dev
, phy_count
, sizeof(*phy
), GFP_KERNEL
);
646 link
= devm_kcalloc(dev
, phy_count
, sizeof(*link
), GFP_KERNEL
);
650 for (i
= 0; i
< phy_count
; i
++) {
651 snprintf(name
, sizeof(name
), "pcie-phy%d", i
);
652 phy
[i
] = devm_phy_get(dev
, name
);
654 return PTR_ERR(phy
[i
]);
656 link
[i
] = device_link_add(dev
, &phy
[i
]->dev
, DL_FLAG_STATELESS
);
666 dra7xx
->phy_count
= phy_count
;
668 ret
= dra7xx_pcie_enable_phy(dra7xx
);
670 dev_err(dev
, "failed to enable phy\n");
674 platform_set_drvdata(pdev
, dra7xx
);
676 pm_runtime_enable(dev
);
677 ret
= pm_runtime_get_sync(dev
);
679 dev_err(dev
, "pm_runtime_get_sync failed\n");
683 reset
= devm_gpiod_get_optional(dev
, NULL
, GPIOD_OUT_HIGH
);
685 ret
= PTR_ERR(reset
);
686 dev_err(&pdev
->dev
, "gpio request failed, ret %d\n", ret
);
690 reg
= dra7xx_pcie_readl(dra7xx
, PCIECTRL_DRA7XX_CONF_DEVICE_CMD
);
692 dra7xx_pcie_writel(dra7xx
, PCIECTRL_DRA7XX_CONF_DEVICE_CMD
, reg
);
694 dra7xx
->link_gen
= of_pci_get_max_link_speed(np
);
695 if (dra7xx
->link_gen
< 0 || dra7xx
->link_gen
> 2)
696 dra7xx
->link_gen
= 2;
699 case DW_PCIE_RC_TYPE
:
700 if (!IS_ENABLED(CONFIG_PCI_DRA7XX_HOST
)) {
705 dra7xx_pcie_writel(dra7xx
, PCIECTRL_TI_CONF_DEVICE_TYPE
,
707 ret
= dra7xx_add_pcie_port(dra7xx
, pdev
);
711 case DW_PCIE_EP_TYPE
:
712 if (!IS_ENABLED(CONFIG_PCI_DRA7XX_EP
)) {
717 dra7xx_pcie_writel(dra7xx
, PCIECTRL_TI_CONF_DEVICE_TYPE
,
720 ret
= dra7xx_pcie_ep_unaligned_memaccess(dev
);
724 ret
= dra7xx_add_pcie_ep(dra7xx
, pdev
);
729 dev_err(dev
, "INVALID device type %d\n", mode
);
733 ret
= devm_request_irq(dev
, irq
, dra7xx_pcie_irq_handler
,
734 IRQF_SHARED
, "dra7xx-pcie-main", dra7xx
);
736 dev_err(dev
, "failed to request irq\n");
746 pm_runtime_disable(dev
);
747 dra7xx_pcie_disable_phy(dra7xx
);
751 device_link_del(link
[i
]);
756 #ifdef CONFIG_PM_SLEEP
757 static int dra7xx_pcie_suspend(struct device
*dev
)
759 struct dra7xx_pcie
*dra7xx
= dev_get_drvdata(dev
);
760 struct dw_pcie
*pci
= dra7xx
->pci
;
763 if (dra7xx
->mode
!= DW_PCIE_RC_TYPE
)
767 val
= dw_pcie_readl_dbi(pci
, PCI_COMMAND
);
768 val
&= ~PCI_COMMAND_MEMORY
;
769 dw_pcie_writel_dbi(pci
, PCI_COMMAND
, val
);
774 static int dra7xx_pcie_resume(struct device
*dev
)
776 struct dra7xx_pcie
*dra7xx
= dev_get_drvdata(dev
);
777 struct dw_pcie
*pci
= dra7xx
->pci
;
780 if (dra7xx
->mode
!= DW_PCIE_RC_TYPE
)
784 val
= dw_pcie_readl_dbi(pci
, PCI_COMMAND
);
785 val
|= PCI_COMMAND_MEMORY
;
786 dw_pcie_writel_dbi(pci
, PCI_COMMAND
, val
);
791 static int dra7xx_pcie_suspend_noirq(struct device
*dev
)
793 struct dra7xx_pcie
*dra7xx
= dev_get_drvdata(dev
);
795 dra7xx_pcie_disable_phy(dra7xx
);
800 static int dra7xx_pcie_resume_noirq(struct device
*dev
)
802 struct dra7xx_pcie
*dra7xx
= dev_get_drvdata(dev
);
805 ret
= dra7xx_pcie_enable_phy(dra7xx
);
807 dev_err(dev
, "failed to enable phy\n");
815 static void dra7xx_pcie_shutdown(struct platform_device
*pdev
)
817 struct device
*dev
= &pdev
->dev
;
818 struct dra7xx_pcie
*dra7xx
= dev_get_drvdata(dev
);
821 dra7xx_pcie_stop_link(dra7xx
->pci
);
823 ret
= pm_runtime_put_sync(dev
);
825 dev_dbg(dev
, "pm_runtime_put_sync failed\n");
827 pm_runtime_disable(dev
);
828 dra7xx_pcie_disable_phy(dra7xx
);
831 static const struct dev_pm_ops dra7xx_pcie_pm_ops
= {
832 SET_SYSTEM_SLEEP_PM_OPS(dra7xx_pcie_suspend
, dra7xx_pcie_resume
)
833 SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(dra7xx_pcie_suspend_noirq
,
834 dra7xx_pcie_resume_noirq
)
837 static struct platform_driver dra7xx_pcie_driver
= {
840 .of_match_table
= of_dra7xx_pcie_match
,
841 .suppress_bind_attrs
= true,
842 .pm
= &dra7xx_pcie_pm_ops
,
844 .shutdown
= dra7xx_pcie_shutdown
,
846 builtin_platform_driver_probe(dra7xx_pcie_driver
, dra7xx_pcie_probe
);