irqchip/s3c24xx: Mark init_eint as __maybe_unused
[linux/fpc-iii.git] / drivers / pci / host / pci-exynos.c
blob01095e1160a474b414112cdc1dddae1d8f3b9434
1 /*
2 * PCIe host controller driver for Samsung EXYNOS SoCs
4 * Copyright (C) 2013 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com
7 * Author: Jingoo Han <jg1.han@samsung.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/clk.h>
15 #include <linux/delay.h>
16 #include <linux/gpio.h>
17 #include <linux/interrupt.h>
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/of_gpio.h>
21 #include <linux/pci.h>
22 #include <linux/platform_device.h>
23 #include <linux/resource.h>
24 #include <linux/signal.h>
25 #include <linux/types.h>
27 #include "pcie-designware.h"
29 #define to_exynos_pcie(x) container_of(x, struct exynos_pcie, pp)
31 struct exynos_pcie {
32 void __iomem *elbi_base;
33 void __iomem *phy_base;
34 void __iomem *block_base;
35 int reset_gpio;
36 struct clk *clk;
37 struct clk *bus_clk;
38 struct pcie_port pp;
41 /* PCIe ELBI registers */
42 #define PCIE_IRQ_PULSE 0x000
43 #define IRQ_INTA_ASSERT (0x1 << 0)
44 #define IRQ_INTB_ASSERT (0x1 << 2)
45 #define IRQ_INTC_ASSERT (0x1 << 4)
46 #define IRQ_INTD_ASSERT (0x1 << 6)
47 #define PCIE_IRQ_LEVEL 0x004
48 #define PCIE_IRQ_SPECIAL 0x008
49 #define PCIE_IRQ_EN_PULSE 0x00c
50 #define PCIE_IRQ_EN_LEVEL 0x010
51 #define IRQ_MSI_ENABLE (0x1 << 2)
52 #define PCIE_IRQ_EN_SPECIAL 0x014
53 #define PCIE_PWR_RESET 0x018
54 #define PCIE_CORE_RESET 0x01c
55 #define PCIE_CORE_RESET_ENABLE (0x1 << 0)
56 #define PCIE_STICKY_RESET 0x020
57 #define PCIE_NONSTICKY_RESET 0x024
58 #define PCIE_APP_INIT_RESET 0x028
59 #define PCIE_APP_LTSSM_ENABLE 0x02c
60 #define PCIE_ELBI_RDLH_LINKUP 0x064
61 #define PCIE_ELBI_LTSSM_ENABLE 0x1
62 #define PCIE_ELBI_SLV_AWMISC 0x11c
63 #define PCIE_ELBI_SLV_ARMISC 0x120
64 #define PCIE_ELBI_SLV_DBI_ENABLE (0x1 << 21)
66 /* PCIe Purple registers */
67 #define PCIE_PHY_GLOBAL_RESET 0x000
68 #define PCIE_PHY_COMMON_RESET 0x004
69 #define PCIE_PHY_CMN_REG 0x008
70 #define PCIE_PHY_MAC_RESET 0x00c
71 #define PCIE_PHY_PLL_LOCKED 0x010
72 #define PCIE_PHY_TRSVREG_RESET 0x020
73 #define PCIE_PHY_TRSV_RESET 0x024
75 /* PCIe PHY registers */
76 #define PCIE_PHY_IMPEDANCE 0x004
77 #define PCIE_PHY_PLL_DIV_0 0x008
78 #define PCIE_PHY_PLL_BIAS 0x00c
79 #define PCIE_PHY_DCC_FEEDBACK 0x014
80 #define PCIE_PHY_PLL_DIV_1 0x05c
81 #define PCIE_PHY_COMMON_POWER 0x064
82 #define PCIE_PHY_COMMON_PD_CMN (0x1 << 3)
83 #define PCIE_PHY_TRSV0_EMP_LVL 0x084
84 #define PCIE_PHY_TRSV0_DRV_LVL 0x088
85 #define PCIE_PHY_TRSV0_RXCDR 0x0ac
86 #define PCIE_PHY_TRSV0_POWER 0x0c4
87 #define PCIE_PHY_TRSV0_PD_TSV (0x1 << 7)
88 #define PCIE_PHY_TRSV0_LVCC 0x0dc
89 #define PCIE_PHY_TRSV1_EMP_LVL 0x144
90 #define PCIE_PHY_TRSV1_RXCDR 0x16c
91 #define PCIE_PHY_TRSV1_POWER 0x184
92 #define PCIE_PHY_TRSV1_PD_TSV (0x1 << 7)
93 #define PCIE_PHY_TRSV1_LVCC 0x19c
94 #define PCIE_PHY_TRSV2_EMP_LVL 0x204
95 #define PCIE_PHY_TRSV2_RXCDR 0x22c
96 #define PCIE_PHY_TRSV2_POWER 0x244
97 #define PCIE_PHY_TRSV2_PD_TSV (0x1 << 7)
98 #define PCIE_PHY_TRSV2_LVCC 0x25c
99 #define PCIE_PHY_TRSV3_EMP_LVL 0x2c4
100 #define PCIE_PHY_TRSV3_RXCDR 0x2ec
101 #define PCIE_PHY_TRSV3_POWER 0x304
102 #define PCIE_PHY_TRSV3_PD_TSV (0x1 << 7)
103 #define PCIE_PHY_TRSV3_LVCC 0x31c
105 static inline void exynos_elb_writel(struct exynos_pcie *pcie, u32 val, u32 reg)
107 writel(val, pcie->elbi_base + reg);
110 static inline u32 exynos_elb_readl(struct exynos_pcie *pcie, u32 reg)
112 return readl(pcie->elbi_base + reg);
115 static inline void exynos_phy_writel(struct exynos_pcie *pcie, u32 val, u32 reg)
117 writel(val, pcie->phy_base + reg);
120 static inline u32 exynos_phy_readl(struct exynos_pcie *pcie, u32 reg)
122 return readl(pcie->phy_base + reg);
125 static inline void exynos_blk_writel(struct exynos_pcie *pcie, u32 val, u32 reg)
127 writel(val, pcie->block_base + reg);
130 static inline u32 exynos_blk_readl(struct exynos_pcie *pcie, u32 reg)
132 return readl(pcie->block_base + reg);
135 static void exynos_pcie_sideband_dbi_w_mode(struct pcie_port *pp, bool on)
137 u32 val;
138 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
140 if (on) {
141 val = exynos_elb_readl(exynos_pcie, PCIE_ELBI_SLV_AWMISC);
142 val |= PCIE_ELBI_SLV_DBI_ENABLE;
143 exynos_elb_writel(exynos_pcie, val, PCIE_ELBI_SLV_AWMISC);
144 } else {
145 val = exynos_elb_readl(exynos_pcie, PCIE_ELBI_SLV_AWMISC);
146 val &= ~PCIE_ELBI_SLV_DBI_ENABLE;
147 exynos_elb_writel(exynos_pcie, val, PCIE_ELBI_SLV_AWMISC);
151 static void exynos_pcie_sideband_dbi_r_mode(struct pcie_port *pp, bool on)
153 u32 val;
154 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
156 if (on) {
157 val = exynos_elb_readl(exynos_pcie, PCIE_ELBI_SLV_ARMISC);
158 val |= PCIE_ELBI_SLV_DBI_ENABLE;
159 exynos_elb_writel(exynos_pcie, val, PCIE_ELBI_SLV_ARMISC);
160 } else {
161 val = exynos_elb_readl(exynos_pcie, PCIE_ELBI_SLV_ARMISC);
162 val &= ~PCIE_ELBI_SLV_DBI_ENABLE;
163 exynos_elb_writel(exynos_pcie, val, PCIE_ELBI_SLV_ARMISC);
167 static void exynos_pcie_assert_core_reset(struct pcie_port *pp)
169 u32 val;
170 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
172 val = exynos_elb_readl(exynos_pcie, PCIE_CORE_RESET);
173 val &= ~PCIE_CORE_RESET_ENABLE;
174 exynos_elb_writel(exynos_pcie, val, PCIE_CORE_RESET);
175 exynos_elb_writel(exynos_pcie, 0, PCIE_PWR_RESET);
176 exynos_elb_writel(exynos_pcie, 0, PCIE_STICKY_RESET);
177 exynos_elb_writel(exynos_pcie, 0, PCIE_NONSTICKY_RESET);
180 static void exynos_pcie_deassert_core_reset(struct pcie_port *pp)
182 u32 val;
183 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
185 val = exynos_elb_readl(exynos_pcie, PCIE_CORE_RESET);
186 val |= PCIE_CORE_RESET_ENABLE;
188 exynos_elb_writel(exynos_pcie, val, PCIE_CORE_RESET);
189 exynos_elb_writel(exynos_pcie, 1, PCIE_STICKY_RESET);
190 exynos_elb_writel(exynos_pcie, 1, PCIE_NONSTICKY_RESET);
191 exynos_elb_writel(exynos_pcie, 1, PCIE_APP_INIT_RESET);
192 exynos_elb_writel(exynos_pcie, 0, PCIE_APP_INIT_RESET);
193 exynos_blk_writel(exynos_pcie, 1, PCIE_PHY_MAC_RESET);
196 static void exynos_pcie_assert_phy_reset(struct pcie_port *pp)
198 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
200 exynos_blk_writel(exynos_pcie, 0, PCIE_PHY_MAC_RESET);
201 exynos_blk_writel(exynos_pcie, 1, PCIE_PHY_GLOBAL_RESET);
204 static void exynos_pcie_deassert_phy_reset(struct pcie_port *pp)
206 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
208 exynos_blk_writel(exynos_pcie, 0, PCIE_PHY_GLOBAL_RESET);
209 exynos_elb_writel(exynos_pcie, 1, PCIE_PWR_RESET);
210 exynos_blk_writel(exynos_pcie, 0, PCIE_PHY_COMMON_RESET);
211 exynos_blk_writel(exynos_pcie, 0, PCIE_PHY_CMN_REG);
212 exynos_blk_writel(exynos_pcie, 0, PCIE_PHY_TRSVREG_RESET);
213 exynos_blk_writel(exynos_pcie, 0, PCIE_PHY_TRSV_RESET);
216 static void exynos_pcie_power_on_phy(struct pcie_port *pp)
218 u32 val;
219 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
221 val = exynos_phy_readl(exynos_pcie, PCIE_PHY_COMMON_POWER);
222 val &= ~PCIE_PHY_COMMON_PD_CMN;
223 exynos_phy_writel(exynos_pcie, val, PCIE_PHY_COMMON_POWER);
225 val = exynos_phy_readl(exynos_pcie, PCIE_PHY_TRSV0_POWER);
226 val &= ~PCIE_PHY_TRSV0_PD_TSV;
227 exynos_phy_writel(exynos_pcie, val, PCIE_PHY_TRSV0_POWER);
229 val = exynos_phy_readl(exynos_pcie, PCIE_PHY_TRSV1_POWER);
230 val &= ~PCIE_PHY_TRSV1_PD_TSV;
231 exynos_phy_writel(exynos_pcie, val, PCIE_PHY_TRSV1_POWER);
233 val = exynos_phy_readl(exynos_pcie, PCIE_PHY_TRSV2_POWER);
234 val &= ~PCIE_PHY_TRSV2_PD_TSV;
235 exynos_phy_writel(exynos_pcie, val, PCIE_PHY_TRSV2_POWER);
237 val = exynos_phy_readl(exynos_pcie, PCIE_PHY_TRSV3_POWER);
238 val &= ~PCIE_PHY_TRSV3_PD_TSV;
239 exynos_phy_writel(exynos_pcie, val, PCIE_PHY_TRSV3_POWER);
242 static void exynos_pcie_power_off_phy(struct pcie_port *pp)
244 u32 val;
245 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
247 val = exynos_phy_readl(exynos_pcie, PCIE_PHY_COMMON_POWER);
248 val |= PCIE_PHY_COMMON_PD_CMN;
249 exynos_phy_writel(exynos_pcie, val, PCIE_PHY_COMMON_POWER);
251 val = exynos_phy_readl(exynos_pcie, PCIE_PHY_TRSV0_POWER);
252 val |= PCIE_PHY_TRSV0_PD_TSV;
253 exynos_phy_writel(exynos_pcie, val, PCIE_PHY_TRSV0_POWER);
255 val = exynos_phy_readl(exynos_pcie, PCIE_PHY_TRSV1_POWER);
256 val |= PCIE_PHY_TRSV1_PD_TSV;
257 exynos_phy_writel(exynos_pcie, val, PCIE_PHY_TRSV1_POWER);
259 val = exynos_phy_readl(exynos_pcie, PCIE_PHY_TRSV2_POWER);
260 val |= PCIE_PHY_TRSV2_PD_TSV;
261 exynos_phy_writel(exynos_pcie, val, PCIE_PHY_TRSV2_POWER);
263 val = exynos_phy_readl(exynos_pcie, PCIE_PHY_TRSV3_POWER);
264 val |= PCIE_PHY_TRSV3_PD_TSV;
265 exynos_phy_writel(exynos_pcie, val, PCIE_PHY_TRSV3_POWER);
268 static void exynos_pcie_init_phy(struct pcie_port *pp)
270 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
272 /* DCC feedback control off */
273 exynos_phy_writel(exynos_pcie, 0x29, PCIE_PHY_DCC_FEEDBACK);
275 /* set TX/RX impedance */
276 exynos_phy_writel(exynos_pcie, 0xd5, PCIE_PHY_IMPEDANCE);
278 /* set 50Mhz PHY clock */
279 exynos_phy_writel(exynos_pcie, 0x14, PCIE_PHY_PLL_DIV_0);
280 exynos_phy_writel(exynos_pcie, 0x12, PCIE_PHY_PLL_DIV_1);
282 /* set TX Differential output for lane 0 */
283 exynos_phy_writel(exynos_pcie, 0x7f, PCIE_PHY_TRSV0_DRV_LVL);
285 /* set TX Pre-emphasis Level Control for lane 0 to minimum */
286 exynos_phy_writel(exynos_pcie, 0x0, PCIE_PHY_TRSV0_EMP_LVL);
288 /* set RX clock and data recovery bandwidth */
289 exynos_phy_writel(exynos_pcie, 0xe7, PCIE_PHY_PLL_BIAS);
290 exynos_phy_writel(exynos_pcie, 0x82, PCIE_PHY_TRSV0_RXCDR);
291 exynos_phy_writel(exynos_pcie, 0x82, PCIE_PHY_TRSV1_RXCDR);
292 exynos_phy_writel(exynos_pcie, 0x82, PCIE_PHY_TRSV2_RXCDR);
293 exynos_phy_writel(exynos_pcie, 0x82, PCIE_PHY_TRSV3_RXCDR);
295 /* change TX Pre-emphasis Level Control for lanes */
296 exynos_phy_writel(exynos_pcie, 0x39, PCIE_PHY_TRSV0_EMP_LVL);
297 exynos_phy_writel(exynos_pcie, 0x39, PCIE_PHY_TRSV1_EMP_LVL);
298 exynos_phy_writel(exynos_pcie, 0x39, PCIE_PHY_TRSV2_EMP_LVL);
299 exynos_phy_writel(exynos_pcie, 0x39, PCIE_PHY_TRSV3_EMP_LVL);
301 /* set LVCC */
302 exynos_phy_writel(exynos_pcie, 0x20, PCIE_PHY_TRSV0_LVCC);
303 exynos_phy_writel(exynos_pcie, 0xa0, PCIE_PHY_TRSV1_LVCC);
304 exynos_phy_writel(exynos_pcie, 0xa0, PCIE_PHY_TRSV2_LVCC);
305 exynos_phy_writel(exynos_pcie, 0xa0, PCIE_PHY_TRSV3_LVCC);
308 static void exynos_pcie_assert_reset(struct pcie_port *pp)
310 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
312 if (exynos_pcie->reset_gpio >= 0)
313 devm_gpio_request_one(pp->dev, exynos_pcie->reset_gpio,
314 GPIOF_OUT_INIT_HIGH, "RESET");
317 static int exynos_pcie_establish_link(struct pcie_port *pp)
319 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
320 u32 val;
321 unsigned int retries;
323 if (dw_pcie_link_up(pp)) {
324 dev_err(pp->dev, "Link already up\n");
325 return 0;
328 /* assert reset signals */
329 exynos_pcie_assert_core_reset(pp);
330 exynos_pcie_assert_phy_reset(pp);
332 /* de-assert phy reset */
333 exynos_pcie_deassert_phy_reset(pp);
335 /* power on phy */
336 exynos_pcie_power_on_phy(pp);
338 /* initialize phy */
339 exynos_pcie_init_phy(pp);
341 /* pulse for common reset */
342 exynos_blk_writel(exynos_pcie, 1, PCIE_PHY_COMMON_RESET);
343 udelay(500);
344 exynos_blk_writel(exynos_pcie, 0, PCIE_PHY_COMMON_RESET);
346 /* de-assert core reset */
347 exynos_pcie_deassert_core_reset(pp);
349 /* setup root complex */
350 dw_pcie_setup_rc(pp);
352 /* assert reset signal */
353 exynos_pcie_assert_reset(pp);
355 /* assert LTSSM enable */
356 exynos_elb_writel(exynos_pcie, PCIE_ELBI_LTSSM_ENABLE,
357 PCIE_APP_LTSSM_ENABLE);
359 /* check if the link is up or not */
360 for (retries = 0; retries < 10; retries++) {
361 if (dw_pcie_link_up(pp)) {
362 dev_info(pp->dev, "Link up\n");
363 return 0;
365 mdelay(100);
368 while (exynos_phy_readl(exynos_pcie, PCIE_PHY_PLL_LOCKED) == 0) {
369 val = exynos_blk_readl(exynos_pcie, PCIE_PHY_PLL_LOCKED);
370 dev_info(pp->dev, "PLL Locked: 0x%x\n", val);
372 /* power off phy */
373 exynos_pcie_power_off_phy(pp);
375 dev_err(pp->dev, "PCIe Link Fail\n");
376 return -EINVAL;
379 static void exynos_pcie_clear_irq_pulse(struct pcie_port *pp)
381 u32 val;
382 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
384 val = exynos_elb_readl(exynos_pcie, PCIE_IRQ_PULSE);
385 exynos_elb_writel(exynos_pcie, val, PCIE_IRQ_PULSE);
388 static void exynos_pcie_enable_irq_pulse(struct pcie_port *pp)
390 u32 val;
391 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
393 /* enable INTX interrupt */
394 val = IRQ_INTA_ASSERT | IRQ_INTB_ASSERT |
395 IRQ_INTC_ASSERT | IRQ_INTD_ASSERT;
396 exynos_elb_writel(exynos_pcie, val, PCIE_IRQ_EN_PULSE);
399 static irqreturn_t exynos_pcie_irq_handler(int irq, void *arg)
401 struct pcie_port *pp = arg;
403 exynos_pcie_clear_irq_pulse(pp);
404 return IRQ_HANDLED;
407 static irqreturn_t exynos_pcie_msi_irq_handler(int irq, void *arg)
409 struct pcie_port *pp = arg;
411 return dw_handle_msi_irq(pp);
414 static void exynos_pcie_msi_init(struct pcie_port *pp)
416 u32 val;
417 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
419 dw_pcie_msi_init(pp);
421 /* enable MSI interrupt */
422 val = exynos_elb_readl(exynos_pcie, PCIE_IRQ_EN_LEVEL);
423 val |= IRQ_MSI_ENABLE;
424 exynos_elb_writel(exynos_pcie, val, PCIE_IRQ_EN_LEVEL);
427 static void exynos_pcie_enable_interrupts(struct pcie_port *pp)
429 exynos_pcie_enable_irq_pulse(pp);
431 if (IS_ENABLED(CONFIG_PCI_MSI))
432 exynos_pcie_msi_init(pp);
435 static inline void exynos_pcie_readl_rc(struct pcie_port *pp,
436 void __iomem *dbi_base, u32 *val)
438 exynos_pcie_sideband_dbi_r_mode(pp, true);
439 *val = readl(dbi_base);
440 exynos_pcie_sideband_dbi_r_mode(pp, false);
443 static inline void exynos_pcie_writel_rc(struct pcie_port *pp,
444 u32 val, void __iomem *dbi_base)
446 exynos_pcie_sideband_dbi_w_mode(pp, true);
447 writel(val, dbi_base);
448 exynos_pcie_sideband_dbi_w_mode(pp, false);
451 static int exynos_pcie_rd_own_conf(struct pcie_port *pp, int where, int size,
452 u32 *val)
454 int ret;
456 exynos_pcie_sideband_dbi_r_mode(pp, true);
457 ret = dw_pcie_cfg_read(pp->dbi_base + where, size, val);
458 exynos_pcie_sideband_dbi_r_mode(pp, false);
459 return ret;
462 static int exynos_pcie_wr_own_conf(struct pcie_port *pp, int where, int size,
463 u32 val)
465 int ret;
467 exynos_pcie_sideband_dbi_w_mode(pp, true);
468 ret = dw_pcie_cfg_write(pp->dbi_base + where, size, val);
469 exynos_pcie_sideband_dbi_w_mode(pp, false);
470 return ret;
473 static int exynos_pcie_link_up(struct pcie_port *pp)
475 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
476 u32 val = exynos_elb_readl(exynos_pcie, PCIE_ELBI_RDLH_LINKUP);
478 if (val == PCIE_ELBI_LTSSM_ENABLE)
479 return 1;
481 return 0;
484 static void exynos_pcie_host_init(struct pcie_port *pp)
486 exynos_pcie_establish_link(pp);
487 exynos_pcie_enable_interrupts(pp);
490 static struct pcie_host_ops exynos_pcie_host_ops = {
491 .readl_rc = exynos_pcie_readl_rc,
492 .writel_rc = exynos_pcie_writel_rc,
493 .rd_own_conf = exynos_pcie_rd_own_conf,
494 .wr_own_conf = exynos_pcie_wr_own_conf,
495 .link_up = exynos_pcie_link_up,
496 .host_init = exynos_pcie_host_init,
499 static int __init exynos_add_pcie_port(struct pcie_port *pp,
500 struct platform_device *pdev)
502 int ret;
504 pp->irq = platform_get_irq(pdev, 1);
505 if (!pp->irq) {
506 dev_err(&pdev->dev, "failed to get irq\n");
507 return -ENODEV;
509 ret = devm_request_irq(&pdev->dev, pp->irq, exynos_pcie_irq_handler,
510 IRQF_SHARED, "exynos-pcie", pp);
511 if (ret) {
512 dev_err(&pdev->dev, "failed to request irq\n");
513 return ret;
516 if (IS_ENABLED(CONFIG_PCI_MSI)) {
517 pp->msi_irq = platform_get_irq(pdev, 0);
518 if (!pp->msi_irq) {
519 dev_err(&pdev->dev, "failed to get msi irq\n");
520 return -ENODEV;
523 ret = devm_request_irq(&pdev->dev, pp->msi_irq,
524 exynos_pcie_msi_irq_handler,
525 IRQF_SHARED, "exynos-pcie", pp);
526 if (ret) {
527 dev_err(&pdev->dev, "failed to request msi irq\n");
528 return ret;
532 pp->root_bus_nr = -1;
533 pp->ops = &exynos_pcie_host_ops;
535 ret = dw_pcie_host_init(pp);
536 if (ret) {
537 dev_err(&pdev->dev, "failed to initialize host\n");
538 return ret;
541 return 0;
544 static int __init exynos_pcie_probe(struct platform_device *pdev)
546 struct exynos_pcie *exynos_pcie;
547 struct pcie_port *pp;
548 struct device_node *np = pdev->dev.of_node;
549 struct resource *elbi_base;
550 struct resource *phy_base;
551 struct resource *block_base;
552 int ret;
554 exynos_pcie = devm_kzalloc(&pdev->dev, sizeof(*exynos_pcie),
555 GFP_KERNEL);
556 if (!exynos_pcie)
557 return -ENOMEM;
559 pp = &exynos_pcie->pp;
561 pp->dev = &pdev->dev;
563 exynos_pcie->reset_gpio = of_get_named_gpio(np, "reset-gpio", 0);
565 exynos_pcie->clk = devm_clk_get(&pdev->dev, "pcie");
566 if (IS_ERR(exynos_pcie->clk)) {
567 dev_err(&pdev->dev, "Failed to get pcie rc clock\n");
568 return PTR_ERR(exynos_pcie->clk);
570 ret = clk_prepare_enable(exynos_pcie->clk);
571 if (ret)
572 return ret;
574 exynos_pcie->bus_clk = devm_clk_get(&pdev->dev, "pcie_bus");
575 if (IS_ERR(exynos_pcie->bus_clk)) {
576 dev_err(&pdev->dev, "Failed to get pcie bus clock\n");
577 ret = PTR_ERR(exynos_pcie->bus_clk);
578 goto fail_clk;
580 ret = clk_prepare_enable(exynos_pcie->bus_clk);
581 if (ret)
582 goto fail_clk;
584 elbi_base = platform_get_resource(pdev, IORESOURCE_MEM, 0);
585 exynos_pcie->elbi_base = devm_ioremap_resource(&pdev->dev, elbi_base);
586 if (IS_ERR(exynos_pcie->elbi_base)) {
587 ret = PTR_ERR(exynos_pcie->elbi_base);
588 goto fail_bus_clk;
591 phy_base = platform_get_resource(pdev, IORESOURCE_MEM, 1);
592 exynos_pcie->phy_base = devm_ioremap_resource(&pdev->dev, phy_base);
593 if (IS_ERR(exynos_pcie->phy_base)) {
594 ret = PTR_ERR(exynos_pcie->phy_base);
595 goto fail_bus_clk;
598 block_base = platform_get_resource(pdev, IORESOURCE_MEM, 2);
599 exynos_pcie->block_base = devm_ioremap_resource(&pdev->dev, block_base);
600 if (IS_ERR(exynos_pcie->block_base)) {
601 ret = PTR_ERR(exynos_pcie->block_base);
602 goto fail_bus_clk;
605 ret = exynos_add_pcie_port(pp, pdev);
606 if (ret < 0)
607 goto fail_bus_clk;
609 platform_set_drvdata(pdev, exynos_pcie);
610 return 0;
612 fail_bus_clk:
613 clk_disable_unprepare(exynos_pcie->bus_clk);
614 fail_clk:
615 clk_disable_unprepare(exynos_pcie->clk);
616 return ret;
619 static int __exit exynos_pcie_remove(struct platform_device *pdev)
621 struct exynos_pcie *exynos_pcie = platform_get_drvdata(pdev);
623 clk_disable_unprepare(exynos_pcie->bus_clk);
624 clk_disable_unprepare(exynos_pcie->clk);
626 return 0;
629 static const struct of_device_id exynos_pcie_of_match[] = {
630 { .compatible = "samsung,exynos5440-pcie", },
633 MODULE_DEVICE_TABLE(of, exynos_pcie_of_match);
635 static struct platform_driver exynos_pcie_driver = {
636 .remove = __exit_p(exynos_pcie_remove),
637 .driver = {
638 .name = "exynos-pcie",
639 .of_match_table = exynos_pcie_of_match,
643 /* Exynos PCIe driver does not allow module unload */
645 static int __init exynos_pcie_init(void)
647 return platform_driver_probe(&exynos_pcie_driver, exynos_pcie_probe);
649 subsys_initcall(exynos_pcie_init);
651 MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>");
652 MODULE_DESCRIPTION("Samsung PCIe host controller driver");
653 MODULE_LICENSE("GPL v2");