blob: b29e9d64d41b0ff9e3c1e452e3a49d20f20325ce [file] [log] [blame]
Jingoo Han4b1ced82013-07-31 17:14:10 +09001/*
2 * PCIe host controller driver for Samsung EXYNOS SoCs
3 *
4 * Copyright (C) 2013 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com
6 *
7 * Author: Jingoo Han <jg1.han@samsung.com>
8 *
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.
12 */
13
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>
Paul Gortmakercaf55482016-08-22 17:59:47 -040019#include <linux/init.h>
Jingoo Han4b1ced82013-07-31 17:14:10 +090020#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>
26
27#include "pcie-designware.h"
28
29#define to_exynos_pcie(x) container_of(x, struct exynos_pcie, pp)
30
31struct 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;
39};
40
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
Jingoo Hanf342d942013-09-06 15:54:59 +090051#define IRQ_MSI_ENABLE (0x1 << 2)
Jingoo Han4b1ced82013-07-31 17:14:10 +090052#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)
65
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
74
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
Jingoo Hanf62b8782013-09-06 17:21:45 +090081#define PCIE_PHY_COMMON_POWER 0x064
82#define PCIE_PHY_COMMON_PD_CMN (0x1 << 3)
Jingoo Han4b1ced82013-07-31 17:14:10 +090083#define PCIE_PHY_TRSV0_EMP_LVL 0x084
84#define PCIE_PHY_TRSV0_DRV_LVL 0x088
85#define PCIE_PHY_TRSV0_RXCDR 0x0ac
Jingoo Hanf62b8782013-09-06 17:21:45 +090086#define PCIE_PHY_TRSV0_POWER 0x0c4
87#define PCIE_PHY_TRSV0_PD_TSV (0x1 << 7)
Jingoo Han4b1ced82013-07-31 17:14:10 +090088#define PCIE_PHY_TRSV0_LVCC 0x0dc
89#define PCIE_PHY_TRSV1_EMP_LVL 0x144
90#define PCIE_PHY_TRSV1_RXCDR 0x16c
Jingoo Hanf62b8782013-09-06 17:21:45 +090091#define PCIE_PHY_TRSV1_POWER 0x184
92#define PCIE_PHY_TRSV1_PD_TSV (0x1 << 7)
Jingoo Han4b1ced82013-07-31 17:14:10 +090093#define PCIE_PHY_TRSV1_LVCC 0x19c
94#define PCIE_PHY_TRSV2_EMP_LVL 0x204
95#define PCIE_PHY_TRSV2_RXCDR 0x22c
Jingoo Hanf62b8782013-09-06 17:21:45 +090096#define PCIE_PHY_TRSV2_POWER 0x244
97#define PCIE_PHY_TRSV2_PD_TSV (0x1 << 7)
Jingoo Han4b1ced82013-07-31 17:14:10 +090098#define PCIE_PHY_TRSV2_LVCC 0x25c
99#define PCIE_PHY_TRSV3_EMP_LVL 0x2c4
100#define PCIE_PHY_TRSV3_RXCDR 0x2ec
Jingoo Hanf62b8782013-09-06 17:21:45 +0900101#define PCIE_PHY_TRSV3_POWER 0x304
102#define PCIE_PHY_TRSV3_PD_TSV (0x1 << 7)
Jingoo Han4b1ced82013-07-31 17:14:10 +0900103#define PCIE_PHY_TRSV3_LVCC 0x31c
104
Seungwon Jeon058dd012013-08-29 21:35:56 +0900105static inline void exynos_elb_writel(struct exynos_pcie *pcie, u32 val, u32 reg)
106{
107 writel(val, pcie->elbi_base + reg);
108}
109
110static inline u32 exynos_elb_readl(struct exynos_pcie *pcie, u32 reg)
111{
112 return readl(pcie->elbi_base + reg);
113}
114
115static inline void exynos_phy_writel(struct exynos_pcie *pcie, u32 val, u32 reg)
116{
117 writel(val, pcie->phy_base + reg);
118}
119
120static inline u32 exynos_phy_readl(struct exynos_pcie *pcie, u32 reg)
121{
122 return readl(pcie->phy_base + reg);
123}
124
125static inline void exynos_blk_writel(struct exynos_pcie *pcie, u32 val, u32 reg)
126{
127 writel(val, pcie->block_base + reg);
128}
129
130static inline u32 exynos_blk_readl(struct exynos_pcie *pcie, u32 reg)
131{
132 return readl(pcie->block_base + reg);
133}
134
Jingoo Han4b1ced82013-07-31 17:14:10 +0900135static void exynos_pcie_sideband_dbi_w_mode(struct pcie_port *pp, bool on)
136{
137 u32 val;
138 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
139
140 if (on) {
Seungwon Jeon058dd012013-08-29 21:35:56 +0900141 val = exynos_elb_readl(exynos_pcie, PCIE_ELBI_SLV_AWMISC);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900142 val |= PCIE_ELBI_SLV_DBI_ENABLE;
Seungwon Jeon058dd012013-08-29 21:35:56 +0900143 exynos_elb_writel(exynos_pcie, val, PCIE_ELBI_SLV_AWMISC);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900144 } else {
Seungwon Jeon058dd012013-08-29 21:35:56 +0900145 val = exynos_elb_readl(exynos_pcie, PCIE_ELBI_SLV_AWMISC);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900146 val &= ~PCIE_ELBI_SLV_DBI_ENABLE;
Seungwon Jeon058dd012013-08-29 21:35:56 +0900147 exynos_elb_writel(exynos_pcie, val, PCIE_ELBI_SLV_AWMISC);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900148 }
149}
150
151static void exynos_pcie_sideband_dbi_r_mode(struct pcie_port *pp, bool on)
152{
153 u32 val;
154 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
155
156 if (on) {
Seungwon Jeon058dd012013-08-29 21:35:56 +0900157 val = exynos_elb_readl(exynos_pcie, PCIE_ELBI_SLV_ARMISC);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900158 val |= PCIE_ELBI_SLV_DBI_ENABLE;
Seungwon Jeon058dd012013-08-29 21:35:56 +0900159 exynos_elb_writel(exynos_pcie, val, PCIE_ELBI_SLV_ARMISC);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900160 } else {
Seungwon Jeon058dd012013-08-29 21:35:56 +0900161 val = exynos_elb_readl(exynos_pcie, PCIE_ELBI_SLV_ARMISC);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900162 val &= ~PCIE_ELBI_SLV_DBI_ENABLE;
Seungwon Jeon058dd012013-08-29 21:35:56 +0900163 exynos_elb_writel(exynos_pcie, val, PCIE_ELBI_SLV_ARMISC);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900164 }
165}
166
167static void exynos_pcie_assert_core_reset(struct pcie_port *pp)
168{
169 u32 val;
170 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900171
Seungwon Jeon058dd012013-08-29 21:35:56 +0900172 val = exynos_elb_readl(exynos_pcie, PCIE_CORE_RESET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900173 val &= ~PCIE_CORE_RESET_ENABLE;
Seungwon Jeon058dd012013-08-29 21:35:56 +0900174 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);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900178}
179
180static void exynos_pcie_deassert_core_reset(struct pcie_port *pp)
181{
182 u32 val;
183 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900184
Seungwon Jeon058dd012013-08-29 21:35:56 +0900185 val = exynos_elb_readl(exynos_pcie, PCIE_CORE_RESET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900186 val |= PCIE_CORE_RESET_ENABLE;
Seungwon Jeon058dd012013-08-29 21:35:56 +0900187
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);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900194}
195
196static void exynos_pcie_assert_phy_reset(struct pcie_port *pp)
197{
198 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900199
Seungwon Jeon058dd012013-08-29 21:35:56 +0900200 exynos_blk_writel(exynos_pcie, 0, PCIE_PHY_MAC_RESET);
201 exynos_blk_writel(exynos_pcie, 1, PCIE_PHY_GLOBAL_RESET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900202}
203
204static void exynos_pcie_deassert_phy_reset(struct pcie_port *pp)
205{
206 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900207
Seungwon Jeon058dd012013-08-29 21:35:56 +0900208 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);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900214}
215
Jingoo Hanf62b8782013-09-06 17:21:45 +0900216static void exynos_pcie_power_on_phy(struct pcie_port *pp)
217{
218 u32 val;
219 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
220
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);
224
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);
228
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);
232
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);
236
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);
240}
241
242static void exynos_pcie_power_off_phy(struct pcie_port *pp)
243{
244 u32 val;
245 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
246
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);
250
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);
254
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);
258
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);
262
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);
266}
267
Jingoo Han4b1ced82013-07-31 17:14:10 +0900268static void exynos_pcie_init_phy(struct pcie_port *pp)
269{
270 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900271
272 /* DCC feedback control off */
Seungwon Jeon058dd012013-08-29 21:35:56 +0900273 exynos_phy_writel(exynos_pcie, 0x29, PCIE_PHY_DCC_FEEDBACK);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900274
275 /* set TX/RX impedance */
Seungwon Jeon058dd012013-08-29 21:35:56 +0900276 exynos_phy_writel(exynos_pcie, 0xd5, PCIE_PHY_IMPEDANCE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900277
278 /* set 50Mhz PHY clock */
Seungwon Jeon058dd012013-08-29 21:35:56 +0900279 exynos_phy_writel(exynos_pcie, 0x14, PCIE_PHY_PLL_DIV_0);
280 exynos_phy_writel(exynos_pcie, 0x12, PCIE_PHY_PLL_DIV_1);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900281
282 /* set TX Differential output for lane 0 */
Seungwon Jeon058dd012013-08-29 21:35:56 +0900283 exynos_phy_writel(exynos_pcie, 0x7f, PCIE_PHY_TRSV0_DRV_LVL);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900284
285 /* set TX Pre-emphasis Level Control for lane 0 to minimum */
Seungwon Jeon058dd012013-08-29 21:35:56 +0900286 exynos_phy_writel(exynos_pcie, 0x0, PCIE_PHY_TRSV0_EMP_LVL);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900287
288 /* set RX clock and data recovery bandwidth */
Seungwon Jeon058dd012013-08-29 21:35:56 +0900289 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);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900294
295 /* change TX Pre-emphasis Level Control for lanes */
Seungwon Jeon058dd012013-08-29 21:35:56 +0900296 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);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900300
301 /* set LVCC */
Seungwon Jeon058dd012013-08-29 21:35:56 +0900302 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);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900306}
307
308static void exynos_pcie_assert_reset(struct pcie_port *pp)
309{
310 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
311
312 if (exynos_pcie->reset_gpio >= 0)
313 devm_gpio_request_one(pp->dev, exynos_pcie->reset_gpio,
314 GPIOF_OUT_INIT_HIGH, "RESET");
Jingoo Han4b1ced82013-07-31 17:14:10 +0900315}
316
317static int exynos_pcie_establish_link(struct pcie_port *pp)
318{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900319 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
Bjorn Helgaas6cbb2472015-06-02 16:47:17 -0500320 u32 val;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900321
322 if (dw_pcie_link_up(pp)) {
323 dev_err(pp->dev, "Link already up\n");
324 return 0;
325 }
326
327 /* assert reset signals */
328 exynos_pcie_assert_core_reset(pp);
329 exynos_pcie_assert_phy_reset(pp);
330
331 /* de-assert phy reset */
332 exynos_pcie_deassert_phy_reset(pp);
333
Jingoo Hanf62b8782013-09-06 17:21:45 +0900334 /* power on phy */
335 exynos_pcie_power_on_phy(pp);
336
Jingoo Han4b1ced82013-07-31 17:14:10 +0900337 /* initialize phy */
338 exynos_pcie_init_phy(pp);
339
340 /* pulse for common reset */
Seungwon Jeon058dd012013-08-29 21:35:56 +0900341 exynos_blk_writel(exynos_pcie, 1, PCIE_PHY_COMMON_RESET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900342 udelay(500);
Seungwon Jeon058dd012013-08-29 21:35:56 +0900343 exynos_blk_writel(exynos_pcie, 0, PCIE_PHY_COMMON_RESET);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900344
345 /* de-assert core reset */
346 exynos_pcie_deassert_core_reset(pp);
347
348 /* setup root complex */
349 dw_pcie_setup_rc(pp);
350
351 /* assert reset signal */
352 exynos_pcie_assert_reset(pp);
353
354 /* assert LTSSM enable */
Seungwon Jeon058dd012013-08-29 21:35:56 +0900355 exynos_elb_writel(exynos_pcie, PCIE_ELBI_LTSSM_ENABLE,
356 PCIE_APP_LTSSM_ENABLE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900357
358 /* check if the link is up or not */
Joao Pinto886bc5c2016-03-10 14:44:35 -0600359 if (!dw_pcie_wait_for_link(pp))
360 return 0;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900361
Bjorn Helgaas6cbb2472015-06-02 16:47:17 -0500362 while (exynos_phy_readl(exynos_pcie, PCIE_PHY_PLL_LOCKED) == 0) {
363 val = exynos_blk_readl(exynos_pcie, PCIE_PHY_PLL_LOCKED);
364 dev_info(pp->dev, "PLL Locked: 0x%x\n", val);
365 }
366 /* power off phy */
367 exynos_pcie_power_off_phy(pp);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900368
Joao Pinto886bc5c2016-03-10 14:44:35 -0600369 return -ETIMEDOUT;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900370}
371
372static void exynos_pcie_clear_irq_pulse(struct pcie_port *pp)
373{
374 u32 val;
375 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900376
Seungwon Jeon058dd012013-08-29 21:35:56 +0900377 val = exynos_elb_readl(exynos_pcie, PCIE_IRQ_PULSE);
378 exynos_elb_writel(exynos_pcie, val, PCIE_IRQ_PULSE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900379}
380
381static void exynos_pcie_enable_irq_pulse(struct pcie_port *pp)
382{
383 u32 val;
384 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900385
386 /* enable INTX interrupt */
387 val = IRQ_INTA_ASSERT | IRQ_INTB_ASSERT |
Jaehoon Chung01d06a92015-03-25 14:13:12 +0900388 IRQ_INTC_ASSERT | IRQ_INTD_ASSERT;
Seungwon Jeon058dd012013-08-29 21:35:56 +0900389 exynos_elb_writel(exynos_pcie, val, PCIE_IRQ_EN_PULSE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900390}
391
392static irqreturn_t exynos_pcie_irq_handler(int irq, void *arg)
393{
394 struct pcie_port *pp = arg;
395
396 exynos_pcie_clear_irq_pulse(pp);
397 return IRQ_HANDLED;
398}
399
Jingoo Hanf342d942013-09-06 15:54:59 +0900400static irqreturn_t exynos_pcie_msi_irq_handler(int irq, void *arg)
401{
402 struct pcie_port *pp = arg;
403
Lucas Stach7f4f16e2014-03-28 17:52:58 +0100404 return dw_handle_msi_irq(pp);
Jingoo Hanf342d942013-09-06 15:54:59 +0900405}
406
407static void exynos_pcie_msi_init(struct pcie_port *pp)
408{
409 u32 val;
410 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
411
412 dw_pcie_msi_init(pp);
413
414 /* enable MSI interrupt */
415 val = exynos_elb_readl(exynos_pcie, PCIE_IRQ_EN_LEVEL);
416 val |= IRQ_MSI_ENABLE;
417 exynos_elb_writel(exynos_pcie, val, PCIE_IRQ_EN_LEVEL);
Jingoo Hanf342d942013-09-06 15:54:59 +0900418}
419
Jingoo Han4b1ced82013-07-31 17:14:10 +0900420static void exynos_pcie_enable_interrupts(struct pcie_port *pp)
421{
422 exynos_pcie_enable_irq_pulse(pp);
Jingoo Hanf342d942013-09-06 15:54:59 +0900423
424 if (IS_ENABLED(CONFIG_PCI_MSI))
425 exynos_pcie_msi_init(pp);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900426}
427
Bjorn Helgaas7e00dfd2016-10-06 13:25:46 -0500428static inline u32 exynos_pcie_readl_rc(struct pcie_port *pp, u32 reg)
Jingoo Han4b1ced82013-07-31 17:14:10 +0900429{
Bjorn Helgaas446fc232016-08-17 14:17:58 -0500430 u32 val;
431
Jingoo Han4b1ced82013-07-31 17:14:10 +0900432 exynos_pcie_sideband_dbi_r_mode(pp, true);
Bjorn Helgaas7e00dfd2016-10-06 13:25:46 -0500433 val = readl(pp->dbi_base + reg);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900434 exynos_pcie_sideband_dbi_r_mode(pp, false);
Bjorn Helgaas446fc232016-08-17 14:17:58 -0500435 return val;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900436}
437
Bjorn Helgaas7e00dfd2016-10-06 13:25:46 -0500438static inline void exynos_pcie_writel_rc(struct pcie_port *pp, u32 val, u32 reg)
Jingoo Han4b1ced82013-07-31 17:14:10 +0900439{
440 exynos_pcie_sideband_dbi_w_mode(pp, true);
Bjorn Helgaas7e00dfd2016-10-06 13:25:46 -0500441 writel(val, pp->dbi_base + reg);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900442 exynos_pcie_sideband_dbi_w_mode(pp, false);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900443}
444
445static int exynos_pcie_rd_own_conf(struct pcie_port *pp, int where, int size,
446 u32 *val)
447{
448 int ret;
449
450 exynos_pcie_sideband_dbi_r_mode(pp, true);
Gabriele Paoloni4c458522015-10-08 14:27:48 -0500451 ret = dw_pcie_cfg_read(pp->dbi_base + where, size, val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900452 exynos_pcie_sideband_dbi_r_mode(pp, false);
453 return ret;
454}
455
456static int exynos_pcie_wr_own_conf(struct pcie_port *pp, int where, int size,
457 u32 val)
458{
459 int ret;
460
461 exynos_pcie_sideband_dbi_w_mode(pp, true);
Gabriele Paoloni4c458522015-10-08 14:27:48 -0500462 ret = dw_pcie_cfg_write(pp->dbi_base + where, size, val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900463 exynos_pcie_sideband_dbi_w_mode(pp, false);
464 return ret;
465}
466
467static int exynos_pcie_link_up(struct pcie_port *pp)
468{
469 struct exynos_pcie *exynos_pcie = to_exynos_pcie(pp);
Seungwon Jeon058dd012013-08-29 21:35:56 +0900470 u32 val = exynos_elb_readl(exynos_pcie, PCIE_ELBI_RDLH_LINKUP);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900471
472 if (val == PCIE_ELBI_LTSSM_ENABLE)
473 return 1;
474
475 return 0;
476}
477
478static void exynos_pcie_host_init(struct pcie_port *pp)
479{
480 exynos_pcie_establish_link(pp);
481 exynos_pcie_enable_interrupts(pp);
482}
483
484static struct pcie_host_ops exynos_pcie_host_ops = {
485 .readl_rc = exynos_pcie_readl_rc,
486 .writel_rc = exynos_pcie_writel_rc,
487 .rd_own_conf = exynos_pcie_rd_own_conf,
488 .wr_own_conf = exynos_pcie_wr_own_conf,
489 .link_up = exynos_pcie_link_up,
490 .host_init = exynos_pcie_host_init,
491};
492
Jingoo Han70b3e892014-10-22 13:58:49 +0900493static int __init exynos_add_pcie_port(struct pcie_port *pp,
494 struct platform_device *pdev)
Jingoo Han4b1ced82013-07-31 17:14:10 +0900495{
496 int ret;
497
498 pp->irq = platform_get_irq(pdev, 1);
499 if (!pp->irq) {
500 dev_err(&pdev->dev, "failed to get irq\n");
501 return -ENODEV;
502 }
503 ret = devm_request_irq(&pdev->dev, pp->irq, exynos_pcie_irq_handler,
504 IRQF_SHARED, "exynos-pcie", pp);
505 if (ret) {
506 dev_err(&pdev->dev, "failed to request irq\n");
507 return ret;
508 }
509
Jingoo Hanf342d942013-09-06 15:54:59 +0900510 if (IS_ENABLED(CONFIG_PCI_MSI)) {
511 pp->msi_irq = platform_get_irq(pdev, 0);
512 if (!pp->msi_irq) {
513 dev_err(&pdev->dev, "failed to get msi irq\n");
514 return -ENODEV;
515 }
516
517 ret = devm_request_irq(&pdev->dev, pp->msi_irq,
518 exynos_pcie_msi_irq_handler,
Grygorii Strashko8ff0ef92015-12-10 21:18:20 +0200519 IRQF_SHARED | IRQF_NO_THREAD,
520 "exynos-pcie", pp);
Jingoo Hanf342d942013-09-06 15:54:59 +0900521 if (ret) {
522 dev_err(&pdev->dev, "failed to request msi irq\n");
523 return ret;
524 }
525 }
526
Jingoo Han4b1ced82013-07-31 17:14:10 +0900527 pp->root_bus_nr = -1;
528 pp->ops = &exynos_pcie_host_ops;
529
Jingoo Han4b1ced82013-07-31 17:14:10 +0900530 ret = dw_pcie_host_init(pp);
531 if (ret) {
532 dev_err(&pdev->dev, "failed to initialize host\n");
533 return ret;
534 }
535
536 return 0;
537}
538
539static int __init exynos_pcie_probe(struct platform_device *pdev)
540{
541 struct exynos_pcie *exynos_pcie;
542 struct pcie_port *pp;
543 struct device_node *np = pdev->dev.of_node;
544 struct resource *elbi_base;
545 struct resource *phy_base;
546 struct resource *block_base;
547 int ret;
548
549 exynos_pcie = devm_kzalloc(&pdev->dev, sizeof(*exynos_pcie),
550 GFP_KERNEL);
Jingoo Han755ba5e2014-05-09 14:31:25 +0900551 if (!exynos_pcie)
Jingoo Han4b1ced82013-07-31 17:14:10 +0900552 return -ENOMEM;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900553
554 pp = &exynos_pcie->pp;
555
556 pp->dev = &pdev->dev;
557
558 exynos_pcie->reset_gpio = of_get_named_gpio(np, "reset-gpio", 0);
559
560 exynos_pcie->clk = devm_clk_get(&pdev->dev, "pcie");
561 if (IS_ERR(exynos_pcie->clk)) {
562 dev_err(&pdev->dev, "Failed to get pcie rc clock\n");
563 return PTR_ERR(exynos_pcie->clk);
564 }
565 ret = clk_prepare_enable(exynos_pcie->clk);
566 if (ret)
567 return ret;
568
569 exynos_pcie->bus_clk = devm_clk_get(&pdev->dev, "pcie_bus");
570 if (IS_ERR(exynos_pcie->bus_clk)) {
571 dev_err(&pdev->dev, "Failed to get pcie bus clock\n");
572 ret = PTR_ERR(exynos_pcie->bus_clk);
573 goto fail_clk;
574 }
575 ret = clk_prepare_enable(exynos_pcie->bus_clk);
576 if (ret)
577 goto fail_clk;
578
579 elbi_base = platform_get_resource(pdev, IORESOURCE_MEM, 0);
580 exynos_pcie->elbi_base = devm_ioremap_resource(&pdev->dev, elbi_base);
Wei Yongjunf8db3c92013-09-29 10:29:11 +0800581 if (IS_ERR(exynos_pcie->elbi_base)) {
582 ret = PTR_ERR(exynos_pcie->elbi_base);
583 goto fail_bus_clk;
584 }
Jingoo Han4b1ced82013-07-31 17:14:10 +0900585
586 phy_base = platform_get_resource(pdev, IORESOURCE_MEM, 1);
587 exynos_pcie->phy_base = devm_ioremap_resource(&pdev->dev, phy_base);
Wei Yongjunf8db3c92013-09-29 10:29:11 +0800588 if (IS_ERR(exynos_pcie->phy_base)) {
589 ret = PTR_ERR(exynos_pcie->phy_base);
590 goto fail_bus_clk;
591 }
Jingoo Han4b1ced82013-07-31 17:14:10 +0900592
593 block_base = platform_get_resource(pdev, IORESOURCE_MEM, 2);
594 exynos_pcie->block_base = devm_ioremap_resource(&pdev->dev, block_base);
Wei Yongjunf8db3c92013-09-29 10:29:11 +0800595 if (IS_ERR(exynos_pcie->block_base)) {
596 ret = PTR_ERR(exynos_pcie->block_base);
597 goto fail_bus_clk;
598 }
Jingoo Han4b1ced82013-07-31 17:14:10 +0900599
Jingoo Han70b3e892014-10-22 13:58:49 +0900600 ret = exynos_add_pcie_port(pp, pdev);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900601 if (ret < 0)
602 goto fail_bus_clk;
603
604 platform_set_drvdata(pdev, exynos_pcie);
605 return 0;
606
607fail_bus_clk:
608 clk_disable_unprepare(exynos_pcie->bus_clk);
609fail_clk:
610 clk_disable_unprepare(exynos_pcie->clk);
611 return ret;
612}
613
614static int __exit exynos_pcie_remove(struct platform_device *pdev)
615{
616 struct exynos_pcie *exynos_pcie = platform_get_drvdata(pdev);
617
618 clk_disable_unprepare(exynos_pcie->bus_clk);
619 clk_disable_unprepare(exynos_pcie->clk);
620
621 return 0;
622}
623
624static const struct of_device_id exynos_pcie_of_match[] = {
625 { .compatible = "samsung,exynos5440-pcie", },
626 {},
627};
Jingoo Han4b1ced82013-07-31 17:14:10 +0900628
629static struct platform_driver exynos_pcie_driver = {
630 .remove = __exit_p(exynos_pcie_remove),
631 .driver = {
632 .name = "exynos-pcie",
Sachin Kamateb363092013-10-21 14:36:43 +0530633 .of_match_table = exynos_pcie_of_match,
Jingoo Han4b1ced82013-07-31 17:14:10 +0900634 },
635};
636
637/* Exynos PCIe driver does not allow module unload */
638
Jingoo Han70b3e892014-10-22 13:58:49 +0900639static int __init exynos_pcie_init(void)
Jingoo Han4b1ced82013-07-31 17:14:10 +0900640{
641 return platform_driver_probe(&exynos_pcie_driver, exynos_pcie_probe);
642}
Jingoo Han70b3e892014-10-22 13:58:49 +0900643subsys_initcall(exynos_pcie_init);