Merge https://gitlab.denx.de/u-boot/custodians/u-boot-spi
[platform/kernel/u-boot.git] / drivers / mtd / spi / spi-nor-core.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Based on m25p80.c, by Mike Lavender (mike@steroidmicros.com), with
4  * influence from lart.c (Abraham Van Der Merwe) and mtd_dataflash.c
5  *
6  * Copyright (C) 2005, Intec Automation Inc.
7  * Copyright (C) 2014, Freescale Semiconductor, Inc.
8  *
9  * Synced from Linux v4.19
10  */
11
12 #include <common.h>
13 #include <dm/device_compat.h>
14 #include <dm/devres.h>
15 #include <linux/err.h>
16 #include <linux/errno.h>
17 #include <linux/log2.h>
18 #include <linux/math64.h>
19 #include <linux/sizes.h>
20
21 #include <linux/mtd/mtd.h>
22 #include <linux/mtd/spi-nor.h>
23 #include <spi-mem.h>
24 #include <spi.h>
25
26 #include "sf_internal.h"
27
28 /* Define max times to check status register before we give up. */
29
30 /*
31  * For everything but full-chip erase; probably could be much smaller, but kept
32  * around for safety for now
33  */
34
35 #define HZ                                      CONFIG_SYS_HZ
36
37 #define DEFAULT_READY_WAIT_JIFFIES              (40UL * HZ)
38
39 static int spi_nor_read_write_reg(struct spi_nor *nor, struct spi_mem_op
40                 *op, void *buf)
41 {
42         if (op->data.dir == SPI_MEM_DATA_IN)
43                 op->data.buf.in = buf;
44         else
45                 op->data.buf.out = buf;
46         return spi_mem_exec_op(nor->spi, op);
47 }
48
49 static int spi_nor_read_reg(struct spi_nor *nor, u8 code, u8 *val, int len)
50 {
51         struct spi_mem_op op = SPI_MEM_OP(SPI_MEM_OP_CMD(code, 1),
52                                           SPI_MEM_OP_NO_ADDR,
53                                           SPI_MEM_OP_NO_DUMMY,
54                                           SPI_MEM_OP_DATA_IN(len, NULL, 1));
55         int ret;
56
57         ret = spi_nor_read_write_reg(nor, &op, val);
58         if (ret < 0)
59                 dev_dbg(&flash->spimem->spi->dev, "error %d reading %x\n", ret,
60                         code);
61
62         return ret;
63 }
64
65 static int spi_nor_write_reg(struct spi_nor *nor, u8 opcode, u8 *buf, int len)
66 {
67         struct spi_mem_op op = SPI_MEM_OP(SPI_MEM_OP_CMD(opcode, 1),
68                                           SPI_MEM_OP_NO_ADDR,
69                                           SPI_MEM_OP_NO_DUMMY,
70                                           SPI_MEM_OP_DATA_OUT(len, NULL, 1));
71
72         return spi_nor_read_write_reg(nor, &op, buf);
73 }
74
75 static ssize_t spi_nor_read_data(struct spi_nor *nor, loff_t from, size_t len,
76                                  u_char *buf)
77 {
78         struct spi_mem_op op =
79                         SPI_MEM_OP(SPI_MEM_OP_CMD(nor->read_opcode, 1),
80                                    SPI_MEM_OP_ADDR(nor->addr_width, from, 1),
81                                    SPI_MEM_OP_DUMMY(nor->read_dummy, 1),
82                                    SPI_MEM_OP_DATA_IN(len, buf, 1));
83         size_t remaining = len;
84         int ret;
85
86         /* get transfer protocols. */
87         op.cmd.buswidth = spi_nor_get_protocol_inst_nbits(nor->read_proto);
88         op.addr.buswidth = spi_nor_get_protocol_addr_nbits(nor->read_proto);
89         op.dummy.buswidth = op.addr.buswidth;
90         op.data.buswidth = spi_nor_get_protocol_data_nbits(nor->read_proto);
91
92         /* convert the dummy cycles to the number of bytes */
93         op.dummy.nbytes = (nor->read_dummy * op.dummy.buswidth) / 8;
94
95         while (remaining) {
96                 op.data.nbytes = remaining < UINT_MAX ? remaining : UINT_MAX;
97                 ret = spi_mem_adjust_op_size(nor->spi, &op);
98                 if (ret)
99                         return ret;
100
101                 ret = spi_mem_exec_op(nor->spi, &op);
102                 if (ret)
103                         return ret;
104
105                 op.addr.val += op.data.nbytes;
106                 remaining -= op.data.nbytes;
107                 op.data.buf.in += op.data.nbytes;
108         }
109
110         return len;
111 }
112
113 static ssize_t spi_nor_write_data(struct spi_nor *nor, loff_t to, size_t len,
114                                   const u_char *buf)
115 {
116         struct spi_mem_op op =
117                         SPI_MEM_OP(SPI_MEM_OP_CMD(nor->program_opcode, 1),
118                                    SPI_MEM_OP_ADDR(nor->addr_width, to, 1),
119                                    SPI_MEM_OP_NO_DUMMY,
120                                    SPI_MEM_OP_DATA_OUT(len, buf, 1));
121         int ret;
122
123         /* get transfer protocols. */
124         op.cmd.buswidth = spi_nor_get_protocol_inst_nbits(nor->write_proto);
125         op.addr.buswidth = spi_nor_get_protocol_addr_nbits(nor->write_proto);
126         op.data.buswidth = spi_nor_get_protocol_data_nbits(nor->write_proto);
127
128         if (nor->program_opcode == SPINOR_OP_AAI_WP && nor->sst_write_second)
129                 op.addr.nbytes = 0;
130
131         ret = spi_mem_adjust_op_size(nor->spi, &op);
132         if (ret)
133                 return ret;
134         op.data.nbytes = len < op.data.nbytes ? len : op.data.nbytes;
135
136         ret = spi_mem_exec_op(nor->spi, &op);
137         if (ret)
138                 return ret;
139
140         return op.data.nbytes;
141 }
142
143 /*
144  * Read the status register, returning its value in the location
145  * Return the status register value.
146  * Returns negative if error occurred.
147  */
148 static int read_sr(struct spi_nor *nor)
149 {
150         int ret;
151         u8 val;
152
153         ret = nor->read_reg(nor, SPINOR_OP_RDSR, &val, 1);
154         if (ret < 0) {
155                 pr_debug("error %d reading SR\n", (int)ret);
156                 return ret;
157         }
158
159         return val;
160 }
161
162 /*
163  * Read the flag status register, returning its value in the location
164  * Return the status register value.
165  * Returns negative if error occurred.
166  */
167 static int read_fsr(struct spi_nor *nor)
168 {
169         int ret;
170         u8 val;
171
172         ret = nor->read_reg(nor, SPINOR_OP_RDFSR, &val, 1);
173         if (ret < 0) {
174                 pr_debug("error %d reading FSR\n", ret);
175                 return ret;
176         }
177
178         return val;
179 }
180
181 /*
182  * Read configuration register, returning its value in the
183  * location. Return the configuration register value.
184  * Returns negative if error occurred.
185  */
186 #if defined(CONFIG_SPI_FLASH_SPANSION) || defined(CONFIG_SPI_FLASH_WINBOND)
187 static int read_cr(struct spi_nor *nor)
188 {
189         int ret;
190         u8 val;
191
192         ret = nor->read_reg(nor, SPINOR_OP_RDCR, &val, 1);
193         if (ret < 0) {
194                 dev_dbg(nor->dev, "error %d reading CR\n", ret);
195                 return ret;
196         }
197
198         return val;
199 }
200 #endif
201
202 /*
203  * Write status register 1 byte
204  * Returns negative if error occurred.
205  */
206 static int write_sr(struct spi_nor *nor, u8 val)
207 {
208         nor->cmd_buf[0] = val;
209         return nor->write_reg(nor, SPINOR_OP_WRSR, nor->cmd_buf, 1);
210 }
211
212 /*
213  * Set write enable latch with Write Enable command.
214  * Returns negative if error occurred.
215  */
216 static int write_enable(struct spi_nor *nor)
217 {
218         return nor->write_reg(nor, SPINOR_OP_WREN, NULL, 0);
219 }
220
221 /*
222  * Send write disable instruction to the chip.
223  */
224 static int write_disable(struct spi_nor *nor)
225 {
226         return nor->write_reg(nor, SPINOR_OP_WRDI, NULL, 0);
227 }
228
229 static struct spi_nor *mtd_to_spi_nor(struct mtd_info *mtd)
230 {
231         return mtd->priv;
232 }
233
234 #ifndef CONFIG_SPI_FLASH_BAR
235 static u8 spi_nor_convert_opcode(u8 opcode, const u8 table[][2], size_t size)
236 {
237         size_t i;
238
239         for (i = 0; i < size; i++)
240                 if (table[i][0] == opcode)
241                         return table[i][1];
242
243         /* No conversion found, keep input op code. */
244         return opcode;
245 }
246
247 static u8 spi_nor_convert_3to4_read(u8 opcode)
248 {
249         static const u8 spi_nor_3to4_read[][2] = {
250                 { SPINOR_OP_READ,       SPINOR_OP_READ_4B },
251                 { SPINOR_OP_READ_FAST,  SPINOR_OP_READ_FAST_4B },
252                 { SPINOR_OP_READ_1_1_2, SPINOR_OP_READ_1_1_2_4B },
253                 { SPINOR_OP_READ_1_2_2, SPINOR_OP_READ_1_2_2_4B },
254                 { SPINOR_OP_READ_1_1_4, SPINOR_OP_READ_1_1_4_4B },
255                 { SPINOR_OP_READ_1_4_4, SPINOR_OP_READ_1_4_4_4B },
256                 { SPINOR_OP_READ_1_1_8, SPINOR_OP_READ_1_1_8_4B },
257                 { SPINOR_OP_READ_1_8_8, SPINOR_OP_READ_1_8_8_4B },
258
259                 { SPINOR_OP_READ_1_1_1_DTR,     SPINOR_OP_READ_1_1_1_DTR_4B },
260                 { SPINOR_OP_READ_1_2_2_DTR,     SPINOR_OP_READ_1_2_2_DTR_4B },
261                 { SPINOR_OP_READ_1_4_4_DTR,     SPINOR_OP_READ_1_4_4_DTR_4B },
262         };
263
264         return spi_nor_convert_opcode(opcode, spi_nor_3to4_read,
265                                       ARRAY_SIZE(spi_nor_3to4_read));
266 }
267
268 static u8 spi_nor_convert_3to4_program(u8 opcode)
269 {
270         static const u8 spi_nor_3to4_program[][2] = {
271                 { SPINOR_OP_PP,         SPINOR_OP_PP_4B },
272                 { SPINOR_OP_PP_1_1_4,   SPINOR_OP_PP_1_1_4_4B },
273                 { SPINOR_OP_PP_1_4_4,   SPINOR_OP_PP_1_4_4_4B },
274                 { SPINOR_OP_PP_1_1_8,   SPINOR_OP_PP_1_1_8_4B },
275                 { SPINOR_OP_PP_1_8_8,   SPINOR_OP_PP_1_8_8_4B },
276         };
277
278         return spi_nor_convert_opcode(opcode, spi_nor_3to4_program,
279                                       ARRAY_SIZE(spi_nor_3to4_program));
280 }
281
282 static u8 spi_nor_convert_3to4_erase(u8 opcode)
283 {
284         static const u8 spi_nor_3to4_erase[][2] = {
285                 { SPINOR_OP_BE_4K,      SPINOR_OP_BE_4K_4B },
286                 { SPINOR_OP_BE_32K,     SPINOR_OP_BE_32K_4B },
287                 { SPINOR_OP_SE,         SPINOR_OP_SE_4B },
288         };
289
290         return spi_nor_convert_opcode(opcode, spi_nor_3to4_erase,
291                                       ARRAY_SIZE(spi_nor_3to4_erase));
292 }
293
294 static void spi_nor_set_4byte_opcodes(struct spi_nor *nor,
295                                       const struct flash_info *info)
296 {
297         /* Do some manufacturer fixups first */
298         switch (JEDEC_MFR(info)) {
299         case SNOR_MFR_SPANSION:
300                 /* No small sector erase for 4-byte command set */
301                 nor->erase_opcode = SPINOR_OP_SE;
302                 nor->mtd.erasesize = info->sector_size;
303                 break;
304
305         default:
306                 break;
307         }
308
309         nor->read_opcode = spi_nor_convert_3to4_read(nor->read_opcode);
310         nor->program_opcode = spi_nor_convert_3to4_program(nor->program_opcode);
311         nor->erase_opcode = spi_nor_convert_3to4_erase(nor->erase_opcode);
312 }
313 #endif /* !CONFIG_SPI_FLASH_BAR */
314
315 /* Enable/disable 4-byte addressing mode. */
316 static int set_4byte(struct spi_nor *nor, const struct flash_info *info,
317                      int enable)
318 {
319         int status;
320         bool need_wren = false;
321         u8 cmd;
322
323         switch (JEDEC_MFR(info)) {
324         case SNOR_MFR_ST:
325         case SNOR_MFR_MICRON:
326                 /* Some Micron need WREN command; all will accept it */
327                 need_wren = true;
328         case SNOR_MFR_ISSI:
329         case SNOR_MFR_MACRONIX:
330         case SNOR_MFR_WINBOND:
331                 if (need_wren)
332                         write_enable(nor);
333
334                 cmd = enable ? SPINOR_OP_EN4B : SPINOR_OP_EX4B;
335                 status = nor->write_reg(nor, cmd, NULL, 0);
336                 if (need_wren)
337                         write_disable(nor);
338
339                 if (!status && !enable &&
340                     JEDEC_MFR(info) == SNOR_MFR_WINBOND) {
341                         /*
342                          * On Winbond W25Q256FV, leaving 4byte mode causes
343                          * the Extended Address Register to be set to 1, so all
344                          * 3-byte-address reads come from the second 16M.
345                          * We must clear the register to enable normal behavior.
346                          */
347                         write_enable(nor);
348                         nor->cmd_buf[0] = 0;
349                         nor->write_reg(nor, SPINOR_OP_WREAR, nor->cmd_buf, 1);
350                         write_disable(nor);
351                 }
352
353                 return status;
354         default:
355                 /* Spansion style */
356                 nor->cmd_buf[0] = enable << 7;
357                 return nor->write_reg(nor, SPINOR_OP_BRWR, nor->cmd_buf, 1);
358         }
359 }
360
361 static int spi_nor_sr_ready(struct spi_nor *nor)
362 {
363         int sr = read_sr(nor);
364
365         if (sr < 0)
366                 return sr;
367
368         if (nor->flags & SNOR_F_USE_CLSR && sr & (SR_E_ERR | SR_P_ERR)) {
369                 if (sr & SR_E_ERR)
370                         dev_dbg(nor->dev, "Erase Error occurred\n");
371                 else
372                         dev_dbg(nor->dev, "Programming Error occurred\n");
373
374                 nor->write_reg(nor, SPINOR_OP_CLSR, NULL, 0);
375                 return -EIO;
376         }
377
378         return !(sr & SR_WIP);
379 }
380
381 static int spi_nor_fsr_ready(struct spi_nor *nor)
382 {
383         int fsr = read_fsr(nor);
384
385         if (fsr < 0)
386                 return fsr;
387
388         if (fsr & (FSR_E_ERR | FSR_P_ERR)) {
389                 if (fsr & FSR_E_ERR)
390                         dev_err(nor->dev, "Erase operation failed.\n");
391                 else
392                         dev_err(nor->dev, "Program operation failed.\n");
393
394                 if (fsr & FSR_PT_ERR)
395                         dev_err(nor->dev,
396                                 "Attempted to modify a protected sector.\n");
397
398                 nor->write_reg(nor, SPINOR_OP_CLFSR, NULL, 0);
399                 return -EIO;
400         }
401
402         return fsr & FSR_READY;
403 }
404
405 static int spi_nor_ready(struct spi_nor *nor)
406 {
407         int sr, fsr;
408
409         sr = spi_nor_sr_ready(nor);
410         if (sr < 0)
411                 return sr;
412         fsr = nor->flags & SNOR_F_USE_FSR ? spi_nor_fsr_ready(nor) : 1;
413         if (fsr < 0)
414                 return fsr;
415         return sr && fsr;
416 }
417
418 /*
419  * Service routine to read status register until ready, or timeout occurs.
420  * Returns non-zero if error.
421  */
422 static int spi_nor_wait_till_ready_with_timeout(struct spi_nor *nor,
423                                                 unsigned long timeout)
424 {
425         unsigned long timebase;
426         int ret;
427
428         timebase = get_timer(0);
429
430         while (get_timer(timebase) < timeout) {
431                 ret = spi_nor_ready(nor);
432                 if (ret < 0)
433                         return ret;
434                 if (ret)
435                         return 0;
436         }
437
438         dev_err(nor->dev, "flash operation timed out\n");
439
440         return -ETIMEDOUT;
441 }
442
443 static int spi_nor_wait_till_ready(struct spi_nor *nor)
444 {
445         return spi_nor_wait_till_ready_with_timeout(nor,
446                                                     DEFAULT_READY_WAIT_JIFFIES);
447 }
448
449 #ifdef CONFIG_SPI_FLASH_BAR
450 /*
451  * This "clean_bar" is necessary in a situation when one was accessing
452  * spi flash memory > 16 MiB by using Bank Address Register's BA24 bit.
453  *
454  * After it the BA24 bit shall be cleared to allow access to correct
455  * memory region after SW reset (by calling "reset" command).
456  *
457  * Otherwise, the BA24 bit may be left set and then after reset, the
458  * ROM would read/write/erase SPL from 16 MiB * bank_sel address.
459  */
460 static int clean_bar(struct spi_nor *nor)
461 {
462         u8 cmd, bank_sel = 0;
463
464         if (nor->bank_curr == 0)
465                 return 0;
466         cmd = nor->bank_write_cmd;
467         nor->bank_curr = 0;
468         write_enable(nor);
469
470         return nor->write_reg(nor, cmd, &bank_sel, 1);
471 }
472
473 static int write_bar(struct spi_nor *nor, u32 offset)
474 {
475         u8 cmd, bank_sel;
476         int ret;
477
478         bank_sel = offset / SZ_16M;
479         if (bank_sel == nor->bank_curr)
480                 goto bar_end;
481
482         cmd = nor->bank_write_cmd;
483         write_enable(nor);
484         ret = nor->write_reg(nor, cmd, &bank_sel, 1);
485         if (ret < 0) {
486                 debug("SF: fail to write bank register\n");
487                 return ret;
488         }
489
490 bar_end:
491         nor->bank_curr = bank_sel;
492         return nor->bank_curr;
493 }
494
495 static int read_bar(struct spi_nor *nor, const struct flash_info *info)
496 {
497         u8 curr_bank = 0;
498         int ret;
499
500         switch (JEDEC_MFR(info)) {
501         case SNOR_MFR_SPANSION:
502                 nor->bank_read_cmd = SPINOR_OP_BRRD;
503                 nor->bank_write_cmd = SPINOR_OP_BRWR;
504                 break;
505         default:
506                 nor->bank_read_cmd = SPINOR_OP_RDEAR;
507                 nor->bank_write_cmd = SPINOR_OP_WREAR;
508         }
509
510         ret = nor->read_reg(nor, nor->bank_read_cmd,
511                                     &curr_bank, 1);
512         if (ret) {
513                 debug("SF: fail to read bank addr register\n");
514                 return ret;
515         }
516         nor->bank_curr = curr_bank;
517
518         return 0;
519 }
520 #endif
521
522 /*
523  * Initiate the erasure of a single sector
524  */
525 static int spi_nor_erase_sector(struct spi_nor *nor, u32 addr)
526 {
527         struct spi_mem_op op =
528                 SPI_MEM_OP(SPI_MEM_OP_CMD(nor->erase_opcode, 1),
529                            SPI_MEM_OP_ADDR(nor->addr_width, addr, 1),
530                            SPI_MEM_OP_NO_DUMMY,
531                            SPI_MEM_OP_NO_DATA);
532
533         if (nor->erase)
534                 return nor->erase(nor, addr);
535
536         /*
537          * Default implementation, if driver doesn't have a specialized HW
538          * control
539          */
540         return spi_mem_exec_op(nor->spi, &op);
541 }
542
543 /*
544  * Erase an address range on the nor chip.  The address range may extend
545  * one or more erase sectors.  Return an error is there is a problem erasing.
546  */
547 static int spi_nor_erase(struct mtd_info *mtd, struct erase_info *instr)
548 {
549         struct spi_nor *nor = mtd_to_spi_nor(mtd);
550         u32 addr, len, rem;
551         int ret;
552
553         dev_dbg(nor->dev, "at 0x%llx, len %lld\n", (long long)instr->addr,
554                 (long long)instr->len);
555
556         if (!instr->len)
557                 return 0;
558
559         div_u64_rem(instr->len, mtd->erasesize, &rem);
560         if (rem)
561                 return -EINVAL;
562
563         addr = instr->addr;
564         len = instr->len;
565
566         while (len) {
567 #ifdef CONFIG_SPI_FLASH_BAR
568                 ret = write_bar(nor, addr);
569                 if (ret < 0)
570                         return ret;
571 #endif
572                 write_enable(nor);
573
574                 ret = spi_nor_erase_sector(nor, addr);
575                 if (ret)
576                         goto erase_err;
577
578                 addr += mtd->erasesize;
579                 len -= mtd->erasesize;
580
581                 ret = spi_nor_wait_till_ready(nor);
582                 if (ret)
583                         goto erase_err;
584         }
585
586 erase_err:
587 #ifdef CONFIG_SPI_FLASH_BAR
588         ret = clean_bar(nor);
589 #endif
590         write_disable(nor);
591
592         return ret;
593 }
594
595 #if defined(CONFIG_SPI_FLASH_STMICRO) || defined(CONFIG_SPI_FLASH_SST)
596 /* Write status register and ensure bits in mask match written values */
597 static int write_sr_and_check(struct spi_nor *nor, u8 status_new, u8 mask)
598 {
599         int ret;
600
601         write_enable(nor);
602         ret = write_sr(nor, status_new);
603         if (ret)
604                 return ret;
605
606         ret = spi_nor_wait_till_ready(nor);
607         if (ret)
608                 return ret;
609
610         ret = read_sr(nor);
611         if (ret < 0)
612                 return ret;
613
614         return ((ret & mask) != (status_new & mask)) ? -EIO : 0;
615 }
616
617 static void stm_get_locked_range(struct spi_nor *nor, u8 sr, loff_t *ofs,
618                                  uint64_t *len)
619 {
620         struct mtd_info *mtd = &nor->mtd;
621         u8 mask = SR_BP2 | SR_BP1 | SR_BP0;
622         int shift = ffs(mask) - 1;
623         int pow;
624
625         if (!(sr & mask)) {
626                 /* No protection */
627                 *ofs = 0;
628                 *len = 0;
629         } else {
630                 pow = ((sr & mask) ^ mask) >> shift;
631                 *len = mtd->size >> pow;
632                 if (nor->flags & SNOR_F_HAS_SR_TB && sr & SR_TB)
633                         *ofs = 0;
634                 else
635                         *ofs = mtd->size - *len;
636         }
637 }
638
639 /*
640  * Return 1 if the entire region is locked (if @locked is true) or unlocked (if
641  * @locked is false); 0 otherwise
642  */
643 static int stm_check_lock_status_sr(struct spi_nor *nor, loff_t ofs, u64 len,
644                                     u8 sr, bool locked)
645 {
646         loff_t lock_offs;
647         uint64_t lock_len;
648
649         if (!len)
650                 return 1;
651
652         stm_get_locked_range(nor, sr, &lock_offs, &lock_len);
653
654         if (locked)
655                 /* Requested range is a sub-range of locked range */
656                 return (ofs + len <= lock_offs + lock_len) && (ofs >= lock_offs);
657         else
658                 /* Requested range does not overlap with locked range */
659                 return (ofs >= lock_offs + lock_len) || (ofs + len <= lock_offs);
660 }
661
662 static int stm_is_locked_sr(struct spi_nor *nor, loff_t ofs, uint64_t len,
663                             u8 sr)
664 {
665         return stm_check_lock_status_sr(nor, ofs, len, sr, true);
666 }
667
668 static int stm_is_unlocked_sr(struct spi_nor *nor, loff_t ofs, uint64_t len,
669                               u8 sr)
670 {
671         return stm_check_lock_status_sr(nor, ofs, len, sr, false);
672 }
673
674 /*
675  * Lock a region of the flash. Compatible with ST Micro and similar flash.
676  * Supports the block protection bits BP{0,1,2} in the status register
677  * (SR). Does not support these features found in newer SR bitfields:
678  *   - SEC: sector/block protect - only handle SEC=0 (block protect)
679  *   - CMP: complement protect - only support CMP=0 (range is not complemented)
680  *
681  * Support for the following is provided conditionally for some flash:
682  *   - TB: top/bottom protect
683  *
684  * Sample table portion for 8MB flash (Winbond w25q64fw):
685  *
686  *   SEC  |  TB   |  BP2  |  BP1  |  BP0  |  Prot Length  | Protected Portion
687  *  --------------------------------------------------------------------------
688  *    X   |   X   |   0   |   0   |   0   |  NONE         | NONE
689  *    0   |   0   |   0   |   0   |   1   |  128 KB       | Upper 1/64
690  *    0   |   0   |   0   |   1   |   0   |  256 KB       | Upper 1/32
691  *    0   |   0   |   0   |   1   |   1   |  512 KB       | Upper 1/16
692  *    0   |   0   |   1   |   0   |   0   |  1 MB         | Upper 1/8
693  *    0   |   0   |   1   |   0   |   1   |  2 MB         | Upper 1/4
694  *    0   |   0   |   1   |   1   |   0   |  4 MB         | Upper 1/2
695  *    X   |   X   |   1   |   1   |   1   |  8 MB         | ALL
696  *  ------|-------|-------|-------|-------|---------------|-------------------
697  *    0   |   1   |   0   |   0   |   1   |  128 KB       | Lower 1/64
698  *    0   |   1   |   0   |   1   |   0   |  256 KB       | Lower 1/32
699  *    0   |   1   |   0   |   1   |   1   |  512 KB       | Lower 1/16
700  *    0   |   1   |   1   |   0   |   0   |  1 MB         | Lower 1/8
701  *    0   |   1   |   1   |   0   |   1   |  2 MB         | Lower 1/4
702  *    0   |   1   |   1   |   1   |   0   |  4 MB         | Lower 1/2
703  *
704  * Returns negative on errors, 0 on success.
705  */
706 static int stm_lock(struct spi_nor *nor, loff_t ofs, uint64_t len)
707 {
708         struct mtd_info *mtd = &nor->mtd;
709         int status_old, status_new;
710         u8 mask = SR_BP2 | SR_BP1 | SR_BP0;
711         u8 shift = ffs(mask) - 1, pow, val;
712         loff_t lock_len;
713         bool can_be_top = true, can_be_bottom = nor->flags & SNOR_F_HAS_SR_TB;
714         bool use_top;
715
716         status_old = read_sr(nor);
717         if (status_old < 0)
718                 return status_old;
719
720         /* If nothing in our range is unlocked, we don't need to do anything */
721         if (stm_is_locked_sr(nor, ofs, len, status_old))
722                 return 0;
723
724         /* If anything below us is unlocked, we can't use 'bottom' protection */
725         if (!stm_is_locked_sr(nor, 0, ofs, status_old))
726                 can_be_bottom = false;
727
728         /* If anything above us is unlocked, we can't use 'top' protection */
729         if (!stm_is_locked_sr(nor, ofs + len, mtd->size - (ofs + len),
730                               status_old))
731                 can_be_top = false;
732
733         if (!can_be_bottom && !can_be_top)
734                 return -EINVAL;
735
736         /* Prefer top, if both are valid */
737         use_top = can_be_top;
738
739         /* lock_len: length of region that should end up locked */
740         if (use_top)
741                 lock_len = mtd->size - ofs;
742         else
743                 lock_len = ofs + len;
744
745         /*
746          * Need smallest pow such that:
747          *
748          *   1 / (2^pow) <= (len / size)
749          *
750          * so (assuming power-of-2 size) we do:
751          *
752          *   pow = ceil(log2(size / len)) = log2(size) - floor(log2(len))
753          */
754         pow = ilog2(mtd->size) - ilog2(lock_len);
755         val = mask - (pow << shift);
756         if (val & ~mask)
757                 return -EINVAL;
758         /* Don't "lock" with no region! */
759         if (!(val & mask))
760                 return -EINVAL;
761
762         status_new = (status_old & ~mask & ~SR_TB) | val;
763
764         /* Disallow further writes if WP pin is asserted */
765         status_new |= SR_SRWD;
766
767         if (!use_top)
768                 status_new |= SR_TB;
769
770         /* Don't bother if they're the same */
771         if (status_new == status_old)
772                 return 0;
773
774         /* Only modify protection if it will not unlock other areas */
775         if ((status_new & mask) < (status_old & mask))
776                 return -EINVAL;
777
778         return write_sr_and_check(nor, status_new, mask);
779 }
780
781 /*
782  * Unlock a region of the flash. See stm_lock() for more info
783  *
784  * Returns negative on errors, 0 on success.
785  */
786 static int stm_unlock(struct spi_nor *nor, loff_t ofs, uint64_t len)
787 {
788         struct mtd_info *mtd = &nor->mtd;
789         int status_old, status_new;
790         u8 mask = SR_BP2 | SR_BP1 | SR_BP0;
791         u8 shift = ffs(mask) - 1, pow, val;
792         loff_t lock_len;
793         bool can_be_top = true, can_be_bottom = nor->flags & SNOR_F_HAS_SR_TB;
794         bool use_top;
795
796         status_old = read_sr(nor);
797         if (status_old < 0)
798                 return status_old;
799
800         /* If nothing in our range is locked, we don't need to do anything */
801         if (stm_is_unlocked_sr(nor, ofs, len, status_old))
802                 return 0;
803
804         /* If anything below us is locked, we can't use 'top' protection */
805         if (!stm_is_unlocked_sr(nor, 0, ofs, status_old))
806                 can_be_top = false;
807
808         /* If anything above us is locked, we can't use 'bottom' protection */
809         if (!stm_is_unlocked_sr(nor, ofs + len, mtd->size - (ofs + len),
810                                 status_old))
811                 can_be_bottom = false;
812
813         if (!can_be_bottom && !can_be_top)
814                 return -EINVAL;
815
816         /* Prefer top, if both are valid */
817         use_top = can_be_top;
818
819         /* lock_len: length of region that should remain locked */
820         if (use_top)
821                 lock_len = mtd->size - (ofs + len);
822         else
823                 lock_len = ofs;
824
825         /*
826          * Need largest pow such that:
827          *
828          *   1 / (2^pow) >= (len / size)
829          *
830          * so (assuming power-of-2 size) we do:
831          *
832          *   pow = floor(log2(size / len)) = log2(size) - ceil(log2(len))
833          */
834         pow = ilog2(mtd->size) - order_base_2(lock_len);
835         if (lock_len == 0) {
836                 val = 0; /* fully unlocked */
837         } else {
838                 val = mask - (pow << shift);
839                 /* Some power-of-two sizes are not supported */
840                 if (val & ~mask)
841                         return -EINVAL;
842         }
843
844         status_new = (status_old & ~mask & ~SR_TB) | val;
845
846         /* Don't protect status register if we're fully unlocked */
847         if (lock_len == 0)
848                 status_new &= ~SR_SRWD;
849
850         if (!use_top)
851                 status_new |= SR_TB;
852
853         /* Don't bother if they're the same */
854         if (status_new == status_old)
855                 return 0;
856
857         /* Only modify protection if it will not lock other areas */
858         if ((status_new & mask) > (status_old & mask))
859                 return -EINVAL;
860
861         return write_sr_and_check(nor, status_new, mask);
862 }
863
864 /*
865  * Check if a region of the flash is (completely) locked. See stm_lock() for
866  * more info.
867  *
868  * Returns 1 if entire region is locked, 0 if any portion is unlocked, and
869  * negative on errors.
870  */
871 static int stm_is_locked(struct spi_nor *nor, loff_t ofs, uint64_t len)
872 {
873         int status;
874
875         status = read_sr(nor);
876         if (status < 0)
877                 return status;
878
879         return stm_is_locked_sr(nor, ofs, len, status);
880 }
881 #endif /* CONFIG_SPI_FLASH_STMICRO */
882
883 static const struct flash_info *spi_nor_read_id(struct spi_nor *nor)
884 {
885         int                     tmp;
886         u8                      id[SPI_NOR_MAX_ID_LEN];
887         const struct flash_info *info;
888
889         tmp = nor->read_reg(nor, SPINOR_OP_RDID, id, SPI_NOR_MAX_ID_LEN);
890         if (tmp < 0) {
891                 dev_dbg(nor->dev, "error %d reading JEDEC ID\n", tmp);
892                 return ERR_PTR(tmp);
893         }
894
895         info = spi_nor_ids;
896         for (; info->name; info++) {
897                 if (info->id_len) {
898                         if (!memcmp(info->id, id, info->id_len))
899                                 return info;
900                 }
901         }
902
903         dev_err(nor->dev, "unrecognized JEDEC id bytes: %02x, %02x, %02x\n",
904                 id[0], id[1], id[2]);
905         return ERR_PTR(-ENODEV);
906 }
907
908 static int spi_nor_read(struct mtd_info *mtd, loff_t from, size_t len,
909                         size_t *retlen, u_char *buf)
910 {
911         struct spi_nor *nor = mtd_to_spi_nor(mtd);
912         int ret;
913
914         dev_dbg(nor->dev, "from 0x%08x, len %zd\n", (u32)from, len);
915
916         while (len) {
917                 loff_t addr = from;
918                 size_t read_len = len;
919
920 #ifdef CONFIG_SPI_FLASH_BAR
921                 u32 remain_len;
922
923                 ret = write_bar(nor, addr);
924                 if (ret < 0)
925                         return log_ret(ret);
926                 remain_len = (SZ_16M * (nor->bank_curr + 1)) - addr;
927
928                 if (len < remain_len)
929                         read_len = len;
930                 else
931                         read_len = remain_len;
932 #endif
933
934                 ret = nor->read(nor, addr, read_len, buf);
935                 if (ret == 0) {
936                         /* We shouldn't see 0-length reads */
937                         ret = -EIO;
938                         goto read_err;
939                 }
940                 if (ret < 0)
941                         goto read_err;
942
943                 *retlen += ret;
944                 buf += ret;
945                 from += ret;
946                 len -= ret;
947         }
948         ret = 0;
949
950 read_err:
951 #ifdef CONFIG_SPI_FLASH_BAR
952         ret = clean_bar(nor);
953 #endif
954         return ret;
955 }
956
957 #ifdef CONFIG_SPI_FLASH_SST
958 /*
959  * sst26 flash series has its own block protection implementation:
960  * 4x   - 8  KByte blocks - read & write protection bits - upper addresses
961  * 1x   - 32 KByte blocks - write protection bits
962  * rest - 64 KByte blocks - write protection bits
963  * 1x   - 32 KByte blocks - write protection bits
964  * 4x   - 8  KByte blocks - read & write protection bits - lower addresses
965  *
966  * We'll support only per 64k lock/unlock so lower and upper 64 KByte region
967  * will be treated as single block.
968  */
969 #define SST26_BPR_8K_NUM                4
970 #define SST26_MAX_BPR_REG_LEN           (18 + 1)
971 #define SST26_BOUND_REG_SIZE            ((32 + SST26_BPR_8K_NUM * 8) * SZ_1K)
972
973 enum lock_ctl {
974         SST26_CTL_LOCK,
975         SST26_CTL_UNLOCK,
976         SST26_CTL_CHECK
977 };
978
979 static bool sst26_process_bpr(u32 bpr_size, u8 *cmd, u32 bit, enum lock_ctl ctl)
980 {
981         switch (ctl) {
982         case SST26_CTL_LOCK:
983                 cmd[bpr_size - (bit / 8) - 1] |= BIT(bit % 8);
984                 break;
985         case SST26_CTL_UNLOCK:
986                 cmd[bpr_size - (bit / 8) - 1] &= ~BIT(bit % 8);
987                 break;
988         case SST26_CTL_CHECK:
989                 return !!(cmd[bpr_size - (bit / 8) - 1] & BIT(bit % 8));
990         }
991
992         return false;
993 }
994
995 /*
996  * Lock, unlock or check lock status of the flash region of the flash (depending
997  * on the lock_ctl value)
998  */
999 static int sst26_lock_ctl(struct spi_nor *nor, loff_t ofs, uint64_t len, enum lock_ctl ctl)
1000 {
1001         struct mtd_info *mtd = &nor->mtd;
1002         u32 i, bpr_ptr, rptr_64k, lptr_64k, bpr_size;
1003         bool lower_64k = false, upper_64k = false;
1004         u8 bpr_buff[SST26_MAX_BPR_REG_LEN] = {};
1005         int ret;
1006
1007         /* Check length and offset for 64k alignment */
1008         if ((ofs & (SZ_64K - 1)) || (len & (SZ_64K - 1))) {
1009                 dev_err(nor->dev, "length or offset is not 64KiB allighned\n");
1010                 return -EINVAL;
1011         }
1012
1013         if (ofs + len > mtd->size) {
1014                 dev_err(nor->dev, "range is more than device size: %#llx + %#llx > %#llx\n",
1015                         ofs, len, mtd->size);
1016                 return -EINVAL;
1017         }
1018
1019         /* SST26 family has only 16 Mbit, 32 Mbit and 64 Mbit IC */
1020         if (mtd->size != SZ_2M &&
1021             mtd->size != SZ_4M &&
1022             mtd->size != SZ_8M)
1023                 return -EINVAL;
1024
1025         bpr_size = 2 + (mtd->size / SZ_64K / 8);
1026
1027         ret = nor->read_reg(nor, SPINOR_OP_READ_BPR, bpr_buff, bpr_size);
1028         if (ret < 0) {
1029                 dev_err(nor->dev, "fail to read block-protection register\n");
1030                 return ret;
1031         }
1032
1033         rptr_64k = min_t(u32, ofs + len, mtd->size - SST26_BOUND_REG_SIZE);
1034         lptr_64k = max_t(u32, ofs, SST26_BOUND_REG_SIZE);
1035
1036         upper_64k = ((ofs + len) > (mtd->size - SST26_BOUND_REG_SIZE));
1037         lower_64k = (ofs < SST26_BOUND_REG_SIZE);
1038
1039         /* Lower bits in block-protection register are about 64k region */
1040         bpr_ptr = lptr_64k / SZ_64K - 1;
1041
1042         /* Process 64K blocks region */
1043         while (lptr_64k < rptr_64k) {
1044                 if (sst26_process_bpr(bpr_size, bpr_buff, bpr_ptr, ctl))
1045                         return EACCES;
1046
1047                 bpr_ptr++;
1048                 lptr_64k += SZ_64K;
1049         }
1050
1051         /* 32K and 8K region bits in BPR are after 64k region bits */
1052         bpr_ptr = (mtd->size - 2 * SST26_BOUND_REG_SIZE) / SZ_64K;
1053
1054         /* Process lower 32K block region */
1055         if (lower_64k)
1056                 if (sst26_process_bpr(bpr_size, bpr_buff, bpr_ptr, ctl))
1057                         return EACCES;
1058
1059         bpr_ptr++;
1060
1061         /* Process upper 32K block region */
1062         if (upper_64k)
1063                 if (sst26_process_bpr(bpr_size, bpr_buff, bpr_ptr, ctl))
1064                         return EACCES;
1065
1066         bpr_ptr++;
1067
1068         /* Process lower 8K block regions */
1069         for (i = 0; i < SST26_BPR_8K_NUM; i++) {
1070                 if (lower_64k)
1071                         if (sst26_process_bpr(bpr_size, bpr_buff, bpr_ptr, ctl))
1072                                 return EACCES;
1073
1074                 /* In 8K area BPR has both read and write protection bits */
1075                 bpr_ptr += 2;
1076         }
1077
1078         /* Process upper 8K block regions */
1079         for (i = 0; i < SST26_BPR_8K_NUM; i++) {
1080                 if (upper_64k)
1081                         if (sst26_process_bpr(bpr_size, bpr_buff, bpr_ptr, ctl))
1082                                 return EACCES;
1083
1084                 /* In 8K area BPR has both read and write protection bits */
1085                 bpr_ptr += 2;
1086         }
1087
1088         /* If we check region status we don't need to write BPR back */
1089         if (ctl == SST26_CTL_CHECK)
1090                 return 0;
1091
1092         ret = nor->write_reg(nor, SPINOR_OP_WRITE_BPR, bpr_buff, bpr_size);
1093         if (ret < 0) {
1094                 dev_err(nor->dev, "fail to write block-protection register\n");
1095                 return ret;
1096         }
1097
1098         return 0;
1099 }
1100
1101 static int sst26_unlock(struct spi_nor *nor, loff_t ofs, uint64_t len)
1102 {
1103         return sst26_lock_ctl(nor, ofs, len, SST26_CTL_UNLOCK);
1104 }
1105
1106 static int sst26_lock(struct spi_nor *nor, loff_t ofs, uint64_t len)
1107 {
1108         return sst26_lock_ctl(nor, ofs, len, SST26_CTL_LOCK);
1109 }
1110
1111 /*
1112  * Returns EACCES (positive value) if region is locked, 0 if region is unlocked,
1113  * and negative on errors.
1114  */
1115 static int sst26_is_locked(struct spi_nor *nor, loff_t ofs, uint64_t len)
1116 {
1117         /*
1118          * is_locked function is used for check before reading or erasing flash
1119          * region, so offset and length might be not 64k allighned, so adjust
1120          * them to be 64k allighned as sst26_lock_ctl works only with 64k
1121          * allighned regions.
1122          */
1123         ofs -= ofs & (SZ_64K - 1);
1124         len = len & (SZ_64K - 1) ? (len & ~(SZ_64K - 1)) + SZ_64K : len;
1125
1126         return sst26_lock_ctl(nor, ofs, len, SST26_CTL_CHECK);
1127 }
1128
1129 static int sst_write_byteprogram(struct spi_nor *nor, loff_t to, size_t len,
1130                                  size_t *retlen, const u_char *buf)
1131 {
1132         size_t actual;
1133         int ret = 0;
1134
1135         for (actual = 0; actual < len; actual++) {
1136                 nor->program_opcode = SPINOR_OP_BP;
1137
1138                 write_enable(nor);
1139                 /* write one byte. */
1140                 ret = nor->write(nor, to, 1, buf + actual);
1141                 if (ret < 0)
1142                         goto sst_write_err;
1143                 ret = spi_nor_wait_till_ready(nor);
1144                 if (ret)
1145                         goto sst_write_err;
1146                 to++;
1147         }
1148
1149 sst_write_err:
1150         write_disable(nor);
1151         return ret;
1152 }
1153
1154 static int sst_write(struct mtd_info *mtd, loff_t to, size_t len,
1155                      size_t *retlen, const u_char *buf)
1156 {
1157         struct spi_nor *nor = mtd_to_spi_nor(mtd);
1158         struct spi_slave *spi = nor->spi;
1159         size_t actual;
1160         int ret;
1161
1162         dev_dbg(nor->dev, "to 0x%08x, len %zd\n", (u32)to, len);
1163         if (spi->mode & SPI_TX_BYTE)
1164                 return sst_write_byteprogram(nor, to, len, retlen, buf);
1165
1166         write_enable(nor);
1167
1168         nor->sst_write_second = false;
1169
1170         actual = to % 2;
1171         /* Start write from odd address. */
1172         if (actual) {
1173                 nor->program_opcode = SPINOR_OP_BP;
1174
1175                 /* write one byte. */
1176                 ret = nor->write(nor, to, 1, buf);
1177                 if (ret < 0)
1178                         goto sst_write_err;
1179                 ret = spi_nor_wait_till_ready(nor);
1180                 if (ret)
1181                         goto sst_write_err;
1182         }
1183         to += actual;
1184
1185         /* Write out most of the data here. */
1186         for (; actual < len - 1; actual += 2) {
1187                 nor->program_opcode = SPINOR_OP_AAI_WP;
1188
1189                 /* write two bytes. */
1190                 ret = nor->write(nor, to, 2, buf + actual);
1191                 if (ret < 0)
1192                         goto sst_write_err;
1193                 ret = spi_nor_wait_till_ready(nor);
1194                 if (ret)
1195                         goto sst_write_err;
1196                 to += 2;
1197                 nor->sst_write_second = true;
1198         }
1199         nor->sst_write_second = false;
1200
1201         write_disable(nor);
1202         ret = spi_nor_wait_till_ready(nor);
1203         if (ret)
1204                 goto sst_write_err;
1205
1206         /* Write out trailing byte if it exists. */
1207         if (actual != len) {
1208                 write_enable(nor);
1209
1210                 nor->program_opcode = SPINOR_OP_BP;
1211                 ret = nor->write(nor, to, 1, buf + actual);
1212                 if (ret < 0)
1213                         goto sst_write_err;
1214                 ret = spi_nor_wait_till_ready(nor);
1215                 if (ret)
1216                         goto sst_write_err;
1217                 write_disable(nor);
1218                 actual += 1;
1219         }
1220 sst_write_err:
1221         *retlen += actual;
1222         return ret;
1223 }
1224 #endif
1225 /*
1226  * Write an address range to the nor chip.  Data must be written in
1227  * FLASH_PAGESIZE chunks.  The address range may be any size provided
1228  * it is within the physical boundaries.
1229  */
1230 static int spi_nor_write(struct mtd_info *mtd, loff_t to, size_t len,
1231         size_t *retlen, const u_char *buf)
1232 {
1233         struct spi_nor *nor = mtd_to_spi_nor(mtd);
1234         size_t page_offset, page_remain, i;
1235         ssize_t ret;
1236
1237         dev_dbg(nor->dev, "to 0x%08x, len %zd\n", (u32)to, len);
1238
1239         if (!len)
1240                 return 0;
1241
1242         for (i = 0; i < len; ) {
1243                 ssize_t written;
1244                 loff_t addr = to + i;
1245
1246                 /*
1247                  * If page_size is a power of two, the offset can be quickly
1248                  * calculated with an AND operation. On the other cases we
1249                  * need to do a modulus operation (more expensive).
1250                  */
1251                 if (is_power_of_2(nor->page_size)) {
1252                         page_offset = addr & (nor->page_size - 1);
1253                 } else {
1254                         u64 aux = addr;
1255
1256                         page_offset = do_div(aux, nor->page_size);
1257                 }
1258                 /* the size of data remaining on the first page */
1259                 page_remain = min_t(size_t,
1260                                     nor->page_size - page_offset, len - i);
1261
1262 #ifdef CONFIG_SPI_FLASH_BAR
1263                 ret = write_bar(nor, addr);
1264                 if (ret < 0)
1265                         return ret;
1266 #endif
1267                 write_enable(nor);
1268                 ret = nor->write(nor, addr, page_remain, buf + i);
1269                 if (ret < 0)
1270                         goto write_err;
1271                 written = ret;
1272
1273                 ret = spi_nor_wait_till_ready(nor);
1274                 if (ret)
1275                         goto write_err;
1276                 *retlen += written;
1277                 i += written;
1278         }
1279
1280 write_err:
1281 #ifdef CONFIG_SPI_FLASH_BAR
1282         ret = clean_bar(nor);
1283 #endif
1284         return ret;
1285 }
1286
1287 #ifdef CONFIG_SPI_FLASH_MACRONIX
1288 /**
1289  * macronix_quad_enable() - set QE bit in Status Register.
1290  * @nor:        pointer to a 'struct spi_nor'
1291  *
1292  * Set the Quad Enable (QE) bit in the Status Register.
1293  *
1294  * bit 6 of the Status Register is the QE bit for Macronix like QSPI memories.
1295  *
1296  * Return: 0 on success, -errno otherwise.
1297  */
1298 static int macronix_quad_enable(struct spi_nor *nor)
1299 {
1300         int ret, val;
1301
1302         val = read_sr(nor);
1303         if (val < 0)
1304                 return val;
1305         if (val & SR_QUAD_EN_MX)
1306                 return 0;
1307
1308         write_enable(nor);
1309
1310         write_sr(nor, val | SR_QUAD_EN_MX);
1311
1312         ret = spi_nor_wait_till_ready(nor);
1313         if (ret)
1314                 return ret;
1315
1316         ret = read_sr(nor);
1317         if (!(ret > 0 && (ret & SR_QUAD_EN_MX))) {
1318                 dev_err(nor->dev, "Macronix Quad bit not set\n");
1319                 return -EINVAL;
1320         }
1321
1322         return 0;
1323 }
1324 #endif
1325
1326 #if defined(CONFIG_SPI_FLASH_SPANSION) || defined(CONFIG_SPI_FLASH_WINBOND)
1327 /*
1328  * Write status Register and configuration register with 2 bytes
1329  * The first byte will be written to the status register, while the
1330  * second byte will be written to the configuration register.
1331  * Return negative if error occurred.
1332  */
1333 static int write_sr_cr(struct spi_nor *nor, u8 *sr_cr)
1334 {
1335         int ret;
1336
1337         write_enable(nor);
1338
1339         ret = nor->write_reg(nor, SPINOR_OP_WRSR, sr_cr, 2);
1340         if (ret < 0) {
1341                 dev_dbg(nor->dev,
1342                         "error while writing configuration register\n");
1343                 return -EINVAL;
1344         }
1345
1346         ret = spi_nor_wait_till_ready(nor);
1347         if (ret) {
1348                 dev_dbg(nor->dev,
1349                         "timeout while writing configuration register\n");
1350                 return ret;
1351         }
1352
1353         return 0;
1354 }
1355
1356 /**
1357  * spansion_read_cr_quad_enable() - set QE bit in Configuration Register.
1358  * @nor:        pointer to a 'struct spi_nor'
1359  *
1360  * Set the Quad Enable (QE) bit in the Configuration Register.
1361  * This function should be used with QSPI memories supporting the Read
1362  * Configuration Register (35h) instruction.
1363  *
1364  * bit 1 of the Configuration Register is the QE bit for Spansion like QSPI
1365  * memories.
1366  *
1367  * Return: 0 on success, -errno otherwise.
1368  */
1369 static int spansion_read_cr_quad_enable(struct spi_nor *nor)
1370 {
1371         u8 sr_cr[2];
1372         int ret;
1373
1374         /* Check current Quad Enable bit value. */
1375         ret = read_cr(nor);
1376         if (ret < 0) {
1377                 dev_dbg(dev, "error while reading configuration register\n");
1378                 return -EINVAL;
1379         }
1380
1381         if (ret & CR_QUAD_EN_SPAN)
1382                 return 0;
1383
1384         sr_cr[1] = ret | CR_QUAD_EN_SPAN;
1385
1386         /* Keep the current value of the Status Register. */
1387         ret = read_sr(nor);
1388         if (ret < 0) {
1389                 dev_dbg(dev, "error while reading status register\n");
1390                 return -EINVAL;
1391         }
1392         sr_cr[0] = ret;
1393
1394         ret = write_sr_cr(nor, sr_cr);
1395         if (ret)
1396                 return ret;
1397
1398         /* Read back and check it. */
1399         ret = read_cr(nor);
1400         if (!(ret > 0 && (ret & CR_QUAD_EN_SPAN))) {
1401                 dev_dbg(nor->dev, "Spansion Quad bit not set\n");
1402                 return -EINVAL;
1403         }
1404
1405         return 0;
1406 }
1407
1408 #if CONFIG_IS_ENABLED(SPI_FLASH_SFDP_SUPPORT)
1409 /**
1410  * spansion_no_read_cr_quad_enable() - set QE bit in Configuration Register.
1411  * @nor:        pointer to a 'struct spi_nor'
1412  *
1413  * Set the Quad Enable (QE) bit in the Configuration Register.
1414  * This function should be used with QSPI memories not supporting the Read
1415  * Configuration Register (35h) instruction.
1416  *
1417  * bit 1 of the Configuration Register is the QE bit for Spansion like QSPI
1418  * memories.
1419  *
1420  * Return: 0 on success, -errno otherwise.
1421  */
1422 static int spansion_no_read_cr_quad_enable(struct spi_nor *nor)
1423 {
1424         u8 sr_cr[2];
1425         int ret;
1426
1427         /* Keep the current value of the Status Register. */
1428         ret = read_sr(nor);
1429         if (ret < 0) {
1430                 dev_dbg(nor->dev, "error while reading status register\n");
1431                 return -EINVAL;
1432         }
1433         sr_cr[0] = ret;
1434         sr_cr[1] = CR_QUAD_EN_SPAN;
1435
1436         return write_sr_cr(nor, sr_cr);
1437 }
1438
1439 #endif /* CONFIG_SPI_FLASH_SFDP_SUPPORT */
1440 #endif /* CONFIG_SPI_FLASH_SPANSION */
1441
1442 struct spi_nor_read_command {
1443         u8                      num_mode_clocks;
1444         u8                      num_wait_states;
1445         u8                      opcode;
1446         enum spi_nor_protocol   proto;
1447 };
1448
1449 struct spi_nor_pp_command {
1450         u8                      opcode;
1451         enum spi_nor_protocol   proto;
1452 };
1453
1454 enum spi_nor_read_command_index {
1455         SNOR_CMD_READ,
1456         SNOR_CMD_READ_FAST,
1457         SNOR_CMD_READ_1_1_1_DTR,
1458
1459         /* Dual SPI */
1460         SNOR_CMD_READ_1_1_2,
1461         SNOR_CMD_READ_1_2_2,
1462         SNOR_CMD_READ_2_2_2,
1463         SNOR_CMD_READ_1_2_2_DTR,
1464
1465         /* Quad SPI */
1466         SNOR_CMD_READ_1_1_4,
1467         SNOR_CMD_READ_1_4_4,
1468         SNOR_CMD_READ_4_4_4,
1469         SNOR_CMD_READ_1_4_4_DTR,
1470
1471         /* Octo SPI */
1472         SNOR_CMD_READ_1_1_8,
1473         SNOR_CMD_READ_1_8_8,
1474         SNOR_CMD_READ_8_8_8,
1475         SNOR_CMD_READ_1_8_8_DTR,
1476
1477         SNOR_CMD_READ_MAX
1478 };
1479
1480 enum spi_nor_pp_command_index {
1481         SNOR_CMD_PP,
1482
1483         /* Quad SPI */
1484         SNOR_CMD_PP_1_1_4,
1485         SNOR_CMD_PP_1_4_4,
1486         SNOR_CMD_PP_4_4_4,
1487
1488         /* Octo SPI */
1489         SNOR_CMD_PP_1_1_8,
1490         SNOR_CMD_PP_1_8_8,
1491         SNOR_CMD_PP_8_8_8,
1492
1493         SNOR_CMD_PP_MAX
1494 };
1495
1496 struct spi_nor_flash_parameter {
1497         u64                             size;
1498         u32                             page_size;
1499
1500         struct spi_nor_hwcaps           hwcaps;
1501         struct spi_nor_read_command     reads[SNOR_CMD_READ_MAX];
1502         struct spi_nor_pp_command       page_programs[SNOR_CMD_PP_MAX];
1503
1504         int (*quad_enable)(struct spi_nor *nor);
1505 };
1506
1507 static void
1508 spi_nor_set_read_settings(struct spi_nor_read_command *read,
1509                           u8 num_mode_clocks,
1510                           u8 num_wait_states,
1511                           u8 opcode,
1512                           enum spi_nor_protocol proto)
1513 {
1514         read->num_mode_clocks = num_mode_clocks;
1515         read->num_wait_states = num_wait_states;
1516         read->opcode = opcode;
1517         read->proto = proto;
1518 }
1519
1520 static void
1521 spi_nor_set_pp_settings(struct spi_nor_pp_command *pp,
1522                         u8 opcode,
1523                         enum spi_nor_protocol proto)
1524 {
1525         pp->opcode = opcode;
1526         pp->proto = proto;
1527 }
1528
1529 #if CONFIG_IS_ENABLED(SPI_FLASH_SFDP_SUPPORT)
1530 /*
1531  * Serial Flash Discoverable Parameters (SFDP) parsing.
1532  */
1533
1534 /**
1535  * spi_nor_read_sfdp() - read Serial Flash Discoverable Parameters.
1536  * @nor:        pointer to a 'struct spi_nor'
1537  * @addr:       offset in the SFDP area to start reading data from
1538  * @len:        number of bytes to read
1539  * @buf:        buffer where the SFDP data are copied into (dma-safe memory)
1540  *
1541  * Whatever the actual numbers of bytes for address and dummy cycles are
1542  * for (Fast) Read commands, the Read SFDP (5Ah) instruction is always
1543  * followed by a 3-byte address and 8 dummy clock cycles.
1544  *
1545  * Return: 0 on success, -errno otherwise.
1546  */
1547 static int spi_nor_read_sfdp(struct spi_nor *nor, u32 addr,
1548                              size_t len, void *buf)
1549 {
1550         u8 addr_width, read_opcode, read_dummy;
1551         int ret;
1552
1553         read_opcode = nor->read_opcode;
1554         addr_width = nor->addr_width;
1555         read_dummy = nor->read_dummy;
1556
1557         nor->read_opcode = SPINOR_OP_RDSFDP;
1558         nor->addr_width = 3;
1559         nor->read_dummy = 8;
1560
1561         while (len) {
1562                 ret = nor->read(nor, addr, len, (u8 *)buf);
1563                 if (!ret || ret > len) {
1564                         ret = -EIO;
1565                         goto read_err;
1566                 }
1567                 if (ret < 0)
1568                         goto read_err;
1569
1570                 buf += ret;
1571                 addr += ret;
1572                 len -= ret;
1573         }
1574         ret = 0;
1575
1576 read_err:
1577         nor->read_opcode = read_opcode;
1578         nor->addr_width = addr_width;
1579         nor->read_dummy = read_dummy;
1580
1581         return ret;
1582 }
1583
1584 struct sfdp_parameter_header {
1585         u8              id_lsb;
1586         u8              minor;
1587         u8              major;
1588         u8              length; /* in double words */
1589         u8              parameter_table_pointer[3]; /* byte address */
1590         u8              id_msb;
1591 };
1592
1593 #define SFDP_PARAM_HEADER_ID(p) (((p)->id_msb << 8) | (p)->id_lsb)
1594 #define SFDP_PARAM_HEADER_PTP(p) \
1595         (((p)->parameter_table_pointer[2] << 16) | \
1596          ((p)->parameter_table_pointer[1] <<  8) | \
1597          ((p)->parameter_table_pointer[0] <<  0))
1598
1599 #define SFDP_BFPT_ID            0xff00  /* Basic Flash Parameter Table */
1600 #define SFDP_SECTOR_MAP_ID      0xff81  /* Sector Map Table */
1601 #define SFDP_SST_ID             0x01bf  /* Manufacturer specific Table */
1602
1603 #define SFDP_SIGNATURE          0x50444653U
1604 #define SFDP_JESD216_MAJOR      1
1605 #define SFDP_JESD216_MINOR      0
1606 #define SFDP_JESD216A_MINOR     5
1607 #define SFDP_JESD216B_MINOR     6
1608
1609 struct sfdp_header {
1610         u32             signature; /* Ox50444653U <=> "SFDP" */
1611         u8              minor;
1612         u8              major;
1613         u8              nph; /* 0-base number of parameter headers */
1614         u8              unused;
1615
1616         /* Basic Flash Parameter Table. */
1617         struct sfdp_parameter_header    bfpt_header;
1618 };
1619
1620 /* Basic Flash Parameter Table */
1621
1622 /*
1623  * JESD216 rev B defines a Basic Flash Parameter Table of 16 DWORDs.
1624  * They are indexed from 1 but C arrays are indexed from 0.
1625  */
1626 #define BFPT_DWORD(i)           ((i) - 1)
1627 #define BFPT_DWORD_MAX          16
1628
1629 /* The first version of JESB216 defined only 9 DWORDs. */
1630 #define BFPT_DWORD_MAX_JESD216                  9
1631
1632 /* 1st DWORD. */
1633 #define BFPT_DWORD1_FAST_READ_1_1_2             BIT(16)
1634 #define BFPT_DWORD1_ADDRESS_BYTES_MASK          GENMASK(18, 17)
1635 #define BFPT_DWORD1_ADDRESS_BYTES_3_ONLY        (0x0UL << 17)
1636 #define BFPT_DWORD1_ADDRESS_BYTES_3_OR_4        (0x1UL << 17)
1637 #define BFPT_DWORD1_ADDRESS_BYTES_4_ONLY        (0x2UL << 17)
1638 #define BFPT_DWORD1_DTR                         BIT(19)
1639 #define BFPT_DWORD1_FAST_READ_1_2_2             BIT(20)
1640 #define BFPT_DWORD1_FAST_READ_1_4_4             BIT(21)
1641 #define BFPT_DWORD1_FAST_READ_1_1_4             BIT(22)
1642
1643 /* 5th DWORD. */
1644 #define BFPT_DWORD5_FAST_READ_2_2_2             BIT(0)
1645 #define BFPT_DWORD5_FAST_READ_4_4_4             BIT(4)
1646
1647 /* 11th DWORD. */
1648 #define BFPT_DWORD11_PAGE_SIZE_SHIFT            4
1649 #define BFPT_DWORD11_PAGE_SIZE_MASK             GENMASK(7, 4)
1650
1651 /* 15th DWORD. */
1652
1653 /*
1654  * (from JESD216 rev B)
1655  * Quad Enable Requirements (QER):
1656  * - 000b: Device does not have a QE bit. Device detects 1-1-4 and 1-4-4
1657  *         reads based on instruction. DQ3/HOLD# functions are hold during
1658  *         instruction phase.
1659  * - 001b: QE is bit 1 of status register 2. It is set via Write Status with
1660  *         two data bytes where bit 1 of the second byte is one.
1661  *         [...]
1662  *         Writing only one byte to the status register has the side-effect of
1663  *         clearing status register 2, including the QE bit. The 100b code is
1664  *         used if writing one byte to the status register does not modify
1665  *         status register 2.
1666  * - 010b: QE is bit 6 of status register 1. It is set via Write Status with
1667  *         one data byte where bit 6 is one.
1668  *         [...]
1669  * - 011b: QE is bit 7 of status register 2. It is set via Write status
1670  *         register 2 instruction 3Eh with one data byte where bit 7 is one.
1671  *         [...]
1672  *         The status register 2 is read using instruction 3Fh.
1673  * - 100b: QE is bit 1 of status register 2. It is set via Write Status with
1674  *         two data bytes where bit 1 of the second byte is one.
1675  *         [...]
1676  *         In contrast to the 001b code, writing one byte to the status
1677  *         register does not modify status register 2.
1678  * - 101b: QE is bit 1 of status register 2. Status register 1 is read using
1679  *         Read Status instruction 05h. Status register2 is read using
1680  *         instruction 35h. QE is set via Writ Status instruction 01h with
1681  *         two data bytes where bit 1 of the second byte is one.
1682  *         [...]
1683  */
1684 #define BFPT_DWORD15_QER_MASK                   GENMASK(22, 20)
1685 #define BFPT_DWORD15_QER_NONE                   (0x0UL << 20) /* Micron */
1686 #define BFPT_DWORD15_QER_SR2_BIT1_BUGGY         (0x1UL << 20)
1687 #define BFPT_DWORD15_QER_SR1_BIT6               (0x2UL << 20) /* Macronix */
1688 #define BFPT_DWORD15_QER_SR2_BIT7               (0x3UL << 20)
1689 #define BFPT_DWORD15_QER_SR2_BIT1_NO_RD         (0x4UL << 20)
1690 #define BFPT_DWORD15_QER_SR2_BIT1               (0x5UL << 20) /* Spansion */
1691
1692 struct sfdp_bfpt {
1693         u32     dwords[BFPT_DWORD_MAX];
1694 };
1695
1696 /* Fast Read settings. */
1697
1698 static void
1699 spi_nor_set_read_settings_from_bfpt(struct spi_nor_read_command *read,
1700                                     u16 half,
1701                                     enum spi_nor_protocol proto)
1702 {
1703         read->num_mode_clocks = (half >> 5) & 0x07;
1704         read->num_wait_states = (half >> 0) & 0x1f;
1705         read->opcode = (half >> 8) & 0xff;
1706         read->proto = proto;
1707 }
1708
1709 struct sfdp_bfpt_read {
1710         /* The Fast Read x-y-z hardware capability in params->hwcaps.mask. */
1711         u32                     hwcaps;
1712
1713         /*
1714          * The <supported_bit> bit in <supported_dword> BFPT DWORD tells us
1715          * whether the Fast Read x-y-z command is supported.
1716          */
1717         u32                     supported_dword;
1718         u32                     supported_bit;
1719
1720         /*
1721          * The half-word at offset <setting_shift> in <setting_dword> BFPT DWORD
1722          * encodes the op code, the number of mode clocks and the number of wait
1723          * states to be used by Fast Read x-y-z command.
1724          */
1725         u32                     settings_dword;
1726         u32                     settings_shift;
1727
1728         /* The SPI protocol for this Fast Read x-y-z command. */
1729         enum spi_nor_protocol   proto;
1730 };
1731
1732 static const struct sfdp_bfpt_read sfdp_bfpt_reads[] = {
1733         /* Fast Read 1-1-2 */
1734         {
1735                 SNOR_HWCAPS_READ_1_1_2,
1736                 BFPT_DWORD(1), BIT(16), /* Supported bit */
1737                 BFPT_DWORD(4), 0,       /* Settings */
1738                 SNOR_PROTO_1_1_2,
1739         },
1740
1741         /* Fast Read 1-2-2 */
1742         {
1743                 SNOR_HWCAPS_READ_1_2_2,
1744                 BFPT_DWORD(1), BIT(20), /* Supported bit */
1745                 BFPT_DWORD(4), 16,      /* Settings */
1746                 SNOR_PROTO_1_2_2,
1747         },
1748
1749         /* Fast Read 2-2-2 */
1750         {
1751                 SNOR_HWCAPS_READ_2_2_2,
1752                 BFPT_DWORD(5),  BIT(0), /* Supported bit */
1753                 BFPT_DWORD(6), 16,      /* Settings */
1754                 SNOR_PROTO_2_2_2,
1755         },
1756
1757         /* Fast Read 1-1-4 */
1758         {
1759                 SNOR_HWCAPS_READ_1_1_4,
1760                 BFPT_DWORD(1), BIT(22), /* Supported bit */
1761                 BFPT_DWORD(3), 16,      /* Settings */
1762                 SNOR_PROTO_1_1_4,
1763         },
1764
1765         /* Fast Read 1-4-4 */
1766         {
1767                 SNOR_HWCAPS_READ_1_4_4,
1768                 BFPT_DWORD(1), BIT(21), /* Supported bit */
1769                 BFPT_DWORD(3), 0,       /* Settings */
1770                 SNOR_PROTO_1_4_4,
1771         },
1772
1773         /* Fast Read 4-4-4 */
1774         {
1775                 SNOR_HWCAPS_READ_4_4_4,
1776                 BFPT_DWORD(5), BIT(4),  /* Supported bit */
1777                 BFPT_DWORD(7), 16,      /* Settings */
1778                 SNOR_PROTO_4_4_4,
1779         },
1780 };
1781
1782 struct sfdp_bfpt_erase {
1783         /*
1784          * The half-word at offset <shift> in DWORD <dwoard> encodes the
1785          * op code and erase sector size to be used by Sector Erase commands.
1786          */
1787         u32                     dword;
1788         u32                     shift;
1789 };
1790
1791 static const struct sfdp_bfpt_erase sfdp_bfpt_erases[] = {
1792         /* Erase Type 1 in DWORD8 bits[15:0] */
1793         {BFPT_DWORD(8), 0},
1794
1795         /* Erase Type 2 in DWORD8 bits[31:16] */
1796         {BFPT_DWORD(8), 16},
1797
1798         /* Erase Type 3 in DWORD9 bits[15:0] */
1799         {BFPT_DWORD(9), 0},
1800
1801         /* Erase Type 4 in DWORD9 bits[31:16] */
1802         {BFPT_DWORD(9), 16},
1803 };
1804
1805 static int spi_nor_hwcaps_read2cmd(u32 hwcaps);
1806
1807 /**
1808  * spi_nor_parse_bfpt() - read and parse the Basic Flash Parameter Table.
1809  * @nor:                pointer to a 'struct spi_nor'
1810  * @bfpt_header:        pointer to the 'struct sfdp_parameter_header' describing
1811  *                      the Basic Flash Parameter Table length and version
1812  * @params:             pointer to the 'struct spi_nor_flash_parameter' to be
1813  *                      filled
1814  *
1815  * The Basic Flash Parameter Table is the main and only mandatory table as
1816  * defined by the SFDP (JESD216) specification.
1817  * It provides us with the total size (memory density) of the data array and
1818  * the number of address bytes for Fast Read, Page Program and Sector Erase
1819  * commands.
1820  * For Fast READ commands, it also gives the number of mode clock cycles and
1821  * wait states (regrouped in the number of dummy clock cycles) for each
1822  * supported instruction op code.
1823  * For Page Program, the page size is now available since JESD216 rev A, however
1824  * the supported instruction op codes are still not provided.
1825  * For Sector Erase commands, this table stores the supported instruction op
1826  * codes and the associated sector sizes.
1827  * Finally, the Quad Enable Requirements (QER) are also available since JESD216
1828  * rev A. The QER bits encode the manufacturer dependent procedure to be
1829  * executed to set the Quad Enable (QE) bit in some internal register of the
1830  * Quad SPI memory. Indeed the QE bit, when it exists, must be set before
1831  * sending any Quad SPI command to the memory. Actually, setting the QE bit
1832  * tells the memory to reassign its WP# and HOLD#/RESET# pins to functions IO2
1833  * and IO3 hence enabling 4 (Quad) I/O lines.
1834  *
1835  * Return: 0 on success, -errno otherwise.
1836  */
1837 static int spi_nor_parse_bfpt(struct spi_nor *nor,
1838                               const struct sfdp_parameter_header *bfpt_header,
1839                               struct spi_nor_flash_parameter *params)
1840 {
1841         struct mtd_info *mtd = &nor->mtd;
1842         struct sfdp_bfpt bfpt;
1843         size_t len;
1844         int i, cmd, err;
1845         u32 addr;
1846         u16 half;
1847
1848         /* JESD216 Basic Flash Parameter Table length is at least 9 DWORDs. */
1849         if (bfpt_header->length < BFPT_DWORD_MAX_JESD216)
1850                 return -EINVAL;
1851
1852         /* Read the Basic Flash Parameter Table. */
1853         len = min_t(size_t, sizeof(bfpt),
1854                     bfpt_header->length * sizeof(u32));
1855         addr = SFDP_PARAM_HEADER_PTP(bfpt_header);
1856         memset(&bfpt, 0, sizeof(bfpt));
1857         err = spi_nor_read_sfdp(nor,  addr, len, &bfpt);
1858         if (err < 0)
1859                 return err;
1860
1861         /* Fix endianness of the BFPT DWORDs. */
1862         for (i = 0; i < BFPT_DWORD_MAX; i++)
1863                 bfpt.dwords[i] = le32_to_cpu(bfpt.dwords[i]);
1864
1865         /* Number of address bytes. */
1866         switch (bfpt.dwords[BFPT_DWORD(1)] & BFPT_DWORD1_ADDRESS_BYTES_MASK) {
1867         case BFPT_DWORD1_ADDRESS_BYTES_3_ONLY:
1868                 nor->addr_width = 3;
1869                 break;
1870
1871         case BFPT_DWORD1_ADDRESS_BYTES_4_ONLY:
1872                 nor->addr_width = 4;
1873                 break;
1874
1875         default:
1876                 break;
1877         }
1878
1879         /* Flash Memory Density (in bits). */
1880         params->size = bfpt.dwords[BFPT_DWORD(2)];
1881         if (params->size & BIT(31)) {
1882                 params->size &= ~BIT(31);
1883
1884                 /*
1885                  * Prevent overflows on params->size. Anyway, a NOR of 2^64
1886                  * bits is unlikely to exist so this error probably means
1887                  * the BFPT we are reading is corrupted/wrong.
1888                  */
1889                 if (params->size > 63)
1890                         return -EINVAL;
1891
1892                 params->size = 1ULL << params->size;
1893         } else {
1894                 params->size++;
1895         }
1896         params->size >>= 3; /* Convert to bytes. */
1897
1898         /* Fast Read settings. */
1899         for (i = 0; i < ARRAY_SIZE(sfdp_bfpt_reads); i++) {
1900                 const struct sfdp_bfpt_read *rd = &sfdp_bfpt_reads[i];
1901                 struct spi_nor_read_command *read;
1902
1903                 if (!(bfpt.dwords[rd->supported_dword] & rd->supported_bit)) {
1904                         params->hwcaps.mask &= ~rd->hwcaps;
1905                         continue;
1906                 }
1907
1908                 params->hwcaps.mask |= rd->hwcaps;
1909                 cmd = spi_nor_hwcaps_read2cmd(rd->hwcaps);
1910                 read = &params->reads[cmd];
1911                 half = bfpt.dwords[rd->settings_dword] >> rd->settings_shift;
1912                 spi_nor_set_read_settings_from_bfpt(read, half, rd->proto);
1913         }
1914
1915         /* Sector Erase settings. */
1916         for (i = 0; i < ARRAY_SIZE(sfdp_bfpt_erases); i++) {
1917                 const struct sfdp_bfpt_erase *er = &sfdp_bfpt_erases[i];
1918                 u32 erasesize;
1919                 u8 opcode;
1920
1921                 half = bfpt.dwords[er->dword] >> er->shift;
1922                 erasesize = half & 0xff;
1923
1924                 /* erasesize == 0 means this Erase Type is not supported. */
1925                 if (!erasesize)
1926                         continue;
1927
1928                 erasesize = 1U << erasesize;
1929                 opcode = (half >> 8) & 0xff;
1930 #ifdef CONFIG_SPI_FLASH_USE_4K_SECTORS
1931                 if (erasesize == SZ_4K) {
1932                         nor->erase_opcode = opcode;
1933                         mtd->erasesize = erasesize;
1934                         break;
1935                 }
1936 #endif
1937                 if (!mtd->erasesize || mtd->erasesize < erasesize) {
1938                         nor->erase_opcode = opcode;
1939                         mtd->erasesize = erasesize;
1940                 }
1941         }
1942
1943         /* Stop here if not JESD216 rev A or later. */
1944         if (bfpt_header->length < BFPT_DWORD_MAX)
1945                 return 0;
1946
1947         /* Page size: this field specifies 'N' so the page size = 2^N bytes. */
1948         params->page_size = bfpt.dwords[BFPT_DWORD(11)];
1949         params->page_size &= BFPT_DWORD11_PAGE_SIZE_MASK;
1950         params->page_size >>= BFPT_DWORD11_PAGE_SIZE_SHIFT;
1951         params->page_size = 1U << params->page_size;
1952
1953         /* Quad Enable Requirements. */
1954         switch (bfpt.dwords[BFPT_DWORD(15)] & BFPT_DWORD15_QER_MASK) {
1955         case BFPT_DWORD15_QER_NONE:
1956                 params->quad_enable = NULL;
1957                 break;
1958 #if defined(CONFIG_SPI_FLASH_SPANSION) || defined(CONFIG_SPI_FLASH_WINBOND)
1959         case BFPT_DWORD15_QER_SR2_BIT1_BUGGY:
1960         case BFPT_DWORD15_QER_SR2_BIT1_NO_RD:
1961                 params->quad_enable = spansion_no_read_cr_quad_enable;
1962                 break;
1963 #endif
1964 #ifdef CONFIG_SPI_FLASH_MACRONIX
1965         case BFPT_DWORD15_QER_SR1_BIT6:
1966                 params->quad_enable = macronix_quad_enable;
1967                 break;
1968 #endif
1969 #if defined(CONFIG_SPI_FLASH_SPANSION) || defined(CONFIG_SPI_FLASH_WINBOND)
1970         case BFPT_DWORD15_QER_SR2_BIT1:
1971                 params->quad_enable = spansion_read_cr_quad_enable;
1972                 break;
1973 #endif
1974         default:
1975                 return -EINVAL;
1976         }
1977
1978         return 0;
1979 }
1980
1981 /**
1982  * spi_nor_parse_microchip_sfdp() - parse the Microchip manufacturer specific
1983  * SFDP table.
1984  * @nor:                pointer to a 'struct spi_nor'.
1985  * @param_header:       pointer to the SFDP parameter header.
1986  *
1987  * Return: 0 on success, -errno otherwise.
1988  */
1989 static int
1990 spi_nor_parse_microchip_sfdp(struct spi_nor *nor,
1991                              const struct sfdp_parameter_header *param_header)
1992 {
1993         size_t size;
1994         u32 addr;
1995         int ret;
1996
1997         size = param_header->length * sizeof(u32);
1998         addr = SFDP_PARAM_HEADER_PTP(param_header);
1999
2000         nor->manufacturer_sfdp = devm_kmalloc(nor->dev, size, GFP_KERNEL);
2001         if (!nor->manufacturer_sfdp)
2002                 return -ENOMEM;
2003
2004         ret = spi_nor_read_sfdp(nor, addr, size, nor->manufacturer_sfdp);
2005
2006         return ret;
2007 }
2008
2009 /**
2010  * spi_nor_parse_sfdp() - parse the Serial Flash Discoverable Parameters.
2011  * @nor:                pointer to a 'struct spi_nor'
2012  * @params:             pointer to the 'struct spi_nor_flash_parameter' to be
2013  *                      filled
2014  *
2015  * The Serial Flash Discoverable Parameters are described by the JEDEC JESD216
2016  * specification. This is a standard which tends to supported by almost all
2017  * (Q)SPI memory manufacturers. Those hard-coded tables allow us to learn at
2018  * runtime the main parameters needed to perform basic SPI flash operations such
2019  * as Fast Read, Page Program or Sector Erase commands.
2020  *
2021  * Return: 0 on success, -errno otherwise.
2022  */
2023 static int spi_nor_parse_sfdp(struct spi_nor *nor,
2024                               struct spi_nor_flash_parameter *params)
2025 {
2026         const struct sfdp_parameter_header *param_header, *bfpt_header;
2027         struct sfdp_parameter_header *param_headers = NULL;
2028         struct sfdp_header header;
2029         size_t psize;
2030         int i, err;
2031
2032         /* Get the SFDP header. */
2033         err = spi_nor_read_sfdp(nor, 0, sizeof(header), &header);
2034         if (err < 0)
2035                 return err;
2036
2037         /* Check the SFDP header version. */
2038         if (le32_to_cpu(header.signature) != SFDP_SIGNATURE ||
2039             header.major != SFDP_JESD216_MAJOR)
2040                 return -EINVAL;
2041
2042         /*
2043          * Verify that the first and only mandatory parameter header is a
2044          * Basic Flash Parameter Table header as specified in JESD216.
2045          */
2046         bfpt_header = &header.bfpt_header;
2047         if (SFDP_PARAM_HEADER_ID(bfpt_header) != SFDP_BFPT_ID ||
2048             bfpt_header->major != SFDP_JESD216_MAJOR)
2049                 return -EINVAL;
2050
2051         /*
2052          * Allocate memory then read all parameter headers with a single
2053          * Read SFDP command. These parameter headers will actually be parsed
2054          * twice: a first time to get the latest revision of the basic flash
2055          * parameter table, then a second time to handle the supported optional
2056          * tables.
2057          * Hence we read the parameter headers once for all to reduce the
2058          * processing time. Also we use kmalloc() instead of devm_kmalloc()
2059          * because we don't need to keep these parameter headers: the allocated
2060          * memory is always released with kfree() before exiting this function.
2061          */
2062         if (header.nph) {
2063                 psize = header.nph * sizeof(*param_headers);
2064
2065                 param_headers = kmalloc(psize, GFP_KERNEL);
2066                 if (!param_headers)
2067                         return -ENOMEM;
2068
2069                 err = spi_nor_read_sfdp(nor, sizeof(header),
2070                                         psize, param_headers);
2071                 if (err < 0) {
2072                         dev_err(dev, "failed to read SFDP parameter headers\n");
2073                         goto exit;
2074                 }
2075         }
2076
2077         /*
2078          * Check other parameter headers to get the latest revision of
2079          * the basic flash parameter table.
2080          */
2081         for (i = 0; i < header.nph; i++) {
2082                 param_header = &param_headers[i];
2083
2084                 if (SFDP_PARAM_HEADER_ID(param_header) == SFDP_BFPT_ID &&
2085                     param_header->major == SFDP_JESD216_MAJOR &&
2086                     (param_header->minor > bfpt_header->minor ||
2087                      (param_header->minor == bfpt_header->minor &&
2088                       param_header->length > bfpt_header->length)))
2089                         bfpt_header = param_header;
2090         }
2091
2092         err = spi_nor_parse_bfpt(nor, bfpt_header, params);
2093         if (err)
2094                 goto exit;
2095
2096         /* Parse other parameter headers. */
2097         for (i = 0; i < header.nph; i++) {
2098                 param_header = &param_headers[i];
2099
2100                 switch (SFDP_PARAM_HEADER_ID(param_header)) {
2101                 case SFDP_SECTOR_MAP_ID:
2102                         dev_info(dev, "non-uniform erase sector maps are not supported yet.\n");
2103                         break;
2104
2105                 case SFDP_SST_ID:
2106                         err = spi_nor_parse_microchip_sfdp(nor, param_header);
2107                         break;
2108
2109                 default:
2110                         break;
2111                 }
2112
2113                 if (err) {
2114                         dev_warn(dev, "Failed to parse optional parameter table: %04x\n",
2115                                  SFDP_PARAM_HEADER_ID(param_header));
2116                         /*
2117                          * Let's not drop all information we extracted so far
2118                          * if optional table parsers fail. In case of failing,
2119                          * each optional parser is responsible to roll back to
2120                          * the previously known spi_nor data.
2121                          */
2122                         err = 0;
2123                 }
2124         }
2125
2126 exit:
2127         kfree(param_headers);
2128         return err;
2129 }
2130 #else
2131 static int spi_nor_parse_sfdp(struct spi_nor *nor,
2132                               struct spi_nor_flash_parameter *params)
2133 {
2134         return -EINVAL;
2135 }
2136 #endif /* SPI_FLASH_SFDP_SUPPORT */
2137
2138 static int spi_nor_init_params(struct spi_nor *nor,
2139                                const struct flash_info *info,
2140                                struct spi_nor_flash_parameter *params)
2141 {
2142         /* Set legacy flash parameters as default. */
2143         memset(params, 0, sizeof(*params));
2144
2145         /* Set SPI NOR sizes. */
2146         params->size = info->sector_size * info->n_sectors;
2147         params->page_size = info->page_size;
2148
2149         /* (Fast) Read settings. */
2150         params->hwcaps.mask |= SNOR_HWCAPS_READ;
2151         spi_nor_set_read_settings(&params->reads[SNOR_CMD_READ],
2152                                   0, 0, SPINOR_OP_READ,
2153                                   SNOR_PROTO_1_1_1);
2154
2155         if (!(info->flags & SPI_NOR_NO_FR)) {
2156                 params->hwcaps.mask |= SNOR_HWCAPS_READ_FAST;
2157                 spi_nor_set_read_settings(&params->reads[SNOR_CMD_READ_FAST],
2158                                           0, 8, SPINOR_OP_READ_FAST,
2159                                           SNOR_PROTO_1_1_1);
2160         }
2161
2162         if (info->flags & SPI_NOR_DUAL_READ) {
2163                 params->hwcaps.mask |= SNOR_HWCAPS_READ_1_1_2;
2164                 spi_nor_set_read_settings(&params->reads[SNOR_CMD_READ_1_1_2],
2165                                           0, 8, SPINOR_OP_READ_1_1_2,
2166                                           SNOR_PROTO_1_1_2);
2167         }
2168
2169         if (info->flags & SPI_NOR_QUAD_READ) {
2170                 params->hwcaps.mask |= SNOR_HWCAPS_READ_1_1_4;
2171                 spi_nor_set_read_settings(&params->reads[SNOR_CMD_READ_1_1_4],
2172                                           0, 8, SPINOR_OP_READ_1_1_4,
2173                                           SNOR_PROTO_1_1_4);
2174         }
2175
2176         if (info->flags & SPI_NOR_OCTAL_READ) {
2177                 params->hwcaps.mask |= SNOR_HWCAPS_READ_1_1_8;
2178                 spi_nor_set_read_settings(&params->reads[SNOR_CMD_READ_1_1_8],
2179                                           0, 8, SPINOR_OP_READ_1_1_8,
2180                                           SNOR_PROTO_1_1_8);
2181         }
2182
2183         /* Page Program settings. */
2184         params->hwcaps.mask |= SNOR_HWCAPS_PP;
2185         spi_nor_set_pp_settings(&params->page_programs[SNOR_CMD_PP],
2186                                 SPINOR_OP_PP, SNOR_PROTO_1_1_1);
2187
2188         if (info->flags & SPI_NOR_QUAD_READ) {
2189                 params->hwcaps.mask |= SNOR_HWCAPS_PP_1_1_4;
2190                 spi_nor_set_pp_settings(&params->page_programs[SNOR_CMD_PP_1_1_4],
2191                                         SPINOR_OP_PP_1_1_4, SNOR_PROTO_1_1_4);
2192         }
2193
2194         /* Select the procedure to set the Quad Enable bit. */
2195         if (params->hwcaps.mask & (SNOR_HWCAPS_READ_QUAD |
2196                                    SNOR_HWCAPS_PP_QUAD)) {
2197                 switch (JEDEC_MFR(info)) {
2198 #ifdef CONFIG_SPI_FLASH_MACRONIX
2199                 case SNOR_MFR_MACRONIX:
2200                         params->quad_enable = macronix_quad_enable;
2201                         break;
2202 #endif
2203                 case SNOR_MFR_ST:
2204                 case SNOR_MFR_MICRON:
2205                         break;
2206
2207                 default:
2208 #if defined(CONFIG_SPI_FLASH_SPANSION) || defined(CONFIG_SPI_FLASH_WINBOND)
2209                         /* Kept only for backward compatibility purpose. */
2210                         params->quad_enable = spansion_read_cr_quad_enable;
2211 #endif
2212                         break;
2213                 }
2214         }
2215
2216         /* Override the parameters with data read from SFDP tables. */
2217         nor->addr_width = 0;
2218         nor->mtd.erasesize = 0;
2219         if ((info->flags & (SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ)) &&
2220             !(info->flags & SPI_NOR_SKIP_SFDP)) {
2221                 struct spi_nor_flash_parameter sfdp_params;
2222
2223                 memcpy(&sfdp_params, params, sizeof(sfdp_params));
2224                 if (spi_nor_parse_sfdp(nor, &sfdp_params)) {
2225                         nor->addr_width = 0;
2226                         nor->mtd.erasesize = 0;
2227                 } else {
2228                         memcpy(params, &sfdp_params, sizeof(*params));
2229                 }
2230         }
2231
2232         return 0;
2233 }
2234
2235 static int spi_nor_hwcaps2cmd(u32 hwcaps, const int table[][2], size_t size)
2236 {
2237         size_t i;
2238
2239         for (i = 0; i < size; i++)
2240                 if (table[i][0] == (int)hwcaps)
2241                         return table[i][1];
2242
2243         return -EINVAL;
2244 }
2245
2246 static int spi_nor_hwcaps_read2cmd(u32 hwcaps)
2247 {
2248         static const int hwcaps_read2cmd[][2] = {
2249                 { SNOR_HWCAPS_READ,             SNOR_CMD_READ },
2250                 { SNOR_HWCAPS_READ_FAST,        SNOR_CMD_READ_FAST },
2251                 { SNOR_HWCAPS_READ_1_1_1_DTR,   SNOR_CMD_READ_1_1_1_DTR },
2252                 { SNOR_HWCAPS_READ_1_1_2,       SNOR_CMD_READ_1_1_2 },
2253                 { SNOR_HWCAPS_READ_1_2_2,       SNOR_CMD_READ_1_2_2 },
2254                 { SNOR_HWCAPS_READ_2_2_2,       SNOR_CMD_READ_2_2_2 },
2255                 { SNOR_HWCAPS_READ_1_2_2_DTR,   SNOR_CMD_READ_1_2_2_DTR },
2256                 { SNOR_HWCAPS_READ_1_1_4,       SNOR_CMD_READ_1_1_4 },
2257                 { SNOR_HWCAPS_READ_1_4_4,       SNOR_CMD_READ_1_4_4 },
2258                 { SNOR_HWCAPS_READ_4_4_4,       SNOR_CMD_READ_4_4_4 },
2259                 { SNOR_HWCAPS_READ_1_4_4_DTR,   SNOR_CMD_READ_1_4_4_DTR },
2260                 { SNOR_HWCAPS_READ_1_1_8,       SNOR_CMD_READ_1_1_8 },
2261                 { SNOR_HWCAPS_READ_1_8_8,       SNOR_CMD_READ_1_8_8 },
2262                 { SNOR_HWCAPS_READ_8_8_8,       SNOR_CMD_READ_8_8_8 },
2263                 { SNOR_HWCAPS_READ_1_8_8_DTR,   SNOR_CMD_READ_1_8_8_DTR },
2264         };
2265
2266         return spi_nor_hwcaps2cmd(hwcaps, hwcaps_read2cmd,
2267                                   ARRAY_SIZE(hwcaps_read2cmd));
2268 }
2269
2270 static int spi_nor_hwcaps_pp2cmd(u32 hwcaps)
2271 {
2272         static const int hwcaps_pp2cmd[][2] = {
2273                 { SNOR_HWCAPS_PP,               SNOR_CMD_PP },
2274                 { SNOR_HWCAPS_PP_1_1_4,         SNOR_CMD_PP_1_1_4 },
2275                 { SNOR_HWCAPS_PP_1_4_4,         SNOR_CMD_PP_1_4_4 },
2276                 { SNOR_HWCAPS_PP_4_4_4,         SNOR_CMD_PP_4_4_4 },
2277                 { SNOR_HWCAPS_PP_1_1_8,         SNOR_CMD_PP_1_1_8 },
2278                 { SNOR_HWCAPS_PP_1_8_8,         SNOR_CMD_PP_1_8_8 },
2279                 { SNOR_HWCAPS_PP_8_8_8,         SNOR_CMD_PP_8_8_8 },
2280         };
2281
2282         return spi_nor_hwcaps2cmd(hwcaps, hwcaps_pp2cmd,
2283                                   ARRAY_SIZE(hwcaps_pp2cmd));
2284 }
2285
2286 static int spi_nor_select_read(struct spi_nor *nor,
2287                                const struct spi_nor_flash_parameter *params,
2288                                u32 shared_hwcaps)
2289 {
2290         int cmd, best_match = fls(shared_hwcaps & SNOR_HWCAPS_READ_MASK) - 1;
2291         const struct spi_nor_read_command *read;
2292
2293         if (best_match < 0)
2294                 return -EINVAL;
2295
2296         cmd = spi_nor_hwcaps_read2cmd(BIT(best_match));
2297         if (cmd < 0)
2298                 return -EINVAL;
2299
2300         read = &params->reads[cmd];
2301         nor->read_opcode = read->opcode;
2302         nor->read_proto = read->proto;
2303
2304         /*
2305          * In the spi-nor framework, we don't need to make the difference
2306          * between mode clock cycles and wait state clock cycles.
2307          * Indeed, the value of the mode clock cycles is used by a QSPI
2308          * flash memory to know whether it should enter or leave its 0-4-4
2309          * (Continuous Read / XIP) mode.
2310          * eXecution In Place is out of the scope of the mtd sub-system.
2311          * Hence we choose to merge both mode and wait state clock cycles
2312          * into the so called dummy clock cycles.
2313          */
2314         nor->read_dummy = read->num_mode_clocks + read->num_wait_states;
2315         return 0;
2316 }
2317
2318 static int spi_nor_select_pp(struct spi_nor *nor,
2319                              const struct spi_nor_flash_parameter *params,
2320                              u32 shared_hwcaps)
2321 {
2322         int cmd, best_match = fls(shared_hwcaps & SNOR_HWCAPS_PP_MASK) - 1;
2323         const struct spi_nor_pp_command *pp;
2324
2325         if (best_match < 0)
2326                 return -EINVAL;
2327
2328         cmd = spi_nor_hwcaps_pp2cmd(BIT(best_match));
2329         if (cmd < 0)
2330                 return -EINVAL;
2331
2332         pp = &params->page_programs[cmd];
2333         nor->program_opcode = pp->opcode;
2334         nor->write_proto = pp->proto;
2335         return 0;
2336 }
2337
2338 static int spi_nor_select_erase(struct spi_nor *nor,
2339                                 const struct flash_info *info)
2340 {
2341         struct mtd_info *mtd = &nor->mtd;
2342
2343         /* Do nothing if already configured from SFDP. */
2344         if (mtd->erasesize)
2345                 return 0;
2346
2347 #ifdef CONFIG_SPI_FLASH_USE_4K_SECTORS
2348         /* prefer "small sector" erase if possible */
2349         if (info->flags & SECT_4K) {
2350                 nor->erase_opcode = SPINOR_OP_BE_4K;
2351                 mtd->erasesize = 4096;
2352         } else if (info->flags & SECT_4K_PMC) {
2353                 nor->erase_opcode = SPINOR_OP_BE_4K_PMC;
2354                 mtd->erasesize = 4096;
2355         } else
2356 #endif
2357         {
2358                 nor->erase_opcode = SPINOR_OP_SE;
2359                 mtd->erasesize = info->sector_size;
2360         }
2361         return 0;
2362 }
2363
2364 static int spi_nor_setup(struct spi_nor *nor, const struct flash_info *info,
2365                          const struct spi_nor_flash_parameter *params,
2366                          const struct spi_nor_hwcaps *hwcaps)
2367 {
2368         u32 ignored_mask, shared_mask;
2369         bool enable_quad_io;
2370         int err;
2371
2372         /*
2373          * Keep only the hardware capabilities supported by both the SPI
2374          * controller and the SPI flash memory.
2375          */
2376         shared_mask = hwcaps->mask & params->hwcaps.mask;
2377
2378         /* SPI n-n-n protocols are not supported yet. */
2379         ignored_mask = (SNOR_HWCAPS_READ_2_2_2 |
2380                         SNOR_HWCAPS_READ_4_4_4 |
2381                         SNOR_HWCAPS_READ_8_8_8 |
2382                         SNOR_HWCAPS_PP_4_4_4 |
2383                         SNOR_HWCAPS_PP_8_8_8);
2384         if (shared_mask & ignored_mask) {
2385                 dev_dbg(nor->dev,
2386                         "SPI n-n-n protocols are not supported yet.\n");
2387                 shared_mask &= ~ignored_mask;
2388         }
2389
2390         /* Select the (Fast) Read command. */
2391         err = spi_nor_select_read(nor, params, shared_mask);
2392         if (err) {
2393                 dev_dbg(nor->dev,
2394                         "can't select read settings supported by both the SPI controller and memory.\n");
2395                 return err;
2396         }
2397
2398         /* Select the Page Program command. */
2399         err = spi_nor_select_pp(nor, params, shared_mask);
2400         if (err) {
2401                 dev_dbg(nor->dev,
2402                         "can't select write settings supported by both the SPI controller and memory.\n");
2403                 return err;
2404         }
2405
2406         /* Select the Sector Erase command. */
2407         err = spi_nor_select_erase(nor, info);
2408         if (err) {
2409                 dev_dbg(nor->dev,
2410                         "can't select erase settings supported by both the SPI controller and memory.\n");
2411                 return err;
2412         }
2413
2414         /* Enable Quad I/O if needed. */
2415         enable_quad_io = (spi_nor_get_protocol_width(nor->read_proto) == 4 ||
2416                           spi_nor_get_protocol_width(nor->write_proto) == 4);
2417         if (enable_quad_io && params->quad_enable)
2418                 nor->quad_enable = params->quad_enable;
2419         else
2420                 nor->quad_enable = NULL;
2421
2422         return 0;
2423 }
2424
2425 static int spi_nor_init(struct spi_nor *nor)
2426 {
2427         int err;
2428
2429         /*
2430          * Atmel, SST, Intel/Numonyx, and others serial NOR tend to power up
2431          * with the software protection bits set
2432          */
2433         if (JEDEC_MFR(nor->info) == SNOR_MFR_ATMEL ||
2434             JEDEC_MFR(nor->info) == SNOR_MFR_INTEL ||
2435             JEDEC_MFR(nor->info) == SNOR_MFR_SST ||
2436             nor->info->flags & SPI_NOR_HAS_LOCK) {
2437                 write_enable(nor);
2438                 write_sr(nor, 0);
2439                 spi_nor_wait_till_ready(nor);
2440         }
2441
2442         if (nor->quad_enable) {
2443                 err = nor->quad_enable(nor);
2444                 if (err) {
2445                         dev_dbg(nor->dev, "quad mode not supported\n");
2446                         return err;
2447                 }
2448         }
2449
2450         if (nor->addr_width == 4 &&
2451             (JEDEC_MFR(nor->info) != SNOR_MFR_SPANSION) &&
2452             !(nor->info->flags & SPI_NOR_4B_OPCODES)) {
2453                 /*
2454                  * If the RESET# pin isn't hooked up properly, or the system
2455                  * otherwise doesn't perform a reset command in the boot
2456                  * sequence, it's impossible to 100% protect against unexpected
2457                  * reboots (e.g., crashes). Warn the user (or hopefully, system
2458                  * designer) that this is bad.
2459                  */
2460                 if (nor->flags & SNOR_F_BROKEN_RESET)
2461                         printf("enabling reset hack; may not recover from unexpected reboots\n");
2462                 set_4byte(nor, nor->info, 1);
2463         }
2464
2465         return 0;
2466 }
2467
2468 int spi_nor_scan(struct spi_nor *nor)
2469 {
2470         struct spi_nor_flash_parameter params;
2471         const struct flash_info *info = NULL;
2472         struct mtd_info *mtd = &nor->mtd;
2473         struct spi_nor_hwcaps hwcaps = {
2474                 .mask = SNOR_HWCAPS_READ |
2475                         SNOR_HWCAPS_READ_FAST |
2476                         SNOR_HWCAPS_PP,
2477         };
2478         struct spi_slave *spi = nor->spi;
2479         int ret;
2480
2481         /* Reset SPI protocol for all commands. */
2482         nor->reg_proto = SNOR_PROTO_1_1_1;
2483         nor->read_proto = SNOR_PROTO_1_1_1;
2484         nor->write_proto = SNOR_PROTO_1_1_1;
2485         nor->read = spi_nor_read_data;
2486         nor->write = spi_nor_write_data;
2487         nor->read_reg = spi_nor_read_reg;
2488         nor->write_reg = spi_nor_write_reg;
2489
2490         if (spi->mode & SPI_RX_OCTAL) {
2491                 hwcaps.mask |= SNOR_HWCAPS_READ_1_1_8;
2492
2493                 if (spi->mode & SPI_TX_OCTAL)
2494                         hwcaps.mask |= (SNOR_HWCAPS_READ_1_8_8 |
2495                                         SNOR_HWCAPS_PP_1_1_8 |
2496                                         SNOR_HWCAPS_PP_1_8_8);
2497         } else if (spi->mode & SPI_RX_QUAD) {
2498                 hwcaps.mask |= SNOR_HWCAPS_READ_1_1_4;
2499
2500                 if (spi->mode & SPI_TX_QUAD)
2501                         hwcaps.mask |= (SNOR_HWCAPS_READ_1_4_4 |
2502                                         SNOR_HWCAPS_PP_1_1_4 |
2503                                         SNOR_HWCAPS_PP_1_4_4);
2504         } else if (spi->mode & SPI_RX_DUAL) {
2505                 hwcaps.mask |= SNOR_HWCAPS_READ_1_1_2;
2506
2507                 if (spi->mode & SPI_TX_DUAL)
2508                         hwcaps.mask |= SNOR_HWCAPS_READ_1_2_2;
2509         }
2510
2511         info = spi_nor_read_id(nor);
2512         if (IS_ERR_OR_NULL(info))
2513                 return -ENOENT;
2514         /* Parse the Serial Flash Discoverable Parameters table. */
2515         ret = spi_nor_init_params(nor, info, &params);
2516         if (ret)
2517                 return ret;
2518
2519         if (!mtd->name)
2520                 mtd->name = info->name;
2521         mtd->priv = nor;
2522         mtd->type = MTD_NORFLASH;
2523         mtd->writesize = 1;
2524         mtd->flags = MTD_CAP_NORFLASH;
2525         mtd->size = params.size;
2526         mtd->_erase = spi_nor_erase;
2527         mtd->_read = spi_nor_read;
2528
2529 #if defined(CONFIG_SPI_FLASH_STMICRO) || defined(CONFIG_SPI_FLASH_SST)
2530         /* NOR protection support for STmicro/Micron chips and similar */
2531         if (JEDEC_MFR(info) == SNOR_MFR_ST ||
2532             JEDEC_MFR(info) == SNOR_MFR_MICRON ||
2533             JEDEC_MFR(info) == SNOR_MFR_SST ||
2534                         info->flags & SPI_NOR_HAS_LOCK) {
2535                 nor->flash_lock = stm_lock;
2536                 nor->flash_unlock = stm_unlock;
2537                 nor->flash_is_locked = stm_is_locked;
2538         }
2539 #endif
2540
2541 #ifdef CONFIG_SPI_FLASH_SST
2542         /*
2543          * sst26 series block protection implementation differs from other
2544          * series.
2545          */
2546         if (info->flags & SPI_NOR_HAS_SST26LOCK) {
2547                 nor->flash_lock = sst26_lock;
2548                 nor->flash_unlock = sst26_unlock;
2549                 nor->flash_is_locked = sst26_is_locked;
2550         }
2551
2552         /* sst nor chips use AAI word program */
2553         if (info->flags & SST_WRITE)
2554                 mtd->_write = sst_write;
2555         else
2556 #endif
2557                 mtd->_write = spi_nor_write;
2558
2559         if (info->flags & USE_FSR)
2560                 nor->flags |= SNOR_F_USE_FSR;
2561         if (info->flags & SPI_NOR_HAS_TB)
2562                 nor->flags |= SNOR_F_HAS_SR_TB;
2563         if (info->flags & NO_CHIP_ERASE)
2564                 nor->flags |= SNOR_F_NO_OP_CHIP_ERASE;
2565         if (info->flags & USE_CLSR)
2566                 nor->flags |= SNOR_F_USE_CLSR;
2567
2568         if (info->flags & SPI_NOR_NO_ERASE)
2569                 mtd->flags |= MTD_NO_ERASE;
2570
2571         nor->page_size = params.page_size;
2572         mtd->writebufsize = nor->page_size;
2573
2574         /* Some devices cannot do fast-read, no matter what DT tells us */
2575         if ((info->flags & SPI_NOR_NO_FR) || (spi->mode & SPI_RX_SLOW))
2576                 params.hwcaps.mask &= ~SNOR_HWCAPS_READ_FAST;
2577
2578         /*
2579          * Configure the SPI memory:
2580          * - select op codes for (Fast) Read, Page Program and Sector Erase.
2581          * - set the number of dummy cycles (mode cycles + wait states).
2582          * - set the SPI protocols for register and memory accesses.
2583          * - set the Quad Enable bit if needed (required by SPI x-y-4 protos).
2584          */
2585         ret = spi_nor_setup(nor, info, &params, &hwcaps);
2586         if (ret)
2587                 return ret;
2588
2589         if (nor->addr_width) {
2590                 /* already configured from SFDP */
2591         } else if (info->addr_width) {
2592                 nor->addr_width = info->addr_width;
2593         } else if (mtd->size > SZ_16M) {
2594 #ifndef CONFIG_SPI_FLASH_BAR
2595                 /* enable 4-byte addressing if the device exceeds 16MiB */
2596                 nor->addr_width = 4;
2597                 if (JEDEC_MFR(info) == SNOR_MFR_SPANSION ||
2598                     info->flags & SPI_NOR_4B_OPCODES)
2599                         spi_nor_set_4byte_opcodes(nor, info);
2600 #else
2601         /* Configure the BAR - discover bank cmds and read current bank */
2602         nor->addr_width = 3;
2603         ret = read_bar(nor, info);
2604         if (ret < 0)
2605                 return ret;
2606 #endif
2607         } else {
2608                 nor->addr_width = 3;
2609         }
2610
2611         if (nor->addr_width > SPI_NOR_MAX_ADDR_WIDTH) {
2612                 dev_dbg(dev, "address width is too large: %u\n",
2613                         nor->addr_width);
2614                 return -EINVAL;
2615         }
2616
2617         /* Send all the required SPI flash commands to initialize device */
2618         nor->info = info;
2619         ret = spi_nor_init(nor);
2620         if (ret)
2621                 return ret;
2622
2623         nor->name = mtd->name;
2624         nor->size = mtd->size;
2625         nor->erase_size = mtd->erasesize;
2626         nor->sector_size = mtd->erasesize;
2627
2628 #ifndef CONFIG_SPL_BUILD
2629         printf("SF: Detected %s with page size ", nor->name);
2630         print_size(nor->page_size, ", erase size ");
2631         print_size(nor->erase_size, ", total ");
2632         print_size(nor->size, "");
2633         puts("\n");
2634 #endif
2635
2636         return 0;
2637 }
2638
2639 /* U-Boot specific functions, need to extend MTD to support these */
2640 int spi_flash_cmd_get_sw_write_prot(struct spi_nor *nor)
2641 {
2642         int sr = read_sr(nor);
2643
2644         if (sr < 0)
2645                 return sr;
2646
2647         return (sr >> 2) & 7;
2648 }