blob: 1b9bae7cca728df7e8547312e5bb433b4dbbfd9e [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)
Pali Rohárcba6edd2021-02-05 15:32:28 +010045#define PCIE_CORE_DEV_CTRL_STATS_MAX_PAYLOAD_SIZE 0x2
46#define PCIE_CORE_DEV_CTRL_STATS_MAX_PAYLOAD_SIZE_SHIFT 5
47#define PCIE_CORE_DEV_CTRL_STATS_MAX_RD_REQ_SIZE 0x2
48#define PCIE_CORE_DEV_CTRL_STATS_MAX_RD_REQ_SIZE_SHIFT 12
Wilson Dinge51f2b12018-03-26 15:57:29 +080049#define PCIE_CORE_LINK_CTRL_STAT_REG 0xd0
50#define PCIE_CORE_LINK_TRAINING BIT(5)
51#define PCIE_CORE_ERR_CAPCTL_REG 0x118
52#define PCIE_CORE_ERR_CAPCTL_ECRC_CHK_TX BIT(5)
53#define PCIE_CORE_ERR_CAPCTL_ECRC_CHK_TX_EN BIT(6)
54#define PCIE_CORE_ERR_CAPCTL_ECRC_CHECK BIT(7)
55#define PCIE_CORE_ERR_CAPCTL_ECRC_CHECK_RCV BIT(8)
56
57/* PIO registers base address and register offsets */
58#define PIO_BASE_ADDR 0x4000
59#define PIO_CTRL (PIO_BASE_ADDR + 0x0)
60#define PIO_CTRL_TYPE_MASK GENMASK(3, 0)
61#define PIO_CTRL_ADDR_WIN_DISABLE BIT(24)
62#define PIO_STAT (PIO_BASE_ADDR + 0x4)
63#define PIO_COMPLETION_STATUS_SHIFT 7
64#define PIO_COMPLETION_STATUS_MASK GENMASK(9, 7)
65#define PIO_COMPLETION_STATUS_OK 0
66#define PIO_COMPLETION_STATUS_UR 1
67#define PIO_COMPLETION_STATUS_CRS 2
68#define PIO_COMPLETION_STATUS_CA 4
69#define PIO_NON_POSTED_REQ BIT(10)
70#define PIO_ERR_STATUS BIT(11)
71#define PIO_ADDR_LS (PIO_BASE_ADDR + 0x8)
72#define PIO_ADDR_MS (PIO_BASE_ADDR + 0xc)
73#define PIO_WR_DATA (PIO_BASE_ADDR + 0x10)
74#define PIO_WR_DATA_STRB (PIO_BASE_ADDR + 0x14)
75#define PIO_RD_DATA (PIO_BASE_ADDR + 0x18)
76#define PIO_START (PIO_BASE_ADDR + 0x1c)
77#define PIO_ISR (PIO_BASE_ADDR + 0x20)
78
79/* Aardvark Control registers */
80#define CONTROL_BASE_ADDR 0x4800
81#define PCIE_CORE_CTRL0_REG (CONTROL_BASE_ADDR + 0x0)
82#define PCIE_GEN_SEL_MSK 0x3
83#define PCIE_GEN_SEL_SHIFT 0x0
84#define SPEED_GEN_1 0
85#define SPEED_GEN_2 1
86#define SPEED_GEN_3 2
87#define IS_RC_MSK 1
88#define IS_RC_SHIFT 2
89#define LANE_CNT_MSK 0x18
90#define LANE_CNT_SHIFT 0x3
91#define LANE_COUNT_1 (0 << LANE_CNT_SHIFT)
92#define LANE_COUNT_2 (1 << LANE_CNT_SHIFT)
93#define LANE_COUNT_4 (2 << LANE_CNT_SHIFT)
94#define LANE_COUNT_8 (3 << LANE_CNT_SHIFT)
95#define LINK_TRAINING_EN BIT(6)
96#define PCIE_CORE_CTRL2_REG (CONTROL_BASE_ADDR + 0x8)
97#define PCIE_CORE_CTRL2_RESERVED 0x7
98#define PCIE_CORE_CTRL2_TD_ENABLE BIT(4)
99#define PCIE_CORE_CTRL2_STRICT_ORDER_ENABLE BIT(5)
100#define PCIE_CORE_CTRL2_ADDRWIN_MAP_ENABLE BIT(6)
101
Pali Rohárb3217222021-05-26 17:59:40 +0200102/* PCIe window configuration */
103#define OB_WIN_BASE_ADDR 0x4c00
104#define OB_WIN_BLOCK_SIZE 0x20
105#define OB_WIN_COUNT 8
106#define OB_WIN_REG_ADDR(win, offset) (OB_WIN_BASE_ADDR + \
107 OB_WIN_BLOCK_SIZE * (win) + \
108 (offset))
109#define OB_WIN_MATCH_LS(win) OB_WIN_REG_ADDR(win, 0x00)
110#define OB_WIN_ENABLE BIT(0)
111#define OB_WIN_MATCH_MS(win) OB_WIN_REG_ADDR(win, 0x04)
112#define OB_WIN_REMAP_LS(win) OB_WIN_REG_ADDR(win, 0x08)
113#define OB_WIN_REMAP_MS(win) OB_WIN_REG_ADDR(win, 0x0c)
114#define OB_WIN_MASK_LS(win) OB_WIN_REG_ADDR(win, 0x10)
115#define OB_WIN_MASK_MS(win) OB_WIN_REG_ADDR(win, 0x14)
116#define OB_WIN_ACTIONS(win) OB_WIN_REG_ADDR(win, 0x18)
117#define OB_WIN_DEFAULT_ACTIONS (OB_WIN_ACTIONS(OB_WIN_COUNT-1) + 0x4)
118#define OB_WIN_FUNC_NUM_MASK GENMASK(31, 24)
119#define OB_WIN_FUNC_NUM_SHIFT 24
120#define OB_WIN_FUNC_NUM_ENABLE BIT(23)
121#define OB_WIN_BUS_NUM_BITS_MASK GENMASK(22, 20)
122#define OB_WIN_BUS_NUM_BITS_SHIFT 20
123#define OB_WIN_MSG_CODE_ENABLE BIT(22)
124#define OB_WIN_MSG_CODE_MASK GENMASK(21, 14)
125#define OB_WIN_MSG_CODE_SHIFT 14
126#define OB_WIN_MSG_PAYLOAD_LEN BIT(12)
127#define OB_WIN_ATTR_ENABLE BIT(11)
128#define OB_WIN_ATTR_TC_MASK GENMASK(10, 8)
129#define OB_WIN_ATTR_TC_SHIFT 8
130#define OB_WIN_ATTR_RELAXED BIT(7)
131#define OB_WIN_ATTR_NOSNOOP BIT(6)
132#define OB_WIN_ATTR_POISON BIT(5)
133#define OB_WIN_ATTR_IDO BIT(4)
134#define OB_WIN_TYPE_MASK GENMASK(3, 0)
135#define OB_WIN_TYPE_SHIFT 0
136#define OB_WIN_TYPE_MEM 0x0
137#define OB_WIN_TYPE_IO 0x4
138#define OB_WIN_TYPE_CONFIG_TYPE0 0x8
139#define OB_WIN_TYPE_CONFIG_TYPE1 0x9
140#define OB_WIN_TYPE_MSG 0xc
141
Wilson Dinge51f2b12018-03-26 15:57:29 +0800142/* LMI registers base address and register offsets */
143#define LMI_BASE_ADDR 0x6000
144#define CFG_REG (LMI_BASE_ADDR + 0x0)
145#define LTSSM_SHIFT 24
146#define LTSSM_MASK 0x3f
147#define LTSSM_L0 0x10
Pali Rohár2fa30d02021-03-03 14:37:59 +0100148#define VENDOR_ID_REG (LMI_BASE_ADDR + 0x44)
Wilson Dinge51f2b12018-03-26 15:57:29 +0800149
150/* PCIe core controller registers */
151#define CTRL_CORE_BASE_ADDR 0x18000
152#define CTRL_CONFIG_REG (CTRL_CORE_BASE_ADDR + 0x0)
153#define CTRL_MODE_SHIFT 0x0
154#define CTRL_MODE_MASK 0x1
155#define PCIE_CORE_MODE_DIRECT 0x0
156#define PCIE_CORE_MODE_COMMAND 0x1
157
158/* Transaction types */
159#define PCIE_CONFIG_RD_TYPE0 0x8
160#define PCIE_CONFIG_RD_TYPE1 0x9
161#define PCIE_CONFIG_WR_TYPE0 0xa
162#define PCIE_CONFIG_WR_TYPE1 0xb
163
164/* PCI_BDF shifts 8bit, so we need extra 4bit shift */
165#define PCIE_BDF(dev) (dev << 4)
166#define PCIE_CONF_BUS(bus) (((bus) & 0xff) << 20)
167#define PCIE_CONF_DEV(dev) (((dev) & 0x1f) << 15)
168#define PCIE_CONF_FUNC(fun) (((fun) & 0x7) << 12)
169#define PCIE_CONF_REG(reg) ((reg) & 0xffc)
170#define PCIE_CONF_ADDR(bus, devfn, where) \
171 (PCIE_CONF_BUS(bus) | PCIE_CONF_DEV(PCI_SLOT(devfn)) | \
172 PCIE_CONF_FUNC(PCI_FUNC(devfn)) | PCIE_CONF_REG(where))
173
174/* PCIe Retries & Timeout definitions */
Pali Roháreccbd4a2021-04-22 16:23:04 +0200175#define PIO_MAX_RETRIES 1500
176#define PIO_WAIT_TIMEOUT 1000
177#define LINK_MAX_RETRIES 10
Wilson Dinge51f2b12018-03-26 15:57:29 +0800178#define LINK_WAIT_TIMEOUT 100000
179
180#define CFG_RD_UR_VAL 0xFFFFFFFF
181#define CFG_RD_CRS_VAL 0xFFFF0001
182
Wilson Dinge51f2b12018-03-26 15:57:29 +0800183/**
184 * struct pcie_advk - Advk PCIe controller state
185 *
186 * @reg_base: The base address of the register space.
187 * @first_busno: This driver supports multiple PCIe controllers.
188 * first_busno stores the bus number of the PCIe root-port
189 * number which may vary depending on the PCIe setup
190 * (PEX switches etc).
191 * @device: The pointer to PCI uclass device.
192 */
193struct pcie_advk {
194 void *base;
195 int first_busno;
196 struct udevice *dev;
Pali Rohár828d3262020-08-19 15:57:07 +0200197 struct gpio_desc reset_gpio;
Wilson Dinge51f2b12018-03-26 15:57:29 +0800198};
199
200static inline void advk_writel(struct pcie_advk *pcie, uint val, uint reg)
201{
202 writel(val, pcie->base + reg);
203}
204
205static inline uint advk_readl(struct pcie_advk *pcie, uint reg)
206{
207 return readl(pcie->base + reg);
208}
209
210/**
211 * pcie_advk_addr_valid() - Check for valid bus address
212 *
213 * @bdf: The PCI device to access
214 * @first_busno: Bus number of the PCIe controller root complex
215 *
216 * Return: 1 on valid, 0 on invalid
217 */
218static int pcie_advk_addr_valid(pci_dev_t bdf, int first_busno)
219{
220 /*
221 * In PCIE-E only a single device (0) can exist
222 * on the local bus. Beyound the local bus, there might be
223 * a Switch and everything is possible.
224 */
225 if ((PCI_BUS(bdf) == first_busno) && (PCI_DEV(bdf) > 0))
226 return 0;
227
228 return 1;
229}
230
231/**
232 * pcie_advk_wait_pio() - Wait for PIO access to be accomplished
233 *
234 * @pcie: The PCI device to access
235 *
Pali Roháreccbd4a2021-04-22 16:23:04 +0200236 * Wait up to 1.5 seconds for PIO access to be accomplished.
Wilson Dinge51f2b12018-03-26 15:57:29 +0800237 *
238 * Return 1 (true) if PIO access is accomplished.
239 * Return 0 (false) if PIO access is timed out.
240 */
241static int pcie_advk_wait_pio(struct pcie_advk *pcie)
242{
243 uint start, isr;
244 uint count;
245
Pali Roháreccbd4a2021-04-22 16:23:04 +0200246 for (count = 0; count < PIO_MAX_RETRIES; count++) {
Wilson Dinge51f2b12018-03-26 15:57:29 +0800247 start = advk_readl(pcie, PIO_START);
248 isr = advk_readl(pcie, PIO_ISR);
249 if (!start && isr)
250 return 1;
251 /*
252 * Do not check the PIO state too frequently,
253 * 100us delay is appropriate.
254 */
255 udelay(PIO_WAIT_TIMEOUT);
256 }
257
Pali Roháreccbd4a2021-04-22 16:23:04 +0200258 dev_err(pcie->dev, "PIO read/write transfer time out\n");
Wilson Dinge51f2b12018-03-26 15:57:29 +0800259 return 0;
260}
261
262/**
263 * pcie_advk_check_pio_status() - Validate PIO status and get the read result
264 *
265 * @pcie: Pointer to the PCI bus
266 * @read: Read from or write to configuration space - true(read) false(write)
267 * @read_val: Pointer to the read result, only valid when read is true
268 *
269 */
270static int pcie_advk_check_pio_status(struct pcie_advk *pcie,
271 bool read,
272 uint *read_val)
273{
274 uint reg;
275 unsigned int status;
276 char *strcomp_status, *str_posted;
277
278 reg = advk_readl(pcie, PIO_STAT);
279 status = (reg & PIO_COMPLETION_STATUS_MASK) >>
280 PIO_COMPLETION_STATUS_SHIFT;
281
282 switch (status) {
283 case PIO_COMPLETION_STATUS_OK:
284 if (reg & PIO_ERR_STATUS) {
285 strcomp_status = "COMP_ERR";
286 break;
287 }
288 /* Get the read result */
289 if (read)
290 *read_val = advk_readl(pcie, PIO_RD_DATA);
291 /* No error */
292 strcomp_status = NULL;
293 break;
294 case PIO_COMPLETION_STATUS_UR:
295 if (read) {
296 /* For reading, UR is not an error status. */
297 *read_val = CFG_RD_UR_VAL;
298 strcomp_status = NULL;
299 } else {
300 strcomp_status = "UR";
301 }
302 break;
303 case PIO_COMPLETION_STATUS_CRS:
304 if (read) {
305 /* For reading, CRS is not an error status. */
306 *read_val = CFG_RD_CRS_VAL;
307 strcomp_status = NULL;
308 } else {
309 strcomp_status = "CRS";
310 }
311 break;
312 case PIO_COMPLETION_STATUS_CA:
313 strcomp_status = "CA";
314 break;
315 default:
316 strcomp_status = "Unknown";
317 break;
318 }
319
320 if (!strcomp_status)
321 return 0;
322
323 if (reg & PIO_NON_POSTED_REQ)
324 str_posted = "Non-posted";
325 else
326 str_posted = "Posted";
327
328 dev_err(pcie->dev, "%s PIO Response Status: %s, %#x @ %#x\n",
329 str_posted, strcomp_status, reg,
330 advk_readl(pcie, PIO_ADDR_LS));
331
332 return -EFAULT;
333}
334
335/**
336 * pcie_advk_read_config() - Read from configuration space
337 *
338 * @bus: Pointer to the PCI bus
339 * @bdf: Identifies the PCIe device to access
340 * @offset: The offset into the device's configuration space
341 * @valuep: A pointer at which to store the read value
342 * @size: Indicates the size of access to perform
343 *
344 * Read a value of size @size from offset @offset within the configuration
345 * space of the device identified by the bus, device & function numbers in @bdf
346 * on the PCI bus @bus.
347 *
348 * Return: 0 on success
349 */
Simon Glassc4e72c42020-01-27 08:49:37 -0700350static int pcie_advk_read_config(const struct udevice *bus, pci_dev_t bdf,
Wilson Dinge51f2b12018-03-26 15:57:29 +0800351 uint offset, ulong *valuep,
352 enum pci_size_t size)
353{
354 struct pcie_advk *pcie = dev_get_priv(bus);
355 uint reg;
356 int ret;
357
358 dev_dbg(pcie->dev, "PCIE CFG read: (b,d,f)=(%2d,%2d,%2d) ",
359 PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf));
360
361 if (!pcie_advk_addr_valid(bdf, pcie->first_busno)) {
362 dev_dbg(pcie->dev, "- out of range\n");
363 *valuep = pci_get_ff(size);
364 return 0;
365 }
366
Pali Roháreccbd4a2021-04-22 16:23:04 +0200367 if (advk_readl(pcie, PIO_START)) {
368 dev_err(pcie->dev,
369 "Previous PIO read/write transfer is still running\n");
370 if (offset != PCI_VENDOR_ID)
371 return -EINVAL;
372 *valuep = CFG_RD_CRS_VAL;
373 return 0;
374 }
Wilson Dinge51f2b12018-03-26 15:57:29 +0800375
376 /* Program the control register */
377 reg = advk_readl(pcie, PIO_CTRL);
378 reg &= ~PIO_CTRL_TYPE_MASK;
379 if (PCI_BUS(bdf) == pcie->first_busno)
380 reg |= PCIE_CONFIG_RD_TYPE0;
381 else
382 reg |= PCIE_CONFIG_RD_TYPE1;
383 advk_writel(pcie, reg, PIO_CTRL);
384
385 /* Program the address registers */
386 reg = PCIE_BDF(bdf) | PCIE_CONF_REG(offset);
387 advk_writel(pcie, reg, PIO_ADDR_LS);
388 advk_writel(pcie, 0, PIO_ADDR_MS);
389
390 /* Start the transfer */
Pali Roháreccbd4a2021-04-22 16:23:04 +0200391 advk_writel(pcie, 1, PIO_ISR);
Wilson Dinge51f2b12018-03-26 15:57:29 +0800392 advk_writel(pcie, 1, PIO_START);
393
Pali Roháreccbd4a2021-04-22 16:23:04 +0200394 if (!pcie_advk_wait_pio(pcie)) {
395 if (offset != PCI_VENDOR_ID)
396 return -EINVAL;
397 *valuep = CFG_RD_CRS_VAL;
398 return 0;
399 }
Wilson Dinge51f2b12018-03-26 15:57:29 +0800400
401 /* Check PIO status and get the read result */
402 ret = pcie_advk_check_pio_status(pcie, true, &reg);
403 if (ret)
404 return ret;
405
406 dev_dbg(pcie->dev, "(addr,size,val)=(0x%04x, %d, 0x%08x)\n",
407 offset, size, reg);
408 *valuep = pci_conv_32_to_size(reg, offset, size);
409
410 return 0;
411}
412
413/**
414 * pcie_calc_datastrobe() - Calculate data strobe
415 *
416 * @offset: The offset into the device's configuration space
417 * @size: Indicates the size of access to perform
418 *
419 * Calculate data strobe according to offset and size
420 *
421 */
422static uint pcie_calc_datastrobe(uint offset, enum pci_size_t size)
423{
424 uint bytes, data_strobe;
425
426 switch (size) {
427 case PCI_SIZE_8:
428 bytes = 1;
429 break;
430 case PCI_SIZE_16:
431 bytes = 2;
432 break;
433 default:
434 bytes = 4;
435 }
436
437 data_strobe = GENMASK(bytes - 1, 0) << (offset & 0x3);
438
439 return data_strobe;
440}
441
442/**
443 * pcie_advk_write_config() - Write to configuration space
444 *
445 * @bus: Pointer to the PCI bus
446 * @bdf: Identifies the PCIe device to access
447 * @offset: The offset into the device's configuration space
448 * @value: The value to write
449 * @size: Indicates the size of access to perform
450 *
451 * Write the value @value of size @size from offset @offset within the
452 * configuration space of the device identified by the bus, device & function
453 * numbers in @bdf on the PCI bus @bus.
454 *
455 * Return: 0 on success
456 */
457static int pcie_advk_write_config(struct udevice *bus, pci_dev_t bdf,
458 uint offset, ulong value,
459 enum pci_size_t size)
460{
461 struct pcie_advk *pcie = dev_get_priv(bus);
462 uint reg;
463
464 dev_dbg(pcie->dev, "PCIE CFG write: (b,d,f)=(%2d,%2d,%2d) ",
465 PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf));
466 dev_dbg(pcie->dev, "(addr,size,val)=(0x%04x, %d, 0x%08lx)\n",
467 offset, size, value);
468
469 if (!pcie_advk_addr_valid(bdf, pcie->first_busno)) {
470 dev_dbg(pcie->dev, "- out of range\n");
471 return 0;
472 }
473
Pali Roháreccbd4a2021-04-22 16:23:04 +0200474 if (advk_readl(pcie, PIO_START)) {
475 dev_err(pcie->dev,
476 "Previous PIO read/write transfer is still running\n");
477 return -EINVAL;
478 }
Wilson Dinge51f2b12018-03-26 15:57:29 +0800479
480 /* Program the control register */
481 reg = advk_readl(pcie, PIO_CTRL);
482 reg &= ~PIO_CTRL_TYPE_MASK;
483 if (PCI_BUS(bdf) == pcie->first_busno)
484 reg |= PCIE_CONFIG_WR_TYPE0;
485 else
486 reg |= PCIE_CONFIG_WR_TYPE1;
487 advk_writel(pcie, reg, PIO_CTRL);
488
489 /* Program the address registers */
490 reg = PCIE_BDF(bdf) | PCIE_CONF_REG(offset);
491 advk_writel(pcie, reg, PIO_ADDR_LS);
492 advk_writel(pcie, 0, PIO_ADDR_MS);
493 dev_dbg(pcie->dev, "\tPIO req. - addr = 0x%08x\n", reg);
494
495 /* Program the data register */
496 reg = pci_conv_size_to_32(0, value, offset, size);
497 advk_writel(pcie, reg, PIO_WR_DATA);
498 dev_dbg(pcie->dev, "\tPIO req. - val = 0x%08x\n", reg);
499
500 /* Program the data strobe */
501 reg = pcie_calc_datastrobe(offset, size);
502 advk_writel(pcie, reg, PIO_WR_DATA_STRB);
503 dev_dbg(pcie->dev, "\tPIO req. - strb = 0x%02x\n", reg);
504
505 /* Start the transfer */
Pali Roháreccbd4a2021-04-22 16:23:04 +0200506 advk_writel(pcie, 1, PIO_ISR);
Wilson Dinge51f2b12018-03-26 15:57:29 +0800507 advk_writel(pcie, 1, PIO_START);
508
509 if (!pcie_advk_wait_pio(pcie)) {
Wilson Dinge51f2b12018-03-26 15:57:29 +0800510 return -EINVAL;
511 }
512
513 /* Check PIO status */
514 pcie_advk_check_pio_status(pcie, false, &reg);
515
516 return 0;
517}
518
519/**
520 * pcie_advk_link_up() - Check if PCIe link is up or not
521 *
522 * @pcie: The PCI device to access
523 *
524 * Return 1 (true) on link up.
525 * Return 0 (false) on link down.
526 */
527static int pcie_advk_link_up(struct pcie_advk *pcie)
528{
529 u32 val, ltssm_state;
530
531 val = advk_readl(pcie, CFG_REG);
532 ltssm_state = (val >> LTSSM_SHIFT) & LTSSM_MASK;
533 return ltssm_state >= LTSSM_L0;
534}
535
536/**
537 * pcie_advk_wait_for_link() - Wait for link training to be accomplished
538 *
539 * @pcie: The PCI device to access
540 *
541 * Wait up to 1 second for link training to be accomplished.
542 *
543 * Return 1 (true) if link training ends up with link up success.
544 * Return 0 (false) if link training ends up with link up failure.
545 */
546static int pcie_advk_wait_for_link(struct pcie_advk *pcie)
547{
548 int retries;
549
550 /* check if the link is up or not */
Pali Roháreccbd4a2021-04-22 16:23:04 +0200551 for (retries = 0; retries < LINK_MAX_RETRIES; retries++) {
Wilson Dinge51f2b12018-03-26 15:57:29 +0800552 if (pcie_advk_link_up(pcie)) {
553 printf("PCIE-%d: Link up\n", pcie->first_busno);
554 return 0;
555 }
556
557 udelay(LINK_WAIT_TIMEOUT);
558 }
559
560 printf("PCIE-%d: Link down\n", pcie->first_busno);
561
562 return -ETIMEDOUT;
563}
564
Pali Rohárb3217222021-05-26 17:59:40 +0200565/*
566 * Set PCIe address window register which could be used for memory
567 * mapping.
568 */
569static void pcie_advk_set_ob_win(struct pcie_advk *pcie, u8 win_num,
570 phys_addr_t match, phys_addr_t remap,
571 phys_addr_t mask, u32 actions)
572{
573 advk_writel(pcie, OB_WIN_ENABLE |
574 lower_32_bits(match), OB_WIN_MATCH_LS(win_num));
575 advk_writel(pcie, upper_32_bits(match), OB_WIN_MATCH_MS(win_num));
576 advk_writel(pcie, lower_32_bits(remap), OB_WIN_REMAP_LS(win_num));
577 advk_writel(pcie, upper_32_bits(remap), OB_WIN_REMAP_MS(win_num));
578 advk_writel(pcie, lower_32_bits(mask), OB_WIN_MASK_LS(win_num));
579 advk_writel(pcie, upper_32_bits(mask), OB_WIN_MASK_MS(win_num));
580 advk_writel(pcie, actions, OB_WIN_ACTIONS(win_num));
581}
582
583static void pcie_advk_disable_ob_win(struct pcie_advk *pcie, u8 win_num)
584{
585 advk_writel(pcie, 0, OB_WIN_MATCH_LS(win_num));
586 advk_writel(pcie, 0, OB_WIN_MATCH_MS(win_num));
587 advk_writel(pcie, 0, OB_WIN_REMAP_LS(win_num));
588 advk_writel(pcie, 0, OB_WIN_REMAP_MS(win_num));
589 advk_writel(pcie, 0, OB_WIN_MASK_LS(win_num));
590 advk_writel(pcie, 0, OB_WIN_MASK_MS(win_num));
591 advk_writel(pcie, 0, OB_WIN_ACTIONS(win_num));
592}
593
594static void pcie_advk_set_ob_region(struct pcie_advk *pcie, int *wins,
595 struct pci_region *region, u32 actions)
596{
597 phys_addr_t phys_start = region->phys_start;
598 pci_addr_t bus_start = region->bus_start;
599 pci_size_t size = region->size;
600 phys_addr_t win_mask;
601 u64 win_size;
602
603 if (*wins == -1)
604 return;
605
606 /*
607 * The n-th PCIe window is configured by tuple (match, remap, mask)
Pali Rohár960d4592021-07-08 20:19:00 +0200608 * and an access to address A uses this window if A matches the
Pali Rohárb3217222021-05-26 17:59:40 +0200609 * match with given mask.
610 * So every PCIe window size must be a power of two and every start
611 * address must be aligned to window size. Minimal size is 64 KiB
Pali Rohára8314952021-07-08 20:18:58 +0200612 * because lower 16 bits of mask must be zero. Remapped address
613 * may have set only bits from the mask.
Pali Rohárb3217222021-05-26 17:59:40 +0200614 */
615 while (*wins < OB_WIN_COUNT && size > 0) {
616 /* Calculate the largest aligned window size */
617 win_size = (1ULL << (fls64(size) - 1)) |
618 (phys_start ? (1ULL << __ffs64(phys_start)) : 0);
619 win_size = 1ULL << __ffs64(win_size);
Pali Rohára8314952021-07-08 20:18:58 +0200620 win_mask = ~(win_size - 1);
621 if (win_size < 0x10000 || (bus_start & ~win_mask))
Pali Rohárb3217222021-05-26 17:59:40 +0200622 break;
623
624 dev_dbg(pcie->dev,
625 "Configuring PCIe window %d: [0x%llx-0x%llx] as 0x%x\n",
626 *wins, (u64)phys_start, (u64)phys_start + win_size,
627 actions);
Pali Rohárb3217222021-05-26 17:59:40 +0200628 pcie_advk_set_ob_win(pcie, *wins, phys_start, bus_start,
629 win_mask, actions);
630
631 phys_start += win_size;
632 bus_start += win_size;
633 size -= win_size;
634 (*wins)++;
635 }
636
637 if (size > 0) {
638 *wins = -1;
639 dev_err(pcie->dev,
640 "Invalid PCIe region [0x%llx-0x%llx]\n",
641 (u64)region->phys_start,
642 (u64)region->phys_start + region->size);
643 }
644}
645
Wilson Dinge51f2b12018-03-26 15:57:29 +0800646/**
647 * pcie_advk_setup_hw() - PCIe initailzation
648 *
649 * @pcie: The PCI device to access
650 *
651 * Return: 0 on success
652 */
653static int pcie_advk_setup_hw(struct pcie_advk *pcie)
654{
Pali Rohárb3217222021-05-26 17:59:40 +0200655 struct pci_region *io, *mem, *pref;
656 int i, wins;
Wilson Dinge51f2b12018-03-26 15:57:29 +0800657 u32 reg;
658
659 /* Set to Direct mode */
660 reg = advk_readl(pcie, CTRL_CONFIG_REG);
661 reg &= ~(CTRL_MODE_MASK << CTRL_MODE_SHIFT);
662 reg |= ((PCIE_CORE_MODE_DIRECT & CTRL_MODE_MASK) << CTRL_MODE_SHIFT);
663 advk_writel(pcie, reg, CTRL_CONFIG_REG);
664
665 /* Set PCI global control register to RC mode */
666 reg = advk_readl(pcie, PCIE_CORE_CTRL0_REG);
667 reg |= (IS_RC_MSK << IS_RC_SHIFT);
668 advk_writel(pcie, reg, PCIE_CORE_CTRL0_REG);
669
Pali Rohár2fa30d02021-03-03 14:37:59 +0100670 /*
671 * Replace incorrect PCI vendor id value 0x1b4b by correct value 0x11ab.
672 * VENDOR_ID_REG contains vendor id in low 16 bits and subsystem vendor
673 * id in high 16 bits. Updating this register changes readback value of
674 * read-only vendor id bits in PCIE_CORE_DEV_ID_REG register. Workaround
675 * for erratum 4.1: "The value of device and vendor ID is incorrect".
676 */
677 advk_writel(pcie, 0x11ab11ab, VENDOR_ID_REG);
678
Wilson Dinge51f2b12018-03-26 15:57:29 +0800679 /* Set Advanced Error Capabilities and Control PF0 register */
680 reg = PCIE_CORE_ERR_CAPCTL_ECRC_CHK_TX |
681 PCIE_CORE_ERR_CAPCTL_ECRC_CHK_TX_EN |
682 PCIE_CORE_ERR_CAPCTL_ECRC_CHECK |
683 PCIE_CORE_ERR_CAPCTL_ECRC_CHECK_RCV;
684 advk_writel(pcie, reg, PCIE_CORE_ERR_CAPCTL_REG);
685
686 /* Set PCIe Device Control and Status 1 PF0 register */
687 reg = PCIE_CORE_DEV_CTRL_STATS_RELAX_ORDER_DISABLE |
Pali Rohárcba6edd2021-02-05 15:32:28 +0100688 (PCIE_CORE_DEV_CTRL_STATS_MAX_PAYLOAD_SIZE <<
689 PCIE_CORE_DEV_CTRL_STATS_MAX_PAYLOAD_SIZE_SHIFT) |
690 (PCIE_CORE_DEV_CTRL_STATS_MAX_RD_REQ_SIZE <<
691 PCIE_CORE_DEV_CTRL_STATS_MAX_RD_REQ_SIZE_SHIFT) |
Wilson Dinge51f2b12018-03-26 15:57:29 +0800692 PCIE_CORE_DEV_CTRL_STATS_SNOOP_DISABLE;
693 advk_writel(pcie, reg, PCIE_CORE_DEV_CTRL_STATS_REG);
694
695 /* Program PCIe Control 2 to disable strict ordering */
696 reg = PCIE_CORE_CTRL2_RESERVED |
697 PCIE_CORE_CTRL2_TD_ENABLE;
698 advk_writel(pcie, reg, PCIE_CORE_CTRL2_REG);
699
700 /* Set GEN2 */
701 reg = advk_readl(pcie, PCIE_CORE_CTRL0_REG);
702 reg &= ~PCIE_GEN_SEL_MSK;
703 reg |= SPEED_GEN_2;
704 advk_writel(pcie, reg, PCIE_CORE_CTRL0_REG);
705
706 /* Set lane X1 */
707 reg = advk_readl(pcie, PCIE_CORE_CTRL0_REG);
708 reg &= ~LANE_CNT_MSK;
709 reg |= LANE_COUNT_1;
710 advk_writel(pcie, reg, PCIE_CORE_CTRL0_REG);
711
712 /* Enable link training */
713 reg = advk_readl(pcie, PCIE_CORE_CTRL0_REG);
714 reg |= LINK_TRAINING_EN;
715 advk_writel(pcie, reg, PCIE_CORE_CTRL0_REG);
716
717 /*
718 * Enable AXI address window location generation:
719 * When it is enabled, the default outbound window
720 * configurations (Default User Field: 0xD0074CFC)
721 * are used to transparent address translation for
722 * the outbound transactions. Thus, PCIe address
Pali Rohárb3217222021-05-26 17:59:40 +0200723 * windows are not required for transparent memory
724 * access when default outbound window configuration
725 * is set for memory access.
Wilson Dinge51f2b12018-03-26 15:57:29 +0800726 */
727 reg = advk_readl(pcie, PCIE_CORE_CTRL2_REG);
728 reg |= PCIE_CORE_CTRL2_ADDRWIN_MAP_ENABLE;
729 advk_writel(pcie, reg, PCIE_CORE_CTRL2_REG);
730
731 /*
732 * Bypass the address window mapping for PIO:
733 * Since PIO access already contains all required
734 * info over AXI interface by PIO registers, the
735 * address window is not required.
736 */
737 reg = advk_readl(pcie, PIO_CTRL);
738 reg |= PIO_CTRL_ADDR_WIN_DISABLE;
739 advk_writel(pcie, reg, PIO_CTRL);
740
Pali Rohárb3217222021-05-26 17:59:40 +0200741 /*
742 * Set memory access in Default User Field so it
743 * is not required to configure PCIe address for
744 * transparent memory access.
745 */
746 advk_writel(pcie, OB_WIN_TYPE_MEM, OB_WIN_DEFAULT_ACTIONS);
747
748 /*
749 * Configure PCIe address windows for non-memory or
750 * non-transparent access as by default PCIe uses
751 * transparent memory access.
752 */
753 wins = 0;
754 pci_get_regions(pcie->dev, &io, &mem, &pref);
755 if (io)
756 pcie_advk_set_ob_region(pcie, &wins, io, OB_WIN_TYPE_IO);
757 if (mem && mem->phys_start != mem->bus_start)
758 pcie_advk_set_ob_region(pcie, &wins, mem, OB_WIN_TYPE_MEM);
759 if (pref && pref->phys_start != pref->bus_start)
760 pcie_advk_set_ob_region(pcie, &wins, pref, OB_WIN_TYPE_MEM);
761
762 /* Disable remaining PCIe outbound windows */
763 for (i = ((wins >= 0) ? wins : 0); i < OB_WIN_COUNT; i++)
764 pcie_advk_disable_ob_win(pcie, i);
765
766 if (wins == -1)
767 return -EINVAL;
768
Wilson Dinge51f2b12018-03-26 15:57:29 +0800769 /* Wait for PCIe link up */
770 if (pcie_advk_wait_for_link(pcie))
771 return -ENXIO;
772
773 reg = advk_readl(pcie, PCIE_CORE_CMD_STATUS_REG);
774 reg |= PCIE_CORE_CMD_MEM_ACCESS_EN |
775 PCIE_CORE_CMD_IO_ACCESS_EN |
776 PCIE_CORE_CMD_MEM_IO_REQ_EN;
777 advk_writel(pcie, reg, PCIE_CORE_CMD_STATUS_REG);
778
779 return 0;
780}
781
782/**
783 * pcie_advk_probe() - Probe the PCIe bus for active link
784 *
785 * @dev: A pointer to the device being operated on
786 *
787 * Probe for an active link on the PCIe bus and configure the controller
788 * to enable this port.
789 *
790 * Return: 0 on success, else -ENODEV
791 */
792static int pcie_advk_probe(struct udevice *dev)
793{
794 struct pcie_advk *pcie = dev_get_priv(dev);
795
Pali Rohár828d3262020-08-19 15:57:07 +0200796 gpio_request_by_name(dev, "reset-gpios", 0, &pcie->reset_gpio,
Wilson Dinge51f2b12018-03-26 15:57:29 +0800797 GPIOD_IS_OUT);
798 /*
799 * Issue reset to add-in card through the dedicated GPIO.
800 * Some boards are connecting the card reset pin to common system
801 * reset wire and others are using separate GPIO port.
802 * In the last case we have to release a reset of the addon card
803 * using this GPIO.
804 *
805 * FIX-ME:
806 * The PCIe RESET signal is not supposed to be released along
807 * with the SOC RESET signal. It should be lowered as early as
808 * possible before PCIe PHY initialization. Moreover, the PCIe
809 * clock should be gated as well.
810 */
Pali Rohár828d3262020-08-19 15:57:07 +0200811 if (dm_gpio_is_valid(&pcie->reset_gpio)) {
Pali Rohár279b5732021-01-18 12:09:33 +0100812 dev_dbg(dev, "Toggle PCIE Reset GPIO ...\n");
Pali Rohár828d3262020-08-19 15:57:07 +0200813 dm_gpio_set_value(&pcie->reset_gpio, 1);
Pali Rohár563b85b2020-08-19 15:57:06 +0200814 mdelay(200);
Pali Rohár828d3262020-08-19 15:57:07 +0200815 dm_gpio_set_value(&pcie->reset_gpio, 0);
Pali Rohár835d9692020-08-25 10:45:04 +0200816 } else {
Pali Rohár279b5732021-01-18 12:09:33 +0100817 dev_warn(dev, "PCIE Reset on GPIO support is missing\n");
Wilson Dinge51f2b12018-03-26 15:57:29 +0800818 }
Wilson Dinge51f2b12018-03-26 15:57:29 +0800819
Simon Glass8b85dfc2020-12-16 21:20:07 -0700820 pcie->first_busno = dev_seq(dev);
Wilson Dinge51f2b12018-03-26 15:57:29 +0800821 pcie->dev = pci_get_controller(dev);
822
823 return pcie_advk_setup_hw(pcie);
824}
825
Pali Rohár828d3262020-08-19 15:57:07 +0200826static int pcie_advk_remove(struct udevice *dev)
827{
Pali Rohár828d3262020-08-19 15:57:07 +0200828 struct pcie_advk *pcie = dev_get_priv(dev);
Pali Rohár5f50b882020-09-22 13:21:38 +0200829 u32 reg;
Pali Rohárb3217222021-05-26 17:59:40 +0200830 int i;
831
832 for (i = 0; i < OB_WIN_COUNT; i++)
833 pcie_advk_disable_ob_win(pcie, i);
Pali Rohár828d3262020-08-19 15:57:07 +0200834
Pali Rohár7b85aef2021-05-26 17:59:35 +0200835 reg = advk_readl(pcie, PCIE_CORE_CMD_STATUS_REG);
836 reg &= ~(PCIE_CORE_CMD_MEM_ACCESS_EN |
837 PCIE_CORE_CMD_IO_ACCESS_EN |
838 PCIE_CORE_CMD_MEM_IO_REQ_EN);
839 advk_writel(pcie, reg, PCIE_CORE_CMD_STATUS_REG);
840
Pali Rohár5f50b882020-09-22 13:21:38 +0200841 reg = advk_readl(pcie, PCIE_CORE_CTRL0_REG);
842 reg &= ~LINK_TRAINING_EN;
843 advk_writel(pcie, reg, PCIE_CORE_CTRL0_REG);
844
Pali Rohár828d3262020-08-19 15:57:07 +0200845 return 0;
846}
847
Wilson Dinge51f2b12018-03-26 15:57:29 +0800848/**
Simon Glassd1998a92020-12-03 16:55:21 -0700849 * pcie_advk_of_to_plat() - Translate from DT to device state
Wilson Dinge51f2b12018-03-26 15:57:29 +0800850 *
851 * @dev: A pointer to the device being operated on
852 *
853 * Translate relevant data from the device tree pertaining to device @dev into
854 * state that the driver will later make use of. This state is stored in the
855 * device's private data structure.
856 *
857 * Return: 0 on success, else -EINVAL
858 */
Simon Glassd1998a92020-12-03 16:55:21 -0700859static int pcie_advk_of_to_plat(struct udevice *dev)
Wilson Dinge51f2b12018-03-26 15:57:29 +0800860{
861 struct pcie_advk *pcie = dev_get_priv(dev);
862
863 /* Get the register base address */
864 pcie->base = (void *)dev_read_addr_index(dev, 0);
865 if ((fdt_addr_t)pcie->base == FDT_ADDR_T_NONE)
866 return -EINVAL;
867
868 return 0;
869}
870
871static const struct dm_pci_ops pcie_advk_ops = {
872 .read_config = pcie_advk_read_config,
873 .write_config = pcie_advk_write_config,
874};
875
876static const struct udevice_id pcie_advk_ids[] = {
Pali Rohára544d652021-05-26 17:59:36 +0200877 { .compatible = "marvell,armada-3700-pcie" },
Wilson Dinge51f2b12018-03-26 15:57:29 +0800878 { }
879};
880
881U_BOOT_DRIVER(pcie_advk) = {
882 .name = "pcie_advk",
883 .id = UCLASS_PCI,
884 .of_match = pcie_advk_ids,
885 .ops = &pcie_advk_ops,
Simon Glassd1998a92020-12-03 16:55:21 -0700886 .of_to_plat = pcie_advk_of_to_plat,
Wilson Dinge51f2b12018-03-26 15:57:29 +0800887 .probe = pcie_advk_probe,
Pali Rohár828d3262020-08-19 15:57:07 +0200888 .remove = pcie_advk_remove,
889 .flags = DM_FLAG_OS_PREPARE,
Simon Glass41575d82020-12-03 16:55:17 -0700890 .priv_auto = sizeof(struct pcie_advk),
Wilson Dinge51f2b12018-03-26 15:57:29 +0800891};