1 // SPDX-License-Identifier: GPL-2.0+
5 * Michael Kurz, <michi.kurz@gmail.com>
10 #define LOG_CATEGORY UCLASS_SPI
20 #include <dm/device_compat.h>
21 #include <linux/bitops.h>
22 #include <linux/delay.h>
23 #include <linux/iopoll.h>
24 #include <linux/ioport.h>
25 #include <linux/sizes.h>
27 struct stm32_qspi_regs {
44 * QUADSPI control register
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)
53 #define STM32_QSPI_CR_FTHRES_SHIFT 8
54 #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)
62 #define STM32_QSPI_CR_PRESCALER_SHIFT 24
65 * QUADSPI device configuration register
67 #define STM32_QSPI_DCR_CKMODE BIT(0)
68 #define STM32_QSPI_DCR_CSHT_MASK GENMASK(2, 0)
69 #define STM32_QSPI_DCR_CSHT_SHIFT 8
70 #define STM32_QSPI_DCR_FSIZE_MASK GENMASK(4, 0)
71 #define STM32_QSPI_DCR_FSIZE_SHIFT 16
74 * QUADSPI status register
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)
84 * QUADSPI flag clear register
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)
92 * QUADSPI communication configuration register
94 #define STM32_QSPI_CCR_DDRM BIT(31)
95 #define STM32_QSPI_CCR_DHHC BIT(30)
96 #define STM32_QSPI_CCR_SIOO BIT(28)
97 #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
106 #define STM32_QSPI_CCR_IND_WRITE 0
107 #define STM32_QSPI_CCR_IND_READ 1
108 #define STM32_QSPI_CCR_MEM_MAP 3
110 #define STM32_QSPI_MAX_MMAP_SZ SZ_256M
111 #define STM32_QSPI_MAX_CHIP 2
113 #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
118 struct stm32_qspi_flash {
124 struct stm32_qspi_priv {
125 struct stm32_qspi_regs *regs;
126 struct stm32_qspi_flash flash[STM32_QSPI_MAX_CHIP];
127 void __iomem *mm_base;
128 resource_size_t mm_size;
133 static int _stm32_qspi_wait_for_not_busy(struct stm32_qspi_priv *priv)
138 ret = readl_poll_timeout(&priv->regs->sr, sr,
139 !(sr & STM32_QSPI_SR_BUSY),
140 STM32_BUSY_TIMEOUT_US);
142 log_err("busy timeout (stat:%#x)\n", sr);
147 static int _stm32_qspi_wait_cmd(struct stm32_qspi_priv *priv,
148 const struct spi_mem_op *op)
153 if (op->data.nbytes) {
154 ret = readl_poll_timeout(&priv->regs->sr, sr,
155 sr & STM32_QSPI_SR_TCF,
156 STM32_QSPI_CMD_TIMEOUT_US);
158 log_err("cmd timeout (stat:%#x)\n", sr);
159 } else if (readl(&priv->regs->sr) & STM32_QSPI_SR_TEF) {
160 log_err("transfer error (stat:%#x)\n", sr);
164 writel(STM32_QSPI_FCR_CTCF | STM32_QSPI_FCR_CTEF, &priv->regs->fcr);
168 ret = _stm32_qspi_wait_for_not_busy(priv);
173 static void _stm32_qspi_read_fifo(u8 *val, void __iomem *addr)
179 static void _stm32_qspi_write_fifo(u8 *val, void __iomem *addr)
184 static int _stm32_qspi_poll(struct stm32_qspi_priv *priv,
185 const struct spi_mem_op *op)
187 void (*fifo)(u8 *val, void __iomem *addr);
188 u32 len = op->data.nbytes, sr;
192 if (op->data.dir == SPI_MEM_DATA_IN) {
193 fifo = _stm32_qspi_read_fifo;
194 buf = op->data.buf.in;
197 fifo = _stm32_qspi_write_fifo;
198 buf = (u8 *)op->data.buf.out;
202 ret = readl_poll_timeout(&priv->regs->sr, sr,
203 sr & STM32_QSPI_SR_FTF,
204 STM32_QSPI_FIFO_TIMEOUT_US);
206 log_err("fifo timeout (len:%d stat:%#x)\n", len, sr);
210 fifo(buf++, &priv->regs->dr);
216 static int stm32_qspi_mm(struct stm32_qspi_priv *priv,
217 const struct spi_mem_op *op)
219 memcpy_fromio(op->data.buf.in, priv->mm_base + op->addr.val,
225 static int _stm32_qspi_tx(struct stm32_qspi_priv *priv,
226 const struct spi_mem_op *op,
229 if (!op->data.nbytes)
232 if (mode == STM32_QSPI_CCR_MEM_MAP)
233 return stm32_qspi_mm(priv, op);
235 return _stm32_qspi_poll(priv, op);
238 static int _stm32_qspi_get_mode(u8 buswidth)
246 static int stm32_qspi_exec_op(struct spi_slave *slave,
247 const struct spi_mem_op *op)
249 struct stm32_qspi_priv *priv = dev_get_priv(slave->dev->parent);
250 u32 cr, ccr, addr_max;
251 u8 mode = STM32_QSPI_CCR_IND_WRITE;
254 dev_dbg(slave->dev, "cmd:%#x mode:%d.%d.%d.%d addr:%#llx len:%#x\n",
255 op->cmd.opcode, op->cmd.buswidth, op->addr.buswidth,
256 op->dummy.buswidth, op->data.buswidth,
257 op->addr.val, op->data.nbytes);
259 ret = _stm32_qspi_wait_for_not_busy(priv);
263 addr_max = op->addr.val + op->data.nbytes + 1;
265 if (op->data.dir == SPI_MEM_DATA_IN && op->data.nbytes) {
266 if (addr_max < priv->mm_size && op->addr.buswidth)
267 mode = STM32_QSPI_CCR_MEM_MAP;
269 mode = STM32_QSPI_CCR_IND_READ;
273 writel(op->data.nbytes - 1, &priv->regs->dlr);
275 ccr = (mode << STM32_QSPI_CCR_FMODE_SHIFT);
276 ccr |= op->cmd.opcode;
277 ccr |= (_stm32_qspi_get_mode(op->cmd.buswidth)
278 << STM32_QSPI_CCR_IMODE_SHIFT);
280 if (op->addr.nbytes) {
281 ccr |= ((op->addr.nbytes - 1) << STM32_QSPI_CCR_ADSIZE_SHIFT);
282 ccr |= (_stm32_qspi_get_mode(op->addr.buswidth)
283 << STM32_QSPI_CCR_ADMODE_SHIFT);
286 if (op->dummy.buswidth && op->dummy.nbytes)
287 ccr |= (op->dummy.nbytes * 8 / op->dummy.buswidth
288 << STM32_QSPI_CCR_DCYC_SHIFT);
291 ccr |= (_stm32_qspi_get_mode(op->data.buswidth)
292 << STM32_QSPI_CCR_DMODE_SHIFT);
294 writel(ccr, &priv->regs->ccr);
296 if (op->addr.nbytes && mode != STM32_QSPI_CCR_MEM_MAP)
297 writel(op->addr.val, &priv->regs->ar);
299 ret = _stm32_qspi_tx(priv, op, mode);
303 * -read memory map: prefetching must be stopped if we read the last
304 * byte of device (device size - fifo size). like device size is not
305 * knows, the prefetching is always stop.
307 if (ret || mode == STM32_QSPI_CCR_MEM_MAP)
310 /* Wait end of tx in indirect mode */
311 ret = _stm32_qspi_wait_cmd(priv, op);
318 setbits_le32(&priv->regs->cr, STM32_QSPI_CR_ABORT);
320 /* Wait clear of abort bit by hw */
321 timeout = readl_poll_timeout(&priv->regs->cr, cr,
322 !(cr & STM32_QSPI_CR_ABORT),
323 STM32_ABT_TIMEOUT_US);
325 writel(STM32_QSPI_FCR_CTCF, &priv->regs->fcr);
328 dev_err(slave->dev, "ret:%d abort timeout:%d\n", ret, timeout);
333 static int stm32_qspi_probe(struct udevice *bus)
335 struct stm32_qspi_priv *priv = dev_get_priv(bus);
338 struct reset_ctl reset_ctl;
341 ret = dev_read_resource_byname(bus, "qspi", &res);
343 dev_err(bus, "can't get regs base addresses(ret = %d)!\n", ret);
347 priv->regs = (struct stm32_qspi_regs *)res.start;
349 ret = dev_read_resource_byname(bus, "qspi_mm", &res);
351 dev_err(bus, "can't get mmap base address(ret = %d)!\n", ret);
355 priv->mm_base = (void __iomem *)res.start;
357 priv->mm_size = resource_size(&res);
358 if (priv->mm_size > STM32_QSPI_MAX_MMAP_SZ)
361 dev_dbg(bus, "regs=<0x%p> mapped=<0x%p> mapped_size=<0x%lx>\n",
362 priv->regs, priv->mm_base, priv->mm_size);
364 ret = clk_get_by_index(bus, 0, &clk);
368 ret = clk_enable(&clk);
370 dev_err(bus, "failed to enable clock\n");
374 priv->clock_rate = clk_get_rate(&clk);
375 if (!priv->clock_rate) {
380 ret = reset_get_by_index(bus, 0, &reset_ctl);
382 if (ret != -ENOENT) {
383 dev_err(bus, "failed to get reset\n");
388 /* Reset QSPI controller */
389 reset_assert(&reset_ctl);
391 reset_deassert(&reset_ctl);
396 setbits_le32(&priv->regs->cr, STM32_QSPI_CR_SSHIFT);
398 /* Set dcr fsize to max address */
399 setbits_le32(&priv->regs->dcr,
400 STM32_QSPI_DCR_FSIZE_MASK << STM32_QSPI_DCR_FSIZE_SHIFT);
405 static int stm32_qspi_claim_bus(struct udevice *dev)
407 struct stm32_qspi_priv *priv = dev_get_priv(dev->parent);
408 struct dm_spi_slave_plat *slave_plat = dev_get_parent_plat(dev);
409 int slave_cs = slave_plat->cs;
411 if (slave_cs >= STM32_QSPI_MAX_CHIP)
414 if (priv->cs_used != slave_cs) {
415 struct stm32_qspi_flash *flash = &priv->flash[slave_cs];
417 priv->cs_used = slave_cs;
419 if (flash->initialized) {
420 /* Set the configuration: speed + cs */
421 writel(flash->cr, &priv->regs->cr);
422 writel(flash->dcr, &priv->regs->dcr);
424 /* Set chip select */
425 clrsetbits_le32(&priv->regs->cr, STM32_QSPI_CR_FSEL,
426 priv->cs_used ? STM32_QSPI_CR_FSEL : 0);
428 /* Save the configuration: speed + cs */
429 flash->cr = readl(&priv->regs->cr);
430 flash->dcr = readl(&priv->regs->dcr);
432 flash->initialized = true;
436 setbits_le32(&priv->regs->cr, STM32_QSPI_CR_EN);
441 static int stm32_qspi_release_bus(struct udevice *dev)
443 struct stm32_qspi_priv *priv = dev_get_priv(dev->parent);
445 clrbits_le32(&priv->regs->cr, STM32_QSPI_CR_EN);
450 static int stm32_qspi_set_speed(struct udevice *bus, uint speed)
452 struct stm32_qspi_priv *priv = dev_get_priv(bus);
453 u32 qspi_clk = priv->clock_rate;
461 prescaler = DIV_ROUND_UP(qspi_clk, speed) - 1;
467 csht = DIV_ROUND_UP((5 * qspi_clk) / (prescaler + 1), 100000000);
468 csht = (csht - 1) & STM32_QSPI_DCR_CSHT_MASK;
470 ret = _stm32_qspi_wait_for_not_busy(priv);
474 clrsetbits_le32(&priv->regs->cr,
475 STM32_QSPI_CR_PRESCALER_MASK <<
476 STM32_QSPI_CR_PRESCALER_SHIFT,
477 prescaler << STM32_QSPI_CR_PRESCALER_SHIFT);
479 clrsetbits_le32(&priv->regs->dcr,
480 STM32_QSPI_DCR_CSHT_MASK << STM32_QSPI_DCR_CSHT_SHIFT,
481 csht << STM32_QSPI_DCR_CSHT_SHIFT);
483 dev_dbg(bus, "regs=%p, speed=%d\n", priv->regs,
484 (qspi_clk / (prescaler + 1)));
489 static int stm32_qspi_set_mode(struct udevice *bus, uint mode)
491 struct stm32_qspi_priv *priv = dev_get_priv(bus);
493 const char *str_rx, *str_tx;
495 ret = _stm32_qspi_wait_for_not_busy(priv);
499 if ((mode & SPI_CPHA) && (mode & SPI_CPOL))
500 setbits_le32(&priv->regs->dcr, STM32_QSPI_DCR_CKMODE);
501 else if (!(mode & SPI_CPHA) && !(mode & SPI_CPOL))
502 clrbits_le32(&priv->regs->dcr, STM32_QSPI_DCR_CKMODE);
506 if (mode & SPI_CS_HIGH)
509 if (mode & SPI_RX_QUAD)
511 else if (mode & SPI_RX_DUAL)
516 if (mode & SPI_TX_QUAD)
518 else if (mode & SPI_TX_DUAL)
523 dev_dbg(bus, "regs=%p, mode=%d rx: %s, tx: %s\n",
524 priv->regs, mode, str_rx, str_tx);
529 static const struct spi_controller_mem_ops stm32_qspi_mem_ops = {
530 .exec_op = stm32_qspi_exec_op,
533 static const struct dm_spi_ops stm32_qspi_ops = {
534 .claim_bus = stm32_qspi_claim_bus,
535 .release_bus = stm32_qspi_release_bus,
536 .set_speed = stm32_qspi_set_speed,
537 .set_mode = stm32_qspi_set_mode,
538 .mem_ops = &stm32_qspi_mem_ops,
541 static const struct udevice_id stm32_qspi_ids[] = {
542 { .compatible = "st,stm32f469-qspi" },
546 U_BOOT_DRIVER(stm32_qspi) = {
547 .name = "stm32_qspi",
549 .of_match = stm32_qspi_ids,
550 .ops = &stm32_qspi_ops,
551 .priv_auto = sizeof(struct stm32_qspi_priv),
552 .probe = stm32_qspi_probe,