blob: 61349a4da53f708cec163186eaf839cde98a5aed [file] [log] [blame]
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +05301// SPDX-License-Identifier: GPL-2.0+
2/*
3 * (C) Copyright 2018 Xilinx
4 *
5 * Xilinx ZynqMP Generic Quad-SPI(QSPI) controller driver(master mode only)
6 */
7
Ibai Erkiaga78974fb2023-10-13 13:37:27 +01008#define LOG_CATEGORY UCLASS_SPI
9
Simon Glass63334482019-11-14 12:57:39 -070010#include <cpu_func.h>
Simon Glass0f2af882020-05-10 11:40:05 -060011#include <log.h>
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +053012#include <asm/arch/sys_proto.h>
Simon Glass274e0b02020-05-10 11:39:56 -060013#include <asm/cache.h>
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +053014#include <asm/io.h>
15#include <clk.h>
16#include <dm.h>
17#include <malloc.h>
18#include <memalign.h>
19#include <spi.h>
Brandon Maier4d9cce72021-01-20 10:39:46 -060020#include <spi-mem.h>
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +053021#include <ubi_uboot.h>
22#include <wait_bit.h>
Simon Glass9bc15642020-02-03 07:36:16 -070023#include <dm/device_compat.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060024#include <linux/bitops.h>
Simon Glassd66c5f72020-02-03 07:36:15 -070025#include <linux/err.h>
Ashok Reddy Soma2d322cc2022-08-25 06:59:04 -060026#include <linux/sizes.h>
Ashok Reddy Somae3c77a62022-08-25 06:59:01 -060027#include <zynqmp_firmware.h>
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +053028
29#define GQSPI_GFIFO_STRT_MODE_MASK BIT(29)
30#define GQSPI_CONFIG_MODE_EN_MASK (3 << 30)
31#define GQSPI_CONFIG_DMA_MODE (2 << 30)
32#define GQSPI_CONFIG_CPHA_MASK BIT(2)
33#define GQSPI_CONFIG_CPOL_MASK BIT(1)
34
35/*
36 * QSPI Interrupt Registers bit Masks
37 *
38 * All the four interrupt registers (Status/Mask/Enable/Disable) have the same
39 * bit definitions.
40 */
41#define GQSPI_IXR_TXNFULL_MASK 0x00000004 /* QSPI TX FIFO Overflow */
42#define GQSPI_IXR_TXFULL_MASK 0x00000008 /* QSPI TX FIFO is full */
Ashok Reddy Soma26f77d72021-10-19 19:43:00 +053043#define GQSPI_IXR_TXFIFOEMPTY_MASK 0x00000100 /* QSPI TX FIFO is Empty */
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +053044#define GQSPI_IXR_RXNEMTY_MASK 0x00000010 /* QSPI RX FIFO Not Empty */
45#define GQSPI_IXR_GFEMTY_MASK 0x00000080 /* QSPI Generic FIFO Empty */
Ashok Reddy Soma2af829f2021-05-25 06:36:27 -060046#define GQSPI_IXR_GFNFULL_MASK 0x00000200 /* QSPI GENFIFO not full */
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +053047#define GQSPI_IXR_ALL_MASK (GQSPI_IXR_TXNFULL_MASK | \
48 GQSPI_IXR_RXNEMTY_MASK)
49
50/*
51 * QSPI Enable Register bit Masks
52 *
53 * This register is used to enable or disable the QSPI controller
54 */
55#define GQSPI_ENABLE_ENABLE_MASK 0x00000001 /* QSPI Enable Bit Mask */
56
57#define GQSPI_GFIFO_LOW_BUS BIT(14)
58#define GQSPI_GFIFO_CS_LOWER BIT(12)
59#define GQSPI_GFIFO_UP_BUS BIT(15)
60#define GQSPI_GFIFO_CS_UPPER BIT(13)
61#define GQSPI_SPI_MODE_QSPI (3 << 10)
62#define GQSPI_SPI_MODE_SPI BIT(10)
63#define GQSPI_SPI_MODE_DUAL_SPI (2 << 10)
64#define GQSPI_IMD_DATA_CS_ASSERT 5
65#define GQSPI_IMD_DATA_CS_DEASSERT 5
66#define GQSPI_GFIFO_TX BIT(16)
67#define GQSPI_GFIFO_RX BIT(17)
68#define GQSPI_GFIFO_STRIPE_MASK BIT(18)
69#define GQSPI_GFIFO_IMD_MASK 0xFF
70#define GQSPI_GFIFO_EXP_MASK BIT(9)
71#define GQSPI_GFIFO_DATA_XFR_MASK BIT(8)
72#define GQSPI_STRT_GEN_FIFO BIT(28)
73#define GQSPI_GEN_FIFO_STRT_MOD BIT(29)
74#define GQSPI_GFIFO_WP_HOLD BIT(19)
75#define GQSPI_BAUD_DIV_MASK (7 << 3)
76#define GQSPI_DFLT_BAUD_RATE_DIV BIT(3)
77#define GQSPI_GFIFO_ALL_INT_MASK 0xFBE
78#define GQSPI_DMA_DST_I_STS_DONE BIT(1)
79#define GQSPI_DMA_DST_I_STS_MASK 0xFE
80#define MODEBITS 0x6
81
82#define GQSPI_GFIFO_SELECT BIT(0)
83#define GQSPI_FIFO_THRESHOLD 1
Ashok Reddy Soma822a2432021-08-20 07:43:17 -060084#define GQSPI_GENFIFO_THRESHOLD 31
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +053085
86#define SPI_XFER_ON_BOTH 0
87#define SPI_XFER_ON_LOWER 1
88#define SPI_XFER_ON_UPPER 2
89
90#define GQSPI_DMA_ALIGN 0x4
91#define GQSPI_MAX_BAUD_RATE_VAL 7
92#define GQSPI_DFLT_BAUD_RATE_VAL 2
93
94#define GQSPI_TIMEOUT 100000000
95
96#define GQSPI_BAUD_DIV_SHIFT 2
97#define GQSPI_LPBK_DLY_ADJ_LPBK_SHIFT 5
T Karthik Reddy751533d2022-11-23 02:04:51 -070098#define GQSPI_LPBK_DLY_ADJ_DLY_1 0x1
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +053099#define GQSPI_LPBK_DLY_ADJ_DLY_1_SHIFT 3
100#define GQSPI_LPBK_DLY_ADJ_DLY_0 0x3
101#define GQSPI_USE_DATA_DLY 0x1
102#define GQSPI_USE_DATA_DLY_SHIFT 31
103#define GQSPI_DATA_DLY_ADJ_VALUE 0x2
104#define GQSPI_DATA_DLY_ADJ_SHIFT 28
105#define TAP_DLY_BYPASS_LQSPI_RX_VALUE 0x1
106#define TAP_DLY_BYPASS_LQSPI_RX_SHIFT 2
107#define GQSPI_DATA_DLY_ADJ_OFST 0x000001F8
Ashok Reddy Somaef3e30b2022-11-16 16:40:30 +0100108#define IOU_TAPDLY_BYPASS_OFST !(IS_ENABLED(CONFIG_ARCH_VERSAL) || \
109 IS_ENABLED(CONFIG_ARCH_VERSAL_NET)) ? \
Ashok Reddy Somae3c77a62022-08-25 06:59:01 -0600110 0xFF180390 : 0xF103003C
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530111#define GQSPI_LPBK_DLY_ADJ_LPBK_MASK 0x00000020
Ashok Reddy Somae3c77a62022-08-25 06:59:01 -0600112#define GQSPI_FREQ_37_5MHZ 37500000
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530113#define GQSPI_FREQ_40MHZ 40000000
114#define GQSPI_FREQ_100MHZ 100000000
115#define GQSPI_FREQ_150MHZ 150000000
116#define IOU_TAPDLY_BYPASS_MASK 0x7
117
118#define GQSPI_REG_OFFSET 0x100
119#define GQSPI_DMA_REG_OFFSET 0x800
120
121/* QSPI register offsets */
122struct zynqmp_qspi_regs {
123 u32 confr; /* 0x00 */
124 u32 isr; /* 0x04 */
125 u32 ier; /* 0x08 */
126 u32 idisr; /* 0x0C */
127 u32 imaskr; /* 0x10 */
128 u32 enbr; /* 0x14 */
129 u32 dr; /* 0x18 */
130 u32 txd0r; /* 0x1C */
131 u32 drxr; /* 0x20 */
132 u32 sicr; /* 0x24 */
133 u32 txftr; /* 0x28 */
134 u32 rxftr; /* 0x2C */
135 u32 gpior; /* 0x30 */
136 u32 reserved0; /* 0x34 */
137 u32 lpbkdly; /* 0x38 */
138 u32 reserved1; /* 0x3C */
139 u32 genfifo; /* 0x40 */
140 u32 gqspisel; /* 0x44 */
141 u32 reserved2; /* 0x48 */
142 u32 gqfifoctrl; /* 0x4C */
143 u32 gqfthr; /* 0x50 */
144 u32 gqpollcfg; /* 0x54 */
145 u32 gqpollto; /* 0x58 */
146 u32 gqxfersts; /* 0x5C */
147 u32 gqfifosnap; /* 0x60 */
148 u32 gqrxcpy; /* 0x64 */
149 u32 reserved3[36]; /* 0x68 */
150 u32 gqspidlyadj; /* 0xF8 */
151};
152
153struct zynqmp_qspi_dma_regs {
154 u32 dmadst; /* 0x00 */
155 u32 dmasize; /* 0x04 */
156 u32 dmasts; /* 0x08 */
157 u32 dmactrl; /* 0x0C */
158 u32 reserved0; /* 0x10 */
159 u32 dmaisr; /* 0x14 */
160 u32 dmaier; /* 0x18 */
161 u32 dmaidr; /* 0x1C */
162 u32 dmaimr; /* 0x20 */
163 u32 dmactrl2; /* 0x24 */
164 u32 dmadstmsb; /* 0x28 */
165};
166
Simon Glassb75b15b2020-12-03 16:55:23 -0700167struct zynqmp_qspi_plat {
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530168 struct zynqmp_qspi_regs *regs;
169 struct zynqmp_qspi_dma_regs *dma_regs;
170 u32 frequency;
171 u32 speed_hz;
Ashok Reddy Soma96db8b62022-08-25 06:59:03 -0600172 unsigned int io_mode;
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530173};
174
175struct zynqmp_qspi_priv {
176 struct zynqmp_qspi_regs *regs;
177 struct zynqmp_qspi_dma_regs *dma_regs;
178 const void *tx_buf;
179 void *rx_buf;
180 unsigned int len;
Ashok Reddy Soma96db8b62022-08-25 06:59:03 -0600181 unsigned int io_mode;
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530182 int bytes_to_transfer;
183 int bytes_to_receive;
Brandon Maier4d9cce72021-01-20 10:39:46 -0600184 const struct spi_mem_op *op;
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530185};
186
Algapally Santosh Sagar58f731a2023-03-01 03:33:33 -0700187__weak int zynqmp_mmio_write(const u32 address, const u32 mask, const u32 value)
188{
189 return 0;
190}
191
Simon Glassaad29ae2020-12-03 16:55:21 -0700192static int zynqmp_qspi_of_to_plat(struct udevice *bus)
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530193{
Simon Glass95588622020-12-22 19:30:28 -0700194 struct zynqmp_qspi_plat *plat = dev_get_plat(bus);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530195
Masahiro Yamadaa89b4de2020-07-17 14:36:48 +0900196 plat->regs = (struct zynqmp_qspi_regs *)(dev_read_addr(bus) +
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530197 GQSPI_REG_OFFSET);
198 plat->dma_regs = (struct zynqmp_qspi_dma_regs *)
Masahiro Yamadaa89b4de2020-07-17 14:36:48 +0900199 (dev_read_addr(bus) + GQSPI_DMA_REG_OFFSET);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530200
Ashok Reddy Soma96db8b62022-08-25 06:59:03 -0600201 plat->io_mode = dev_read_bool(bus, "has-io-mode");
202
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530203 return 0;
204}
205
206static void zynqmp_qspi_init_hw(struct zynqmp_qspi_priv *priv)
207{
208 u32 config_reg;
209 struct zynqmp_qspi_regs *regs = priv->regs;
210
211 writel(GQSPI_GFIFO_SELECT, &regs->gqspisel);
212 writel(GQSPI_GFIFO_ALL_INT_MASK, &regs->idisr);
213 writel(GQSPI_FIFO_THRESHOLD, &regs->txftr);
214 writel(GQSPI_FIFO_THRESHOLD, &regs->rxftr);
Ashok Reddy Soma822a2432021-08-20 07:43:17 -0600215 writel(GQSPI_GENFIFO_THRESHOLD, &regs->gqfthr);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530216 writel(GQSPI_GFIFO_ALL_INT_MASK, &regs->isr);
Ashok Reddy Soma822a2432021-08-20 07:43:17 -0600217 writel(~GQSPI_ENABLE_ENABLE_MASK, &regs->enbr);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530218
219 config_reg = readl(&regs->confr);
220 config_reg &= ~(GQSPI_GFIFO_STRT_MODE_MASK |
221 GQSPI_CONFIG_MODE_EN_MASK);
Ashok Reddy Soma96db8b62022-08-25 06:59:03 -0600222 config_reg |= GQSPI_GFIFO_WP_HOLD | GQSPI_DFLT_BAUD_RATE_DIV;
223 config_reg |= GQSPI_GFIFO_STRT_MODE_MASK;
224 if (!priv->io_mode)
225 config_reg |= GQSPI_CONFIG_DMA_MODE;
226
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530227 writel(config_reg, &regs->confr);
228
229 writel(GQSPI_ENABLE_ENABLE_MASK, &regs->enbr);
230}
231
232static u32 zynqmp_qspi_bus_select(struct zynqmp_qspi_priv *priv)
233{
234 u32 gqspi_fifo_reg = 0;
235
236 gqspi_fifo_reg = GQSPI_GFIFO_LOW_BUS |
237 GQSPI_GFIFO_CS_LOWER;
238
239 return gqspi_fifo_reg;
240}
241
Brandon Maier4d9cce72021-01-20 10:39:46 -0600242static u32 zynqmp_qspi_genfifo_mode(u8 buswidth)
243{
244 switch (buswidth) {
245 case 1:
246 return GQSPI_SPI_MODE_SPI;
247 case 2:
248 return GQSPI_SPI_MODE_DUAL_SPI;
249 case 4:
250 return GQSPI_SPI_MODE_QSPI;
251 default:
Ibai Erkiaga78974fb2023-10-13 13:37:27 +0100252 log_warning("Unsupported bus width %u\n", buswidth);
Brandon Maier4d9cce72021-01-20 10:39:46 -0600253 return GQSPI_SPI_MODE_SPI;
254 }
255}
256
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530257static void zynqmp_qspi_fill_gen_fifo(struct zynqmp_qspi_priv *priv,
258 u32 gqspi_fifo_reg)
259{
260 struct zynqmp_qspi_regs *regs = priv->regs;
Ashok Reddy Soma2af829f2021-05-25 06:36:27 -0600261 u32 config_reg, ier;
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530262 int ret = 0;
263
Ibai Erkiaga78974fb2023-10-13 13:37:27 +0100264 log_content("%s, GFIFO_CMD: 0x%X\n", __func__, gqspi_fifo_reg);
265
Ashok Reddy Soma1c35adc2021-08-20 07:43:16 -0600266 writel(gqspi_fifo_reg, &regs->genfifo);
267
Ashok Reddy Soma2af829f2021-05-25 06:36:27 -0600268 config_reg = readl(&regs->confr);
269 /* Manual start if needed */
270 config_reg |= GQSPI_STRT_GEN_FIFO;
271 writel(config_reg, &regs->confr);
272
273 /* Enable interrupts */
274 ier = readl(&regs->ier);
Ashok Reddy Soma1c35adc2021-08-20 07:43:16 -0600275 ier |= GQSPI_IXR_GFEMTY_MASK;
Ashok Reddy Soma2af829f2021-05-25 06:36:27 -0600276 writel(ier, &regs->ier);
277
Ashok Reddy Soma1c35adc2021-08-20 07:43:16 -0600278 /* Wait until the gen fifo is empty to write the new command */
279 ret = wait_for_bit_le32(&regs->isr, GQSPI_IXR_GFEMTY_MASK, 1,
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530280 GQSPI_TIMEOUT, 1);
281 if (ret)
Ibai Erkiaga78974fb2023-10-13 13:37:27 +0100282 log_warning("%s, Timeout\n", __func__);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530283
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530284}
285
286static void zynqmp_qspi_chipselect(struct zynqmp_qspi_priv *priv, int is_on)
287{
288 u32 gqspi_fifo_reg = 0;
289
Ibai Erkiaga78974fb2023-10-13 13:37:27 +0100290 log_debug("%s, assert: %d\r\n", __func__, is_on);
291
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530292 if (is_on) {
293 gqspi_fifo_reg = zynqmp_qspi_bus_select(priv);
294 gqspi_fifo_reg |= GQSPI_SPI_MODE_SPI |
295 GQSPI_IMD_DATA_CS_ASSERT;
296 } else {
297 gqspi_fifo_reg = GQSPI_GFIFO_LOW_BUS;
298 gqspi_fifo_reg |= GQSPI_IMD_DATA_CS_DEASSERT;
299 }
300
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530301 zynqmp_qspi_fill_gen_fifo(priv, gqspi_fifo_reg);
302}
303
Venkatesh Yadav Abbarapuf6dfade2022-10-04 11:07:30 +0530304static void zynqmp_qspi_set_tapdelay(struct udevice *bus, u32 baudrateval)
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530305{
Simon Glass95588622020-12-22 19:30:28 -0700306 struct zynqmp_qspi_plat *plat = dev_get_plat(bus);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530307 struct zynqmp_qspi_priv *priv = dev_get_priv(bus);
308 struct zynqmp_qspi_regs *regs = priv->regs;
309 u32 tapdlybypass = 0, lpbkdlyadj = 0, datadlyadj = 0, clk_rate;
310 u32 reqhz = 0;
311
312 clk_rate = plat->frequency;
313 reqhz = (clk_rate / (GQSPI_BAUD_DIV_SHIFT << baudrateval));
314
Ibai Erkiaga78974fb2023-10-13 13:37:27 +0100315 log_debug("%s, clk_rate:%d, baudrateval:%d, bus_clk: %d\n",
316 __func__, clk_rate, baudrateval, reqhz);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530317
Michal Simek06995c42022-09-19 14:21:04 +0200318 if (!(IS_ENABLED(CONFIG_ARCH_VERSAL) ||
319 IS_ENABLED(CONFIG_ARCH_VERSAL_NET))) {
Ashok Reddy Somae3c77a62022-08-25 06:59:01 -0600320 if (reqhz <= GQSPI_FREQ_40MHZ) {
321 tapdlybypass = TAP_DLY_BYPASS_LQSPI_RX_VALUE <<
322 TAP_DLY_BYPASS_LQSPI_RX_SHIFT;
323 } else if (reqhz <= GQSPI_FREQ_100MHZ) {
324 tapdlybypass = TAP_DLY_BYPASS_LQSPI_RX_VALUE <<
325 TAP_DLY_BYPASS_LQSPI_RX_SHIFT;
326 lpbkdlyadj = GQSPI_LPBK_DLY_ADJ_LPBK_MASK;
327 datadlyadj = (GQSPI_USE_DATA_DLY <<
328 GQSPI_USE_DATA_DLY_SHIFT) |
329 (GQSPI_DATA_DLY_ADJ_VALUE <<
330 GQSPI_DATA_DLY_ADJ_SHIFT);
331 } else if (reqhz <= GQSPI_FREQ_150MHZ) {
332 lpbkdlyadj = GQSPI_LPBK_DLY_ADJ_LPBK_MASK |
333 GQSPI_LPBK_DLY_ADJ_DLY_0;
334 }
335 zynqmp_mmio_write(IOU_TAPDLY_BYPASS_OFST,
336 IOU_TAPDLY_BYPASS_MASK, tapdlybypass);
337 } else {
338 if (reqhz <= GQSPI_FREQ_37_5MHZ) {
339 tapdlybypass = TAP_DLY_BYPASS_LQSPI_RX_VALUE <<
340 TAP_DLY_BYPASS_LQSPI_RX_SHIFT;
341 } else if (reqhz <= GQSPI_FREQ_100MHZ) {
342 tapdlybypass = TAP_DLY_BYPASS_LQSPI_RX_VALUE <<
343 TAP_DLY_BYPASS_LQSPI_RX_SHIFT;
344 lpbkdlyadj = GQSPI_LPBK_DLY_ADJ_LPBK_MASK;
345 datadlyadj = GQSPI_USE_DATA_DLY <<
346 GQSPI_USE_DATA_DLY_SHIFT;
347 } else if (reqhz <= GQSPI_FREQ_150MHZ) {
348 lpbkdlyadj = GQSPI_LPBK_DLY_ADJ_LPBK_MASK |
349 (GQSPI_LPBK_DLY_ADJ_DLY_1 <<
350 GQSPI_LPBK_DLY_ADJ_DLY_1_SHIFT);
351 }
352 writel(tapdlybypass, IOU_TAPDLY_BYPASS_OFST);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530353 }
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530354 writel(lpbkdlyadj, &regs->lpbkdly);
355 writel(datadlyadj, &regs->gqspidlyadj);
356}
357
358static int zynqmp_qspi_set_speed(struct udevice *bus, uint speed)
359{
Simon Glass95588622020-12-22 19:30:28 -0700360 struct zynqmp_qspi_plat *plat = dev_get_plat(bus);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530361 struct zynqmp_qspi_priv *priv = dev_get_priv(bus);
362 struct zynqmp_qspi_regs *regs = priv->regs;
363 u32 confr;
364 u8 baud_rate_val = 0;
365
Ibai Erkiaga78974fb2023-10-13 13:37:27 +0100366 log_debug("%s, Speed: %d, Max: %d\n", __func__, speed, plat->frequency);
367
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530368 if (speed > plat->frequency)
369 speed = plat->frequency;
370
Brandon Maierb8003d52021-01-20 14:28:30 -0600371 if (plat->speed_hz != speed) {
372 /* Set the clock frequency */
373 /* If speed == 0, default to lowest speed */
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530374 while ((baud_rate_val < 8) &&
375 ((plat->frequency /
376 (2 << baud_rate_val)) > speed))
377 baud_rate_val++;
378
379 if (baud_rate_val > GQSPI_MAX_BAUD_RATE_VAL)
380 baud_rate_val = GQSPI_DFLT_BAUD_RATE_VAL;
381
382 plat->speed_hz = plat->frequency / (2 << baud_rate_val);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530383
Brandon Maierb8003d52021-01-20 14:28:30 -0600384 confr = readl(&regs->confr);
385 confr &= ~GQSPI_BAUD_DIV_MASK;
386 confr |= (baud_rate_val << 3);
387 writel(confr, &regs->confr);
Brandon Maierb8003d52021-01-20 14:28:30 -0600388
Ibai Erkiaga78974fb2023-10-13 13:37:27 +0100389 zynqmp_qspi_set_tapdelay(bus, baud_rate_val);
Brandon Maierb8003d52021-01-20 14:28:30 -0600390 }
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530391
392 return 0;
393}
394
395static int zynqmp_qspi_probe(struct udevice *bus)
396{
Simon Glassb75b15b2020-12-03 16:55:23 -0700397 struct zynqmp_qspi_plat *plat = dev_get_plat(bus);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530398 struct zynqmp_qspi_priv *priv = dev_get_priv(bus);
399 struct clk clk;
400 unsigned long clock;
401 int ret;
402
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530403 priv->regs = plat->regs;
404 priv->dma_regs = plat->dma_regs;
Ashok Reddy Soma96db8b62022-08-25 06:59:03 -0600405 priv->io_mode = plat->io_mode;
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530406
407 ret = clk_get_by_index(bus, 0, &clk);
408 if (ret < 0) {
Sean Anderson241232a2020-09-15 10:45:12 -0400409 dev_err(bus, "failed to get clock\n");
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530410 return ret;
411 }
412
413 clock = clk_get_rate(&clk);
414 if (IS_ERR_VALUE(clock)) {
Sean Anderson241232a2020-09-15 10:45:12 -0400415 dev_err(bus, "failed to get rate\n");
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530416 return clock;
417 }
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530418
419 ret = clk_enable(&clk);
Michal Simek41710952021-02-09 15:28:15 +0100420 if (ret) {
Sean Anderson241232a2020-09-15 10:45:12 -0400421 dev_err(bus, "failed to enable clock\n");
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530422 return ret;
423 }
424 plat->frequency = clock;
425 plat->speed_hz = plat->frequency / 2;
426
427 /* init the zynq spi hw */
428 zynqmp_qspi_init_hw(priv);
429
Ibai Erkiaga78974fb2023-10-13 13:37:27 +0100430 log_debug("%s, Rerence clock frequency: %ld\n", __func__, clock);
431
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530432 return 0;
433}
434
435static int zynqmp_qspi_set_mode(struct udevice *bus, uint mode)
436{
437 struct zynqmp_qspi_priv *priv = dev_get_priv(bus);
438 struct zynqmp_qspi_regs *regs = priv->regs;
439 u32 confr;
440
Ibai Erkiaga78974fb2023-10-13 13:37:27 +0100441 log_debug("%s, 0x%X\n", __func__, mode);
442
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530443 /* Set the SPI Clock phase and polarities */
444 confr = readl(&regs->confr);
Ashok Reddy Soma7b4bded2022-08-25 06:59:05 -0600445 confr &= ~(GQSPI_CONFIG_CPHA_MASK | GQSPI_CONFIG_CPOL_MASK);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530446
447 if (mode & SPI_CPHA)
448 confr |= GQSPI_CONFIG_CPHA_MASK;
449 if (mode & SPI_CPOL)
450 confr |= GQSPI_CONFIG_CPOL_MASK;
451
452 writel(confr, &regs->confr);
453
454 return 0;
455}
456
457static int zynqmp_qspi_fill_tx_fifo(struct zynqmp_qspi_priv *priv, u32 size)
458{
459 u32 data;
460 int ret = 0;
461 struct zynqmp_qspi_regs *regs = priv->regs;
462 u32 *buf = (u32 *)priv->tx_buf;
463 u32 len = size;
464
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530465 while (size) {
466 ret = wait_for_bit_le32(&regs->isr, GQSPI_IXR_TXNFULL_MASK, 1,
467 GQSPI_TIMEOUT, 1);
Ibai Erkiaga78974fb2023-10-13 13:37:27 +0100468 if (ret)
469 return log_msg_ret("Timeout\n", ret);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530470
471 if (size >= 4) {
472 writel(*buf, &regs->txd0r);
473 buf++;
474 size -= 4;
475 } else {
476 switch (size) {
477 case 1:
478 data = *((u8 *)buf);
479 buf += 1;
480 data |= GENMASK(31, 8);
481 break;
482 case 2:
483 data = *((u16 *)buf);
484 buf += 2;
485 data |= GENMASK(31, 16);
486 break;
487 case 3:
T Karthik Reddycc59fc92020-11-19 05:00:36 -0700488 data = *buf;
489 buf += 3;
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530490 data |= GENMASK(31, 24);
491 break;
492 }
493 writel(data, &regs->txd0r);
494 size = 0;
495 }
496 }
497
Ashok Reddy Soma26f77d72021-10-19 19:43:00 +0530498 ret = wait_for_bit_le32(&regs->isr, GQSPI_IXR_TXFIFOEMPTY_MASK, 1,
499 GQSPI_TIMEOUT, 1);
Ibai Erkiaga78974fb2023-10-13 13:37:27 +0100500 if (ret)
501 return log_msg_ret("Timeout\n", ret);
Ashok Reddy Soma26f77d72021-10-19 19:43:00 +0530502
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530503 priv->tx_buf += len;
504 return 0;
505}
506
507static void zynqmp_qspi_genfifo_cmd(struct zynqmp_qspi_priv *priv)
508{
Brandon Maier4d9cce72021-01-20 10:39:46 -0600509 const struct spi_mem_op *op = priv->op;
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530510 u32 gen_fifo_cmd;
Brandon Maier4d9cce72021-01-20 10:39:46 -0600511 u8 i, dummy_cycles, addr;
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530512
Ibai Erkiaga78974fb2023-10-13 13:37:27 +0100513 log_debug("%s, opcode: 0x%0X, addr.nbytes: %d, dummy.mbytes: %d\r\n",
514 __func__, op->cmd.opcode, op->addr.nbytes, op->dummy.nbytes);
515
Brandon Maier4d9cce72021-01-20 10:39:46 -0600516 /* Send opcode */
517 gen_fifo_cmd = zynqmp_qspi_bus_select(priv);
518 gen_fifo_cmd |= zynqmp_qspi_genfifo_mode(op->cmd.buswidth);
519 gen_fifo_cmd |= GQSPI_GFIFO_TX;
520 gen_fifo_cmd |= op->cmd.opcode;
521 zynqmp_qspi_fill_gen_fifo(priv, gen_fifo_cmd);
522
523 /* Send address */
524 for (i = 0; i < op->addr.nbytes; i++) {
525 addr = op->addr.val >> (8 * (op->addr.nbytes - i - 1));
526
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530527 gen_fifo_cmd = zynqmp_qspi_bus_select(priv);
Brandon Maier4d9cce72021-01-20 10:39:46 -0600528 gen_fifo_cmd |= zynqmp_qspi_genfifo_mode(op->addr.buswidth);
529 gen_fifo_cmd |= GQSPI_GFIFO_TX;
530 gen_fifo_cmd |= addr;
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530531
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530532 zynqmp_qspi_fill_gen_fifo(priv, gen_fifo_cmd);
533 }
Brandon Maier4d9cce72021-01-20 10:39:46 -0600534
535 /* Send dummy */
536 if (op->dummy.nbytes) {
537 dummy_cycles = op->dummy.nbytes * 8 / op->dummy.buswidth;
538
539 gen_fifo_cmd = zynqmp_qspi_bus_select(priv);
540 gen_fifo_cmd |= zynqmp_qspi_genfifo_mode(op->dummy.buswidth);
541 gen_fifo_cmd &= ~(GQSPI_GFIFO_TX | GQSPI_GFIFO_RX);
542 gen_fifo_cmd |= GQSPI_GFIFO_DATA_XFR_MASK;
543 gen_fifo_cmd |= dummy_cycles;
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530544 zynqmp_qspi_fill_gen_fifo(priv, gen_fifo_cmd);
545 }
546}
547
548static u32 zynqmp_qspi_calc_exp(struct zynqmp_qspi_priv *priv,
549 u32 *gen_fifo_cmd)
550{
551 u32 expval = 8;
552 u32 len;
553
554 while (1) {
555 if (priv->len > 255) {
556 if (priv->len & (1 << expval)) {
557 *gen_fifo_cmd &= ~GQSPI_GFIFO_IMD_MASK;
558 *gen_fifo_cmd |= GQSPI_GFIFO_EXP_MASK;
559 *gen_fifo_cmd |= expval;
560 priv->len -= (1 << expval);
561 return expval;
562 }
563 expval++;
564 } else {
565 *gen_fifo_cmd &= ~(GQSPI_GFIFO_IMD_MASK |
566 GQSPI_GFIFO_EXP_MASK);
567 *gen_fifo_cmd |= (u8)priv->len;
568 len = (u8)priv->len;
569 priv->len = 0;
570 return len;
571 }
572 }
573}
574
575static int zynqmp_qspi_genfifo_fill_tx(struct zynqmp_qspi_priv *priv)
576{
577 u32 gen_fifo_cmd;
578 u32 len;
579 int ret = 0;
580
Ibai Erkiaga78974fb2023-10-13 13:37:27 +0100581 log_debug("%s, length: %d\r\n", __func__, priv->len);
582
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530583 gen_fifo_cmd = zynqmp_qspi_bus_select(priv);
Brandon Maier4d9cce72021-01-20 10:39:46 -0600584 gen_fifo_cmd |= zynqmp_qspi_genfifo_mode(priv->op->data.buswidth);
Ashok Reddy Soma7b4bded2022-08-25 06:59:05 -0600585 gen_fifo_cmd |= GQSPI_GFIFO_TX | GQSPI_GFIFO_DATA_XFR_MASK;
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530586
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530587 while (priv->len) {
588 len = zynqmp_qspi_calc_exp(priv, &gen_fifo_cmd);
589 zynqmp_qspi_fill_gen_fifo(priv, gen_fifo_cmd);
590
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530591 if (gen_fifo_cmd & GQSPI_GFIFO_EXP_MASK)
Ashok Reddy Soma7b4bded2022-08-25 06:59:05 -0600592 ret = zynqmp_qspi_fill_tx_fifo(priv, 1 << len);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530593 else
Ashok Reddy Soma7b4bded2022-08-25 06:59:05 -0600594 ret = zynqmp_qspi_fill_tx_fifo(priv, len);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530595
596 if (ret)
597 return ret;
598 }
599 return ret;
600}
601
Ashok Reddy Soma96db8b62022-08-25 06:59:03 -0600602static int zynqmp_qspi_start_io(struct zynqmp_qspi_priv *priv,
603 u32 gen_fifo_cmd, u32 *buf)
604{
605 u32 len;
Ashok Reddy Soma96db8b62022-08-25 06:59:03 -0600606 u32 config_reg, ier, isr;
607 u32 timeout = GQSPI_TIMEOUT;
608 struct zynqmp_qspi_regs *regs = priv->regs;
609 u32 last_bits;
610 u32 *traverse = buf;
611
612 while (priv->len) {
613 len = zynqmp_qspi_calc_exp(priv, &gen_fifo_cmd);
614 /* If exponent bit is set, reset immediate to be 2^len */
615 if (gen_fifo_cmd & GQSPI_GFIFO_EXP_MASK)
616 priv->bytes_to_receive = (1 << len);
617 else
618 priv->bytes_to_receive = len;
619 zynqmp_qspi_fill_gen_fifo(priv, gen_fifo_cmd);
Ibai Erkiaga78974fb2023-10-13 13:37:27 +0100620
Ashok Reddy Soma96db8b62022-08-25 06:59:03 -0600621 /* Manual start */
622 config_reg = readl(&regs->confr);
623 config_reg |= GQSPI_STRT_GEN_FIFO;
624 writel(config_reg, &regs->confr);
625 /* Enable RX interrupts for IO mode */
626 ier = readl(&regs->ier);
627 ier |= GQSPI_IXR_ALL_MASK;
628 writel(ier, &regs->ier);
629 while (priv->bytes_to_receive && timeout) {
630 isr = readl(&regs->isr);
631 if (isr & GQSPI_IXR_RXNEMTY_MASK) {
632 if (priv->bytes_to_receive >= 4) {
633 *traverse = readl(&regs->drxr);
634 traverse++;
635 priv->bytes_to_receive -= 4;
636 } else {
637 last_bits = readl(&regs->drxr);
638 memcpy(traverse, &last_bits,
639 priv->bytes_to_receive);
640 priv->bytes_to_receive = 0;
641 }
642 timeout = GQSPI_TIMEOUT;
643 } else {
644 udelay(1);
645 timeout--;
646 }
647 }
648
Ibai Erkiaga78974fb2023-10-13 13:37:27 +0100649 if (!timeout)
650 return log_msg_retz("Timeout\n", timeout);
Ashok Reddy Soma96db8b62022-08-25 06:59:03 -0600651 }
652
653 return 0;
654}
655
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530656static int zynqmp_qspi_start_dma(struct zynqmp_qspi_priv *priv,
657 u32 gen_fifo_cmd, u32 *buf)
658{
Venkatesh Yadav Abbarapufce730e2022-11-25 16:14:13 +0530659 unsigned long addr;
Ashok Reddy Soma822a2432021-08-20 07:43:17 -0600660 u32 size;
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530661 u32 actuallen = priv->len;
Ashok Reddy Soma2d322cc2022-08-25 06:59:04 -0600662 u32 totallen = priv->len;
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530663 int ret = 0;
664 struct zynqmp_qspi_dma_regs *dma_regs = priv->dma_regs;
665
Ashok Reddy Soma2d322cc2022-08-25 06:59:04 -0600666 while (totallen) {
667 if (totallen >= SZ_512M)
668 priv->len = SZ_256M;
669 else
670 priv->len = totallen;
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530671
Ashok Reddy Soma2d322cc2022-08-25 06:59:04 -0600672 totallen -= priv->len; /* Save remaining bytes length to read */
673 actuallen = priv->len; /* Actual number of bytes reading */
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530674
Venkatesh Yadav Abbarapufce730e2022-11-25 16:14:13 +0530675 writel(lower_32_bits((unsigned long)buf), &dma_regs->dmadst);
676 writel(upper_32_bits((unsigned long)buf) & GENMASK(11, 0),
677 &dma_regs->dmadstmsb);
Ashok Reddy Soma2d322cc2022-08-25 06:59:04 -0600678 writel(roundup(priv->len, GQSPI_DMA_ALIGN), &dma_regs->dmasize);
679 writel(GQSPI_DMA_DST_I_STS_MASK, &dma_regs->dmaier);
680 addr = (unsigned long)buf;
681 size = roundup(priv->len, GQSPI_DMA_ALIGN);
Ashok Reddy Soma6753c8b2023-09-15 08:47:58 +0530682 invalidate_dcache_range(addr, addr + size);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530683
Ashok Reddy Soma2d322cc2022-08-25 06:59:04 -0600684 while (priv->len) {
685 zynqmp_qspi_calc_exp(priv, &gen_fifo_cmd);
686 zynqmp_qspi_fill_gen_fifo(priv, gen_fifo_cmd);
Ashok Reddy Soma2d322cc2022-08-25 06:59:04 -0600687 }
688
689 ret = wait_for_bit_le32(&dma_regs->dmaisr,
690 GQSPI_DMA_DST_I_STS_DONE, 1,
691 GQSPI_TIMEOUT, 1);
Ibai Erkiaga78974fb2023-10-13 13:37:27 +0100692 if (ret)
693 return log_msg_ret("Timeout:\n", ret);
Ashok Reddy Soma2d322cc2022-08-25 06:59:04 -0600694
Venkatesh Yadav Abbarapu5f97cef2023-09-15 08:47:59 +0530695 invalidate_dcache_range(addr, addr + size);
696
Ashok Reddy Soma2d322cc2022-08-25 06:59:04 -0600697 writel(GQSPI_DMA_DST_I_STS_DONE, &dma_regs->dmaisr);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530698
Ashok Reddy Soma2d322cc2022-08-25 06:59:04 -0600699 if (buf != priv->rx_buf)
700 memcpy(priv->rx_buf, buf, actuallen);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530701
Ashok Reddy Soma2d322cc2022-08-25 06:59:04 -0600702 buf = (u32 *)((u8 *)buf + actuallen);
703 priv->rx_buf = (u8 *)priv->rx_buf + actuallen;
704 }
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530705
706 return 0;
707}
708
709static int zynqmp_qspi_genfifo_fill_rx(struct zynqmp_qspi_priv *priv)
710{
711 u32 gen_fifo_cmd;
712 u32 *buf;
713 u32 actuallen = priv->len;
714
Ibai Erkiaga78974fb2023-10-13 13:37:27 +0100715 log_debug("%s, length: %d\r\n", __func__, priv->len);
716
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530717 gen_fifo_cmd = zynqmp_qspi_bus_select(priv);
Brandon Maier4d9cce72021-01-20 10:39:46 -0600718 gen_fifo_cmd |= zynqmp_qspi_genfifo_mode(priv->op->data.buswidth);
Ashok Reddy Soma7b4bded2022-08-25 06:59:05 -0600719 gen_fifo_cmd |= GQSPI_GFIFO_RX | GQSPI_GFIFO_DATA_XFR_MASK;
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530720
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530721 /*
722 * Check if receive buffer is aligned to 4 byte and length
723 * is multiples of four byte as we are using dma to receive.
724 */
Ashok Reddy Soma96db8b62022-08-25 06:59:03 -0600725 if ((!((unsigned long)priv->rx_buf & (GQSPI_DMA_ALIGN - 1)) &&
726 !(actuallen % GQSPI_DMA_ALIGN)) || priv->io_mode) {
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530727 buf = (u32 *)priv->rx_buf;
Ashok Reddy Soma96db8b62022-08-25 06:59:03 -0600728 if (priv->io_mode)
729 return zynqmp_qspi_start_io(priv, gen_fifo_cmd, buf);
730 else
731 return zynqmp_qspi_start_dma(priv, gen_fifo_cmd, buf);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530732 }
733
Ashok Reddy Soma7b4bded2022-08-25 06:59:05 -0600734 ALLOC_CACHE_ALIGN_BUFFER(u8, tmp, roundup(priv->len, GQSPI_DMA_ALIGN));
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530735 buf = (u32 *)tmp;
736 return zynqmp_qspi_start_dma(priv, gen_fifo_cmd, buf);
737}
738
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530739static int zynqmp_qspi_claim_bus(struct udevice *dev)
740{
741 struct udevice *bus = dev->parent;
742 struct zynqmp_qspi_priv *priv = dev_get_priv(bus);
743 struct zynqmp_qspi_regs *regs = priv->regs;
744
745 writel(GQSPI_ENABLE_ENABLE_MASK, &regs->enbr);
746
747 return 0;
748}
749
750static int zynqmp_qspi_release_bus(struct udevice *dev)
751{
752 struct udevice *bus = dev->parent;
753 struct zynqmp_qspi_priv *priv = dev_get_priv(bus);
754 struct zynqmp_qspi_regs *regs = priv->regs;
755
756 writel(~GQSPI_ENABLE_ENABLE_MASK, &regs->enbr);
757
758 return 0;
759}
760
Brandon Maier4d9cce72021-01-20 10:39:46 -0600761static int zynqmp_qspi_exec_op(struct spi_slave *slave,
762 const struct spi_mem_op *op)
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530763{
Brandon Maier4d9cce72021-01-20 10:39:46 -0600764 struct zynqmp_qspi_priv *priv = dev_get_priv(slave->dev->parent);
765 int ret = 0;
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530766
Brandon Maier4d9cce72021-01-20 10:39:46 -0600767 priv->op = op;
768 priv->tx_buf = op->data.buf.out;
769 priv->rx_buf = op->data.buf.in;
770 priv->len = op->data.nbytes;
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530771
Brandon Maier4d9cce72021-01-20 10:39:46 -0600772 zynqmp_qspi_chipselect(priv, 1);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530773
Brandon Maier4d9cce72021-01-20 10:39:46 -0600774 /* Send opcode, addr, dummy */
775 zynqmp_qspi_genfifo_cmd(priv);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530776
Brandon Maier4d9cce72021-01-20 10:39:46 -0600777 /* Request the transfer */
778 if (op->data.dir == SPI_MEM_DATA_IN)
779 ret = zynqmp_qspi_genfifo_fill_rx(priv);
780 else if (op->data.dir == SPI_MEM_DATA_OUT)
781 ret = zynqmp_qspi_genfifo_fill_tx(priv);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530782
Brandon Maier4d9cce72021-01-20 10:39:46 -0600783 zynqmp_qspi_chipselect(priv, 0);
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530784
Brandon Maier4d9cce72021-01-20 10:39:46 -0600785 return ret;
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530786}
787
Brandon Maier4d9cce72021-01-20 10:39:46 -0600788static const struct spi_controller_mem_ops zynqmp_qspi_mem_ops = {
789 .exec_op = zynqmp_qspi_exec_op,
790};
791
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530792static const struct dm_spi_ops zynqmp_qspi_ops = {
793 .claim_bus = zynqmp_qspi_claim_bus,
794 .release_bus = zynqmp_qspi_release_bus,
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530795 .set_speed = zynqmp_qspi_set_speed,
796 .set_mode = zynqmp_qspi_set_mode,
Brandon Maier4d9cce72021-01-20 10:39:46 -0600797 .mem_ops = &zynqmp_qspi_mem_ops,
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530798};
799
800static const struct udevice_id zynqmp_qspi_ids[] = {
801 { .compatible = "xlnx,zynqmp-qspi-1.0" },
Michal Simeked373eb2018-11-29 08:48:28 +0100802 { .compatible = "xlnx,versal-qspi-1.0" },
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530803 { }
804};
805
806U_BOOT_DRIVER(zynqmp_qspi) = {
807 .name = "zynqmp_qspi",
808 .id = UCLASS_SPI,
809 .of_match = zynqmp_qspi_ids,
810 .ops = &zynqmp_qspi_ops,
Simon Glassaad29ae2020-12-03 16:55:21 -0700811 .of_to_plat = zynqmp_qspi_of_to_plat,
Simon Glassb75b15b2020-12-03 16:55:23 -0700812 .plat_auto = sizeof(struct zynqmp_qspi_plat),
Simon Glass8a2b47f2020-12-03 16:55:17 -0700813 .priv_auto = sizeof(struct zynqmp_qspi_priv),
Siva Durga Prasad Paladugu76597382018-07-04 17:31:23 +0530814 .probe = zynqmp_qspi_probe,
815};