1 // SPDX-License-Identifier: GPL-2.0
3 * PCIe host controller driver for Samsung Exynos SoCs
5 * Copyright (C) 2013-2020 Samsung Electronics Co., Ltd.
6 * https://www.samsung.com
8 * Author: Jingoo Han <jg1.han@samsung.com>
9 * Jaehoon Chung <jh80.chung@samsung.com>
12 #include <linux/clk.h>
13 #include <linux/delay.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/pci.h>
19 #include <linux/platform_device.h>
20 #include <linux/phy/phy.h>
21 #include <linux/regulator/consumer.h>
23 #include "pcie-designware.h"
25 #define to_exynos_pcie(x) dev_get_drvdata((x)->dev)
27 /* PCIe ELBI registers */
28 #define PCIE_IRQ_PULSE 0x000
29 #define IRQ_INTA_ASSERT BIT(0)
30 #define IRQ_INTB_ASSERT BIT(2)
31 #define IRQ_INTC_ASSERT BIT(4)
32 #define IRQ_INTD_ASSERT BIT(6)
33 #define PCIE_IRQ_LEVEL 0x004
34 #define PCIE_IRQ_SPECIAL 0x008
35 #define PCIE_IRQ_EN_PULSE 0x00c
36 #define PCIE_IRQ_EN_LEVEL 0x010
37 #define PCIE_IRQ_EN_SPECIAL 0x014
38 #define PCIE_SW_WAKE 0x018
39 #define PCIE_BUS_EN BIT(1)
40 #define PCIE_CORE_RESET 0x01c
41 #define PCIE_CORE_RESET_ENABLE BIT(0)
42 #define PCIE_STICKY_RESET 0x020
43 #define PCIE_NONSTICKY_RESET 0x024
44 #define PCIE_APP_INIT_RESET 0x028
45 #define PCIE_APP_LTSSM_ENABLE 0x02c
46 #define PCIE_ELBI_RDLH_LINKUP 0x074
47 #define PCIE_ELBI_XMLH_LINKUP BIT(4)
48 #define PCIE_ELBI_LTSSM_ENABLE 0x1
49 #define PCIE_ELBI_SLV_AWMISC 0x11c
50 #define PCIE_ELBI_SLV_ARMISC 0x120
51 #define PCIE_ELBI_SLV_DBI_ENABLE BIT(21)
55 void __iomem
*elbi_base
;
59 struct regulator_bulk_data supplies
[2];
62 static int exynos_pcie_init_clk_resources(struct exynos_pcie
*ep
)
64 struct device
*dev
= ep
->pci
.dev
;
67 ret
= clk_prepare_enable(ep
->clk
);
69 dev_err(dev
, "cannot enable pcie rc clock");
73 ret
= clk_prepare_enable(ep
->bus_clk
);
75 dev_err(dev
, "cannot enable pcie bus clock");
82 clk_disable_unprepare(ep
->clk
);
87 static void exynos_pcie_deinit_clk_resources(struct exynos_pcie
*ep
)
89 clk_disable_unprepare(ep
->bus_clk
);
90 clk_disable_unprepare(ep
->clk
);
93 static void exynos_pcie_writel(void __iomem
*base
, u32 val
, u32 reg
)
95 writel(val
, base
+ reg
);
98 static u32
exynos_pcie_readl(void __iomem
*base
, u32 reg
)
100 return readl(base
+ reg
);
103 static void exynos_pcie_sideband_dbi_w_mode(struct exynos_pcie
*ep
, bool on
)
107 val
= exynos_pcie_readl(ep
->elbi_base
, PCIE_ELBI_SLV_AWMISC
);
109 val
|= PCIE_ELBI_SLV_DBI_ENABLE
;
111 val
&= ~PCIE_ELBI_SLV_DBI_ENABLE
;
112 exynos_pcie_writel(ep
->elbi_base
, val
, PCIE_ELBI_SLV_AWMISC
);
115 static void exynos_pcie_sideband_dbi_r_mode(struct exynos_pcie
*ep
, bool on
)
119 val
= exynos_pcie_readl(ep
->elbi_base
, PCIE_ELBI_SLV_ARMISC
);
121 val
|= PCIE_ELBI_SLV_DBI_ENABLE
;
123 val
&= ~PCIE_ELBI_SLV_DBI_ENABLE
;
124 exynos_pcie_writel(ep
->elbi_base
, val
, PCIE_ELBI_SLV_ARMISC
);
127 static void exynos_pcie_assert_core_reset(struct exynos_pcie
*ep
)
131 val
= exynos_pcie_readl(ep
->elbi_base
, PCIE_CORE_RESET
);
132 val
&= ~PCIE_CORE_RESET_ENABLE
;
133 exynos_pcie_writel(ep
->elbi_base
, val
, PCIE_CORE_RESET
);
134 exynos_pcie_writel(ep
->elbi_base
, 0, PCIE_STICKY_RESET
);
135 exynos_pcie_writel(ep
->elbi_base
, 0, PCIE_NONSTICKY_RESET
);
138 static void exynos_pcie_deassert_core_reset(struct exynos_pcie
*ep
)
142 val
= exynos_pcie_readl(ep
->elbi_base
, PCIE_CORE_RESET
);
143 val
|= PCIE_CORE_RESET_ENABLE
;
145 exynos_pcie_writel(ep
->elbi_base
, val
, PCIE_CORE_RESET
);
146 exynos_pcie_writel(ep
->elbi_base
, 1, PCIE_STICKY_RESET
);
147 exynos_pcie_writel(ep
->elbi_base
, 1, PCIE_NONSTICKY_RESET
);
148 exynos_pcie_writel(ep
->elbi_base
, 1, PCIE_APP_INIT_RESET
);
149 exynos_pcie_writel(ep
->elbi_base
, 0, PCIE_APP_INIT_RESET
);
152 static int exynos_pcie_start_link(struct dw_pcie
*pci
)
154 struct exynos_pcie
*ep
= to_exynos_pcie(pci
);
157 val
= exynos_pcie_readl(ep
->elbi_base
, PCIE_SW_WAKE
);
159 exynos_pcie_writel(ep
->elbi_base
, val
, PCIE_SW_WAKE
);
161 /* assert LTSSM enable */
162 exynos_pcie_writel(ep
->elbi_base
, PCIE_ELBI_LTSSM_ENABLE
,
163 PCIE_APP_LTSSM_ENABLE
);
167 static void exynos_pcie_clear_irq_pulse(struct exynos_pcie
*ep
)
169 u32 val
= exynos_pcie_readl(ep
->elbi_base
, PCIE_IRQ_PULSE
);
171 exynos_pcie_writel(ep
->elbi_base
, val
, PCIE_IRQ_PULSE
);
174 static irqreturn_t
exynos_pcie_irq_handler(int irq
, void *arg
)
176 struct exynos_pcie
*ep
= arg
;
178 exynos_pcie_clear_irq_pulse(ep
);
182 static void exynos_pcie_enable_irq_pulse(struct exynos_pcie
*ep
)
184 u32 val
= IRQ_INTA_ASSERT
| IRQ_INTB_ASSERT
|
185 IRQ_INTC_ASSERT
| IRQ_INTD_ASSERT
;
187 exynos_pcie_writel(ep
->elbi_base
, val
, PCIE_IRQ_EN_PULSE
);
188 exynos_pcie_writel(ep
->elbi_base
, 0, PCIE_IRQ_EN_LEVEL
);
189 exynos_pcie_writel(ep
->elbi_base
, 0, PCIE_IRQ_EN_SPECIAL
);
192 static u32
exynos_pcie_read_dbi(struct dw_pcie
*pci
, void __iomem
*base
,
193 u32 reg
, size_t size
)
195 struct exynos_pcie
*ep
= to_exynos_pcie(pci
);
198 exynos_pcie_sideband_dbi_r_mode(ep
, true);
199 dw_pcie_read(base
+ reg
, size
, &val
);
200 exynos_pcie_sideband_dbi_r_mode(ep
, false);
204 static void exynos_pcie_write_dbi(struct dw_pcie
*pci
, void __iomem
*base
,
205 u32 reg
, size_t size
, u32 val
)
207 struct exynos_pcie
*ep
= to_exynos_pcie(pci
);
209 exynos_pcie_sideband_dbi_w_mode(ep
, true);
210 dw_pcie_write(base
+ reg
, size
, val
);
211 exynos_pcie_sideband_dbi_w_mode(ep
, false);
214 static int exynos_pcie_rd_own_conf(struct pci_bus
*bus
, unsigned int devfn
,
215 int where
, int size
, u32
*val
)
217 struct dw_pcie
*pci
= to_dw_pcie_from_pp(bus
->sysdata
);
219 if (PCI_SLOT(devfn
)) {
221 return PCIBIOS_DEVICE_NOT_FOUND
;
224 *val
= dw_pcie_read_dbi(pci
, where
, size
);
225 return PCIBIOS_SUCCESSFUL
;
228 static int exynos_pcie_wr_own_conf(struct pci_bus
*bus
, unsigned int devfn
,
229 int where
, int size
, u32 val
)
231 struct dw_pcie
*pci
= to_dw_pcie_from_pp(bus
->sysdata
);
234 return PCIBIOS_DEVICE_NOT_FOUND
;
236 dw_pcie_write_dbi(pci
, where
, size
, val
);
237 return PCIBIOS_SUCCESSFUL
;
240 static struct pci_ops exynos_pci_ops
= {
241 .read
= exynos_pcie_rd_own_conf
,
242 .write
= exynos_pcie_wr_own_conf
,
245 static int exynos_pcie_link_up(struct dw_pcie
*pci
)
247 struct exynos_pcie
*ep
= to_exynos_pcie(pci
);
248 u32 val
= exynos_pcie_readl(ep
->elbi_base
, PCIE_ELBI_RDLH_LINKUP
);
250 return (val
& PCIE_ELBI_XMLH_LINKUP
);
253 static int exynos_pcie_host_init(struct pcie_port
*pp
)
255 struct dw_pcie
*pci
= to_dw_pcie_from_pp(pp
);
256 struct exynos_pcie
*ep
= to_exynos_pcie(pci
);
258 pp
->bridge
->ops
= &exynos_pci_ops
;
260 exynos_pcie_assert_core_reset(ep
);
263 phy_power_on(ep
->phy
);
266 exynos_pcie_deassert_core_reset(ep
);
267 exynos_pcie_enable_irq_pulse(ep
);
272 static const struct dw_pcie_host_ops exynos_pcie_host_ops
= {
273 .host_init
= exynos_pcie_host_init
,
276 static int exynos_add_pcie_port(struct exynos_pcie
*ep
,
277 struct platform_device
*pdev
)
279 struct dw_pcie
*pci
= &ep
->pci
;
280 struct pcie_port
*pp
= &pci
->pp
;
281 struct device
*dev
= &pdev
->dev
;
284 pp
->irq
= platform_get_irq(pdev
, 0);
288 ret
= devm_request_irq(dev
, pp
->irq
, exynos_pcie_irq_handler
,
289 IRQF_SHARED
, "exynos-pcie", ep
);
291 dev_err(dev
, "failed to request irq\n");
295 pp
->ops
= &exynos_pcie_host_ops
;
296 pp
->msi_irq
= -ENODEV
;
298 ret
= dw_pcie_host_init(pp
);
300 dev_err(dev
, "failed to initialize host\n");
307 static const struct dw_pcie_ops dw_pcie_ops
= {
308 .read_dbi
= exynos_pcie_read_dbi
,
309 .write_dbi
= exynos_pcie_write_dbi
,
310 .link_up
= exynos_pcie_link_up
,
311 .start_link
= exynos_pcie_start_link
,
314 static int exynos_pcie_probe(struct platform_device
*pdev
)
316 struct device
*dev
= &pdev
->dev
;
317 struct exynos_pcie
*ep
;
318 struct device_node
*np
= dev
->of_node
;
321 ep
= devm_kzalloc(dev
, sizeof(*ep
), GFP_KERNEL
);
326 ep
->pci
.ops
= &dw_pcie_ops
;
328 ep
->phy
= devm_of_phy_get(dev
, np
, NULL
);
330 return PTR_ERR(ep
->phy
);
332 /* External Local Bus interface (ELBI) registers */
333 ep
->elbi_base
= devm_platform_ioremap_resource_byname(pdev
, "elbi");
334 if (IS_ERR(ep
->elbi_base
))
335 return PTR_ERR(ep
->elbi_base
);
337 ep
->clk
= devm_clk_get(dev
, "pcie");
338 if (IS_ERR(ep
->clk
)) {
339 dev_err(dev
, "Failed to get pcie rc clock\n");
340 return PTR_ERR(ep
->clk
);
343 ep
->bus_clk
= devm_clk_get(dev
, "pcie_bus");
344 if (IS_ERR(ep
->bus_clk
)) {
345 dev_err(dev
, "Failed to get pcie bus clock\n");
346 return PTR_ERR(ep
->bus_clk
);
349 ep
->supplies
[0].supply
= "vdd18";
350 ep
->supplies
[1].supply
= "vdd10";
351 ret
= devm_regulator_bulk_get(dev
, ARRAY_SIZE(ep
->supplies
),
356 ret
= exynos_pcie_init_clk_resources(ep
);
360 ret
= regulator_bulk_enable(ARRAY_SIZE(ep
->supplies
), ep
->supplies
);
364 platform_set_drvdata(pdev
, ep
);
366 ret
= exynos_add_pcie_port(ep
, pdev
);
374 exynos_pcie_deinit_clk_resources(ep
);
375 regulator_bulk_disable(ARRAY_SIZE(ep
->supplies
), ep
->supplies
);
380 static int __exit
exynos_pcie_remove(struct platform_device
*pdev
)
382 struct exynos_pcie
*ep
= platform_get_drvdata(pdev
);
384 dw_pcie_host_deinit(&ep
->pci
.pp
);
385 exynos_pcie_assert_core_reset(ep
);
386 phy_power_off(ep
->phy
);
388 exynos_pcie_deinit_clk_resources(ep
);
389 regulator_bulk_disable(ARRAY_SIZE(ep
->supplies
), ep
->supplies
);
394 static int __maybe_unused
exynos_pcie_suspend_noirq(struct device
*dev
)
396 struct exynos_pcie
*ep
= dev_get_drvdata(dev
);
398 exynos_pcie_assert_core_reset(ep
);
399 phy_power_off(ep
->phy
);
401 regulator_bulk_disable(ARRAY_SIZE(ep
->supplies
), ep
->supplies
);
406 static int __maybe_unused
exynos_pcie_resume_noirq(struct device
*dev
)
408 struct exynos_pcie
*ep
= dev_get_drvdata(dev
);
409 struct dw_pcie
*pci
= &ep
->pci
;
410 struct pcie_port
*pp
= &pci
->pp
;
413 ret
= regulator_bulk_enable(ARRAY_SIZE(ep
->supplies
), ep
->supplies
);
417 /* exynos_pcie_host_init controls ep->phy */
418 exynos_pcie_host_init(pp
);
419 dw_pcie_setup_rc(pp
);
420 exynos_pcie_start_link(pci
);
421 return dw_pcie_wait_for_link(pci
);
424 static const struct dev_pm_ops exynos_pcie_pm_ops
= {
425 SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(exynos_pcie_suspend_noirq
,
426 exynos_pcie_resume_noirq
)
429 static const struct of_device_id exynos_pcie_of_match
[] = {
430 { .compatible
= "samsung,exynos5433-pcie", },
434 static struct platform_driver exynos_pcie_driver
= {
435 .probe
= exynos_pcie_probe
,
436 .remove
= __exit_p(exynos_pcie_remove
),
438 .name
= "exynos-pcie",
439 .of_match_table
= exynos_pcie_of_match
,
440 .pm
= &exynos_pcie_pm_ops
,
443 module_platform_driver(exynos_pcie_driver
);
444 MODULE_LICENSE("GPL v2");
445 MODULE_DEVICE_TABLE(of
, exynos_pcie_of_match
);