blob: 8713b8846152cb7c9db896b1d4177465589046db [file] [log] [blame]
Wilson Dinge51f2b12018-03-26 15:57:29 +08001/*
2 * ***************************************************************************
3 * Copyright (C) 2015 Marvell International Ltd.
4 * ***************************************************************************
5 * This program is free software: you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the Free
7 * Software Foundation, either version 2 of the License, or any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 * ***************************************************************************
17 */
18/* pcie_advk.c
19 *
20 * Ported from Linux driver - driver/pci/host/pci-aardvark.c
21 *
22 * Author: Victor Gu <xigu@marvell.com>
23 * Hezi Shahmoon <hezi.shahmoon@marvell.com>
24 *
25 */
26
27#include <common.h>
28#include <dm.h>
29#include <pci.h>
30#include <asm/io.h>
31#include <asm-generic/gpio.h>
Simon Glass336d4612020-02-03 07:36:16 -070032#include <dm/device_compat.h>
Simon Glasscd93d622020-05-10 11:40:13 -060033#include <linux/bitops.h>
Simon Glassc05ed002020-05-10 11:40:11 -060034#include <linux/delay.h>
Wilson Dinge51f2b12018-03-26 15:57:29 +080035#include <linux/ioport.h>
36
37/* PCIe core registers */
38#define PCIE_CORE_CMD_STATUS_REG 0x4
39#define PCIE_CORE_CMD_IO_ACCESS_EN BIT(0)
40#define PCIE_CORE_CMD_MEM_ACCESS_EN BIT(1)
41#define PCIE_CORE_CMD_MEM_IO_REQ_EN BIT(2)
42#define PCIE_CORE_DEV_CTRL_STATS_REG 0xc8
43#define PCIE_CORE_DEV_CTRL_STATS_RELAX_ORDER_DISABLE (0 << 4)
44#define PCIE_CORE_DEV_CTRL_STATS_SNOOP_DISABLE (0 << 11)
45#define PCIE_CORE_LINK_CTRL_STAT_REG 0xd0
46#define PCIE_CORE_LINK_TRAINING BIT(5)
47#define PCIE_CORE_ERR_CAPCTL_REG 0x118
48#define PCIE_CORE_ERR_CAPCTL_ECRC_CHK_TX BIT(5)
49#define PCIE_CORE_ERR_CAPCTL_ECRC_CHK_TX_EN BIT(6)
50#define PCIE_CORE_ERR_CAPCTL_ECRC_CHECK BIT(7)
51#define PCIE_CORE_ERR_CAPCTL_ECRC_CHECK_RCV BIT(8)
52
53/* PIO registers base address and register offsets */
54#define PIO_BASE_ADDR 0x4000
55#define PIO_CTRL (PIO_BASE_ADDR + 0x0)
56#define PIO_CTRL_TYPE_MASK GENMASK(3, 0)
57#define PIO_CTRL_ADDR_WIN_DISABLE BIT(24)
58#define PIO_STAT (PIO_BASE_ADDR + 0x4)
59#define PIO_COMPLETION_STATUS_SHIFT 7
60#define PIO_COMPLETION_STATUS_MASK GENMASK(9, 7)
61#define PIO_COMPLETION_STATUS_OK 0
62#define PIO_COMPLETION_STATUS_UR 1
63#define PIO_COMPLETION_STATUS_CRS 2
64#define PIO_COMPLETION_STATUS_CA 4
65#define PIO_NON_POSTED_REQ BIT(10)
66#define PIO_ERR_STATUS BIT(11)
67#define PIO_ADDR_LS (PIO_BASE_ADDR + 0x8)
68#define PIO_ADDR_MS (PIO_BASE_ADDR + 0xc)
69#define PIO_WR_DATA (PIO_BASE_ADDR + 0x10)
70#define PIO_WR_DATA_STRB (PIO_BASE_ADDR + 0x14)
71#define PIO_RD_DATA (PIO_BASE_ADDR + 0x18)
72#define PIO_START (PIO_BASE_ADDR + 0x1c)
73#define PIO_ISR (PIO_BASE_ADDR + 0x20)
74
75/* Aardvark Control registers */
76#define CONTROL_BASE_ADDR 0x4800
77#define PCIE_CORE_CTRL0_REG (CONTROL_BASE_ADDR + 0x0)
78#define PCIE_GEN_SEL_MSK 0x3
79#define PCIE_GEN_SEL_SHIFT 0x0
80#define SPEED_GEN_1 0
81#define SPEED_GEN_2 1
82#define SPEED_GEN_3 2
83#define IS_RC_MSK 1
84#define IS_RC_SHIFT 2
85#define LANE_CNT_MSK 0x18
86#define LANE_CNT_SHIFT 0x3
87#define LANE_COUNT_1 (0 << LANE_CNT_SHIFT)
88#define LANE_COUNT_2 (1 << LANE_CNT_SHIFT)
89#define LANE_COUNT_4 (2 << LANE_CNT_SHIFT)
90#define LANE_COUNT_8 (3 << LANE_CNT_SHIFT)
91#define LINK_TRAINING_EN BIT(6)
92#define PCIE_CORE_CTRL2_REG (CONTROL_BASE_ADDR + 0x8)
93#define PCIE_CORE_CTRL2_RESERVED 0x7
94#define PCIE_CORE_CTRL2_TD_ENABLE BIT(4)
95#define PCIE_CORE_CTRL2_STRICT_ORDER_ENABLE BIT(5)
96#define PCIE_CORE_CTRL2_ADDRWIN_MAP_ENABLE BIT(6)
97
98/* LMI registers base address and register offsets */
99#define LMI_BASE_ADDR 0x6000
100#define CFG_REG (LMI_BASE_ADDR + 0x0)
101#define LTSSM_SHIFT 24
102#define LTSSM_MASK 0x3f
103#define LTSSM_L0 0x10
104
105/* PCIe core controller registers */
106#define CTRL_CORE_BASE_ADDR 0x18000
107#define CTRL_CONFIG_REG (CTRL_CORE_BASE_ADDR + 0x0)
108#define CTRL_MODE_SHIFT 0x0
109#define CTRL_MODE_MASK 0x1
110#define PCIE_CORE_MODE_DIRECT 0x0
111#define PCIE_CORE_MODE_COMMAND 0x1
112
113/* Transaction types */
114#define PCIE_CONFIG_RD_TYPE0 0x8
115#define PCIE_CONFIG_RD_TYPE1 0x9
116#define PCIE_CONFIG_WR_TYPE0 0xa
117#define PCIE_CONFIG_WR_TYPE1 0xb
118
119/* PCI_BDF shifts 8bit, so we need extra 4bit shift */
120#define PCIE_BDF(dev) (dev << 4)
121#define PCIE_CONF_BUS(bus) (((bus) & 0xff) << 20)
122#define PCIE_CONF_DEV(dev) (((dev) & 0x1f) << 15)
123#define PCIE_CONF_FUNC(fun) (((fun) & 0x7) << 12)
124#define PCIE_CONF_REG(reg) ((reg) & 0xffc)
125#define PCIE_CONF_ADDR(bus, devfn, where) \
126 (PCIE_CONF_BUS(bus) | PCIE_CONF_DEV(PCI_SLOT(devfn)) | \
127 PCIE_CONF_FUNC(PCI_FUNC(devfn)) | PCIE_CONF_REG(where))
128
129/* PCIe Retries & Timeout definitions */
130#define MAX_RETRIES 10
131#define PIO_WAIT_TIMEOUT 100
132#define LINK_WAIT_TIMEOUT 100000
133
134#define CFG_RD_UR_VAL 0xFFFFFFFF
135#define CFG_RD_CRS_VAL 0xFFFF0001
136
Wilson Dinge51f2b12018-03-26 15:57:29 +0800137/**
138 * struct pcie_advk - Advk PCIe controller state
139 *
140 * @reg_base: The base address of the register space.
141 * @first_busno: This driver supports multiple PCIe controllers.
142 * first_busno stores the bus number of the PCIe root-port
143 * number which may vary depending on the PCIe setup
144 * (PEX switches etc).
145 * @device: The pointer to PCI uclass device.
146 */
147struct pcie_advk {
148 void *base;
149 int first_busno;
150 struct udevice *dev;
Pali Rohár828d3262020-08-19 15:57:07 +0200151 struct gpio_desc reset_gpio;
Wilson Dinge51f2b12018-03-26 15:57:29 +0800152};
153
154static inline void advk_writel(struct pcie_advk *pcie, uint val, uint reg)
155{
156 writel(val, pcie->base + reg);
157}
158
159static inline uint advk_readl(struct pcie_advk *pcie, uint reg)
160{
161 return readl(pcie->base + reg);
162}
163
164/**
165 * pcie_advk_addr_valid() - Check for valid bus address
166 *
167 * @bdf: The PCI device to access
168 * @first_busno: Bus number of the PCIe controller root complex
169 *
170 * Return: 1 on valid, 0 on invalid
171 */
172static int pcie_advk_addr_valid(pci_dev_t bdf, int first_busno)
173{
174 /*
175 * In PCIE-E only a single device (0) can exist
176 * on the local bus. Beyound the local bus, there might be
177 * a Switch and everything is possible.
178 */
179 if ((PCI_BUS(bdf) == first_busno) && (PCI_DEV(bdf) > 0))
180 return 0;
181
182 return 1;
183}
184
185/**
186 * pcie_advk_wait_pio() - Wait for PIO access to be accomplished
187 *
188 * @pcie: The PCI device to access
189 *
190 * Wait up to 1 micro second for PIO access to be accomplished.
191 *
192 * Return 1 (true) if PIO access is accomplished.
193 * Return 0 (false) if PIO access is timed out.
194 */
195static int pcie_advk_wait_pio(struct pcie_advk *pcie)
196{
197 uint start, isr;
198 uint count;
199
200 for (count = 0; count < MAX_RETRIES; count++) {
201 start = advk_readl(pcie, PIO_START);
202 isr = advk_readl(pcie, PIO_ISR);
203 if (!start && isr)
204 return 1;
205 /*
206 * Do not check the PIO state too frequently,
207 * 100us delay is appropriate.
208 */
209 udelay(PIO_WAIT_TIMEOUT);
210 }
211
212 dev_err(pcie->dev, "config read/write timed out\n");
213 return 0;
214}
215
216/**
217 * pcie_advk_check_pio_status() - Validate PIO status and get the read result
218 *
219 * @pcie: Pointer to the PCI bus
220 * @read: Read from or write to configuration space - true(read) false(write)
221 * @read_val: Pointer to the read result, only valid when read is true
222 *
223 */
224static int pcie_advk_check_pio_status(struct pcie_advk *pcie,
225 bool read,
226 uint *read_val)
227{
228 uint reg;
229 unsigned int status;
230 char *strcomp_status, *str_posted;
231
232 reg = advk_readl(pcie, PIO_STAT);
233 status = (reg & PIO_COMPLETION_STATUS_MASK) >>
234 PIO_COMPLETION_STATUS_SHIFT;
235
236 switch (status) {
237 case PIO_COMPLETION_STATUS_OK:
238 if (reg & PIO_ERR_STATUS) {
239 strcomp_status = "COMP_ERR";
240 break;
241 }
242 /* Get the read result */
243 if (read)
244 *read_val = advk_readl(pcie, PIO_RD_DATA);
245 /* No error */
246 strcomp_status = NULL;
247 break;
248 case PIO_COMPLETION_STATUS_UR:
249 if (read) {
250 /* For reading, UR is not an error status. */
251 *read_val = CFG_RD_UR_VAL;
252 strcomp_status = NULL;
253 } else {
254 strcomp_status = "UR";
255 }
256 break;
257 case PIO_COMPLETION_STATUS_CRS:
258 if (read) {
259 /* For reading, CRS is not an error status. */
260 *read_val = CFG_RD_CRS_VAL;
261 strcomp_status = NULL;
262 } else {
263 strcomp_status = "CRS";
264 }
265 break;
266 case PIO_COMPLETION_STATUS_CA:
267 strcomp_status = "CA";
268 break;
269 default:
270 strcomp_status = "Unknown";
271 break;
272 }
273
274 if (!strcomp_status)
275 return 0;
276
277 if (reg & PIO_NON_POSTED_REQ)
278 str_posted = "Non-posted";
279 else
280 str_posted = "Posted";
281
282 dev_err(pcie->dev, "%s PIO Response Status: %s, %#x @ %#x\n",
283 str_posted, strcomp_status, reg,
284 advk_readl(pcie, PIO_ADDR_LS));
285
286 return -EFAULT;
287}
288
289/**
290 * pcie_advk_read_config() - Read from configuration space
291 *
292 * @bus: Pointer to the PCI bus
293 * @bdf: Identifies the PCIe device to access
294 * @offset: The offset into the device's configuration space
295 * @valuep: A pointer at which to store the read value
296 * @size: Indicates the size of access to perform
297 *
298 * Read a value of size @size from offset @offset within the configuration
299 * space of the device identified by the bus, device & function numbers in @bdf
300 * on the PCI bus @bus.
301 *
302 * Return: 0 on success
303 */
Simon Glassc4e72c42020-01-27 08:49:37 -0700304static int pcie_advk_read_config(const struct udevice *bus, pci_dev_t bdf,
Wilson Dinge51f2b12018-03-26 15:57:29 +0800305 uint offset, ulong *valuep,
306 enum pci_size_t size)
307{
308 struct pcie_advk *pcie = dev_get_priv(bus);
309 uint reg;
310 int ret;
311
312 dev_dbg(pcie->dev, "PCIE CFG read: (b,d,f)=(%2d,%2d,%2d) ",
313 PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf));
314
315 if (!pcie_advk_addr_valid(bdf, pcie->first_busno)) {
316 dev_dbg(pcie->dev, "- out of range\n");
317 *valuep = pci_get_ff(size);
318 return 0;
319 }
320
321 /* Start PIO */
322 advk_writel(pcie, 0, PIO_START);
323 advk_writel(pcie, 1, PIO_ISR);
324
325 /* Program the control register */
326 reg = advk_readl(pcie, PIO_CTRL);
327 reg &= ~PIO_CTRL_TYPE_MASK;
328 if (PCI_BUS(bdf) == pcie->first_busno)
329 reg |= PCIE_CONFIG_RD_TYPE0;
330 else
331 reg |= PCIE_CONFIG_RD_TYPE1;
332 advk_writel(pcie, reg, PIO_CTRL);
333
334 /* Program the address registers */
335 reg = PCIE_BDF(bdf) | PCIE_CONF_REG(offset);
336 advk_writel(pcie, reg, PIO_ADDR_LS);
337 advk_writel(pcie, 0, PIO_ADDR_MS);
338
339 /* Start the transfer */
340 advk_writel(pcie, 1, PIO_START);
341
342 if (!pcie_advk_wait_pio(pcie))
343 return -EINVAL;
344
345 /* Check PIO status and get the read result */
346 ret = pcie_advk_check_pio_status(pcie, true, &reg);
347 if (ret)
348 return ret;
349
350 dev_dbg(pcie->dev, "(addr,size,val)=(0x%04x, %d, 0x%08x)\n",
351 offset, size, reg);
352 *valuep = pci_conv_32_to_size(reg, offset, size);
353
354 return 0;
355}
356
357/**
358 * pcie_calc_datastrobe() - Calculate data strobe
359 *
360 * @offset: The offset into the device's configuration space
361 * @size: Indicates the size of access to perform
362 *
363 * Calculate data strobe according to offset and size
364 *
365 */
366static uint pcie_calc_datastrobe(uint offset, enum pci_size_t size)
367{
368 uint bytes, data_strobe;
369
370 switch (size) {
371 case PCI_SIZE_8:
372 bytes = 1;
373 break;
374 case PCI_SIZE_16:
375 bytes = 2;
376 break;
377 default:
378 bytes = 4;
379 }
380
381 data_strobe = GENMASK(bytes - 1, 0) << (offset & 0x3);
382
383 return data_strobe;
384}
385
386/**
387 * pcie_advk_write_config() - Write to configuration space
388 *
389 * @bus: Pointer to the PCI bus
390 * @bdf: Identifies the PCIe device to access
391 * @offset: The offset into the device's configuration space
392 * @value: The value to write
393 * @size: Indicates the size of access to perform
394 *
395 * Write the value @value of size @size from offset @offset within the
396 * configuration space of the device identified by the bus, device & function
397 * numbers in @bdf on the PCI bus @bus.
398 *
399 * Return: 0 on success
400 */
401static int pcie_advk_write_config(struct udevice *bus, pci_dev_t bdf,
402 uint offset, ulong value,
403 enum pci_size_t size)
404{
405 struct pcie_advk *pcie = dev_get_priv(bus);
406 uint reg;
407
408 dev_dbg(pcie->dev, "PCIE CFG write: (b,d,f)=(%2d,%2d,%2d) ",
409 PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf));
410 dev_dbg(pcie->dev, "(addr,size,val)=(0x%04x, %d, 0x%08lx)\n",
411 offset, size, value);
412
413 if (!pcie_advk_addr_valid(bdf, pcie->first_busno)) {
414 dev_dbg(pcie->dev, "- out of range\n");
415 return 0;
416 }
417
418 /* Start PIO */
419 advk_writel(pcie, 0, PIO_START);
420 advk_writel(pcie, 1, PIO_ISR);
421
422 /* Program the control register */
423 reg = advk_readl(pcie, PIO_CTRL);
424 reg &= ~PIO_CTRL_TYPE_MASK;
425 if (PCI_BUS(bdf) == pcie->first_busno)
426 reg |= PCIE_CONFIG_WR_TYPE0;
427 else
428 reg |= PCIE_CONFIG_WR_TYPE1;
429 advk_writel(pcie, reg, PIO_CTRL);
430
431 /* Program the address registers */
432 reg = PCIE_BDF(bdf) | PCIE_CONF_REG(offset);
433 advk_writel(pcie, reg, PIO_ADDR_LS);
434 advk_writel(pcie, 0, PIO_ADDR_MS);
435 dev_dbg(pcie->dev, "\tPIO req. - addr = 0x%08x\n", reg);
436
437 /* Program the data register */
438 reg = pci_conv_size_to_32(0, value, offset, size);
439 advk_writel(pcie, reg, PIO_WR_DATA);
440 dev_dbg(pcie->dev, "\tPIO req. - val = 0x%08x\n", reg);
441
442 /* Program the data strobe */
443 reg = pcie_calc_datastrobe(offset, size);
444 advk_writel(pcie, reg, PIO_WR_DATA_STRB);
445 dev_dbg(pcie->dev, "\tPIO req. - strb = 0x%02x\n", reg);
446
447 /* Start the transfer */
448 advk_writel(pcie, 1, PIO_START);
449
450 if (!pcie_advk_wait_pio(pcie)) {
Wilson Dinge51f2b12018-03-26 15:57:29 +0800451 return -EINVAL;
452 }
453
454 /* Check PIO status */
455 pcie_advk_check_pio_status(pcie, false, &reg);
456
457 return 0;
458}
459
460/**
461 * pcie_advk_link_up() - Check if PCIe link is up or not
462 *
463 * @pcie: The PCI device to access
464 *
465 * Return 1 (true) on link up.
466 * Return 0 (false) on link down.
467 */
468static int pcie_advk_link_up(struct pcie_advk *pcie)
469{
470 u32 val, ltssm_state;
471
472 val = advk_readl(pcie, CFG_REG);
473 ltssm_state = (val >> LTSSM_SHIFT) & LTSSM_MASK;
474 return ltssm_state >= LTSSM_L0;
475}
476
477/**
478 * pcie_advk_wait_for_link() - Wait for link training to be accomplished
479 *
480 * @pcie: The PCI device to access
481 *
482 * Wait up to 1 second for link training to be accomplished.
483 *
484 * Return 1 (true) if link training ends up with link up success.
485 * Return 0 (false) if link training ends up with link up failure.
486 */
487static int pcie_advk_wait_for_link(struct pcie_advk *pcie)
488{
489 int retries;
490
491 /* check if the link is up or not */
492 for (retries = 0; retries < MAX_RETRIES; retries++) {
493 if (pcie_advk_link_up(pcie)) {
494 printf("PCIE-%d: Link up\n", pcie->first_busno);
495 return 0;
496 }
497
498 udelay(LINK_WAIT_TIMEOUT);
499 }
500
501 printf("PCIE-%d: Link down\n", pcie->first_busno);
502
503 return -ETIMEDOUT;
504}
505
506/**
507 * pcie_advk_setup_hw() - PCIe initailzation
508 *
509 * @pcie: The PCI device to access
510 *
511 * Return: 0 on success
512 */
513static int pcie_advk_setup_hw(struct pcie_advk *pcie)
514{
515 u32 reg;
516
517 /* Set to Direct mode */
518 reg = advk_readl(pcie, CTRL_CONFIG_REG);
519 reg &= ~(CTRL_MODE_MASK << CTRL_MODE_SHIFT);
520 reg |= ((PCIE_CORE_MODE_DIRECT & CTRL_MODE_MASK) << CTRL_MODE_SHIFT);
521 advk_writel(pcie, reg, CTRL_CONFIG_REG);
522
523 /* Set PCI global control register to RC mode */
524 reg = advk_readl(pcie, PCIE_CORE_CTRL0_REG);
525 reg |= (IS_RC_MSK << IS_RC_SHIFT);
526 advk_writel(pcie, reg, PCIE_CORE_CTRL0_REG);
527
528 /* Set Advanced Error Capabilities and Control PF0 register */
529 reg = PCIE_CORE_ERR_CAPCTL_ECRC_CHK_TX |
530 PCIE_CORE_ERR_CAPCTL_ECRC_CHK_TX_EN |
531 PCIE_CORE_ERR_CAPCTL_ECRC_CHECK |
532 PCIE_CORE_ERR_CAPCTL_ECRC_CHECK_RCV;
533 advk_writel(pcie, reg, PCIE_CORE_ERR_CAPCTL_REG);
534
535 /* Set PCIe Device Control and Status 1 PF0 register */
536 reg = PCIE_CORE_DEV_CTRL_STATS_RELAX_ORDER_DISABLE |
537 PCIE_CORE_DEV_CTRL_STATS_SNOOP_DISABLE;
538 advk_writel(pcie, reg, PCIE_CORE_DEV_CTRL_STATS_REG);
539
540 /* Program PCIe Control 2 to disable strict ordering */
541 reg = PCIE_CORE_CTRL2_RESERVED |
542 PCIE_CORE_CTRL2_TD_ENABLE;
543 advk_writel(pcie, reg, PCIE_CORE_CTRL2_REG);
544
545 /* Set GEN2 */
546 reg = advk_readl(pcie, PCIE_CORE_CTRL0_REG);
547 reg &= ~PCIE_GEN_SEL_MSK;
548 reg |= SPEED_GEN_2;
549 advk_writel(pcie, reg, PCIE_CORE_CTRL0_REG);
550
551 /* Set lane X1 */
552 reg = advk_readl(pcie, PCIE_CORE_CTRL0_REG);
553 reg &= ~LANE_CNT_MSK;
554 reg |= LANE_COUNT_1;
555 advk_writel(pcie, reg, PCIE_CORE_CTRL0_REG);
556
557 /* Enable link training */
558 reg = advk_readl(pcie, PCIE_CORE_CTRL0_REG);
559 reg |= LINK_TRAINING_EN;
560 advk_writel(pcie, reg, PCIE_CORE_CTRL0_REG);
561
562 /*
563 * Enable AXI address window location generation:
564 * When it is enabled, the default outbound window
565 * configurations (Default User Field: 0xD0074CFC)
566 * are used to transparent address translation for
567 * the outbound transactions. Thus, PCIe address
568 * windows are not required.
569 */
570 reg = advk_readl(pcie, PCIE_CORE_CTRL2_REG);
571 reg |= PCIE_CORE_CTRL2_ADDRWIN_MAP_ENABLE;
572 advk_writel(pcie, reg, PCIE_CORE_CTRL2_REG);
573
574 /*
575 * Bypass the address window mapping for PIO:
576 * Since PIO access already contains all required
577 * info over AXI interface by PIO registers, the
578 * address window is not required.
579 */
580 reg = advk_readl(pcie, PIO_CTRL);
581 reg |= PIO_CTRL_ADDR_WIN_DISABLE;
582 advk_writel(pcie, reg, PIO_CTRL);
583
584 /* Start link training */
585 reg = advk_readl(pcie, PCIE_CORE_LINK_CTRL_STAT_REG);
586 reg |= PCIE_CORE_LINK_TRAINING;
587 advk_writel(pcie, reg, PCIE_CORE_LINK_CTRL_STAT_REG);
588
589 /* Wait for PCIe link up */
590 if (pcie_advk_wait_for_link(pcie))
591 return -ENXIO;
592
593 reg = advk_readl(pcie, PCIE_CORE_CMD_STATUS_REG);
594 reg |= PCIE_CORE_CMD_MEM_ACCESS_EN |
595 PCIE_CORE_CMD_IO_ACCESS_EN |
596 PCIE_CORE_CMD_MEM_IO_REQ_EN;
597 advk_writel(pcie, reg, PCIE_CORE_CMD_STATUS_REG);
598
599 return 0;
600}
601
602/**
603 * pcie_advk_probe() - Probe the PCIe bus for active link
604 *
605 * @dev: A pointer to the device being operated on
606 *
607 * Probe for an active link on the PCIe bus and configure the controller
608 * to enable this port.
609 *
610 * Return: 0 on success, else -ENODEV
611 */
612static int pcie_advk_probe(struct udevice *dev)
613{
614 struct pcie_advk *pcie = dev_get_priv(dev);
615
Pali Rohár828d3262020-08-19 15:57:07 +0200616 gpio_request_by_name(dev, "reset-gpios", 0, &pcie->reset_gpio,
Wilson Dinge51f2b12018-03-26 15:57:29 +0800617 GPIOD_IS_OUT);
618 /*
619 * Issue reset to add-in card through the dedicated GPIO.
620 * Some boards are connecting the card reset pin to common system
621 * reset wire and others are using separate GPIO port.
622 * In the last case we have to release a reset of the addon card
623 * using this GPIO.
624 *
625 * FIX-ME:
626 * The PCIe RESET signal is not supposed to be released along
627 * with the SOC RESET signal. It should be lowered as early as
628 * possible before PCIe PHY initialization. Moreover, the PCIe
629 * clock should be gated as well.
630 */
Pali Rohár828d3262020-08-19 15:57:07 +0200631 if (dm_gpio_is_valid(&pcie->reset_gpio)) {
Pali Rohár279b5732021-01-18 12:09:33 +0100632 dev_dbg(dev, "Toggle PCIE Reset GPIO ...\n");
Pali Rohár828d3262020-08-19 15:57:07 +0200633 dm_gpio_set_value(&pcie->reset_gpio, 1);
Pali Rohár563b85b2020-08-19 15:57:06 +0200634 mdelay(200);
Pali Rohár828d3262020-08-19 15:57:07 +0200635 dm_gpio_set_value(&pcie->reset_gpio, 0);
Pali Rohár835d9692020-08-25 10:45:04 +0200636 } else {
Pali Rohár279b5732021-01-18 12:09:33 +0100637 dev_warn(dev, "PCIE Reset on GPIO support is missing\n");
Wilson Dinge51f2b12018-03-26 15:57:29 +0800638 }
Wilson Dinge51f2b12018-03-26 15:57:29 +0800639
Simon Glass8b85dfc2020-12-16 21:20:07 -0700640 pcie->first_busno = dev_seq(dev);
Wilson Dinge51f2b12018-03-26 15:57:29 +0800641 pcie->dev = pci_get_controller(dev);
642
643 return pcie_advk_setup_hw(pcie);
644}
645
Pali Rohár828d3262020-08-19 15:57:07 +0200646static int pcie_advk_remove(struct udevice *dev)
647{
Pali Rohár828d3262020-08-19 15:57:07 +0200648 struct pcie_advk *pcie = dev_get_priv(dev);
Pali Rohár5f50b882020-09-22 13:21:38 +0200649 u32 reg;
Pali Rohár828d3262020-08-19 15:57:07 +0200650
Pali Rohár5f50b882020-09-22 13:21:38 +0200651 reg = advk_readl(pcie, PCIE_CORE_CTRL0_REG);
652 reg &= ~LINK_TRAINING_EN;
653 advk_writel(pcie, reg, PCIE_CORE_CTRL0_REG);
654
Pali Rohár828d3262020-08-19 15:57:07 +0200655 return 0;
656}
657
Wilson Dinge51f2b12018-03-26 15:57:29 +0800658/**
Simon Glassd1998a92020-12-03 16:55:21 -0700659 * pcie_advk_of_to_plat() - Translate from DT to device state
Wilson Dinge51f2b12018-03-26 15:57:29 +0800660 *
661 * @dev: A pointer to the device being operated on
662 *
663 * Translate relevant data from the device tree pertaining to device @dev into
664 * state that the driver will later make use of. This state is stored in the
665 * device's private data structure.
666 *
667 * Return: 0 on success, else -EINVAL
668 */
Simon Glassd1998a92020-12-03 16:55:21 -0700669static int pcie_advk_of_to_plat(struct udevice *dev)
Wilson Dinge51f2b12018-03-26 15:57:29 +0800670{
671 struct pcie_advk *pcie = dev_get_priv(dev);
672
673 /* Get the register base address */
674 pcie->base = (void *)dev_read_addr_index(dev, 0);
675 if ((fdt_addr_t)pcie->base == FDT_ADDR_T_NONE)
676 return -EINVAL;
677
678 return 0;
679}
680
681static const struct dm_pci_ops pcie_advk_ops = {
682 .read_config = pcie_advk_read_config,
683 .write_config = pcie_advk_write_config,
684};
685
686static const struct udevice_id pcie_advk_ids[] = {
687 { .compatible = "marvell,armada-37xx-pcie" },
688 { }
689};
690
691U_BOOT_DRIVER(pcie_advk) = {
692 .name = "pcie_advk",
693 .id = UCLASS_PCI,
694 .of_match = pcie_advk_ids,
695 .ops = &pcie_advk_ops,
Simon Glassd1998a92020-12-03 16:55:21 -0700696 .of_to_plat = pcie_advk_of_to_plat,
Wilson Dinge51f2b12018-03-26 15:57:29 +0800697 .probe = pcie_advk_probe,
Pali Rohár828d3262020-08-19 15:57:07 +0200698 .remove = pcie_advk_remove,
699 .flags = DM_FLAG_OS_PREPARE,
Simon Glass41575d82020-12-03 16:55:17 -0700700 .priv_auto = sizeof(struct pcie_advk),
Wilson Dinge51f2b12018-03-26 15:57:29 +0800701};