1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * PCIe host controller driver for the following SoCs
4 * Tegra194
5 * Tegra234
6 *
7 * Copyright (C) 2019-2022 NVIDIA Corporation.
8 *
9 * Author: Vidya Sagar <vidyas@nvidia.com>
10 */
11
12 #include <linux/bitfield.h>
13 #include <linux/clk.h>
14 #include <linux/debugfs.h>
15 #include <linux/delay.h>
16 #include <linux/gpio/consumer.h>
17 #include <linux/interconnect.h>
18 #include <linux/interrupt.h>
19 #include <linux/iopoll.h>
20 #include <linux/kernel.h>
21 #include <linux/module.h>
22 #include <linux/of.h>
23 #include <linux/of_pci.h>
24 #include <linux/pci.h>
25 #include <linux/phy/phy.h>
26 #include <linux/pinctrl/consumer.h>
27 #include <linux/platform_device.h>
28 #include <linux/pm_runtime.h>
29 #include <linux/random.h>
30 #include <linux/reset.h>
31 #include <linux/resource.h>
32 #include <linux/types.h>
33 #include "pcie-designware.h"
34 #include <soc/tegra/bpmp.h>
35 #include <soc/tegra/bpmp-abi.h>
36 #include "../../pci.h"
37
38 #define TEGRA194_DWC_IP_VER 0x490A
39 #define TEGRA234_DWC_IP_VER 0x562A
40
41 #define APPL_PINMUX 0x0
42 #define APPL_PINMUX_PEX_RST BIT(0)
43 #define APPL_PINMUX_CLKREQ_OVERRIDE_EN BIT(2)
44 #define APPL_PINMUX_CLKREQ_OVERRIDE BIT(3)
45 #define APPL_PINMUX_CLK_OUTPUT_IN_OVERRIDE_EN BIT(4)
46 #define APPL_PINMUX_CLK_OUTPUT_IN_OVERRIDE BIT(5)
47
48 #define APPL_CTRL 0x4
49 #define APPL_CTRL_SYS_PRE_DET_STATE BIT(6)
50 #define APPL_CTRL_LTSSM_EN BIT(7)
51 #define APPL_CTRL_HW_HOT_RST_EN BIT(20)
52 #define APPL_CTRL_HW_HOT_RST_MODE_MASK GENMASK(1, 0)
53 #define APPL_CTRL_HW_HOT_RST_MODE_SHIFT 22
54 #define APPL_CTRL_HW_HOT_RST_MODE_IMDT_RST 0x1
55 #define APPL_CTRL_HW_HOT_RST_MODE_IMDT_RST_LTSSM_EN 0x2
56
57 #define APPL_INTR_EN_L0_0 0x8
58 #define APPL_INTR_EN_L0_0_LINK_STATE_INT_EN BIT(0)
59 #define APPL_INTR_EN_L0_0_MSI_RCV_INT_EN BIT(4)
60 #define APPL_INTR_EN_L0_0_INT_INT_EN BIT(8)
61 #define APPL_INTR_EN_L0_0_PCI_CMD_EN_INT_EN BIT(15)
62 #define APPL_INTR_EN_L0_0_CDM_REG_CHK_INT_EN BIT(19)
63 #define APPL_INTR_EN_L0_0_SYS_INTR_EN BIT(30)
64 #define APPL_INTR_EN_L0_0_SYS_MSI_INTR_EN BIT(31)
65
66 #define APPL_INTR_STATUS_L0 0xC
67 #define APPL_INTR_STATUS_L0_LINK_STATE_INT BIT(0)
68 #define APPL_INTR_STATUS_L0_INT_INT BIT(8)
69 #define APPL_INTR_STATUS_L0_PCI_CMD_EN_INT BIT(15)
70 #define APPL_INTR_STATUS_L0_PEX_RST_INT BIT(16)
71 #define APPL_INTR_STATUS_L0_CDM_REG_CHK_INT BIT(18)
72
73 #define APPL_INTR_EN_L1_0_0 0x1C
74 #define APPL_INTR_EN_L1_0_0_LINK_REQ_RST_NOT_INT_EN BIT(1)
75 #define APPL_INTR_EN_L1_0_0_RDLH_LINK_UP_INT_EN BIT(3)
76 #define APPL_INTR_EN_L1_0_0_HOT_RESET_DONE_INT_EN BIT(30)
77
78 #define APPL_INTR_STATUS_L1_0_0 0x20
79 #define APPL_INTR_STATUS_L1_0_0_LINK_REQ_RST_NOT_CHGED BIT(1)
80 #define APPL_INTR_STATUS_L1_0_0_RDLH_LINK_UP_CHGED BIT(3)
81 #define APPL_INTR_STATUS_L1_0_0_HOT_RESET_DONE BIT(30)
82
83 #define APPL_INTR_STATUS_L1_1 0x2C
84 #define APPL_INTR_STATUS_L1_2 0x30
85 #define APPL_INTR_STATUS_L1_3 0x34
86 #define APPL_INTR_STATUS_L1_6 0x3C
87 #define APPL_INTR_STATUS_L1_7 0x40
88 #define APPL_INTR_STATUS_L1_15_CFG_BME_CHGED BIT(1)
89
90 #define APPL_INTR_EN_L1_8_0 0x44
91 #define APPL_INTR_EN_L1_8_BW_MGT_INT_EN BIT(2)
92 #define APPL_INTR_EN_L1_8_AUTO_BW_INT_EN BIT(3)
93 #define APPL_INTR_EN_L1_8_INTX_EN BIT(11)
94 #define APPL_INTR_EN_L1_8_AER_INT_EN BIT(15)
95
96 #define APPL_INTR_STATUS_L1_8_0 0x4C
97 #define APPL_INTR_STATUS_L1_8_0_EDMA_INT_MASK GENMASK(11, 6)
98 #define APPL_INTR_STATUS_L1_8_0_BW_MGT_INT_STS BIT(2)
99 #define APPL_INTR_STATUS_L1_8_0_AUTO_BW_INT_STS BIT(3)
100
101 #define APPL_INTR_STATUS_L1_9 0x54
102 #define APPL_INTR_STATUS_L1_10 0x58
103 #define APPL_INTR_STATUS_L1_11 0x64
104 #define APPL_INTR_STATUS_L1_13 0x74
105 #define APPL_INTR_STATUS_L1_14 0x78
106 #define APPL_INTR_STATUS_L1_15 0x7C
107 #define APPL_INTR_STATUS_L1_17 0x88
108
109 #define APPL_INTR_EN_L1_18 0x90
110 #define APPL_INTR_EN_L1_18_CDM_REG_CHK_CMPLT BIT(2)
111 #define APPL_INTR_EN_L1_18_CDM_REG_CHK_CMP_ERR BIT(1)
112 #define APPL_INTR_EN_L1_18_CDM_REG_CHK_LOGIC_ERR BIT(0)
113
114 #define APPL_INTR_STATUS_L1_18 0x94
115 #define APPL_INTR_STATUS_L1_18_CDM_REG_CHK_CMPLT BIT(2)
116 #define APPL_INTR_STATUS_L1_18_CDM_REG_CHK_CMP_ERR BIT(1)
117 #define APPL_INTR_STATUS_L1_18_CDM_REG_CHK_LOGIC_ERR BIT(0)
118
119 #define APPL_MSI_CTRL_1 0xAC
120
121 #define APPL_MSI_CTRL_2 0xB0
122
123 #define APPL_LEGACY_INTX 0xB8
124
125 #define APPL_LTR_MSG_1 0xC4
126 #define LTR_MSG_REQ BIT(15)
127 #define LTR_NOSNOOP_MSG_REQ BIT(31)
128
129 #define APPL_LTR_MSG_2 0xC8
130 #define APPL_LTR_MSG_2_LTR_MSG_REQ_STATE BIT(3)
131
132 #define APPL_LINK_STATUS 0xCC
133 #define APPL_LINK_STATUS_RDLH_LINK_UP BIT(0)
134
135 #define APPL_DEBUG 0xD0
136 #define APPL_DEBUG_PM_LINKST_IN_L2_LAT BIT(21)
137 #define APPL_DEBUG_PM_LINKST_IN_L0 0x11
138 #define APPL_DEBUG_LTSSM_STATE_MASK GENMASK(8, 3)
139 #define APPL_DEBUG_LTSSM_STATE_SHIFT 3
140 #define LTSSM_STATE_PRE_DETECT 5
141
142 #define APPL_RADM_STATUS 0xE4
143 #define APPL_PM_XMT_TURNOFF_STATE BIT(0)
144
145 #define APPL_DM_TYPE 0x100
146 #define APPL_DM_TYPE_MASK GENMASK(3, 0)
147 #define APPL_DM_TYPE_RP 0x4
148 #define APPL_DM_TYPE_EP 0x0
149
150 #define APPL_CFG_BASE_ADDR 0x104
151 #define APPL_CFG_BASE_ADDR_MASK GENMASK(31, 12)
152
153 #define APPL_CFG_IATU_DMA_BASE_ADDR 0x108
154 #define APPL_CFG_IATU_DMA_BASE_ADDR_MASK GENMASK(31, 18)
155
156 #define APPL_CFG_MISC 0x110
157 #define APPL_CFG_MISC_SLV_EP_MODE BIT(14)
158 #define APPL_CFG_MISC_ARCACHE_MASK GENMASK(13, 10)
159 #define APPL_CFG_MISC_ARCACHE_SHIFT 10
160 #define APPL_CFG_MISC_ARCACHE_VAL 3
161
162 #define APPL_CFG_SLCG_OVERRIDE 0x114
163 #define APPL_CFG_SLCG_OVERRIDE_SLCG_EN_MASTER BIT(0)
164
165 #define APPL_CAR_RESET_OVRD 0x12C
166 #define APPL_CAR_RESET_OVRD_CYA_OVERRIDE_CORE_RST_N BIT(0)
167
168 #define IO_BASE_IO_DECODE BIT(0)
169 #define IO_BASE_IO_DECODE_BIT8 BIT(8)
170
171 #define CFG_PREF_MEM_LIMIT_BASE_MEM_DECODE BIT(0)
172 #define CFG_PREF_MEM_LIMIT_BASE_MEM_LIMIT_DECODE BIT(16)
173
174 #define CFG_TIMER_CTRL_MAX_FUNC_NUM_OFF 0x718
175 #define CFG_TIMER_CTRL_ACK_NAK_SHIFT (19)
176
177 #define N_FTS_VAL 52
178 #define FTS_VAL 52
179
180 #define PORT_LOGIC_AMBA_ERROR_RESPONSE_DEFAULT 0x8D0
181 #define AMBA_ERROR_RESPONSE_RRS_SHIFT 3
182 #define AMBA_ERROR_RESPONSE_RRS_MASK GENMASK(1, 0)
183 #define AMBA_ERROR_RESPONSE_RRS_OKAY 0
184 #define AMBA_ERROR_RESPONSE_RRS_OKAY_FFFFFFFF 1
185 #define AMBA_ERROR_RESPONSE_RRS_OKAY_FFFF0001 2
186
187 #define MSIX_ADDR_MATCH_LOW_OFF 0x940
188 #define MSIX_ADDR_MATCH_LOW_OFF_EN BIT(0)
189 #define MSIX_ADDR_MATCH_LOW_OFF_MASK GENMASK(31, 2)
190
191 #define MSIX_ADDR_MATCH_HIGH_OFF 0x944
192 #define MSIX_ADDR_MATCH_HIGH_OFF_MASK GENMASK(31, 0)
193
194 #define PORT_LOGIC_MSIX_DOORBELL 0x948
195
196 #define CAP_SPCIE_CAP_OFF 0x154
197 #define CAP_SPCIE_CAP_OFF_DSP_TX_PRESET0_MASK GENMASK(3, 0)
198 #define CAP_SPCIE_CAP_OFF_USP_TX_PRESET0_MASK GENMASK(11, 8)
199 #define CAP_SPCIE_CAP_OFF_USP_TX_PRESET0_SHIFT 8
200
201 #define PME_ACK_TIMEOUT 10000
202
203 #define LTSSM_TIMEOUT 50000 /* 50ms */
204
205 #define GEN3_GEN4_EQ_PRESET_INIT 5
206
207 #define GEN1_CORE_CLK_FREQ 62500000
208 #define GEN2_CORE_CLK_FREQ 125000000
209 #define GEN3_CORE_CLK_FREQ 250000000
210 #define GEN4_CORE_CLK_FREQ 500000000
211
212 #define LTR_MSG_TIMEOUT (100 * 1000)
213
214 #define PERST_DEBOUNCE_TIME (5 * 1000)
215
216 #define EP_STATE_DISABLED 0
217 #define EP_STATE_ENABLED 1
218
219 static const unsigned int pcie_gen_freq[] = {
220 GEN1_CORE_CLK_FREQ, /* PCI_EXP_LNKSTA_CLS == 0; undefined */
221 GEN1_CORE_CLK_FREQ,
222 GEN2_CORE_CLK_FREQ,
223 GEN3_CORE_CLK_FREQ,
224 GEN4_CORE_CLK_FREQ
225 };
226
227 struct tegra_pcie_dw_of_data {
228 u32 version;
229 enum dw_pcie_device_mode mode;
230 bool has_msix_doorbell_access_fix;
231 bool has_sbr_reset_fix;
232 bool has_l1ss_exit_fix;
233 bool has_ltr_req_fix;
234 u32 cdm_chk_int_en_bit;
235 u32 gen4_preset_vec;
236 u8 n_fts[2];
237 };
238
239 struct tegra_pcie_dw {
240 struct device *dev;
241 struct resource *appl_res;
242 struct resource *dbi_res;
243 struct resource *atu_dma_res;
244 void __iomem *appl_base;
245 struct clk *core_clk;
246 struct reset_control *core_apb_rst;
247 struct reset_control *core_rst;
248 struct dw_pcie pci;
249 struct tegra_bpmp *bpmp;
250
251 struct tegra_pcie_dw_of_data *of_data;
252
253 bool supports_clkreq;
254 bool enable_cdm_check;
255 bool enable_srns;
256 bool link_state;
257 bool update_fc_fixup;
258 bool enable_ext_refclk;
259 u8 init_link_width;
260 u32 msi_ctrl_int;
261 u32 num_lanes;
262 u32 cid;
263 u32 cfg_link_cap_l1sub;
264 u32 ras_des_cap;
265 u32 pcie_cap_base;
266 u32 aspm_cmrt;
267 u32 aspm_pwr_on_t;
268 u32 aspm_l0s_enter_lat;
269
270 struct regulator *pex_ctl_supply;
271 struct regulator *slot_ctl_3v3;
272 struct regulator *slot_ctl_12v;
273
274 unsigned int phy_count;
275 struct phy **phys;
276
277 struct dentry *debugfs;
278
279 /* Endpoint mode specific */
280 struct gpio_desc *pex_rst_gpiod;
281 struct gpio_desc *pex_refclk_sel_gpiod;
282 unsigned int pex_rst_irq;
283 int ep_state;
284 long link_status;
285 struct icc_path *icc_path;
286 };
287
to_tegra_pcie(struct dw_pcie * pci)288 static inline struct tegra_pcie_dw *to_tegra_pcie(struct dw_pcie *pci)
289 {
290 return container_of(pci, struct tegra_pcie_dw, pci);
291 }
292
appl_writel(struct tegra_pcie_dw * pcie,const u32 value,const u32 reg)293 static inline void appl_writel(struct tegra_pcie_dw *pcie, const u32 value,
294 const u32 reg)
295 {
296 writel_relaxed(value, pcie->appl_base + reg);
297 }
298
appl_readl(struct tegra_pcie_dw * pcie,const u32 reg)299 static inline u32 appl_readl(struct tegra_pcie_dw *pcie, const u32 reg)
300 {
301 return readl_relaxed(pcie->appl_base + reg);
302 }
303
tegra_pcie_icc_set(struct tegra_pcie_dw * pcie)304 static void tegra_pcie_icc_set(struct tegra_pcie_dw *pcie)
305 {
306 struct dw_pcie *pci = &pcie->pci;
307 u32 val, speed, width;
308
309 val = dw_pcie_readw_dbi(pci, pcie->pcie_cap_base + PCI_EXP_LNKSTA);
310
311 speed = FIELD_GET(PCI_EXP_LNKSTA_CLS, val);
312 width = FIELD_GET(PCI_EXP_LNKSTA_NLW, val);
313
314 val = width * PCIE_SPEED2MBS_ENC(pcie_link_speed[speed]);
315
316 if (icc_set_bw(pcie->icc_path, Mbps_to_icc(val), 0))
317 dev_err(pcie->dev, "can't set bw[%u]\n", val);
318
319 if (speed >= ARRAY_SIZE(pcie_gen_freq))
320 speed = 0;
321
322 clk_set_rate(pcie->core_clk, pcie_gen_freq[speed]);
323 }
324
apply_bad_link_workaround(struct dw_pcie_rp * pp)325 static void apply_bad_link_workaround(struct dw_pcie_rp *pp)
326 {
327 struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
328 struct tegra_pcie_dw *pcie = to_tegra_pcie(pci);
329 u32 current_link_width;
330 u16 val;
331
332 /*
333 * NOTE:- Since this scenario is uncommon and link as such is not
334 * stable anyway, not waiting to confirm if link is really
335 * transitioning to Gen-2 speed
336 */
337 val = dw_pcie_readw_dbi(pci, pcie->pcie_cap_base + PCI_EXP_LNKSTA);
338 if (val & PCI_EXP_LNKSTA_LBMS) {
339 current_link_width = FIELD_GET(PCI_EXP_LNKSTA_NLW, val);
340 if (pcie->init_link_width > current_link_width) {
341 dev_warn(pci->dev, "PCIe link is bad, width reduced\n");
342 val = dw_pcie_readw_dbi(pci, pcie->pcie_cap_base +
343 PCI_EXP_LNKCTL2);
344 val &= ~PCI_EXP_LNKCTL2_TLS;
345 val |= PCI_EXP_LNKCTL2_TLS_2_5GT;
346 dw_pcie_writew_dbi(pci, pcie->pcie_cap_base +
347 PCI_EXP_LNKCTL2, val);
348
349 val = dw_pcie_readw_dbi(pci, pcie->pcie_cap_base +
350 PCI_EXP_LNKCTL);
351 val |= PCI_EXP_LNKCTL_RL;
352 dw_pcie_writew_dbi(pci, pcie->pcie_cap_base +
353 PCI_EXP_LNKCTL, val);
354 }
355 }
356 }
357
tegra_pcie_rp_irq_handler(int irq,void * arg)358 static irqreturn_t tegra_pcie_rp_irq_handler(int irq, void *arg)
359 {
360 struct tegra_pcie_dw *pcie = arg;
361 struct dw_pcie *pci = &pcie->pci;
362 struct dw_pcie_rp *pp = &pci->pp;
363 u32 val, status_l0, status_l1;
364 u16 val_w;
365
366 status_l0 = appl_readl(pcie, APPL_INTR_STATUS_L0);
367 if (status_l0 & APPL_INTR_STATUS_L0_LINK_STATE_INT) {
368 status_l1 = appl_readl(pcie, APPL_INTR_STATUS_L1_0_0);
369 appl_writel(pcie, status_l1, APPL_INTR_STATUS_L1_0_0);
370 if (!pcie->of_data->has_sbr_reset_fix &&
371 status_l1 & APPL_INTR_STATUS_L1_0_0_LINK_REQ_RST_NOT_CHGED) {
372 /* SBR & Surprise Link Down WAR */
373 val = appl_readl(pcie, APPL_CAR_RESET_OVRD);
374 val &= ~APPL_CAR_RESET_OVRD_CYA_OVERRIDE_CORE_RST_N;
375 appl_writel(pcie, val, APPL_CAR_RESET_OVRD);
376 udelay(1);
377 val = appl_readl(pcie, APPL_CAR_RESET_OVRD);
378 val |= APPL_CAR_RESET_OVRD_CYA_OVERRIDE_CORE_RST_N;
379 appl_writel(pcie, val, APPL_CAR_RESET_OVRD);
380
381 val = dw_pcie_readl_dbi(pci, PCIE_LINK_WIDTH_SPEED_CONTROL);
382 val |= PORT_LOGIC_SPEED_CHANGE;
383 dw_pcie_writel_dbi(pci, PCIE_LINK_WIDTH_SPEED_CONTROL, val);
384 }
385 }
386
387 if (status_l0 & APPL_INTR_STATUS_L0_INT_INT) {
388 status_l1 = appl_readl(pcie, APPL_INTR_STATUS_L1_8_0);
389 if (status_l1 & APPL_INTR_STATUS_L1_8_0_AUTO_BW_INT_STS) {
390 appl_writel(pcie,
391 APPL_INTR_STATUS_L1_8_0_AUTO_BW_INT_STS,
392 APPL_INTR_STATUS_L1_8_0);
393 apply_bad_link_workaround(pp);
394 }
395 if (status_l1 & APPL_INTR_STATUS_L1_8_0_BW_MGT_INT_STS) {
396 val_w = dw_pcie_readw_dbi(pci, pcie->pcie_cap_base +
397 PCI_EXP_LNKSTA);
398 val_w |= PCI_EXP_LNKSTA_LBMS;
399 dw_pcie_writew_dbi(pci, pcie->pcie_cap_base +
400 PCI_EXP_LNKSTA, val_w);
401
402 appl_writel(pcie,
403 APPL_INTR_STATUS_L1_8_0_BW_MGT_INT_STS,
404 APPL_INTR_STATUS_L1_8_0);
405
406 val_w = dw_pcie_readw_dbi(pci, pcie->pcie_cap_base +
407 PCI_EXP_LNKSTA);
408 dev_dbg(pci->dev, "Link Speed : Gen-%u\n", val_w &
409 PCI_EXP_LNKSTA_CLS);
410 }
411 }
412
413 if (status_l0 & APPL_INTR_STATUS_L0_CDM_REG_CHK_INT) {
414 status_l1 = appl_readl(pcie, APPL_INTR_STATUS_L1_18);
415 val = dw_pcie_readl_dbi(pci, PCIE_PL_CHK_REG_CONTROL_STATUS);
416 if (status_l1 & APPL_INTR_STATUS_L1_18_CDM_REG_CHK_CMPLT) {
417 dev_info(pci->dev, "CDM check complete\n");
418 val |= PCIE_PL_CHK_REG_CHK_REG_COMPLETE;
419 }
420 if (status_l1 & APPL_INTR_STATUS_L1_18_CDM_REG_CHK_CMP_ERR) {
421 dev_err(pci->dev, "CDM comparison mismatch\n");
422 val |= PCIE_PL_CHK_REG_CHK_REG_COMPARISON_ERROR;
423 }
424 if (status_l1 & APPL_INTR_STATUS_L1_18_CDM_REG_CHK_LOGIC_ERR) {
425 dev_err(pci->dev, "CDM Logic error\n");
426 val |= PCIE_PL_CHK_REG_CHK_REG_LOGIC_ERROR;
427 }
428 dw_pcie_writel_dbi(pci, PCIE_PL_CHK_REG_CONTROL_STATUS, val);
429 val = dw_pcie_readl_dbi(pci, PCIE_PL_CHK_REG_ERR_ADDR);
430 dev_err(pci->dev, "CDM Error Address Offset = 0x%08X\n", val);
431 }
432
433 return IRQ_HANDLED;
434 }
435
pex_ep_event_hot_rst_done(struct tegra_pcie_dw * pcie)436 static void pex_ep_event_hot_rst_done(struct tegra_pcie_dw *pcie)
437 {
438 u32 val;
439
440 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L0);
441 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_0_0);
442 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_1);
443 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_2);
444 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_3);
445 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_6);
446 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_7);
447 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_8_0);
448 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_9);
449 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_10);
450 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_11);
451 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_13);
452 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_14);
453 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_15);
454 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_17);
455 appl_writel(pcie, 0xFFFFFFFF, APPL_MSI_CTRL_2);
456
457 val = appl_readl(pcie, APPL_CTRL);
458 val |= APPL_CTRL_LTSSM_EN;
459 appl_writel(pcie, val, APPL_CTRL);
460 }
461
tegra_pcie_ep_irq_thread(int irq,void * arg)462 static irqreturn_t tegra_pcie_ep_irq_thread(int irq, void *arg)
463 {
464 struct tegra_pcie_dw *pcie = arg;
465 struct dw_pcie_ep *ep = &pcie->pci.ep;
466 struct dw_pcie *pci = &pcie->pci;
467 u32 val;
468
469 if (test_and_clear_bit(0, &pcie->link_status))
470 dw_pcie_ep_linkup(ep);
471
472 tegra_pcie_icc_set(pcie);
473
474 if (pcie->of_data->has_ltr_req_fix)
475 return IRQ_HANDLED;
476
477 /* If EP doesn't advertise L1SS, just return */
478 val = dw_pcie_readl_dbi(pci, pcie->cfg_link_cap_l1sub);
479 if (!(val & (PCI_L1SS_CAP_ASPM_L1_1 | PCI_L1SS_CAP_ASPM_L1_2)))
480 return IRQ_HANDLED;
481
482 /* Check if BME is set to '1' */
483 val = dw_pcie_readl_dbi(pci, PCI_COMMAND);
484 if (val & PCI_COMMAND_MASTER) {
485 ktime_t timeout;
486
487 /* 110us for both snoop and no-snoop */
488 val = FIELD_PREP(PCI_LTR_VALUE_MASK, 110) |
489 FIELD_PREP(PCI_LTR_SCALE_MASK, 2) |
490 LTR_MSG_REQ |
491 FIELD_PREP(PCI_LTR_NOSNOOP_VALUE, 110) |
492 FIELD_PREP(PCI_LTR_NOSNOOP_SCALE, 2) |
493 LTR_NOSNOOP_MSG_REQ;
494 appl_writel(pcie, val, APPL_LTR_MSG_1);
495
496 /* Send LTR upstream */
497 val = appl_readl(pcie, APPL_LTR_MSG_2);
498 val |= APPL_LTR_MSG_2_LTR_MSG_REQ_STATE;
499 appl_writel(pcie, val, APPL_LTR_MSG_2);
500
501 timeout = ktime_add_us(ktime_get(), LTR_MSG_TIMEOUT);
502 for (;;) {
503 val = appl_readl(pcie, APPL_LTR_MSG_2);
504 if (!(val & APPL_LTR_MSG_2_LTR_MSG_REQ_STATE))
505 break;
506 if (ktime_after(ktime_get(), timeout))
507 break;
508 usleep_range(1000, 1100);
509 }
510 if (val & APPL_LTR_MSG_2_LTR_MSG_REQ_STATE)
511 dev_err(pcie->dev, "Failed to send LTR message\n");
512 }
513
514 return IRQ_HANDLED;
515 }
516
tegra_pcie_ep_hard_irq(int irq,void * arg)517 static irqreturn_t tegra_pcie_ep_hard_irq(int irq, void *arg)
518 {
519 struct tegra_pcie_dw *pcie = arg;
520 int spurious = 1;
521 u32 status_l0, status_l1, link_status;
522
523 status_l0 = appl_readl(pcie, APPL_INTR_STATUS_L0);
524 if (status_l0 & APPL_INTR_STATUS_L0_LINK_STATE_INT) {
525 status_l1 = appl_readl(pcie, APPL_INTR_STATUS_L1_0_0);
526 appl_writel(pcie, status_l1, APPL_INTR_STATUS_L1_0_0);
527
528 if (status_l1 & APPL_INTR_STATUS_L1_0_0_HOT_RESET_DONE)
529 pex_ep_event_hot_rst_done(pcie);
530
531 if (status_l1 & APPL_INTR_STATUS_L1_0_0_RDLH_LINK_UP_CHGED) {
532 link_status = appl_readl(pcie, APPL_LINK_STATUS);
533 if (link_status & APPL_LINK_STATUS_RDLH_LINK_UP) {
534 dev_dbg(pcie->dev, "Link is up with Host\n");
535 set_bit(0, &pcie->link_status);
536 return IRQ_WAKE_THREAD;
537 }
538 }
539
540 spurious = 0;
541 }
542
543 if (status_l0 & APPL_INTR_STATUS_L0_PCI_CMD_EN_INT) {
544 status_l1 = appl_readl(pcie, APPL_INTR_STATUS_L1_15);
545 appl_writel(pcie, status_l1, APPL_INTR_STATUS_L1_15);
546
547 if (status_l1 & APPL_INTR_STATUS_L1_15_CFG_BME_CHGED)
548 return IRQ_WAKE_THREAD;
549
550 spurious = 0;
551 }
552
553 if (spurious) {
554 dev_warn(pcie->dev, "Random interrupt (STATUS = 0x%08X)\n",
555 status_l0);
556 appl_writel(pcie, status_l0, APPL_INTR_STATUS_L0);
557 }
558
559 return IRQ_HANDLED;
560 }
561
tegra_pcie_dw_rd_own_conf(struct pci_bus * bus,u32 devfn,int where,int size,u32 * val)562 static int tegra_pcie_dw_rd_own_conf(struct pci_bus *bus, u32 devfn, int where,
563 int size, u32 *val)
564 {
565 struct dw_pcie_rp *pp = bus->sysdata;
566 struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
567 struct tegra_pcie_dw *pcie = to_tegra_pcie(pci);
568
569 /*
570 * This is an endpoint mode specific register happen to appear even
571 * when controller is operating in root port mode and system hangs
572 * when it is accessed with link being in ASPM-L1 state.
573 * So skip accessing it altogether
574 */
575 if (!pcie->of_data->has_msix_doorbell_access_fix &&
576 !PCI_SLOT(devfn) && where == PORT_LOGIC_MSIX_DOORBELL) {
577 *val = 0x00000000;
578 return PCIBIOS_SUCCESSFUL;
579 }
580
581 return pci_generic_config_read(bus, devfn, where, size, val);
582 }
583
tegra_pcie_dw_wr_own_conf(struct pci_bus * bus,u32 devfn,int where,int size,u32 val)584 static int tegra_pcie_dw_wr_own_conf(struct pci_bus *bus, u32 devfn, int where,
585 int size, u32 val)
586 {
587 struct dw_pcie_rp *pp = bus->sysdata;
588 struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
589 struct tegra_pcie_dw *pcie = to_tegra_pcie(pci);
590
591 /*
592 * This is an endpoint mode specific register happen to appear even
593 * when controller is operating in root port mode and system hangs
594 * when it is accessed with link being in ASPM-L1 state.
595 * So skip accessing it altogether
596 */
597 if (!pcie->of_data->has_msix_doorbell_access_fix &&
598 !PCI_SLOT(devfn) && where == PORT_LOGIC_MSIX_DOORBELL)
599 return PCIBIOS_SUCCESSFUL;
600
601 return pci_generic_config_write(bus, devfn, where, size, val);
602 }
603
604 static struct pci_ops tegra_pci_ops = {
605 .map_bus = dw_pcie_own_conf_map_bus,
606 .read = tegra_pcie_dw_rd_own_conf,
607 .write = tegra_pcie_dw_wr_own_conf,
608 };
609
610 #if defined(CONFIG_PCIEASPM)
disable_aspm_l11(struct tegra_pcie_dw * pcie)611 static void disable_aspm_l11(struct tegra_pcie_dw *pcie)
612 {
613 u32 val;
614
615 val = dw_pcie_readl_dbi(&pcie->pci, pcie->cfg_link_cap_l1sub);
616 val &= ~PCI_L1SS_CAP_ASPM_L1_1;
617 dw_pcie_writel_dbi(&pcie->pci, pcie->cfg_link_cap_l1sub, val);
618 }
619
disable_aspm_l12(struct tegra_pcie_dw * pcie)620 static void disable_aspm_l12(struct tegra_pcie_dw *pcie)
621 {
622 u32 val;
623
624 val = dw_pcie_readl_dbi(&pcie->pci, pcie->cfg_link_cap_l1sub);
625 val &= ~PCI_L1SS_CAP_ASPM_L1_2;
626 dw_pcie_writel_dbi(&pcie->pci, pcie->cfg_link_cap_l1sub, val);
627 }
628
event_counter_prog(struct tegra_pcie_dw * pcie,u32 event)629 static inline u32 event_counter_prog(struct tegra_pcie_dw *pcie, u32 event)
630 {
631 u32 val;
632
633 val = dw_pcie_readl_dbi(&pcie->pci, pcie->ras_des_cap +
634 PCIE_RAS_DES_EVENT_COUNTER_CONTROL);
635 val &= ~(EVENT_COUNTER_EVENT_SEL_MASK << EVENT_COUNTER_EVENT_SEL_SHIFT);
636 val |= EVENT_COUNTER_GROUP_5 << EVENT_COUNTER_GROUP_SEL_SHIFT;
637 val |= event << EVENT_COUNTER_EVENT_SEL_SHIFT;
638 val |= EVENT_COUNTER_ENABLE_ALL << EVENT_COUNTER_ENABLE_SHIFT;
639 dw_pcie_writel_dbi(&pcie->pci, pcie->ras_des_cap +
640 PCIE_RAS_DES_EVENT_COUNTER_CONTROL, val);
641 val = dw_pcie_readl_dbi(&pcie->pci, pcie->ras_des_cap +
642 PCIE_RAS_DES_EVENT_COUNTER_DATA);
643
644 return val;
645 }
646
aspm_state_cnt(struct seq_file * s,void * data)647 static int aspm_state_cnt(struct seq_file *s, void *data)
648 {
649 struct tegra_pcie_dw *pcie = (struct tegra_pcie_dw *)
650 dev_get_drvdata(s->private);
651 u32 val;
652
653 seq_printf(s, "Tx L0s entry count : %u\n",
654 event_counter_prog(pcie, EVENT_COUNTER_EVENT_Tx_L0S));
655
656 seq_printf(s, "Rx L0s entry count : %u\n",
657 event_counter_prog(pcie, EVENT_COUNTER_EVENT_Rx_L0S));
658
659 seq_printf(s, "Link L1 entry count : %u\n",
660 event_counter_prog(pcie, EVENT_COUNTER_EVENT_L1));
661
662 seq_printf(s, "Link L1.1 entry count : %u\n",
663 event_counter_prog(pcie, EVENT_COUNTER_EVENT_L1_1));
664
665 seq_printf(s, "Link L1.2 entry count : %u\n",
666 event_counter_prog(pcie, EVENT_COUNTER_EVENT_L1_2));
667
668 /* Clear all counters */
669 dw_pcie_writel_dbi(&pcie->pci, pcie->ras_des_cap +
670 PCIE_RAS_DES_EVENT_COUNTER_CONTROL,
671 EVENT_COUNTER_ALL_CLEAR);
672
673 /* Re-enable counting */
674 val = EVENT_COUNTER_ENABLE_ALL << EVENT_COUNTER_ENABLE_SHIFT;
675 val |= EVENT_COUNTER_GROUP_5 << EVENT_COUNTER_GROUP_SEL_SHIFT;
676 dw_pcie_writel_dbi(&pcie->pci, pcie->ras_des_cap +
677 PCIE_RAS_DES_EVENT_COUNTER_CONTROL, val);
678
679 return 0;
680 }
681
init_host_aspm(struct tegra_pcie_dw * pcie)682 static void init_host_aspm(struct tegra_pcie_dw *pcie)
683 {
684 struct dw_pcie *pci = &pcie->pci;
685 u32 val;
686
687 val = dw_pcie_find_ext_capability(pci, PCI_EXT_CAP_ID_L1SS);
688 pcie->cfg_link_cap_l1sub = val + PCI_L1SS_CAP;
689
690 pcie->ras_des_cap = dw_pcie_find_ext_capability(&pcie->pci,
691 PCI_EXT_CAP_ID_VNDR);
692
693 /* Enable ASPM counters */
694 val = EVENT_COUNTER_ENABLE_ALL << EVENT_COUNTER_ENABLE_SHIFT;
695 val |= EVENT_COUNTER_GROUP_5 << EVENT_COUNTER_GROUP_SEL_SHIFT;
696 dw_pcie_writel_dbi(pci, pcie->ras_des_cap +
697 PCIE_RAS_DES_EVENT_COUNTER_CONTROL, val);
698
699 /* Program T_cmrt and T_pwr_on values */
700 val = dw_pcie_readl_dbi(pci, pcie->cfg_link_cap_l1sub);
701 val &= ~(PCI_L1SS_CAP_CM_RESTORE_TIME | PCI_L1SS_CAP_P_PWR_ON_VALUE);
702 val |= (pcie->aspm_cmrt << 8);
703 val |= (pcie->aspm_pwr_on_t << 19);
704 dw_pcie_writel_dbi(pci, pcie->cfg_link_cap_l1sub, val);
705
706 /* Program L0s and L1 entrance latencies */
707 val = dw_pcie_readl_dbi(pci, PCIE_PORT_AFR);
708 val &= ~PORT_AFR_L0S_ENTRANCE_LAT_MASK;
709 val |= (pcie->aspm_l0s_enter_lat << PORT_AFR_L0S_ENTRANCE_LAT_SHIFT);
710 val |= PORT_AFR_ENTER_ASPM;
711 dw_pcie_writel_dbi(pci, PCIE_PORT_AFR, val);
712 }
713
init_debugfs(struct tegra_pcie_dw * pcie)714 static void init_debugfs(struct tegra_pcie_dw *pcie)
715 {
716 struct device *dev = pcie->dev;
717 char *name;
718
719 name = devm_kasprintf(dev, GFP_KERNEL, "%pOFP", dev->of_node);
720 if (!name)
721 return;
722
723 pcie->debugfs = debugfs_create_dir(name, NULL);
724
725 debugfs_create_devm_seqfile(dev, "aspm_state_cnt", pcie->debugfs,
726 aspm_state_cnt);
727 }
728 #else
disable_aspm_l12(struct tegra_pcie_dw * pcie)729 static inline void disable_aspm_l12(struct tegra_pcie_dw *pcie) { return; }
disable_aspm_l11(struct tegra_pcie_dw * pcie)730 static inline void disable_aspm_l11(struct tegra_pcie_dw *pcie) { return; }
init_host_aspm(struct tegra_pcie_dw * pcie)731 static inline void init_host_aspm(struct tegra_pcie_dw *pcie) { return; }
init_debugfs(struct tegra_pcie_dw * pcie)732 static inline void init_debugfs(struct tegra_pcie_dw *pcie) { return; }
733 #endif
734
tegra_pcie_enable_system_interrupts(struct dw_pcie_rp * pp)735 static void tegra_pcie_enable_system_interrupts(struct dw_pcie_rp *pp)
736 {
737 struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
738 struct tegra_pcie_dw *pcie = to_tegra_pcie(pci);
739 u32 val;
740 u16 val_w;
741
742 val = appl_readl(pcie, APPL_INTR_EN_L0_0);
743 val |= APPL_INTR_EN_L0_0_LINK_STATE_INT_EN;
744 appl_writel(pcie, val, APPL_INTR_EN_L0_0);
745
746 if (!pcie->of_data->has_sbr_reset_fix) {
747 val = appl_readl(pcie, APPL_INTR_EN_L1_0_0);
748 val |= APPL_INTR_EN_L1_0_0_LINK_REQ_RST_NOT_INT_EN;
749 appl_writel(pcie, val, APPL_INTR_EN_L1_0_0);
750 }
751
752 if (pcie->enable_cdm_check) {
753 val = appl_readl(pcie, APPL_INTR_EN_L0_0);
754 val |= pcie->of_data->cdm_chk_int_en_bit;
755 appl_writel(pcie, val, APPL_INTR_EN_L0_0);
756
757 val = appl_readl(pcie, APPL_INTR_EN_L1_18);
758 val |= APPL_INTR_EN_L1_18_CDM_REG_CHK_CMP_ERR;
759 val |= APPL_INTR_EN_L1_18_CDM_REG_CHK_LOGIC_ERR;
760 appl_writel(pcie, val, APPL_INTR_EN_L1_18);
761 }
762
763 val_w = dw_pcie_readw_dbi(&pcie->pci, pcie->pcie_cap_base +
764 PCI_EXP_LNKSTA);
765 pcie->init_link_width = FIELD_GET(PCI_EXP_LNKSTA_NLW, val_w);
766
767 val_w = dw_pcie_readw_dbi(&pcie->pci, pcie->pcie_cap_base +
768 PCI_EXP_LNKCTL);
769 val_w |= PCI_EXP_LNKCTL_LBMIE;
770 dw_pcie_writew_dbi(&pcie->pci, pcie->pcie_cap_base + PCI_EXP_LNKCTL,
771 val_w);
772 }
773
tegra_pcie_enable_intx_interrupts(struct dw_pcie_rp * pp)774 static void tegra_pcie_enable_intx_interrupts(struct dw_pcie_rp *pp)
775 {
776 struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
777 struct tegra_pcie_dw *pcie = to_tegra_pcie(pci);
778 u32 val;
779
780 /* Enable INTX interrupt generation */
781 val = appl_readl(pcie, APPL_INTR_EN_L0_0);
782 val |= APPL_INTR_EN_L0_0_SYS_INTR_EN;
783 val |= APPL_INTR_EN_L0_0_INT_INT_EN;
784 appl_writel(pcie, val, APPL_INTR_EN_L0_0);
785
786 val = appl_readl(pcie, APPL_INTR_EN_L1_8_0);
787 val |= APPL_INTR_EN_L1_8_INTX_EN;
788 val |= APPL_INTR_EN_L1_8_AUTO_BW_INT_EN;
789 val |= APPL_INTR_EN_L1_8_BW_MGT_INT_EN;
790 if (IS_ENABLED(CONFIG_PCIEAER))
791 val |= APPL_INTR_EN_L1_8_AER_INT_EN;
792 appl_writel(pcie, val, APPL_INTR_EN_L1_8_0);
793 }
794
tegra_pcie_enable_msi_interrupts(struct dw_pcie_rp * pp)795 static void tegra_pcie_enable_msi_interrupts(struct dw_pcie_rp *pp)
796 {
797 struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
798 struct tegra_pcie_dw *pcie = to_tegra_pcie(pci);
799 u32 val;
800
801 /* Enable MSI interrupt generation */
802 val = appl_readl(pcie, APPL_INTR_EN_L0_0);
803 val |= APPL_INTR_EN_L0_0_SYS_MSI_INTR_EN;
804 val |= APPL_INTR_EN_L0_0_MSI_RCV_INT_EN;
805 appl_writel(pcie, val, APPL_INTR_EN_L0_0);
806 }
807
tegra_pcie_enable_interrupts(struct dw_pcie_rp * pp)808 static void tegra_pcie_enable_interrupts(struct dw_pcie_rp *pp)
809 {
810 struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
811 struct tegra_pcie_dw *pcie = to_tegra_pcie(pci);
812
813 /* Clear interrupt statuses before enabling interrupts */
814 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L0);
815 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_0_0);
816 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_1);
817 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_2);
818 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_3);
819 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_6);
820 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_7);
821 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_8_0);
822 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_9);
823 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_10);
824 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_11);
825 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_13);
826 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_14);
827 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_15);
828 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_17);
829
830 tegra_pcie_enable_system_interrupts(pp);
831 tegra_pcie_enable_intx_interrupts(pp);
832 if (IS_ENABLED(CONFIG_PCI_MSI))
833 tegra_pcie_enable_msi_interrupts(pp);
834 }
835
config_gen3_gen4_eq_presets(struct tegra_pcie_dw * pcie)836 static void config_gen3_gen4_eq_presets(struct tegra_pcie_dw *pcie)
837 {
838 struct dw_pcie *pci = &pcie->pci;
839 u32 val, offset, i;
840
841 /* Program init preset */
842 for (i = 0; i < pcie->num_lanes; i++) {
843 val = dw_pcie_readw_dbi(pci, CAP_SPCIE_CAP_OFF + (i * 2));
844 val &= ~CAP_SPCIE_CAP_OFF_DSP_TX_PRESET0_MASK;
845 val |= GEN3_GEN4_EQ_PRESET_INIT;
846 val &= ~CAP_SPCIE_CAP_OFF_USP_TX_PRESET0_MASK;
847 val |= (GEN3_GEN4_EQ_PRESET_INIT <<
848 CAP_SPCIE_CAP_OFF_USP_TX_PRESET0_SHIFT);
849 dw_pcie_writew_dbi(pci, CAP_SPCIE_CAP_OFF + (i * 2), val);
850
851 offset = dw_pcie_find_ext_capability(pci,
852 PCI_EXT_CAP_ID_PL_16GT) +
853 PCI_PL_16GT_LE_CTRL;
854 val = dw_pcie_readb_dbi(pci, offset + i);
855 val &= ~PCI_PL_16GT_LE_CTRL_DSP_TX_PRESET_MASK;
856 val |= GEN3_GEN4_EQ_PRESET_INIT;
857 val &= ~PCI_PL_16GT_LE_CTRL_USP_TX_PRESET_MASK;
858 val |= (GEN3_GEN4_EQ_PRESET_INIT <<
859 PCI_PL_16GT_LE_CTRL_USP_TX_PRESET_SHIFT);
860 dw_pcie_writeb_dbi(pci, offset + i, val);
861 }
862
863 val = dw_pcie_readl_dbi(pci, GEN3_RELATED_OFF);
864 val &= ~GEN3_RELATED_OFF_RATE_SHADOW_SEL_MASK;
865 dw_pcie_writel_dbi(pci, GEN3_RELATED_OFF, val);
866
867 val = dw_pcie_readl_dbi(pci, GEN3_EQ_CONTROL_OFF);
868 val &= ~GEN3_EQ_CONTROL_OFF_PSET_REQ_VEC;
869 val |= FIELD_PREP(GEN3_EQ_CONTROL_OFF_PSET_REQ_VEC, 0x3ff);
870 val &= ~GEN3_EQ_CONTROL_OFF_FB_MODE;
871 dw_pcie_writel_dbi(pci, GEN3_EQ_CONTROL_OFF, val);
872
873 val = dw_pcie_readl_dbi(pci, GEN3_RELATED_OFF);
874 val &= ~GEN3_RELATED_OFF_RATE_SHADOW_SEL_MASK;
875 val |= (0x1 << GEN3_RELATED_OFF_RATE_SHADOW_SEL_SHIFT);
876 dw_pcie_writel_dbi(pci, GEN3_RELATED_OFF, val);
877
878 val = dw_pcie_readl_dbi(pci, GEN3_EQ_CONTROL_OFF);
879 val &= ~GEN3_EQ_CONTROL_OFF_PSET_REQ_VEC;
880 val |= FIELD_PREP(GEN3_EQ_CONTROL_OFF_PSET_REQ_VEC,
881 pcie->of_data->gen4_preset_vec);
882 val &= ~GEN3_EQ_CONTROL_OFF_FB_MODE;
883 dw_pcie_writel_dbi(pci, GEN3_EQ_CONTROL_OFF, val);
884
885 val = dw_pcie_readl_dbi(pci, GEN3_RELATED_OFF);
886 val &= ~GEN3_RELATED_OFF_RATE_SHADOW_SEL_MASK;
887 dw_pcie_writel_dbi(pci, GEN3_RELATED_OFF, val);
888 }
889
tegra_pcie_dw_host_init(struct dw_pcie_rp * pp)890 static int tegra_pcie_dw_host_init(struct dw_pcie_rp *pp)
891 {
892 struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
893 struct tegra_pcie_dw *pcie = to_tegra_pcie(pci);
894 u32 val;
895 u16 val_16;
896
897 pp->bridge->ops = &tegra_pci_ops;
898
899 if (!pcie->pcie_cap_base)
900 pcie->pcie_cap_base = dw_pcie_find_capability(&pcie->pci,
901 PCI_CAP_ID_EXP);
902
903 val = dw_pcie_readl_dbi(pci, PCI_IO_BASE);
904 val &= ~(IO_BASE_IO_DECODE | IO_BASE_IO_DECODE_BIT8);
905 dw_pcie_writel_dbi(pci, PCI_IO_BASE, val);
906
907 val = dw_pcie_readl_dbi(pci, PCI_PREF_MEMORY_BASE);
908 val |= CFG_PREF_MEM_LIMIT_BASE_MEM_DECODE;
909 val |= CFG_PREF_MEM_LIMIT_BASE_MEM_LIMIT_DECODE;
910 dw_pcie_writel_dbi(pci, PCI_PREF_MEMORY_BASE, val);
911
912 dw_pcie_writel_dbi(pci, PCI_BASE_ADDRESS_0, 0);
913
914 /* Enable as 0xFFFF0001 response for RRS */
915 val = dw_pcie_readl_dbi(pci, PORT_LOGIC_AMBA_ERROR_RESPONSE_DEFAULT);
916 val &= ~(AMBA_ERROR_RESPONSE_RRS_MASK << AMBA_ERROR_RESPONSE_RRS_SHIFT);
917 val |= (AMBA_ERROR_RESPONSE_RRS_OKAY_FFFF0001 <<
918 AMBA_ERROR_RESPONSE_RRS_SHIFT);
919 dw_pcie_writel_dbi(pci, PORT_LOGIC_AMBA_ERROR_RESPONSE_DEFAULT, val);
920
921 /* Clear Slot Clock Configuration bit if SRNS configuration */
922 if (pcie->enable_srns) {
923 val_16 = dw_pcie_readw_dbi(pci, pcie->pcie_cap_base +
924 PCI_EXP_LNKSTA);
925 val_16 &= ~PCI_EXP_LNKSTA_SLC;
926 dw_pcie_writew_dbi(pci, pcie->pcie_cap_base + PCI_EXP_LNKSTA,
927 val_16);
928 }
929
930 config_gen3_gen4_eq_presets(pcie);
931
932 init_host_aspm(pcie);
933
934 /* Disable ASPM-L1SS advertisement if there is no CLKREQ routing */
935 if (!pcie->supports_clkreq) {
936 disable_aspm_l11(pcie);
937 disable_aspm_l12(pcie);
938 }
939
940 if (!pcie->of_data->has_l1ss_exit_fix) {
941 val = dw_pcie_readl_dbi(pci, GEN3_RELATED_OFF);
942 val &= ~GEN3_RELATED_OFF_GEN3_ZRXDC_NONCOMPL;
943 dw_pcie_writel_dbi(pci, GEN3_RELATED_OFF, val);
944 }
945
946 if (pcie->update_fc_fixup) {
947 val = dw_pcie_readl_dbi(pci, CFG_TIMER_CTRL_MAX_FUNC_NUM_OFF);
948 val |= 0x1 << CFG_TIMER_CTRL_ACK_NAK_SHIFT;
949 dw_pcie_writel_dbi(pci, CFG_TIMER_CTRL_MAX_FUNC_NUM_OFF, val);
950 }
951
952 clk_set_rate(pcie->core_clk, GEN4_CORE_CLK_FREQ);
953
954 return 0;
955 }
956
tegra_pcie_dw_start_link(struct dw_pcie * pci)957 static int tegra_pcie_dw_start_link(struct dw_pcie *pci)
958 {
959 struct tegra_pcie_dw *pcie = to_tegra_pcie(pci);
960 struct dw_pcie_rp *pp = &pci->pp;
961 u32 val, offset, tmp;
962 bool retry = true;
963
964 if (pcie->of_data->mode == DW_PCIE_EP_TYPE) {
965 enable_irq(pcie->pex_rst_irq);
966 return 0;
967 }
968
969 retry_link:
970 /* Assert RST */
971 val = appl_readl(pcie, APPL_PINMUX);
972 val &= ~APPL_PINMUX_PEX_RST;
973 appl_writel(pcie, val, APPL_PINMUX);
974
975 usleep_range(100, 200);
976
977 /* Enable LTSSM */
978 val = appl_readl(pcie, APPL_CTRL);
979 val |= APPL_CTRL_LTSSM_EN;
980 appl_writel(pcie, val, APPL_CTRL);
981
982 /* De-assert RST */
983 val = appl_readl(pcie, APPL_PINMUX);
984 val |= APPL_PINMUX_PEX_RST;
985 appl_writel(pcie, val, APPL_PINMUX);
986
987 msleep(100);
988
989 if (dw_pcie_wait_for_link(pci)) {
990 if (!retry)
991 return 0;
992 /*
993 * There are some endpoints which can't get the link up if
994 * root port has Data Link Feature (DLF) enabled.
995 * Refer Spec rev 4.0 ver 1.0 sec 3.4.2 & 7.7.4 for more info
996 * on Scaled Flow Control and DLF.
997 * So, need to confirm that is indeed the case here and attempt
998 * link up once again with DLF disabled.
999 */
1000 val = appl_readl(pcie, APPL_DEBUG);
1001 val &= APPL_DEBUG_LTSSM_STATE_MASK;
1002 val >>= APPL_DEBUG_LTSSM_STATE_SHIFT;
1003 tmp = appl_readl(pcie, APPL_LINK_STATUS);
1004 tmp &= APPL_LINK_STATUS_RDLH_LINK_UP;
1005 if (!(val == 0x11 && !tmp)) {
1006 /* Link is down for all good reasons */
1007 return 0;
1008 }
1009
1010 dev_info(pci->dev, "Link is down in DLL");
1011 dev_info(pci->dev, "Trying again with DLFE disabled\n");
1012 /* Disable LTSSM */
1013 val = appl_readl(pcie, APPL_CTRL);
1014 val &= ~APPL_CTRL_LTSSM_EN;
1015 appl_writel(pcie, val, APPL_CTRL);
1016
1017 reset_control_assert(pcie->core_rst);
1018 reset_control_deassert(pcie->core_rst);
1019
1020 offset = dw_pcie_find_ext_capability(pci, PCI_EXT_CAP_ID_DLF);
1021 val = dw_pcie_readl_dbi(pci, offset + PCI_DLF_CAP);
1022 val &= ~PCI_DLF_EXCHANGE_ENABLE;
1023 dw_pcie_writel_dbi(pci, offset + PCI_DLF_CAP, val);
1024
1025 tegra_pcie_dw_host_init(pp);
1026 dw_pcie_setup_rc(pp);
1027
1028 retry = false;
1029 goto retry_link;
1030 }
1031
1032 tegra_pcie_icc_set(pcie);
1033
1034 tegra_pcie_enable_interrupts(pp);
1035
1036 return 0;
1037 }
1038
tegra_pcie_dw_link_up(struct dw_pcie * pci)1039 static bool tegra_pcie_dw_link_up(struct dw_pcie *pci)
1040 {
1041 struct tegra_pcie_dw *pcie = to_tegra_pcie(pci);
1042 u32 val = dw_pcie_readw_dbi(pci, pcie->pcie_cap_base + PCI_EXP_LNKSTA);
1043
1044 return val & PCI_EXP_LNKSTA_DLLLA;
1045 }
1046
tegra_pcie_dw_stop_link(struct dw_pcie * pci)1047 static void tegra_pcie_dw_stop_link(struct dw_pcie *pci)
1048 {
1049 struct tegra_pcie_dw *pcie = to_tegra_pcie(pci);
1050
1051 disable_irq(pcie->pex_rst_irq);
1052 }
1053
1054 static const struct dw_pcie_ops tegra_dw_pcie_ops = {
1055 .link_up = tegra_pcie_dw_link_up,
1056 .start_link = tegra_pcie_dw_start_link,
1057 .stop_link = tegra_pcie_dw_stop_link,
1058 };
1059
1060 static const struct dw_pcie_host_ops tegra_pcie_dw_host_ops = {
1061 .init = tegra_pcie_dw_host_init,
1062 };
1063
tegra_pcie_disable_phy(struct tegra_pcie_dw * pcie)1064 static void tegra_pcie_disable_phy(struct tegra_pcie_dw *pcie)
1065 {
1066 unsigned int phy_count = pcie->phy_count;
1067
1068 while (phy_count--) {
1069 phy_power_off(pcie->phys[phy_count]);
1070 phy_exit(pcie->phys[phy_count]);
1071 }
1072 }
1073
tegra_pcie_enable_phy(struct tegra_pcie_dw * pcie)1074 static int tegra_pcie_enable_phy(struct tegra_pcie_dw *pcie)
1075 {
1076 unsigned int i;
1077 int ret;
1078
1079 for (i = 0; i < pcie->phy_count; i++) {
1080 ret = phy_init(pcie->phys[i]);
1081 if (ret < 0)
1082 goto phy_power_off;
1083
1084 ret = phy_power_on(pcie->phys[i]);
1085 if (ret < 0)
1086 goto phy_exit;
1087 }
1088
1089 return 0;
1090
1091 phy_power_off:
1092 while (i--) {
1093 phy_power_off(pcie->phys[i]);
1094 phy_exit:
1095 phy_exit(pcie->phys[i]);
1096 }
1097
1098 return ret;
1099 }
1100
tegra_pcie_dw_parse_dt(struct tegra_pcie_dw * pcie)1101 static int tegra_pcie_dw_parse_dt(struct tegra_pcie_dw *pcie)
1102 {
1103 struct platform_device *pdev = to_platform_device(pcie->dev);
1104 struct device_node *np = pcie->dev->of_node;
1105 int ret;
1106
1107 pcie->dbi_res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "dbi");
1108 if (!pcie->dbi_res) {
1109 dev_err(pcie->dev, "Failed to find \"dbi\" region\n");
1110 return -ENODEV;
1111 }
1112
1113 ret = of_property_read_u32(np, "nvidia,aspm-cmrt-us", &pcie->aspm_cmrt);
1114 if (ret < 0) {
1115 dev_info(pcie->dev, "Failed to read ASPM T_cmrt: %d\n", ret);
1116 return ret;
1117 }
1118
1119 ret = of_property_read_u32(np, "nvidia,aspm-pwr-on-t-us",
1120 &pcie->aspm_pwr_on_t);
1121 if (ret < 0)
1122 dev_info(pcie->dev, "Failed to read ASPM Power On time: %d\n",
1123 ret);
1124
1125 ret = of_property_read_u32(np, "nvidia,aspm-l0s-entrance-latency-us",
1126 &pcie->aspm_l0s_enter_lat);
1127 if (ret < 0)
1128 dev_info(pcie->dev,
1129 "Failed to read ASPM L0s Entrance latency: %d\n", ret);
1130
1131 ret = of_property_read_u32(np, "num-lanes", &pcie->num_lanes);
1132 if (ret < 0) {
1133 dev_err(pcie->dev, "Failed to read num-lanes: %d\n", ret);
1134 return ret;
1135 }
1136
1137 ret = of_property_read_u32_index(np, "nvidia,bpmp", 1, &pcie->cid);
1138 if (ret) {
1139 dev_err(pcie->dev, "Failed to read Controller-ID: %d\n", ret);
1140 return ret;
1141 }
1142
1143 ret = of_property_count_strings(np, "phy-names");
1144 if (ret < 0) {
1145 dev_err(pcie->dev, "Failed to find PHY entries: %d\n",
1146 ret);
1147 return ret;
1148 }
1149 pcie->phy_count = ret;
1150
1151 if (of_property_read_bool(np, "nvidia,update-fc-fixup"))
1152 pcie->update_fc_fixup = true;
1153
1154 /* RP using an external REFCLK is supported only in Tegra234 */
1155 if (pcie->of_data->version == TEGRA194_DWC_IP_VER) {
1156 if (pcie->of_data->mode == DW_PCIE_EP_TYPE)
1157 pcie->enable_ext_refclk = true;
1158 } else {
1159 pcie->enable_ext_refclk =
1160 of_property_read_bool(pcie->dev->of_node,
1161 "nvidia,enable-ext-refclk");
1162 }
1163
1164 pcie->supports_clkreq =
1165 of_property_read_bool(pcie->dev->of_node, "supports-clkreq");
1166
1167 pcie->enable_cdm_check =
1168 of_property_read_bool(np, "snps,enable-cdm-check");
1169
1170 if (pcie->of_data->version == TEGRA234_DWC_IP_VER)
1171 pcie->enable_srns =
1172 of_property_read_bool(np, "nvidia,enable-srns");
1173
1174 if (pcie->of_data->mode == DW_PCIE_RC_TYPE)
1175 return 0;
1176
1177 /* Endpoint mode specific DT entries */
1178 pcie->pex_rst_gpiod = devm_gpiod_get(pcie->dev, "reset", GPIOD_IN);
1179 if (IS_ERR(pcie->pex_rst_gpiod)) {
1180 int err = PTR_ERR(pcie->pex_rst_gpiod);
1181 const char *level = KERN_ERR;
1182
1183 if (err == -EPROBE_DEFER)
1184 level = KERN_DEBUG;
1185
1186 dev_printk(level, pcie->dev,
1187 dev_fmt("Failed to get PERST GPIO: %d\n"),
1188 err);
1189 return err;
1190 }
1191
1192 pcie->pex_refclk_sel_gpiod = devm_gpiod_get(pcie->dev,
1193 "nvidia,refclk-select",
1194 GPIOD_OUT_HIGH);
1195 if (IS_ERR(pcie->pex_refclk_sel_gpiod)) {
1196 int err = PTR_ERR(pcie->pex_refclk_sel_gpiod);
1197 const char *level = KERN_ERR;
1198
1199 if (err == -EPROBE_DEFER)
1200 level = KERN_DEBUG;
1201
1202 dev_printk(level, pcie->dev,
1203 dev_fmt("Failed to get REFCLK select GPIOs: %d\n"),
1204 err);
1205 pcie->pex_refclk_sel_gpiod = NULL;
1206 }
1207
1208 return 0;
1209 }
1210
tegra_pcie_bpmp_set_ctrl_state(struct tegra_pcie_dw * pcie,bool enable)1211 static int tegra_pcie_bpmp_set_ctrl_state(struct tegra_pcie_dw *pcie,
1212 bool enable)
1213 {
1214 struct mrq_uphy_response resp;
1215 struct tegra_bpmp_message msg;
1216 struct mrq_uphy_request req;
1217 int err;
1218
1219 /*
1220 * Controller-5 doesn't need to have its state set by BPMP-FW in
1221 * Tegra194
1222 */
1223 if (pcie->of_data->version == TEGRA194_DWC_IP_VER && pcie->cid == 5)
1224 return 0;
1225
1226 memset(&req, 0, sizeof(req));
1227 memset(&resp, 0, sizeof(resp));
1228
1229 req.cmd = CMD_UPHY_PCIE_CONTROLLER_STATE;
1230 req.controller_state.pcie_controller = pcie->cid;
1231 req.controller_state.enable = enable;
1232
1233 memset(&msg, 0, sizeof(msg));
1234 msg.mrq = MRQ_UPHY;
1235 msg.tx.data = &req;
1236 msg.tx.size = sizeof(req);
1237 msg.rx.data = &resp;
1238 msg.rx.size = sizeof(resp);
1239
1240 err = tegra_bpmp_transfer(pcie->bpmp, &msg);
1241 if (err)
1242 return err;
1243 if (msg.rx.ret)
1244 return -EINVAL;
1245
1246 return 0;
1247 }
1248
tegra_pcie_bpmp_set_pll_state(struct tegra_pcie_dw * pcie,bool enable)1249 static int tegra_pcie_bpmp_set_pll_state(struct tegra_pcie_dw *pcie,
1250 bool enable)
1251 {
1252 struct mrq_uphy_response resp;
1253 struct tegra_bpmp_message msg;
1254 struct mrq_uphy_request req;
1255 int err;
1256
1257 memset(&req, 0, sizeof(req));
1258 memset(&resp, 0, sizeof(resp));
1259
1260 if (enable) {
1261 req.cmd = CMD_UPHY_PCIE_EP_CONTROLLER_PLL_INIT;
1262 req.ep_ctrlr_pll_init.ep_controller = pcie->cid;
1263 } else {
1264 req.cmd = CMD_UPHY_PCIE_EP_CONTROLLER_PLL_OFF;
1265 req.ep_ctrlr_pll_off.ep_controller = pcie->cid;
1266 }
1267
1268 memset(&msg, 0, sizeof(msg));
1269 msg.mrq = MRQ_UPHY;
1270 msg.tx.data = &req;
1271 msg.tx.size = sizeof(req);
1272 msg.rx.data = &resp;
1273 msg.rx.size = sizeof(resp);
1274
1275 err = tegra_bpmp_transfer(pcie->bpmp, &msg);
1276 if (err)
1277 return err;
1278 if (msg.rx.ret)
1279 return -EINVAL;
1280
1281 return 0;
1282 }
1283
tegra_pcie_downstream_dev_to_D0(struct tegra_pcie_dw * pcie)1284 static void tegra_pcie_downstream_dev_to_D0(struct tegra_pcie_dw *pcie)
1285 {
1286 struct dw_pcie_rp *pp = &pcie->pci.pp;
1287 struct pci_bus *child, *root_port_bus = NULL;
1288 struct pci_dev *pdev;
1289
1290 /*
1291 * link doesn't go into L2 state with some of the endpoints with Tegra
1292 * if they are not in D0 state. So, need to make sure that immediate
1293 * downstream devices are in D0 state before sending PME_TurnOff to put
1294 * link into L2 state.
1295 * This is as per PCI Express Base r4.0 v1.0 September 27-2017,
1296 * 5.2 Link State Power Management (Page #428).
1297 */
1298
1299 list_for_each_entry(child, &pp->bridge->bus->children, node) {
1300 if (child->parent == pp->bridge->bus) {
1301 root_port_bus = child;
1302 break;
1303 }
1304 }
1305
1306 if (!root_port_bus) {
1307 dev_err(pcie->dev, "Failed to find downstream bus of Root Port\n");
1308 return;
1309 }
1310
1311 /* Bring downstream devices to D0 if they are not already in */
1312 list_for_each_entry(pdev, &root_port_bus->devices, bus_list) {
1313 if (PCI_SLOT(pdev->devfn) == 0) {
1314 if (pci_set_power_state(pdev, PCI_D0))
1315 dev_err(pcie->dev,
1316 "Failed to transition %s to D0 state\n",
1317 dev_name(&pdev->dev));
1318 }
1319 }
1320 }
1321
tegra_pcie_get_slot_regulators(struct tegra_pcie_dw * pcie)1322 static int tegra_pcie_get_slot_regulators(struct tegra_pcie_dw *pcie)
1323 {
1324 pcie->slot_ctl_3v3 = devm_regulator_get_optional(pcie->dev, "vpcie3v3");
1325 if (IS_ERR(pcie->slot_ctl_3v3)) {
1326 if (PTR_ERR(pcie->slot_ctl_3v3) != -ENODEV)
1327 return PTR_ERR(pcie->slot_ctl_3v3);
1328
1329 pcie->slot_ctl_3v3 = NULL;
1330 }
1331
1332 pcie->slot_ctl_12v = devm_regulator_get_optional(pcie->dev, "vpcie12v");
1333 if (IS_ERR(pcie->slot_ctl_12v)) {
1334 if (PTR_ERR(pcie->slot_ctl_12v) != -ENODEV)
1335 return PTR_ERR(pcie->slot_ctl_12v);
1336
1337 pcie->slot_ctl_12v = NULL;
1338 }
1339
1340 return 0;
1341 }
1342
tegra_pcie_enable_slot_regulators(struct tegra_pcie_dw * pcie)1343 static int tegra_pcie_enable_slot_regulators(struct tegra_pcie_dw *pcie)
1344 {
1345 int ret;
1346
1347 if (pcie->slot_ctl_3v3) {
1348 ret = regulator_enable(pcie->slot_ctl_3v3);
1349 if (ret < 0) {
1350 dev_err(pcie->dev,
1351 "Failed to enable 3.3V slot supply: %d\n", ret);
1352 return ret;
1353 }
1354 }
1355
1356 if (pcie->slot_ctl_12v) {
1357 ret = regulator_enable(pcie->slot_ctl_12v);
1358 if (ret < 0) {
1359 dev_err(pcie->dev,
1360 "Failed to enable 12V slot supply: %d\n", ret);
1361 goto fail_12v_enable;
1362 }
1363 }
1364
1365 /*
1366 * According to PCI Express Card Electromechanical Specification
1367 * Revision 1.1, Table-2.4, T_PVPERL (Power stable to PERST# inactive)
1368 * should be a minimum of 100ms.
1369 */
1370 if (pcie->slot_ctl_3v3 || pcie->slot_ctl_12v)
1371 msleep(100);
1372
1373 return 0;
1374
1375 fail_12v_enable:
1376 if (pcie->slot_ctl_3v3)
1377 regulator_disable(pcie->slot_ctl_3v3);
1378 return ret;
1379 }
1380
tegra_pcie_disable_slot_regulators(struct tegra_pcie_dw * pcie)1381 static void tegra_pcie_disable_slot_regulators(struct tegra_pcie_dw *pcie)
1382 {
1383 if (pcie->slot_ctl_12v)
1384 regulator_disable(pcie->slot_ctl_12v);
1385 if (pcie->slot_ctl_3v3)
1386 regulator_disable(pcie->slot_ctl_3v3);
1387 }
1388
tegra_pcie_config_controller(struct tegra_pcie_dw * pcie,bool en_hw_hot_rst)1389 static int tegra_pcie_config_controller(struct tegra_pcie_dw *pcie,
1390 bool en_hw_hot_rst)
1391 {
1392 int ret;
1393 u32 val;
1394
1395 ret = tegra_pcie_bpmp_set_ctrl_state(pcie, true);
1396 if (ret) {
1397 dev_err(pcie->dev,
1398 "Failed to enable controller %u: %d\n", pcie->cid, ret);
1399 return ret;
1400 }
1401
1402 if (pcie->enable_ext_refclk) {
1403 ret = tegra_pcie_bpmp_set_pll_state(pcie, true);
1404 if (ret) {
1405 dev_err(pcie->dev, "Failed to init UPHY: %d\n", ret);
1406 goto fail_pll_init;
1407 }
1408 }
1409
1410 ret = tegra_pcie_enable_slot_regulators(pcie);
1411 if (ret < 0)
1412 goto fail_slot_reg_en;
1413
1414 ret = regulator_enable(pcie->pex_ctl_supply);
1415 if (ret < 0) {
1416 dev_err(pcie->dev, "Failed to enable regulator: %d\n", ret);
1417 goto fail_reg_en;
1418 }
1419
1420 ret = clk_prepare_enable(pcie->core_clk);
1421 if (ret) {
1422 dev_err(pcie->dev, "Failed to enable core clock: %d\n", ret);
1423 goto fail_core_clk;
1424 }
1425
1426 ret = reset_control_deassert(pcie->core_apb_rst);
1427 if (ret) {
1428 dev_err(pcie->dev, "Failed to deassert core APB reset: %d\n",
1429 ret);
1430 goto fail_core_apb_rst;
1431 }
1432
1433 if (en_hw_hot_rst || pcie->of_data->has_sbr_reset_fix) {
1434 /* Enable HW_HOT_RST mode */
1435 val = appl_readl(pcie, APPL_CTRL);
1436 val &= ~(APPL_CTRL_HW_HOT_RST_MODE_MASK <<
1437 APPL_CTRL_HW_HOT_RST_MODE_SHIFT);
1438 val |= (APPL_CTRL_HW_HOT_RST_MODE_IMDT_RST_LTSSM_EN <<
1439 APPL_CTRL_HW_HOT_RST_MODE_SHIFT);
1440 val |= APPL_CTRL_HW_HOT_RST_EN;
1441 appl_writel(pcie, val, APPL_CTRL);
1442 }
1443
1444 ret = tegra_pcie_enable_phy(pcie);
1445 if (ret) {
1446 dev_err(pcie->dev, "Failed to enable PHY: %d\n", ret);
1447 goto fail_phy;
1448 }
1449
1450 /* Update CFG base address */
1451 appl_writel(pcie, pcie->dbi_res->start & APPL_CFG_BASE_ADDR_MASK,
1452 APPL_CFG_BASE_ADDR);
1453
1454 /* Configure this core for RP mode operation */
1455 appl_writel(pcie, APPL_DM_TYPE_RP, APPL_DM_TYPE);
1456
1457 appl_writel(pcie, 0x0, APPL_CFG_SLCG_OVERRIDE);
1458
1459 val = appl_readl(pcie, APPL_CTRL);
1460 appl_writel(pcie, val | APPL_CTRL_SYS_PRE_DET_STATE, APPL_CTRL);
1461
1462 val = appl_readl(pcie, APPL_CFG_MISC);
1463 val |= (APPL_CFG_MISC_ARCACHE_VAL << APPL_CFG_MISC_ARCACHE_SHIFT);
1464 appl_writel(pcie, val, APPL_CFG_MISC);
1465
1466 if (pcie->enable_srns || pcie->enable_ext_refclk) {
1467 /*
1468 * When Tegra PCIe RP is using external clock, it cannot supply
1469 * same clock to its downstream hierarchy. Hence, gate PCIe RP
1470 * REFCLK out pads when RP & EP are using separate clocks or RP
1471 * is using an external REFCLK.
1472 */
1473 val = appl_readl(pcie, APPL_PINMUX);
1474 val |= APPL_PINMUX_CLK_OUTPUT_IN_OVERRIDE_EN;
1475 val &= ~APPL_PINMUX_CLK_OUTPUT_IN_OVERRIDE;
1476 appl_writel(pcie, val, APPL_PINMUX);
1477 }
1478
1479 if (!pcie->supports_clkreq) {
1480 val = appl_readl(pcie, APPL_PINMUX);
1481 val |= APPL_PINMUX_CLKREQ_OVERRIDE_EN;
1482 val &= ~APPL_PINMUX_CLKREQ_OVERRIDE;
1483 appl_writel(pcie, val, APPL_PINMUX);
1484 }
1485
1486 /* Update iATU_DMA base address */
1487 appl_writel(pcie,
1488 pcie->atu_dma_res->start & APPL_CFG_IATU_DMA_BASE_ADDR_MASK,
1489 APPL_CFG_IATU_DMA_BASE_ADDR);
1490
1491 reset_control_deassert(pcie->core_rst);
1492
1493 return ret;
1494
1495 fail_phy:
1496 reset_control_assert(pcie->core_apb_rst);
1497 fail_core_apb_rst:
1498 clk_disable_unprepare(pcie->core_clk);
1499 fail_core_clk:
1500 regulator_disable(pcie->pex_ctl_supply);
1501 fail_reg_en:
1502 tegra_pcie_disable_slot_regulators(pcie);
1503 fail_slot_reg_en:
1504 if (pcie->enable_ext_refclk)
1505 tegra_pcie_bpmp_set_pll_state(pcie, false);
1506 fail_pll_init:
1507 tegra_pcie_bpmp_set_ctrl_state(pcie, false);
1508
1509 return ret;
1510 }
1511
tegra_pcie_unconfig_controller(struct tegra_pcie_dw * pcie)1512 static void tegra_pcie_unconfig_controller(struct tegra_pcie_dw *pcie)
1513 {
1514 int ret;
1515
1516 ret = reset_control_assert(pcie->core_rst);
1517 if (ret)
1518 dev_err(pcie->dev, "Failed to assert \"core\" reset: %d\n", ret);
1519
1520 tegra_pcie_disable_phy(pcie);
1521
1522 ret = reset_control_assert(pcie->core_apb_rst);
1523 if (ret)
1524 dev_err(pcie->dev, "Failed to assert APB reset: %d\n", ret);
1525
1526 clk_disable_unprepare(pcie->core_clk);
1527
1528 ret = regulator_disable(pcie->pex_ctl_supply);
1529 if (ret)
1530 dev_err(pcie->dev, "Failed to disable regulator: %d\n", ret);
1531
1532 tegra_pcie_disable_slot_regulators(pcie);
1533
1534 if (pcie->enable_ext_refclk) {
1535 ret = tegra_pcie_bpmp_set_pll_state(pcie, false);
1536 if (ret)
1537 dev_err(pcie->dev, "Failed to deinit UPHY: %d\n", ret);
1538 }
1539
1540 ret = tegra_pcie_bpmp_set_ctrl_state(pcie, false);
1541 if (ret)
1542 dev_err(pcie->dev, "Failed to disable controller %d: %d\n",
1543 pcie->cid, ret);
1544 }
1545
tegra_pcie_init_controller(struct tegra_pcie_dw * pcie)1546 static int tegra_pcie_init_controller(struct tegra_pcie_dw *pcie)
1547 {
1548 struct dw_pcie *pci = &pcie->pci;
1549 struct dw_pcie_rp *pp = &pci->pp;
1550 int ret;
1551
1552 ret = tegra_pcie_config_controller(pcie, false);
1553 if (ret < 0)
1554 return ret;
1555
1556 pp->ops = &tegra_pcie_dw_host_ops;
1557
1558 ret = dw_pcie_host_init(pp);
1559 if (ret < 0) {
1560 dev_err(pcie->dev, "Failed to add PCIe port: %d\n", ret);
1561 goto fail_host_init;
1562 }
1563
1564 return 0;
1565
1566 fail_host_init:
1567 tegra_pcie_unconfig_controller(pcie);
1568 return ret;
1569 }
1570
tegra_pcie_try_link_l2(struct tegra_pcie_dw * pcie)1571 static int tegra_pcie_try_link_l2(struct tegra_pcie_dw *pcie)
1572 {
1573 u32 val;
1574
1575 if (!tegra_pcie_dw_link_up(&pcie->pci))
1576 return 0;
1577
1578 val = appl_readl(pcie, APPL_RADM_STATUS);
1579 val |= APPL_PM_XMT_TURNOFF_STATE;
1580 appl_writel(pcie, val, APPL_RADM_STATUS);
1581
1582 return readl_poll_timeout_atomic(pcie->appl_base + APPL_DEBUG, val,
1583 val & APPL_DEBUG_PM_LINKST_IN_L2_LAT,
1584 1, PME_ACK_TIMEOUT);
1585 }
1586
tegra_pcie_dw_pme_turnoff(struct tegra_pcie_dw * pcie)1587 static void tegra_pcie_dw_pme_turnoff(struct tegra_pcie_dw *pcie)
1588 {
1589 u32 data;
1590 int err;
1591
1592 if (!tegra_pcie_dw_link_up(&pcie->pci)) {
1593 dev_dbg(pcie->dev, "PCIe link is not up...!\n");
1594 return;
1595 }
1596
1597 /*
1598 * PCIe controller exits from L2 only if reset is applied, so
1599 * controller doesn't handle interrupts. But in cases where
1600 * L2 entry fails, PERST# is asserted which can trigger surprise
1601 * link down AER. However this function call happens in
1602 * suspend_noirq(), so AER interrupt will not be processed.
1603 * Disable all interrupts to avoid such a scenario.
1604 */
1605 appl_writel(pcie, 0x0, APPL_INTR_EN_L0_0);
1606
1607 if (tegra_pcie_try_link_l2(pcie)) {
1608 dev_info(pcie->dev, "Link didn't transition to L2 state\n");
1609 /*
1610 * TX lane clock freq will reset to Gen1 only if link is in L2
1611 * or detect state.
1612 * So apply pex_rst to end point to force RP to go into detect
1613 * state
1614 */
1615 data = appl_readl(pcie, APPL_PINMUX);
1616 data &= ~APPL_PINMUX_PEX_RST;
1617 appl_writel(pcie, data, APPL_PINMUX);
1618
1619 /*
1620 * Some cards do not go to detect state even after de-asserting
1621 * PERST#. So, de-assert LTSSM to bring link to detect state.
1622 */
1623 data = readl(pcie->appl_base + APPL_CTRL);
1624 data &= ~APPL_CTRL_LTSSM_EN;
1625 writel(data, pcie->appl_base + APPL_CTRL);
1626
1627 err = readl_poll_timeout_atomic(pcie->appl_base + APPL_DEBUG,
1628 data,
1629 ((data &
1630 APPL_DEBUG_LTSSM_STATE_MASK) >>
1631 APPL_DEBUG_LTSSM_STATE_SHIFT) ==
1632 LTSSM_STATE_PRE_DETECT,
1633 1, LTSSM_TIMEOUT);
1634 if (err)
1635 dev_info(pcie->dev, "Link didn't go to detect state\n");
1636 }
1637 /*
1638 * DBI registers may not be accessible after this as PLL-E would be
1639 * down depending on how CLKREQ is pulled by end point
1640 */
1641 data = appl_readl(pcie, APPL_PINMUX);
1642 data |= (APPL_PINMUX_CLKREQ_OVERRIDE_EN | APPL_PINMUX_CLKREQ_OVERRIDE);
1643 /* Cut REFCLK to slot */
1644 data |= APPL_PINMUX_CLK_OUTPUT_IN_OVERRIDE_EN;
1645 data &= ~APPL_PINMUX_CLK_OUTPUT_IN_OVERRIDE;
1646 appl_writel(pcie, data, APPL_PINMUX);
1647 }
1648
tegra_pcie_deinit_controller(struct tegra_pcie_dw * pcie)1649 static void tegra_pcie_deinit_controller(struct tegra_pcie_dw *pcie)
1650 {
1651 tegra_pcie_downstream_dev_to_D0(pcie);
1652 dw_pcie_host_deinit(&pcie->pci.pp);
1653 tegra_pcie_dw_pme_turnoff(pcie);
1654 tegra_pcie_unconfig_controller(pcie);
1655 }
1656
tegra_pcie_config_rp(struct tegra_pcie_dw * pcie)1657 static int tegra_pcie_config_rp(struct tegra_pcie_dw *pcie)
1658 {
1659 struct device *dev = pcie->dev;
1660 int ret;
1661
1662 pm_runtime_enable(dev);
1663
1664 ret = pm_runtime_get_sync(dev);
1665 if (ret < 0) {
1666 dev_err(dev, "Failed to get runtime sync for PCIe dev: %d\n",
1667 ret);
1668 goto fail_pm_get_sync;
1669 }
1670
1671 ret = pinctrl_pm_select_default_state(dev);
1672 if (ret < 0) {
1673 dev_err(dev, "Failed to configure sideband pins: %d\n", ret);
1674 goto fail_pm_get_sync;
1675 }
1676
1677 ret = tegra_pcie_init_controller(pcie);
1678 if (ret < 0) {
1679 dev_err(dev, "Failed to initialize controller: %d\n", ret);
1680 goto fail_pm_get_sync;
1681 }
1682
1683 pcie->link_state = tegra_pcie_dw_link_up(&pcie->pci);
1684 if (!pcie->link_state) {
1685 ret = -ENOMEDIUM;
1686 goto fail_host_init;
1687 }
1688
1689 init_debugfs(pcie);
1690
1691 return ret;
1692
1693 fail_host_init:
1694 tegra_pcie_deinit_controller(pcie);
1695 fail_pm_get_sync:
1696 pm_runtime_put_sync(dev);
1697 pm_runtime_disable(dev);
1698 return ret;
1699 }
1700
pex_ep_event_pex_rst_assert(struct tegra_pcie_dw * pcie)1701 static void pex_ep_event_pex_rst_assert(struct tegra_pcie_dw *pcie)
1702 {
1703 u32 val;
1704 int ret;
1705
1706 if (pcie->ep_state == EP_STATE_DISABLED)
1707 return;
1708
1709 /* Disable LTSSM */
1710 val = appl_readl(pcie, APPL_CTRL);
1711 val &= ~APPL_CTRL_LTSSM_EN;
1712 appl_writel(pcie, val, APPL_CTRL);
1713
1714 ret = readl_poll_timeout(pcie->appl_base + APPL_DEBUG, val,
1715 ((val & APPL_DEBUG_LTSSM_STATE_MASK) >>
1716 APPL_DEBUG_LTSSM_STATE_SHIFT) ==
1717 LTSSM_STATE_PRE_DETECT,
1718 1, LTSSM_TIMEOUT);
1719 if (ret)
1720 dev_err(pcie->dev, "Failed to go Detect state: %d\n", ret);
1721
1722 reset_control_assert(pcie->core_rst);
1723
1724 tegra_pcie_disable_phy(pcie);
1725
1726 reset_control_assert(pcie->core_apb_rst);
1727
1728 clk_disable_unprepare(pcie->core_clk);
1729
1730 pm_runtime_put_sync(pcie->dev);
1731
1732 if (pcie->enable_ext_refclk) {
1733 ret = tegra_pcie_bpmp_set_pll_state(pcie, false);
1734 if (ret)
1735 dev_err(pcie->dev, "Failed to turn off UPHY: %d\n",
1736 ret);
1737 }
1738
1739 ret = tegra_pcie_bpmp_set_ctrl_state(pcie, false);
1740 if (ret)
1741 dev_err(pcie->dev, "Failed to disable controller: %d\n", ret);
1742
1743 pcie->ep_state = EP_STATE_DISABLED;
1744 dev_dbg(pcie->dev, "Uninitialization of endpoint is completed\n");
1745 }
1746
pex_ep_event_pex_rst_deassert(struct tegra_pcie_dw * pcie)1747 static void pex_ep_event_pex_rst_deassert(struct tegra_pcie_dw *pcie)
1748 {
1749 struct dw_pcie *pci = &pcie->pci;
1750 struct dw_pcie_ep *ep = &pci->ep;
1751 struct device *dev = pcie->dev;
1752 u32 val;
1753 int ret;
1754 u16 val_16;
1755
1756 if (pcie->ep_state == EP_STATE_ENABLED)
1757 return;
1758
1759 ret = pm_runtime_resume_and_get(dev);
1760 if (ret < 0) {
1761 dev_err(dev, "Failed to get runtime sync for PCIe dev: %d\n",
1762 ret);
1763 return;
1764 }
1765
1766 ret = tegra_pcie_bpmp_set_ctrl_state(pcie, true);
1767 if (ret) {
1768 dev_err(pcie->dev, "Failed to enable controller %u: %d\n",
1769 pcie->cid, ret);
1770 goto fail_set_ctrl_state;
1771 }
1772
1773 if (pcie->enable_ext_refclk) {
1774 ret = tegra_pcie_bpmp_set_pll_state(pcie, true);
1775 if (ret) {
1776 dev_err(dev, "Failed to init UPHY for PCIe EP: %d\n",
1777 ret);
1778 goto fail_pll_init;
1779 }
1780 }
1781
1782 ret = clk_prepare_enable(pcie->core_clk);
1783 if (ret) {
1784 dev_err(dev, "Failed to enable core clock: %d\n", ret);
1785 goto fail_core_clk_enable;
1786 }
1787
1788 ret = reset_control_deassert(pcie->core_apb_rst);
1789 if (ret) {
1790 dev_err(dev, "Failed to deassert core APB reset: %d\n", ret);
1791 goto fail_core_apb_rst;
1792 }
1793
1794 ret = tegra_pcie_enable_phy(pcie);
1795 if (ret) {
1796 dev_err(dev, "Failed to enable PHY: %d\n", ret);
1797 goto fail_phy;
1798 }
1799
1800 /* Perform cleanup that requires refclk */
1801 pci_epc_deinit_notify(pcie->pci.ep.epc);
1802 dw_pcie_ep_cleanup(&pcie->pci.ep);
1803
1804 /* Clear any stale interrupt statuses */
1805 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L0);
1806 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_0_0);
1807 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_1);
1808 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_2);
1809 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_3);
1810 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_6);
1811 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_7);
1812 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_8_0);
1813 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_9);
1814 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_10);
1815 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_11);
1816 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_13);
1817 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_14);
1818 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_15);
1819 appl_writel(pcie, 0xFFFFFFFF, APPL_INTR_STATUS_L1_17);
1820
1821 /* configure this core for EP mode operation */
1822 val = appl_readl(pcie, APPL_DM_TYPE);
1823 val &= ~APPL_DM_TYPE_MASK;
1824 val |= APPL_DM_TYPE_EP;
1825 appl_writel(pcie, val, APPL_DM_TYPE);
1826
1827 appl_writel(pcie, 0x0, APPL_CFG_SLCG_OVERRIDE);
1828
1829 val = appl_readl(pcie, APPL_CTRL);
1830 val |= APPL_CTRL_SYS_PRE_DET_STATE;
1831 val |= APPL_CTRL_HW_HOT_RST_EN;
1832 appl_writel(pcie, val, APPL_CTRL);
1833
1834 val = appl_readl(pcie, APPL_CFG_MISC);
1835 val |= APPL_CFG_MISC_SLV_EP_MODE;
1836 val |= (APPL_CFG_MISC_ARCACHE_VAL << APPL_CFG_MISC_ARCACHE_SHIFT);
1837 appl_writel(pcie, val, APPL_CFG_MISC);
1838
1839 val = appl_readl(pcie, APPL_PINMUX);
1840 val |= APPL_PINMUX_CLK_OUTPUT_IN_OVERRIDE_EN;
1841 val |= APPL_PINMUX_CLK_OUTPUT_IN_OVERRIDE;
1842 appl_writel(pcie, val, APPL_PINMUX);
1843
1844 appl_writel(pcie, pcie->dbi_res->start & APPL_CFG_BASE_ADDR_MASK,
1845 APPL_CFG_BASE_ADDR);
1846
1847 appl_writel(pcie, pcie->atu_dma_res->start &
1848 APPL_CFG_IATU_DMA_BASE_ADDR_MASK,
1849 APPL_CFG_IATU_DMA_BASE_ADDR);
1850
1851 val = appl_readl(pcie, APPL_INTR_EN_L0_0);
1852 val |= APPL_INTR_EN_L0_0_SYS_INTR_EN;
1853 val |= APPL_INTR_EN_L0_0_LINK_STATE_INT_EN;
1854 val |= APPL_INTR_EN_L0_0_PCI_CMD_EN_INT_EN;
1855 appl_writel(pcie, val, APPL_INTR_EN_L0_0);
1856
1857 val = appl_readl(pcie, APPL_INTR_EN_L1_0_0);
1858 val |= APPL_INTR_EN_L1_0_0_HOT_RESET_DONE_INT_EN;
1859 val |= APPL_INTR_EN_L1_0_0_RDLH_LINK_UP_INT_EN;
1860 appl_writel(pcie, val, APPL_INTR_EN_L1_0_0);
1861
1862 reset_control_deassert(pcie->core_rst);
1863
1864 if (pcie->update_fc_fixup) {
1865 val = dw_pcie_readl_dbi(pci, CFG_TIMER_CTRL_MAX_FUNC_NUM_OFF);
1866 val |= 0x1 << CFG_TIMER_CTRL_ACK_NAK_SHIFT;
1867 dw_pcie_writel_dbi(pci, CFG_TIMER_CTRL_MAX_FUNC_NUM_OFF, val);
1868 }
1869
1870 config_gen3_gen4_eq_presets(pcie);
1871
1872 init_host_aspm(pcie);
1873
1874 /* Disable ASPM-L1SS advertisement if there is no CLKREQ routing */
1875 if (!pcie->supports_clkreq) {
1876 disable_aspm_l11(pcie);
1877 disable_aspm_l12(pcie);
1878 }
1879
1880 if (!pcie->of_data->has_l1ss_exit_fix) {
1881 val = dw_pcie_readl_dbi(pci, GEN3_RELATED_OFF);
1882 val &= ~GEN3_RELATED_OFF_GEN3_ZRXDC_NONCOMPL;
1883 dw_pcie_writel_dbi(pci, GEN3_RELATED_OFF, val);
1884 }
1885
1886 pcie->pcie_cap_base = dw_pcie_find_capability(&pcie->pci,
1887 PCI_CAP_ID_EXP);
1888
1889 /* Clear Slot Clock Configuration bit if SRNS configuration */
1890 if (pcie->enable_srns) {
1891 val_16 = dw_pcie_readw_dbi(pci, pcie->pcie_cap_base +
1892 PCI_EXP_LNKSTA);
1893 val_16 &= ~PCI_EXP_LNKSTA_SLC;
1894 dw_pcie_writew_dbi(pci, pcie->pcie_cap_base + PCI_EXP_LNKSTA,
1895 val_16);
1896 }
1897
1898 clk_set_rate(pcie->core_clk, GEN4_CORE_CLK_FREQ);
1899
1900 val = (ep->msi_mem_phys & MSIX_ADDR_MATCH_LOW_OFF_MASK);
1901 val |= MSIX_ADDR_MATCH_LOW_OFF_EN;
1902 dw_pcie_writel_dbi(pci, MSIX_ADDR_MATCH_LOW_OFF, val);
1903 val = (upper_32_bits(ep->msi_mem_phys) & MSIX_ADDR_MATCH_HIGH_OFF_MASK);
1904 dw_pcie_writel_dbi(pci, MSIX_ADDR_MATCH_HIGH_OFF, val);
1905
1906 ret = dw_pcie_ep_init_registers(ep);
1907 if (ret) {
1908 dev_err(dev, "Failed to complete initialization: %d\n", ret);
1909 goto fail_init_complete;
1910 }
1911
1912 pci_epc_init_notify(ep->epc);
1913
1914 /* Program the private control to allow sending LTR upstream */
1915 if (pcie->of_data->has_ltr_req_fix) {
1916 val = appl_readl(pcie, APPL_LTR_MSG_2);
1917 val |= APPL_LTR_MSG_2_LTR_MSG_REQ_STATE;
1918 appl_writel(pcie, val, APPL_LTR_MSG_2);
1919 }
1920
1921 /* Enable LTSSM */
1922 val = appl_readl(pcie, APPL_CTRL);
1923 val |= APPL_CTRL_LTSSM_EN;
1924 appl_writel(pcie, val, APPL_CTRL);
1925
1926 pcie->ep_state = EP_STATE_ENABLED;
1927 dev_dbg(dev, "Initialization of endpoint is completed\n");
1928
1929 return;
1930
1931 fail_init_complete:
1932 reset_control_assert(pcie->core_rst);
1933 tegra_pcie_disable_phy(pcie);
1934 fail_phy:
1935 reset_control_assert(pcie->core_apb_rst);
1936 fail_core_apb_rst:
1937 clk_disable_unprepare(pcie->core_clk);
1938 fail_core_clk_enable:
1939 tegra_pcie_bpmp_set_pll_state(pcie, false);
1940 fail_pll_init:
1941 tegra_pcie_bpmp_set_ctrl_state(pcie, false);
1942 fail_set_ctrl_state:
1943 pm_runtime_put_sync(dev);
1944 }
1945
tegra_pcie_ep_pex_rst_irq(int irq,void * arg)1946 static irqreturn_t tegra_pcie_ep_pex_rst_irq(int irq, void *arg)
1947 {
1948 struct tegra_pcie_dw *pcie = arg;
1949
1950 if (gpiod_get_value(pcie->pex_rst_gpiod))
1951 pex_ep_event_pex_rst_assert(pcie);
1952 else
1953 pex_ep_event_pex_rst_deassert(pcie);
1954
1955 return IRQ_HANDLED;
1956 }
1957
tegra_pcie_ep_init(struct dw_pcie_ep * ep)1958 static void tegra_pcie_ep_init(struct dw_pcie_ep *ep)
1959 {
1960 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
1961 enum pci_barno bar;
1962
1963 for (bar = 0; bar < PCI_STD_NUM_BARS; bar++)
1964 dw_pcie_ep_reset_bar(pci, bar);
1965 };
1966
tegra_pcie_ep_raise_intx_irq(struct tegra_pcie_dw * pcie,u16 irq)1967 static int tegra_pcie_ep_raise_intx_irq(struct tegra_pcie_dw *pcie, u16 irq)
1968 {
1969 /* Tegra194 supports only INTA */
1970 if (irq > 1)
1971 return -EINVAL;
1972
1973 appl_writel(pcie, 1, APPL_LEGACY_INTX);
1974 usleep_range(1000, 2000);
1975 appl_writel(pcie, 0, APPL_LEGACY_INTX);
1976 return 0;
1977 }
1978
tegra_pcie_ep_raise_msi_irq(struct tegra_pcie_dw * pcie,u16 irq)1979 static int tegra_pcie_ep_raise_msi_irq(struct tegra_pcie_dw *pcie, u16 irq)
1980 {
1981 if (unlikely(irq > 32))
1982 return -EINVAL;
1983
1984 appl_writel(pcie, BIT(irq - 1), APPL_MSI_CTRL_1);
1985
1986 return 0;
1987 }
1988
tegra_pcie_ep_raise_msix_irq(struct tegra_pcie_dw * pcie,u16 irq)1989 static int tegra_pcie_ep_raise_msix_irq(struct tegra_pcie_dw *pcie, u16 irq)
1990 {
1991 struct dw_pcie_ep *ep = &pcie->pci.ep;
1992
1993 writel(irq, ep->msi_mem);
1994
1995 return 0;
1996 }
1997
tegra_pcie_ep_raise_irq(struct dw_pcie_ep * ep,u8 func_no,unsigned int type,u16 interrupt_num)1998 static int tegra_pcie_ep_raise_irq(struct dw_pcie_ep *ep, u8 func_no,
1999 unsigned int type, u16 interrupt_num)
2000 {
2001 struct dw_pcie *pci = to_dw_pcie_from_ep(ep);
2002 struct tegra_pcie_dw *pcie = to_tegra_pcie(pci);
2003
2004 switch (type) {
2005 case PCI_IRQ_INTX:
2006 return tegra_pcie_ep_raise_intx_irq(pcie, interrupt_num);
2007
2008 case PCI_IRQ_MSI:
2009 return tegra_pcie_ep_raise_msi_irq(pcie, interrupt_num);
2010
2011 case PCI_IRQ_MSIX:
2012 return tegra_pcie_ep_raise_msix_irq(pcie, interrupt_num);
2013
2014 default:
2015 dev_err(pci->dev, "Unknown IRQ type\n");
2016 return -EPERM;
2017 }
2018
2019 return 0;
2020 }
2021
2022 static const struct pci_epc_features tegra_pcie_epc_features = {
2023 .linkup_notifier = true,
2024 .msi_capable = true,
2025 .bar[BAR_0] = { .type = BAR_FIXED, .fixed_size = SZ_1M,
2026 .only_64bit = true, },
2027 .bar[BAR_1] = { .type = BAR_RESERVED, },
2028 .bar[BAR_2] = { .type = BAR_RESERVED, },
2029 .bar[BAR_3] = { .type = BAR_RESERVED, },
2030 .bar[BAR_4] = { .type = BAR_RESERVED, },
2031 .bar[BAR_5] = { .type = BAR_RESERVED, },
2032 .align = SZ_64K,
2033 };
2034
2035 static const struct pci_epc_features*
tegra_pcie_ep_get_features(struct dw_pcie_ep * ep)2036 tegra_pcie_ep_get_features(struct dw_pcie_ep *ep)
2037 {
2038 return &tegra_pcie_epc_features;
2039 }
2040
2041 static const struct dw_pcie_ep_ops pcie_ep_ops = {
2042 .init = tegra_pcie_ep_init,
2043 .raise_irq = tegra_pcie_ep_raise_irq,
2044 .get_features = tegra_pcie_ep_get_features,
2045 };
2046
tegra_pcie_config_ep(struct tegra_pcie_dw * pcie,struct platform_device * pdev)2047 static int tegra_pcie_config_ep(struct tegra_pcie_dw *pcie,
2048 struct platform_device *pdev)
2049 {
2050 struct dw_pcie *pci = &pcie->pci;
2051 struct device *dev = pcie->dev;
2052 struct dw_pcie_ep *ep;
2053 char *name;
2054 int ret;
2055
2056 ep = &pci->ep;
2057 ep->ops = &pcie_ep_ops;
2058
2059 ep->page_size = SZ_64K;
2060
2061 ret = gpiod_set_debounce(pcie->pex_rst_gpiod, PERST_DEBOUNCE_TIME);
2062 if (ret < 0) {
2063 dev_err(dev, "Failed to set PERST GPIO debounce time: %d\n",
2064 ret);
2065 return ret;
2066 }
2067
2068 ret = gpiod_to_irq(pcie->pex_rst_gpiod);
2069 if (ret < 0) {
2070 dev_err(dev, "Failed to get IRQ for PERST GPIO: %d\n", ret);
2071 return ret;
2072 }
2073 pcie->pex_rst_irq = (unsigned int)ret;
2074
2075 name = devm_kasprintf(dev, GFP_KERNEL, "tegra_pcie_%u_pex_rst_irq",
2076 pcie->cid);
2077 if (!name) {
2078 dev_err(dev, "Failed to create PERST IRQ string\n");
2079 return -ENOMEM;
2080 }
2081
2082 irq_set_status_flags(pcie->pex_rst_irq, IRQ_NOAUTOEN);
2083
2084 pcie->ep_state = EP_STATE_DISABLED;
2085
2086 ret = devm_request_threaded_irq(dev, pcie->pex_rst_irq, NULL,
2087 tegra_pcie_ep_pex_rst_irq,
2088 IRQF_TRIGGER_RISING |
2089 IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
2090 name, (void *)pcie);
2091 if (ret < 0) {
2092 dev_err(dev, "Failed to request IRQ for PERST: %d\n", ret);
2093 return ret;
2094 }
2095
2096 pm_runtime_enable(dev);
2097
2098 ret = dw_pcie_ep_init(ep);
2099 if (ret) {
2100 dev_err(dev, "Failed to initialize DWC Endpoint subsystem: %d\n",
2101 ret);
2102 pm_runtime_disable(dev);
2103 return ret;
2104 }
2105
2106 return 0;
2107 }
2108
tegra_pcie_dw_probe(struct platform_device * pdev)2109 static int tegra_pcie_dw_probe(struct platform_device *pdev)
2110 {
2111 const struct tegra_pcie_dw_of_data *data;
2112 struct device *dev = &pdev->dev;
2113 struct resource *atu_dma_res;
2114 struct tegra_pcie_dw *pcie;
2115 struct dw_pcie_rp *pp;
2116 struct dw_pcie *pci;
2117 struct phy **phys;
2118 char *name;
2119 int ret;
2120 u32 i;
2121
2122 data = of_device_get_match_data(dev);
2123
2124 pcie = devm_kzalloc(dev, sizeof(*pcie), GFP_KERNEL);
2125 if (!pcie)
2126 return -ENOMEM;
2127
2128 pci = &pcie->pci;
2129 pci->dev = &pdev->dev;
2130 pci->ops = &tegra_dw_pcie_ops;
2131 pcie->dev = &pdev->dev;
2132 pcie->of_data = (struct tegra_pcie_dw_of_data *)data;
2133 pci->n_fts[0] = pcie->of_data->n_fts[0];
2134 pci->n_fts[1] = pcie->of_data->n_fts[1];
2135 pp = &pci->pp;
2136 pp->num_vectors = MAX_MSI_IRQS;
2137
2138 ret = tegra_pcie_dw_parse_dt(pcie);
2139 if (ret < 0) {
2140 const char *level = KERN_ERR;
2141
2142 if (ret == -EPROBE_DEFER)
2143 level = KERN_DEBUG;
2144
2145 dev_printk(level, dev,
2146 dev_fmt("Failed to parse device tree: %d\n"),
2147 ret);
2148 return ret;
2149 }
2150
2151 ret = tegra_pcie_get_slot_regulators(pcie);
2152 if (ret < 0) {
2153 const char *level = KERN_ERR;
2154
2155 if (ret == -EPROBE_DEFER)
2156 level = KERN_DEBUG;
2157
2158 dev_printk(level, dev,
2159 dev_fmt("Failed to get slot regulators: %d\n"),
2160 ret);
2161 return ret;
2162 }
2163
2164 if (pcie->pex_refclk_sel_gpiod)
2165 gpiod_set_value(pcie->pex_refclk_sel_gpiod, 1);
2166
2167 pcie->pex_ctl_supply = devm_regulator_get(dev, "vddio-pex-ctl");
2168 if (IS_ERR(pcie->pex_ctl_supply)) {
2169 ret = PTR_ERR(pcie->pex_ctl_supply);
2170 if (ret != -EPROBE_DEFER)
2171 dev_err(dev, "Failed to get regulator: %ld\n",
2172 PTR_ERR(pcie->pex_ctl_supply));
2173 return ret;
2174 }
2175
2176 pcie->core_clk = devm_clk_get(dev, "core");
2177 if (IS_ERR(pcie->core_clk)) {
2178 dev_err(dev, "Failed to get core clock: %ld\n",
2179 PTR_ERR(pcie->core_clk));
2180 return PTR_ERR(pcie->core_clk);
2181 }
2182
2183 pcie->appl_res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
2184 "appl");
2185 if (!pcie->appl_res) {
2186 dev_err(dev, "Failed to find \"appl\" region\n");
2187 return -ENODEV;
2188 }
2189
2190 pcie->appl_base = devm_ioremap_resource(dev, pcie->appl_res);
2191 if (IS_ERR(pcie->appl_base))
2192 return PTR_ERR(pcie->appl_base);
2193
2194 pcie->core_apb_rst = devm_reset_control_get(dev, "apb");
2195 if (IS_ERR(pcie->core_apb_rst)) {
2196 dev_err(dev, "Failed to get APB reset: %ld\n",
2197 PTR_ERR(pcie->core_apb_rst));
2198 return PTR_ERR(pcie->core_apb_rst);
2199 }
2200
2201 phys = devm_kcalloc(dev, pcie->phy_count, sizeof(*phys), GFP_KERNEL);
2202 if (!phys)
2203 return -ENOMEM;
2204
2205 for (i = 0; i < pcie->phy_count; i++) {
2206 name = kasprintf(GFP_KERNEL, "p2u-%u", i);
2207 if (!name) {
2208 dev_err(dev, "Failed to create P2U string\n");
2209 return -ENOMEM;
2210 }
2211 phys[i] = devm_phy_get(dev, name);
2212 kfree(name);
2213 if (IS_ERR(phys[i])) {
2214 ret = PTR_ERR(phys[i]);
2215 if (ret != -EPROBE_DEFER)
2216 dev_err(dev, "Failed to get PHY: %d\n", ret);
2217 return ret;
2218 }
2219 }
2220
2221 pcie->phys = phys;
2222
2223 atu_dma_res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
2224 "atu_dma");
2225 if (!atu_dma_res) {
2226 dev_err(dev, "Failed to find \"atu_dma\" region\n");
2227 return -ENODEV;
2228 }
2229 pcie->atu_dma_res = atu_dma_res;
2230
2231 pci->atu_size = resource_size(atu_dma_res);
2232 pci->atu_base = devm_ioremap_resource(dev, atu_dma_res);
2233 if (IS_ERR(pci->atu_base))
2234 return PTR_ERR(pci->atu_base);
2235
2236 pcie->core_rst = devm_reset_control_get(dev, "core");
2237 if (IS_ERR(pcie->core_rst)) {
2238 dev_err(dev, "Failed to get core reset: %ld\n",
2239 PTR_ERR(pcie->core_rst));
2240 return PTR_ERR(pcie->core_rst);
2241 }
2242
2243 pp->irq = platform_get_irq_byname(pdev, "intr");
2244 if (pp->irq < 0)
2245 return pp->irq;
2246
2247 pcie->bpmp = tegra_bpmp_get(dev);
2248 if (IS_ERR(pcie->bpmp))
2249 return PTR_ERR(pcie->bpmp);
2250
2251 platform_set_drvdata(pdev, pcie);
2252
2253 pcie->icc_path = devm_of_icc_get(&pdev->dev, "write");
2254 ret = PTR_ERR_OR_ZERO(pcie->icc_path);
2255 if (ret) {
2256 tegra_bpmp_put(pcie->bpmp);
2257 dev_err_probe(&pdev->dev, ret, "failed to get write interconnect\n");
2258 return ret;
2259 }
2260
2261 switch (pcie->of_data->mode) {
2262 case DW_PCIE_RC_TYPE:
2263 ret = devm_request_irq(dev, pp->irq, tegra_pcie_rp_irq_handler,
2264 IRQF_SHARED, "tegra-pcie-intr", pcie);
2265 if (ret) {
2266 dev_err(dev, "Failed to request IRQ %d: %d\n", pp->irq,
2267 ret);
2268 goto fail;
2269 }
2270
2271 ret = tegra_pcie_config_rp(pcie);
2272 if (ret && ret != -ENOMEDIUM)
2273 goto fail;
2274 else
2275 return 0;
2276 break;
2277
2278 case DW_PCIE_EP_TYPE:
2279 ret = devm_request_threaded_irq(dev, pp->irq,
2280 tegra_pcie_ep_hard_irq,
2281 tegra_pcie_ep_irq_thread,
2282 IRQF_SHARED | IRQF_ONESHOT,
2283 "tegra-pcie-ep-intr", pcie);
2284 if (ret) {
2285 dev_err(dev, "Failed to request IRQ %d: %d\n", pp->irq,
2286 ret);
2287 goto fail;
2288 }
2289
2290 ret = tegra_pcie_config_ep(pcie, pdev);
2291 if (ret < 0)
2292 goto fail;
2293 else
2294 return 0;
2295 break;
2296
2297 default:
2298 dev_err(dev, "Invalid PCIe device type %d\n",
2299 pcie->of_data->mode);
2300 ret = -EINVAL;
2301 }
2302
2303 fail:
2304 tegra_bpmp_put(pcie->bpmp);
2305 return ret;
2306 }
2307
tegra_pcie_dw_remove(struct platform_device * pdev)2308 static void tegra_pcie_dw_remove(struct platform_device *pdev)
2309 {
2310 struct tegra_pcie_dw *pcie = platform_get_drvdata(pdev);
2311
2312 if (pcie->of_data->mode == DW_PCIE_RC_TYPE) {
2313 if (!pcie->link_state)
2314 return;
2315
2316 debugfs_remove_recursive(pcie->debugfs);
2317 tegra_pcie_deinit_controller(pcie);
2318 pm_runtime_put_sync(pcie->dev);
2319 } else {
2320 disable_irq(pcie->pex_rst_irq);
2321 pex_ep_event_pex_rst_assert(pcie);
2322 }
2323
2324 pm_runtime_disable(pcie->dev);
2325 tegra_bpmp_put(pcie->bpmp);
2326 if (pcie->pex_refclk_sel_gpiod)
2327 gpiod_set_value(pcie->pex_refclk_sel_gpiod, 0);
2328 }
2329
tegra_pcie_dw_suspend_late(struct device * dev)2330 static int tegra_pcie_dw_suspend_late(struct device *dev)
2331 {
2332 struct tegra_pcie_dw *pcie = dev_get_drvdata(dev);
2333 u32 val;
2334
2335 if (pcie->of_data->mode == DW_PCIE_EP_TYPE) {
2336 dev_err(dev, "Failed to Suspend as Tegra PCIe is in EP mode\n");
2337 return -EPERM;
2338 }
2339
2340 if (!pcie->link_state)
2341 return 0;
2342
2343 /* Enable HW_HOT_RST mode */
2344 if (!pcie->of_data->has_sbr_reset_fix) {
2345 val = appl_readl(pcie, APPL_CTRL);
2346 val &= ~(APPL_CTRL_HW_HOT_RST_MODE_MASK <<
2347 APPL_CTRL_HW_HOT_RST_MODE_SHIFT);
2348 val |= APPL_CTRL_HW_HOT_RST_EN;
2349 appl_writel(pcie, val, APPL_CTRL);
2350 }
2351
2352 return 0;
2353 }
2354
tegra_pcie_dw_suspend_noirq(struct device * dev)2355 static int tegra_pcie_dw_suspend_noirq(struct device *dev)
2356 {
2357 struct tegra_pcie_dw *pcie = dev_get_drvdata(dev);
2358
2359 if (!pcie->link_state)
2360 return 0;
2361
2362 tegra_pcie_downstream_dev_to_D0(pcie);
2363 tegra_pcie_dw_pme_turnoff(pcie);
2364 tegra_pcie_unconfig_controller(pcie);
2365
2366 return 0;
2367 }
2368
tegra_pcie_dw_resume_noirq(struct device * dev)2369 static int tegra_pcie_dw_resume_noirq(struct device *dev)
2370 {
2371 struct tegra_pcie_dw *pcie = dev_get_drvdata(dev);
2372 int ret;
2373
2374 if (!pcie->link_state)
2375 return 0;
2376
2377 ret = tegra_pcie_config_controller(pcie, true);
2378 if (ret < 0)
2379 return ret;
2380
2381 ret = tegra_pcie_dw_host_init(&pcie->pci.pp);
2382 if (ret < 0) {
2383 dev_err(dev, "Failed to init host: %d\n", ret);
2384 goto fail_host_init;
2385 }
2386
2387 dw_pcie_setup_rc(&pcie->pci.pp);
2388
2389 ret = tegra_pcie_dw_start_link(&pcie->pci);
2390 if (ret < 0)
2391 goto fail_host_init;
2392
2393 return 0;
2394
2395 fail_host_init:
2396 tegra_pcie_unconfig_controller(pcie);
2397 return ret;
2398 }
2399
tegra_pcie_dw_resume_early(struct device * dev)2400 static int tegra_pcie_dw_resume_early(struct device *dev)
2401 {
2402 struct tegra_pcie_dw *pcie = dev_get_drvdata(dev);
2403 u32 val;
2404
2405 if (pcie->of_data->mode == DW_PCIE_EP_TYPE) {
2406 dev_err(dev, "Suspend is not supported in EP mode");
2407 return -ENOTSUPP;
2408 }
2409
2410 if (!pcie->link_state)
2411 return 0;
2412
2413 /* Disable HW_HOT_RST mode */
2414 if (!pcie->of_data->has_sbr_reset_fix) {
2415 val = appl_readl(pcie, APPL_CTRL);
2416 val &= ~(APPL_CTRL_HW_HOT_RST_MODE_MASK <<
2417 APPL_CTRL_HW_HOT_RST_MODE_SHIFT);
2418 val |= APPL_CTRL_HW_HOT_RST_MODE_IMDT_RST <<
2419 APPL_CTRL_HW_HOT_RST_MODE_SHIFT;
2420 val &= ~APPL_CTRL_HW_HOT_RST_EN;
2421 appl_writel(pcie, val, APPL_CTRL);
2422 }
2423
2424 return 0;
2425 }
2426
tegra_pcie_dw_shutdown(struct platform_device * pdev)2427 static void tegra_pcie_dw_shutdown(struct platform_device *pdev)
2428 {
2429 struct tegra_pcie_dw *pcie = platform_get_drvdata(pdev);
2430
2431 if (pcie->of_data->mode == DW_PCIE_RC_TYPE) {
2432 if (!pcie->link_state)
2433 return;
2434
2435 debugfs_remove_recursive(pcie->debugfs);
2436 tegra_pcie_downstream_dev_to_D0(pcie);
2437
2438 disable_irq(pcie->pci.pp.irq);
2439 if (IS_ENABLED(CONFIG_PCI_MSI))
2440 disable_irq(pcie->pci.pp.msi_irq[0]);
2441
2442 tegra_pcie_dw_pme_turnoff(pcie);
2443 tegra_pcie_unconfig_controller(pcie);
2444 pm_runtime_put_sync(pcie->dev);
2445 } else {
2446 disable_irq(pcie->pex_rst_irq);
2447 pex_ep_event_pex_rst_assert(pcie);
2448 }
2449 }
2450
2451 static const struct tegra_pcie_dw_of_data tegra194_pcie_dw_rc_of_data = {
2452 .version = TEGRA194_DWC_IP_VER,
2453 .mode = DW_PCIE_RC_TYPE,
2454 .cdm_chk_int_en_bit = BIT(19),
2455 /* Gen4 - 5, 6, 8 and 9 presets enabled */
2456 .gen4_preset_vec = 0x360,
2457 .n_fts = { 52, 52 },
2458 };
2459
2460 static const struct tegra_pcie_dw_of_data tegra194_pcie_dw_ep_of_data = {
2461 .version = TEGRA194_DWC_IP_VER,
2462 .mode = DW_PCIE_EP_TYPE,
2463 .cdm_chk_int_en_bit = BIT(19),
2464 /* Gen4 - 5, 6, 8 and 9 presets enabled */
2465 .gen4_preset_vec = 0x360,
2466 .n_fts = { 52, 52 },
2467 };
2468
2469 static const struct tegra_pcie_dw_of_data tegra234_pcie_dw_rc_of_data = {
2470 .version = TEGRA234_DWC_IP_VER,
2471 .mode = DW_PCIE_RC_TYPE,
2472 .has_msix_doorbell_access_fix = true,
2473 .has_sbr_reset_fix = true,
2474 .has_l1ss_exit_fix = true,
2475 .cdm_chk_int_en_bit = BIT(18),
2476 /* Gen4 - 6, 8 and 9 presets enabled */
2477 .gen4_preset_vec = 0x340,
2478 .n_fts = { 52, 80 },
2479 };
2480
2481 static const struct tegra_pcie_dw_of_data tegra234_pcie_dw_ep_of_data = {
2482 .version = TEGRA234_DWC_IP_VER,
2483 .mode = DW_PCIE_EP_TYPE,
2484 .has_l1ss_exit_fix = true,
2485 .has_ltr_req_fix = true,
2486 .cdm_chk_int_en_bit = BIT(18),
2487 /* Gen4 - 6, 8 and 9 presets enabled */
2488 .gen4_preset_vec = 0x340,
2489 .n_fts = { 52, 80 },
2490 };
2491
2492 static const struct of_device_id tegra_pcie_dw_of_match[] = {
2493 {
2494 .compatible = "nvidia,tegra194-pcie",
2495 .data = &tegra194_pcie_dw_rc_of_data,
2496 },
2497 {
2498 .compatible = "nvidia,tegra194-pcie-ep",
2499 .data = &tegra194_pcie_dw_ep_of_data,
2500 },
2501 {
2502 .compatible = "nvidia,tegra234-pcie",
2503 .data = &tegra234_pcie_dw_rc_of_data,
2504 },
2505 {
2506 .compatible = "nvidia,tegra234-pcie-ep",
2507 .data = &tegra234_pcie_dw_ep_of_data,
2508 },
2509 {}
2510 };
2511
2512 static const struct dev_pm_ops tegra_pcie_dw_pm_ops = {
2513 .suspend_late = tegra_pcie_dw_suspend_late,
2514 .suspend_noirq = tegra_pcie_dw_suspend_noirq,
2515 .resume_noirq = tegra_pcie_dw_resume_noirq,
2516 .resume_early = tegra_pcie_dw_resume_early,
2517 };
2518
2519 static struct platform_driver tegra_pcie_dw_driver = {
2520 .probe = tegra_pcie_dw_probe,
2521 .remove = tegra_pcie_dw_remove,
2522 .shutdown = tegra_pcie_dw_shutdown,
2523 .driver = {
2524 .name = "tegra194-pcie",
2525 .pm = &tegra_pcie_dw_pm_ops,
2526 .of_match_table = tegra_pcie_dw_of_match,
2527 },
2528 };
2529 module_platform_driver(tegra_pcie_dw_driver);
2530
2531 MODULE_DEVICE_TABLE(of, tegra_pcie_dw_of_match);
2532
2533 MODULE_AUTHOR("Vidya Sagar <vidyas@nvidia.com>");
2534 MODULE_DESCRIPTION("NVIDIA PCIe host controller driver");
2535 MODULE_LICENSE("GPL v2");
2536