1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * PCIe host controller driver for Samsung Exynos SoCs
4  *
5  * Copyright (C) 2013-2020 Samsung Electronics Co., Ltd.
6  *		https://www.samsung.com
7  *
8  * Author: Jingoo Han <jg1.han@samsung.com>
9  *	   Jaehoon Chung <jh80.chung@samsung.com>
10  */
11 
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>
22 #include <linux/module.h>
23 
24 #include "pcie-designware.h"
25 
26 #define to_exynos_pcie(x)	dev_get_drvdata((x)->dev)
27 
28 /* PCIe ELBI registers */
29 #define PCIE_IRQ_PULSE			0x000
30 #define IRQ_INTA_ASSERT			BIT(0)
31 #define IRQ_INTB_ASSERT			BIT(2)
32 #define IRQ_INTC_ASSERT			BIT(4)
33 #define IRQ_INTD_ASSERT			BIT(6)
34 #define PCIE_IRQ_LEVEL			0x004
35 #define PCIE_IRQ_SPECIAL		0x008
36 #define PCIE_IRQ_EN_PULSE		0x00c
37 #define PCIE_IRQ_EN_LEVEL		0x010
38 #define PCIE_IRQ_EN_SPECIAL		0x014
39 #define PCIE_SW_WAKE			0x018
40 #define PCIE_BUS_EN			BIT(1)
41 #define PCIE_CORE_RESET			0x01c
42 #define PCIE_CORE_RESET_ENABLE		BIT(0)
43 #define PCIE_STICKY_RESET		0x020
44 #define PCIE_NONSTICKY_RESET		0x024
45 #define PCIE_APP_INIT_RESET		0x028
46 #define PCIE_APP_LTSSM_ENABLE		0x02c
47 #define PCIE_ELBI_RDLH_LINKUP		0x074
48 #define PCIE_ELBI_XMLH_LINKUP		BIT(4)
49 #define PCIE_ELBI_LTSSM_ENABLE		0x1
50 #define PCIE_ELBI_SLV_AWMISC		0x11c
51 #define PCIE_ELBI_SLV_ARMISC		0x120
52 #define PCIE_ELBI_SLV_DBI_ENABLE	BIT(21)
53 
54 struct exynos_pcie {
55 	struct dw_pcie			pci;
56 	void __iomem			*elbi_base;
57 	struct clk			*clk;
58 	struct clk			*bus_clk;
59 	struct phy			*phy;
60 	struct regulator_bulk_data	supplies[2];
61 };
62 
63 static int exynos_pcie_init_clk_resources(struct exynos_pcie *ep)
64 {
65 	struct device *dev = ep->pci.dev;
66 	int ret;
67 
68 	ret = clk_prepare_enable(ep->clk);
69 	if (ret) {
70 		dev_err(dev, "cannot enable pcie rc clock");
71 		return ret;
72 	}
73 
74 	ret = clk_prepare_enable(ep->bus_clk);
75 	if (ret) {
76 		dev_err(dev, "cannot enable pcie bus clock");
77 		goto err_bus_clk;
78 	}
79 
80 	return 0;
81 
82 err_bus_clk:
83 	clk_disable_unprepare(ep->clk);
84 
85 	return ret;
86 }
87 
88 static void exynos_pcie_deinit_clk_resources(struct exynos_pcie *ep)
89 {
90 	clk_disable_unprepare(ep->bus_clk);
91 	clk_disable_unprepare(ep->clk);
92 }
93 
94 static void exynos_pcie_writel(void __iomem *base, u32 val, u32 reg)
95 {
96 	writel(val, base + reg);
97 }
98 
99 static u32 exynos_pcie_readl(void __iomem *base, u32 reg)
100 {
101 	return readl(base + reg);
102 }
103 
104 static void exynos_pcie_sideband_dbi_w_mode(struct exynos_pcie *ep, bool on)
105 {
106 	u32 val;
107 
108 	val = exynos_pcie_readl(ep->elbi_base, PCIE_ELBI_SLV_AWMISC);
109 	if (on)
110 		val |= PCIE_ELBI_SLV_DBI_ENABLE;
111 	else
112 		val &= ~PCIE_ELBI_SLV_DBI_ENABLE;
113 	exynos_pcie_writel(ep->elbi_base, val, PCIE_ELBI_SLV_AWMISC);
114 }
115 
116 static void exynos_pcie_sideband_dbi_r_mode(struct exynos_pcie *ep, bool on)
117 {
118 	u32 val;
119 
120 	val = exynos_pcie_readl(ep->elbi_base, PCIE_ELBI_SLV_ARMISC);
121 	if (on)
122 		val |= PCIE_ELBI_SLV_DBI_ENABLE;
123 	else
124 		val &= ~PCIE_ELBI_SLV_DBI_ENABLE;
125 	exynos_pcie_writel(ep->elbi_base, val, PCIE_ELBI_SLV_ARMISC);
126 }
127 
128 static void exynos_pcie_assert_core_reset(struct exynos_pcie *ep)
129 {
130 	u32 val;
131 
132 	val = exynos_pcie_readl(ep->elbi_base, PCIE_CORE_RESET);
133 	val &= ~PCIE_CORE_RESET_ENABLE;
134 	exynos_pcie_writel(ep->elbi_base, val, PCIE_CORE_RESET);
135 	exynos_pcie_writel(ep->elbi_base, 0, PCIE_STICKY_RESET);
136 	exynos_pcie_writel(ep->elbi_base, 0, PCIE_NONSTICKY_RESET);
137 }
138 
139 static void exynos_pcie_deassert_core_reset(struct exynos_pcie *ep)
140 {
141 	u32 val;
142 
143 	val = exynos_pcie_readl(ep->elbi_base, PCIE_CORE_RESET);
144 	val |= PCIE_CORE_RESET_ENABLE;
145 
146 	exynos_pcie_writel(ep->elbi_base, val, PCIE_CORE_RESET);
147 	exynos_pcie_writel(ep->elbi_base, 1, PCIE_STICKY_RESET);
148 	exynos_pcie_writel(ep->elbi_base, 1, PCIE_NONSTICKY_RESET);
149 	exynos_pcie_writel(ep->elbi_base, 1, PCIE_APP_INIT_RESET);
150 	exynos_pcie_writel(ep->elbi_base, 0, PCIE_APP_INIT_RESET);
151 }
152 
153 static int exynos_pcie_start_link(struct dw_pcie *pci)
154 {
155 	struct exynos_pcie *ep = to_exynos_pcie(pci);
156 	u32 val;
157 
158 	val = exynos_pcie_readl(ep->elbi_base, PCIE_SW_WAKE);
159 	val &= ~PCIE_BUS_EN;
160 	exynos_pcie_writel(ep->elbi_base, val, PCIE_SW_WAKE);
161 
162 	/* assert LTSSM enable */
163 	exynos_pcie_writel(ep->elbi_base, PCIE_ELBI_LTSSM_ENABLE,
164 			  PCIE_APP_LTSSM_ENABLE);
165 	return 0;
166 }
167 
168 static void exynos_pcie_clear_irq_pulse(struct exynos_pcie *ep)
169 {
170 	u32 val = exynos_pcie_readl(ep->elbi_base, PCIE_IRQ_PULSE);
171 
172 	exynos_pcie_writel(ep->elbi_base, val, PCIE_IRQ_PULSE);
173 }
174 
175 static irqreturn_t exynos_pcie_irq_handler(int irq, void *arg)
176 {
177 	struct exynos_pcie *ep = arg;
178 
179 	exynos_pcie_clear_irq_pulse(ep);
180 	return IRQ_HANDLED;
181 }
182 
183 static void exynos_pcie_enable_irq_pulse(struct exynos_pcie *ep)
184 {
185 	u32 val = IRQ_INTA_ASSERT | IRQ_INTB_ASSERT |
186 		  IRQ_INTC_ASSERT | IRQ_INTD_ASSERT;
187 
188 	exynos_pcie_writel(ep->elbi_base, val, PCIE_IRQ_EN_PULSE);
189 	exynos_pcie_writel(ep->elbi_base, 0, PCIE_IRQ_EN_LEVEL);
190 	exynos_pcie_writel(ep->elbi_base, 0, PCIE_IRQ_EN_SPECIAL);
191 }
192 
193 static u32 exynos_pcie_read_dbi(struct dw_pcie *pci, void __iomem *base,
194 				u32 reg, size_t size)
195 {
196 	struct exynos_pcie *ep = to_exynos_pcie(pci);
197 	u32 val;
198 
199 	exynos_pcie_sideband_dbi_r_mode(ep, true);
200 	dw_pcie_read(base + reg, size, &val);
201 	exynos_pcie_sideband_dbi_r_mode(ep, false);
202 	return val;
203 }
204 
205 static void exynos_pcie_write_dbi(struct dw_pcie *pci, void __iomem *base,
206 				  u32 reg, size_t size, u32 val)
207 {
208 	struct exynos_pcie *ep = to_exynos_pcie(pci);
209 
210 	exynos_pcie_sideband_dbi_w_mode(ep, true);
211 	dw_pcie_write(base + reg, size, val);
212 	exynos_pcie_sideband_dbi_w_mode(ep, false);
213 }
214 
215 static int exynos_pcie_rd_own_conf(struct pci_bus *bus, unsigned int devfn,
216 				   int where, int size, u32 *val)
217 {
218 	struct dw_pcie *pci = to_dw_pcie_from_pp(bus->sysdata);
219 
220 	if (PCI_SLOT(devfn)) {
221 		*val = ~0;
222 		return PCIBIOS_DEVICE_NOT_FOUND;
223 	}
224 
225 	*val = dw_pcie_read_dbi(pci, where, size);
226 	return PCIBIOS_SUCCESSFUL;
227 }
228 
229 static int exynos_pcie_wr_own_conf(struct pci_bus *bus, unsigned int devfn,
230 				   int where, int size, u32 val)
231 {
232 	struct dw_pcie *pci = to_dw_pcie_from_pp(bus->sysdata);
233 
234 	if (PCI_SLOT(devfn))
235 		return PCIBIOS_DEVICE_NOT_FOUND;
236 
237 	dw_pcie_write_dbi(pci, where, size, val);
238 	return PCIBIOS_SUCCESSFUL;
239 }
240 
241 static struct pci_ops exynos_pci_ops = {
242 	.read = exynos_pcie_rd_own_conf,
243 	.write = exynos_pcie_wr_own_conf,
244 };
245 
246 static int exynos_pcie_link_up(struct dw_pcie *pci)
247 {
248 	struct exynos_pcie *ep = to_exynos_pcie(pci);
249 	u32 val = exynos_pcie_readl(ep->elbi_base, PCIE_ELBI_RDLH_LINKUP);
250 
251 	return (val & PCIE_ELBI_XMLH_LINKUP);
252 }
253 
254 static int exynos_pcie_host_init(struct pcie_port *pp)
255 {
256 	struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
257 	struct exynos_pcie *ep = to_exynos_pcie(pci);
258 
259 	pp->bridge->ops = &exynos_pci_ops;
260 
261 	exynos_pcie_assert_core_reset(ep);
262 
263 	phy_reset(ep->phy);
264 	phy_power_on(ep->phy);
265 	phy_init(ep->phy);
266 
267 	exynos_pcie_deassert_core_reset(ep);
268 	exynos_pcie_enable_irq_pulse(ep);
269 
270 	return 0;
271 }
272 
273 static const struct dw_pcie_host_ops exynos_pcie_host_ops = {
274 	.host_init = exynos_pcie_host_init,
275 };
276 
277 static int exynos_add_pcie_port(struct exynos_pcie *ep,
278 				       struct platform_device *pdev)
279 {
280 	struct dw_pcie *pci = &ep->pci;
281 	struct pcie_port *pp = &pci->pp;
282 	struct device *dev = &pdev->dev;
283 	int ret;
284 
285 	pp->irq = platform_get_irq(pdev, 0);
286 	if (pp->irq < 0)
287 		return pp->irq;
288 
289 	ret = devm_request_irq(dev, pp->irq, exynos_pcie_irq_handler,
290 			       IRQF_SHARED, "exynos-pcie", ep);
291 	if (ret) {
292 		dev_err(dev, "failed to request irq\n");
293 		return ret;
294 	}
295 
296 	pp->ops = &exynos_pcie_host_ops;
297 	pp->msi_irq = -ENODEV;
298 
299 	ret = dw_pcie_host_init(pp);
300 	if (ret) {
301 		dev_err(dev, "failed to initialize host\n");
302 		return ret;
303 	}
304 
305 	return 0;
306 }
307 
308 static const struct dw_pcie_ops dw_pcie_ops = {
309 	.read_dbi = exynos_pcie_read_dbi,
310 	.write_dbi = exynos_pcie_write_dbi,
311 	.link_up = exynos_pcie_link_up,
312 	.start_link = exynos_pcie_start_link,
313 };
314 
315 static int exynos_pcie_probe(struct platform_device *pdev)
316 {
317 	struct device *dev = &pdev->dev;
318 	struct exynos_pcie *ep;
319 	struct device_node *np = dev->of_node;
320 	int ret;
321 
322 	ep = devm_kzalloc(dev, sizeof(*ep), GFP_KERNEL);
323 	if (!ep)
324 		return -ENOMEM;
325 
326 	ep->pci.dev = dev;
327 	ep->pci.ops = &dw_pcie_ops;
328 
329 	ep->phy = devm_of_phy_get(dev, np, NULL);
330 	if (IS_ERR(ep->phy))
331 		return PTR_ERR(ep->phy);
332 
333 	/* External Local Bus interface (ELBI) registers */
334 	ep->elbi_base = devm_platform_ioremap_resource_byname(pdev, "elbi");
335 	if (IS_ERR(ep->elbi_base))
336 		return PTR_ERR(ep->elbi_base);
337 
338 	ep->clk = devm_clk_get(dev, "pcie");
339 	if (IS_ERR(ep->clk)) {
340 		dev_err(dev, "Failed to get pcie rc clock\n");
341 		return PTR_ERR(ep->clk);
342 	}
343 
344 	ep->bus_clk = devm_clk_get(dev, "pcie_bus");
345 	if (IS_ERR(ep->bus_clk)) {
346 		dev_err(dev, "Failed to get pcie bus clock\n");
347 		return PTR_ERR(ep->bus_clk);
348 	}
349 
350 	ep->supplies[0].supply = "vdd18";
351 	ep->supplies[1].supply = "vdd10";
352 	ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(ep->supplies),
353 				      ep->supplies);
354 	if (ret)
355 		return ret;
356 
357 	ret = exynos_pcie_init_clk_resources(ep);
358 	if (ret)
359 		return ret;
360 
361 	ret = regulator_bulk_enable(ARRAY_SIZE(ep->supplies), ep->supplies);
362 	if (ret)
363 		return ret;
364 
365 	platform_set_drvdata(pdev, ep);
366 
367 	ret = exynos_add_pcie_port(ep, pdev);
368 	if (ret < 0)
369 		goto fail_probe;
370 
371 	return 0;
372 
373 fail_probe:
374 	phy_exit(ep->phy);
375 	exynos_pcie_deinit_clk_resources(ep);
376 	regulator_bulk_disable(ARRAY_SIZE(ep->supplies), ep->supplies);
377 
378 	return ret;
379 }
380 
381 static int __exit exynos_pcie_remove(struct platform_device *pdev)
382 {
383 	struct exynos_pcie *ep = platform_get_drvdata(pdev);
384 
385 	dw_pcie_host_deinit(&ep->pci.pp);
386 	exynos_pcie_assert_core_reset(ep);
387 	phy_power_off(ep->phy);
388 	phy_exit(ep->phy);
389 	exynos_pcie_deinit_clk_resources(ep);
390 	regulator_bulk_disable(ARRAY_SIZE(ep->supplies), ep->supplies);
391 
392 	return 0;
393 }
394 
395 static int __maybe_unused exynos_pcie_suspend_noirq(struct device *dev)
396 {
397 	struct exynos_pcie *ep = dev_get_drvdata(dev);
398 
399 	exynos_pcie_assert_core_reset(ep);
400 	phy_power_off(ep->phy);
401 	phy_exit(ep->phy);
402 	regulator_bulk_disable(ARRAY_SIZE(ep->supplies), ep->supplies);
403 
404 	return 0;
405 }
406 
407 static int __maybe_unused exynos_pcie_resume_noirq(struct device *dev)
408 {
409 	struct exynos_pcie *ep = dev_get_drvdata(dev);
410 	struct dw_pcie *pci = &ep->pci;
411 	struct pcie_port *pp = &pci->pp;
412 	int ret;
413 
414 	ret = regulator_bulk_enable(ARRAY_SIZE(ep->supplies), ep->supplies);
415 	if (ret)
416 		return ret;
417 
418 	/* exynos_pcie_host_init controls ep->phy */
419 	exynos_pcie_host_init(pp);
420 	dw_pcie_setup_rc(pp);
421 	exynos_pcie_start_link(pci);
422 	return dw_pcie_wait_for_link(pci);
423 }
424 
425 static const struct dev_pm_ops exynos_pcie_pm_ops = {
426 	SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(exynos_pcie_suspend_noirq,
427 				      exynos_pcie_resume_noirq)
428 };
429 
430 static const struct of_device_id exynos_pcie_of_match[] = {
431 	{ .compatible = "samsung,exynos5433-pcie", },
432 	{ },
433 };
434 
435 static struct platform_driver exynos_pcie_driver = {
436 	.probe		= exynos_pcie_probe,
437 	.remove		= __exit_p(exynos_pcie_remove),
438 	.driver = {
439 		.name	= "exynos-pcie",
440 		.of_match_table = exynos_pcie_of_match,
441 		.pm		= &exynos_pcie_pm_ops,
442 	},
443 };
444 module_platform_driver(exynos_pcie_driver);
445 MODULE_LICENSE("GPL v2");
446 MODULE_DEVICE_TABLE(of, exynos_pcie_of_match);
447