1 /*
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  *         Pali Rohár <pali@kernel.org>
25  *
26  */
27 
28 #include <common.h>
29 #include <dm.h>
30 #include <pci.h>
31 #include <asm/io.h>
32 #include <asm-generic/gpio.h>
33 #include <dm/device_compat.h>
34 #include <linux/bitops.h>
35 #include <linux/delay.h>
36 #include <linux/ioport.h>
37 
38 /* PCIe Root Port register offsets */
39 #define ADVK_ROOT_PORT_PCI_CFG_OFF		0x0
40 #define ADVK_ROOT_PORT_PCI_EXP_OFF		0xc0
41 #define ADVK_ROOT_PORT_PCI_ERR_OFF		0x100
42 
43 /* PIO registers */
44 #define ADVK_PIO_BASE_ADDR			0x4000
45 #define ADVK_PIO_CTRL				(ADVK_PIO_BASE_ADDR + 0x0)
46 #define   ADVK_PIO_CTRL_TYPE_MASK		GENMASK(3, 0)
47 #define   ADVK_PIO_CTRL_TYPE_SHIFT		0
48 #define   ADVK_PIO_CTRL_TYPE_RD_TYPE0		0x8
49 #define   ADVK_PIO_CTRL_TYPE_RD_TYPE1		0x9
50 #define   ADVK_PIO_CTRL_TYPE_WR_TYPE0		0xa
51 #define   ADVK_PIO_CTRL_TYPE_WR_TYPE1		0xb
52 #define   ADVK_PIO_CTRL_ADDR_WIN_DISABLE	BIT(24)
53 #define ADVK_PIO_STAT				(ADVK_PIO_BASE_ADDR + 0x4)
54 #define   ADVK_PIO_COMPLETION_STATUS_MASK	GENMASK(9, 7)
55 #define   ADVK_PIO_COMPLETION_STATUS_SHIFT	7
56 #define   ADVK_PIO_COMPLETION_STATUS_OK		0
57 #define   ADVK_PIO_COMPLETION_STATUS_UR		1
58 #define   ADVK_PIO_COMPLETION_STATUS_CRS	2
59 #define   ADVK_PIO_COMPLETION_STATUS_CA		4
60 #define   ADVK_PIO_NON_POSTED_REQ		BIT(10)
61 #define   ADVK_PIO_ERR_STATUS			BIT(11)
62 #define ADVK_PIO_ADDR_LS			(ADVK_PIO_BASE_ADDR + 0x8)
63 #define ADVK_PIO_ADDR_MS			(ADVK_PIO_BASE_ADDR + 0xc)
64 #define ADVK_PIO_WR_DATA			(ADVK_PIO_BASE_ADDR + 0x10)
65 #define ADVK_PIO_WR_DATA_STRB			(ADVK_PIO_BASE_ADDR + 0x14)
66 #define ADVK_PIO_RD_DATA			(ADVK_PIO_BASE_ADDR + 0x18)
67 #define ADVK_PIO_START				(ADVK_PIO_BASE_ADDR + 0x1c)
68 #define ADVK_PIO_ISR				(ADVK_PIO_BASE_ADDR + 0x20)
69 
70 /* Global Control registers */
71 #define ADVK_GLOBAL_CTRL_BASE_ADDR		0x4800
72 #define ADVK_GLOBAL_CTRL0			(ADVK_GLOBAL_CTRL_BASE_ADDR + 0x0)
73 #define     ADVK_GLOBAL_CTRL0_SPEED_GEN_MASK	GENMASK(1, 0)
74 #define     ADVK_GLOBAL_CTRL0_SPEED_GEN_SHIFT	0
75 #define     ADVK_GLOBAL_CTRL0_SPEED_GEN_1	0
76 #define     ADVK_GLOBAL_CTRL0_SPEED_GEN_2	1
77 #define     ADVK_GLOBAL_CTRL0_SPEED_GEN_3	2
78 #define     ADVK_GLOBAL_CTRL0_IS_RC		BIT(2)
79 #define     ADVK_GLOBAL_CTRL0_LANE_COUNT_MASK	GENMASK(4, 3)
80 #define     ADVK_GLOBAL_CTRL0_LANE_COUNT_SHIFT	3
81 #define     ADVK_GLOBAL_CTRL0_LANE_COUNT_1	0
82 #define     ADVK_GLOBAL_CTRL0_LANE_COUNT_2	1
83 #define     ADVK_GLOBAL_CTRL0_LANE_COUNT_4	2
84 #define     ADVK_GLOBAL_CTRL0_LANE_COUNT_8	3
85 #define     ADVK_GLOBAL_CTRL0_LINK_TRAINING_EN	BIT(6)
86 #define ADVK_GLOBAL_CTRL2			(ADVK_GLOBAL_CTRL_BASE_ADDR + 0x8)
87 #define     ADVK_GLOBAL_CTRL2_STRICT_ORDER_EN	BIT(5)
88 #define     ADVK_GLOBAL_CTRL2_ADDRWIN_MAP_EN	BIT(6)
89 
90 /* PCIe window configuration registers */
91 #define ADVK_OB_WIN_BASE_ADDR			0x4c00
92 #define ADVK_OB_WIN_BLOCK_SIZE			0x20
93 #define ADVK_OB_WIN_COUNT			8
94 #define ADVK_OB_WIN_REG_ADDR(win, offset)	(ADVK_OB_WIN_BASE_ADDR + ADVK_OB_WIN_BLOCK_SIZE * (win) + (offset))
95 #define ADVK_OB_WIN_MATCH_LS(win)		ADVK_OB_WIN_REG_ADDR(win, 0x00)
96 #define     ADVK_OB_WIN_ENABLE			BIT(0)
97 #define ADVK_OB_WIN_MATCH_MS(win)		ADVK_OB_WIN_REG_ADDR(win, 0x04)
98 #define ADVK_OB_WIN_REMAP_LS(win)		ADVK_OB_WIN_REG_ADDR(win, 0x08)
99 #define ADVK_OB_WIN_REMAP_MS(win)		ADVK_OB_WIN_REG_ADDR(win, 0x0c)
100 #define ADVK_OB_WIN_MASK_LS(win)		ADVK_OB_WIN_REG_ADDR(win, 0x10)
101 #define ADVK_OB_WIN_MASK_MS(win)		ADVK_OB_WIN_REG_ADDR(win, 0x14)
102 #define ADVK_OB_WIN_ACTIONS(win)		ADVK_OB_WIN_REG_ADDR(win, 0x18)
103 #define ADVK_OB_WIN_DEFAULT_ACTIONS		(ADVK_OB_WIN_ACTIONS(ADVK_OB_WIN_COUNT-1) + 0x4)
104 #define     ADVK_OB_WIN_FUNC_NUM_MASK		GENMASK(31, 24)
105 #define     ADVK_OB_WIN_FUNC_NUM_SHIFT		24
106 #define     ADVK_OB_WIN_FUNC_NUM_ENABLE		BIT(23)
107 #define     ADVK_OB_WIN_BUS_NUM_BITS_MASK	GENMASK(22, 20)
108 #define     ADVK_OB_WIN_BUS_NUM_BITS_SHIFT	20
109 #define     ADVK_OB_WIN_MSG_CODE_ENABLE		BIT(22)
110 #define     ADVK_OB_WIN_MSG_CODE_MASK		GENMASK(21, 14)
111 #define     ADVK_OB_WIN_MSG_CODE_SHIFT		14
112 #define     ADVK_OB_WIN_MSG_PAYLOAD_LEN		BIT(12)
113 #define     ADVK_OB_WIN_ATTR_ENABLE		BIT(11)
114 #define     ADVK_OB_WIN_ATTR_TC_MASK		GENMASK(10, 8)
115 #define     ADVK_OB_WIN_ATTR_TC_SHIFT		8
116 #define     ADVK_OB_WIN_ATTR_RELAXED		BIT(7)
117 #define     ADVK_OB_WIN_ATTR_NOSNOOP		BIT(6)
118 #define     ADVK_OB_WIN_ATTR_POISON		BIT(5)
119 #define     ADVK_OB_WIN_ATTR_IDO		BIT(4)
120 #define     ADVK_OB_WIN_TYPE_MASK		GENMASK(3, 0)
121 #define     ADVK_OB_WIN_TYPE_SHIFT		0
122 #define     ADVK_OB_WIN_TYPE_MEM		0x0
123 #define     ADVK_OB_WIN_TYPE_IO			0x4
124 #define     ADVK_OB_WIN_TYPE_CONFIG_TYPE0	0x8
125 #define     ADVK_OB_WIN_TYPE_CONFIG_TYPE1	0x9
126 #define     ADVK_OB_WIN_TYPE_MSG		0xc
127 
128 /* Local Management Interface registers */
129 #define ADVK_LMI_BASE_ADDR			0x6000
130 #define ADVK_LMI_PHY_CFG0			(ADVK_LMI_BASE_ADDR + 0x0)
131 #define     ADVK_LMI_PHY_CFG0_LTSSM_MASK	GENMASK(29, 24)
132 #define     ADVK_LMI_PHY_CFG0_LTSSM_SHIFT	24
133 #define     ADVK_LMI_PHY_CFG0_LTSSM_L0		0x10
134 #define     ADVK_LMI_PHY_CFG0_LTSSM_DISABLED	0x20
135 #define ADVK_LMI_VENDOR_ID			(ADVK_LMI_BASE_ADDR + 0x44)
136 
137 /* Core Control registers */
138 #define ADVK_CORE_CTRL_BASE_ADDR		0x18000
139 #define ADVK_CORE_CTRL_CONFIG			(ADVK_CORE_CTRL_BASE_ADDR + 0x0)
140 #define     ADVK_CORE_CTRL_CONFIG_COMMAND_MODE	BIT(0)
141 
142 /* PCIe Retries & Timeout definitions */
143 #define PIO_MAX_RETRIES				1500
144 #define PIO_WAIT_TIMEOUT			1000
145 #define LINK_MAX_RETRIES			10
146 #define LINK_WAIT_TIMEOUT			100000
147 
148 #define CFG_RD_CRS_VAL				0xFFFF0001
149 
150 /**
151  * struct pcie_advk - Advk PCIe controller state
152  *
153  * @base:        The base address of the register space.
154  * @sec_busno:   Bus number for the device behind the PCIe root-port.
155  * @dev:         The pointer to PCI uclass device.
156  * @reset_gpio:  GPIO descriptor for PERST.
157  * @cfgcache:    Buffer for emulation of PCIe Root Port's PCI Bridge registers
158  *               that are not available on Aardvark.
159  * @cfgcrssve:   For CRSSVE emulation.
160  */
161 struct pcie_advk {
162 	void			*base;
163 	int			sec_busno;
164 	struct udevice		*dev;
165 	struct gpio_desc	reset_gpio;
166 	u32			cfgcache[(0x3c - 0x10) / 4];
167 	bool			cfgcrssve;
168 };
169 
advk_writel(struct pcie_advk * pcie,uint val,uint reg)170 static inline void advk_writel(struct pcie_advk *pcie, uint val, uint reg)
171 {
172 	writel(val, pcie->base + reg);
173 }
174 
advk_readl(struct pcie_advk * pcie,uint reg)175 static inline uint advk_readl(struct pcie_advk *pcie, uint reg)
176 {
177 	return readl(pcie->base + reg);
178 }
179 
180 /**
181  * pcie_advk_link_up() - Check if PCIe link is up or not
182  *
183  * @pcie: The PCI device to access
184  *
185  * Return true on link up.
186  * Return false on link down.
187  */
pcie_advk_link_up(struct pcie_advk * pcie)188 static bool pcie_advk_link_up(struct pcie_advk *pcie)
189 {
190 	u32 val, ltssm_state;
191 
192 	val = advk_readl(pcie, ADVK_LMI_PHY_CFG0);
193 	ltssm_state = (val & ADVK_LMI_PHY_CFG0_LTSSM_MASK) >> ADVK_LMI_PHY_CFG0_LTSSM_SHIFT;
194 	return ltssm_state >= ADVK_LMI_PHY_CFG0_LTSSM_L0 && ltssm_state < ADVK_LMI_PHY_CFG0_LTSSM_DISABLED;
195 }
196 
197 /**
198  * pcie_advk_addr_valid() - Check for valid bus address
199  *
200  * @pcie: Pointer to the PCI bus
201  * @busno: Bus number of PCI device
202  * @dev: Device number of PCI device
203  * @func: Function number of PCI device
204  * @bdf: The PCI device to access
205  *
206  * Return: true on valid, false on invalid
207  */
pcie_advk_addr_valid(struct pcie_advk * pcie,int busno,u8 dev,u8 func)208 static bool pcie_advk_addr_valid(struct pcie_advk *pcie,
209 				 int busno, u8 dev, u8 func)
210 {
211 	/* On the root bus there is only one PCI Bridge */
212 	if (busno == 0 && (dev != 0 || func != 0))
213 		return false;
214 
215 	/* Access to other buses is possible when link is up */
216 	if (busno != 0 && !pcie_advk_link_up(pcie))
217 		return false;
218 
219 	/*
220 	 * In PCI-E only a single device (0) can exist on the secondary bus.
221 	 * Beyond the secondary bus, there might be a Switch and anything is
222 	 * possible.
223 	 */
224 	if (busno == pcie->sec_busno && dev != 0)
225 		return false;
226 
227 	return true;
228 }
229 
230 /**
231  * pcie_advk_wait_pio() - Wait for PIO access to be accomplished
232  *
233  * @pcie: The PCI device to access
234  *
235  * Wait up to 1.5 seconds for PIO access to be accomplished.
236  *
237  * Return positive - retry count if PIO access is accomplished.
238  * Return negative - error if PIO access is timed out.
239  */
pcie_advk_wait_pio(struct pcie_advk * pcie)240 static int pcie_advk_wait_pio(struct pcie_advk *pcie)
241 {
242 	uint start, isr;
243 	uint count;
244 
245 	for (count = 1; count <= PIO_MAX_RETRIES; count++) {
246 		start = advk_readl(pcie, ADVK_PIO_START);
247 		isr = advk_readl(pcie, ADVK_PIO_ISR);
248 		if (!start && isr)
249 			return count;
250 		/*
251 		 * Do not check the PIO state too frequently,
252 		 * 100us delay is appropriate.
253 		 */
254 		udelay(PIO_WAIT_TIMEOUT);
255 	}
256 
257 	dev_err(pcie->dev, "PIO read/write transfer time out\n");
258 	return -ETIMEDOUT;
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
265  * @allow_crs: Only for read requests, if CRS response is allowed
266  * @read_val: Pointer to the read result
267  *
268  * Return: 0 on success
269  */
pcie_advk_check_pio_status(struct pcie_advk * pcie,bool allow_crs,uint * read_val)270 static int pcie_advk_check_pio_status(struct pcie_advk *pcie,
271 				      bool allow_crs,
272 				      uint *read_val)
273 {
274 	int ret;
275 	uint reg;
276 	unsigned int status;
277 	char *strcomp_status, *str_posted;
278 
279 	reg = advk_readl(pcie, ADVK_PIO_STAT);
280 	status = (reg & ADVK_PIO_COMPLETION_STATUS_MASK) >>
281 		ADVK_PIO_COMPLETION_STATUS_SHIFT;
282 
283 	switch (status) {
284 	case ADVK_PIO_COMPLETION_STATUS_OK:
285 		if (reg & ADVK_PIO_ERR_STATUS) {
286 			strcomp_status = "COMP_ERR";
287 			ret = -EFAULT;
288 			break;
289 		}
290 		/* Get the read result */
291 		if (read_val)
292 			*read_val = advk_readl(pcie, ADVK_PIO_RD_DATA);
293 		/* No error */
294 		strcomp_status = NULL;
295 		ret = 0;
296 		break;
297 	case ADVK_PIO_COMPLETION_STATUS_UR:
298 		strcomp_status = "UR";
299 		ret = -EOPNOTSUPP;
300 		break;
301 	case ADVK_PIO_COMPLETION_STATUS_CRS:
302 		if (allow_crs && read_val) {
303 			/* For reading, CRS is not an error status. */
304 			*read_val = CFG_RD_CRS_VAL;
305 			strcomp_status = NULL;
306 			ret = 0;
307 		} else {
308 			strcomp_status = "CRS";
309 			ret = -EAGAIN;
310 		}
311 		break;
312 	case ADVK_PIO_COMPLETION_STATUS_CA:
313 		strcomp_status = "CA";
314 		ret = -ECANCELED;
315 		break;
316 	default:
317 		strcomp_status = "Unknown";
318 		ret = -EINVAL;
319 		break;
320 	}
321 
322 	if (!strcomp_status)
323 		return ret;
324 
325 	if (reg & ADVK_PIO_NON_POSTED_REQ)
326 		str_posted = "Non-posted";
327 	else
328 		str_posted = "Posted";
329 
330 	dev_dbg(pcie->dev, "%s PIO Response Status: %s, %#x @ %#x\n",
331 		str_posted, strcomp_status, reg,
332 		advk_readl(pcie, ADVK_PIO_ADDR_LS));
333 
334 	return ret;
335 }
336 
337 /**
338  * pcie_advk_read_config() - Read from configuration space
339  *
340  * @bus: Pointer to the PCI bus
341  * @bdf: Identifies the PCIe device to access
342  * @offset: The offset into the device's configuration space
343  * @valuep: A pointer at which to store the read value
344  * @size: Indicates the size of access to perform
345  *
346  * Read a value of size @size from offset @offset within the configuration
347  * space of the device identified by the bus, device & function numbers in @bdf
348  * on the PCI bus @bus.
349  *
350  * Return: 0 on success
351  */
pcie_advk_read_config(const struct udevice * bus,pci_dev_t bdf,uint offset,ulong * valuep,enum pci_size_t size)352 static int pcie_advk_read_config(const struct udevice *bus, pci_dev_t bdf,
353 				 uint offset, ulong *valuep,
354 				 enum pci_size_t size)
355 {
356 	struct pcie_advk *pcie = dev_get_priv(bus);
357 	int busno = PCI_BUS(bdf) - dev_seq(bus);
358 	int retry_count;
359 	bool allow_crs;
360 	ulong data;
361 	uint reg;
362 	int ret;
363 
364 	dev_dbg(pcie->dev, "PCIE CFG read:  (b,d,f)=(%2d,%2d,%2d) ",
365 		PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf));
366 
367 	if (!pcie_advk_addr_valid(pcie, busno, PCI_DEV(bdf), PCI_FUNC(bdf))) {
368 		dev_dbg(pcie->dev, "- out of range\n");
369 		*valuep = pci_get_ff(size);
370 		return 0;
371 	}
372 
373 	/*
374 	 * The configuration space of the PCI Bridge on the root bus (zero) is
375 	 * not accessible via PIO transfers like all other PCIe devices. PCI
376 	 * Bridge config registers are available directly in Aardvark memory
377 	 * space starting at offset zero. The PCI Bridge config space is of
378 	 * Type 0, but the BAR registers (including ROM BAR) don't have the same
379 	 * meaning as in the PCIe specification. Therefore do not access BAR
380 	 * registers and non-common registers (those which have different
381 	 * meaning for Type 0 and Type 1 config space) of the PCI Bridge
382 	 * and instead read their content from driver virtual cfgcache[].
383 	 */
384 	if (busno == 0) {
385 		if ((offset >= 0x10 && offset < 0x34) || (offset >= 0x38 && offset < 0x3c))
386 			data = pcie->cfgcache[(offset - 0x10) / 4];
387 		else
388 			data = advk_readl(pcie, ADVK_ROOT_PORT_PCI_CFG_OFF + (offset & ~3));
389 
390 		if ((offset & ~3) == (PCI_HEADER_TYPE & ~3)) {
391 			/*
392 			 * Change Header Type of PCI Bridge device to Type 1
393 			 * (0x01, used by PCI Bridges) because hardwired value
394 			 * is Type 0 (0x00, used by Endpoint devices).
395 			 */
396 			data &= ~0x007f0000;
397 			data |= PCI_HEADER_TYPE_BRIDGE << 16;
398 		}
399 
400 		if ((offset & ~3) == ADVK_ROOT_PORT_PCI_EXP_OFF + PCI_EXP_RTCTL) {
401 			/* CRSSVE bit is stored only in cache */
402 			if (pcie->cfgcrssve)
403 				data |= PCI_EXP_RTCTL_CRSSVE;
404 		}
405 
406 		if ((offset & ~3) == ADVK_ROOT_PORT_PCI_EXP_OFF + (PCI_EXP_RTCAP & ~3)) {
407 			/* CRS is emulated below, so set CRSVIS capability */
408 			data |= PCI_EXP_RTCAP_CRSVIS << 16;
409 		}
410 
411 		*valuep = pci_conv_32_to_size(data, offset, size);
412 
413 		return 0;
414 	}
415 
416 	/*
417 	 * Returning fabricated CRS value (0xFFFF0001) by PCIe Root Complex to
418 	 * OS is allowed only for 4-byte PCI_VENDOR_ID config read request and
419 	 * only when CRSSVE bit in Root Port PCIe device is enabled. In all
420 	 * other error PCIe Root Complex must return all-ones.
421 	 *
422 	 * U-Boot currently does not support handling of CRS return value for
423 	 * PCI_VENDOR_ID config read request and also does not set CRSSVE bit.
424 	 * So it means that pcie->cfgcrssve is false. But the code is prepared
425 	 * for returning CRS, so that if U-Boot does support CRS in the future,
426 	 * it will work for Aardvark.
427 	 */
428 	allow_crs = (offset == PCI_VENDOR_ID) && (size == PCI_SIZE_32) && pcie->cfgcrssve;
429 
430 	if (advk_readl(pcie, ADVK_PIO_START)) {
431 		dev_err(pcie->dev,
432 			"Previous PIO read/write transfer is still running\n");
433 		if (allow_crs) {
434 			*valuep = CFG_RD_CRS_VAL;
435 			return 0;
436 		}
437 		*valuep = pci_get_ff(size);
438 		return -EAGAIN;
439 	}
440 
441 	/* Program the control register */
442 	reg = advk_readl(pcie, ADVK_PIO_CTRL);
443 	reg &= ~ADVK_PIO_CTRL_TYPE_MASK;
444 	if (busno == pcie->sec_busno)
445 		reg |= ADVK_PIO_CTRL_TYPE_RD_TYPE0 << ADVK_PIO_CTRL_TYPE_SHIFT;
446 	else
447 		reg |= ADVK_PIO_CTRL_TYPE_RD_TYPE1 << ADVK_PIO_CTRL_TYPE_SHIFT;
448 	advk_writel(pcie, reg, ADVK_PIO_CTRL);
449 
450 	/* Program the address registers */
451 	reg = PCIE_ECAM_OFFSET(busno, PCI_DEV(bdf), PCI_FUNC(bdf), (offset & ~0x3));
452 	advk_writel(pcie, reg, ADVK_PIO_ADDR_LS);
453 	advk_writel(pcie, 0, ADVK_PIO_ADDR_MS);
454 
455 	/* Program the data strobe */
456 	advk_writel(pcie, 0xf, ADVK_PIO_WR_DATA_STRB);
457 
458 	retry_count = 0;
459 
460 retry:
461 	/* Start the transfer */
462 	advk_writel(pcie, 1, ADVK_PIO_ISR);
463 	advk_writel(pcie, 1, ADVK_PIO_START);
464 
465 	ret = pcie_advk_wait_pio(pcie);
466 	if (ret < 0) {
467 		if (allow_crs) {
468 			*valuep = CFG_RD_CRS_VAL;
469 			return 0;
470 		}
471 		*valuep = pci_get_ff(size);
472 		return ret;
473 	}
474 
475 	retry_count += ret;
476 
477 	/* Check PIO status and get the read result */
478 	ret = pcie_advk_check_pio_status(pcie, allow_crs, &reg);
479 	if (ret == -EAGAIN && retry_count < PIO_MAX_RETRIES)
480 		goto retry;
481 	if (ret) {
482 		*valuep = pci_get_ff(size);
483 		return ret;
484 	}
485 
486 	dev_dbg(pcie->dev, "(addr,size,val)=(0x%04x, %d, 0x%08x)\n",
487 		offset, size, reg);
488 	*valuep = pci_conv_32_to_size(reg, offset, size);
489 
490 	return 0;
491 }
492 
493 /**
494  * pcie_calc_datastrobe() - Calculate data strobe
495  *
496  * @offset: The offset into the device's configuration space
497  * @size: Indicates the size of access to perform
498  *
499  * Calculate data strobe according to offset and size
500  *
501  */
pcie_calc_datastrobe(uint offset,enum pci_size_t size)502 static uint pcie_calc_datastrobe(uint offset, enum pci_size_t size)
503 {
504 	uint bytes, data_strobe;
505 
506 	switch (size) {
507 	case PCI_SIZE_8:
508 		bytes = 1;
509 		break;
510 	case PCI_SIZE_16:
511 		bytes = 2;
512 		break;
513 	default:
514 		bytes = 4;
515 	}
516 
517 	data_strobe = GENMASK(bytes - 1, 0) << (offset & 0x3);
518 
519 	return data_strobe;
520 }
521 
522 /**
523  * pcie_advk_write_config() - Write to configuration space
524  *
525  * @bus: Pointer to the PCI bus
526  * @bdf: Identifies the PCIe device to access
527  * @offset: The offset into the device's configuration space
528  * @value: The value to write
529  * @size: Indicates the size of access to perform
530  *
531  * Write the value @value of size @size from offset @offset within the
532  * configuration space of the device identified by the bus, device & function
533  * numbers in @bdf on the PCI bus @bus.
534  *
535  * Return: 0 on success
536  */
pcie_advk_write_config(struct udevice * bus,pci_dev_t bdf,uint offset,ulong value,enum pci_size_t size)537 static int pcie_advk_write_config(struct udevice *bus, pci_dev_t bdf,
538 				  uint offset, ulong value,
539 				  enum pci_size_t size)
540 {
541 	struct pcie_advk *pcie = dev_get_priv(bus);
542 	int busno = PCI_BUS(bdf) - dev_seq(bus);
543 	int retry_count;
544 	ulong data;
545 	uint reg;
546 	int ret;
547 
548 	dev_dbg(pcie->dev, "PCIE CFG write: (b,d,f)=(%2d,%2d,%2d) ",
549 		PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf));
550 	dev_dbg(pcie->dev, "(addr,size,val)=(0x%04x, %d, 0x%08lx)\n",
551 		offset, size, value);
552 
553 	if (!pcie_advk_addr_valid(pcie, busno, PCI_DEV(bdf), PCI_FUNC(bdf))) {
554 		dev_dbg(pcie->dev, "- out of range\n");
555 		return 0;
556 	}
557 
558 	/*
559 	 * As explained in pcie_advk_read_config(), PCI Bridge config registers
560 	 * are available directly in Aardvark memory space starting at offset
561 	 * zero. Type 1 specific registers are not available, so we write their
562 	 * content only into driver virtual cfgcache[].
563 	 */
564 	if (busno == 0) {
565 		if ((offset >= 0x10 && offset < 0x34) ||
566 		    (offset >= 0x38 && offset < 0x3c)) {
567 			data = pcie->cfgcache[(offset - 0x10) / 4];
568 			data = pci_conv_size_to_32(data, value, offset, size);
569 			/* This PCI bridge does not have configurable bars */
570 			if ((offset & ~3) == PCI_BASE_ADDRESS_0 ||
571 			    (offset & ~3) == PCI_BASE_ADDRESS_1 ||
572 			    (offset & ~3) == PCI_ROM_ADDRESS1)
573 				data = 0x0;
574 			pcie->cfgcache[(offset - 0x10) / 4] = data;
575 		} else {
576 			data = advk_readl(pcie, ADVK_ROOT_PORT_PCI_CFG_OFF + (offset & ~3));
577 			data = pci_conv_size_to_32(data, value, offset, size);
578 			advk_writel(pcie, data, ADVK_ROOT_PORT_PCI_CFG_OFF + (offset & ~3));
579 		}
580 
581 		if (offset == PCI_SECONDARY_BUS ||
582 		    (offset == PCI_PRIMARY_BUS && size != PCI_SIZE_8))
583 			pcie->sec_busno = (data >> 8) & 0xff;
584 
585 		if ((offset & ~3) == ADVK_ROOT_PORT_PCI_EXP_OFF + PCI_EXP_RTCTL)
586 			pcie->cfgcrssve = data & PCI_EXP_RTCTL_CRSSVE;
587 
588 		return 0;
589 	}
590 
591 	if (advk_readl(pcie, ADVK_PIO_START)) {
592 		dev_err(pcie->dev,
593 			"Previous PIO read/write transfer is still running\n");
594 		return -EAGAIN;
595 	}
596 
597 	/* Program the control register */
598 	reg = advk_readl(pcie, ADVK_PIO_CTRL);
599 	reg &= ~ADVK_PIO_CTRL_TYPE_MASK;
600 	if (busno == pcie->sec_busno)
601 		reg |= ADVK_PIO_CTRL_TYPE_WR_TYPE0 << ADVK_PIO_CTRL_TYPE_SHIFT;
602 	else
603 		reg |= ADVK_PIO_CTRL_TYPE_WR_TYPE1 << ADVK_PIO_CTRL_TYPE_SHIFT;
604 	advk_writel(pcie, reg, ADVK_PIO_CTRL);
605 
606 	/* Program the address registers */
607 	reg = PCIE_ECAM_OFFSET(busno, PCI_DEV(bdf), PCI_FUNC(bdf), (offset & ~0x3));
608 	advk_writel(pcie, reg, ADVK_PIO_ADDR_LS);
609 	advk_writel(pcie, 0, ADVK_PIO_ADDR_MS);
610 	dev_dbg(pcie->dev, "\tPIO req. - addr = 0x%08x\n", reg);
611 
612 	/* Program the data register */
613 	reg = pci_conv_size_to_32(0, value, offset, size);
614 	advk_writel(pcie, reg, ADVK_PIO_WR_DATA);
615 	dev_dbg(pcie->dev, "\tPIO req. - val  = 0x%08x\n", reg);
616 
617 	/* Program the data strobe */
618 	reg = pcie_calc_datastrobe(offset, size);
619 	advk_writel(pcie, reg, ADVK_PIO_WR_DATA_STRB);
620 	dev_dbg(pcie->dev, "\tPIO req. - strb = 0x%02x\n", reg);
621 
622 	retry_count = 0;
623 
624 retry:
625 	/* Start the transfer */
626 	advk_writel(pcie, 1, ADVK_PIO_ISR);
627 	advk_writel(pcie, 1, ADVK_PIO_START);
628 
629 	ret = pcie_advk_wait_pio(pcie);
630 	if (ret < 0)
631 		return ret;
632 
633 	retry_count += ret;
634 
635 	/* Check PIO status */
636 	ret = pcie_advk_check_pio_status(pcie, false, NULL);
637 	if (ret == -EAGAIN && retry_count < PIO_MAX_RETRIES)
638 		goto retry;
639 	return ret;
640 }
641 
642 /**
643  * pcie_advk_wait_for_link() - Wait for link training to be accomplished
644  *
645  * @pcie: The PCI device to access
646  *
647  * Wait up to 1 second for link training to be accomplished.
648  */
pcie_advk_wait_for_link(struct pcie_advk * pcie)649 static void pcie_advk_wait_for_link(struct pcie_advk *pcie)
650 {
651 	int retries;
652 
653 	/* check if the link is up or not */
654 	for (retries = 0; retries < LINK_MAX_RETRIES; retries++) {
655 		if (pcie_advk_link_up(pcie)) {
656 			printf("PCIe: Link up\n");
657 			return;
658 		}
659 
660 		udelay(LINK_WAIT_TIMEOUT);
661 	}
662 
663 	printf("PCIe: Link down\n");
664 }
665 
666 /*
667  * Set PCIe address window register which could be used for memory
668  * mapping.
669  */
pcie_advk_set_ob_win(struct pcie_advk * pcie,u8 win_num,phys_addr_t match,phys_addr_t remap,phys_addr_t mask,u32 actions)670 static void pcie_advk_set_ob_win(struct pcie_advk *pcie, u8 win_num,
671 				 phys_addr_t match, phys_addr_t remap,
672 				 phys_addr_t mask, u32 actions)
673 {
674 	advk_writel(pcie, ADVK_OB_WIN_ENABLE |
675 			  lower_32_bits(match), ADVK_OB_WIN_MATCH_LS(win_num));
676 	advk_writel(pcie, upper_32_bits(match), ADVK_OB_WIN_MATCH_MS(win_num));
677 	advk_writel(pcie, lower_32_bits(remap), ADVK_OB_WIN_REMAP_LS(win_num));
678 	advk_writel(pcie, upper_32_bits(remap), ADVK_OB_WIN_REMAP_MS(win_num));
679 	advk_writel(pcie, lower_32_bits(mask), ADVK_OB_WIN_MASK_LS(win_num));
680 	advk_writel(pcie, upper_32_bits(mask), ADVK_OB_WIN_MASK_MS(win_num));
681 	advk_writel(pcie, actions, ADVK_OB_WIN_ACTIONS(win_num));
682 }
683 
pcie_advk_disable_ob_win(struct pcie_advk * pcie,u8 win_num)684 static void pcie_advk_disable_ob_win(struct pcie_advk *pcie, u8 win_num)
685 {
686 	advk_writel(pcie, 0, ADVK_OB_WIN_MATCH_LS(win_num));
687 	advk_writel(pcie, 0, ADVK_OB_WIN_MATCH_MS(win_num));
688 	advk_writel(pcie, 0, ADVK_OB_WIN_REMAP_LS(win_num));
689 	advk_writel(pcie, 0, ADVK_OB_WIN_REMAP_MS(win_num));
690 	advk_writel(pcie, 0, ADVK_OB_WIN_MASK_LS(win_num));
691 	advk_writel(pcie, 0, ADVK_OB_WIN_MASK_MS(win_num));
692 	advk_writel(pcie, 0, ADVK_OB_WIN_ACTIONS(win_num));
693 }
694 
pcie_advk_set_ob_region(struct pcie_advk * pcie,int * wins,struct pci_region * region,u32 actions)695 static void pcie_advk_set_ob_region(struct pcie_advk *pcie, int *wins,
696 				    struct pci_region *region, u32 actions)
697 {
698 	phys_addr_t phys_start = region->phys_start;
699 	pci_addr_t bus_start = region->bus_start;
700 	pci_size_t size = region->size;
701 	phys_addr_t win_mask;
702 	u64 win_size;
703 
704 	if (*wins == -1)
705 		return;
706 
707 	/*
708 	 * The n-th PCIe window is configured by tuple (match, remap, mask)
709 	 * and an access to address A uses this window if A matches the
710 	 * match with given mask.
711 	 * So every PCIe window size must be a power of two and every start
712 	 * address must be aligned to window size. Minimal size is 64 KiB
713 	 * because lower 16 bits of mask must be zero. Remapped address
714 	 * may have set only bits from the mask.
715 	 */
716 	while (*wins < ADVK_OB_WIN_COUNT && size > 0) {
717 		/* Calculate the largest aligned window size */
718 		win_size = (1ULL << (fls64(size) - 1)) |
719 			   (phys_start ? (1ULL << __ffs64(phys_start)) : 0);
720 		win_size = 1ULL << __ffs64(win_size);
721 		win_mask = ~(win_size - 1);
722 		if (win_size < 0x10000 || (bus_start & ~win_mask))
723 			break;
724 
725 		dev_dbg(pcie->dev,
726 			"Configuring PCIe window %d: [0x%llx-0x%llx] as 0x%x\n",
727 			*wins, (u64)phys_start, (u64)phys_start + win_size,
728 			actions);
729 		pcie_advk_set_ob_win(pcie, *wins, phys_start, bus_start,
730 				     win_mask, actions);
731 
732 		phys_start += win_size;
733 		bus_start += win_size;
734 		size -= win_size;
735 		(*wins)++;
736 	}
737 
738 	if (size > 0) {
739 		*wins = -1;
740 		dev_err(pcie->dev,
741 			"Invalid PCIe region [0x%llx-0x%llx]\n",
742 			(u64)region->phys_start,
743 			(u64)region->phys_start + region->size);
744 	}
745 }
746 
747 /**
748  * pcie_advk_setup_hw() - PCIe initailzation
749  *
750  * @pcie: The PCI device to access
751  *
752  * Return: 0 on success
753  */
pcie_advk_setup_hw(struct pcie_advk * pcie)754 static int pcie_advk_setup_hw(struct pcie_advk *pcie)
755 {
756 	struct pci_region *io, *mem, *pref;
757 	int i, wins;
758 	u32 reg;
759 
760 	/* Set from Command to Direct mode */
761 	reg = advk_readl(pcie, ADVK_CORE_CTRL_CONFIG);
762 	reg &= ~ADVK_CORE_CTRL_CONFIG_COMMAND_MODE;
763 	advk_writel(pcie, reg, ADVK_CORE_CTRL_CONFIG);
764 
765 	/* Set PCI global control register to RC mode */
766 	reg = advk_readl(pcie, ADVK_GLOBAL_CTRL0);
767 	reg |= ADVK_GLOBAL_CTRL0_IS_RC;
768 	advk_writel(pcie, reg, ADVK_GLOBAL_CTRL0);
769 
770 	/*
771 	 * Replace incorrect PCI vendor id value 0x1b4b by correct value 0x11ab.
772 	 * ADVK_LMI_VENDOR_ID contains vendor id in low 16 bits and subsystem vendor
773 	 * id in high 16 bits. Updating this register changes readback value of
774 	 * read-only vendor id bits in Root Port PCI_VENDOR_ID register. Workaround
775 	 * for erratum 4.1: "The value of device and vendor ID is incorrect".
776 	 */
777 	advk_writel(pcie, 0x11ab11ab, ADVK_LMI_VENDOR_ID);
778 
779 	/*
780 	 * Change Class Code of PCI Bridge device to PCI Bridge (0x600400),
781 	 * because default value is Mass Storage Controller (0x010400), causing
782 	 * U-Boot to fail to recognize it as P2P Bridge.
783 	 *
784 	 * Note that this Aardvark PCI Bridge does not have a compliant Type 1
785 	 * Configuration Space and it even cannot be accessed via Aardvark's
786 	 * PCI config space access method. Aardvark PCI Bridge Config space is
787 	 * available in internal Aardvark registers starting at offset 0x0
788 	 * and has format of Type 0 config space.
789 	 *
790 	 * Moreover Type 0 BAR registers (ranges 0x10 - 0x28 and 0x30 - 0x34)
791 	 * have the same format in Marvell's specification as in PCIe
792 	 * specification, but their meaning is totally different (and not even
793 	 * the same meaning as explained in the corresponding comment in the
794 	 * pci_mvebu driver; aardvark is still different).
795 	 *
796 	 * So our driver converts Type 0 config space to Type 1 and reports
797 	 * Header Type as Type 1. Access to BAR registers and to non-existent
798 	 * Type 1 registers is redirected to the virtual cfgcache[] buffer,
799 	 * which avoids changing unrelated registers.
800 	 */
801 	reg = advk_readl(pcie, ADVK_ROOT_PORT_PCI_CFG_OFF + PCI_CLASS_REVISION);
802 	reg &= ~0xffffff00;
803 	reg |= PCI_CLASS_BRIDGE_PCI_NORMAL << 8;
804 	advk_writel(pcie, reg, ADVK_ROOT_PORT_PCI_CFG_OFF + PCI_CLASS_REVISION);
805 
806 	/* Enable generation and checking of ECRC on PCIe Root Port */
807 	reg = advk_readl(pcie, ADVK_ROOT_PORT_PCI_ERR_OFF + PCI_ERR_CAP);
808 	reg |= PCI_ERR_CAP_ECRC_GENE | PCI_ERR_CAP_ECRC_CHKE;
809 	advk_writel(pcie, reg, ADVK_ROOT_PORT_PCI_ERR_OFF + PCI_ERR_CAP);
810 
811 	/* Set PCIe Device Control register on PCIe Root Port */
812 	reg = advk_readl(pcie, ADVK_ROOT_PORT_PCI_EXP_OFF + PCI_EXP_DEVCTL);
813 	reg &= ~PCI_EXP_DEVCTL_RELAX_EN;
814 	reg &= ~PCI_EXP_DEVCTL_NOSNOOP_EN;
815 	reg &= ~PCI_EXP_DEVCTL_PAYLOAD;
816 	reg &= ~PCI_EXP_DEVCTL_READRQ;
817 	reg |= PCI_EXP_DEVCTL_PAYLOAD_512B;
818 	reg |= PCI_EXP_DEVCTL_READRQ_512B;
819 	advk_writel(pcie, reg, ADVK_ROOT_PORT_PCI_EXP_OFF + PCI_EXP_DEVCTL);
820 
821 	/* Program PCIe Control 2 to disable strict ordering */
822 	reg = advk_readl(pcie, ADVK_GLOBAL_CTRL2);
823 	reg &= ~ADVK_GLOBAL_CTRL2_STRICT_ORDER_EN;
824 	advk_writel(pcie, reg, ADVK_GLOBAL_CTRL2);
825 
826 	/* Set GEN2 */
827 	reg = advk_readl(pcie, ADVK_GLOBAL_CTRL0);
828 	reg &= ~ADVK_GLOBAL_CTRL0_SPEED_GEN_MASK;
829 	reg |= ADVK_GLOBAL_CTRL0_SPEED_GEN_2 << ADVK_GLOBAL_CTRL0_SPEED_GEN_SHIFT;
830 	advk_writel(pcie, reg, ADVK_GLOBAL_CTRL0);
831 
832 	/* Set lane X1 */
833 	reg = advk_readl(pcie, ADVK_GLOBAL_CTRL0);
834 	reg &= ~ADVK_GLOBAL_CTRL0_LANE_COUNT_MASK;
835 	reg |= ADVK_GLOBAL_CTRL0_LANE_COUNT_1 << ADVK_GLOBAL_CTRL0_LANE_COUNT_SHIFT;
836 	advk_writel(pcie, reg, ADVK_GLOBAL_CTRL0);
837 
838 	/* Enable link training */
839 	reg = advk_readl(pcie, ADVK_GLOBAL_CTRL0);
840 	reg |= ADVK_GLOBAL_CTRL0_LINK_TRAINING_EN;
841 	advk_writel(pcie, reg, ADVK_GLOBAL_CTRL0);
842 
843 	/*
844 	 * Enable AXI address window location generation:
845 	 * When it is enabled, the default outbound window
846 	 * configurations (Default User Field: 0xD0074CFC)
847 	 * are used to transparent address translation for
848 	 * the outbound transactions. Thus, PCIe address
849 	 * windows are not required for transparent memory
850 	 * access when default outbound window configuration
851 	 * is set for memory access.
852 	 */
853 	reg = advk_readl(pcie, ADVK_GLOBAL_CTRL2);
854 	reg |= ADVK_GLOBAL_CTRL2_ADDRWIN_MAP_EN;
855 	advk_writel(pcie, reg, ADVK_GLOBAL_CTRL2);
856 
857 	/*
858 	 * Bypass the address window mapping for PIO:
859 	 * Since PIO access already contains all required
860 	 * info over AXI interface by PIO registers, the
861 	 * address window is not required.
862 	 */
863 	reg = advk_readl(pcie, ADVK_PIO_CTRL);
864 	reg |= ADVK_PIO_CTRL_ADDR_WIN_DISABLE;
865 	advk_writel(pcie, reg, ADVK_PIO_CTRL);
866 
867 	/*
868 	 * Set memory access in Default User Field so it
869 	 * is not required to configure PCIe address for
870 	 * transparent memory access.
871 	 */
872 	advk_writel(pcie, ADVK_OB_WIN_TYPE_MEM, ADVK_OB_WIN_DEFAULT_ACTIONS);
873 
874 	/*
875 	 * Configure PCIe address windows for non-memory or
876 	 * non-transparent access as by default PCIe uses
877 	 * transparent memory access.
878 	 */
879 	wins = 0;
880 	pci_get_regions(pcie->dev, &io, &mem, &pref);
881 	if (io)
882 		pcie_advk_set_ob_region(pcie, &wins, io, ADVK_OB_WIN_TYPE_IO);
883 	if (mem && mem->phys_start != mem->bus_start)
884 		pcie_advk_set_ob_region(pcie, &wins, mem, ADVK_OB_WIN_TYPE_MEM);
885 	if (pref && pref->phys_start != pref->bus_start)
886 		pcie_advk_set_ob_region(pcie, &wins, pref, ADVK_OB_WIN_TYPE_MEM);
887 
888 	/* Disable remaining PCIe outbound windows */
889 	for (i = ((wins >= 0) ? wins : 0); i < ADVK_OB_WIN_COUNT; i++)
890 		pcie_advk_disable_ob_win(pcie, i);
891 
892 	if (wins == -1)
893 		return -EINVAL;
894 
895 	/* Wait for PCIe link up */
896 	pcie_advk_wait_for_link(pcie);
897 
898 	return 0;
899 }
900 
901 /**
902  * pcie_advk_probe() - Probe the PCIe bus for active link
903  *
904  * @dev: A pointer to the device being operated on
905  *
906  * Probe for an active link on the PCIe bus and configure the controller
907  * to enable this port.
908  *
909  * Return: 0 on success, else -ENODEV
910  */
pcie_advk_probe(struct udevice * dev)911 static int pcie_advk_probe(struct udevice *dev)
912 {
913 	struct pcie_advk *pcie = dev_get_priv(dev);
914 
915 	gpio_request_by_name(dev, "reset-gpios", 0, &pcie->reset_gpio,
916 			     GPIOD_IS_OUT);
917 	/*
918 	 * Issue reset to add-in card through the dedicated GPIO.
919 	 * Some boards are connecting the card reset pin to common system
920 	 * reset wire and others are using separate GPIO port.
921 	 * In the last case we have to release a reset of the addon card
922 	 * using this GPIO.
923 	 *
924 	 * FIX-ME:
925 	 *     The PCIe RESET signal is not supposed to be released along
926 	 *     with the SOC RESET signal. It should be lowered as early as
927 	 *     possible before PCIe PHY initialization. Moreover, the PCIe
928 	 *     clock should be gated as well.
929 	 */
930 	if (dm_gpio_is_valid(&pcie->reset_gpio)) {
931 		dev_dbg(dev, "Toggle PCIE Reset GPIO ...\n");
932 		dm_gpio_set_value(&pcie->reset_gpio, 1);
933 		mdelay(200);
934 		dm_gpio_set_value(&pcie->reset_gpio, 0);
935 	} else {
936 		dev_warn(dev, "PCIE Reset on GPIO support is missing\n");
937 	}
938 
939 	pcie->dev = pci_get_controller(dev);
940 
941 	/* PCI Bridge support 32-bit I/O and 64-bit prefetch mem addressing */
942 	pcie->cfgcache[(PCI_IO_BASE - 0x10) / 4] =
943 		PCI_IO_RANGE_TYPE_32 | (PCI_IO_RANGE_TYPE_32 << 8);
944 	pcie->cfgcache[(PCI_PREF_MEMORY_BASE - 0x10) / 4] =
945 		PCI_PREF_RANGE_TYPE_64 | (PCI_PREF_RANGE_TYPE_64 << 16);
946 
947 	return pcie_advk_setup_hw(pcie);
948 }
949 
pcie_advk_remove(struct udevice * dev)950 static int pcie_advk_remove(struct udevice *dev)
951 {
952 	struct pcie_advk *pcie = dev_get_priv(dev);
953 	u32 reg;
954 	int i;
955 
956 	for (i = 0; i < ADVK_OB_WIN_COUNT; i++)
957 		pcie_advk_disable_ob_win(pcie, i);
958 
959 	reg = advk_readl(pcie, ADVK_ROOT_PORT_PCI_CFG_OFF + PCI_COMMAND);
960 	reg &= ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
961 	advk_writel(pcie, reg, ADVK_ROOT_PORT_PCI_CFG_OFF + PCI_COMMAND);
962 
963 	reg = advk_readl(pcie, ADVK_GLOBAL_CTRL0);
964 	reg &= ~ADVK_GLOBAL_CTRL0_LINK_TRAINING_EN;
965 	advk_writel(pcie, reg, ADVK_GLOBAL_CTRL0);
966 
967 	return 0;
968 }
969 
970 /**
971  * pcie_advk_of_to_plat() - Translate from DT to device state
972  *
973  * @dev: A pointer to the device being operated on
974  *
975  * Translate relevant data from the device tree pertaining to device @dev into
976  * state that the driver will later make use of. This state is stored in the
977  * device's private data structure.
978  *
979  * Return: 0 on success, else -EINVAL
980  */
pcie_advk_of_to_plat(struct udevice * dev)981 static int pcie_advk_of_to_plat(struct udevice *dev)
982 {
983 	struct pcie_advk *pcie = dev_get_priv(dev);
984 
985 	/* Get the register base address */
986 	pcie->base = dev_read_addr_ptr(dev);
987 	if (!pcie->base)
988 		return -EINVAL;
989 
990 	return 0;
991 }
992 
993 static const struct dm_pci_ops pcie_advk_ops = {
994 	.read_config	= pcie_advk_read_config,
995 	.write_config	= pcie_advk_write_config,
996 };
997 
998 static const struct udevice_id pcie_advk_ids[] = {
999 	{ .compatible = "marvell,armada-3700-pcie" },
1000 	{ }
1001 };
1002 
1003 U_BOOT_DRIVER(pcie_advk) = {
1004 	.name			= "pcie_advk",
1005 	.id			= UCLASS_PCI,
1006 	.of_match		= pcie_advk_ids,
1007 	.ops			= &pcie_advk_ops,
1008 	.of_to_plat	= pcie_advk_of_to_plat,
1009 	.probe			= pcie_advk_probe,
1010 	.remove			= pcie_advk_remove,
1011 	.flags			= DM_FLAG_OS_PREPARE,
1012 	.priv_auto	= sizeof(struct pcie_advk),
1013 };
1014