2 * PCIe host controller driver for Axis ARTPEC-6 SoC
4 * Author: Niklas Cassel <niklas.cassel@axis.com>
6 * Based on work done by Phil Edworthy <phil@edworthys.org>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/delay.h>
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/pci.h>
17 #include <linux/platform_device.h>
18 #include <linux/resource.h>
19 #include <linux/signal.h>
20 #include <linux/types.h>
21 #include <linux/interrupt.h>
22 #include <linux/mfd/syscon.h>
23 #include <linux/regmap.h>
25 #include "pcie-designware.h"
27 #define to_artpec6_pcie(x) dev_get_drvdata((x)->dev)
31 struct regmap
*regmap
; /* DT axis,syscon-pcie */
32 void __iomem
*phy_base
; /* DT phy */
35 /* PCIe Port Logic registers (memory-mapped) */
36 #define PL_OFFSET 0x700
37 #define PCIE_PHY_DEBUG_R0 (PL_OFFSET + 0x28)
38 #define PCIE_PHY_DEBUG_R1 (PL_OFFSET + 0x2c)
40 #define MISC_CONTROL_1_OFF (PL_OFFSET + 0x1bc)
41 #define DBI_RO_WR_EN 1
43 /* ARTPEC-6 specific registers */
45 #define PCIECFG_DBG_OEN (1 << 24)
46 #define PCIECFG_CORE_RESET_REQ (1 << 21)
47 #define PCIECFG_LTSSM_ENABLE (1 << 20)
48 #define PCIECFG_CLKREQ_B (1 << 11)
49 #define PCIECFG_REFCLK_ENABLE (1 << 10)
50 #define PCIECFG_PLL_ENABLE (1 << 9)
51 #define PCIECFG_PCLK_ENABLE (1 << 8)
52 #define PCIECFG_RISRCREN (1 << 4)
53 #define PCIECFG_MODE_TX_DRV_EN (1 << 3)
54 #define PCIECFG_CISRREN (1 << 2)
55 #define PCIECFG_MACRO_ENABLE (1 << 0)
58 #define NOCCFG_ENABLE_CLK_PCIE (1 << 4)
59 #define NOCCFG_POWER_PCIE_IDLEACK (1 << 3)
60 #define NOCCFG_POWER_PCIE_IDLE (1 << 2)
61 #define NOCCFG_POWER_PCIE_IDLEREQ (1 << 1)
63 #define PHY_STATUS 0x118
64 #define PHY_COSPLLLOCK (1 << 0)
66 #define ARTPEC6_CPU_TO_BUS_ADDR 0x0fffffff
68 static u32
artpec6_pcie_readl(struct artpec6_pcie
*artpec6_pcie
, u32 offset
)
72 regmap_read(artpec6_pcie
->regmap
, offset
, &val
);
76 static void artpec6_pcie_writel(struct artpec6_pcie
*artpec6_pcie
, u32 offset
, u32 val
)
78 regmap_write(artpec6_pcie
->regmap
, offset
, val
);
81 static int artpec6_pcie_establish_link(struct artpec6_pcie
*artpec6_pcie
)
83 struct dw_pcie
*pci
= artpec6_pcie
->pci
;
84 struct pcie_port
*pp
= &pci
->pp
;
88 /* Hold DW core in reset */
89 val
= artpec6_pcie_readl(artpec6_pcie
, PCIECFG
);
90 val
|= PCIECFG_CORE_RESET_REQ
;
91 artpec6_pcie_writel(artpec6_pcie
, PCIECFG
, val
);
93 val
= artpec6_pcie_readl(artpec6_pcie
, PCIECFG
);
94 val
|= PCIECFG_RISRCREN
| /* Receiver term. 50 Ohm */
95 PCIECFG_MODE_TX_DRV_EN
|
96 PCIECFG_CISRREN
| /* Reference clock term. 100 Ohm */
98 val
|= PCIECFG_REFCLK_ENABLE
;
99 val
&= ~PCIECFG_DBG_OEN
;
100 val
&= ~PCIECFG_CLKREQ_B
;
101 artpec6_pcie_writel(artpec6_pcie
, PCIECFG
, val
);
102 usleep_range(5000, 6000);
104 val
= artpec6_pcie_readl(artpec6_pcie
, NOCCFG
);
105 val
|= NOCCFG_ENABLE_CLK_PCIE
;
106 artpec6_pcie_writel(artpec6_pcie
, NOCCFG
, val
);
107 usleep_range(20, 30);
109 val
= artpec6_pcie_readl(artpec6_pcie
, PCIECFG
);
110 val
|= PCIECFG_PCLK_ENABLE
| PCIECFG_PLL_ENABLE
;
111 artpec6_pcie_writel(artpec6_pcie
, PCIECFG
, val
);
112 usleep_range(6000, 7000);
114 val
= artpec6_pcie_readl(artpec6_pcie
, NOCCFG
);
115 val
&= ~NOCCFG_POWER_PCIE_IDLEREQ
;
116 artpec6_pcie_writel(artpec6_pcie
, NOCCFG
, val
);
120 usleep_range(1000, 2000);
121 val
= artpec6_pcie_readl(artpec6_pcie
, NOCCFG
);
124 (val
& (NOCCFG_POWER_PCIE_IDLEACK
| NOCCFG_POWER_PCIE_IDLE
)));
128 usleep_range(1000, 2000);
129 val
= readl(artpec6_pcie
->phy_base
+ PHY_STATUS
);
131 } while (retries
&& !(val
& PHY_COSPLLLOCK
));
133 /* Take DW core out of reset */
134 val
= artpec6_pcie_readl(artpec6_pcie
, PCIECFG
);
135 val
&= ~PCIECFG_CORE_RESET_REQ
;
136 artpec6_pcie_writel(artpec6_pcie
, PCIECFG
, val
);
137 usleep_range(100, 200);
140 * Enable writing to config regs. This is required as the Synopsys
141 * driver changes the class code. That register needs DBI write enable.
143 dw_pcie_writel_dbi(pci
, MISC_CONTROL_1_OFF
, DBI_RO_WR_EN
);
145 pp
->io_base
&= ARTPEC6_CPU_TO_BUS_ADDR
;
146 pp
->mem_base
&= ARTPEC6_CPU_TO_BUS_ADDR
;
147 pp
->cfg0_base
&= ARTPEC6_CPU_TO_BUS_ADDR
;
148 pp
->cfg1_base
&= ARTPEC6_CPU_TO_BUS_ADDR
;
150 /* setup root complex */
151 dw_pcie_setup_rc(pp
);
153 /* assert LTSSM enable */
154 val
= artpec6_pcie_readl(artpec6_pcie
, PCIECFG
);
155 val
|= PCIECFG_LTSSM_ENABLE
;
156 artpec6_pcie_writel(artpec6_pcie
, PCIECFG
, val
);
158 /* check if the link is up or not */
159 if (!dw_pcie_wait_for_link(pci
))
162 dev_dbg(pci
->dev
, "DEBUG_R0: 0x%08x, DEBUG_R1: 0x%08x\n",
163 dw_pcie_readl_dbi(pci
, PCIE_PHY_DEBUG_R0
),
164 dw_pcie_readl_dbi(pci
, PCIE_PHY_DEBUG_R1
));
169 static void artpec6_pcie_enable_interrupts(struct artpec6_pcie
*artpec6_pcie
)
171 struct dw_pcie
*pci
= artpec6_pcie
->pci
;
172 struct pcie_port
*pp
= &pci
->pp
;
174 if (IS_ENABLED(CONFIG_PCI_MSI
))
175 dw_pcie_msi_init(pp
);
178 static void artpec6_pcie_host_init(struct pcie_port
*pp
)
180 struct dw_pcie
*pci
= to_dw_pcie_from_pp(pp
);
181 struct artpec6_pcie
*artpec6_pcie
= to_artpec6_pcie(pci
);
183 artpec6_pcie_establish_link(artpec6_pcie
);
184 artpec6_pcie_enable_interrupts(artpec6_pcie
);
187 static struct dw_pcie_host_ops artpec6_pcie_host_ops
= {
188 .host_init
= artpec6_pcie_host_init
,
191 static irqreturn_t
artpec6_pcie_msi_handler(int irq
, void *arg
)
193 struct artpec6_pcie
*artpec6_pcie
= arg
;
194 struct dw_pcie
*pci
= artpec6_pcie
->pci
;
195 struct pcie_port
*pp
= &pci
->pp
;
197 return dw_handle_msi_irq(pp
);
200 static int artpec6_add_pcie_port(struct artpec6_pcie
*artpec6_pcie
,
201 struct platform_device
*pdev
)
203 struct dw_pcie
*pci
= artpec6_pcie
->pci
;
204 struct pcie_port
*pp
= &pci
->pp
;
205 struct device
*dev
= pci
->dev
;
208 if (IS_ENABLED(CONFIG_PCI_MSI
)) {
209 pp
->msi_irq
= platform_get_irq_byname(pdev
, "msi");
210 if (pp
->msi_irq
<= 0) {
211 dev_err(dev
, "failed to get MSI irq\n");
215 ret
= devm_request_irq(dev
, pp
->msi_irq
,
216 artpec6_pcie_msi_handler
,
217 IRQF_SHARED
| IRQF_NO_THREAD
,
218 "artpec6-pcie-msi", artpec6_pcie
);
220 dev_err(dev
, "failed to request MSI irq\n");
225 pp
->root_bus_nr
= -1;
226 pp
->ops
= &artpec6_pcie_host_ops
;
228 ret
= dw_pcie_host_init(pp
);
230 dev_err(dev
, "failed to initialize host\n");
237 static int artpec6_pcie_probe(struct platform_device
*pdev
)
239 struct device
*dev
= &pdev
->dev
;
241 struct artpec6_pcie
*artpec6_pcie
;
242 struct resource
*dbi_base
;
243 struct resource
*phy_base
;
246 artpec6_pcie
= devm_kzalloc(dev
, sizeof(*artpec6_pcie
), GFP_KERNEL
);
250 pci
= devm_kzalloc(dev
, sizeof(*pci
), GFP_KERNEL
);
256 artpec6_pcie
->pci
= pci
;
258 dbi_base
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "dbi");
259 pci
->dbi_base
= devm_ioremap_resource(dev
, dbi_base
);
260 if (IS_ERR(pci
->dbi_base
))
261 return PTR_ERR(pci
->dbi_base
);
263 phy_base
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "phy");
264 artpec6_pcie
->phy_base
= devm_ioremap_resource(dev
, phy_base
);
265 if (IS_ERR(artpec6_pcie
->phy_base
))
266 return PTR_ERR(artpec6_pcie
->phy_base
);
268 artpec6_pcie
->regmap
=
269 syscon_regmap_lookup_by_phandle(dev
->of_node
,
271 if (IS_ERR(artpec6_pcie
->regmap
))
272 return PTR_ERR(artpec6_pcie
->regmap
);
274 platform_set_drvdata(pdev
, artpec6_pcie
);
276 ret
= artpec6_add_pcie_port(artpec6_pcie
, pdev
);
283 static const struct of_device_id artpec6_pcie_of_match
[] = {
284 { .compatible
= "axis,artpec6-pcie", },
288 static struct platform_driver artpec6_pcie_driver
= {
289 .probe
= artpec6_pcie_probe
,
291 .name
= "artpec6-pcie",
292 .of_match_table
= artpec6_pcie_of_match
,
295 builtin_platform_driver(artpec6_pcie_driver
);