1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2002-2004
6 * Copyright (C) 2003 Arabella Software Ltd.
16 /* The DEBUG define must be before common to enable debugging */
24 #include <fdt_support.h>
29 #include <asm/global_data.h>
30 #include <asm/processor.h>
32 #include <asm/byteorder.h>
33 #include <asm/unaligned.h>
34 #include <env_internal.h>
35 #include <linux/delay.h>
36 #include <mtd/cfi_flash.h>
40 * This file implements a Common Flash Interface (CFI) driver for
43 * The width of the port and the width of the chips are determined at
44 * initialization. These widths are used to calculate the address for
45 * access CFI data structures.
48 * JEDEC Standard JESD68 - Common Flash Interface (CFI)
49 * JEDEC Standard JEP137-A Common Flash Interface (CFI) ID Codes
50 * Intel Application Note 646 Common Flash Interface (CFI) and Command Sets
51 * Intel 290667-008 3 Volt Intel StrataFlash Memory datasheet
52 * AMD CFI Specification, Release 2.0 December 1, 2001
53 * AMD/Spansion Application Note: Migration from Single-byte to Three-byte
54 * Device IDs, Publication Number 25538 Revision A, November 8, 2001
56 * Define CONFIG_SYS_WRITE_SWAPPED_DATA, if you have to swap the Bytes between
57 * reading and writing ... (yes there is such a Hardware).
60 DECLARE_GLOBAL_DATA_PTR;
62 static uint flash_offset_cfi[2] = { FLASH_OFFSET_CFI, FLASH_OFFSET_CFI_ALT };
63 #ifdef CONFIG_FLASH_CFI_MTD
64 static uint flash_verbose = 1;
66 #define flash_verbose 1
69 flash_info_t flash_info[CFI_MAX_FLASH_BANKS]; /* FLASH chips info */
72 * Check if chip width is defined. If not, start detecting with 8bit.
74 #ifndef CONFIG_SYS_FLASH_CFI_WIDTH
75 #define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_8BIT
78 #ifdef CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS
79 #define __maybe_weak __weak
81 #define __maybe_weak static
85 * 0xffff is an undefined value for the configuration register. When
86 * this value is returned, the configuration register shall not be
87 * written at all (default mode).
89 static u16 cfi_flash_config_reg(int i)
91 #ifdef CONFIG_SYS_CFI_FLASH_CONFIG_REGS
92 return ((u16 [])CONFIG_SYS_CFI_FLASH_CONFIG_REGS)[i];
98 #if defined(CONFIG_SYS_MAX_FLASH_BANKS_DETECT)
99 int cfi_flash_num_flash_banks = CONFIG_SYS_MAX_FLASH_BANKS_DETECT;
101 int cfi_flash_num_flash_banks;
104 #ifdef CONFIG_CFI_FLASH /* for driver model */
105 static void cfi_flash_init_dm(void)
109 cfi_flash_num_flash_banks = 0;
111 * The uclass_first_device() will probe the first device and
112 * uclass_next_device() will probe the rest if they exist. So
113 * that cfi_flash_probe() will get called assigning the base
114 * addresses that are available.
116 for (uclass_first_device(UCLASS_MTD, &dev);
118 uclass_next_device(&dev)) {
122 phys_addr_t cfi_flash_bank_addr(int i)
124 return flash_info[i].base;
127 __weak phys_addr_t cfi_flash_bank_addr(int i)
129 return ((phys_addr_t [])CONFIG_SYS_FLASH_BANKS_LIST)[i];
133 __weak unsigned long cfi_flash_bank_size(int i)
135 #ifdef CONFIG_SYS_FLASH_BANKS_SIZES
136 return ((unsigned long [])CONFIG_SYS_FLASH_BANKS_SIZES)[i];
142 __maybe_weak void flash_write8(u8 value, void *addr)
144 __raw_writeb(value, addr);
147 __maybe_weak void flash_write16(u16 value, void *addr)
149 __raw_writew(value, addr);
152 __maybe_weak void flash_write32(u32 value, void *addr)
154 __raw_writel(value, addr);
157 __maybe_weak void flash_write64(u64 value, void *addr)
159 /* No architectures currently implement __raw_writeq() */
160 *(volatile u64 *)addr = value;
163 __maybe_weak u8 flash_read8(void *addr)
165 return __raw_readb(addr);
168 __maybe_weak u16 flash_read16(void *addr)
170 return __raw_readw(addr);
173 __maybe_weak u32 flash_read32(void *addr)
175 return __raw_readl(addr);
178 __maybe_weak u64 flash_read64(void *addr)
180 /* No architectures currently implement __raw_readq() */
181 return *(volatile u64 *)addr;
184 /*-----------------------------------------------------------------------
186 #if defined(CONFIG_ENV_IS_IN_FLASH) || defined(CONFIG_ENV_ADDR_REDUND) || \
187 (defined(CONFIG_SYS_MONITOR_BASE) && \
188 (CONFIG_SYS_MONITOR_BASE >= CONFIG_SYS_FLASH_BASE))
189 static flash_info_t *flash_get_info(ulong base)
194 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
195 info = &flash_info[i];
196 if (info->size && info->start[0] <= base &&
197 base <= info->start[0] + info->size - 1)
205 unsigned long flash_sector_size(flash_info_t *info, flash_sect_t sect)
207 if (sect != (info->sector_count - 1))
208 return info->start[sect + 1] - info->start[sect];
210 return info->start[0] + info->size - info->start[sect];
213 /*-----------------------------------------------------------------------
214 * create an address based on the offset and the port width
217 flash_map(flash_info_t *info, flash_sect_t sect, uint offset)
219 unsigned int byte_offset = offset * info->portwidth;
221 return (void *)(info->start[sect] + (byte_offset << info->chip_lsb));
224 static inline void flash_unmap(flash_info_t *info, flash_sect_t sect,
225 unsigned int offset, void *addr)
229 /*-----------------------------------------------------------------------
230 * make a proper sized command based on the port and chip widths
232 static void flash_make_cmd(flash_info_t *info, u32 cmd, void *cmdbuf)
237 #if defined(__LITTLE_ENDIAN) || defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
238 u32 cmd_le = cpu_to_le32(cmd);
241 uchar *cp = (uchar *) cmdbuf;
243 for (i = info->portwidth; i > 0; i--) {
244 cword_offset = (info->portwidth - i) % info->chipwidth;
245 #if defined(__LITTLE_ENDIAN) || defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
246 cp_offset = info->portwidth - i;
247 val = *((uchar *)&cmd_le + cword_offset);
250 val = *((uchar *)&cmd + sizeof(u32) - cword_offset - 1);
252 cp[cp_offset] = (cword_offset >= sizeof(u32)) ? 0x00 : val;
257 /*-----------------------------------------------------------------------
260 static void print_longlong(char *str, unsigned long long data)
266 for (i = 0; i < 8; i++)
267 sprintf(&str[i * 2], "%2.2x", *cp++);
270 static void flash_printqry(struct cfi_qry *qry)
275 for (x = 0; x < sizeof(struct cfi_qry); x += 16) {
277 for (y = 0; y < 16; y++)
278 debug("%2.2x ", p[x + y]);
280 for (y = 0; y < 16; y++) {
281 unsigned char c = p[x + y];
283 if (c >= 0x20 && c <= 0x7e)
293 /*-----------------------------------------------------------------------
294 * read a character at a port width address
296 static inline uchar flash_read_uchar(flash_info_t *info, uint offset)
301 cp = flash_map(info, 0, offset);
302 #if defined(__LITTLE_ENDIAN) || defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
303 retval = flash_read8(cp);
305 retval = flash_read8(cp + info->portwidth - 1);
307 flash_unmap(info, 0, offset, cp);
311 /*-----------------------------------------------------------------------
312 * read a word at a port width address, assume 16bit bus
314 static inline ushort flash_read_word(flash_info_t *info, uint offset)
316 ushort *addr, retval;
318 addr = flash_map(info, 0, offset);
319 retval = flash_read16(addr);
320 flash_unmap(info, 0, offset, addr);
324 /*-----------------------------------------------------------------------
325 * read a long word by picking the least significant byte of each maximum
326 * port size word. Swap for ppc format.
328 static ulong flash_read_long (flash_info_t *info, flash_sect_t sect,
337 addr = flash_map(info, sect, offset);
340 debug("long addr is at %p info->portwidth = %d\n", addr,
342 for (x = 0; x < 4 * info->portwidth; x++)
343 debug("addr[%x] = 0x%x\n", x, flash_read8(addr + x));
345 #if defined(__LITTLE_ENDIAN) || defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
346 retval = ((flash_read8(addr) << 16) |
347 (flash_read8(addr + info->portwidth) << 24) |
348 (flash_read8(addr + 2 * info->portwidth)) |
349 (flash_read8(addr + 3 * info->portwidth) << 8));
351 retval = ((flash_read8(addr + 2 * info->portwidth - 1) << 24) |
352 (flash_read8(addr + info->portwidth - 1) << 16) |
353 (flash_read8(addr + 4 * info->portwidth - 1) << 8) |
354 (flash_read8(addr + 3 * info->portwidth - 1)));
356 flash_unmap(info, sect, offset, addr);
362 * Write a proper sized command to the correct address
364 static void flash_write_cmd(flash_info_t *info, flash_sect_t sect,
365 uint offset, u32 cmd)
370 addr = flash_map(info, sect, offset);
371 flash_make_cmd(info, cmd, &cword);
372 switch (info->portwidth) {
374 debug("fwc addr %p cmd %x %x 8bit x %d bit\n", addr, cmd,
375 cword.w8, info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
376 flash_write8(cword.w8, addr);
378 case FLASH_CFI_16BIT:
379 debug("fwc addr %p cmd %x %4.4x 16bit x %d bit\n", addr,
381 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
382 flash_write16(cword.w16, addr);
384 case FLASH_CFI_32BIT:
385 debug("fwc addr %p cmd %x %8.8x 32bit x %d bit\n", addr,
387 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
388 flash_write32(cword.w32, addr);
390 case FLASH_CFI_64BIT:
395 print_longlong(str, cword.w64);
397 debug("fwrite addr %p cmd %x %s 64 bit x %d bit\n",
399 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
402 flash_write64(cword.w64, addr);
406 /* Ensure all the instructions are fully finished */
409 flash_unmap(info, sect, offset, addr);
412 static void flash_unlock_seq(flash_info_t *info, flash_sect_t sect)
414 flash_write_cmd(info, sect, info->addr_unlock1, AMD_CMD_UNLOCK_START);
415 flash_write_cmd(info, sect, info->addr_unlock2, AMD_CMD_UNLOCK_ACK);
418 /*-----------------------------------------------------------------------
420 static int flash_isequal(flash_info_t *info, flash_sect_t sect, uint offset,
427 addr = flash_map(info, sect, offset);
428 flash_make_cmd(info, cmd, &cword);
430 debug("is= cmd %x(%c) addr %p ", cmd, cmd, addr);
431 switch (info->portwidth) {
433 debug("is= %x %x\n", flash_read8(addr), cword.w8);
434 retval = (flash_read8(addr) == cword.w8);
436 case FLASH_CFI_16BIT:
437 debug("is= %4.4x %4.4x\n", flash_read16(addr), cword.w16);
438 retval = (flash_read16(addr) == cword.w16);
440 case FLASH_CFI_32BIT:
441 debug("is= %8.8x %8.8x\n", flash_read32(addr), cword.w32);
442 retval = (flash_read32(addr) == cword.w32);
444 case FLASH_CFI_64BIT:
450 print_longlong(str1, flash_read64(addr));
451 print_longlong(str2, cword.w64);
452 debug("is= %s %s\n", str1, str2);
455 retval = (flash_read64(addr) == cword.w64);
461 flash_unmap(info, sect, offset, addr);
466 /*-----------------------------------------------------------------------
468 static int flash_isset(flash_info_t *info, flash_sect_t sect, uint offset,
475 addr = flash_map(info, sect, offset);
476 flash_make_cmd(info, cmd, &cword);
477 switch (info->portwidth) {
479 retval = ((flash_read8(addr) & cword.w8) == cword.w8);
481 case FLASH_CFI_16BIT:
482 retval = ((flash_read16(addr) & cword.w16) == cword.w16);
484 case FLASH_CFI_32BIT:
485 retval = ((flash_read32(addr) & cword.w32) == cword.w32);
487 case FLASH_CFI_64BIT:
488 retval = ((flash_read64(addr) & cword.w64) == cword.w64);
494 flash_unmap(info, sect, offset, addr);
499 /*-----------------------------------------------------------------------
501 static int flash_toggle(flash_info_t *info, flash_sect_t sect, uint offset,
508 addr = flash_map(info, sect, offset);
509 flash_make_cmd(info, cmd, &cword);
510 switch (info->portwidth) {
512 retval = flash_read8(addr) != flash_read8(addr);
514 case FLASH_CFI_16BIT:
515 retval = flash_read16(addr) != flash_read16(addr);
517 case FLASH_CFI_32BIT:
518 retval = flash_read32(addr) != flash_read32(addr);
520 case FLASH_CFI_64BIT:
521 retval = ((flash_read32(addr) != flash_read32(addr)) ||
522 (flash_read32(addr + 4) != flash_read32(addr + 4)));
528 flash_unmap(info, sect, offset, addr);
534 * flash_is_busy - check to see if the flash is busy
536 * This routine checks the status of the chip and returns true if the
539 static int flash_is_busy(flash_info_t *info, flash_sect_t sect)
543 switch (info->vendor) {
544 case CFI_CMDSET_INTEL_PROG_REGIONS:
545 case CFI_CMDSET_INTEL_STANDARD:
546 case CFI_CMDSET_INTEL_EXTENDED:
547 retval = !flash_isset(info, sect, 0, FLASH_STATUS_DONE);
549 case CFI_CMDSET_AMD_STANDARD:
550 case CFI_CMDSET_AMD_EXTENDED:
551 #ifdef CONFIG_FLASH_CFI_LEGACY
552 case CFI_CMDSET_AMD_LEGACY:
554 if (info->sr_supported) {
555 flash_write_cmd(info, sect, info->addr_unlock1,
556 FLASH_CMD_READ_STATUS);
557 retval = !flash_isset(info, sect, 0,
560 retval = flash_toggle(info, sect, 0,
568 debug("%s: %d\n", __func__, retval);
572 /*-----------------------------------------------------------------------
573 * wait for XSR.7 to be set. Time out with an error if it does not.
574 * This routine does not set the flash to read-array mode.
576 static int flash_status_check(flash_info_t *info, flash_sect_t sector,
577 ulong tout, char *prompt)
581 #if CONFIG_SYS_HZ != 1000
582 /* Avoid overflow for large HZ */
583 if ((ulong)CONFIG_SYS_HZ > 100000)
584 tout *= (ulong)CONFIG_SYS_HZ / 1000;
586 tout = DIV_ROUND_UP(tout * (ulong)CONFIG_SYS_HZ, 1000);
589 /* Wait for command completion */
590 #ifdef CONFIG_SYS_LOW_RES_TIMER
593 start = get_timer(0);
595 while (flash_is_busy(info, sector)) {
596 if (get_timer(start) > tout) {
597 printf("Flash %s timeout at address %lx data %lx\n",
598 prompt, info->start[sector],
599 flash_read_long(info, sector, 0));
600 flash_write_cmd(info, sector, 0, info->cmd_reset);
604 udelay(1); /* also triggers watchdog */
609 /*-----------------------------------------------------------------------
610 * Wait for XSR.7 to be set, if it times out print an error, otherwise
611 * do a full status check.
613 * This routine sets the flash to read-array mode.
615 static int flash_full_status_check(flash_info_t *info, flash_sect_t sector,
616 ulong tout, char *prompt)
620 retcode = flash_status_check(info, sector, tout, prompt);
621 switch (info->vendor) {
622 case CFI_CMDSET_INTEL_PROG_REGIONS:
623 case CFI_CMDSET_INTEL_EXTENDED:
624 case CFI_CMDSET_INTEL_STANDARD:
625 if (retcode == ERR_OK &&
626 !flash_isset(info, sector, 0, FLASH_STATUS_DONE)) {
628 printf("Flash %s error at address %lx\n", prompt,
629 info->start[sector]);
630 if (flash_isset(info, sector, 0, FLASH_STATUS_ECLBS |
631 FLASH_STATUS_PSLBS)) {
632 puts("Command Sequence Error.\n");
633 } else if (flash_isset(info, sector, 0,
634 FLASH_STATUS_ECLBS)) {
635 puts("Block Erase Error.\n");
636 retcode = ERR_NOT_ERASED;
637 } else if (flash_isset(info, sector, 0,
638 FLASH_STATUS_PSLBS)) {
639 puts("Locking Error\n");
641 if (flash_isset(info, sector, 0, FLASH_STATUS_DPS)) {
642 puts("Block locked.\n");
643 retcode = ERR_PROTECTED;
645 if (flash_isset(info, sector, 0, FLASH_STATUS_VPENS))
646 puts("Vpp Low Error.\n");
648 flash_write_cmd(info, sector, 0, info->cmd_reset);
657 static int use_flash_status_poll(flash_info_t *info)
659 #ifdef CONFIG_SYS_CFI_FLASH_STATUS_POLL
660 if (info->vendor == CFI_CMDSET_AMD_EXTENDED ||
661 info->vendor == CFI_CMDSET_AMD_STANDARD)
667 static int flash_status_poll(flash_info_t *info, void *src, void *dst,
668 ulong tout, char *prompt)
670 #ifdef CONFIG_SYS_CFI_FLASH_STATUS_POLL
674 #if CONFIG_SYS_HZ != 1000
675 /* Avoid overflow for large HZ */
676 if ((ulong)CONFIG_SYS_HZ > 100000)
677 tout *= (ulong)CONFIG_SYS_HZ / 1000;
679 tout = DIV_ROUND_UP(tout * (ulong)CONFIG_SYS_HZ, 1000);
682 /* Wait for command completion */
683 #ifdef CONFIG_SYS_LOW_RES_TIMER
686 start = get_timer(0);
689 switch (info->portwidth) {
691 ready = flash_read8(dst) == flash_read8(src);
693 case FLASH_CFI_16BIT:
694 ready = flash_read16(dst) == flash_read16(src);
696 case FLASH_CFI_32BIT:
697 ready = flash_read32(dst) == flash_read32(src);
699 case FLASH_CFI_64BIT:
700 ready = flash_read64(dst) == flash_read64(src);
708 if (get_timer(start) > tout) {
709 printf("Flash %s timeout at address %lx data %lx\n",
710 prompt, (ulong)dst, (ulong)flash_read8(dst));
713 udelay(1); /* also triggers watchdog */
715 #endif /* CONFIG_SYS_CFI_FLASH_STATUS_POLL */
719 /*-----------------------------------------------------------------------
721 static void flash_add_byte(flash_info_t *info, cfiword_t *cword, uchar c)
723 #if defined(__LITTLE_ENDIAN) && !defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
726 unsigned long long ll;
729 switch (info->portwidth) {
733 case FLASH_CFI_16BIT:
734 #if defined(__LITTLE_ENDIAN) && !defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
737 cword->w16 = (cword->w16 >> 8) | w;
739 cword->w16 = (cword->w16 << 8) | c;
742 case FLASH_CFI_32BIT:
743 #if defined(__LITTLE_ENDIAN) && !defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
746 cword->w32 = (cword->w32 >> 8) | l;
748 cword->w32 = (cword->w32 << 8) | c;
751 case FLASH_CFI_64BIT:
752 #if defined(__LITTLE_ENDIAN) && !defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
755 cword->w64 = (cword->w64 >> 8) | ll;
757 cword->w64 = (cword->w64 << 8) | c;
764 * Loop through the sector table starting from the previously found sector.
765 * Searches forwards or backwards, dependent on the passed address.
767 static flash_sect_t find_sector(flash_info_t *info, ulong addr)
769 static flash_sect_t saved_sector; /* previously found sector */
770 static flash_info_t *saved_info; /* previously used flash bank */
771 flash_sect_t sector = saved_sector;
773 if (info != saved_info || sector >= info->sector_count)
776 while ((sector < info->sector_count - 1) &&
777 (info->start[sector] < addr))
779 while ((info->start[sector] > addr) && (sector > 0))
781 * also decrements the sector in case of an overshot
786 saved_sector = sector;
791 /*-----------------------------------------------------------------------
793 static int flash_write_cfiword(flash_info_t *info, ulong dest, cfiword_t cword)
795 void *dstaddr = (void *)dest;
797 flash_sect_t sect = 0;
800 /* Check if Flash is (sufficiently) erased */
801 switch (info->portwidth) {
803 flag = ((flash_read8(dstaddr) & cword.w8) == cword.w8);
805 case FLASH_CFI_16BIT:
806 flag = ((flash_read16(dstaddr) & cword.w16) == cword.w16);
808 case FLASH_CFI_32BIT:
809 flag = ((flash_read32(dstaddr) & cword.w32) == cword.w32);
811 case FLASH_CFI_64BIT:
812 flag = ((flash_read64(dstaddr) & cword.w64) == cword.w64);
819 return ERR_NOT_ERASED;
821 /* Disable interrupts which might cause a timeout here */
822 flag = disable_interrupts();
824 switch (info->vendor) {
825 case CFI_CMDSET_INTEL_PROG_REGIONS:
826 case CFI_CMDSET_INTEL_EXTENDED:
827 case CFI_CMDSET_INTEL_STANDARD:
828 flash_write_cmd(info, 0, 0, FLASH_CMD_CLEAR_STATUS);
829 flash_write_cmd(info, 0, 0, FLASH_CMD_WRITE);
831 case CFI_CMDSET_AMD_EXTENDED:
832 case CFI_CMDSET_AMD_STANDARD:
833 sect = find_sector(info, dest);
834 flash_unlock_seq(info, sect);
835 flash_write_cmd(info, sect, info->addr_unlock1, AMD_CMD_WRITE);
838 #ifdef CONFIG_FLASH_CFI_LEGACY
839 case CFI_CMDSET_AMD_LEGACY:
840 sect = find_sector(info, dest);
841 flash_unlock_seq(info, 0);
842 flash_write_cmd(info, 0, info->addr_unlock1, AMD_CMD_WRITE);
848 switch (info->portwidth) {
850 flash_write8(cword.w8, dstaddr);
852 case FLASH_CFI_16BIT:
853 flash_write16(cword.w16, dstaddr);
855 case FLASH_CFI_32BIT:
856 flash_write32(cword.w32, dstaddr);
858 case FLASH_CFI_64BIT:
859 flash_write64(cword.w64, dstaddr);
863 /* re-enable interrupts if necessary */
868 sect = find_sector(info, dest);
870 if (use_flash_status_poll(info))
871 return flash_status_poll(info, &cword, dstaddr,
872 info->write_tout, "write");
874 return flash_full_status_check(info, sect,
875 info->write_tout, "write");
878 #ifdef CONFIG_SYS_FLASH_USE_BUFFER_WRITE
880 static int flash_write_cfibuffer(flash_info_t *info, ulong dest, uchar *cp,
887 u8 *dst = (u8 *)dest;
894 switch (info->portwidth) {
898 case FLASH_CFI_16BIT:
901 case FLASH_CFI_32BIT:
904 case FLASH_CFI_64BIT:
914 while ((cnt-- > 0) && (flag == 1)) {
915 switch (info->portwidth) {
917 flag = ((flash_read8(dst2) & flash_read8(src)) ==
921 case FLASH_CFI_16BIT:
922 flag = ((flash_read16(dst2) & flash_read16(src)) ==
926 case FLASH_CFI_32BIT:
927 flag = ((flash_read32(dst2) & flash_read32(src)) ==
931 case FLASH_CFI_64BIT:
932 flag = ((flash_read64(dst2) & flash_read64(src)) ==
939 retcode = ERR_NOT_ERASED;
944 sector = find_sector(info, dest);
946 switch (info->vendor) {
947 case CFI_CMDSET_INTEL_PROG_REGIONS:
948 case CFI_CMDSET_INTEL_STANDARD:
949 case CFI_CMDSET_INTEL_EXTENDED:
950 write_cmd = (info->vendor == CFI_CMDSET_INTEL_PROG_REGIONS) ?
951 FLASH_CMD_WRITE_BUFFER_PROG :
952 FLASH_CMD_WRITE_TO_BUFFER;
953 flash_write_cmd(info, sector, 0, FLASH_CMD_CLEAR_STATUS);
954 flash_write_cmd(info, sector, 0, FLASH_CMD_READ_STATUS);
955 flash_write_cmd(info, sector, 0, write_cmd);
956 retcode = flash_status_check(info, sector,
957 info->buffer_write_tout,
959 if (retcode == ERR_OK) {
960 /* reduce the number of loops by the width of
964 flash_write_cmd(info, sector, 0, cnt - 1);
966 switch (info->portwidth) {
968 flash_write8(flash_read8(src), dst);
971 case FLASH_CFI_16BIT:
972 flash_write16(flash_read16(src), dst);
975 case FLASH_CFI_32BIT:
976 flash_write32(flash_read32(src), dst);
979 case FLASH_CFI_64BIT:
980 flash_write64(flash_read64(src), dst);
988 flash_write_cmd(info, sector, 0,
989 FLASH_CMD_WRITE_BUFFER_CONFIRM);
990 retcode = flash_full_status_check(
991 info, sector, info->buffer_write_tout,
997 case CFI_CMDSET_AMD_STANDARD:
998 case CFI_CMDSET_AMD_EXTENDED:
999 flash_unlock_seq(info, sector);
1001 #ifdef CONFIG_FLASH_SPANSION_S29WS_N
1002 offset = ((unsigned long)dst - info->start[sector]) >> shift;
1004 flash_write_cmd(info, sector, offset, AMD_CMD_WRITE_TO_BUFFER);
1006 flash_write_cmd(info, sector, offset, cnt - 1);
1008 switch (info->portwidth) {
1009 case FLASH_CFI_8BIT:
1011 flash_write8(flash_read8(src), dst);
1015 case FLASH_CFI_16BIT:
1017 flash_write16(flash_read16(src), dst);
1021 case FLASH_CFI_32BIT:
1023 flash_write32(flash_read32(src), dst);
1027 case FLASH_CFI_64BIT:
1029 flash_write64(flash_read64(src), dst);
1034 retcode = ERR_INVAL;
1038 flash_write_cmd(info, sector, 0, AMD_CMD_WRITE_BUFFER_CONFIRM);
1039 if (use_flash_status_poll(info))
1040 retcode = flash_status_poll(info, src - (1 << shift),
1042 info->buffer_write_tout,
1045 retcode = flash_full_status_check(info, sector,
1046 info->buffer_write_tout,
1051 debug("Unknown Command Set\n");
1052 retcode = ERR_INVAL;
1059 #endif /* CONFIG_SYS_FLASH_USE_BUFFER_WRITE */
1061 /*-----------------------------------------------------------------------
1063 int flash_erase(flash_info_t *info, int s_first, int s_last)
1070 if (info->flash_id != FLASH_MAN_CFI) {
1071 puts("Can't erase unknown flash type - aborted\n");
1074 if (s_first < 0 || s_first > s_last) {
1075 puts("- no sectors to erase\n");
1080 for (sect = s_first; sect <= s_last; ++sect)
1081 if (info->protect[sect])
1084 printf("- Warning: %d protected sectors will not be erased!\n",
1086 } else if (flash_verbose) {
1090 for (sect = s_first; sect <= s_last; sect++) {
1096 if (info->protect[sect] == 0) { /* not protected */
1097 #ifdef CONFIG_SYS_FLASH_CHECK_BLANK_BEFORE_ERASE
1104 * Check if whole sector is erased
1106 size = flash_sector_size(info, sect);
1108 flash = (u32 *)info->start[sect];
1109 /* divide by 4 for longword access */
1111 for (k = 0; k < size; k++) {
1112 if (flash_read32(flash++) != 0xffffffff) {
1123 switch (info->vendor) {
1124 case CFI_CMDSET_INTEL_PROG_REGIONS:
1125 case CFI_CMDSET_INTEL_STANDARD:
1126 case CFI_CMDSET_INTEL_EXTENDED:
1127 flash_write_cmd(info, sect, 0,
1128 FLASH_CMD_CLEAR_STATUS);
1129 flash_write_cmd(info, sect, 0,
1130 FLASH_CMD_BLOCK_ERASE);
1131 flash_write_cmd(info, sect, 0,
1132 FLASH_CMD_ERASE_CONFIRM);
1134 case CFI_CMDSET_AMD_STANDARD:
1135 case CFI_CMDSET_AMD_EXTENDED:
1136 flash_unlock_seq(info, sect);
1137 flash_write_cmd(info, sect,
1139 AMD_CMD_ERASE_START);
1140 flash_unlock_seq(info, sect);
1141 flash_write_cmd(info, sect, 0,
1142 info->cmd_erase_sector);
1144 #ifdef CONFIG_FLASH_CFI_LEGACY
1145 case CFI_CMDSET_AMD_LEGACY:
1146 flash_unlock_seq(info, 0);
1147 flash_write_cmd(info, 0, info->addr_unlock1,
1148 AMD_CMD_ERASE_START);
1149 flash_unlock_seq(info, 0);
1150 flash_write_cmd(info, sect, 0,
1151 AMD_CMD_ERASE_SECTOR);
1155 debug("Unknown flash vendor %d\n",
1160 if (use_flash_status_poll(info)) {
1164 cword.w64 = 0xffffffffffffffffULL;
1165 dest = flash_map(info, sect, 0);
1166 st = flash_status_poll(info, &cword, dest,
1167 info->erase_blk_tout,
1169 flash_unmap(info, sect, 0, dest);
1171 st = flash_full_status_check(info, sect,
1172 info->erase_blk_tout,
1178 else if (flash_verbose)
1189 #ifdef CONFIG_SYS_FLASH_EMPTY_INFO
1190 static int sector_erased(flash_info_t *info, int i)
1197 * Check if whole sector is erased
1199 size = flash_sector_size(info, i);
1200 flash = (u32 *)info->start[i];
1201 /* divide by 4 for longword access */
1204 for (k = 0; k < size; k++) {
1205 if (flash_read32(flash++) != 0xffffffff)
1206 return 0; /* not erased */
1209 return 1; /* erased */
1211 #endif /* CONFIG_SYS_FLASH_EMPTY_INFO */
1213 void flash_print_info(flash_info_t *info)
1217 if (info->flash_id != FLASH_MAN_CFI) {
1218 puts("missing or unknown FLASH type\n");
1222 printf("%s flash (%d x %d)",
1224 (info->portwidth << 3), (info->chipwidth << 3));
1225 if (info->size < 1024 * 1024)
1226 printf(" Size: %ld kB in %d Sectors\n",
1227 info->size >> 10, info->sector_count);
1229 printf(" Size: %ld MB in %d Sectors\n",
1230 info->size >> 20, info->sector_count);
1232 switch (info->vendor) {
1233 case CFI_CMDSET_INTEL_PROG_REGIONS:
1234 printf("Intel Prog Regions");
1236 case CFI_CMDSET_INTEL_STANDARD:
1237 printf("Intel Standard");
1239 case CFI_CMDSET_INTEL_EXTENDED:
1240 printf("Intel Extended");
1242 case CFI_CMDSET_AMD_STANDARD:
1243 printf("AMD Standard");
1245 case CFI_CMDSET_AMD_EXTENDED:
1246 printf("AMD Extended");
1248 #ifdef CONFIG_FLASH_CFI_LEGACY
1249 case CFI_CMDSET_AMD_LEGACY:
1250 printf("AMD Legacy");
1254 printf("Unknown (%d)", info->vendor);
1257 printf(" command set, Manufacturer ID: 0x%02X, Device ID: 0x",
1258 info->manufacturer_id);
1259 printf(info->chipwidth == FLASH_CFI_16BIT ? "%04X" : "%02X",
1261 if ((info->device_id & 0xff) == 0x7E) {
1262 printf(info->chipwidth == FLASH_CFI_16BIT ? "%04X" : "%02X",
1265 if (info->vendor == CFI_CMDSET_AMD_STANDARD && info->legacy_unlock)
1266 printf("\n Advanced Sector Protection (PPB) enabled");
1267 printf("\n Erase timeout: %ld ms, write timeout: %ld ms\n",
1268 info->erase_blk_tout, info->write_tout);
1269 if (info->buffer_size > 1) {
1270 printf(" Buffer write timeout: %ld ms, ",
1271 info->buffer_write_tout);
1272 printf("buffer size: %d bytes\n", info->buffer_size);
1275 puts("\n Sector Start Addresses:");
1276 for (i = 0; i < info->sector_count; ++i) {
1281 #ifdef CONFIG_SYS_FLASH_EMPTY_INFO
1282 /* print empty and read-only info */
1283 printf(" %08lX %c %s ",
1285 sector_erased(info, i) ? 'E' : ' ',
1286 info->protect[i] ? "RO" : " ");
1287 #else /* ! CONFIG_SYS_FLASH_EMPTY_INFO */
1288 printf(" %08lX %s ",
1290 info->protect[i] ? "RO" : " ");
1296 /*-----------------------------------------------------------------------
1297 * This is used in a few places in write_buf() to show programming
1298 * progress. Making it a function is nasty because it needs to do side
1299 * effect updates to digit and dots. Repeated code is nasty too, so
1300 * we define it once here.
1302 #ifdef CONFIG_FLASH_SHOW_PROGRESS
1303 #define FLASH_SHOW_PROGRESS(scale, dots, digit, dots_sub) \
1304 if (flash_verbose) { \
1306 if (scale > 0 && dots <= 0) { \
1307 if ((digit % 5) == 0) \
1308 printf("%d", digit / 5); \
1316 #define FLASH_SHOW_PROGRESS(scale, dots, digit, dots_sub)
1319 /*-----------------------------------------------------------------------
1320 * Copy memory to flash, returns:
1323 * 2 - Flash not erased
1325 int write_buff(flash_info_t *info, uchar *src, ulong addr, ulong cnt)
1332 #ifdef CONFIG_SYS_FLASH_USE_BUFFER_WRITE
1335 #ifdef CONFIG_FLASH_SHOW_PROGRESS
1336 int digit = CONFIG_FLASH_SHOW_PROGRESS;
1341 * Suppress if there are fewer than CONFIG_FLASH_SHOW_PROGRESS writes.
1343 if (cnt >= CONFIG_FLASH_SHOW_PROGRESS) {
1344 scale = (int)((cnt + CONFIG_FLASH_SHOW_PROGRESS - 1) /
1345 CONFIG_FLASH_SHOW_PROGRESS);
1349 /* get lower aligned address */
1350 wp = (addr & ~(info->portwidth - 1));
1352 /* handle unaligned start */
1357 for (i = 0; i < aln; ++i)
1358 flash_add_byte(info, &cword, flash_read8(p + i));
1360 for (; (i < info->portwidth) && (cnt > 0); i++) {
1361 flash_add_byte(info, &cword, *src++);
1364 for (; (cnt == 0) && (i < info->portwidth); ++i)
1365 flash_add_byte(info, &cword, flash_read8(p + i));
1367 rc = flash_write_cfiword(info, wp, cword);
1372 FLASH_SHOW_PROGRESS(scale, dots, digit, i);
1375 /* handle the aligned part */
1376 #ifdef CONFIG_SYS_FLASH_USE_BUFFER_WRITE
1377 buffered_size = (info->portwidth / info->chipwidth);
1378 buffered_size *= info->buffer_size;
1379 while (cnt >= info->portwidth) {
1380 /* prohibit buffer write when buffer_size is 1 */
1381 if (info->buffer_size == 1) {
1383 for (i = 0; i < info->portwidth; i++)
1384 flash_add_byte(info, &cword, *src++);
1385 rc = flash_write_cfiword(info, wp, cword);
1388 wp += info->portwidth;
1389 cnt -= info->portwidth;
1393 /* write buffer until next buffered_size aligned boundary */
1394 i = buffered_size - (wp % buffered_size);
1397 rc = flash_write_cfibuffer(info, wp, src, i);
1400 i -= i & (info->portwidth - 1);
1404 FLASH_SHOW_PROGRESS(scale, dots, digit, i);
1405 /* Only check every once in a while */
1406 if ((cnt & 0xFFFF) < buffered_size && ctrlc())
1410 while (cnt >= info->portwidth) {
1412 for (i = 0; i < info->portwidth; i++)
1413 flash_add_byte(info, &cword, *src++);
1414 rc = flash_write_cfiword(info, wp, cword);
1417 wp += info->portwidth;
1418 cnt -= info->portwidth;
1419 FLASH_SHOW_PROGRESS(scale, dots, digit, info->portwidth);
1420 /* Only check every once in a while */
1421 if ((cnt & 0xFFFF) < info->portwidth && ctrlc())
1424 #endif /* CONFIG_SYS_FLASH_USE_BUFFER_WRITE */
1430 * handle unaligned tail bytes
1434 for (i = 0; (i < info->portwidth) && (cnt > 0); ++i) {
1435 flash_add_byte(info, &cword, *src++);
1438 for (; i < info->portwidth; ++i)
1439 flash_add_byte(info, &cword, flash_read8(p + i));
1441 return flash_write_cfiword(info, wp, cword);
1444 static inline int manufact_match(flash_info_t *info, u32 manu)
1446 return info->manufacturer_id == ((manu & FLASH_VENDMASK) >> 16);
1449 /*-----------------------------------------------------------------------
1451 #ifdef CONFIG_SYS_FLASH_PROTECTION
1453 static int cfi_protect_bugfix(flash_info_t *info, long sector, int prot)
1455 if (manufact_match(info, INTEL_MANUFACT) &&
1456 info->device_id == NUMONYX_256MBIT) {
1459 * "Numonyx Axcell P33/P30 Specification Update" :)
1461 flash_write_cmd(info, sector, 0, FLASH_CMD_READ_ID);
1462 if (!flash_isequal(info, sector, FLASH_OFFSET_PROTECT,
1465 * cmd must come before FLASH_CMD_PROTECT + 20us
1466 * Disable interrupts which might cause a timeout here.
1468 int flag = disable_interrupts();
1472 cmd = FLASH_CMD_PROTECT_SET;
1474 cmd = FLASH_CMD_PROTECT_CLEAR;
1476 flash_write_cmd(info, sector, 0, FLASH_CMD_PROTECT);
1477 flash_write_cmd(info, sector, 0, cmd);
1478 /* re-enable interrupts if necessary */
1480 enable_interrupts();
1487 int flash_real_protect(flash_info_t *info, long sector, int prot)
1491 switch (info->vendor) {
1492 case CFI_CMDSET_INTEL_PROG_REGIONS:
1493 case CFI_CMDSET_INTEL_STANDARD:
1494 case CFI_CMDSET_INTEL_EXTENDED:
1495 if (!cfi_protect_bugfix(info, sector, prot)) {
1496 flash_write_cmd(info, sector, 0,
1497 FLASH_CMD_CLEAR_STATUS);
1498 flash_write_cmd(info, sector, 0,
1501 flash_write_cmd(info, sector, 0,
1502 FLASH_CMD_PROTECT_SET);
1504 flash_write_cmd(info, sector, 0,
1505 FLASH_CMD_PROTECT_CLEAR);
1508 case CFI_CMDSET_AMD_EXTENDED:
1509 case CFI_CMDSET_AMD_STANDARD:
1510 /* U-Boot only checks the first byte */
1511 if (manufact_match(info, ATM_MANUFACT)) {
1513 flash_unlock_seq(info, 0);
1514 flash_write_cmd(info, 0,
1516 ATM_CMD_SOFTLOCK_START);
1517 flash_unlock_seq(info, 0);
1518 flash_write_cmd(info, sector, 0,
1521 flash_write_cmd(info, 0,
1523 AMD_CMD_UNLOCK_START);
1524 if (info->device_id == ATM_ID_BV6416)
1525 flash_write_cmd(info, sector,
1526 0, ATM_CMD_UNLOCK_SECT);
1529 if (info->legacy_unlock) {
1530 int flag = disable_interrupts();
1533 flash_unlock_seq(info, 0);
1534 flash_write_cmd(info, 0, info->addr_unlock1,
1535 AMD_CMD_SET_PPB_ENTRY);
1536 lock_flag = flash_isset(info, sector, 0, 0x01);
1539 flash_write_cmd(info, sector, 0,
1540 AMD_CMD_PPB_LOCK_BC1);
1541 flash_write_cmd(info, sector, 0,
1542 AMD_CMD_PPB_LOCK_BC2);
1544 debug("sector %ld %slocked\n", sector,
1545 lock_flag ? "" : "already ");
1548 debug("unlock %ld\n", sector);
1549 flash_write_cmd(info, 0, 0,
1550 AMD_CMD_PPB_UNLOCK_BC1);
1551 flash_write_cmd(info, 0, 0,
1552 AMD_CMD_PPB_UNLOCK_BC2);
1554 debug("sector %ld %sunlocked\n", sector,
1555 !lock_flag ? "" : "already ");
1558 enable_interrupts();
1560 if (flash_status_check(info, sector,
1561 info->erase_blk_tout,
1562 prot ? "protect" : "unprotect"))
1563 printf("status check error\n");
1565 flash_write_cmd(info, 0, 0,
1566 AMD_CMD_SET_PPB_EXIT_BC1);
1567 flash_write_cmd(info, 0, 0,
1568 AMD_CMD_SET_PPB_EXIT_BC2);
1571 #ifdef CONFIG_FLASH_CFI_LEGACY
1572 case CFI_CMDSET_AMD_LEGACY:
1573 flash_write_cmd(info, sector, 0, FLASH_CMD_CLEAR_STATUS);
1574 flash_write_cmd(info, sector, 0, FLASH_CMD_PROTECT);
1576 flash_write_cmd(info, sector, 0,
1577 FLASH_CMD_PROTECT_SET);
1579 flash_write_cmd(info, sector, 0,
1580 FLASH_CMD_PROTECT_CLEAR);
1585 * Flash needs to be in status register read mode for
1586 * flash_full_status_check() to work correctly
1588 flash_write_cmd(info, sector, 0, FLASH_CMD_READ_STATUS);
1589 retcode = flash_full_status_check(info, sector, info->erase_blk_tout,
1590 prot ? "protect" : "unprotect");
1592 info->protect[sector] = prot;
1595 * On some of Intel's flash chips (marked via legacy_unlock)
1596 * unprotect unprotects all locking.
1598 if (prot == 0 && info->legacy_unlock) {
1601 for (i = 0; i < info->sector_count; i++) {
1602 if (info->protect[i])
1603 flash_real_protect(info, i, 1);
1610 /*-----------------------------------------------------------------------
1611 * flash_read_user_serial - read the OneTimeProgramming cells
1613 void flash_read_user_serial(flash_info_t *info, void *buffer, int offset,
1620 src = flash_map(info, 0, FLASH_OFFSET_USER_PROTECTION);
1621 flash_write_cmd(info, 0, 0, FLASH_CMD_READ_ID);
1622 memcpy(dst, src + offset, len);
1623 flash_write_cmd(info, 0, 0, info->cmd_reset);
1625 flash_unmap(info, 0, FLASH_OFFSET_USER_PROTECTION, src);
1629 * flash_read_factory_serial - read the device Id from the protection area
1631 void flash_read_factory_serial(flash_info_t *info, void *buffer, int offset,
1636 src = flash_map(info, 0, FLASH_OFFSET_INTEL_PROTECTION);
1637 flash_write_cmd(info, 0, 0, FLASH_CMD_READ_ID);
1638 memcpy(buffer, src + offset, len);
1639 flash_write_cmd(info, 0, 0, info->cmd_reset);
1641 flash_unmap(info, 0, FLASH_OFFSET_INTEL_PROTECTION, src);
1644 #endif /* CONFIG_SYS_FLASH_PROTECTION */
1646 /*-----------------------------------------------------------------------
1647 * Reverse the order of the erase regions in the CFI QRY structure.
1648 * This is needed for chips that are either a) correctly detected as
1649 * top-boot, or b) buggy.
1651 static void cfi_reverse_geometry(struct cfi_qry *qry)
1656 for (i = 0, j = qry->num_erase_regions - 1; i < j; i++, j--) {
1657 tmp = get_unaligned(&qry->erase_region_info[i]);
1658 put_unaligned(get_unaligned(&qry->erase_region_info[j]),
1659 &qry->erase_region_info[i]);
1660 put_unaligned(tmp, &qry->erase_region_info[j]);
1664 /*-----------------------------------------------------------------------
1665 * read jedec ids from device and set corresponding fields in info struct
1667 * Note: assume cfi->vendor, cfi->portwidth and cfi->chipwidth are correct
1670 static void cmdset_intel_read_jedec_ids(flash_info_t *info)
1672 flash_write_cmd(info, 0, 0, FLASH_CMD_RESET);
1674 flash_write_cmd(info, 0, 0, FLASH_CMD_READ_ID);
1675 udelay(1000); /* some flash are slow to respond */
1676 info->manufacturer_id = flash_read_uchar(info,
1677 FLASH_OFFSET_MANUFACTURER_ID);
1678 info->device_id = (info->chipwidth == FLASH_CFI_16BIT) ?
1679 flash_read_word(info, FLASH_OFFSET_DEVICE_ID) :
1680 flash_read_uchar(info, FLASH_OFFSET_DEVICE_ID);
1681 flash_write_cmd(info, 0, 0, FLASH_CMD_RESET);
1684 static int cmdset_intel_init(flash_info_t *info, struct cfi_qry *qry)
1686 info->cmd_reset = FLASH_CMD_RESET;
1688 cmdset_intel_read_jedec_ids(info);
1689 flash_write_cmd(info, 0, info->cfi_offset, FLASH_CMD_CFI);
1691 #ifdef CONFIG_SYS_FLASH_PROTECTION
1692 /* read legacy lock/unlock bit from intel flash */
1693 if (info->ext_addr) {
1694 info->legacy_unlock =
1695 flash_read_uchar(info, info->ext_addr + 5) & 0x08;
1702 static void cmdset_amd_read_jedec_ids(flash_info_t *info)
1708 flash_write_cmd(info, 0, 0, AMD_CMD_RESET);
1709 flash_unlock_seq(info, 0);
1710 flash_write_cmd(info, 0, info->addr_unlock1, FLASH_CMD_READ_ID);
1711 udelay(1000); /* some flash are slow to respond */
1713 manu_id = flash_read_uchar(info, FLASH_OFFSET_MANUFACTURER_ID);
1714 /* JEDEC JEP106Z specifies ID codes up to bank 7 */
1715 while (manu_id == FLASH_CONTINUATION_CODE && bank_id < 0x800) {
1717 manu_id = flash_read_uchar(info,
1718 bank_id | FLASH_OFFSET_MANUFACTURER_ID);
1720 info->manufacturer_id = manu_id;
1722 debug("info->ext_addr = 0x%x, cfi_version = 0x%x\n",
1723 info->ext_addr, info->cfi_version);
1724 if (info->ext_addr && info->cfi_version >= 0x3134) {
1725 /* read software feature (at 0x53) */
1726 feature = flash_read_uchar(info, info->ext_addr + 0x13);
1727 debug("feature = 0x%x\n", feature);
1728 info->sr_supported = feature & 0x1;
1731 switch (info->chipwidth) {
1732 case FLASH_CFI_8BIT:
1733 info->device_id = flash_read_uchar(info,
1734 FLASH_OFFSET_DEVICE_ID);
1735 if (info->device_id == 0x7E) {
1736 /* AMD 3-byte (expanded) device ids */
1737 info->device_id2 = flash_read_uchar(info,
1738 FLASH_OFFSET_DEVICE_ID2);
1739 info->device_id2 <<= 8;
1740 info->device_id2 |= flash_read_uchar(info,
1741 FLASH_OFFSET_DEVICE_ID3);
1744 case FLASH_CFI_16BIT:
1745 info->device_id = flash_read_word(info,
1746 FLASH_OFFSET_DEVICE_ID);
1747 if ((info->device_id & 0xff) == 0x7E) {
1748 /* AMD 3-byte (expanded) device ids */
1749 info->device_id2 = flash_read_uchar(info,
1750 FLASH_OFFSET_DEVICE_ID2);
1751 info->device_id2 <<= 8;
1752 info->device_id2 |= flash_read_uchar(info,
1753 FLASH_OFFSET_DEVICE_ID3);
1759 flash_write_cmd(info, 0, 0, AMD_CMD_RESET);
1763 static int cmdset_amd_init(flash_info_t *info, struct cfi_qry *qry)
1765 info->cmd_reset = AMD_CMD_RESET;
1766 info->cmd_erase_sector = AMD_CMD_ERASE_SECTOR;
1768 cmdset_amd_read_jedec_ids(info);
1769 flash_write_cmd(info, 0, info->cfi_offset, FLASH_CMD_CFI);
1771 #ifdef CONFIG_SYS_FLASH_PROTECTION
1772 if (info->ext_addr) {
1773 /* read sector protect/unprotect scheme (at 0x49) */
1774 if (flash_read_uchar(info, info->ext_addr + 9) == 0x8)
1775 info->legacy_unlock = 1;
1782 #ifdef CONFIG_FLASH_CFI_LEGACY
1783 static void flash_read_jedec_ids(flash_info_t *info)
1785 info->manufacturer_id = 0;
1786 info->device_id = 0;
1787 info->device_id2 = 0;
1789 switch (info->vendor) {
1790 case CFI_CMDSET_INTEL_PROG_REGIONS:
1791 case CFI_CMDSET_INTEL_STANDARD:
1792 case CFI_CMDSET_INTEL_EXTENDED:
1793 cmdset_intel_read_jedec_ids(info);
1795 case CFI_CMDSET_AMD_STANDARD:
1796 case CFI_CMDSET_AMD_EXTENDED:
1797 cmdset_amd_read_jedec_ids(info);
1804 /*-----------------------------------------------------------------------
1805 * Call board code to request info about non-CFI flash.
1806 * board_flash_get_legacy needs to fill in at least:
1807 * info->portwidth, info->chipwidth and info->interface for Jedec probing.
1809 static int flash_detect_legacy(phys_addr_t base, int banknum)
1811 flash_info_t *info = &flash_info[banknum];
1813 if (board_flash_get_legacy(base, banknum, info)) {
1814 /* board code may have filled info completely. If not, we
1815 * use JEDEC ID probing.
1817 if (!info->vendor) {
1819 CFI_CMDSET_AMD_STANDARD,
1820 CFI_CMDSET_INTEL_STANDARD
1824 for (i = 0; i < ARRAY_SIZE(modes); i++) {
1825 info->vendor = modes[i];
1827 (ulong)map_physmem(base,
1830 if (info->portwidth == FLASH_CFI_8BIT &&
1831 info->interface == FLASH_CFI_X8X16) {
1832 info->addr_unlock1 = 0x2AAA;
1833 info->addr_unlock2 = 0x5555;
1835 info->addr_unlock1 = 0x5555;
1836 info->addr_unlock2 = 0x2AAA;
1838 flash_read_jedec_ids(info);
1839 debug("JEDEC PROBE: ID %x %x %x\n",
1840 info->manufacturer_id,
1843 if (jedec_flash_match(info, info->start[0]))
1846 unmap_physmem((void *)info->start[0],
1851 switch (info->vendor) {
1852 case CFI_CMDSET_INTEL_PROG_REGIONS:
1853 case CFI_CMDSET_INTEL_STANDARD:
1854 case CFI_CMDSET_INTEL_EXTENDED:
1855 info->cmd_reset = FLASH_CMD_RESET;
1857 case CFI_CMDSET_AMD_STANDARD:
1858 case CFI_CMDSET_AMD_EXTENDED:
1859 case CFI_CMDSET_AMD_LEGACY:
1860 info->cmd_reset = AMD_CMD_RESET;
1863 info->flash_id = FLASH_MAN_CFI;
1866 return 0; /* use CFI */
1869 static inline int flash_detect_legacy(phys_addr_t base, int banknum)
1871 return 0; /* use CFI */
1875 /*-----------------------------------------------------------------------
1876 * detect if flash is compatible with the Common Flash Interface (CFI)
1877 * http://www.jedec.org/download/search/jesd68.pdf
1879 static void flash_read_cfi(flash_info_t *info, void *buf, unsigned int start,
1885 for (i = 0; i < len; i++)
1886 p[i] = flash_read_uchar(info, start + i);
1889 static void __flash_cmd_reset(flash_info_t *info)
1892 * We do not yet know what kind of commandset to use, so we issue
1893 * the reset command in both Intel and AMD variants, in the hope
1894 * that AMD flash roms ignore the Intel command.
1896 flash_write_cmd(info, 0, 0, AMD_CMD_RESET);
1898 flash_write_cmd(info, 0, 0, FLASH_CMD_RESET);
1901 void flash_cmd_reset(flash_info_t *info)
1902 __attribute__((weak, alias("__flash_cmd_reset")));
1904 static int __flash_detect_cfi(flash_info_t *info, struct cfi_qry *qry)
1908 /* Issue FLASH reset command */
1909 flash_cmd_reset(info);
1911 for (cfi_offset = 0; cfi_offset < ARRAY_SIZE(flash_offset_cfi);
1913 flash_write_cmd(info, 0, flash_offset_cfi[cfi_offset],
1915 if (flash_isequal(info, 0, FLASH_OFFSET_CFI_RESP, 'Q') &&
1916 flash_isequal(info, 0, FLASH_OFFSET_CFI_RESP + 1, 'R') &&
1917 flash_isequal(info, 0, FLASH_OFFSET_CFI_RESP + 2, 'Y')) {
1918 flash_read_cfi(info, qry, FLASH_OFFSET_CFI_RESP,
1919 sizeof(struct cfi_qry));
1920 info->interface = le16_to_cpu(qry->interface_desc);
1921 /* Some flash chips can support multiple bus widths.
1922 * In this case, override the interface width and
1923 * limit it to the port width.
1925 if ((info->interface == FLASH_CFI_X8X16) &&
1926 (info->portwidth == FLASH_CFI_8BIT)) {
1927 debug("Overriding 16-bit interface width to"
1928 " 8-bit port width\n");
1929 info->interface = FLASH_CFI_X8;
1930 } else if ((info->interface == FLASH_CFI_X16X32) &&
1931 (info->portwidth == FLASH_CFI_16BIT)) {
1932 debug("Overriding 16-bit interface width to"
1933 " 16-bit port width\n");
1934 info->interface = FLASH_CFI_X16;
1937 info->cfi_offset = flash_offset_cfi[cfi_offset];
1938 debug("device interface is %d\n",
1940 debug("found port %d chip %d chip_lsb %d ",
1941 info->portwidth, info->chipwidth, info->chip_lsb);
1942 debug("port %d bits chip %d bits\n",
1943 info->portwidth << CFI_FLASH_SHIFT_WIDTH,
1944 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
1946 /* calculate command offsets as in the Linux driver */
1947 info->addr_unlock1 = 0x555;
1948 info->addr_unlock2 = 0x2aa;
1951 * modify the unlock address if we are
1952 * in compatibility mode
1954 if (/* x8/x16 in x8 mode */
1955 (info->chipwidth == FLASH_CFI_BY8 &&
1956 info->interface == FLASH_CFI_X8X16) ||
1957 /* x16/x32 in x16 mode */
1958 (info->chipwidth == FLASH_CFI_BY16 &&
1959 info->interface == FLASH_CFI_X16X32)) {
1960 info->addr_unlock1 = 0xaaa;
1961 info->addr_unlock2 = 0x555;
1964 info->name = "CFI conformant";
1972 static int flash_detect_cfi(flash_info_t *info, struct cfi_qry *qry)
1974 debug("flash detect cfi\n");
1976 for (info->portwidth = CONFIG_SYS_FLASH_CFI_WIDTH;
1977 info->portwidth <= FLASH_CFI_64BIT; info->portwidth <<= 1) {
1978 for (info->chipwidth = FLASH_CFI_BY8;
1979 info->chipwidth <= info->portwidth;
1980 info->chipwidth <<= 1) {
1982 * First, try detection without shifting the addresses
1983 * for 8bit devices (16bit wide connection)
1986 if (__flash_detect_cfi(info, qry))
1990 * Not detected, so let's try with shifting
1994 if (__flash_detect_cfi(info, qry))
1998 debug("not found\n");
2003 * Manufacturer-specific quirks. Add workarounds for geometry
2004 * reversal, etc. here.
2006 static void flash_fixup_amd(flash_info_t *info, struct cfi_qry *qry)
2008 /* check if flash geometry needs reversal */
2009 if (qry->num_erase_regions > 1) {
2010 /* reverse geometry if top boot part */
2011 if (info->cfi_version < 0x3131) {
2012 /* CFI < 1.1, try to guess from device id */
2013 if ((info->device_id & 0x80) != 0)
2014 cfi_reverse_geometry(qry);
2015 } else if (flash_read_uchar(info, info->ext_addr + 0xf) == 3) {
2016 /* CFI >= 1.1, deduct from top/bottom flag */
2017 /* note: ext_addr is valid since cfi_version > 0 */
2018 cfi_reverse_geometry(qry);
2023 static void flash_fixup_atmel(flash_info_t *info, struct cfi_qry *qry)
2025 int reverse_geometry = 0;
2027 /* Check the "top boot" bit in the PRI */
2028 if (info->ext_addr && !(flash_read_uchar(info, info->ext_addr + 6) & 1))
2029 reverse_geometry = 1;
2031 /* AT49BV6416(T) list the erase regions in the wrong order.
2032 * However, the device ID is identical with the non-broken
2033 * AT49BV642D they differ in the high byte.
2035 if (info->device_id == 0xd6 || info->device_id == 0xd2)
2036 reverse_geometry = !reverse_geometry;
2038 if (reverse_geometry)
2039 cfi_reverse_geometry(qry);
2042 static void flash_fixup_stm(flash_info_t *info, struct cfi_qry *qry)
2044 /* check if flash geometry needs reversal */
2045 if (qry->num_erase_regions > 1) {
2046 /* reverse geometry if top boot part */
2047 if (info->cfi_version < 0x3131) {
2048 /* CFI < 1.1, guess by device id */
2049 if (info->device_id == 0x22CA || /* M29W320DT */
2050 info->device_id == 0x2256 || /* M29W320ET */
2051 info->device_id == 0x22D7) { /* M29W800DT */
2052 cfi_reverse_geometry(qry);
2054 } else if (flash_read_uchar(info, info->ext_addr + 0xf) == 3) {
2055 /* CFI >= 1.1, deduct from top/bottom flag */
2056 /* note: ext_addr is valid since cfi_version > 0 */
2057 cfi_reverse_geometry(qry);
2062 static void flash_fixup_sst(flash_info_t *info, struct cfi_qry *qry)
2065 * SST, for many recent nor parallel flashes, says they are
2066 * CFI-conformant. This is not true, since qry struct.
2067 * reports a std. AMD command set (0x0002), while SST allows to
2068 * erase two different sector sizes for the same memory.
2069 * 64KB sector (SST call it block) needs 0x30 to be erased.
2070 * 4KB sector (SST call it sector) needs 0x50 to be erased.
2071 * Since CFI query detect the 4KB number of sectors, users expects
2072 * a sector granularity of 4KB, and it is here set.
2074 if (info->device_id == 0x5D23 || /* SST39VF3201B */
2075 info->device_id == 0x5C23) { /* SST39VF3202B */
2076 /* set sector granularity to 4KB */
2077 info->cmd_erase_sector = 0x50;
2081 static void flash_fixup_num(flash_info_t *info, struct cfi_qry *qry)
2084 * The M29EW devices seem to report the CFI information wrong
2085 * when it's in 8 bit mode.
2086 * There's an app note from Numonyx on this issue.
2087 * So adjust the buffer size for M29EW while operating in 8-bit mode
2089 if (qry->max_buf_write_size > 0x8 &&
2090 info->device_id == 0x7E &&
2091 (info->device_id2 == 0x2201 ||
2092 info->device_id2 == 0x2301 ||
2093 info->device_id2 == 0x2801 ||
2094 info->device_id2 == 0x4801)) {
2095 debug("Adjusted buffer size on Numonyx flash");
2096 debug(" M29EW family in 8 bit mode\n");
2097 qry->max_buf_write_size = 0x8;
2102 * The following code cannot be run from FLASH!
2105 ulong flash_get_size(phys_addr_t base, int banknum)
2107 flash_info_t *info = &flash_info[banknum];
2109 flash_sect_t sect_cnt;
2113 uchar num_erase_regions;
2114 int erase_region_size;
2115 int erase_region_count;
2117 unsigned long max_size;
2119 memset(&qry, 0, sizeof(qry));
2122 info->cfi_version = 0;
2123 #ifdef CONFIG_SYS_FLASH_PROTECTION
2124 info->legacy_unlock = 0;
2127 info->start[0] = (ulong)map_physmem(base, info->portwidth, MAP_NOCACHE);
2129 if (flash_detect_cfi(info, &qry)) {
2130 info->vendor = le16_to_cpu(get_unaligned(&qry.p_id));
2131 info->ext_addr = le16_to_cpu(get_unaligned(&qry.p_adr));
2132 num_erase_regions = qry.num_erase_regions;
2134 if (info->ext_addr) {
2135 info->cfi_version = (ushort)flash_read_uchar(info,
2136 info->ext_addr + 3) << 8;
2137 info->cfi_version |= (ushort)flash_read_uchar(info,
2138 info->ext_addr + 4);
2142 flash_printqry(&qry);
2145 switch (info->vendor) {
2146 case CFI_CMDSET_INTEL_PROG_REGIONS:
2147 case CFI_CMDSET_INTEL_STANDARD:
2148 case CFI_CMDSET_INTEL_EXTENDED:
2149 cmdset_intel_init(info, &qry);
2151 case CFI_CMDSET_AMD_STANDARD:
2152 case CFI_CMDSET_AMD_EXTENDED:
2153 cmdset_amd_init(info, &qry);
2156 printf("CFI: Unknown command set 0x%x\n",
2159 * Unfortunately, this means we don't know how
2160 * to get the chip back to Read mode. Might
2161 * as well try an Intel-style reset...
2163 flash_write_cmd(info, 0, 0, FLASH_CMD_RESET);
2167 /* Do manufacturer-specific fixups */
2168 switch (info->manufacturer_id) {
2169 case 0x0001: /* AMD */
2170 case 0x0037: /* AMIC */
2171 flash_fixup_amd(info, &qry);
2174 flash_fixup_atmel(info, &qry);
2177 flash_fixup_stm(info, &qry);
2179 case 0x00bf: /* SST */
2180 flash_fixup_sst(info, &qry);
2182 case 0x0089: /* Numonyx */
2183 flash_fixup_num(info, &qry);
2187 debug("manufacturer is %d\n", info->vendor);
2188 debug("manufacturer id is 0x%x\n", info->manufacturer_id);
2189 debug("device id is 0x%x\n", info->device_id);
2190 debug("device id2 is 0x%x\n", info->device_id2);
2191 debug("cfi version is 0x%04x\n", info->cfi_version);
2193 size_ratio = info->portwidth / info->chipwidth;
2194 /* if the chip is x8/x16 reduce the ratio by half */
2195 if (info->interface == FLASH_CFI_X8X16 &&
2196 info->chipwidth == FLASH_CFI_BY8) {
2199 debug("size_ratio %d port %d bits chip %d bits\n",
2200 size_ratio, info->portwidth << CFI_FLASH_SHIFT_WIDTH,
2201 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
2202 info->size = 1 << qry.dev_size;
2203 /* multiply the size by the number of chips */
2204 info->size *= size_ratio;
2205 max_size = cfi_flash_bank_size(banknum);
2206 if (max_size && info->size > max_size) {
2207 debug("[truncated from %ldMiB]", info->size >> 20);
2208 info->size = max_size;
2210 debug("found %d erase regions\n", num_erase_regions);
2213 for (i = 0; i < num_erase_regions; i++) {
2214 if (i > NUM_ERASE_REGIONS) {
2215 printf("%d erase regions found, only %d used\n",
2216 num_erase_regions, NUM_ERASE_REGIONS);
2220 tmp = le32_to_cpu(get_unaligned(
2221 &qry.erase_region_info[i]));
2222 debug("erase region %u: 0x%08lx\n", i, tmp);
2224 erase_region_count = (tmp & 0xffff) + 1;
2227 (tmp & 0xffff) ? ((tmp & 0xffff) * 256) : 128;
2228 debug("erase_region_count = %d ", erase_region_count);
2229 debug("erase_region_size = %d\n", erase_region_size);
2230 for (j = 0; j < erase_region_count; j++) {
2231 if (sector - base >= info->size)
2233 if (sect_cnt >= CONFIG_SYS_MAX_FLASH_SECT) {
2234 printf("ERROR: too many flash sectors\n");
2237 info->start[sect_cnt] =
2238 (ulong)map_physmem(sector,
2241 sector += (erase_region_size * size_ratio);
2244 * Only read protection status from
2245 * supported devices (intel...)
2247 switch (info->vendor) {
2248 case CFI_CMDSET_INTEL_PROG_REGIONS:
2249 case CFI_CMDSET_INTEL_EXTENDED:
2250 case CFI_CMDSET_INTEL_STANDARD:
2252 * Set flash to read-id mode. Otherwise
2253 * reading protected status is not
2256 flash_write_cmd(info, sect_cnt, 0,
2258 info->protect[sect_cnt] =
2259 flash_isset(info, sect_cnt,
2260 FLASH_OFFSET_PROTECT,
2261 FLASH_STATUS_PROTECT);
2262 flash_write_cmd(info, sect_cnt, 0,
2265 case CFI_CMDSET_AMD_EXTENDED:
2266 case CFI_CMDSET_AMD_STANDARD:
2267 if (!info->legacy_unlock) {
2268 /* default: not protected */
2269 info->protect[sect_cnt] = 0;
2273 /* Read protection (PPB) from sector */
2274 flash_write_cmd(info, 0, 0,
2276 flash_unlock_seq(info, 0);
2277 flash_write_cmd(info, 0,
2279 AMD_CMD_SET_PPB_ENTRY);
2280 info->protect[sect_cnt] =
2281 !flash_isset(info, sect_cnt,
2283 flash_write_cmd(info, 0, 0,
2287 /* default: not protected */
2288 info->protect[sect_cnt] = 0;
2295 info->sector_count = sect_cnt;
2296 info->buffer_size = 1 << le16_to_cpu(qry.max_buf_write_size);
2297 tmp = 1 << qry.block_erase_timeout_typ;
2298 info->erase_blk_tout = tmp *
2299 (1 << qry.block_erase_timeout_max);
2300 tmp = (1 << qry.buf_write_timeout_typ) *
2301 (1 << qry.buf_write_timeout_max);
2303 /* round up when converting to ms */
2304 info->buffer_write_tout = (tmp + 999) / 1000;
2305 tmp = (1 << qry.word_write_timeout_typ) *
2306 (1 << qry.word_write_timeout_max);
2307 /* round up when converting to ms */
2308 info->write_tout = (tmp + 999) / 1000;
2309 info->flash_id = FLASH_MAN_CFI;
2310 if (info->interface == FLASH_CFI_X8X16 &&
2311 info->chipwidth == FLASH_CFI_BY8) {
2312 /* XXX - Need to test on x8/x16 in parallel. */
2313 info->portwidth >>= 1;
2316 flash_write_cmd(info, 0, 0, info->cmd_reset);
2319 return (info->size);
2322 #ifdef CONFIG_FLASH_CFI_MTD
2323 void flash_set_verbose(uint v)
2329 static void cfi_flash_set_config_reg(u32 base, u16 val)
2331 #ifdef CONFIG_SYS_CFI_FLASH_CONFIG_REGS
2333 * Only set this config register if really defined
2334 * to a valid value (0xffff is invalid)
2340 * Set configuration register. Data is "encrypted" in the 16 lower
2343 flash_write16(FLASH_CMD_SETUP, (void *)(base + (val << 1)));
2344 flash_write16(FLASH_CMD_SET_CR_CONFIRM, (void *)(base + (val << 1)));
2347 * Finally issue reset-command to bring device back to
2350 flash_write16(FLASH_CMD_RESET, (void *)base);
2354 /*-----------------------------------------------------------------------
2357 static void flash_protect_default(void)
2359 #if defined(CONFIG_SYS_FLASH_AUTOPROTECT_LIST)
2364 } apl[] = CONFIG_SYS_FLASH_AUTOPROTECT_LIST;
2367 /* Monitor protection ON by default */
2368 #if defined(CONFIG_SYS_MONITOR_BASE) && \
2369 (CONFIG_SYS_MONITOR_BASE >= CONFIG_SYS_FLASH_BASE) && \
2370 (!defined(CONFIG_MONITOR_IS_IN_RAM))
2371 flash_protect(FLAG_PROTECT_SET,
2372 CONFIG_SYS_MONITOR_BASE,
2373 CONFIG_SYS_MONITOR_BASE + monitor_flash_len - 1,
2374 flash_get_info(CONFIG_SYS_MONITOR_BASE));
2377 /* Environment protection ON by default */
2378 #ifdef CONFIG_ENV_IS_IN_FLASH
2379 flash_protect(FLAG_PROTECT_SET,
2381 CONFIG_ENV_ADDR + CONFIG_ENV_SECT_SIZE - 1,
2382 flash_get_info(CONFIG_ENV_ADDR));
2385 /* Redundant environment protection ON by default */
2386 #ifdef CONFIG_ENV_ADDR_REDUND
2387 flash_protect(FLAG_PROTECT_SET,
2388 CONFIG_ENV_ADDR_REDUND,
2389 CONFIG_ENV_ADDR_REDUND + CONFIG_ENV_SECT_SIZE - 1,
2390 flash_get_info(CONFIG_ENV_ADDR_REDUND));
2393 #if defined(CONFIG_SYS_FLASH_AUTOPROTECT_LIST)
2394 for (i = 0; i < ARRAY_SIZE(apl); i++) {
2395 debug("autoprotecting from %08lx to %08lx\n",
2396 apl[i].start, apl[i].start + apl[i].size - 1);
2397 flash_protect(FLAG_PROTECT_SET,
2399 apl[i].start + apl[i].size - 1,
2400 flash_get_info(apl[i].start));
2405 unsigned long flash_init(void)
2407 unsigned long size = 0;
2410 #ifdef CONFIG_SYS_FLASH_PROTECTION
2411 /* read environment from EEPROM */
2414 env_get_f("unlock", s, sizeof(s));
2417 #ifdef CONFIG_CFI_FLASH /* for driver model */
2418 cfi_flash_init_dm();
2421 /* Init: no FLASHes known */
2422 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; ++i) {
2423 flash_info[i].flash_id = FLASH_UNKNOWN;
2425 /* Optionally write flash configuration register */
2426 cfi_flash_set_config_reg(cfi_flash_bank_addr(i),
2427 cfi_flash_config_reg(i));
2429 if (!flash_detect_legacy(cfi_flash_bank_addr(i), i))
2430 flash_get_size(cfi_flash_bank_addr(i), i);
2431 size += flash_info[i].size;
2432 if (flash_info[i].flash_id == FLASH_UNKNOWN) {
2433 #ifndef CONFIG_SYS_FLASH_QUIET_TEST
2434 printf("## Unknown flash on Bank %d ", i + 1);
2435 printf("- Size = 0x%08lx = %ld MB\n",
2437 flash_info[i].size >> 20);
2438 #endif /* CONFIG_SYS_FLASH_QUIET_TEST */
2440 #ifdef CONFIG_SYS_FLASH_PROTECTION
2441 else if (strcmp(s, "yes") == 0) {
2443 * Only the U-Boot image and it's environment
2444 * is protected, all other sectors are
2445 * unprotected (unlocked) if flash hardware
2446 * protection is used (CONFIG_SYS_FLASH_PROTECTION)
2447 * and the environment variable "unlock" is
2450 if (flash_info[i].legacy_unlock) {
2454 * Disable legacy_unlock temporarily,
2455 * since flash_real_protect would
2456 * relock all other sectors again
2459 flash_info[i].legacy_unlock = 0;
2462 * Legacy unlocking (e.g. Intel J3) ->
2463 * unlock only one sector. This will
2464 * unlock all sectors.
2466 flash_real_protect(&flash_info[i], 0, 0);
2468 flash_info[i].legacy_unlock = 1;
2471 * Manually mark other sectors as
2472 * unlocked (unprotected)
2474 for (k = 1; k < flash_info[i].sector_count; k++)
2475 flash_info[i].protect[k] = 0;
2478 * No legancy unlocking -> unlock all sectors
2480 flash_protect(FLAG_PROTECT_CLEAR,
2481 flash_info[i].start[0],
2482 flash_info[i].start[0]
2483 + flash_info[i].size - 1,
2487 #endif /* CONFIG_SYS_FLASH_PROTECTION */
2490 flash_protect_default();
2491 #ifdef CONFIG_FLASH_CFI_MTD
2498 #ifdef CONFIG_CFI_FLASH /* for driver model */
2499 static int cfi_flash_probe(struct udevice *dev)
2504 for (idx = 0; idx < CFI_MAX_FLASH_BANKS; idx++) {
2505 addr = dev_read_addr_index(dev, idx);
2506 if (addr == FDT_ADDR_T_NONE)
2509 flash_info[cfi_flash_num_flash_banks].dev = dev;
2510 flash_info[cfi_flash_num_flash_banks].base = addr;
2511 cfi_flash_num_flash_banks++;
2513 gd->bd->bi_flashstart = flash_info[0].base;
2518 static const struct udevice_id cfi_flash_ids[] = {
2519 { .compatible = "cfi-flash" },
2520 { .compatible = "jedec-flash" },
2524 U_BOOT_DRIVER(cfi_flash) = {
2525 .name = "cfi_flash",
2527 .of_match = cfi_flash_ids,
2528 .probe = cfi_flash_probe,
2530 #endif /* CONFIG_CFI_FLASH */