1 // SPDX-License-Identifier: GPL-2.0
3 * Driver for Atmel QSPI Controller
5 * Copyright (C) 2015 Atmel Corporation
6 * Copyright (C) 2018 Cryptera A/S
8 * Author: Cyrille Pitchen <cyrille.pitchen@atmel.com>
9 * Author: Piotr Bugalski <bugalski.piotr@gmail.com>
19 #include <linux/iopoll.h>
20 #include <linux/ioport.h>
25 /* QSPI register offsets */
26 #define QSPI_CR 0x0000 /* Control Register */
27 #define QSPI_MR 0x0004 /* Mode Register */
28 #define QSPI_RD 0x0008 /* Receive Data Register */
29 #define QSPI_TD 0x000c /* Transmit Data Register */
30 #define QSPI_SR 0x0010 /* Status Register */
31 #define QSPI_IER 0x0014 /* Interrupt Enable Register */
32 #define QSPI_IDR 0x0018 /* Interrupt Disable Register */
33 #define QSPI_IMR 0x001c /* Interrupt Mask Register */
34 #define QSPI_SCR 0x0020 /* Serial Clock Register */
36 #define QSPI_IAR 0x0030 /* Instruction Address Register */
37 #define QSPI_ICR 0x0034 /* Instruction Code Register */
38 #define QSPI_WICR 0x0034 /* Write Instruction Code Register */
39 #define QSPI_IFR 0x0038 /* Instruction Frame Register */
40 #define QSPI_RICR 0x003C /* Read Instruction Code Register */
42 #define QSPI_SMR 0x0040 /* Scrambling Mode Register */
43 #define QSPI_SKR 0x0044 /* Scrambling Key Register */
45 #define QSPI_WPMR 0x00E4 /* Write Protection Mode Register */
46 #define QSPI_WPSR 0x00E8 /* Write Protection Status Register */
48 #define QSPI_VERSION 0x00FC /* Version Register */
50 /* Bitfields in QSPI_CR (Control Register) */
51 #define QSPI_CR_QSPIEN BIT(0)
52 #define QSPI_CR_QSPIDIS BIT(1)
53 #define QSPI_CR_SWRST BIT(7)
54 #define QSPI_CR_LASTXFER BIT(24)
56 /* Bitfields in QSPI_MR (Mode Register) */
57 #define QSPI_MR_SMM BIT(0)
58 #define QSPI_MR_LLB BIT(1)
59 #define QSPI_MR_WDRBT BIT(2)
60 #define QSPI_MR_SMRM BIT(3)
61 #define QSPI_MR_CSMODE_MASK GENMASK(5, 4)
62 #define QSPI_MR_CSMODE_NOT_RELOADED (0 << 4)
63 #define QSPI_MR_CSMODE_LASTXFER (1 << 4)
64 #define QSPI_MR_CSMODE_SYSTEMATICALLY (2 << 4)
65 #define QSPI_MR_NBBITS_MASK GENMASK(11, 8)
66 #define QSPI_MR_NBBITS(n) ((((n) - 8) << 8) & QSPI_MR_NBBITS_MASK)
67 #define QSPI_MR_DLYBCT_MASK GENMASK(23, 16)
68 #define QSPI_MR_DLYBCT(n) (((n) << 16) & QSPI_MR_DLYBCT_MASK)
69 #define QSPI_MR_DLYCS_MASK GENMASK(31, 24)
70 #define QSPI_MR_DLYCS(n) (((n) << 24) & QSPI_MR_DLYCS_MASK)
72 /* Bitfields in QSPI_SR/QSPI_IER/QSPI_IDR/QSPI_IMR */
73 #define QSPI_SR_RDRF BIT(0)
74 #define QSPI_SR_TDRE BIT(1)
75 #define QSPI_SR_TXEMPTY BIT(2)
76 #define QSPI_SR_OVRES BIT(3)
77 #define QSPI_SR_CSR BIT(8)
78 #define QSPI_SR_CSS BIT(9)
79 #define QSPI_SR_INSTRE BIT(10)
80 #define QSPI_SR_QSPIENS BIT(24)
82 #define QSPI_SR_CMD_COMPLETED (QSPI_SR_INSTRE | QSPI_SR_CSR)
84 /* Bitfields in QSPI_SCR (Serial Clock Register) */
85 #define QSPI_SCR_CPOL BIT(0)
86 #define QSPI_SCR_CPHA BIT(1)
87 #define QSPI_SCR_SCBR_MASK GENMASK(15, 8)
88 #define QSPI_SCR_SCBR(n) (((n) << 8) & QSPI_SCR_SCBR_MASK)
89 #define QSPI_SCR_DLYBS_MASK GENMASK(23, 16)
90 #define QSPI_SCR_DLYBS(n) (((n) << 16) & QSPI_SCR_DLYBS_MASK)
92 /* Bitfields in QSPI_ICR (Read/Write Instruction Code Register) */
93 #define QSPI_ICR_INST_MASK GENMASK(7, 0)
94 #define QSPI_ICR_INST(inst) (((inst) << 0) & QSPI_ICR_INST_MASK)
95 #define QSPI_ICR_OPT_MASK GENMASK(23, 16)
96 #define QSPI_ICR_OPT(opt) (((opt) << 16) & QSPI_ICR_OPT_MASK)
98 /* Bitfields in QSPI_IFR (Instruction Frame Register) */
99 #define QSPI_IFR_WIDTH_MASK GENMASK(2, 0)
100 #define QSPI_IFR_WIDTH_SINGLE_BIT_SPI (0 << 0)
101 #define QSPI_IFR_WIDTH_DUAL_OUTPUT (1 << 0)
102 #define QSPI_IFR_WIDTH_QUAD_OUTPUT (2 << 0)
103 #define QSPI_IFR_WIDTH_DUAL_IO (3 << 0)
104 #define QSPI_IFR_WIDTH_QUAD_IO (4 << 0)
105 #define QSPI_IFR_WIDTH_DUAL_CMD (5 << 0)
106 #define QSPI_IFR_WIDTH_QUAD_CMD (6 << 0)
107 #define QSPI_IFR_INSTEN BIT(4)
108 #define QSPI_IFR_ADDREN BIT(5)
109 #define QSPI_IFR_OPTEN BIT(6)
110 #define QSPI_IFR_DATAEN BIT(7)
111 #define QSPI_IFR_OPTL_MASK GENMASK(9, 8)
112 #define QSPI_IFR_OPTL_1BIT (0 << 8)
113 #define QSPI_IFR_OPTL_2BIT (1 << 8)
114 #define QSPI_IFR_OPTL_4BIT (2 << 8)
115 #define QSPI_IFR_OPTL_8BIT (3 << 8)
116 #define QSPI_IFR_ADDRL BIT(10)
117 #define QSPI_IFR_TFRTYP_MEM BIT(12)
118 #define QSPI_IFR_SAMA5D2_WRITE_TRSFR BIT(13)
119 #define QSPI_IFR_CRM BIT(14)
120 #define QSPI_IFR_NBDUM_MASK GENMASK(20, 16)
121 #define QSPI_IFR_NBDUM(n) (((n) << 16) & QSPI_IFR_NBDUM_MASK)
122 #define QSPI_IFR_APBTFRTYP_READ BIT(24) /* Defined in SAM9X60 */
124 /* Bitfields in QSPI_SMR (Scrambling Mode Register) */
125 #define QSPI_SMR_SCREN BIT(0)
126 #define QSPI_SMR_RVDIS BIT(1)
128 /* Bitfields in QSPI_WPMR (Write Protection Mode Register) */
129 #define QSPI_WPMR_WPEN BIT(0)
130 #define QSPI_WPMR_WPKEY_MASK GENMASK(31, 8)
131 #define QSPI_WPMR_WPKEY(wpkey) (((wpkey) << 8) & QSPI_WPMR_WPKEY_MASK)
133 /* Bitfields in QSPI_WPSR (Write Protection Status Register) */
134 #define QSPI_WPSR_WPVS BIT(0)
135 #define QSPI_WPSR_WPVSRC_MASK GENMASK(15, 8)
136 #define QSPI_WPSR_WPVSRC(src) (((src) << 8) & QSPI_WPSR_WPVSRC)
138 struct atmel_qspi_caps {
146 const struct atmel_qspi_caps *caps;
151 struct atmel_qspi_mode {
158 static const struct atmel_qspi_mode atmel_qspi_modes[] = {
159 { 1, 1, 1, QSPI_IFR_WIDTH_SINGLE_BIT_SPI },
160 { 1, 1, 2, QSPI_IFR_WIDTH_DUAL_OUTPUT },
161 { 1, 1, 4, QSPI_IFR_WIDTH_QUAD_OUTPUT },
162 { 1, 2, 2, QSPI_IFR_WIDTH_DUAL_IO },
163 { 1, 4, 4, QSPI_IFR_WIDTH_QUAD_IO },
164 { 2, 2, 2, QSPI_IFR_WIDTH_DUAL_CMD },
165 { 4, 4, 4, QSPI_IFR_WIDTH_QUAD_CMD },
168 static inline bool atmel_qspi_is_compatible(const struct spi_mem_op *op,
169 const struct atmel_qspi_mode *mode)
171 if (op->cmd.buswidth != mode->cmd_buswidth)
174 if (op->addr.nbytes && op->addr.buswidth != mode->addr_buswidth)
177 if (op->data.nbytes && op->data.buswidth != mode->data_buswidth)
183 static int atmel_qspi_find_mode(const struct spi_mem_op *op)
187 for (i = 0; i < ARRAY_SIZE(atmel_qspi_modes); i++)
188 if (atmel_qspi_is_compatible(op, &atmel_qspi_modes[i]))
194 static bool atmel_qspi_supports_op(struct spi_slave *slave,
195 const struct spi_mem_op *op)
197 if (atmel_qspi_find_mode(op) < 0)
200 /* special case not supported by hardware */
201 if (op->addr.nbytes == 2 && op->cmd.buswidth != op->addr.buswidth &&
202 op->dummy.nbytes == 0)
208 static int atmel_qspi_set_cfg(struct atmel_qspi *aq,
209 const struct spi_mem_op *op, u32 *offset)
212 u32 dummy_cycles = 0;
216 icr = QSPI_ICR_INST(op->cmd.opcode);
217 ifr = QSPI_IFR_INSTEN;
219 mode = atmel_qspi_find_mode(op);
222 ifr |= atmel_qspi_modes[mode].config;
224 if (op->dummy.buswidth && op->dummy.nbytes)
225 dummy_cycles = op->dummy.nbytes * 8 / op->dummy.buswidth;
228 * The controller allows 24 and 32-bit addressing while NAND-flash
229 * requires 16-bit long. Handling 8-bit long addresses is done using
230 * the option field. For the 16-bit addresses, the workaround depends
231 * of the number of requested dummy bits. If there are 8 or more dummy
232 * cycles, the address is shifted and sent with the first dummy byte.
233 * Otherwise opcode is disabled and the first byte of the address
234 * contains the command opcode (works only if the opcode and address
235 * use the same buswidth). The limitation is when the 16-bit address is
236 * used without enough dummy cycles and the opcode is using a different
237 * buswidth than the address.
239 if (op->addr.buswidth) {
240 switch (op->addr.nbytes) {
244 ifr |= QSPI_IFR_OPTEN | QSPI_IFR_OPTL_8BIT;
245 icr |= QSPI_ICR_OPT(op->addr.val & 0xff);
248 if (dummy_cycles < 8 / op->addr.buswidth) {
249 ifr &= ~QSPI_IFR_INSTEN;
250 ifr |= QSPI_IFR_ADDREN;
251 iar = (op->cmd.opcode << 16) |
252 (op->addr.val & 0xffff);
254 ifr |= QSPI_IFR_ADDREN;
255 iar = (op->addr.val << 8) & 0xffffff;
256 dummy_cycles -= 8 / op->addr.buswidth;
260 ifr |= QSPI_IFR_ADDREN;
261 iar = op->addr.val & 0xffffff;
264 ifr |= QSPI_IFR_ADDREN | QSPI_IFR_ADDRL;
265 iar = op->addr.val & 0x7ffffff;
272 /* offset of the data access in the QSPI memory space */
275 /* Set number of dummy cycles */
277 ifr |= QSPI_IFR_NBDUM(dummy_cycles);
279 /* Set data enable */
281 ifr |= QSPI_IFR_DATAEN;
284 * If the QSPI controller is set in regular SPI mode, set it in
285 * Serial Memory Mode (SMM).
287 if (aq->mr != QSPI_MR_SMM) {
288 writel(QSPI_MR_SMM, aq->regs + QSPI_MR);
289 aq->mr = QSPI_MR_SMM;
292 /* Clear pending interrupts */
293 (void)readl(aq->regs + QSPI_SR);
295 if (aq->caps->has_ricr) {
296 if (!op->addr.nbytes && op->data.dir == SPI_MEM_DATA_IN)
297 ifr |= QSPI_IFR_APBTFRTYP_READ;
299 /* Set QSPI Instruction Frame registers */
300 writel(iar, aq->regs + QSPI_IAR);
301 if (op->data.dir == SPI_MEM_DATA_IN)
302 writel(icr, aq->regs + QSPI_RICR);
304 writel(icr, aq->regs + QSPI_WICR);
305 writel(ifr, aq->regs + QSPI_IFR);
307 if (op->data.dir == SPI_MEM_DATA_OUT)
308 ifr |= QSPI_IFR_SAMA5D2_WRITE_TRSFR;
310 /* Set QSPI Instruction Frame registers */
311 writel(iar, aq->regs + QSPI_IAR);
312 writel(icr, aq->regs + QSPI_ICR);
313 writel(ifr, aq->regs + QSPI_IFR);
319 static int atmel_qspi_exec_op(struct spi_slave *slave,
320 const struct spi_mem_op *op)
322 struct atmel_qspi *aq = dev_get_priv(slave->dev->parent);
326 err = atmel_qspi_set_cfg(aq, op, &offset);
330 /* Skip to the final steps if there is no data */
331 if (op->data.nbytes) {
332 /* Dummy read of QSPI_IFR to synchronize APB and AHB accesses */
333 (void)readl(aq->regs + QSPI_IFR);
335 /* Send/Receive data */
336 if (op->data.dir == SPI_MEM_DATA_IN)
337 memcpy_fromio(op->data.buf.in, aq->mem + offset,
340 memcpy_toio(aq->mem + offset, op->data.buf.out,
343 /* Release the chip-select */
344 writel(QSPI_CR_LASTXFER, aq->regs + QSPI_CR);
347 /* Poll INSTruction End and Chip Select Rise flags. */
348 imr = QSPI_SR_INSTRE | QSPI_SR_CSR;
349 return readl_poll_timeout(aq->regs + QSPI_SR, sr, (sr & imr) == imr,
353 static int atmel_qspi_set_speed(struct udevice *bus, uint hz)
355 struct atmel_qspi *aq = dev_get_priv(bus);
356 u32 scr, scbr, mask, new_value;
358 /* Compute the QSPI baudrate */
359 scbr = DIV_ROUND_UP(aq->bus_clk_rate, hz);
363 new_value = QSPI_SCR_SCBR(scbr);
364 mask = QSPI_SCR_SCBR_MASK;
366 scr = readl(aq->regs + QSPI_SCR);
367 if ((scr & mask) == new_value)
370 scr = (scr & ~mask) | new_value;
371 writel(scr, aq->regs + QSPI_SCR);
376 static int atmel_qspi_set_mode(struct udevice *bus, uint mode)
378 struct atmel_qspi *aq = dev_get_priv(bus);
379 u32 scr, mask, new_value = 0;
382 new_value = QSPI_SCR_CPOL;
384 new_value = QSPI_SCR_CPHA;
386 mask = QSPI_SCR_CPOL | QSPI_SCR_CPHA;
388 scr = readl(aq->regs + QSPI_SCR);
389 if ((scr & mask) == new_value)
392 scr = (scr & ~mask) | new_value;
393 writel(scr, aq->regs + QSPI_SCR);
398 static int atmel_qspi_enable_clk(struct udevice *dev)
400 struct atmel_qspi *aq = dev_get_priv(dev);
401 struct clk pclk, qspick;
404 ret = clk_get_by_name(dev, "pclk", &pclk);
406 ret = clk_get_by_index(dev, 0, &pclk);
409 dev_err(dev, "Missing QSPI peripheral clock\n");
413 ret = clk_enable(&pclk);
415 dev_err(dev, "Failed to enable QSPI peripheral clock\n");
419 if (aq->caps->has_qspick) {
420 /* Get the QSPI system clock */
421 ret = clk_get_by_name(dev, "qspick", &qspick);
423 dev_err(dev, "Missing QSPI peripheral clock\n");
427 ret = clk_enable(&qspick);
429 dev_err(dev, "Failed to enable QSPI system clock\n");
433 aq->bus_clk_rate = clk_get_rate(&pclk);
434 if (!aq->bus_clk_rate)
443 static void atmel_qspi_init(struct atmel_qspi *aq)
445 /* Reset the QSPI controller */
446 writel(QSPI_CR_SWRST, aq->regs + QSPI_CR);
448 /* Set the QSPI controller by default in Serial Memory Mode */
449 writel(QSPI_MR_SMM, aq->regs + QSPI_MR);
450 aq->mr = QSPI_MR_SMM;
452 /* Enable the QSPI controller */
453 writel(QSPI_CR_QSPIEN, aq->regs + QSPI_CR);
456 static int atmel_qspi_probe(struct udevice *dev)
458 struct atmel_qspi *aq = dev_get_priv(dev);
462 aq->caps = (struct atmel_qspi_caps *)dev_get_driver_data(dev);
464 dev_err(dev, "Could not retrieve QSPI caps\n");
468 /* Map the registers */
469 ret = dev_read_resource_byname(dev, "qspi_base", &res);
471 dev_err(dev, "missing registers\n");
475 aq->regs = devm_ioremap(dev, res.start, resource_size(&res));
476 if (IS_ERR(aq->regs))
477 return PTR_ERR(aq->regs);
479 /* Map the AHB memory */
480 ret = dev_read_resource_byname(dev, "qspi_mmap", &res);
482 dev_err(dev, "missing AHB memory\n");
486 aq->mem = devm_ioremap(dev, res.start, resource_size(&res));
488 return PTR_ERR(aq->mem);
490 ret = atmel_qspi_enable_clk(dev);
499 static const struct spi_controller_mem_ops atmel_qspi_mem_ops = {
500 .supports_op = atmel_qspi_supports_op,
501 .exec_op = atmel_qspi_exec_op,
504 static const struct dm_spi_ops atmel_qspi_ops = {
505 .set_speed = atmel_qspi_set_speed,
506 .set_mode = atmel_qspi_set_mode,
507 .mem_ops = &atmel_qspi_mem_ops,
510 static const struct atmel_qspi_caps atmel_sama5d2_qspi_caps = {};
512 static const struct atmel_qspi_caps atmel_sam9x60_qspi_caps = {
517 static const struct udevice_id atmel_qspi_ids[] = {
519 .compatible = "atmel,sama5d2-qspi",
520 .data = (ulong)&atmel_sama5d2_qspi_caps,
523 .compatible = "microchip,sam9x60-qspi",
524 .data = (ulong)&atmel_sam9x60_qspi_caps,
529 U_BOOT_DRIVER(atmel_qspi) = {
530 .name = "atmel_qspi",
532 .of_match = atmel_qspi_ids,
533 .ops = &atmel_qspi_ops,
534 .priv_auto_alloc_size = sizeof(struct atmel_qspi),
535 .probe = atmel_qspi_probe,