1 // SPDX-License-Identifier: GPL-2.0
3 * PCIe host controller driver for Samsung Exynos SoCs
5 * Copyright (C) 2013 Samsung Electronics Co., Ltd.
6 * https://www.samsung.com
11 #include <linux/clk.h>
12 #include <linux/delay.h>
13 #include <linux/gpio.h>
14 #include <linux/interrupt.h>
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/of_device.h>
18 #include <linux/of_gpio.h>
19 #include <linux/pci.h>
20 #include <linux/platform_device.h>
21 #include <linux/phy/phy.h>
22 #include <linux/resource.h>
23 #include <linux/signal.h>
24 #include <linux/types.h>
26 #include "pcie-designware.h"
28 #define to_exynos_pcie(x) dev_get_drvdata((x)->dev)
30 /* PCIe ELBI registers */
31 #define PCIE_IRQ_PULSE 0x000
32 #define IRQ_INTA_ASSERT BIT(0)
33 #define IRQ_INTB_ASSERT BIT(2)
34 #define IRQ_INTC_ASSERT BIT(4)
35 #define IRQ_INTD_ASSERT BIT(6)
36 #define PCIE_IRQ_LEVEL 0x004
37 #define PCIE_IRQ_SPECIAL 0x008
38 #define PCIE_IRQ_EN_PULSE 0x00c
39 #define PCIE_IRQ_EN_LEVEL 0x010
40 #define IRQ_MSI_ENABLE BIT(2)
41 #define PCIE_IRQ_EN_SPECIAL 0x014
42 #define PCIE_PWR_RESET 0x018
43 #define PCIE_CORE_RESET 0x01c
44 #define PCIE_CORE_RESET_ENABLE BIT(0)
45 #define PCIE_STICKY_RESET 0x020
46 #define PCIE_NONSTICKY_RESET 0x024
47 #define PCIE_APP_INIT_RESET 0x028
48 #define PCIE_APP_LTSSM_ENABLE 0x02c
49 #define PCIE_ELBI_RDLH_LINKUP 0x064
50 #define PCIE_ELBI_LTSSM_ENABLE 0x1
51 #define PCIE_ELBI_SLV_AWMISC 0x11c
52 #define PCIE_ELBI_SLV_ARMISC 0x120
53 #define PCIE_ELBI_SLV_DBI_ENABLE BIT(21)
55 struct exynos_pcie_mem_res {
56 void __iomem *elbi_base; /* DT 0th resource: PCIe CTRL */
59 struct exynos_pcie_clk_res {
66 struct exynos_pcie_mem_res *mem_res;
67 struct exynos_pcie_clk_res *clk_res;
68 const struct exynos_pcie_ops *ops;
74 struct exynos_pcie_ops {
75 int (*get_mem_resources)(struct platform_device *pdev,
76 struct exynos_pcie *ep);
77 int (*get_clk_resources)(struct exynos_pcie *ep);
78 int (*init_clk_resources)(struct exynos_pcie *ep);
79 void (*deinit_clk_resources)(struct exynos_pcie *ep);
82 static int exynos5440_pcie_get_mem_resources(struct platform_device *pdev,
83 struct exynos_pcie *ep)
85 struct dw_pcie *pci = ep->pci;
86 struct device *dev = pci->dev;
88 ep->mem_res = devm_kzalloc(dev, sizeof(*ep->mem_res), GFP_KERNEL);
92 ep->mem_res->elbi_base = devm_platform_ioremap_resource(pdev, 0);
93 if (IS_ERR(ep->mem_res->elbi_base))
94 return PTR_ERR(ep->mem_res->elbi_base);
99 static int exynos5440_pcie_get_clk_resources(struct exynos_pcie *ep)
101 struct dw_pcie *pci = ep->pci;
102 struct device *dev = pci->dev;
104 ep->clk_res = devm_kzalloc(dev, sizeof(*ep->clk_res), GFP_KERNEL);
108 ep->clk_res->clk = devm_clk_get(dev, "pcie");
109 if (IS_ERR(ep->clk_res->clk)) {
110 dev_err(dev, "Failed to get pcie rc clock\n");
111 return PTR_ERR(ep->clk_res->clk);
114 ep->clk_res->bus_clk = devm_clk_get(dev, "pcie_bus");
115 if (IS_ERR(ep->clk_res->bus_clk)) {
116 dev_err(dev, "Failed to get pcie bus clock\n");
117 return PTR_ERR(ep->clk_res->bus_clk);
123 static int exynos5440_pcie_init_clk_resources(struct exynos_pcie *ep)
125 struct dw_pcie *pci = ep->pci;
126 struct device *dev = pci->dev;
129 ret = clk_prepare_enable(ep->clk_res->clk);
131 dev_err(dev, "cannot enable pcie rc clock");
135 ret = clk_prepare_enable(ep->clk_res->bus_clk);
137 dev_err(dev, "cannot enable pcie bus clock");
144 clk_disable_unprepare(ep->clk_res->clk);
149 static void exynos5440_pcie_deinit_clk_resources(struct exynos_pcie *ep)
151 clk_disable_unprepare(ep->clk_res->bus_clk);
152 clk_disable_unprepare(ep->clk_res->clk);
155 static const struct exynos_pcie_ops exynos5440_pcie_ops = {
156 .get_mem_resources = exynos5440_pcie_get_mem_resources,
157 .get_clk_resources = exynos5440_pcie_get_clk_resources,
158 .init_clk_resources = exynos5440_pcie_init_clk_resources,
159 .deinit_clk_resources = exynos5440_pcie_deinit_clk_resources,
162 static void exynos_pcie_writel(void __iomem *base, u32 val, u32 reg)
164 writel(val, base + reg);
167 static u32 exynos_pcie_readl(void __iomem *base, u32 reg)
169 return readl(base + reg);
172 static void exynos_pcie_sideband_dbi_w_mode(struct exynos_pcie *ep, bool on)
176 val = exynos_pcie_readl(ep->mem_res->elbi_base, PCIE_ELBI_SLV_AWMISC);
178 val |= PCIE_ELBI_SLV_DBI_ENABLE;
180 val &= ~PCIE_ELBI_SLV_DBI_ENABLE;
181 exynos_pcie_writel(ep->mem_res->elbi_base, val, PCIE_ELBI_SLV_AWMISC);
184 static void exynos_pcie_sideband_dbi_r_mode(struct exynos_pcie *ep, bool on)
188 val = exynos_pcie_readl(ep->mem_res->elbi_base, PCIE_ELBI_SLV_ARMISC);
190 val |= PCIE_ELBI_SLV_DBI_ENABLE;
192 val &= ~PCIE_ELBI_SLV_DBI_ENABLE;
193 exynos_pcie_writel(ep->mem_res->elbi_base, val, PCIE_ELBI_SLV_ARMISC);
196 static void exynos_pcie_assert_core_reset(struct exynos_pcie *ep)
200 val = exynos_pcie_readl(ep->mem_res->elbi_base, PCIE_CORE_RESET);
201 val &= ~PCIE_CORE_RESET_ENABLE;
202 exynos_pcie_writel(ep->mem_res->elbi_base, val, PCIE_CORE_RESET);
203 exynos_pcie_writel(ep->mem_res->elbi_base, 0, PCIE_PWR_RESET);
204 exynos_pcie_writel(ep->mem_res->elbi_base, 0, PCIE_STICKY_RESET);
205 exynos_pcie_writel(ep->mem_res->elbi_base, 0, PCIE_NONSTICKY_RESET);
208 static void exynos_pcie_deassert_core_reset(struct exynos_pcie *ep)
212 val = exynos_pcie_readl(ep->mem_res->elbi_base, PCIE_CORE_RESET);
213 val |= PCIE_CORE_RESET_ENABLE;
215 exynos_pcie_writel(ep->mem_res->elbi_base, val, PCIE_CORE_RESET);
216 exynos_pcie_writel(ep->mem_res->elbi_base, 1, PCIE_STICKY_RESET);
217 exynos_pcie_writel(ep->mem_res->elbi_base, 1, PCIE_NONSTICKY_RESET);
218 exynos_pcie_writel(ep->mem_res->elbi_base, 1, PCIE_APP_INIT_RESET);
219 exynos_pcie_writel(ep->mem_res->elbi_base, 0, PCIE_APP_INIT_RESET);
222 static void exynos_pcie_assert_reset(struct exynos_pcie *ep)
224 struct dw_pcie *pci = ep->pci;
225 struct device *dev = pci->dev;
227 if (ep->reset_gpio >= 0)
228 devm_gpio_request_one(dev, ep->reset_gpio,
229 GPIOF_OUT_INIT_HIGH, "RESET");
232 static int exynos_pcie_establish_link(struct exynos_pcie *ep)
234 struct dw_pcie *pci = ep->pci;
235 struct pcie_port *pp = &pci->pp;
236 struct device *dev = pci->dev;
238 if (dw_pcie_link_up(pci)) {
239 dev_err(dev, "Link already up\n");
243 exynos_pcie_assert_core_reset(ep);
247 exynos_pcie_writel(ep->mem_res->elbi_base, 1,
250 phy_power_on(ep->phy);
253 exynos_pcie_deassert_core_reset(ep);
254 dw_pcie_setup_rc(pp);
255 exynos_pcie_assert_reset(ep);
257 /* assert LTSSM enable */
258 exynos_pcie_writel(ep->mem_res->elbi_base, PCIE_ELBI_LTSSM_ENABLE,
259 PCIE_APP_LTSSM_ENABLE);
261 /* check if the link is up or not */
262 if (!dw_pcie_wait_for_link(pci))
265 phy_power_off(ep->phy);
269 static void exynos_pcie_clear_irq_pulse(struct exynos_pcie *ep)
273 val = exynos_pcie_readl(ep->mem_res->elbi_base, PCIE_IRQ_PULSE);
274 exynos_pcie_writel(ep->mem_res->elbi_base, val, PCIE_IRQ_PULSE);
277 static void exynos_pcie_enable_irq_pulse(struct exynos_pcie *ep)
281 /* enable INTX interrupt */
282 val = IRQ_INTA_ASSERT | IRQ_INTB_ASSERT |
283 IRQ_INTC_ASSERT | IRQ_INTD_ASSERT;
284 exynos_pcie_writel(ep->mem_res->elbi_base, val, PCIE_IRQ_EN_PULSE);
287 static irqreturn_t exynos_pcie_irq_handler(int irq, void *arg)
289 struct exynos_pcie *ep = arg;
291 exynos_pcie_clear_irq_pulse(ep);
295 static void exynos_pcie_msi_init(struct exynos_pcie *ep)
297 struct dw_pcie *pci = ep->pci;
298 struct pcie_port *pp = &pci->pp;
301 dw_pcie_msi_init(pp);
303 /* enable MSI interrupt */
304 val = exynos_pcie_readl(ep->mem_res->elbi_base, PCIE_IRQ_EN_LEVEL);
305 val |= IRQ_MSI_ENABLE;
306 exynos_pcie_writel(ep->mem_res->elbi_base, val, PCIE_IRQ_EN_LEVEL);
309 static void exynos_pcie_enable_interrupts(struct exynos_pcie *ep)
311 exynos_pcie_enable_irq_pulse(ep);
313 if (IS_ENABLED(CONFIG_PCI_MSI))
314 exynos_pcie_msi_init(ep);
317 static u32 exynos_pcie_read_dbi(struct dw_pcie *pci, void __iomem *base,
318 u32 reg, size_t size)
320 struct exynos_pcie *ep = to_exynos_pcie(pci);
323 exynos_pcie_sideband_dbi_r_mode(ep, true);
324 dw_pcie_read(base + reg, size, &val);
325 exynos_pcie_sideband_dbi_r_mode(ep, false);
329 static void exynos_pcie_write_dbi(struct dw_pcie *pci, void __iomem *base,
330 u32 reg, size_t size, u32 val)
332 struct exynos_pcie *ep = to_exynos_pcie(pci);
334 exynos_pcie_sideband_dbi_w_mode(ep, true);
335 dw_pcie_write(base + reg, size, val);
336 exynos_pcie_sideband_dbi_w_mode(ep, false);
339 static int exynos_pcie_rd_own_conf(struct pcie_port *pp, int where, int size,
342 struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
343 struct exynos_pcie *ep = to_exynos_pcie(pci);
346 exynos_pcie_sideband_dbi_r_mode(ep, true);
347 ret = dw_pcie_read(pci->dbi_base + where, size, val);
348 exynos_pcie_sideband_dbi_r_mode(ep, false);
352 static int exynos_pcie_wr_own_conf(struct pcie_port *pp, int where, int size,
355 struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
356 struct exynos_pcie *ep = to_exynos_pcie(pci);
359 exynos_pcie_sideband_dbi_w_mode(ep, true);
360 ret = dw_pcie_write(pci->dbi_base + where, size, val);
361 exynos_pcie_sideband_dbi_w_mode(ep, false);
365 static int exynos_pcie_link_up(struct dw_pcie *pci)
367 struct exynos_pcie *ep = to_exynos_pcie(pci);
370 val = exynos_pcie_readl(ep->mem_res->elbi_base, PCIE_ELBI_RDLH_LINKUP);
371 if (val == PCIE_ELBI_LTSSM_ENABLE)
377 static int exynos_pcie_host_init(struct pcie_port *pp)
379 struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
380 struct exynos_pcie *ep = to_exynos_pcie(pci);
382 exynos_pcie_establish_link(ep);
383 exynos_pcie_enable_interrupts(ep);
388 static const struct dw_pcie_host_ops exynos_pcie_host_ops = {
389 .rd_own_conf = exynos_pcie_rd_own_conf,
390 .wr_own_conf = exynos_pcie_wr_own_conf,
391 .host_init = exynos_pcie_host_init,
394 static int __init exynos_add_pcie_port(struct exynos_pcie *ep,
395 struct platform_device *pdev)
397 struct dw_pcie *pci = ep->pci;
398 struct pcie_port *pp = &pci->pp;
399 struct device *dev = &pdev->dev;
402 pp->irq = platform_get_irq(pdev, 1);
406 ret = devm_request_irq(dev, pp->irq, exynos_pcie_irq_handler,
407 IRQF_SHARED, "exynos-pcie", ep);
409 dev_err(dev, "failed to request irq\n");
413 if (IS_ENABLED(CONFIG_PCI_MSI)) {
414 pp->msi_irq = platform_get_irq(pdev, 0);
419 pp->ops = &exynos_pcie_host_ops;
421 ret = dw_pcie_host_init(pp);
423 dev_err(dev, "failed to initialize host\n");
430 static const struct dw_pcie_ops dw_pcie_ops = {
431 .read_dbi = exynos_pcie_read_dbi,
432 .write_dbi = exynos_pcie_write_dbi,
433 .link_up = exynos_pcie_link_up,
436 static int __init exynos_pcie_probe(struct platform_device *pdev)
438 struct device *dev = &pdev->dev;
440 struct exynos_pcie *ep;
441 struct device_node *np = dev->of_node;
444 ep = devm_kzalloc(dev, sizeof(*ep), GFP_KERNEL);
448 pci = devm_kzalloc(dev, sizeof(*pci), GFP_KERNEL);
453 pci->ops = &dw_pcie_ops;
456 ep->ops = (const struct exynos_pcie_ops *)
457 of_device_get_match_data(dev);
459 ep->reset_gpio = of_get_named_gpio(np, "reset-gpio", 0);
461 ep->phy = devm_of_phy_get(dev, np, NULL);
462 if (IS_ERR(ep->phy)) {
463 if (PTR_ERR(ep->phy) != -ENODEV)
464 return PTR_ERR(ep->phy);
469 if (ep->ops && ep->ops->get_mem_resources) {
470 ret = ep->ops->get_mem_resources(pdev, ep);
475 if (ep->ops && ep->ops->get_clk_resources &&
476 ep->ops->init_clk_resources) {
477 ret = ep->ops->get_clk_resources(ep);
480 ret = ep->ops->init_clk_resources(ep);
485 platform_set_drvdata(pdev, ep);
487 ret = exynos_add_pcie_port(ep, pdev);
496 if (ep->ops && ep->ops->deinit_clk_resources)
497 ep->ops->deinit_clk_resources(ep);
501 static int __exit exynos_pcie_remove(struct platform_device *pdev)
503 struct exynos_pcie *ep = platform_get_drvdata(pdev);
505 if (ep->ops && ep->ops->deinit_clk_resources)
506 ep->ops->deinit_clk_resources(ep);
511 static const struct of_device_id exynos_pcie_of_match[] = {
513 .compatible = "samsung,exynos5440-pcie",
514 .data = &exynos5440_pcie_ops
519 static struct platform_driver exynos_pcie_driver = {
520 .remove = __exit_p(exynos_pcie_remove),
522 .name = "exynos-pcie",
523 .of_match_table = exynos_pcie_of_match,
527 /* Exynos PCIe driver does not allow module unload */
529 static int __init exynos_pcie_init(void)
531 return platform_driver_probe(&exynos_pcie_driver, exynos_pcie_probe);
533 subsys_initcall(exynos_pcie_init);