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.
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.
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 * ***************************************************************************
20 * Ported from Linux driver - driver/pci/host/pci-aardvark.c
31 #include <asm-generic/gpio.h>
32 #include <dm/device_compat.h>
33 #include <linux/bitops.h>
34 #include <linux/delay.h>
35 #include <linux/ioport.h>
37 /* PCIe Root Port register offsets */
38 #define ADVK_ROOT_PORT_PCI_CFG_OFF 0x0
39 #define ADVK_ROOT_PORT_PCI_EXP_OFF 0xc0
40 #define ADVK_ROOT_PORT_PCI_ERR_OFF 0x100
43 #define ADVK_PIO_BASE_ADDR 0x4000
44 #define ADVK_PIO_CTRL (ADVK_PIO_BASE_ADDR + 0x0)
45 #define ADVK_PIO_CTRL_TYPE_MASK GENMASK(3, 0)
46 #define ADVK_PIO_CTRL_TYPE_SHIFT 0
47 #define ADVK_PIO_CTRL_TYPE_RD_TYPE0 0x8
48 #define ADVK_PIO_CTRL_TYPE_RD_TYPE1 0x9
49 #define ADVK_PIO_CTRL_TYPE_WR_TYPE0 0xa
50 #define ADVK_PIO_CTRL_TYPE_WR_TYPE1 0xb
51 #define ADVK_PIO_CTRL_ADDR_WIN_DISABLE BIT(24)
52 #define ADVK_PIO_STAT (ADVK_PIO_BASE_ADDR + 0x4)
53 #define ADVK_PIO_COMPLETION_STATUS_MASK GENMASK(9, 7)
54 #define ADVK_PIO_COMPLETION_STATUS_SHIFT 7
55 #define ADVK_PIO_COMPLETION_STATUS_OK 0
56 #define ADVK_PIO_COMPLETION_STATUS_UR 1
57 #define ADVK_PIO_COMPLETION_STATUS_CRS 2
58 #define ADVK_PIO_COMPLETION_STATUS_CA 4
59 #define ADVK_PIO_NON_POSTED_REQ BIT(10)
60 #define ADVK_PIO_ERR_STATUS BIT(11)
61 #define ADVK_PIO_ADDR_LS (ADVK_PIO_BASE_ADDR + 0x8)
62 #define ADVK_PIO_ADDR_MS (ADVK_PIO_BASE_ADDR + 0xc)
63 #define ADVK_PIO_WR_DATA (ADVK_PIO_BASE_ADDR + 0x10)
64 #define ADVK_PIO_WR_DATA_STRB (ADVK_PIO_BASE_ADDR + 0x14)
65 #define ADVK_PIO_RD_DATA (ADVK_PIO_BASE_ADDR + 0x18)
66 #define ADVK_PIO_START (ADVK_PIO_BASE_ADDR + 0x1c)
67 #define ADVK_PIO_ISR (ADVK_PIO_BASE_ADDR + 0x20)
69 /* Global Control registers */
70 #define ADVK_GLOBAL_CTRL_BASE_ADDR 0x4800
71 #define ADVK_GLOBAL_CTRL0 (ADVK_GLOBAL_CTRL_BASE_ADDR + 0x0)
72 #define ADVK_GLOBAL_CTRL0_SPEED_GEN_MASK GENMASK(1, 0)
73 #define ADVK_GLOBAL_CTRL0_SPEED_GEN_SHIFT 0
74 #define ADVK_GLOBAL_CTRL0_SPEED_GEN_1 0
75 #define ADVK_GLOBAL_CTRL0_SPEED_GEN_2 1
76 #define ADVK_GLOBAL_CTRL0_SPEED_GEN_3 2
77 #define ADVK_GLOBAL_CTRL0_IS_RC BIT(2)
78 #define ADVK_GLOBAL_CTRL0_LANE_COUNT_MASK GENMASK(4, 3)
79 #define ADVK_GLOBAL_CTRL0_LANE_COUNT_SHIFT 3
80 #define ADVK_GLOBAL_CTRL0_LANE_COUNT_1 0
81 #define ADVK_GLOBAL_CTRL0_LANE_COUNT_2 1
82 #define ADVK_GLOBAL_CTRL0_LANE_COUNT_4 2
83 #define ADVK_GLOBAL_CTRL0_LANE_COUNT_8 3
84 #define ADVK_GLOBAL_CTRL0_LINK_TRAINING_EN BIT(6)
85 #define ADVK_GLOBAL_CTRL2 (ADVK_GLOBAL_CTRL_BASE_ADDR + 0x8)
86 #define ADVK_GLOBAL_CTRL2_STRICT_ORDER_EN BIT(5)
87 #define ADVK_GLOBAL_CTRL2_ADDRWIN_MAP_EN BIT(6)
89 /* PCIe window configuration registers */
90 #define ADVK_OB_WIN_BASE_ADDR 0x4c00
91 #define ADVK_OB_WIN_BLOCK_SIZE 0x20
92 #define ADVK_OB_WIN_COUNT 8
93 #define ADVK_OB_WIN_REG_ADDR(win, offset) (ADVK_OB_WIN_BASE_ADDR + ADVK_OB_WIN_BLOCK_SIZE * (win) + (offset))
94 #define ADVK_OB_WIN_MATCH_LS(win) ADVK_OB_WIN_REG_ADDR(win, 0x00)
95 #define ADVK_OB_WIN_ENABLE BIT(0)
96 #define ADVK_OB_WIN_MATCH_MS(win) ADVK_OB_WIN_REG_ADDR(win, 0x04)
97 #define ADVK_OB_WIN_REMAP_LS(win) ADVK_OB_WIN_REG_ADDR(win, 0x08)
98 #define ADVK_OB_WIN_REMAP_MS(win) ADVK_OB_WIN_REG_ADDR(win, 0x0c)
99 #define ADVK_OB_WIN_MASK_LS(win) ADVK_OB_WIN_REG_ADDR(win, 0x10)
100 #define ADVK_OB_WIN_MASK_MS(win) ADVK_OB_WIN_REG_ADDR(win, 0x14)
101 #define ADVK_OB_WIN_ACTIONS(win) ADVK_OB_WIN_REG_ADDR(win, 0x18)
102 #define ADVK_OB_WIN_DEFAULT_ACTIONS (ADVK_OB_WIN_ACTIONS(ADVK_OB_WIN_COUNT-1) + 0x4)
103 #define ADVK_OB_WIN_FUNC_NUM_MASK GENMASK(31, 24)
104 #define ADVK_OB_WIN_FUNC_NUM_SHIFT 24
105 #define ADVK_OB_WIN_FUNC_NUM_ENABLE BIT(23)
106 #define ADVK_OB_WIN_BUS_NUM_BITS_MASK GENMASK(22, 20)
107 #define ADVK_OB_WIN_BUS_NUM_BITS_SHIFT 20
108 #define ADVK_OB_WIN_MSG_CODE_ENABLE BIT(22)
109 #define ADVK_OB_WIN_MSG_CODE_MASK GENMASK(21, 14)
110 #define ADVK_OB_WIN_MSG_CODE_SHIFT 14
111 #define ADVK_OB_WIN_MSG_PAYLOAD_LEN BIT(12)
112 #define ADVK_OB_WIN_ATTR_ENABLE BIT(11)
113 #define ADVK_OB_WIN_ATTR_TC_MASK GENMASK(10, 8)
114 #define ADVK_OB_WIN_ATTR_TC_SHIFT 8
115 #define ADVK_OB_WIN_ATTR_RELAXED BIT(7)
116 #define ADVK_OB_WIN_ATTR_NOSNOOP BIT(6)
117 #define ADVK_OB_WIN_ATTR_POISON BIT(5)
118 #define ADVK_OB_WIN_ATTR_IDO BIT(4)
119 #define ADVK_OB_WIN_TYPE_MASK GENMASK(3, 0)
120 #define ADVK_OB_WIN_TYPE_SHIFT 0
121 #define ADVK_OB_WIN_TYPE_MEM 0x0
122 #define ADVK_OB_WIN_TYPE_IO 0x4
123 #define ADVK_OB_WIN_TYPE_CONFIG_TYPE0 0x8
124 #define ADVK_OB_WIN_TYPE_CONFIG_TYPE1 0x9
125 #define ADVK_OB_WIN_TYPE_MSG 0xc
127 /* Local Management Interface registers */
128 #define ADVK_LMI_BASE_ADDR 0x6000
129 #define ADVK_LMI_PHY_CFG0 (ADVK_LMI_BASE_ADDR + 0x0)
130 #define ADVK_LMI_PHY_CFG0_LTSSM_MASK GENMASK(29, 24)
131 #define ADVK_LMI_PHY_CFG0_LTSSM_SHIFT 24
132 #define ADVK_LMI_PHY_CFG0_LTSSM_L0 0x10
133 #define ADVK_LMI_PHY_CFG0_LTSSM_DISABLED 0x20
134 #define ADVK_LMI_VENDOR_ID (ADVK_LMI_BASE_ADDR + 0x44)
136 /* Core Control registers */
137 #define ADVK_CORE_CTRL_BASE_ADDR 0x18000
138 #define ADVK_CORE_CTRL_CONFIG (ADVK_CORE_CTRL_BASE_ADDR + 0x0)
139 #define ADVK_CORE_CTRL_CONFIG_COMMAND_MODE BIT(0)
141 /* PCIe Retries & Timeout definitions */
142 #define PIO_MAX_RETRIES 1500
143 #define PIO_WAIT_TIMEOUT 1000
144 #define LINK_MAX_RETRIES 10
145 #define LINK_WAIT_TIMEOUT 100000
147 #define CFG_RD_CRS_VAL 0xFFFF0001
150 * struct pcie_advk - Advk PCIe controller state
152 * @base: The base address of the register space.
153 * @sec_busno: Bus number for the device behind the PCIe root-port.
154 * @dev: The pointer to PCI uclass device.
155 * @reset_gpio: GPIO descriptor for PERST.
156 * @cfgcache: Buffer for emulation of PCIe Root Port's PCI Bridge registers
157 * that are not available on Aardvark.
158 * @cfgcrssve: For CRSSVE emulation.
164 struct gpio_desc reset_gpio;
165 u32 cfgcache[(0x3c - 0x10) / 4];
169 static inline void advk_writel(struct pcie_advk *pcie, uint val, uint reg)
171 writel(val, pcie->base + reg);
174 static inline uint advk_readl(struct pcie_advk *pcie, uint reg)
176 return readl(pcie->base + reg);
180 * pcie_advk_link_up() - Check if PCIe link is up or not
182 * @pcie: The PCI device to access
184 * Return true on link up.
185 * Return false on link down.
187 static bool pcie_advk_link_up(struct pcie_advk *pcie)
189 u32 val, ltssm_state;
191 val = advk_readl(pcie, ADVK_LMI_PHY_CFG0);
192 ltssm_state = (val & ADVK_LMI_PHY_CFG0_LTSSM_MASK) >> ADVK_LMI_PHY_CFG0_LTSSM_SHIFT;
193 return ltssm_state >= ADVK_LMI_PHY_CFG0_LTSSM_L0 && ltssm_state < ADVK_LMI_PHY_CFG0_LTSSM_DISABLED;
197 * pcie_advk_addr_valid() - Check for valid bus address
199 * @pcie: Pointer to the PCI bus
200 * @busno: Bus number of PCI device
201 * @dev: Device number of PCI device
202 * @func: Function number of PCI device
203 * @bdf: The PCI device to access
205 * Return: true on valid, false on invalid
207 static bool pcie_advk_addr_valid(struct pcie_advk *pcie,
208 int busno, u8 dev, u8 func)
210 /* On the root bus there is only one PCI Bridge */
211 if (busno == 0 && (dev != 0 || func != 0))
214 /* Access to other buses is possible when link is up */
215 if (busno != 0 && !pcie_advk_link_up(pcie))
219 * In PCI-E only a single device (0) can exist on the secondary bus.
220 * Beyond the secondary bus, there might be a Switch and anything is
223 if (busno == pcie->sec_busno && dev != 0)
230 * pcie_advk_wait_pio() - Wait for PIO access to be accomplished
232 * @pcie: The PCI device to access
234 * Wait up to 1.5 seconds for PIO access to be accomplished.
236 * Return positive - retry count if PIO access is accomplished.
237 * Return negative - error if PIO access is timed out.
239 static int pcie_advk_wait_pio(struct pcie_advk *pcie)
244 for (count = 1; count <= PIO_MAX_RETRIES; count++) {
245 start = advk_readl(pcie, ADVK_PIO_START);
246 isr = advk_readl(pcie, ADVK_PIO_ISR);
250 * Do not check the PIO state too frequently,
251 * 100us delay is appropriate.
253 udelay(PIO_WAIT_TIMEOUT);
256 dev_err(pcie->dev, "PIO read/write transfer time out\n");
261 * pcie_advk_check_pio_status() - Validate PIO status and get the read result
263 * @pcie: Pointer to the PCI bus
264 * @allow_crs: Only for read requests, if CRS response is allowed
265 * @read_val: Pointer to the read result
267 * Return: 0 on success
269 static int pcie_advk_check_pio_status(struct pcie_advk *pcie,
276 char *strcomp_status, *str_posted;
278 reg = advk_readl(pcie, ADVK_PIO_STAT);
279 status = (reg & ADVK_PIO_COMPLETION_STATUS_MASK) >>
280 ADVK_PIO_COMPLETION_STATUS_SHIFT;
283 case ADVK_PIO_COMPLETION_STATUS_OK:
284 if (reg & ADVK_PIO_ERR_STATUS) {
285 strcomp_status = "COMP_ERR";
289 /* Get the read result */
291 *read_val = advk_readl(pcie, ADVK_PIO_RD_DATA);
293 strcomp_status = NULL;
296 case ADVK_PIO_COMPLETION_STATUS_UR:
297 strcomp_status = "UR";
300 case ADVK_PIO_COMPLETION_STATUS_CRS:
301 if (allow_crs && read_val) {
302 /* For reading, CRS is not an error status. */
303 *read_val = CFG_RD_CRS_VAL;
304 strcomp_status = NULL;
307 strcomp_status = "CRS";
311 case ADVK_PIO_COMPLETION_STATUS_CA:
312 strcomp_status = "CA";
316 strcomp_status = "Unknown";
324 if (reg & ADVK_PIO_NON_POSTED_REQ)
325 str_posted = "Non-posted";
327 str_posted = "Posted";
329 dev_dbg(pcie->dev, "%s PIO Response Status: %s, %#x @ %#x\n",
330 str_posted, strcomp_status, reg,
331 advk_readl(pcie, ADVK_PIO_ADDR_LS));
337 * pcie_advk_read_config() - Read from configuration space
339 * @bus: Pointer to the PCI bus
340 * @bdf: Identifies the PCIe device to access
341 * @offset: The offset into the device's configuration space
342 * @valuep: A pointer at which to store the read value
343 * @size: Indicates the size of access to perform
345 * Read a value of size @size from offset @offset within the configuration
346 * space of the device identified by the bus, device & function numbers in @bdf
347 * on the PCI bus @bus.
349 * Return: 0 on success
351 static int pcie_advk_read_config(const struct udevice *bus, pci_dev_t bdf,
352 uint offset, ulong *valuep,
353 enum pci_size_t size)
355 struct pcie_advk *pcie = dev_get_priv(bus);
356 int busno = PCI_BUS(bdf) - dev_seq(bus);
363 dev_dbg(pcie->dev, "PCIE CFG read: (b,d,f)=(%2d,%2d,%2d) ",
364 PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf));
366 if (!pcie_advk_addr_valid(pcie, busno, PCI_DEV(bdf), PCI_FUNC(bdf))) {
367 dev_dbg(pcie->dev, "- out of range\n");
368 *valuep = pci_get_ff(size);
373 * The configuration space of the PCI Bridge on the root bus (zero) is
374 * not accessible via PIO transfers like all other PCIe devices. PCI
375 * Bridge config registers are available directly in Aardvark memory
376 * space starting at offset zero. The PCI Bridge config space is of
377 * Type 0, but the BAR registers (including ROM BAR) don't have the same
378 * meaning as in the PCIe specification. Therefore do not access BAR
379 * registers and non-common registers (those which have different
380 * meaning for Type 0 and Type 1 config space) of the PCI Bridge
381 * and instead read their content from driver virtual cfgcache[].
384 if ((offset >= 0x10 && offset < 0x34) || (offset >= 0x38 && offset < 0x3c))
385 data = pcie->cfgcache[(offset - 0x10) / 4];
387 data = advk_readl(pcie, ADVK_ROOT_PORT_PCI_CFG_OFF + (offset & ~3));
389 if ((offset & ~3) == (PCI_HEADER_TYPE & ~3)) {
391 * Change Header Type of PCI Bridge device to Type 1
392 * (0x01, used by PCI Bridges) because hardwired value
393 * is Type 0 (0x00, used by Endpoint devices).
396 data |= PCI_HEADER_TYPE_BRIDGE << 16;
399 if ((offset & ~3) == ADVK_ROOT_PORT_PCI_EXP_OFF + PCI_EXP_RTCTL) {
400 /* CRSSVE bit is stored only in cache */
402 data |= PCI_EXP_RTCTL_CRSSVE;
405 if ((offset & ~3) == ADVK_ROOT_PORT_PCI_EXP_OFF + (PCI_EXP_RTCAP & ~3)) {
406 /* CRS is emulated below, so set CRSVIS capability */
407 data |= PCI_EXP_RTCAP_CRSVIS << 16;
410 *valuep = pci_conv_32_to_size(data, offset, size);
416 * Returning fabricated CRS value (0xFFFF0001) by PCIe Root Complex to
417 * OS is allowed only for 4-byte PCI_VENDOR_ID config read request and
418 * only when CRSSVE bit in Root Port PCIe device is enabled. In all
419 * other error PCIe Root Complex must return all-ones.
421 * U-Boot currently does not support handling of CRS return value for
422 * PCI_VENDOR_ID config read request and also does not set CRSSVE bit.
423 * So it means that pcie->cfgcrssve is false. But the code is prepared
424 * for returning CRS, so that if U-Boot does support CRS in the future,
425 * it will work for Aardvark.
427 allow_crs = (offset == PCI_VENDOR_ID) && (size == PCI_SIZE_32) && pcie->cfgcrssve;
429 if (advk_readl(pcie, ADVK_PIO_START)) {
431 "Previous PIO read/write transfer is still running\n");
433 *valuep = CFG_RD_CRS_VAL;
436 *valuep = pci_get_ff(size);
440 /* Program the control register */
441 reg = advk_readl(pcie, ADVK_PIO_CTRL);
442 reg &= ~ADVK_PIO_CTRL_TYPE_MASK;
443 if (busno == pcie->sec_busno)
444 reg |= ADVK_PIO_CTRL_TYPE_RD_TYPE0 << ADVK_PIO_CTRL_TYPE_SHIFT;
446 reg |= ADVK_PIO_CTRL_TYPE_RD_TYPE1 << ADVK_PIO_CTRL_TYPE_SHIFT;
447 advk_writel(pcie, reg, ADVK_PIO_CTRL);
449 /* Program the address registers */
450 reg = PCIE_ECAM_OFFSET(busno, PCI_DEV(bdf), PCI_FUNC(bdf), (offset & ~0x3));
451 advk_writel(pcie, reg, ADVK_PIO_ADDR_LS);
452 advk_writel(pcie, 0, ADVK_PIO_ADDR_MS);
454 /* Program the data strobe */
455 advk_writel(pcie, 0xf, ADVK_PIO_WR_DATA_STRB);
460 /* Start the transfer */
461 advk_writel(pcie, 1, ADVK_PIO_ISR);
462 advk_writel(pcie, 1, ADVK_PIO_START);
464 ret = pcie_advk_wait_pio(pcie);
467 *valuep = CFG_RD_CRS_VAL;
470 *valuep = pci_get_ff(size);
476 /* Check PIO status and get the read result */
477 ret = pcie_advk_check_pio_status(pcie, allow_crs, ®);
478 if (ret == -EAGAIN && retry_count < PIO_MAX_RETRIES)
481 *valuep = pci_get_ff(size);
485 dev_dbg(pcie->dev, "(addr,size,val)=(0x%04x, %d, 0x%08x)\n",
487 *valuep = pci_conv_32_to_size(reg, offset, size);
493 * pcie_calc_datastrobe() - Calculate data strobe
495 * @offset: The offset into the device's configuration space
496 * @size: Indicates the size of access to perform
498 * Calculate data strobe according to offset and size
501 static uint pcie_calc_datastrobe(uint offset, enum pci_size_t size)
503 uint bytes, data_strobe;
516 data_strobe = GENMASK(bytes - 1, 0) << (offset & 0x3);
522 * pcie_advk_write_config() - Write to configuration space
524 * @bus: Pointer to the PCI bus
525 * @bdf: Identifies the PCIe device to access
526 * @offset: The offset into the device's configuration space
527 * @value: The value to write
528 * @size: Indicates the size of access to perform
530 * Write the value @value of size @size from offset @offset within the
531 * configuration space of the device identified by the bus, device & function
532 * numbers in @bdf on the PCI bus @bus.
534 * Return: 0 on success
536 static int pcie_advk_write_config(struct udevice *bus, pci_dev_t bdf,
537 uint offset, ulong value,
538 enum pci_size_t size)
540 struct pcie_advk *pcie = dev_get_priv(bus);
541 int busno = PCI_BUS(bdf) - dev_seq(bus);
547 dev_dbg(pcie->dev, "PCIE CFG write: (b,d,f)=(%2d,%2d,%2d) ",
548 PCI_BUS(bdf), PCI_DEV(bdf), PCI_FUNC(bdf));
549 dev_dbg(pcie->dev, "(addr,size,val)=(0x%04x, %d, 0x%08lx)\n",
550 offset, size, value);
552 if (!pcie_advk_addr_valid(pcie, busno, PCI_DEV(bdf), PCI_FUNC(bdf))) {
553 dev_dbg(pcie->dev, "- out of range\n");
558 * As explained in pcie_advk_read_config(), PCI Bridge config registers
559 * are available directly in Aardvark memory space starting at offset
560 * zero. Type 1 specific registers are not available, so we write their
561 * content only into driver virtual cfgcache[].
564 if ((offset >= 0x10 && offset < 0x34) ||
565 (offset >= 0x38 && offset < 0x3c)) {
566 data = pcie->cfgcache[(offset - 0x10) / 4];
567 data = pci_conv_size_to_32(data, value, offset, size);
568 /* This PCI bridge does not have configurable bars */
569 if ((offset & ~3) == PCI_BASE_ADDRESS_0 ||
570 (offset & ~3) == PCI_BASE_ADDRESS_1 ||
571 (offset & ~3) == PCI_ROM_ADDRESS1)
573 pcie->cfgcache[(offset - 0x10) / 4] = data;
575 data = advk_readl(pcie, ADVK_ROOT_PORT_PCI_CFG_OFF + (offset & ~3));
576 data = pci_conv_size_to_32(data, value, offset, size);
577 advk_writel(pcie, data, ADVK_ROOT_PORT_PCI_CFG_OFF + (offset & ~3));
580 if (offset == PCI_SECONDARY_BUS ||
581 (offset == PCI_PRIMARY_BUS && size != PCI_SIZE_8))
582 pcie->sec_busno = (data >> 8) & 0xff;
584 if ((offset & ~3) == ADVK_ROOT_PORT_PCI_EXP_OFF + PCI_EXP_RTCTL)
585 pcie->cfgcrssve = data & PCI_EXP_RTCTL_CRSSVE;
590 if (advk_readl(pcie, ADVK_PIO_START)) {
592 "Previous PIO read/write transfer is still running\n");
596 /* Program the control register */
597 reg = advk_readl(pcie, ADVK_PIO_CTRL);
598 reg &= ~ADVK_PIO_CTRL_TYPE_MASK;
599 if (busno == pcie->sec_busno)
600 reg |= ADVK_PIO_CTRL_TYPE_WR_TYPE0 << ADVK_PIO_CTRL_TYPE_SHIFT;
602 reg |= ADVK_PIO_CTRL_TYPE_WR_TYPE1 << ADVK_PIO_CTRL_TYPE_SHIFT;
603 advk_writel(pcie, reg, ADVK_PIO_CTRL);
605 /* Program the address registers */
606 reg = PCIE_ECAM_OFFSET(busno, PCI_DEV(bdf), PCI_FUNC(bdf), (offset & ~0x3));
607 advk_writel(pcie, reg, ADVK_PIO_ADDR_LS);
608 advk_writel(pcie, 0, ADVK_PIO_ADDR_MS);
609 dev_dbg(pcie->dev, "\tPIO req. - addr = 0x%08x\n", reg);
611 /* Program the data register */
612 reg = pci_conv_size_to_32(0, value, offset, size);
613 advk_writel(pcie, reg, ADVK_PIO_WR_DATA);
614 dev_dbg(pcie->dev, "\tPIO req. - val = 0x%08x\n", reg);
616 /* Program the data strobe */
617 reg = pcie_calc_datastrobe(offset, size);
618 advk_writel(pcie, reg, ADVK_PIO_WR_DATA_STRB);
619 dev_dbg(pcie->dev, "\tPIO req. - strb = 0x%02x\n", reg);
624 /* Start the transfer */
625 advk_writel(pcie, 1, ADVK_PIO_ISR);
626 advk_writel(pcie, 1, ADVK_PIO_START);
628 ret = pcie_advk_wait_pio(pcie);
634 /* Check PIO status */
635 ret = pcie_advk_check_pio_status(pcie, false, NULL);
636 if (ret == -EAGAIN && retry_count < PIO_MAX_RETRIES)
642 * pcie_advk_wait_for_link() - Wait for link training to be accomplished
644 * @pcie: The PCI device to access
646 * Wait up to 1 second for link training to be accomplished.
648 static void pcie_advk_wait_for_link(struct pcie_advk *pcie)
652 /* check if the link is up or not */
653 for (retries = 0; retries < LINK_MAX_RETRIES; retries++) {
654 if (pcie_advk_link_up(pcie)) {
655 printf("PCIe: Link up\n");
659 udelay(LINK_WAIT_TIMEOUT);
662 printf("PCIe: Link down\n");
666 * Set PCIe address window register which could be used for memory
669 static void pcie_advk_set_ob_win(struct pcie_advk *pcie, u8 win_num,
670 phys_addr_t match, phys_addr_t remap,
671 phys_addr_t mask, u32 actions)
673 advk_writel(pcie, ADVK_OB_WIN_ENABLE |
674 lower_32_bits(match), ADVK_OB_WIN_MATCH_LS(win_num));
675 advk_writel(pcie, upper_32_bits(match), ADVK_OB_WIN_MATCH_MS(win_num));
676 advk_writel(pcie, lower_32_bits(remap), ADVK_OB_WIN_REMAP_LS(win_num));
677 advk_writel(pcie, upper_32_bits(remap), ADVK_OB_WIN_REMAP_MS(win_num));
678 advk_writel(pcie, lower_32_bits(mask), ADVK_OB_WIN_MASK_LS(win_num));
679 advk_writel(pcie, upper_32_bits(mask), ADVK_OB_WIN_MASK_MS(win_num));
680 advk_writel(pcie, actions, ADVK_OB_WIN_ACTIONS(win_num));
683 static void pcie_advk_disable_ob_win(struct pcie_advk *pcie, u8 win_num)
685 advk_writel(pcie, 0, ADVK_OB_WIN_MATCH_LS(win_num));
686 advk_writel(pcie, 0, ADVK_OB_WIN_MATCH_MS(win_num));
687 advk_writel(pcie, 0, ADVK_OB_WIN_REMAP_LS(win_num));
688 advk_writel(pcie, 0, ADVK_OB_WIN_REMAP_MS(win_num));
689 advk_writel(pcie, 0, ADVK_OB_WIN_MASK_LS(win_num));
690 advk_writel(pcie, 0, ADVK_OB_WIN_MASK_MS(win_num));
691 advk_writel(pcie, 0, ADVK_OB_WIN_ACTIONS(win_num));
694 static void pcie_advk_set_ob_region(struct pcie_advk *pcie, int *wins,
695 struct pci_region *region, u32 actions)
697 phys_addr_t phys_start = region->phys_start;
698 pci_addr_t bus_start = region->bus_start;
699 pci_size_t size = region->size;
700 phys_addr_t win_mask;
707 * The n-th PCIe window is configured by tuple (match, remap, mask)
708 * and an access to address A uses this window if A matches the
709 * match with given mask.
710 * So every PCIe window size must be a power of two and every start
711 * address must be aligned to window size. Minimal size is 64 KiB
712 * because lower 16 bits of mask must be zero. Remapped address
713 * may have set only bits from the mask.
715 while (*wins < ADVK_OB_WIN_COUNT && size > 0) {
716 /* Calculate the largest aligned window size */
717 win_size = (1ULL << (fls64(size) - 1)) |
718 (phys_start ? (1ULL << __ffs64(phys_start)) : 0);
719 win_size = 1ULL << __ffs64(win_size);
720 win_mask = ~(win_size - 1);
721 if (win_size < 0x10000 || (bus_start & ~win_mask))
725 "Configuring PCIe window %d: [0x%llx-0x%llx] as 0x%x\n",
726 *wins, (u64)phys_start, (u64)phys_start + win_size,
728 pcie_advk_set_ob_win(pcie, *wins, phys_start, bus_start,
731 phys_start += win_size;
732 bus_start += win_size;
740 "Invalid PCIe region [0x%llx-0x%llx]\n",
741 (u64)region->phys_start,
742 (u64)region->phys_start + region->size);
747 * pcie_advk_setup_hw() - PCIe initailzation
749 * @pcie: The PCI device to access
751 * Return: 0 on success
753 static int pcie_advk_setup_hw(struct pcie_advk *pcie)
755 struct pci_region *io, *mem, *pref;
759 /* Set from Command to Direct mode */
760 reg = advk_readl(pcie, ADVK_CORE_CTRL_CONFIG);
761 reg &= ~ADVK_CORE_CTRL_CONFIG_COMMAND_MODE;
762 advk_writel(pcie, reg, ADVK_CORE_CTRL_CONFIG);
764 /* Set PCI global control register to RC mode */
765 reg = advk_readl(pcie, ADVK_GLOBAL_CTRL0);
766 reg |= ADVK_GLOBAL_CTRL0_IS_RC;
767 advk_writel(pcie, reg, ADVK_GLOBAL_CTRL0);
770 * Replace incorrect PCI vendor id value 0x1b4b by correct value 0x11ab.
771 * ADVK_LMI_VENDOR_ID contains vendor id in low 16 bits and subsystem vendor
772 * id in high 16 bits. Updating this register changes readback value of
773 * read-only vendor id bits in Root Port PCI_VENDOR_ID register. Workaround
774 * for erratum 4.1: "The value of device and vendor ID is incorrect".
776 advk_writel(pcie, 0x11ab11ab, ADVK_LMI_VENDOR_ID);
779 * Change Class Code of PCI Bridge device to PCI Bridge (0x600400),
780 * because default value is Mass Storage Controller (0x010400), causing
781 * U-Boot to fail to recognize it as P2P Bridge.
783 * Note that this Aardvark PCI Bridge does not have a compliant Type 1
784 * Configuration Space and it even cannot be accessed via Aardvark's
785 * PCI config space access method. Aardvark PCI Bridge Config space is
786 * available in internal Aardvark registers starting at offset 0x0
787 * and has format of Type 0 config space.
789 * Moreover Type 0 BAR registers (ranges 0x10 - 0x28 and 0x30 - 0x34)
790 * have the same format in Marvell's specification as in PCIe
791 * specification, but their meaning is totally different (and not even
792 * the same meaning as explained in the corresponding comment in the
793 * pci_mvebu driver; aardvark is still different).
795 * So our driver converts Type 0 config space to Type 1 and reports
796 * Header Type as Type 1. Access to BAR registers and to non-existent
797 * Type 1 registers is redirected to the virtual cfgcache[] buffer,
798 * which avoids changing unrelated registers.
800 reg = advk_readl(pcie, ADVK_ROOT_PORT_PCI_CFG_OFF + PCI_CLASS_REVISION);
802 reg |= PCI_CLASS_BRIDGE_PCI_NORMAL << 8;
803 advk_writel(pcie, reg, ADVK_ROOT_PORT_PCI_CFG_OFF + PCI_CLASS_REVISION);
805 /* Enable generation and checking of ECRC on PCIe Root Port */
806 reg = advk_readl(pcie, ADVK_ROOT_PORT_PCI_ERR_OFF + PCI_ERR_CAP);
807 reg |= PCI_ERR_CAP_ECRC_GENE | PCI_ERR_CAP_ECRC_CHKE;
808 advk_writel(pcie, reg, ADVK_ROOT_PORT_PCI_ERR_OFF + PCI_ERR_CAP);
810 /* Set PCIe Device Control register on PCIe Root Port */
811 reg = advk_readl(pcie, ADVK_ROOT_PORT_PCI_EXP_OFF + PCI_EXP_DEVCTL);
812 reg &= ~PCI_EXP_DEVCTL_RELAX_EN;
813 reg &= ~PCI_EXP_DEVCTL_NOSNOOP_EN;
814 reg &= ~PCI_EXP_DEVCTL_PAYLOAD;
815 reg &= ~PCI_EXP_DEVCTL_READRQ;
816 reg |= PCI_EXP_DEVCTL_PAYLOAD_512B;
817 reg |= PCI_EXP_DEVCTL_READRQ_512B;
818 advk_writel(pcie, reg, ADVK_ROOT_PORT_PCI_EXP_OFF + PCI_EXP_DEVCTL);
820 /* Program PCIe Control 2 to disable strict ordering */
821 reg = advk_readl(pcie, ADVK_GLOBAL_CTRL2);
822 reg &= ~ADVK_GLOBAL_CTRL2_STRICT_ORDER_EN;
823 advk_writel(pcie, reg, ADVK_GLOBAL_CTRL2);
826 reg = advk_readl(pcie, ADVK_GLOBAL_CTRL0);
827 reg &= ~ADVK_GLOBAL_CTRL0_SPEED_GEN_MASK;
828 reg |= ADVK_GLOBAL_CTRL0_SPEED_GEN_2 << ADVK_GLOBAL_CTRL0_SPEED_GEN_SHIFT;
829 advk_writel(pcie, reg, ADVK_GLOBAL_CTRL0);
832 reg = advk_readl(pcie, ADVK_GLOBAL_CTRL0);
833 reg &= ~ADVK_GLOBAL_CTRL0_LANE_COUNT_MASK;
834 reg |= ADVK_GLOBAL_CTRL0_LANE_COUNT_1 << ADVK_GLOBAL_CTRL0_LANE_COUNT_SHIFT;
835 advk_writel(pcie, reg, ADVK_GLOBAL_CTRL0);
837 /* Enable link training */
838 reg = advk_readl(pcie, ADVK_GLOBAL_CTRL0);
839 reg |= ADVK_GLOBAL_CTRL0_LINK_TRAINING_EN;
840 advk_writel(pcie, reg, ADVK_GLOBAL_CTRL0);
843 * Enable AXI address window location generation:
844 * When it is enabled, the default outbound window
845 * configurations (Default User Field: 0xD0074CFC)
846 * are used to transparent address translation for
847 * the outbound transactions. Thus, PCIe address
848 * windows are not required for transparent memory
849 * access when default outbound window configuration
850 * is set for memory access.
852 reg = advk_readl(pcie, ADVK_GLOBAL_CTRL2);
853 reg |= ADVK_GLOBAL_CTRL2_ADDRWIN_MAP_EN;
854 advk_writel(pcie, reg, ADVK_GLOBAL_CTRL2);
857 * Bypass the address window mapping for PIO:
858 * Since PIO access already contains all required
859 * info over AXI interface by PIO registers, the
860 * address window is not required.
862 reg = advk_readl(pcie, ADVK_PIO_CTRL);
863 reg |= ADVK_PIO_CTRL_ADDR_WIN_DISABLE;
864 advk_writel(pcie, reg, ADVK_PIO_CTRL);
867 * Set memory access in Default User Field so it
868 * is not required to configure PCIe address for
869 * transparent memory access.
871 advk_writel(pcie, ADVK_OB_WIN_TYPE_MEM, ADVK_OB_WIN_DEFAULT_ACTIONS);
874 * Configure PCIe address windows for non-memory or
875 * non-transparent access as by default PCIe uses
876 * transparent memory access.
879 pci_get_regions(pcie->dev, &io, &mem, &pref);
881 pcie_advk_set_ob_region(pcie, &wins, io, ADVK_OB_WIN_TYPE_IO);
882 if (mem && mem->phys_start != mem->bus_start)
883 pcie_advk_set_ob_region(pcie, &wins, mem, ADVK_OB_WIN_TYPE_MEM);
884 if (pref && pref->phys_start != pref->bus_start)
885 pcie_advk_set_ob_region(pcie, &wins, pref, ADVK_OB_WIN_TYPE_MEM);
887 /* Disable remaining PCIe outbound windows */
888 for (i = ((wins >= 0) ? wins : 0); i < ADVK_OB_WIN_COUNT; i++)
889 pcie_advk_disable_ob_win(pcie, i);
894 /* Wait for PCIe link up */
895 pcie_advk_wait_for_link(pcie);
901 * pcie_advk_probe() - Probe the PCIe bus for active link
903 * @dev: A pointer to the device being operated on
905 * Probe for an active link on the PCIe bus and configure the controller
906 * to enable this port.
908 * Return: 0 on success, else -ENODEV
910 static int pcie_advk_probe(struct udevice *dev)
912 struct pcie_advk *pcie = dev_get_priv(dev);
914 gpio_request_by_name(dev, "reset-gpios", 0, &pcie->reset_gpio,
917 * Issue reset to add-in card through the dedicated GPIO.
918 * Some boards are connecting the card reset pin to common system
919 * reset wire and others are using separate GPIO port.
920 * In the last case we have to release a reset of the addon card
924 * The PCIe RESET signal is not supposed to be released along
925 * with the SOC RESET signal. It should be lowered as early as
926 * possible before PCIe PHY initialization. Moreover, the PCIe
927 * clock should be gated as well.
929 if (dm_gpio_is_valid(&pcie->reset_gpio)) {
930 dev_dbg(dev, "Toggle PCIE Reset GPIO ...\n");
931 dm_gpio_set_value(&pcie->reset_gpio, 1);
933 dm_gpio_set_value(&pcie->reset_gpio, 0);
935 dev_warn(dev, "PCIE Reset on GPIO support is missing\n");
938 pcie->dev = pci_get_controller(dev);
940 /* PCI Bridge support 32-bit I/O and 64-bit prefetch mem addressing */
941 pcie->cfgcache[(PCI_IO_BASE - 0x10) / 4] =
942 PCI_IO_RANGE_TYPE_32 | (PCI_IO_RANGE_TYPE_32 << 8);
943 pcie->cfgcache[(PCI_PREF_MEMORY_BASE - 0x10) / 4] =
944 PCI_PREF_RANGE_TYPE_64 | (PCI_PREF_RANGE_TYPE_64 << 16);
946 return pcie_advk_setup_hw(pcie);
949 static int pcie_advk_remove(struct udevice *dev)
951 struct pcie_advk *pcie = dev_get_priv(dev);
955 for (i = 0; i < ADVK_OB_WIN_COUNT; i++)
956 pcie_advk_disable_ob_win(pcie, i);
958 reg = advk_readl(pcie, ADVK_ROOT_PORT_PCI_CFG_OFF + PCI_COMMAND);
959 reg &= ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
960 advk_writel(pcie, reg, ADVK_ROOT_PORT_PCI_CFG_OFF + PCI_COMMAND);
962 reg = advk_readl(pcie, ADVK_GLOBAL_CTRL0);
963 reg &= ~ADVK_GLOBAL_CTRL0_LINK_TRAINING_EN;
964 advk_writel(pcie, reg, ADVK_GLOBAL_CTRL0);
970 * pcie_advk_of_to_plat() - Translate from DT to device state
972 * @dev: A pointer to the device being operated on
974 * Translate relevant data from the device tree pertaining to device @dev into
975 * state that the driver will later make use of. This state is stored in the
976 * device's private data structure.
978 * Return: 0 on success, else -EINVAL
980 static int pcie_advk_of_to_plat(struct udevice *dev)
982 struct pcie_advk *pcie = dev_get_priv(dev);
984 /* Get the register base address */
985 pcie->base = dev_read_addr_ptr(dev);
992 static const struct dm_pci_ops pcie_advk_ops = {
993 .read_config = pcie_advk_read_config,
994 .write_config = pcie_advk_write_config,
997 static const struct udevice_id pcie_advk_ids[] = {
998 { .compatible = "marvell,armada-3700-pcie" },
1002 U_BOOT_DRIVER(pcie_advk) = {
1003 .name = "pcie_advk",
1005 .of_match = pcie_advk_ids,
1006 .ops = &pcie_advk_ops,
1007 .of_to_plat = pcie_advk_of_to_plat,
1008 .probe = pcie_advk_probe,
1009 .remove = pcie_advk_remove,
1010 .flags = DM_FLAG_OS_PREPARE,
1011 .priv_auto = sizeof(struct pcie_advk),