blob: 815b26162f1569bffc48c132b7630276dccde79d [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
Wilson Dinge51f2b12018-03-26 15:57:29 +0800180#define CFG_RD_CRS_VAL 0xFFFF0001
181
Wilson Dinge51f2b12018-03-26 15:57:29 +0800182/**
183 * struct pcie_advk - Advk PCIe controller state
184 *
185 * @reg_base: The base address of the register space.
186 * @first_busno: This driver supports multiple PCIe controllers.
187 * first_busno stores the bus number of the PCIe root-port
188 * number which may vary depending on the PCIe setup
189 * (PEX switches etc).
190 * @device: The pointer to PCI uclass device.
191 */
192struct pcie_advk {
193 void *base;
194 int first_busno;
195 struct udevice *dev;
Pali Rohár828d3262020-08-19 15:57:07 +0200196 struct gpio_desc reset_gpio;
Wilson Dinge51f2b12018-03-26 15:57:29 +0800197};
198
199static inline void advk_writel(struct pcie_advk *pcie, uint val, uint reg)
200{
201 writel(val, pcie->base + reg);
202}
203
204static inline uint advk_readl(struct pcie_advk *pcie, uint reg)
205{
206 return readl(pcie->base + reg);
207}
208
209/**
210 * pcie_advk_addr_valid() - Check for valid bus address
211 *
212 * @bdf: The PCI device to access
213 * @first_busno: Bus number of the PCIe controller root complex
214 *
215 * Return: 1 on valid, 0 on invalid
216 */
217static int pcie_advk_addr_valid(pci_dev_t bdf, int first_busno)
218{
219 /*
220 * In PCIE-E only a single device (0) can exist
221 * on the local bus. Beyound the local bus, there might be
222 * a Switch and everything is possible.
223 */
224 if ((PCI_BUS(bdf) == first_busno) && (PCI_DEV(bdf) > 0))
225 return 0;
226
227 return 1;
228}
229
230/**
231 * pcie_advk_wait_pio() - Wait for PIO access to be accomplished
232 *
233 * @pcie: The PCI device to access
234 *
Pali Roháreccbd4a2021-04-22 16:23:04 +0200235 * Wait up to 1.5 seconds for PIO access to be accomplished.
Wilson Dinge51f2b12018-03-26 15:57:29 +0800236 *
237 * Return 1 (true) if PIO access is accomplished.
238 * Return 0 (false) if PIO access is timed out.
239 */
240static int pcie_advk_wait_pio(struct pcie_advk *pcie)
241{
242 uint start, isr;
243 uint count;
244
Pali Roháreccbd4a2021-04-22 16:23:04 +0200245 for (count = 0; count < PIO_MAX_RETRIES; count++) {
Wilson Dinge51f2b12018-03-26 15:57:29 +0800246 start = advk_readl(pcie, PIO_START);
247 isr = advk_readl(pcie, PIO_ISR);
248 if (!start && isr)
249 return 1;
250 /*
251 * Do not check the PIO state too frequently,
252 * 100us delay is appropriate.
253 */
254 udelay(PIO_WAIT_TIMEOUT);
255 }
256
Pali Roháreccbd4a2021-04-22 16:23:04 +0200257 dev_err(pcie->dev, "PIO read/write transfer time out\n");
Wilson Dinge51f2b12018-03-26 15:57:29 +0800258 return 0;
259}
260
261/**
262 * pcie_advk_check_pio_status() - Validate PIO status and get the read result
263 *
264 * @pcie: Pointer to the PCI bus
Pali Rohár4cd61c42021-08-09 09:53:13 +0200265 * @allow_crs: Only for read requests, if CRS response is allowed
266 * @read_val: Pointer to the read result
Wilson Dinge51f2b12018-03-26 15:57:29 +0800267 *
268 */
269static int pcie_advk_check_pio_status(struct pcie_advk *pcie,
Pali Rohár4cd61c42021-08-09 09:53:13 +0200270 bool allow_crs,
Wilson Dinge51f2b12018-03-26 15:57:29 +0800271 uint *read_val)
272{
273 uint reg;
274 unsigned int status;
275 char *strcomp_status, *str_posted;
276
277 reg = advk_readl(pcie, PIO_STAT);
278 status = (reg & PIO_COMPLETION_STATUS_MASK) >>
279 PIO_COMPLETION_STATUS_SHIFT;
280
281 switch (status) {
282 case PIO_COMPLETION_STATUS_OK:
283 if (reg & PIO_ERR_STATUS) {
284 strcomp_status = "COMP_ERR";
285 break;
286 }
287 /* Get the read result */
Pali Rohár4cd61c42021-08-09 09:53:13 +0200288 if (read_val)
Wilson Dinge51f2b12018-03-26 15:57:29 +0800289 *read_val = advk_readl(pcie, PIO_RD_DATA);
290 /* No error */
291 strcomp_status = NULL;
292 break;
293 case PIO_COMPLETION_STATUS_UR:
Pali Rohár4cd61c42021-08-09 09:53:13 +0200294 strcomp_status = "UR";
Wilson Dinge51f2b12018-03-26 15:57:29 +0800295 break;
296 case PIO_COMPLETION_STATUS_CRS:
Pali Rohár4cd61c42021-08-09 09:53:13 +0200297 if (allow_crs && read_val) {
Wilson Dinge51f2b12018-03-26 15:57:29 +0800298 /* For reading, CRS is not an error status. */
299 *read_val = CFG_RD_CRS_VAL;
300 strcomp_status = NULL;
301 } else {
302 strcomp_status = "CRS";
303 }
304 break;
305 case PIO_COMPLETION_STATUS_CA:
306 strcomp_status = "CA";
307 break;
308 default:
309 strcomp_status = "Unknown";
310 break;
311 }
312
313 if (!strcomp_status)
314 return 0;
315
316 if (reg & PIO_NON_POSTED_REQ)
317 str_posted = "Non-posted";
318 else
319 str_posted = "Posted";
320
321 dev_err(pcie->dev, "%s PIO Response Status: %s, %#x @ %#x\n",
322 str_posted, strcomp_status, reg,
323 advk_readl(pcie, PIO_ADDR_LS));
324
325 return -EFAULT;
326}
327
328/**
329 * pcie_advk_read_config() - Read from configuration space
330 *
331 * @bus: Pointer to the PCI bus
332 * @bdf: Identifies the PCIe device to access
333 * @offset: The offset into the device's configuration space
334 * @valuep: A pointer at which to store the read value
335 * @size: Indicates the size of access to perform
336 *
337 * Read a value of size @size from offset @offset within the configuration
338 * space of the device identified by the bus, device & function numbers in @bdf
339 * on the PCI bus @bus.
340 *
341 * Return: 0 on success
342 */
Simon Glassc4e72c42020-01-27 08:49:37 -0700343static int pcie_advk_read_config(const struct udevice *bus, pci_dev_t bdf,
Wilson Dinge51f2b12018-03-26 15:57:29 +0800344 uint offset, ulong *valuep,
345 enum pci_size_t size)
346{
347 struct pcie_advk *pcie = dev_get_priv(bus);
Pali Rohár4cd61c42021-08-09 09:53:13 +0200348 bool allow_crs;
Wilson Dinge51f2b12018-03-26 15:57:29 +0800349 uint reg;
350 int ret;
351
352 dev_dbg(pcie->dev, "PCIE CFG read: (b,d,f)=(%2d,%2d,%2d) ",
353 PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf));
354
355 if (!pcie_advk_addr_valid(bdf, pcie->first_busno)) {
356 dev_dbg(pcie->dev, "- out of range\n");
357 *valuep = pci_get_ff(size);
358 return 0;
359 }
360
Pali Rohár4cd61c42021-08-09 09:53:13 +0200361 allow_crs = (offset == PCI_VENDOR_ID) && (size == 4);
362
Pali Roháreccbd4a2021-04-22 16:23:04 +0200363 if (advk_readl(pcie, PIO_START)) {
364 dev_err(pcie->dev,
365 "Previous PIO read/write transfer is still running\n");
Pali Rohár4cd61c42021-08-09 09:53:13 +0200366 if (allow_crs) {
367 *valuep = CFG_RD_CRS_VAL;
368 return 0;
369 }
370 *valuep = pci_get_ff(size);
371 return -EINVAL;
Pali Roháreccbd4a2021-04-22 16:23:04 +0200372 }
Wilson Dinge51f2b12018-03-26 15:57:29 +0800373
374 /* Program the control register */
375 reg = advk_readl(pcie, PIO_CTRL);
376 reg &= ~PIO_CTRL_TYPE_MASK;
377 if (PCI_BUS(bdf) == pcie->first_busno)
378 reg |= PCIE_CONFIG_RD_TYPE0;
379 else
380 reg |= PCIE_CONFIG_RD_TYPE1;
381 advk_writel(pcie, reg, PIO_CTRL);
382
383 /* Program the address registers */
384 reg = PCIE_BDF(bdf) | PCIE_CONF_REG(offset);
385 advk_writel(pcie, reg, PIO_ADDR_LS);
386 advk_writel(pcie, 0, PIO_ADDR_MS);
387
388 /* Start the transfer */
Pali Roháreccbd4a2021-04-22 16:23:04 +0200389 advk_writel(pcie, 1, PIO_ISR);
Wilson Dinge51f2b12018-03-26 15:57:29 +0800390 advk_writel(pcie, 1, PIO_START);
391
Pali Roháreccbd4a2021-04-22 16:23:04 +0200392 if (!pcie_advk_wait_pio(pcie)) {
Pali Rohár4cd61c42021-08-09 09:53:13 +0200393 if (allow_crs) {
394 *valuep = CFG_RD_CRS_VAL;
395 return 0;
396 }
397 *valuep = pci_get_ff(size);
398 return -EINVAL;
Pali Roháreccbd4a2021-04-22 16:23:04 +0200399 }
Wilson Dinge51f2b12018-03-26 15:57:29 +0800400
401 /* Check PIO status and get the read result */
Pali Rohár4cd61c42021-08-09 09:53:13 +0200402 ret = pcie_advk_check_pio_status(pcie, allow_crs, &reg);
403 if (ret) {
404 *valuep = pci_get_ff(size);
Wilson Dinge51f2b12018-03-26 15:57:29 +0800405 return ret;
Pali Rohár4cd61c42021-08-09 09:53:13 +0200406 }
Wilson Dinge51f2b12018-03-26 15:57:29 +0800407
408 dev_dbg(pcie->dev, "(addr,size,val)=(0x%04x, %d, 0x%08x)\n",
409 offset, size, reg);
410 *valuep = pci_conv_32_to_size(reg, offset, size);
411
412 return 0;
413}
414
415/**
416 * pcie_calc_datastrobe() - Calculate data strobe
417 *
418 * @offset: The offset into the device's configuration space
419 * @size: Indicates the size of access to perform
420 *
421 * Calculate data strobe according to offset and size
422 *
423 */
424static uint pcie_calc_datastrobe(uint offset, enum pci_size_t size)
425{
426 uint bytes, data_strobe;
427
428 switch (size) {
429 case PCI_SIZE_8:
430 bytes = 1;
431 break;
432 case PCI_SIZE_16:
433 bytes = 2;
434 break;
435 default:
436 bytes = 4;
437 }
438
439 data_strobe = GENMASK(bytes - 1, 0) << (offset & 0x3);
440
441 return data_strobe;
442}
443
444/**
445 * pcie_advk_write_config() - Write to configuration space
446 *
447 * @bus: Pointer to the PCI bus
448 * @bdf: Identifies the PCIe device to access
449 * @offset: The offset into the device's configuration space
450 * @value: The value to write
451 * @size: Indicates the size of access to perform
452 *
453 * Write the value @value of size @size from offset @offset within the
454 * configuration space of the device identified by the bus, device & function
455 * numbers in @bdf on the PCI bus @bus.
456 *
457 * Return: 0 on success
458 */
459static int pcie_advk_write_config(struct udevice *bus, pci_dev_t bdf,
460 uint offset, ulong value,
461 enum pci_size_t size)
462{
463 struct pcie_advk *pcie = dev_get_priv(bus);
464 uint reg;
465
466 dev_dbg(pcie->dev, "PCIE CFG write: (b,d,f)=(%2d,%2d,%2d) ",
467 PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf));
468 dev_dbg(pcie->dev, "(addr,size,val)=(0x%04x, %d, 0x%08lx)\n",
469 offset, size, value);
470
471 if (!pcie_advk_addr_valid(bdf, pcie->first_busno)) {
472 dev_dbg(pcie->dev, "- out of range\n");
473 return 0;
474 }
475
Pali Roháreccbd4a2021-04-22 16:23:04 +0200476 if (advk_readl(pcie, PIO_START)) {
477 dev_err(pcie->dev,
478 "Previous PIO read/write transfer is still running\n");
479 return -EINVAL;
480 }
Wilson Dinge51f2b12018-03-26 15:57:29 +0800481
482 /* Program the control register */
483 reg = advk_readl(pcie, PIO_CTRL);
484 reg &= ~PIO_CTRL_TYPE_MASK;
485 if (PCI_BUS(bdf) == pcie->first_busno)
486 reg |= PCIE_CONFIG_WR_TYPE0;
487 else
488 reg |= PCIE_CONFIG_WR_TYPE1;
489 advk_writel(pcie, reg, PIO_CTRL);
490
491 /* Program the address registers */
492 reg = PCIE_BDF(bdf) | PCIE_CONF_REG(offset);
493 advk_writel(pcie, reg, PIO_ADDR_LS);
494 advk_writel(pcie, 0, PIO_ADDR_MS);
495 dev_dbg(pcie->dev, "\tPIO req. - addr = 0x%08x\n", reg);
496
497 /* Program the data register */
498 reg = pci_conv_size_to_32(0, value, offset, size);
499 advk_writel(pcie, reg, PIO_WR_DATA);
500 dev_dbg(pcie->dev, "\tPIO req. - val = 0x%08x\n", reg);
501
502 /* Program the data strobe */
503 reg = pcie_calc_datastrobe(offset, size);
504 advk_writel(pcie, reg, PIO_WR_DATA_STRB);
505 dev_dbg(pcie->dev, "\tPIO req. - strb = 0x%02x\n", reg);
506
507 /* Start the transfer */
Pali Roháreccbd4a2021-04-22 16:23:04 +0200508 advk_writel(pcie, 1, PIO_ISR);
Wilson Dinge51f2b12018-03-26 15:57:29 +0800509 advk_writel(pcie, 1, PIO_START);
510
511 if (!pcie_advk_wait_pio(pcie)) {
Wilson Dinge51f2b12018-03-26 15:57:29 +0800512 return -EINVAL;
513 }
514
515 /* Check PIO status */
Pali Rohár4cd61c42021-08-09 09:53:13 +0200516 return pcie_advk_check_pio_status(pcie, false, NULL);
Wilson Dinge51f2b12018-03-26 15:57:29 +0800517}
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};