blob: ccaeecaca8e3c03ab4a8df469372727eb9b652a5 [file] [log] [blame]
Wilson Dinga6bdc862018-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>
Pali Rohár028ac882021-12-16 12:04:06 +010024 * Pali Rohár <pali@kernel.org>
Wilson Dinga6bdc862018-03-26 15:57:29 +080025 *
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>
Simon Glass9bc15642020-02-03 07:36:16 -070033#include <dm/device_compat.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060034#include <linux/bitops.h>
Simon Glassdbd79542020-05-10 11:40:11 -060035#include <linux/delay.h>
Wilson Dinga6bdc862018-03-26 15:57:29 +080036#include <linux/ioport.h>
37
Pali Rohár810cde32022-02-10 14:53:42 +010038/* 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
Wilson Dinga6bdc862018-03-26 15:57:29 +080042
Pali Rohár660a9412022-02-10 14:53:43 +010043/* 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)
Wilson Dinga6bdc862018-03-26 15:57:29 +080069
Pali Rohár660a9412022-02-10 14:53:43 +010070/* 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)
Wilson Dinga6bdc862018-03-26 15:57:29 +080089
Pali Rohár660a9412022-02-10 14:53:43 +010090/* 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
Pali Roháre78c8e02021-05-26 17:59:40 +0200127
Pali Rohár660a9412022-02-10 14:53:43 +0100128/* 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)
Wilson Dinga6bdc862018-03-26 15:57:29 +0800136
Pali Rohár660a9412022-02-10 14:53:43 +0100137/* 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)
Wilson Dinga6bdc862018-03-26 15:57:29 +0800141
Wilson Dinga6bdc862018-03-26 15:57:29 +0800142/* PCIe Retries & Timeout definitions */
Pali Rohárfc0eddf2021-04-22 16:23:04 +0200143#define PIO_MAX_RETRIES 1500
144#define PIO_WAIT_TIMEOUT 1000
145#define LINK_MAX_RETRIES 10
Wilson Dinga6bdc862018-03-26 15:57:29 +0800146#define LINK_WAIT_TIMEOUT 100000
147
Pali Rohár660a9412022-02-10 14:53:43 +0100148#define CFG_RD_CRS_VAL 0xFFFF0001
Wilson Dinga6bdc862018-03-26 15:57:29 +0800149
Wilson Dinga6bdc862018-03-26 15:57:29 +0800150/**
151 * struct pcie_advk - Advk PCIe controller state
152 *
Marek Behún7ec28982021-09-26 00:54:46 +0200153 * @base: The base address of the register space.
Marek Behún7ec28982021-09-26 00:54:46 +0200154 * @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.
Wilson Dinga6bdc862018-03-26 15:57:29 +0800160 */
161struct pcie_advk {
Marek Behúncbc5fc82021-09-26 00:54:45 +0200162 void *base;
Marek Behúncbc5fc82021-09-26 00:54:45 +0200163 int sec_busno;
164 struct udevice *dev;
165 struct gpio_desc reset_gpio;
Pali Rohár0f65c042021-11-11 16:35:48 +0100166 u32 cfgcache[(0x3c - 0x10) / 4];
Marek Behúncbc5fc82021-09-26 00:54:45 +0200167 bool cfgcrssve;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800168};
169
170static inline void advk_writel(struct pcie_advk *pcie, uint val, uint reg)
171{
172 writel(val, pcie->base + reg);
173}
174
175static inline uint advk_readl(struct pcie_advk *pcie, uint reg)
176{
177 return readl(pcie->base + reg);
178}
179
180/**
Pali Rohár41063052022-02-15 11:23:35 +0100181 * 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 */
188static 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/**
Wilson Dinga6bdc862018-03-26 15:57:29 +0800198 * pcie_advk_addr_valid() - Check for valid bus address
199 *
Pali Rohár525886e2021-09-26 00:54:42 +0200200 * @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
Wilson Dinga6bdc862018-03-26 15:57:29 +0800204 * @bdf: The PCI device to access
Wilson Dinga6bdc862018-03-26 15:57:29 +0800205 *
Pali Rohár525886e2021-09-26 00:54:42 +0200206 * Return: true on valid, false on invalid
Wilson Dinga6bdc862018-03-26 15:57:29 +0800207 */
Pali Rohár525886e2021-09-26 00:54:42 +0200208static bool pcie_advk_addr_valid(struct pcie_advk *pcie,
209 int busno, u8 dev, u8 func)
Wilson Dinga6bdc862018-03-26 15:57:29 +0800210{
Pali Rohár7e1c4fd2022-02-10 14:53:45 +0100211 /* On the root bus there is only one PCI Bridge */
212 if (busno == 0 && (dev != 0 || func != 0))
Pali Rohár525886e2021-09-26 00:54:42 +0200213 return false;
214
Pali Rohár41063052022-02-15 11:23:35 +0100215 /* Access to other buses is possible when link is up */
216 if (busno != 0 && !pcie_advk_link_up(pcie))
217 return false;
218
Wilson Dinga6bdc862018-03-26 15:57:29 +0800219 /*
Pali Rohár525886e2021-09-26 00:54:42 +0200220 * 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.
Wilson Dinga6bdc862018-03-26 15:57:29 +0800223 */
Pali Rohár525886e2021-09-26 00:54:42 +0200224 if (busno == pcie->sec_busno && dev != 0)
225 return false;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800226
Pali Rohár525886e2021-09-26 00:54:42 +0200227 return true;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800228}
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árfc0eddf2021-04-22 16:23:04 +0200235 * Wait up to 1.5 seconds for PIO access to be accomplished.
Wilson Dinga6bdc862018-03-26 15:57:29 +0800236 *
Pali Rohár907cd9a2021-08-27 14:14:44 +0200237 * Return positive - retry count if PIO access is accomplished.
238 * Return negative - error if PIO access is timed out.
Wilson Dinga6bdc862018-03-26 15:57:29 +0800239 */
240static int pcie_advk_wait_pio(struct pcie_advk *pcie)
241{
242 uint start, isr;
243 uint count;
244
Pali Rohár907cd9a2021-08-27 14:14:44 +0200245 for (count = 1; count <= PIO_MAX_RETRIES; count++) {
Pali Rohár660a9412022-02-10 14:53:43 +0100246 start = advk_readl(pcie, ADVK_PIO_START);
247 isr = advk_readl(pcie, ADVK_PIO_ISR);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800248 if (!start && isr)
Pali Rohár907cd9a2021-08-27 14:14:44 +0200249 return count;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800250 /*
251 * Do not check the PIO state too frequently,
252 * 100us delay is appropriate.
253 */
254 udelay(PIO_WAIT_TIMEOUT);
255 }
256
Pali Rohárfc0eddf2021-04-22 16:23:04 +0200257 dev_err(pcie->dev, "PIO read/write transfer time out\n");
Pali Rohár907cd9a2021-08-27 14:14:44 +0200258 return -ETIMEDOUT;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800259}
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árb8344cf2021-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 Dinga6bdc862018-03-26 15:57:29 +0800267 *
Pali Rohár907cd9a2021-08-27 14:14:44 +0200268 * Return: 0 on success
Wilson Dinga6bdc862018-03-26 15:57:29 +0800269 */
270static int pcie_advk_check_pio_status(struct pcie_advk *pcie,
Pali Rohárb8344cf2021-08-09 09:53:13 +0200271 bool allow_crs,
Wilson Dinga6bdc862018-03-26 15:57:29 +0800272 uint *read_val)
273{
Pali Rohár907cd9a2021-08-27 14:14:44 +0200274 int ret;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800275 uint reg;
276 unsigned int status;
277 char *strcomp_status, *str_posted;
278
Pali Rohár660a9412022-02-10 14:53:43 +0100279 reg = advk_readl(pcie, ADVK_PIO_STAT);
280 status = (reg & ADVK_PIO_COMPLETION_STATUS_MASK) >>
281 ADVK_PIO_COMPLETION_STATUS_SHIFT;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800282
283 switch (status) {
Pali Rohár660a9412022-02-10 14:53:43 +0100284 case ADVK_PIO_COMPLETION_STATUS_OK:
285 if (reg & ADVK_PIO_ERR_STATUS) {
Wilson Dinga6bdc862018-03-26 15:57:29 +0800286 strcomp_status = "COMP_ERR";
Pali Rohár907cd9a2021-08-27 14:14:44 +0200287 ret = -EFAULT;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800288 break;
289 }
290 /* Get the read result */
Pali Rohárb8344cf2021-08-09 09:53:13 +0200291 if (read_val)
Pali Rohár660a9412022-02-10 14:53:43 +0100292 *read_val = advk_readl(pcie, ADVK_PIO_RD_DATA);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800293 /* No error */
294 strcomp_status = NULL;
Pali Rohár907cd9a2021-08-27 14:14:44 +0200295 ret = 0;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800296 break;
Pali Rohár660a9412022-02-10 14:53:43 +0100297 case ADVK_PIO_COMPLETION_STATUS_UR:
Pali Rohárb8344cf2021-08-09 09:53:13 +0200298 strcomp_status = "UR";
Pali Rohár907cd9a2021-08-27 14:14:44 +0200299 ret = -EOPNOTSUPP;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800300 break;
Pali Rohár660a9412022-02-10 14:53:43 +0100301 case ADVK_PIO_COMPLETION_STATUS_CRS:
Pali Rohárb8344cf2021-08-09 09:53:13 +0200302 if (allow_crs && read_val) {
Wilson Dinga6bdc862018-03-26 15:57:29 +0800303 /* For reading, CRS is not an error status. */
304 *read_val = CFG_RD_CRS_VAL;
305 strcomp_status = NULL;
Pali Rohár907cd9a2021-08-27 14:14:44 +0200306 ret = 0;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800307 } else {
308 strcomp_status = "CRS";
Pali Rohár907cd9a2021-08-27 14:14:44 +0200309 ret = -EAGAIN;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800310 }
311 break;
Pali Rohár660a9412022-02-10 14:53:43 +0100312 case ADVK_PIO_COMPLETION_STATUS_CA:
Wilson Dinga6bdc862018-03-26 15:57:29 +0800313 strcomp_status = "CA";
Pali Rohár907cd9a2021-08-27 14:14:44 +0200314 ret = -ECANCELED;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800315 break;
316 default:
317 strcomp_status = "Unknown";
Pali Rohár907cd9a2021-08-27 14:14:44 +0200318 ret = -EINVAL;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800319 break;
320 }
321
322 if (!strcomp_status)
Pali Rohár907cd9a2021-08-27 14:14:44 +0200323 return ret;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800324
Pali Rohár660a9412022-02-10 14:53:43 +0100325 if (reg & ADVK_PIO_NON_POSTED_REQ)
Wilson Dinga6bdc862018-03-26 15:57:29 +0800326 str_posted = "Non-posted";
327 else
328 str_posted = "Posted";
329
Marek Behún73d776a2021-09-07 17:27:08 +0200330 dev_dbg(pcie->dev, "%s PIO Response Status: %s, %#x @ %#x\n",
Wilson Dinga6bdc862018-03-26 15:57:29 +0800331 str_posted, strcomp_status, reg,
Pali Rohár660a9412022-02-10 14:53:43 +0100332 advk_readl(pcie, ADVK_PIO_ADDR_LS));
Wilson Dinga6bdc862018-03-26 15:57:29 +0800333
Pali Rohár907cd9a2021-08-27 14:14:44 +0200334 return ret;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800335}
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 */
Simon Glass2a311e82020-01-27 08:49:37 -0700352static int pcie_advk_read_config(const struct udevice *bus, pci_dev_t bdf,
Wilson Dinga6bdc862018-03-26 15:57:29 +0800353 uint offset, ulong *valuep,
354 enum pci_size_t size)
355{
356 struct pcie_advk *pcie = dev_get_priv(bus);
Pali Rohár525886e2021-09-26 00:54:42 +0200357 int busno = PCI_BUS(bdf) - dev_seq(bus);
Pali Rohár907cd9a2021-08-27 14:14:44 +0200358 int retry_count;
Pali Rohárb8344cf2021-08-09 09:53:13 +0200359 bool allow_crs;
Pali Rohár525886e2021-09-26 00:54:42 +0200360 ulong data;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800361 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
Pali Rohár525886e2021-09-26 00:54:42 +0200367 if (!pcie_advk_addr_valid(pcie, busno, PCI_DEV(bdf), PCI_FUNC(bdf))) {
Wilson Dinga6bdc862018-03-26 15:57:29 +0800368 dev_dbg(pcie->dev, "- out of range\n");
369 *valuep = pci_get_ff(size);
370 return 0;
371 }
372
Pali Rohár67cd7212021-08-27 14:14:43 +0200373 /*
Pali Rohár7e1c4fd2022-02-10 14:53:45 +0100374 * The configuration space of the PCI Bridge on the root bus (zero) is
Pali Rohár525886e2021-09-26 00:54:42 +0200375 * not accessible via PIO transfers like all other PCIe devices. PCI
376 * Bridge config registers are available directly in Aardvark memory
Pali Rohár0f65c042021-11-11 16:35:48 +0100377 * 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
Pali Rohár7e1c4fd2022-02-10 14:53:45 +0100381 * meaning for Type 0 and Type 1 config space) of the PCI Bridge
Pali Rohár0f65c042021-11-11 16:35:48 +0100382 * and instead read their content from driver virtual cfgcache[].
Pali Rohár525886e2021-09-26 00:54:42 +0200383 */
Pali Rohár7e1c4fd2022-02-10 14:53:45 +0100384 if (busno == 0) {
Pali Rohár0f65c042021-11-11 16:35:48 +0100385 if ((offset >= 0x10 && offset < 0x34) || (offset >= 0x38 && offset < 0x3c))
Pali Rohár525886e2021-09-26 00:54:42 +0200386 data = pcie->cfgcache[(offset - 0x10) / 4];
Pali Rohár525886e2021-09-26 00:54:42 +0200387 else
Pali Rohár810cde32022-02-10 14:53:42 +0100388 data = advk_readl(pcie, ADVK_ROOT_PORT_PCI_CFG_OFF + (offset & ~3));
Pali Rohár525886e2021-09-26 00:54:42 +0200389
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
Pali Rohár810cde32022-02-10 14:53:42 +0100400 if ((offset & ~3) == ADVK_ROOT_PORT_PCI_EXP_OFF + PCI_EXP_RTCTL) {
Pali Rohár238fbab2021-09-26 00:54:44 +0200401 /* CRSSVE bit is stored only in cache */
402 if (pcie->cfgcrssve)
403 data |= PCI_EXP_RTCTL_CRSSVE;
404 }
405
Pali Rohár810cde32022-02-10 14:53:42 +0100406 if ((offset & ~3) == ADVK_ROOT_PORT_PCI_EXP_OFF + (PCI_EXP_RTCAP & ~3)) {
Pali Rohár238fbab2021-09-26 00:54:44 +0200407 /* CRS is emulated below, so set CRSVIS capability */
408 data |= PCI_EXP_RTCAP_CRSVIS << 16;
409 }
410
Pali Rohár525886e2021-09-26 00:54:42 +0200411 *valuep = pci_conv_32_to_size(data, offset, size);
412
413 return 0;
414 }
415
416 /*
Pali Rohár67cd7212021-08-27 14:14:43 +0200417 * 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.
Pali Rohár238fbab2021-09-26 00:54:44 +0200421 *
Pali Rohár67cd7212021-08-27 14:14:43 +0200422 * 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.
Pali Rohár238fbab2021-09-26 00:54:44 +0200424 * 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.
Pali Rohár67cd7212021-08-27 14:14:43 +0200427 */
Pali Rohár4e02e702021-10-19 11:05:01 +0200428 allow_crs = (offset == PCI_VENDOR_ID) && (size == PCI_SIZE_32) && pcie->cfgcrssve;
Pali Rohárb8344cf2021-08-09 09:53:13 +0200429
Pali Rohár660a9412022-02-10 14:53:43 +0100430 if (advk_readl(pcie, ADVK_PIO_START)) {
Pali Rohárfc0eddf2021-04-22 16:23:04 +0200431 dev_err(pcie->dev,
432 "Previous PIO read/write transfer is still running\n");
Pali Rohárb8344cf2021-08-09 09:53:13 +0200433 if (allow_crs) {
434 *valuep = CFG_RD_CRS_VAL;
435 return 0;
436 }
437 *valuep = pci_get_ff(size);
Pali Rohár907cd9a2021-08-27 14:14:44 +0200438 return -EAGAIN;
Pali Rohárfc0eddf2021-04-22 16:23:04 +0200439 }
Wilson Dinga6bdc862018-03-26 15:57:29 +0800440
441 /* Program the control register */
Pali Rohár660a9412022-02-10 14:53:43 +0100442 reg = advk_readl(pcie, ADVK_PIO_CTRL);
443 reg &= ~ADVK_PIO_CTRL_TYPE_MASK;
Pali Rohár525886e2021-09-26 00:54:42 +0200444 if (busno == pcie->sec_busno)
Pali Rohár660a9412022-02-10 14:53:43 +0100445 reg |= ADVK_PIO_CTRL_TYPE_RD_TYPE0 << ADVK_PIO_CTRL_TYPE_SHIFT;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800446 else
Pali Rohár660a9412022-02-10 14:53:43 +0100447 reg |= ADVK_PIO_CTRL_TYPE_RD_TYPE1 << ADVK_PIO_CTRL_TYPE_SHIFT;
448 advk_writel(pcie, reg, ADVK_PIO_CTRL);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800449
450 /* Program the address registers */
Pali Rohár23769352021-11-03 01:01:05 +0100451 reg = PCIE_ECAM_OFFSET(busno, PCI_DEV(bdf), PCI_FUNC(bdf), (offset & ~0x3));
Pali Rohár660a9412022-02-10 14:53:43 +0100452 advk_writel(pcie, reg, ADVK_PIO_ADDR_LS);
453 advk_writel(pcie, 0, ADVK_PIO_ADDR_MS);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800454
Pali Rohár058f67b2021-11-01 10:12:51 +0100455 /* Program the data strobe */
Pali Rohár660a9412022-02-10 14:53:43 +0100456 advk_writel(pcie, 0xf, ADVK_PIO_WR_DATA_STRB);
Pali Rohár058f67b2021-11-01 10:12:51 +0100457
Pali Rohár907cd9a2021-08-27 14:14:44 +0200458 retry_count = 0;
459
460retry:
Wilson Dinga6bdc862018-03-26 15:57:29 +0800461 /* Start the transfer */
Pali Rohár660a9412022-02-10 14:53:43 +0100462 advk_writel(pcie, 1, ADVK_PIO_ISR);
463 advk_writel(pcie, 1, ADVK_PIO_START);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800464
Pali Rohár907cd9a2021-08-27 14:14:44 +0200465 ret = pcie_advk_wait_pio(pcie);
466 if (ret < 0) {
Pali Rohárb8344cf2021-08-09 09:53:13 +0200467 if (allow_crs) {
468 *valuep = CFG_RD_CRS_VAL;
469 return 0;
470 }
471 *valuep = pci_get_ff(size);
Pali Rohár907cd9a2021-08-27 14:14:44 +0200472 return ret;
Pali Rohárfc0eddf2021-04-22 16:23:04 +0200473 }
Wilson Dinga6bdc862018-03-26 15:57:29 +0800474
Pali Rohár907cd9a2021-08-27 14:14:44 +0200475 retry_count += ret;
476
Wilson Dinga6bdc862018-03-26 15:57:29 +0800477 /* Check PIO status and get the read result */
Pali Rohárb8344cf2021-08-09 09:53:13 +0200478 ret = pcie_advk_check_pio_status(pcie, allow_crs, &reg);
Pali Rohár907cd9a2021-08-27 14:14:44 +0200479 if (ret == -EAGAIN && retry_count < PIO_MAX_RETRIES)
480 goto retry;
Pali Rohárb8344cf2021-08-09 09:53:13 +0200481 if (ret) {
482 *valuep = pci_get_ff(size);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800483 return ret;
Pali Rohárb8344cf2021-08-09 09:53:13 +0200484 }
Wilson Dinga6bdc862018-03-26 15:57:29 +0800485
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 */
502static 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 */
537static 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);
Pali Rohár525886e2021-09-26 00:54:42 +0200542 int busno = PCI_BUS(bdf) - dev_seq(bus);
Pali Rohár907cd9a2021-08-27 14:14:44 +0200543 int retry_count;
Pali Rohár525886e2021-09-26 00:54:42 +0200544 ulong data;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800545 uint reg;
Pali Rohár907cd9a2021-08-27 14:14:44 +0200546 int ret;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800547
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
Pali Rohár525886e2021-09-26 00:54:42 +0200553 if (!pcie_advk_addr_valid(pcie, busno, PCI_DEV(bdf), PCI_FUNC(bdf))) {
Wilson Dinga6bdc862018-03-26 15:57:29 +0800554 dev_dbg(pcie->dev, "- out of range\n");
555 return 0;
556 }
557
Pali Rohár525886e2021-09-26 00:54:42 +0200558 /*
Pali Rohár0f65c042021-11-11 16:35:48 +0100559 * 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[].
Pali Rohár525886e2021-09-26 00:54:42 +0200563 */
Pali Rohár7e1c4fd2022-02-10 14:53:45 +0100564 if (busno == 0) {
Pali Rohár0f65c042021-11-11 16:35:48 +0100565 if ((offset >= 0x10 && offset < 0x34) ||
566 (offset >= 0x38 && offset < 0x3c)) {
Pali Rohár525886e2021-09-26 00:54:42 +0200567 data = pcie->cfgcache[(offset - 0x10) / 4];
568 data = pci_conv_size_to_32(data, value, offset, size);
Pali Rohárc5cc3ec2021-10-12 13:19:19 +0200569 /* This PCI bridge does not have configurable bars */
570 if ((offset & ~3) == PCI_BASE_ADDRESS_0 ||
Pali Rohár0f65c042021-11-11 16:35:48 +0100571 (offset & ~3) == PCI_BASE_ADDRESS_1 ||
572 (offset & ~3) == PCI_ROM_ADDRESS1)
Pali Rohárc5cc3ec2021-10-12 13:19:19 +0200573 data = 0x0;
Pali Rohár525886e2021-09-26 00:54:42 +0200574 pcie->cfgcache[(offset - 0x10) / 4] = data;
Pali Rohár525886e2021-09-26 00:54:42 +0200575 } else {
Pali Rohár810cde32022-02-10 14:53:42 +0100576 data = advk_readl(pcie, ADVK_ROOT_PORT_PCI_CFG_OFF + (offset & ~3));
Pali Rohár525886e2021-09-26 00:54:42 +0200577 data = pci_conv_size_to_32(data, value, offset, size);
Pali Rohár810cde32022-02-10 14:53:42 +0100578 advk_writel(pcie, data, ADVK_ROOT_PORT_PCI_CFG_OFF + (offset & ~3));
Pali Rohár525886e2021-09-26 00:54:42 +0200579 }
580
Pali Rohár525886e2021-09-26 00:54:42 +0200581 if (offset == PCI_SECONDARY_BUS ||
582 (offset == PCI_PRIMARY_BUS && size != PCI_SIZE_8))
583 pcie->sec_busno = (data >> 8) & 0xff;
584
Pali Rohár810cde32022-02-10 14:53:42 +0100585 if ((offset & ~3) == ADVK_ROOT_PORT_PCI_EXP_OFF + PCI_EXP_RTCTL)
Pali Rohár238fbab2021-09-26 00:54:44 +0200586 pcie->cfgcrssve = data & PCI_EXP_RTCTL_CRSSVE;
587
Pali Rohár525886e2021-09-26 00:54:42 +0200588 return 0;
589 }
590
Pali Rohár660a9412022-02-10 14:53:43 +0100591 if (advk_readl(pcie, ADVK_PIO_START)) {
Pali Rohárfc0eddf2021-04-22 16:23:04 +0200592 dev_err(pcie->dev,
593 "Previous PIO read/write transfer is still running\n");
Pali Rohár907cd9a2021-08-27 14:14:44 +0200594 return -EAGAIN;
Pali Rohárfc0eddf2021-04-22 16:23:04 +0200595 }
Wilson Dinga6bdc862018-03-26 15:57:29 +0800596
597 /* Program the control register */
Pali Rohár660a9412022-02-10 14:53:43 +0100598 reg = advk_readl(pcie, ADVK_PIO_CTRL);
599 reg &= ~ADVK_PIO_CTRL_TYPE_MASK;
Pali Rohár525886e2021-09-26 00:54:42 +0200600 if (busno == pcie->sec_busno)
Pali Rohár660a9412022-02-10 14:53:43 +0100601 reg |= ADVK_PIO_CTRL_TYPE_WR_TYPE0 << ADVK_PIO_CTRL_TYPE_SHIFT;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800602 else
Pali Rohár660a9412022-02-10 14:53:43 +0100603 reg |= ADVK_PIO_CTRL_TYPE_WR_TYPE1 << ADVK_PIO_CTRL_TYPE_SHIFT;
604 advk_writel(pcie, reg, ADVK_PIO_CTRL);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800605
606 /* Program the address registers */
Pali Rohár23769352021-11-03 01:01:05 +0100607 reg = PCIE_ECAM_OFFSET(busno, PCI_DEV(bdf), PCI_FUNC(bdf), (offset & ~0x3));
Pali Rohár660a9412022-02-10 14:53:43 +0100608 advk_writel(pcie, reg, ADVK_PIO_ADDR_LS);
609 advk_writel(pcie, 0, ADVK_PIO_ADDR_MS);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800610 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);
Pali Rohár660a9412022-02-10 14:53:43 +0100614 advk_writel(pcie, reg, ADVK_PIO_WR_DATA);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800615 dev_dbg(pcie->dev, "\tPIO req. - val = 0x%08x\n", reg);
616
617 /* Program the data strobe */
618 reg = pcie_calc_datastrobe(offset, size);
Pali Rohár660a9412022-02-10 14:53:43 +0100619 advk_writel(pcie, reg, ADVK_PIO_WR_DATA_STRB);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800620 dev_dbg(pcie->dev, "\tPIO req. - strb = 0x%02x\n", reg);
621
Pali Rohár907cd9a2021-08-27 14:14:44 +0200622 retry_count = 0;
623
624retry:
Wilson Dinga6bdc862018-03-26 15:57:29 +0800625 /* Start the transfer */
Pali Rohár660a9412022-02-10 14:53:43 +0100626 advk_writel(pcie, 1, ADVK_PIO_ISR);
627 advk_writel(pcie, 1, ADVK_PIO_START);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800628
Pali Rohár907cd9a2021-08-27 14:14:44 +0200629 ret = pcie_advk_wait_pio(pcie);
630 if (ret < 0)
631 return ret;
632
633 retry_count += ret;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800634
635 /* Check PIO status */
Pali Rohár907cd9a2021-08-27 14:14:44 +0200636 ret = pcie_advk_check_pio_status(pcie, false, NULL);
637 if (ret == -EAGAIN && retry_count < PIO_MAX_RETRIES)
638 goto retry;
639 return ret;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800640}
641
642/**
Wilson Dinga6bdc862018-03-26 15:57:29 +0800643 * 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 *
649 * Return 1 (true) if link training ends up with link up success.
650 * Return 0 (false) if link training ends up with link up failure.
651 */
652static int pcie_advk_wait_for_link(struct pcie_advk *pcie)
653{
654 int retries;
655
656 /* check if the link is up or not */
Pali Rohárfc0eddf2021-04-22 16:23:04 +0200657 for (retries = 0; retries < LINK_MAX_RETRIES; retries++) {
Wilson Dinga6bdc862018-03-26 15:57:29 +0800658 if (pcie_advk_link_up(pcie)) {
Pali Rohár525886e2021-09-26 00:54:42 +0200659 printf("PCIe: Link up\n");
Wilson Dinga6bdc862018-03-26 15:57:29 +0800660 return 0;
661 }
662
663 udelay(LINK_WAIT_TIMEOUT);
664 }
665
Pali Rohár525886e2021-09-26 00:54:42 +0200666 printf("PCIe: Link down\n");
Wilson Dinga6bdc862018-03-26 15:57:29 +0800667
668 return -ETIMEDOUT;
669}
670
Pali Roháre78c8e02021-05-26 17:59:40 +0200671/*
672 * Set PCIe address window register which could be used for memory
673 * mapping.
674 */
675static void pcie_advk_set_ob_win(struct pcie_advk *pcie, u8 win_num,
676 phys_addr_t match, phys_addr_t remap,
677 phys_addr_t mask, u32 actions)
678{
Pali Rohár660a9412022-02-10 14:53:43 +0100679 advk_writel(pcie, ADVK_OB_WIN_ENABLE |
680 lower_32_bits(match), ADVK_OB_WIN_MATCH_LS(win_num));
681 advk_writel(pcie, upper_32_bits(match), ADVK_OB_WIN_MATCH_MS(win_num));
682 advk_writel(pcie, lower_32_bits(remap), ADVK_OB_WIN_REMAP_LS(win_num));
683 advk_writel(pcie, upper_32_bits(remap), ADVK_OB_WIN_REMAP_MS(win_num));
684 advk_writel(pcie, lower_32_bits(mask), ADVK_OB_WIN_MASK_LS(win_num));
685 advk_writel(pcie, upper_32_bits(mask), ADVK_OB_WIN_MASK_MS(win_num));
686 advk_writel(pcie, actions, ADVK_OB_WIN_ACTIONS(win_num));
Pali Roháre78c8e02021-05-26 17:59:40 +0200687}
688
689static void pcie_advk_disable_ob_win(struct pcie_advk *pcie, u8 win_num)
690{
Pali Rohár660a9412022-02-10 14:53:43 +0100691 advk_writel(pcie, 0, ADVK_OB_WIN_MATCH_LS(win_num));
692 advk_writel(pcie, 0, ADVK_OB_WIN_MATCH_MS(win_num));
693 advk_writel(pcie, 0, ADVK_OB_WIN_REMAP_LS(win_num));
694 advk_writel(pcie, 0, ADVK_OB_WIN_REMAP_MS(win_num));
695 advk_writel(pcie, 0, ADVK_OB_WIN_MASK_LS(win_num));
696 advk_writel(pcie, 0, ADVK_OB_WIN_MASK_MS(win_num));
697 advk_writel(pcie, 0, ADVK_OB_WIN_ACTIONS(win_num));
Pali Roháre78c8e02021-05-26 17:59:40 +0200698}
699
700static void pcie_advk_set_ob_region(struct pcie_advk *pcie, int *wins,
701 struct pci_region *region, u32 actions)
702{
703 phys_addr_t phys_start = region->phys_start;
704 pci_addr_t bus_start = region->bus_start;
705 pci_size_t size = region->size;
706 phys_addr_t win_mask;
707 u64 win_size;
708
709 if (*wins == -1)
710 return;
711
712 /*
713 * The n-th PCIe window is configured by tuple (match, remap, mask)
Pali Rohár2fef1db2021-07-08 20:19:00 +0200714 * and an access to address A uses this window if A matches the
Pali Roháre78c8e02021-05-26 17:59:40 +0200715 * match with given mask.
716 * So every PCIe window size must be a power of two and every start
717 * address must be aligned to window size. Minimal size is 64 KiB
Pali Rohár22b1e082021-07-08 20:18:58 +0200718 * because lower 16 bits of mask must be zero. Remapped address
719 * may have set only bits from the mask.
Pali Roháre78c8e02021-05-26 17:59:40 +0200720 */
Pali Rohár660a9412022-02-10 14:53:43 +0100721 while (*wins < ADVK_OB_WIN_COUNT && size > 0) {
Pali Roháre78c8e02021-05-26 17:59:40 +0200722 /* Calculate the largest aligned window size */
723 win_size = (1ULL << (fls64(size) - 1)) |
724 (phys_start ? (1ULL << __ffs64(phys_start)) : 0);
725 win_size = 1ULL << __ffs64(win_size);
Pali Rohár22b1e082021-07-08 20:18:58 +0200726 win_mask = ~(win_size - 1);
727 if (win_size < 0x10000 || (bus_start & ~win_mask))
Pali Roháre78c8e02021-05-26 17:59:40 +0200728 break;
729
730 dev_dbg(pcie->dev,
731 "Configuring PCIe window %d: [0x%llx-0x%llx] as 0x%x\n",
732 *wins, (u64)phys_start, (u64)phys_start + win_size,
733 actions);
Pali Roháre78c8e02021-05-26 17:59:40 +0200734 pcie_advk_set_ob_win(pcie, *wins, phys_start, bus_start,
735 win_mask, actions);
736
737 phys_start += win_size;
738 bus_start += win_size;
739 size -= win_size;
740 (*wins)++;
741 }
742
743 if (size > 0) {
744 *wins = -1;
745 dev_err(pcie->dev,
746 "Invalid PCIe region [0x%llx-0x%llx]\n",
747 (u64)region->phys_start,
748 (u64)region->phys_start + region->size);
749 }
750}
751
Wilson Dinga6bdc862018-03-26 15:57:29 +0800752/**
753 * pcie_advk_setup_hw() - PCIe initailzation
754 *
755 * @pcie: The PCI device to access
756 *
757 * Return: 0 on success
758 */
759static int pcie_advk_setup_hw(struct pcie_advk *pcie)
760{
Pali Roháre78c8e02021-05-26 17:59:40 +0200761 struct pci_region *io, *mem, *pref;
762 int i, wins;
Wilson Dinga6bdc862018-03-26 15:57:29 +0800763 u32 reg;
764
765 /* Set to Direct mode */
Pali Rohár660a9412022-02-10 14:53:43 +0100766 reg = advk_readl(pcie, ADVK_CORE_CTRL_CONFIG);
767 reg &= ~ADVK_CORE_CTRL_CONFIG_COMMAND_MODE;
768 advk_writel(pcie, reg, ADVK_CORE_CTRL_CONFIG);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800769
770 /* Set PCI global control register to RC mode */
Pali Rohár660a9412022-02-10 14:53:43 +0100771 reg = advk_readl(pcie, ADVK_GLOBAL_CTRL0);
772 reg |= ADVK_GLOBAL_CTRL0_IS_RC;
773 advk_writel(pcie, reg, ADVK_GLOBAL_CTRL0);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800774
Pali Rohárba40b6c2021-03-03 14:37:59 +0100775 /*
776 * Replace incorrect PCI vendor id value 0x1b4b by correct value 0x11ab.
Pali Rohár660a9412022-02-10 14:53:43 +0100777 * ADVK_LMI_VENDOR_ID contains vendor id in low 16 bits and subsystem vendor
Pali Rohárba40b6c2021-03-03 14:37:59 +0100778 * id in high 16 bits. Updating this register changes readback value of
Pali Rohár660a9412022-02-10 14:53:43 +0100779 * read-only vendor id bits in Root Port PCI_VENDOR_ID register. Workaround
Pali Rohárba40b6c2021-03-03 14:37:59 +0100780 * for erratum 4.1: "The value of device and vendor ID is incorrect".
781 */
Pali Rohár660a9412022-02-10 14:53:43 +0100782 advk_writel(pcie, 0x11ab11ab, ADVK_LMI_VENDOR_ID);
Pali Rohárba40b6c2021-03-03 14:37:59 +0100783
Pali Rohár525886e2021-09-26 00:54:42 +0200784 /*
785 * Change Class Code of PCI Bridge device to PCI Bridge (0x600400),
786 * because default value is Mass Storage Controller (0x010400), causing
787 * U-Boot to fail to recognize it as P2P Bridge.
788 *
789 * Note that this Aardvark PCI Bridge does not have a compliant Type 1
790 * Configuration Space and it even cannot be accessed via Aardvark's
Pali Rohár0f65c042021-11-11 16:35:48 +0100791 * PCI config space access method. Aardvark PCI Bridge Config space is
Pali Rohár525886e2021-09-26 00:54:42 +0200792 * available in internal Aardvark registers starting at offset 0x0
Pali Rohár0f65c042021-11-11 16:35:48 +0100793 * and has format of Type 0 config space.
794 *
795 * Moreover Type 0 BAR registers (ranges 0x10 - 0x28 and 0x30 - 0x34)
796 * have the same format in Marvell's specification as in PCIe
797 * specification, but their meaning is totally different (and not even
798 * the same meaning as explained in the corresponding comment in the
799 * pci_mvebu driver; aardvark is still different).
800 *
801 * So our driver converts Type 0 config space to Type 1 and reports
802 * Header Type as Type 1. Access to BAR registers and to non-existent
803 * Type 1 registers is redirected to the virtual cfgcache[] buffer,
804 * which avoids changing unrelated registers.
Pali Rohár525886e2021-09-26 00:54:42 +0200805 */
Pali Rohár810cde32022-02-10 14:53:42 +0100806 reg = advk_readl(pcie, ADVK_ROOT_PORT_PCI_CFG_OFF + PCI_CLASS_REVISION);
Pali Rohár525886e2021-09-26 00:54:42 +0200807 reg &= ~0xffffff00;
808 reg |= (PCI_CLASS_BRIDGE_PCI << 8) << 8;
Pali Rohár810cde32022-02-10 14:53:42 +0100809 advk_writel(pcie, reg, ADVK_ROOT_PORT_PCI_CFG_OFF + PCI_CLASS_REVISION);
Pali Rohár525886e2021-09-26 00:54:42 +0200810
Pali Rohár810cde32022-02-10 14:53:42 +0100811 /* Enable generation and checking of ECRC on PCIe Root Port */
812 reg = advk_readl(pcie, ADVK_ROOT_PORT_PCI_ERR_OFF + PCI_ERR_CAP);
813 reg |= PCI_ERR_CAP_ECRC_GENE | PCI_ERR_CAP_ECRC_CHKE;
814 advk_writel(pcie, reg, ADVK_ROOT_PORT_PCI_ERR_OFF + PCI_ERR_CAP);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800815
Pali Rohár810cde32022-02-10 14:53:42 +0100816 /* Set PCIe Device Control register on PCIe Root Port */
817 reg = advk_readl(pcie, ADVK_ROOT_PORT_PCI_EXP_OFF + PCI_EXP_DEVCTL);
818 reg &= ~PCI_EXP_DEVCTL_RELAX_EN;
819 reg &= ~PCI_EXP_DEVCTL_NOSNOOP_EN;
820 reg &= ~PCI_EXP_DEVCTL_PAYLOAD;
821 reg &= ~PCI_EXP_DEVCTL_READRQ;
822 reg |= PCI_EXP_DEVCTL_PAYLOAD_512B;
823 reg |= PCI_EXP_DEVCTL_READRQ_512B;
824 advk_writel(pcie, reg, ADVK_ROOT_PORT_PCI_EXP_OFF + PCI_EXP_DEVCTL);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800825
826 /* Program PCIe Control 2 to disable strict ordering */
Pali Rohár660a9412022-02-10 14:53:43 +0100827 reg = advk_readl(pcie, ADVK_GLOBAL_CTRL2);
828 reg &= ~ADVK_GLOBAL_CTRL2_STRICT_ORDER_EN;
829 advk_writel(pcie, reg, ADVK_GLOBAL_CTRL2);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800830
831 /* Set GEN2 */
Pali Rohár660a9412022-02-10 14:53:43 +0100832 reg = advk_readl(pcie, ADVK_GLOBAL_CTRL0);
833 reg &= ~ADVK_GLOBAL_CTRL0_SPEED_GEN_MASK;
834 reg |= ADVK_GLOBAL_CTRL0_SPEED_GEN_2 << ADVK_GLOBAL_CTRL0_SPEED_GEN_SHIFT;
835 advk_writel(pcie, reg, ADVK_GLOBAL_CTRL0);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800836
837 /* Set lane X1 */
Pali Rohár660a9412022-02-10 14:53:43 +0100838 reg = advk_readl(pcie, ADVK_GLOBAL_CTRL0);
839 reg &= ~ADVK_GLOBAL_CTRL0_LANE_COUNT_MASK;
840 reg |= ADVK_GLOBAL_CTRL0_LANE_COUNT_1 << ADVK_GLOBAL_CTRL0_LANE_COUNT_SHIFT;
841 advk_writel(pcie, reg, ADVK_GLOBAL_CTRL0);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800842
843 /* Enable link training */
Pali Rohár660a9412022-02-10 14:53:43 +0100844 reg = advk_readl(pcie, ADVK_GLOBAL_CTRL0);
845 reg |= ADVK_GLOBAL_CTRL0_LINK_TRAINING_EN;
846 advk_writel(pcie, reg, ADVK_GLOBAL_CTRL0);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800847
848 /*
849 * Enable AXI address window location generation:
850 * When it is enabled, the default outbound window
851 * configurations (Default User Field: 0xD0074CFC)
852 * are used to transparent address translation for
853 * the outbound transactions. Thus, PCIe address
Pali Roháre78c8e02021-05-26 17:59:40 +0200854 * windows are not required for transparent memory
855 * access when default outbound window configuration
856 * is set for memory access.
Wilson Dinga6bdc862018-03-26 15:57:29 +0800857 */
Pali Rohár660a9412022-02-10 14:53:43 +0100858 reg = advk_readl(pcie, ADVK_GLOBAL_CTRL2);
859 reg |= ADVK_GLOBAL_CTRL2_ADDRWIN_MAP_EN;
860 advk_writel(pcie, reg, ADVK_GLOBAL_CTRL2);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800861
862 /*
863 * Bypass the address window mapping for PIO:
864 * Since PIO access already contains all required
865 * info over AXI interface by PIO registers, the
866 * address window is not required.
867 */
Pali Rohár660a9412022-02-10 14:53:43 +0100868 reg = advk_readl(pcie, ADVK_PIO_CTRL);
869 reg |= ADVK_PIO_CTRL_ADDR_WIN_DISABLE;
870 advk_writel(pcie, reg, ADVK_PIO_CTRL);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800871
Pali Roháre78c8e02021-05-26 17:59:40 +0200872 /*
873 * Set memory access in Default User Field so it
874 * is not required to configure PCIe address for
875 * transparent memory access.
876 */
Pali Rohár660a9412022-02-10 14:53:43 +0100877 advk_writel(pcie, ADVK_OB_WIN_TYPE_MEM, ADVK_OB_WIN_DEFAULT_ACTIONS);
Pali Roháre78c8e02021-05-26 17:59:40 +0200878
879 /*
880 * Configure PCIe address windows for non-memory or
881 * non-transparent access as by default PCIe uses
882 * transparent memory access.
883 */
884 wins = 0;
885 pci_get_regions(pcie->dev, &io, &mem, &pref);
886 if (io)
Pali Rohár660a9412022-02-10 14:53:43 +0100887 pcie_advk_set_ob_region(pcie, &wins, io, ADVK_OB_WIN_TYPE_IO);
Pali Roháre78c8e02021-05-26 17:59:40 +0200888 if (mem && mem->phys_start != mem->bus_start)
Pali Rohár660a9412022-02-10 14:53:43 +0100889 pcie_advk_set_ob_region(pcie, &wins, mem, ADVK_OB_WIN_TYPE_MEM);
Pali Roháre78c8e02021-05-26 17:59:40 +0200890 if (pref && pref->phys_start != pref->bus_start)
Pali Rohár660a9412022-02-10 14:53:43 +0100891 pcie_advk_set_ob_region(pcie, &wins, pref, ADVK_OB_WIN_TYPE_MEM);
Pali Roháre78c8e02021-05-26 17:59:40 +0200892
893 /* Disable remaining PCIe outbound windows */
Pali Rohár660a9412022-02-10 14:53:43 +0100894 for (i = ((wins >= 0) ? wins : 0); i < ADVK_OB_WIN_COUNT; i++)
Pali Roháre78c8e02021-05-26 17:59:40 +0200895 pcie_advk_disable_ob_win(pcie, i);
896
897 if (wins == -1)
898 return -EINVAL;
899
Wilson Dinga6bdc862018-03-26 15:57:29 +0800900 /* Wait for PCIe link up */
901 if (pcie_advk_wait_for_link(pcie))
902 return -ENXIO;
903
Wilson Dinga6bdc862018-03-26 15:57:29 +0800904 return 0;
905}
906
907/**
908 * pcie_advk_probe() - Probe the PCIe bus for active link
909 *
910 * @dev: A pointer to the device being operated on
911 *
912 * Probe for an active link on the PCIe bus and configure the controller
913 * to enable this port.
914 *
915 * Return: 0 on success, else -ENODEV
916 */
917static int pcie_advk_probe(struct udevice *dev)
918{
919 struct pcie_advk *pcie = dev_get_priv(dev);
920
Pali Rohár6a58b972020-08-19 15:57:07 +0200921 gpio_request_by_name(dev, "reset-gpios", 0, &pcie->reset_gpio,
Wilson Dinga6bdc862018-03-26 15:57:29 +0800922 GPIOD_IS_OUT);
923 /*
924 * Issue reset to add-in card through the dedicated GPIO.
925 * Some boards are connecting the card reset pin to common system
926 * reset wire and others are using separate GPIO port.
927 * In the last case we have to release a reset of the addon card
928 * using this GPIO.
929 *
930 * FIX-ME:
931 * The PCIe RESET signal is not supposed to be released along
932 * with the SOC RESET signal. It should be lowered as early as
933 * possible before PCIe PHY initialization. Moreover, the PCIe
934 * clock should be gated as well.
935 */
Pali Rohár6a58b972020-08-19 15:57:07 +0200936 if (dm_gpio_is_valid(&pcie->reset_gpio)) {
Pali Roháre3271bb2021-01-18 12:09:33 +0100937 dev_dbg(dev, "Toggle PCIE Reset GPIO ...\n");
Pali Rohár6a58b972020-08-19 15:57:07 +0200938 dm_gpio_set_value(&pcie->reset_gpio, 1);
Pali Rohár0130a612020-08-19 15:57:06 +0200939 mdelay(200);
Pali Rohár6a58b972020-08-19 15:57:07 +0200940 dm_gpio_set_value(&pcie->reset_gpio, 0);
Pali Rohár5c6edca2020-08-25 10:45:04 +0200941 } else {
Pali Roháre3271bb2021-01-18 12:09:33 +0100942 dev_warn(dev, "PCIE Reset on GPIO support is missing\n");
Wilson Dinga6bdc862018-03-26 15:57:29 +0800943 }
Wilson Dinga6bdc862018-03-26 15:57:29 +0800944
Wilson Dinga6bdc862018-03-26 15:57:29 +0800945 pcie->dev = pci_get_controller(dev);
946
Pali Rohár525886e2021-09-26 00:54:42 +0200947 /* PCI Bridge support 32-bit I/O and 64-bit prefetch mem addressing */
948 pcie->cfgcache[(PCI_IO_BASE - 0x10) / 4] =
949 PCI_IO_RANGE_TYPE_32 | (PCI_IO_RANGE_TYPE_32 << 8);
950 pcie->cfgcache[(PCI_PREF_MEMORY_BASE - 0x10) / 4] =
951 PCI_PREF_RANGE_TYPE_64 | (PCI_PREF_RANGE_TYPE_64 << 16);
952
Wilson Dinga6bdc862018-03-26 15:57:29 +0800953 return pcie_advk_setup_hw(pcie);
954}
955
Pali Rohár6a58b972020-08-19 15:57:07 +0200956static int pcie_advk_remove(struct udevice *dev)
957{
Pali Rohár6a58b972020-08-19 15:57:07 +0200958 struct pcie_advk *pcie = dev_get_priv(dev);
Pali Rohárff876992020-09-22 13:21:38 +0200959 u32 reg;
Pali Roháre78c8e02021-05-26 17:59:40 +0200960 int i;
961
Pali Rohár660a9412022-02-10 14:53:43 +0100962 for (i = 0; i < ADVK_OB_WIN_COUNT; i++)
Pali Roháre78c8e02021-05-26 17:59:40 +0200963 pcie_advk_disable_ob_win(pcie, i);
Pali Rohár6a58b972020-08-19 15:57:07 +0200964
Pali Rohár810cde32022-02-10 14:53:42 +0100965 reg = advk_readl(pcie, ADVK_ROOT_PORT_PCI_CFG_OFF + PCI_COMMAND);
966 reg &= ~(PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
967 advk_writel(pcie, reg, ADVK_ROOT_PORT_PCI_CFG_OFF + PCI_COMMAND);
Pali Roháread96342021-05-26 17:59:35 +0200968
Pali Rohár660a9412022-02-10 14:53:43 +0100969 reg = advk_readl(pcie, ADVK_GLOBAL_CTRL0);
970 reg &= ~ADVK_GLOBAL_CTRL0_LINK_TRAINING_EN;
971 advk_writel(pcie, reg, ADVK_GLOBAL_CTRL0);
Pali Rohárff876992020-09-22 13:21:38 +0200972
Pali Rohár6a58b972020-08-19 15:57:07 +0200973 return 0;
974}
975
Wilson Dinga6bdc862018-03-26 15:57:29 +0800976/**
Simon Glassaad29ae2020-12-03 16:55:21 -0700977 * pcie_advk_of_to_plat() - Translate from DT to device state
Wilson Dinga6bdc862018-03-26 15:57:29 +0800978 *
979 * @dev: A pointer to the device being operated on
980 *
981 * Translate relevant data from the device tree pertaining to device @dev into
982 * state that the driver will later make use of. This state is stored in the
983 * device's private data structure.
984 *
985 * Return: 0 on success, else -EINVAL
986 */
Simon Glassaad29ae2020-12-03 16:55:21 -0700987static int pcie_advk_of_to_plat(struct udevice *dev)
Wilson Dinga6bdc862018-03-26 15:57:29 +0800988{
989 struct pcie_advk *pcie = dev_get_priv(dev);
990
991 /* Get the register base address */
Pali Rohár0c8b55f2022-02-10 14:53:44 +0100992 pcie->base = (void *)dev_read_addr(dev);
Wilson Dinga6bdc862018-03-26 15:57:29 +0800993 if ((fdt_addr_t)pcie->base == FDT_ADDR_T_NONE)
994 return -EINVAL;
995
996 return 0;
997}
998
999static const struct dm_pci_ops pcie_advk_ops = {
1000 .read_config = pcie_advk_read_config,
1001 .write_config = pcie_advk_write_config,
1002};
1003
1004static const struct udevice_id pcie_advk_ids[] = {
Pali Rohár678cf9d2021-05-26 17:59:36 +02001005 { .compatible = "marvell,armada-3700-pcie" },
Wilson Dinga6bdc862018-03-26 15:57:29 +08001006 { }
1007};
1008
1009U_BOOT_DRIVER(pcie_advk) = {
1010 .name = "pcie_advk",
1011 .id = UCLASS_PCI,
1012 .of_match = pcie_advk_ids,
1013 .ops = &pcie_advk_ops,
Simon Glassaad29ae2020-12-03 16:55:21 -07001014 .of_to_plat = pcie_advk_of_to_plat,
Wilson Dinga6bdc862018-03-26 15:57:29 +08001015 .probe = pcie_advk_probe,
Pali Rohár6a58b972020-08-19 15:57:07 +02001016 .remove = pcie_advk_remove,
1017 .flags = DM_FLAG_OS_PREPARE,
Simon Glass8a2b47f2020-12-03 16:55:17 -07001018 .priv_auto = sizeof(struct pcie_advk),
Wilson Dinga6bdc862018-03-26 15:57:29 +08001019};