blob: 90c207d518451a8b579c60c42eb1dd1cf129d3c8 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Michael Kurzd4363ba2017-01-22 16:04:30 +01002/*
3 * (C) Copyright 2016
4 *
5 * Michael Kurz, <michi.kurz@gmail.com>
6 *
7 * STM32 QSPI driver
Michael Kurzd4363ba2017-01-22 16:04:30 +01008 */
9
Patrick Delaunay162f5882020-11-06 19:01:53 +010010#define LOG_CATEGORY UCLASS_SPI
11
Michael Kurzd4363ba2017-01-22 16:04:30 +010012#include <common.h>
Patrice Chotard8c4592d2018-05-14 15:42:51 +020013#include <clk.h>
Simon Glass340fd102020-07-19 10:15:34 -060014#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060015#include <log.h>
Patrice Chotard5e461232018-05-14 15:42:56 +020016#include <reset.h>
Simon Glass340fd102020-07-19 10:15:34 -060017#include <spi.h>
Christophe Kerello321d1532019-04-05 11:46:50 +020018#include <spi-mem.h>
Patrice Chotarde48ec512021-01-20 14:42:02 +010019#include <watchdog.h>
Simon Glass336d4612020-02-03 07:36:16 -070020#include <dm/device_compat.h>
Simon Glasscd93d622020-05-10 11:40:13 -060021#include <linux/bitops.h>
Simon Glassc05ed002020-05-10 11:40:11 -060022#include <linux/delay.h>
Christophe Kerello321d1532019-04-05 11:46:50 +020023#include <linux/iopoll.h>
Patrice Chotard2a6ca732018-05-14 15:42:55 +020024#include <linux/ioport.h>
Christophe Kerello321d1532019-04-05 11:46:50 +020025#include <linux/sizes.h>
Michael Kurzd4363ba2017-01-22 16:04:30 +010026
27struct stm32_qspi_regs {
28 u32 cr; /* 0x00 */
29 u32 dcr; /* 0x04 */
30 u32 sr; /* 0x08 */
31 u32 fcr; /* 0x0C */
32 u32 dlr; /* 0x10 */
33 u32 ccr; /* 0x14 */
34 u32 ar; /* 0x18 */
35 u32 abr; /* 0x1C */
36 u32 dr; /* 0x20 */
37 u32 psmkr; /* 0x24 */
38 u32 psmar; /* 0x28 */
39 u32 pir; /* 0x2C */
40 u32 lptr; /* 0x30 */
41};
42
43/*
44 * QUADSPI control register
45 */
46#define STM32_QSPI_CR_EN BIT(0)
47#define STM32_QSPI_CR_ABORT BIT(1)
48#define STM32_QSPI_CR_DMAEN BIT(2)
49#define STM32_QSPI_CR_TCEN BIT(3)
50#define STM32_QSPI_CR_SSHIFT BIT(4)
51#define STM32_QSPI_CR_DFM BIT(6)
52#define STM32_QSPI_CR_FSEL BIT(7)
Christophe Kerello321d1532019-04-05 11:46:50 +020053#define STM32_QSPI_CR_FTHRES_SHIFT 8
Michael Kurzd4363ba2017-01-22 16:04:30 +010054#define STM32_QSPI_CR_TEIE BIT(16)
55#define STM32_QSPI_CR_TCIE BIT(17)
56#define STM32_QSPI_CR_FTIE BIT(18)
57#define STM32_QSPI_CR_SMIE BIT(19)
58#define STM32_QSPI_CR_TOIE BIT(20)
59#define STM32_QSPI_CR_APMS BIT(22)
60#define STM32_QSPI_CR_PMM BIT(23)
61#define STM32_QSPI_CR_PRESCALER_MASK GENMASK(7, 0)
Christophe Kerello321d1532019-04-05 11:46:50 +020062#define STM32_QSPI_CR_PRESCALER_SHIFT 24
Michael Kurzd4363ba2017-01-22 16:04:30 +010063
64/*
65 * QUADSPI device configuration register
66 */
67#define STM32_QSPI_DCR_CKMODE BIT(0)
68#define STM32_QSPI_DCR_CSHT_MASK GENMASK(2, 0)
Christophe Kerello321d1532019-04-05 11:46:50 +020069#define STM32_QSPI_DCR_CSHT_SHIFT 8
Michael Kurzd4363ba2017-01-22 16:04:30 +010070#define STM32_QSPI_DCR_FSIZE_MASK GENMASK(4, 0)
Christophe Kerello321d1532019-04-05 11:46:50 +020071#define STM32_QSPI_DCR_FSIZE_SHIFT 16
Michael Kurzd4363ba2017-01-22 16:04:30 +010072
73/*
74 * QUADSPI status register
75 */
76#define STM32_QSPI_SR_TEF BIT(0)
77#define STM32_QSPI_SR_TCF BIT(1)
78#define STM32_QSPI_SR_FTF BIT(2)
79#define STM32_QSPI_SR_SMF BIT(3)
80#define STM32_QSPI_SR_TOF BIT(4)
81#define STM32_QSPI_SR_BUSY BIT(5)
Michael Kurzd4363ba2017-01-22 16:04:30 +010082
83/*
84 * QUADSPI flag clear register
85 */
86#define STM32_QSPI_FCR_CTEF BIT(0)
87#define STM32_QSPI_FCR_CTCF BIT(1)
88#define STM32_QSPI_FCR_CSMF BIT(3)
89#define STM32_QSPI_FCR_CTOF BIT(4)
90
91/*
92 * QUADSPI communication configuration register
93 */
94#define STM32_QSPI_CCR_DDRM BIT(31)
95#define STM32_QSPI_CCR_DHHC BIT(30)
96#define STM32_QSPI_CCR_SIOO BIT(28)
Christophe Kerello321d1532019-04-05 11:46:50 +020097#define STM32_QSPI_CCR_FMODE_SHIFT 26
98#define STM32_QSPI_CCR_DMODE_SHIFT 24
99#define STM32_QSPI_CCR_DCYC_SHIFT 18
100#define STM32_QSPI_CCR_ABSIZE_SHIFT 16
101#define STM32_QSPI_CCR_ABMODE_SHIFT 14
102#define STM32_QSPI_CCR_ADSIZE_SHIFT 12
103#define STM32_QSPI_CCR_ADMODE_SHIFT 10
104#define STM32_QSPI_CCR_IMODE_SHIFT 8
Michael Kurzd4363ba2017-01-22 16:04:30 +0100105
Christophe Kerello321d1532019-04-05 11:46:50 +0200106#define STM32_QSPI_CCR_IND_WRITE 0
107#define STM32_QSPI_CCR_IND_READ 1
108#define STM32_QSPI_CCR_MEM_MAP 3
Michael Kurzd4363ba2017-01-22 16:04:30 +0100109
Christophe Kerello321d1532019-04-05 11:46:50 +0200110#define STM32_QSPI_MAX_MMAP_SZ SZ_256M
111#define STM32_QSPI_MAX_CHIP 2
Michael Kurzd4363ba2017-01-22 16:04:30 +0100112
Christophe Kerello321d1532019-04-05 11:46:50 +0200113#define STM32_QSPI_FIFO_TIMEOUT_US 30000
114#define STM32_QSPI_CMD_TIMEOUT_US 1000000
115#define STM32_BUSY_TIMEOUT_US 100000
116#define STM32_ABT_TIMEOUT_US 100000
Michael Kurzd4363ba2017-01-22 16:04:30 +0100117
Christophe Kerello321d1532019-04-05 11:46:50 +0200118struct stm32_qspi_flash {
119 u32 cr;
120 u32 dcr;
121 bool initialized;
Michael Kurzd4363ba2017-01-22 16:04:30 +0100122};
123
124struct stm32_qspi_priv {
125 struct stm32_qspi_regs *regs;
Christophe Kerello321d1532019-04-05 11:46:50 +0200126 struct stm32_qspi_flash flash[STM32_QSPI_MAX_CHIP];
127 void __iomem *mm_base;
128 resource_size_t mm_size;
Patrice Chotard541cd6e2017-07-18 09:29:09 +0200129 ulong clock_rate;
Christophe Kerello321d1532019-04-05 11:46:50 +0200130 int cs_used;
Michael Kurzd4363ba2017-01-22 16:04:30 +0100131};
132
Christophe Kerello321d1532019-04-05 11:46:50 +0200133static int _stm32_qspi_wait_for_not_busy(struct stm32_qspi_priv *priv)
Michael Kurzd4363ba2017-01-22 16:04:30 +0100134{
Christophe Kerello321d1532019-04-05 11:46:50 +0200135 u32 sr;
Michael Kurzd4363ba2017-01-22 16:04:30 +0100136 int ret;
137
Christophe Kerello321d1532019-04-05 11:46:50 +0200138 ret = readl_poll_timeout(&priv->regs->sr, sr,
139 !(sr & STM32_QSPI_SR_BUSY),
140 STM32_BUSY_TIMEOUT_US);
141 if (ret)
Patrick Delaunay162f5882020-11-06 19:01:53 +0100142 log_err("busy timeout (stat:%#x)\n", sr);
Christophe Kerello321d1532019-04-05 11:46:50 +0200143
144 return ret;
145}
146
147static int _stm32_qspi_wait_cmd(struct stm32_qspi_priv *priv,
148 const struct spi_mem_op *op)
149{
150 u32 sr;
Daniil Stas88f7ca02021-05-23 22:24:49 +0000151 int ret = 0;
Christophe Kerello321d1532019-04-05 11:46:50 +0200152
Patrice Chotarda6d7eeb2022-05-12 09:17:37 +0200153 ret = readl_poll_timeout(&priv->regs->sr, sr,
154 sr & STM32_QSPI_SR_TCF,
155 STM32_QSPI_CMD_TIMEOUT_US);
156 if (ret) {
157 log_err("cmd timeout (stat:%#x)\n", sr);
158 } else if (readl(&priv->regs->sr) & STM32_QSPI_SR_TEF) {
159 log_err("transfer error (stat:%#x)\n", sr);
160 ret = -EIO;
Michael Kurzd4363ba2017-01-22 16:04:30 +0100161 }
162
Patrice Chotarda6d7eeb2022-05-12 09:17:37 +0200163 /* clear flags */
164 writel(STM32_QSPI_FCR_CTCF | STM32_QSPI_FCR_CTEF, &priv->regs->fcr);
165
Daniil Stas88f7ca02021-05-23 22:24:49 +0000166 if (!ret)
167 ret = _stm32_qspi_wait_for_not_busy(priv);
Michael Kurzd4363ba2017-01-22 16:04:30 +0100168
Christophe Kerello321d1532019-04-05 11:46:50 +0200169 return ret;
170}
Michael Kurzd4363ba2017-01-22 16:04:30 +0100171
Christophe Kerello321d1532019-04-05 11:46:50 +0200172static void _stm32_qspi_read_fifo(u8 *val, void __iomem *addr)
173{
174 *val = readb(addr);
Stefan Roese29caf932022-09-02 14:10:46 +0200175 schedule();
Christophe Kerello321d1532019-04-05 11:46:50 +0200176}
177
178static void _stm32_qspi_write_fifo(u8 *val, void __iomem *addr)
179{
180 writeb(*val, addr);
181}
182
183static int _stm32_qspi_poll(struct stm32_qspi_priv *priv,
184 const struct spi_mem_op *op)
185{
186 void (*fifo)(u8 *val, void __iomem *addr);
187 u32 len = op->data.nbytes, sr;
188 u8 *buf;
189 int ret;
190
191 if (op->data.dir == SPI_MEM_DATA_IN) {
192 fifo = _stm32_qspi_read_fifo;
193 buf = op->data.buf.in;
194
195 } else {
196 fifo = _stm32_qspi_write_fifo;
197 buf = (u8 *)op->data.buf.out;
198 }
199
200 while (len--) {
201 ret = readl_poll_timeout(&priv->regs->sr, sr,
202 sr & STM32_QSPI_SR_FTF,
203 STM32_QSPI_FIFO_TIMEOUT_US);
204 if (ret) {
Patrick Delaunay162f5882020-11-06 19:01:53 +0100205 log_err("fifo timeout (len:%d stat:%#x)\n", len, sr);
Christophe Kerello321d1532019-04-05 11:46:50 +0200206 return ret;
207 }
208
209 fifo(buf++, &priv->regs->dr);
210 }
Michael Kurzd4363ba2017-01-22 16:04:30 +0100211
212 return 0;
213}
214
Christophe Kerello321d1532019-04-05 11:46:50 +0200215static int stm32_qspi_mm(struct stm32_qspi_priv *priv,
216 const struct spi_mem_op *op)
217{
218 memcpy_fromio(op->data.buf.in, priv->mm_base + op->addr.val,
219 op->data.nbytes);
220
221 return 0;
222}
223
224static int _stm32_qspi_tx(struct stm32_qspi_priv *priv,
225 const struct spi_mem_op *op,
226 u8 mode)
227{
228 if (!op->data.nbytes)
229 return 0;
230
231 if (mode == STM32_QSPI_CCR_MEM_MAP)
232 return stm32_qspi_mm(priv, op);
233
234 return _stm32_qspi_poll(priv, op);
235}
236
237static int _stm32_qspi_get_mode(u8 buswidth)
238{
239 if (buswidth == 4)
240 return 3;
241
242 return buswidth;
243}
244
245static int stm32_qspi_exec_op(struct spi_slave *slave,
246 const struct spi_mem_op *op)
247{
248 struct stm32_qspi_priv *priv = dev_get_priv(slave->dev->parent);
249 u32 cr, ccr, addr_max;
250 u8 mode = STM32_QSPI_CCR_IND_WRITE;
251 int timeout, ret;
252
Patrick Delaunay162f5882020-11-06 19:01:53 +0100253 dev_dbg(slave->dev, "cmd:%#x mode:%d.%d.%d.%d addr:%#llx len:%#x\n",
254 op->cmd.opcode, op->cmd.buswidth, op->addr.buswidth,
255 op->dummy.buswidth, op->data.buswidth,
256 op->addr.val, op->data.nbytes);
Christophe Kerello321d1532019-04-05 11:46:50 +0200257
Christophe Kerello321d1532019-04-05 11:46:50 +0200258 addr_max = op->addr.val + op->data.nbytes + 1;
259
260 if (op->data.dir == SPI_MEM_DATA_IN && op->data.nbytes) {
261 if (addr_max < priv->mm_size && op->addr.buswidth)
262 mode = STM32_QSPI_CCR_MEM_MAP;
263 else
264 mode = STM32_QSPI_CCR_IND_READ;
265 }
266
267 if (op->data.nbytes)
268 writel(op->data.nbytes - 1, &priv->regs->dlr);
269
270 ccr = (mode << STM32_QSPI_CCR_FMODE_SHIFT);
271 ccr |= op->cmd.opcode;
272 ccr |= (_stm32_qspi_get_mode(op->cmd.buswidth)
273 << STM32_QSPI_CCR_IMODE_SHIFT);
274
275 if (op->addr.nbytes) {
276 ccr |= ((op->addr.nbytes - 1) << STM32_QSPI_CCR_ADSIZE_SHIFT);
277 ccr |= (_stm32_qspi_get_mode(op->addr.buswidth)
278 << STM32_QSPI_CCR_ADMODE_SHIFT);
279 }
280
281 if (op->dummy.buswidth && op->dummy.nbytes)
282 ccr |= (op->dummy.nbytes * 8 / op->dummy.buswidth
283 << STM32_QSPI_CCR_DCYC_SHIFT);
284
285 if (op->data.nbytes)
286 ccr |= (_stm32_qspi_get_mode(op->data.buswidth)
287 << STM32_QSPI_CCR_DMODE_SHIFT);
288
289 writel(ccr, &priv->regs->ccr);
290
291 if (op->addr.nbytes && mode != STM32_QSPI_CCR_MEM_MAP)
292 writel(op->addr.val, &priv->regs->ar);
293
294 ret = _stm32_qspi_tx(priv, op, mode);
295 /*
296 * Abort in:
297 * -error case
298 * -read memory map: prefetching must be stopped if we read the last
299 * byte of device (device size - fifo size). like device size is not
300 * knows, the prefetching is always stop.
301 */
302 if (ret || mode == STM32_QSPI_CCR_MEM_MAP)
303 goto abort;
304
305 /* Wait end of tx in indirect mode */
306 ret = _stm32_qspi_wait_cmd(priv, op);
307 if (ret)
308 goto abort;
309
310 return 0;
311
312abort:
313 setbits_le32(&priv->regs->cr, STM32_QSPI_CR_ABORT);
314
315 /* Wait clear of abort bit by hw */
316 timeout = readl_poll_timeout(&priv->regs->cr, cr,
317 !(cr & STM32_QSPI_CR_ABORT),
318 STM32_ABT_TIMEOUT_US);
319
320 writel(STM32_QSPI_FCR_CTCF, &priv->regs->fcr);
321
322 if (ret || timeout)
Patrick Delaunay162f5882020-11-06 19:01:53 +0100323 dev_err(slave->dev, "ret:%d abort timeout:%d\n", ret, timeout);
Christophe Kerello321d1532019-04-05 11:46:50 +0200324
325 return ret;
326}
327
Michael Kurzd4363ba2017-01-22 16:04:30 +0100328static int stm32_qspi_probe(struct udevice *bus)
329{
Michael Kurzd4363ba2017-01-22 16:04:30 +0100330 struct stm32_qspi_priv *priv = dev_get_priv(bus);
Christophe Kerello321d1532019-04-05 11:46:50 +0200331 struct resource res;
Patrice Chotard12e7c912018-05-14 15:42:49 +0200332 struct clk clk;
Patrice Chotard5e461232018-05-14 15:42:56 +0200333 struct reset_ctl reset_ctl;
Patrice Chotard12e7c912018-05-14 15:42:49 +0200334 int ret;
Michael Kurzd4363ba2017-01-22 16:04:30 +0100335
Christophe Kerello321d1532019-04-05 11:46:50 +0200336 ret = dev_read_resource_byname(bus, "qspi", &res);
337 if (ret) {
338 dev_err(bus, "can't get regs base addresses(ret = %d)!\n", ret);
339 return ret;
340 }
Michael Kurzd4363ba2017-01-22 16:04:30 +0100341
Christophe Kerello321d1532019-04-05 11:46:50 +0200342 priv->regs = (struct stm32_qspi_regs *)res.start;
Michael Kurzd4363ba2017-01-22 16:04:30 +0100343
Christophe Kerello321d1532019-04-05 11:46:50 +0200344 ret = dev_read_resource_byname(bus, "qspi_mm", &res);
345 if (ret) {
346 dev_err(bus, "can't get mmap base address(ret = %d)!\n", ret);
347 return ret;
348 }
Michael Kurzd4363ba2017-01-22 16:04:30 +0100349
Christophe Kerello321d1532019-04-05 11:46:50 +0200350 priv->mm_base = (void __iomem *)res.start;
351
352 priv->mm_size = resource_size(&res);
353 if (priv->mm_size > STM32_QSPI_MAX_MMAP_SZ)
354 return -EINVAL;
355
Patrick Delaunay162f5882020-11-06 19:01:53 +0100356 dev_dbg(bus, "regs=<0x%p> mapped=<0x%p> mapped_size=<0x%lx>\n",
357 priv->regs, priv->mm_base, priv->mm_size);
Michael Kurzd4363ba2017-01-22 16:04:30 +0100358
Vikas Manocha890bafd2017-04-10 15:02:50 -0700359 ret = clk_get_by_index(bus, 0, &clk);
360 if (ret < 0)
361 return ret;
362
363 ret = clk_enable(&clk);
Vikas Manocha890bafd2017-04-10 15:02:50 -0700364 if (ret) {
365 dev_err(bus, "failed to enable clock\n");
366 return ret;
367 }
Patrice Chotard541cd6e2017-07-18 09:29:09 +0200368
369 priv->clock_rate = clk_get_rate(&clk);
Patrick Delaunay1ddf5442019-06-21 15:26:55 +0200370 if (!priv->clock_rate) {
Patrice Chotard541cd6e2017-07-18 09:29:09 +0200371 clk_disable(&clk);
Patrick Delaunay1ddf5442019-06-21 15:26:55 +0200372 return -EINVAL;
Patrice Chotard541cd6e2017-07-18 09:29:09 +0200373 }
374
Patrice Chotard5e461232018-05-14 15:42:56 +0200375 ret = reset_get_by_index(bus, 0, &reset_ctl);
376 if (ret) {
377 if (ret != -ENOENT) {
378 dev_err(bus, "failed to get reset\n");
379 clk_disable(&clk);
380 return ret;
381 }
382 } else {
383 /* Reset QSPI controller */
384 reset_assert(&reset_ctl);
385 udelay(2);
386 reset_deassert(&reset_ctl);
387 }
Michael Kurzd4363ba2017-01-22 16:04:30 +0100388
Christophe Kerello321d1532019-04-05 11:46:50 +0200389 priv->cs_used = -1;
390
Michael Kurzd4363ba2017-01-22 16:04:30 +0100391 setbits_le32(&priv->regs->cr, STM32_QSPI_CR_SSHIFT);
392
Christophe Kerello321d1532019-04-05 11:46:50 +0200393 /* Set dcr fsize to max address */
394 setbits_le32(&priv->regs->dcr,
395 STM32_QSPI_DCR_FSIZE_MASK << STM32_QSPI_DCR_FSIZE_SHIFT);
Michael Kurzd4363ba2017-01-22 16:04:30 +0100396
Michael Kurzd4363ba2017-01-22 16:04:30 +0100397 return 0;
398}
399
400static int stm32_qspi_claim_bus(struct udevice *dev)
401{
Christophe Kerello321d1532019-04-05 11:46:50 +0200402 struct stm32_qspi_priv *priv = dev_get_priv(dev->parent);
Simon Glass8a8d24b2020-12-03 16:55:23 -0700403 struct dm_spi_slave_plat *slave_plat = dev_get_parent_plat(dev);
Patrick Delaunay1ddf5442019-06-21 15:26:55 +0200404 int slave_cs = slave_plat->cs;
Michael Kurzd4363ba2017-01-22 16:04:30 +0100405
Patrick Delaunay1ddf5442019-06-21 15:26:55 +0200406 if (slave_cs >= STM32_QSPI_MAX_CHIP)
Christophe Kerello495f3b22018-05-14 15:42:54 +0200407 return -ENODEV;
408
Patrick Delaunay1ddf5442019-06-21 15:26:55 +0200409 if (priv->cs_used != slave_cs) {
410 struct stm32_qspi_flash *flash = &priv->flash[slave_cs];
Michael Kurzd4363ba2017-01-22 16:04:30 +0100411
Patrick Delaunay1ddf5442019-06-21 15:26:55 +0200412 priv->cs_used = slave_cs;
Michael Kurzd4363ba2017-01-22 16:04:30 +0100413
Christophe Kerello321d1532019-04-05 11:46:50 +0200414 if (flash->initialized) {
415 /* Set the configuration: speed + cs */
416 writel(flash->cr, &priv->regs->cr);
417 writel(flash->dcr, &priv->regs->dcr);
418 } else {
419 /* Set chip select */
420 clrsetbits_le32(&priv->regs->cr, STM32_QSPI_CR_FSEL,
421 priv->cs_used ? STM32_QSPI_CR_FSEL : 0);
422
423 /* Save the configuration: speed + cs */
424 flash->cr = readl(&priv->regs->cr);
425 flash->dcr = readl(&priv->regs->dcr);
426
427 flash->initialized = true;
428 }
429 }
430
431 setbits_le32(&priv->regs->cr, STM32_QSPI_CR_EN);
Michael Kurzd4363ba2017-01-22 16:04:30 +0100432
433 return 0;
434}
435
436static int stm32_qspi_release_bus(struct udevice *dev)
437{
Christophe Kerello321d1532019-04-05 11:46:50 +0200438 struct stm32_qspi_priv *priv = dev_get_priv(dev->parent);
Michael Kurzd4363ba2017-01-22 16:04:30 +0100439
Christophe Kerello321d1532019-04-05 11:46:50 +0200440 clrbits_le32(&priv->regs->cr, STM32_QSPI_CR_EN);
Michael Kurzd4363ba2017-01-22 16:04:30 +0100441
442 return 0;
443}
444
Michael Kurzd4363ba2017-01-22 16:04:30 +0100445static int stm32_qspi_set_speed(struct udevice *bus, uint speed)
446{
Michael Kurzd4363ba2017-01-22 16:04:30 +0100447 struct stm32_qspi_priv *priv = dev_get_priv(bus);
Patrick Delaunay936abad2018-05-14 15:42:50 +0200448 u32 qspi_clk = priv->clock_rate;
449 u32 prescaler = 255;
450 u32 csht;
Christophe Kerello321d1532019-04-05 11:46:50 +0200451 int ret;
Michael Kurzd4363ba2017-01-22 16:04:30 +0100452
Michael Kurzd4363ba2017-01-22 16:04:30 +0100453 if (speed > 0) {
Patrick Delaunay1ddf5442019-06-21 15:26:55 +0200454 prescaler = 0;
455 if (qspi_clk) {
456 prescaler = DIV_ROUND_UP(qspi_clk, speed) - 1;
457 if (prescaler > 255)
458 prescaler = 255;
459 }
Michael Kurzd4363ba2017-01-22 16:04:30 +0100460 }
461
Patrick Delaunay936abad2018-05-14 15:42:50 +0200462 csht = DIV_ROUND_UP((5 * qspi_clk) / (prescaler + 1), 100000000);
Michael Kurzd4363ba2017-01-22 16:04:30 +0100463 csht = (csht - 1) & STM32_QSPI_DCR_CSHT_MASK;
464
Christophe Kerello321d1532019-04-05 11:46:50 +0200465 ret = _stm32_qspi_wait_for_not_busy(priv);
466 if (ret)
467 return ret;
Michael Kurzd4363ba2017-01-22 16:04:30 +0100468
469 clrsetbits_le32(&priv->regs->cr,
470 STM32_QSPI_CR_PRESCALER_MASK <<
471 STM32_QSPI_CR_PRESCALER_SHIFT,
472 prescaler << STM32_QSPI_CR_PRESCALER_SHIFT);
473
Michael Kurzd4363ba2017-01-22 16:04:30 +0100474 clrsetbits_le32(&priv->regs->dcr,
475 STM32_QSPI_DCR_CSHT_MASK << STM32_QSPI_DCR_CSHT_SHIFT,
476 csht << STM32_QSPI_DCR_CSHT_SHIFT);
477
Patrick Delaunay162f5882020-11-06 19:01:53 +0100478 dev_dbg(bus, "regs=%p, speed=%d\n", priv->regs,
479 (qspi_clk / (prescaler + 1)));
Michael Kurzd4363ba2017-01-22 16:04:30 +0100480
481 return 0;
482}
483
484static int stm32_qspi_set_mode(struct udevice *bus, uint mode)
485{
486 struct stm32_qspi_priv *priv = dev_get_priv(bus);
Christophe Kerello321d1532019-04-05 11:46:50 +0200487 int ret;
Patrick Delaunay162f5882020-11-06 19:01:53 +0100488 const char *str_rx, *str_tx;
Michael Kurzd4363ba2017-01-22 16:04:30 +0100489
Christophe Kerello321d1532019-04-05 11:46:50 +0200490 ret = _stm32_qspi_wait_for_not_busy(priv);
491 if (ret)
492 return ret;
Michael Kurzd4363ba2017-01-22 16:04:30 +0100493
494 if ((mode & SPI_CPHA) && (mode & SPI_CPOL))
495 setbits_le32(&priv->regs->dcr, STM32_QSPI_DCR_CKMODE);
496 else if (!(mode & SPI_CPHA) && !(mode & SPI_CPOL))
497 clrbits_le32(&priv->regs->dcr, STM32_QSPI_DCR_CKMODE);
498 else
499 return -ENODEV;
500
501 if (mode & SPI_CS_HIGH)
502 return -ENODEV;
503
Michael Kurzd4363ba2017-01-22 16:04:30 +0100504 if (mode & SPI_RX_QUAD)
Patrick Delaunay162f5882020-11-06 19:01:53 +0100505 str_rx = "quad";
Michael Kurzd4363ba2017-01-22 16:04:30 +0100506 else if (mode & SPI_RX_DUAL)
Patrick Delaunay162f5882020-11-06 19:01:53 +0100507 str_rx = "dual";
Michael Kurzd4363ba2017-01-22 16:04:30 +0100508 else
Patrick Delaunay162f5882020-11-06 19:01:53 +0100509 str_rx = "single";
Michael Kurzd4363ba2017-01-22 16:04:30 +0100510
511 if (mode & SPI_TX_QUAD)
Patrick Delaunay162f5882020-11-06 19:01:53 +0100512 str_tx = "quad";
Michael Kurzd4363ba2017-01-22 16:04:30 +0100513 else if (mode & SPI_TX_DUAL)
Patrick Delaunay162f5882020-11-06 19:01:53 +0100514 str_tx = "dual";
Michael Kurzd4363ba2017-01-22 16:04:30 +0100515 else
Patrick Delaunay162f5882020-11-06 19:01:53 +0100516 str_tx = "single";
517
518 dev_dbg(bus, "regs=%p, mode=%d rx: %s, tx: %s\n",
519 priv->regs, mode, str_rx, str_tx);
Michael Kurzd4363ba2017-01-22 16:04:30 +0100520
521 return 0;
522}
523
Christophe Kerello321d1532019-04-05 11:46:50 +0200524static const struct spi_controller_mem_ops stm32_qspi_mem_ops = {
525 .exec_op = stm32_qspi_exec_op,
526};
527
Michael Kurzd4363ba2017-01-22 16:04:30 +0100528static const struct dm_spi_ops stm32_qspi_ops = {
529 .claim_bus = stm32_qspi_claim_bus,
530 .release_bus = stm32_qspi_release_bus,
Michael Kurzd4363ba2017-01-22 16:04:30 +0100531 .set_speed = stm32_qspi_set_speed,
532 .set_mode = stm32_qspi_set_mode,
Christophe Kerello321d1532019-04-05 11:46:50 +0200533 .mem_ops = &stm32_qspi_mem_ops,
Michael Kurzd4363ba2017-01-22 16:04:30 +0100534};
535
536static const struct udevice_id stm32_qspi_ids[] = {
Christophe Kerello76afe562018-05-14 15:42:53 +0200537 { .compatible = "st,stm32f469-qspi" },
Michael Kurzd4363ba2017-01-22 16:04:30 +0100538 { }
539};
540
541U_BOOT_DRIVER(stm32_qspi) = {
Christophe Kerello321d1532019-04-05 11:46:50 +0200542 .name = "stm32_qspi",
543 .id = UCLASS_SPI,
Michael Kurzd4363ba2017-01-22 16:04:30 +0100544 .of_match = stm32_qspi_ids,
Christophe Kerello321d1532019-04-05 11:46:50 +0200545 .ops = &stm32_qspi_ops,
Simon Glass41575d82020-12-03 16:55:17 -0700546 .priv_auto = sizeof(struct stm32_qspi_priv),
Christophe Kerello321d1532019-04-05 11:46:50 +0200547 .probe = stm32_qspi_probe,
Michael Kurzd4363ba2017-01-22 16:04:30 +0100548};