2 * (C) Copyright 2002-2004
3 * Brad Kemp, Seranoa Networks, Brad.Kemp@seranoa.com
5 * Copyright (C) 2003 Arabella Software Ltd.
6 * Yuli Barcohen <yuli@arabellasw.com>
12 * Tolunay Orkun <listmember@orkun.us>
14 * SPDX-License-Identifier: GPL-2.0+
17 /* The DEBUG define must be before common to enable debugging */
24 #include <fdt_support.h>
25 #include <asm/processor.h>
27 #include <asm/byteorder.h>
28 #include <asm/unaligned.h>
29 #include <environment.h>
30 #include <mtd/cfi_flash.h>
34 * This file implements a Common Flash Interface (CFI) driver for
37 * The width of the port and the width of the chips are determined at
38 * initialization. These widths are used to calculate the address for
39 * access CFI data structures.
42 * JEDEC Standard JESD68 - Common Flash Interface (CFI)
43 * JEDEC Standard JEP137-A Common Flash Interface (CFI) ID Codes
44 * Intel Application Note 646 Common Flash Interface (CFI) and Command Sets
45 * Intel 290667-008 3 Volt Intel StrataFlash Memory datasheet
46 * AMD CFI Specification, Release 2.0 December 1, 2001
47 * AMD/Spansion Application Note: Migration from Single-byte to Three-byte
48 * Device IDs, Publication Number 25538 Revision A, November 8, 2001
50 * Define CONFIG_SYS_WRITE_SWAPPED_DATA, if you have to swap the Bytes between
51 * reading and writing ... (yes there is such a Hardware).
54 DECLARE_GLOBAL_DATA_PTR;
56 static uint flash_offset_cfi[2] = { FLASH_OFFSET_CFI, FLASH_OFFSET_CFI_ALT };
57 #ifdef CONFIG_FLASH_CFI_MTD
58 static uint flash_verbose = 1;
60 #define flash_verbose 1
63 flash_info_t flash_info[CFI_MAX_FLASH_BANKS]; /* FLASH chips info */
66 * Check if chip width is defined. If not, start detecting with 8bit.
68 #ifndef CONFIG_SYS_FLASH_CFI_WIDTH
69 #define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_8BIT
72 #ifdef CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS
73 #define __maybe_weak __weak
75 #define __maybe_weak static
79 * 0xffff is an undefined value for the configuration register. When
80 * this value is returned, the configuration register shall not be
81 * written at all (default mode).
83 static u16 cfi_flash_config_reg(int i)
85 #ifdef CONFIG_SYS_CFI_FLASH_CONFIG_REGS
86 return ((u16 [])CONFIG_SYS_CFI_FLASH_CONFIG_REGS)[i];
92 #if defined(CONFIG_SYS_MAX_FLASH_BANKS_DETECT)
93 int cfi_flash_num_flash_banks = CONFIG_SYS_MAX_FLASH_BANKS_DETECT;
96 #ifdef CONFIG_CFI_FLASH /* for driver model */
97 static void cfi_flash_init_dm(void)
101 cfi_flash_num_flash_banks = 0;
103 * The uclass_first_device() will probe the first device and
104 * uclass_next_device() will probe the rest if they exist. So
105 * that cfi_flash_probe() will get called assigning the base
106 * addresses that are available.
108 for (uclass_first_device(UCLASS_MTD, &dev);
110 uclass_next_device(&dev)) {
114 static phys_addr_t cfi_flash_base[CFI_MAX_FLASH_BANKS];
116 phys_addr_t cfi_flash_bank_addr(int i)
118 return cfi_flash_base[i];
121 __weak phys_addr_t cfi_flash_bank_addr(int i)
123 return ((phys_addr_t [])CONFIG_SYS_FLASH_BANKS_LIST)[i];
127 __weak unsigned long cfi_flash_bank_size(int i)
129 #ifdef CONFIG_SYS_FLASH_BANKS_SIZES
130 return ((unsigned long [])CONFIG_SYS_FLASH_BANKS_SIZES)[i];
136 __maybe_weak void flash_write8(u8 value, void *addr)
138 __raw_writeb(value, addr);
141 __maybe_weak void flash_write16(u16 value, void *addr)
143 __raw_writew(value, addr);
146 __maybe_weak void flash_write32(u32 value, void *addr)
148 __raw_writel(value, addr);
151 __maybe_weak void flash_write64(u64 value, void *addr)
153 /* No architectures currently implement __raw_writeq() */
154 *(volatile u64 *)addr = value;
157 __maybe_weak u8 flash_read8(void *addr)
159 return __raw_readb(addr);
162 __maybe_weak u16 flash_read16(void *addr)
164 return __raw_readw(addr);
167 __maybe_weak u32 flash_read32(void *addr)
169 return __raw_readl(addr);
172 __maybe_weak u64 flash_read64(void *addr)
174 /* No architectures currently implement __raw_readq() */
175 return *(volatile u64 *)addr;
178 /*-----------------------------------------------------------------------
180 #if defined(CONFIG_ENV_IS_IN_FLASH) || defined(CONFIG_ENV_ADDR_REDUND) || (CONFIG_SYS_MONITOR_BASE >= CONFIG_SYS_FLASH_BASE)
181 flash_info_t *flash_get_info(ulong base)
186 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
187 info = &flash_info[i];
188 if (info->size && info->start[0] <= base &&
189 base <= info->start[0] + info->size - 1)
197 unsigned long flash_sector_size(flash_info_t *info, flash_sect_t sect)
199 if (sect != (info->sector_count - 1))
200 return info->start[sect + 1] - info->start[sect];
202 return info->start[0] + info->size - info->start[sect];
205 /*-----------------------------------------------------------------------
206 * create an address based on the offset and the port width
209 flash_map (flash_info_t * info, flash_sect_t sect, uint offset)
211 unsigned int byte_offset = offset * info->portwidth;
213 return (void *)(info->start[sect] + byte_offset);
216 static inline void flash_unmap(flash_info_t *info, flash_sect_t sect,
217 unsigned int offset, void *addr)
221 /*-----------------------------------------------------------------------
222 * make a proper sized command based on the port and chip widths
224 static void flash_make_cmd(flash_info_t *info, u32 cmd, void *cmdbuf)
229 #if defined(__LITTLE_ENDIAN) || defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
230 u32 cmd_le = cpu_to_le32(cmd);
233 uchar *cp = (uchar *) cmdbuf;
235 for (i = info->portwidth; i > 0; i--){
236 cword_offset = (info->portwidth-i)%info->chipwidth;
237 #if defined(__LITTLE_ENDIAN) || defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
238 cp_offset = info->portwidth - i;
239 val = *((uchar*)&cmd_le + cword_offset);
242 val = *((uchar*)&cmd + sizeof(u32) - cword_offset - 1);
244 cp[cp_offset] = (cword_offset >= sizeof(u32)) ? 0x00 : val;
249 /*-----------------------------------------------------------------------
252 static void print_longlong (char *str, unsigned long long data)
258 for (i = 0; i < 8; i++)
259 sprintf (&str[i * 2], "%2.2x", *cp++);
262 static void flash_printqry (struct cfi_qry *qry)
267 for (x = 0; x < sizeof(struct cfi_qry); x += 16) {
269 for (y = 0; y < 16; y++)
270 debug("%2.2x ", p[x + y]);
272 for (y = 0; y < 16; y++) {
273 unsigned char c = p[x + y];
274 if (c >= 0x20 && c <= 0x7e)
285 /*-----------------------------------------------------------------------
286 * read a character at a port width address
288 static inline uchar flash_read_uchar (flash_info_t * info, uint offset)
293 cp = flash_map (info, 0, offset);
294 #if defined(__LITTLE_ENDIAN) || defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
295 retval = flash_read8(cp);
297 retval = flash_read8(cp + info->portwidth - 1);
299 flash_unmap (info, 0, offset, cp);
303 /*-----------------------------------------------------------------------
304 * read a word at a port width address, assume 16bit bus
306 static inline ushort flash_read_word (flash_info_t * info, uint offset)
308 ushort *addr, retval;
310 addr = flash_map (info, 0, offset);
311 retval = flash_read16 (addr);
312 flash_unmap (info, 0, offset, addr);
317 /*-----------------------------------------------------------------------
318 * read a long word by picking the least significant byte of each maximum
319 * port size word. Swap for ppc format.
321 static ulong flash_read_long (flash_info_t * info, flash_sect_t sect,
330 addr = flash_map (info, sect, offset);
333 debug ("long addr is at %p info->portwidth = %d\n", addr,
335 for (x = 0; x < 4 * info->portwidth; x++) {
336 debug ("addr[%x] = 0x%x\n", x, flash_read8(addr + x));
339 #if defined(__LITTLE_ENDIAN) || defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
340 retval = ((flash_read8(addr) << 16) |
341 (flash_read8(addr + info->portwidth) << 24) |
342 (flash_read8(addr + 2 * info->portwidth)) |
343 (flash_read8(addr + 3 * info->portwidth) << 8));
345 retval = ((flash_read8(addr + 2 * info->portwidth - 1) << 24) |
346 (flash_read8(addr + info->portwidth - 1) << 16) |
347 (flash_read8(addr + 4 * info->portwidth - 1) << 8) |
348 (flash_read8(addr + 3 * info->portwidth - 1)));
350 flash_unmap(info, sect, offset, addr);
356 * Write a proper sized command to the correct address
358 void flash_write_cmd (flash_info_t * info, flash_sect_t sect,
359 uint offset, u32 cmd)
365 addr = flash_map (info, sect, offset);
366 flash_make_cmd (info, cmd, &cword);
367 switch (info->portwidth) {
369 debug ("fwc addr %p cmd %x %x 8bit x %d bit\n", addr, cmd,
370 cword.w8, info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
371 flash_write8(cword.w8, addr);
373 case FLASH_CFI_16BIT:
374 debug ("fwc addr %p cmd %x %4.4x 16bit x %d bit\n", addr,
376 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
377 flash_write16(cword.w16, addr);
379 case FLASH_CFI_32BIT:
380 debug ("fwc addr %p cmd %x %8.8x 32bit x %d bit\n", addr,
382 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
383 flash_write32(cword.w32, addr);
385 case FLASH_CFI_64BIT:
390 print_longlong (str, cword.w64);
392 debug ("fwrite addr %p cmd %x %s 64 bit x %d bit\n",
394 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
397 flash_write64(cword.w64, addr);
401 /* Ensure all the instructions are fully finished */
404 flash_unmap(info, sect, offset, addr);
407 static void flash_unlock_seq (flash_info_t * info, flash_sect_t sect)
409 flash_write_cmd (info, sect, info->addr_unlock1, AMD_CMD_UNLOCK_START);
410 flash_write_cmd (info, sect, info->addr_unlock2, AMD_CMD_UNLOCK_ACK);
413 /*-----------------------------------------------------------------------
415 static int flash_isequal (flash_info_t * info, flash_sect_t sect,
416 uint offset, uchar cmd)
422 addr = flash_map (info, sect, offset);
423 flash_make_cmd (info, cmd, &cword);
425 debug ("is= cmd %x(%c) addr %p ", cmd, cmd, addr);
426 switch (info->portwidth) {
428 debug ("is= %x %x\n", flash_read8(addr), cword.w8);
429 retval = (flash_read8(addr) == cword.w8);
431 case FLASH_CFI_16BIT:
432 debug ("is= %4.4x %4.4x\n", flash_read16(addr), cword.w16);
433 retval = (flash_read16(addr) == cword.w16);
435 case FLASH_CFI_32BIT:
436 debug ("is= %8.8x %8.8x\n", flash_read32(addr), cword.w32);
437 retval = (flash_read32(addr) == cword.w32);
439 case FLASH_CFI_64BIT:
445 print_longlong (str1, flash_read64(addr));
446 print_longlong (str2, cword.w64);
447 debug ("is= %s %s\n", str1, str2);
450 retval = (flash_read64(addr) == cword.w64);
456 flash_unmap(info, sect, offset, addr);
461 /*-----------------------------------------------------------------------
463 static int flash_isset (flash_info_t * info, flash_sect_t sect,
464 uint offset, uchar cmd)
470 addr = flash_map (info, sect, offset);
471 flash_make_cmd (info, cmd, &cword);
472 switch (info->portwidth) {
474 retval = ((flash_read8(addr) & cword.w8) == cword.w8);
476 case FLASH_CFI_16BIT:
477 retval = ((flash_read16(addr) & cword.w16) == cword.w16);
479 case FLASH_CFI_32BIT:
480 retval = ((flash_read32(addr) & cword.w32) == cword.w32);
482 case FLASH_CFI_64BIT:
483 retval = ((flash_read64(addr) & cword.w64) == cword.w64);
489 flash_unmap(info, sect, offset, addr);
494 /*-----------------------------------------------------------------------
496 static int flash_toggle (flash_info_t * info, flash_sect_t sect,
497 uint offset, uchar cmd)
503 addr = flash_map (info, sect, offset);
504 flash_make_cmd (info, cmd, &cword);
505 switch (info->portwidth) {
507 retval = flash_read8(addr) != flash_read8(addr);
509 case FLASH_CFI_16BIT:
510 retval = flash_read16(addr) != flash_read16(addr);
512 case FLASH_CFI_32BIT:
513 retval = flash_read32(addr) != flash_read32(addr);
515 case FLASH_CFI_64BIT:
516 retval = ( (flash_read32( addr ) != flash_read32( addr )) ||
517 (flash_read32(addr+4) != flash_read32(addr+4)) );
523 flash_unmap(info, sect, offset, addr);
529 * flash_is_busy - check to see if the flash is busy
531 * This routine checks the status of the chip and returns true if the
534 static int flash_is_busy (flash_info_t * info, flash_sect_t sect)
538 switch (info->vendor) {
539 case CFI_CMDSET_INTEL_PROG_REGIONS:
540 case CFI_CMDSET_INTEL_STANDARD:
541 case CFI_CMDSET_INTEL_EXTENDED:
542 retval = !flash_isset (info, sect, 0, FLASH_STATUS_DONE);
544 case CFI_CMDSET_AMD_STANDARD:
545 case CFI_CMDSET_AMD_EXTENDED:
546 #ifdef CONFIG_FLASH_CFI_LEGACY
547 case CFI_CMDSET_AMD_LEGACY:
549 retval = flash_toggle (info, sect, 0, AMD_STATUS_TOGGLE);
554 debug ("flash_is_busy: %d\n", retval);
558 /*-----------------------------------------------------------------------
559 * wait for XSR.7 to be set. Time out with an error if it does not.
560 * This routine does not set the flash to read-array mode.
562 static int flash_status_check (flash_info_t * info, flash_sect_t sector,
563 ulong tout, char *prompt)
567 #if CONFIG_SYS_HZ != 1000
568 if ((ulong)CONFIG_SYS_HZ > 100000)
569 tout *= (ulong)CONFIG_SYS_HZ / 1000; /* for a big HZ, avoid overflow */
571 tout = DIV_ROUND_UP(tout * (ulong)CONFIG_SYS_HZ, 1000);
574 /* Wait for command completion */
575 #ifdef CONFIG_SYS_LOW_RES_TIMER
578 start = get_timer (0);
580 while (flash_is_busy (info, sector)) {
581 if (get_timer (start) > tout) {
582 printf ("Flash %s timeout at address %lx data %lx\n",
583 prompt, info->start[sector],
584 flash_read_long (info, sector, 0));
585 flash_write_cmd (info, sector, 0, info->cmd_reset);
589 udelay (1); /* also triggers watchdog */
594 /*-----------------------------------------------------------------------
595 * Wait for XSR.7 to be set, if it times out print an error, otherwise
596 * do a full status check.
598 * This routine sets the flash to read-array mode.
600 static int flash_full_status_check (flash_info_t * info, flash_sect_t sector,
601 ulong tout, char *prompt)
605 retcode = flash_status_check (info, sector, tout, prompt);
606 switch (info->vendor) {
607 case CFI_CMDSET_INTEL_PROG_REGIONS:
608 case CFI_CMDSET_INTEL_EXTENDED:
609 case CFI_CMDSET_INTEL_STANDARD:
610 if ((retcode == ERR_OK)
611 && !flash_isequal (info, sector, 0, FLASH_STATUS_DONE)) {
613 printf ("Flash %s error at address %lx\n", prompt,
614 info->start[sector]);
615 if (flash_isset (info, sector, 0, FLASH_STATUS_ECLBS |
616 FLASH_STATUS_PSLBS)) {
617 puts ("Command Sequence Error.\n");
618 } else if (flash_isset (info, sector, 0,
619 FLASH_STATUS_ECLBS)) {
620 puts ("Block Erase Error.\n");
621 retcode = ERR_NOT_ERASED;
622 } else if (flash_isset (info, sector, 0,
623 FLASH_STATUS_PSLBS)) {
624 puts ("Locking Error\n");
626 if (flash_isset (info, sector, 0, FLASH_STATUS_DPS)) {
627 puts ("Block locked.\n");
628 retcode = ERR_PROTECTED;
630 if (flash_isset (info, sector, 0, FLASH_STATUS_VPENS))
631 puts ("Vpp Low Error.\n");
633 flash_write_cmd (info, sector, 0, info->cmd_reset);
642 static int use_flash_status_poll(flash_info_t *info)
644 #ifdef CONFIG_SYS_CFI_FLASH_STATUS_POLL
645 if (info->vendor == CFI_CMDSET_AMD_EXTENDED ||
646 info->vendor == CFI_CMDSET_AMD_STANDARD)
652 static int flash_status_poll(flash_info_t *info, void *src, void *dst,
653 ulong tout, char *prompt)
655 #ifdef CONFIG_SYS_CFI_FLASH_STATUS_POLL
659 #if CONFIG_SYS_HZ != 1000
660 if ((ulong)CONFIG_SYS_HZ > 100000)
661 tout *= (ulong)CONFIG_SYS_HZ / 1000; /* for a big HZ, avoid overflow */
663 tout = DIV_ROUND_UP(tout * (ulong)CONFIG_SYS_HZ, 1000);
666 /* Wait for command completion */
667 #ifdef CONFIG_SYS_LOW_RES_TIMER
670 start = get_timer(0);
673 switch (info->portwidth) {
675 ready = flash_read8(dst) == flash_read8(src);
677 case FLASH_CFI_16BIT:
678 ready = flash_read16(dst) == flash_read16(src);
680 case FLASH_CFI_32BIT:
681 ready = flash_read32(dst) == flash_read32(src);
683 case FLASH_CFI_64BIT:
684 ready = flash_read64(dst) == flash_read64(src);
692 if (get_timer(start) > tout) {
693 printf("Flash %s timeout at address %lx data %lx\n",
694 prompt, (ulong)dst, (ulong)flash_read8(dst));
697 udelay(1); /* also triggers watchdog */
699 #endif /* CONFIG_SYS_CFI_FLASH_STATUS_POLL */
703 /*-----------------------------------------------------------------------
705 static void flash_add_byte (flash_info_t * info, cfiword_t * cword, uchar c)
707 #if defined(__LITTLE_ENDIAN) && !defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
710 unsigned long long ll;
713 switch (info->portwidth) {
717 case FLASH_CFI_16BIT:
718 #if defined(__LITTLE_ENDIAN) && !defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
721 cword->w16 = (cword->w16 >> 8) | w;
723 cword->w16 = (cword->w16 << 8) | c;
726 case FLASH_CFI_32BIT:
727 #if defined(__LITTLE_ENDIAN) && !defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
730 cword->w32 = (cword->w32 >> 8) | l;
732 cword->w32 = (cword->w32 << 8) | c;
735 case FLASH_CFI_64BIT:
736 #if defined(__LITTLE_ENDIAN) && !defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
739 cword->w64 = (cword->w64 >> 8) | ll;
741 cword->w64 = (cword->w64 << 8) | c;
748 * Loop through the sector table starting from the previously found sector.
749 * Searches forwards or backwards, dependent on the passed address.
751 static flash_sect_t find_sector (flash_info_t * info, ulong addr)
753 static flash_sect_t saved_sector; /* previously found sector */
754 static flash_info_t *saved_info; /* previously used flash bank */
755 flash_sect_t sector = saved_sector;
757 if ((info != saved_info) || (sector >= info->sector_count))
760 while ((info->start[sector] < addr)
761 && (sector < info->sector_count - 1))
763 while ((info->start[sector] > addr) && (sector > 0))
765 * also decrements the sector in case of an overshot
770 saved_sector = sector;
775 /*-----------------------------------------------------------------------
777 static int flash_write_cfiword (flash_info_t * info, ulong dest,
780 void *dstaddr = (void *)dest;
782 flash_sect_t sect = 0;
785 /* Check if Flash is (sufficiently) erased */
786 switch (info->portwidth) {
788 flag = ((flash_read8(dstaddr) & cword.w8) == cword.w8);
790 case FLASH_CFI_16BIT:
791 flag = ((flash_read16(dstaddr) & cword.w16) == cword.w16);
793 case FLASH_CFI_32BIT:
794 flag = ((flash_read32(dstaddr) & cword.w32) == cword.w32);
796 case FLASH_CFI_64BIT:
797 flag = ((flash_read64(dstaddr) & cword.w64) == cword.w64);
804 return ERR_NOT_ERASED;
806 /* Disable interrupts which might cause a timeout here */
807 flag = disable_interrupts ();
809 switch (info->vendor) {
810 case CFI_CMDSET_INTEL_PROG_REGIONS:
811 case CFI_CMDSET_INTEL_EXTENDED:
812 case CFI_CMDSET_INTEL_STANDARD:
813 flash_write_cmd (info, 0, 0, FLASH_CMD_CLEAR_STATUS);
814 flash_write_cmd (info, 0, 0, FLASH_CMD_WRITE);
816 case CFI_CMDSET_AMD_EXTENDED:
817 case CFI_CMDSET_AMD_STANDARD:
818 sect = find_sector(info, dest);
819 flash_unlock_seq (info, sect);
820 flash_write_cmd (info, sect, info->addr_unlock1, AMD_CMD_WRITE);
823 #ifdef CONFIG_FLASH_CFI_LEGACY
824 case CFI_CMDSET_AMD_LEGACY:
825 sect = find_sector(info, dest);
826 flash_unlock_seq (info, 0);
827 flash_write_cmd (info, 0, info->addr_unlock1, AMD_CMD_WRITE);
833 switch (info->portwidth) {
835 flash_write8(cword.w8, dstaddr);
837 case FLASH_CFI_16BIT:
838 flash_write16(cword.w16, dstaddr);
840 case FLASH_CFI_32BIT:
841 flash_write32(cword.w32, dstaddr);
843 case FLASH_CFI_64BIT:
844 flash_write64(cword.w64, dstaddr);
848 /* re-enable interrupts if necessary */
850 enable_interrupts ();
853 sect = find_sector (info, dest);
855 if (use_flash_status_poll(info))
856 return flash_status_poll(info, &cword, dstaddr,
857 info->write_tout, "write");
859 return flash_full_status_check(info, sect,
860 info->write_tout, "write");
863 #ifdef CONFIG_SYS_FLASH_USE_BUFFER_WRITE
865 static int flash_write_cfibuffer (flash_info_t * info, ulong dest, uchar * cp,
872 void *dst = (void *)dest;
879 switch (info->portwidth) {
883 case FLASH_CFI_16BIT:
886 case FLASH_CFI_32BIT:
889 case FLASH_CFI_64BIT:
899 while ((cnt-- > 0) && (flag == 1)) {
900 switch (info->portwidth) {
902 flag = ((flash_read8(dst2) & flash_read8(src)) ==
906 case FLASH_CFI_16BIT:
907 flag = ((flash_read16(dst2) & flash_read16(src)) ==
911 case FLASH_CFI_32BIT:
912 flag = ((flash_read32(dst2) & flash_read32(src)) ==
916 case FLASH_CFI_64BIT:
917 flag = ((flash_read64(dst2) & flash_read64(src)) ==
924 retcode = ERR_NOT_ERASED;
929 sector = find_sector (info, dest);
931 switch (info->vendor) {
932 case CFI_CMDSET_INTEL_PROG_REGIONS:
933 case CFI_CMDSET_INTEL_STANDARD:
934 case CFI_CMDSET_INTEL_EXTENDED:
935 write_cmd = (info->vendor == CFI_CMDSET_INTEL_PROG_REGIONS) ?
936 FLASH_CMD_WRITE_BUFFER_PROG : FLASH_CMD_WRITE_TO_BUFFER;
937 flash_write_cmd (info, sector, 0, FLASH_CMD_CLEAR_STATUS);
938 flash_write_cmd (info, sector, 0, FLASH_CMD_READ_STATUS);
939 flash_write_cmd (info, sector, 0, write_cmd);
940 retcode = flash_status_check (info, sector,
941 info->buffer_write_tout,
943 if (retcode == ERR_OK) {
944 /* reduce the number of loops by the width of
947 flash_write_cmd (info, sector, 0, cnt - 1);
949 switch (info->portwidth) {
951 flash_write8(flash_read8(src), dst);
954 case FLASH_CFI_16BIT:
955 flash_write16(flash_read16(src), dst);
958 case FLASH_CFI_32BIT:
959 flash_write32(flash_read32(src), dst);
962 case FLASH_CFI_64BIT:
963 flash_write64(flash_read64(src), dst);
971 flash_write_cmd (info, sector, 0,
972 FLASH_CMD_WRITE_BUFFER_CONFIRM);
973 retcode = flash_full_status_check (
974 info, sector, info->buffer_write_tout,
980 case CFI_CMDSET_AMD_STANDARD:
981 case CFI_CMDSET_AMD_EXTENDED:
982 flash_unlock_seq(info,0);
984 #ifdef CONFIG_FLASH_SPANSION_S29WS_N
985 offset = ((unsigned long)dst - info->start[sector]) >> shift;
987 flash_write_cmd(info, sector, offset, AMD_CMD_WRITE_TO_BUFFER);
989 flash_write_cmd(info, sector, offset, cnt - 1);
991 switch (info->portwidth) {
994 flash_write8(flash_read8(src), dst);
998 case FLASH_CFI_16BIT:
1000 flash_write16(flash_read16(src), dst);
1004 case FLASH_CFI_32BIT:
1006 flash_write32(flash_read32(src), dst);
1010 case FLASH_CFI_64BIT:
1012 flash_write64(flash_read64(src), dst);
1017 retcode = ERR_INVAL;
1021 flash_write_cmd (info, sector, 0, AMD_CMD_WRITE_BUFFER_CONFIRM);
1022 if (use_flash_status_poll(info))
1023 retcode = flash_status_poll(info, src - (1 << shift),
1025 info->buffer_write_tout,
1028 retcode = flash_full_status_check(info, sector,
1029 info->buffer_write_tout,
1034 debug ("Unknown Command Set\n");
1035 retcode = ERR_INVAL;
1042 #endif /* CONFIG_SYS_FLASH_USE_BUFFER_WRITE */
1045 /*-----------------------------------------------------------------------
1047 int flash_erase (flash_info_t * info, int s_first, int s_last)
1054 if (info->flash_id != FLASH_MAN_CFI) {
1055 puts ("Can't erase unknown flash type - aborted\n");
1058 if ((s_first < 0) || (s_first > s_last)) {
1059 puts ("- no sectors to erase\n");
1064 for (sect = s_first; sect <= s_last; ++sect) {
1065 if (info->protect[sect]) {
1070 printf ("- Warning: %d protected sectors will not be erased!\n",
1072 } else if (flash_verbose) {
1077 for (sect = s_first; sect <= s_last; sect++) {
1083 if (info->protect[sect] == 0) { /* not protected */
1084 #ifdef CONFIG_SYS_FLASH_CHECK_BLANK_BEFORE_ERASE
1091 * Check if whole sector is erased
1093 size = flash_sector_size(info, sect);
1095 flash = (u32 *)info->start[sect];
1096 /* divide by 4 for longword access */
1098 for (k = 0; k < size; k++) {
1099 if (flash_read32(flash++) != 0xffffffff) {
1110 switch (info->vendor) {
1111 case CFI_CMDSET_INTEL_PROG_REGIONS:
1112 case CFI_CMDSET_INTEL_STANDARD:
1113 case CFI_CMDSET_INTEL_EXTENDED:
1114 flash_write_cmd (info, sect, 0,
1115 FLASH_CMD_CLEAR_STATUS);
1116 flash_write_cmd (info, sect, 0,
1117 FLASH_CMD_BLOCK_ERASE);
1118 flash_write_cmd (info, sect, 0,
1119 FLASH_CMD_ERASE_CONFIRM);
1121 case CFI_CMDSET_AMD_STANDARD:
1122 case CFI_CMDSET_AMD_EXTENDED:
1123 flash_unlock_seq (info, sect);
1124 flash_write_cmd (info, sect,
1126 AMD_CMD_ERASE_START);
1127 flash_unlock_seq (info, sect);
1128 flash_write_cmd (info, sect, 0,
1129 info->cmd_erase_sector);
1131 #ifdef CONFIG_FLASH_CFI_LEGACY
1132 case CFI_CMDSET_AMD_LEGACY:
1133 flash_unlock_seq (info, 0);
1134 flash_write_cmd (info, 0, info->addr_unlock1,
1135 AMD_CMD_ERASE_START);
1136 flash_unlock_seq (info, 0);
1137 flash_write_cmd (info, sect, 0,
1138 AMD_CMD_ERASE_SECTOR);
1142 debug ("Unkown flash vendor %d\n",
1147 if (use_flash_status_poll(info)) {
1150 cword.w64 = 0xffffffffffffffffULL;
1151 dest = flash_map(info, sect, 0);
1152 st = flash_status_poll(info, &cword, dest,
1153 info->erase_blk_tout, "erase");
1154 flash_unmap(info, sect, 0, dest);
1156 st = flash_full_status_check(info, sect,
1157 info->erase_blk_tout,
1161 else if (flash_verbose)
1172 #ifdef CONFIG_SYS_FLASH_EMPTY_INFO
1173 static int sector_erased(flash_info_t *info, int i)
1180 * Check if whole sector is erased
1182 size = flash_sector_size(info, i);
1183 flash = (u32 *)info->start[i];
1184 /* divide by 4 for longword access */
1187 for (k = 0; k < size; k++) {
1188 if (flash_read32(flash++) != 0xffffffff)
1189 return 0; /* not erased */
1192 return 1; /* erased */
1194 #endif /* CONFIG_SYS_FLASH_EMPTY_INFO */
1196 void flash_print_info (flash_info_t * info)
1200 if (info->flash_id != FLASH_MAN_CFI) {
1201 puts ("missing or unknown FLASH type\n");
1205 printf ("%s flash (%d x %d)",
1207 (info->portwidth << 3), (info->chipwidth << 3));
1208 if (info->size < 1024*1024)
1209 printf (" Size: %ld kB in %d Sectors\n",
1210 info->size >> 10, info->sector_count);
1212 printf (" Size: %ld MB in %d Sectors\n",
1213 info->size >> 20, info->sector_count);
1215 switch (info->vendor) {
1216 case CFI_CMDSET_INTEL_PROG_REGIONS:
1217 printf ("Intel Prog Regions");
1219 case CFI_CMDSET_INTEL_STANDARD:
1220 printf ("Intel Standard");
1222 case CFI_CMDSET_INTEL_EXTENDED:
1223 printf ("Intel Extended");
1225 case CFI_CMDSET_AMD_STANDARD:
1226 printf ("AMD Standard");
1228 case CFI_CMDSET_AMD_EXTENDED:
1229 printf ("AMD Extended");
1231 #ifdef CONFIG_FLASH_CFI_LEGACY
1232 case CFI_CMDSET_AMD_LEGACY:
1233 printf ("AMD Legacy");
1237 printf ("Unknown (%d)", info->vendor);
1240 printf (" command set, Manufacturer ID: 0x%02X, Device ID: 0x",
1241 info->manufacturer_id);
1242 printf (info->chipwidth == FLASH_CFI_16BIT ? "%04X" : "%02X",
1244 if ((info->device_id & 0xff) == 0x7E) {
1245 printf(info->chipwidth == FLASH_CFI_16BIT ? "%04X" : "%02X",
1248 if ((info->vendor == CFI_CMDSET_AMD_STANDARD) && (info->legacy_unlock))
1249 printf("\n Advanced Sector Protection (PPB) enabled");
1250 printf ("\n Erase timeout: %ld ms, write timeout: %ld ms\n",
1251 info->erase_blk_tout,
1253 if (info->buffer_size > 1) {
1254 printf (" Buffer write timeout: %ld ms, "
1255 "buffer size: %d bytes\n",
1256 info->buffer_write_tout,
1260 puts ("\n Sector Start Addresses:");
1261 for (i = 0; i < info->sector_count; ++i) {
1266 #ifdef CONFIG_SYS_FLASH_EMPTY_INFO
1267 /* print empty and read-only info */
1268 printf (" %08lX %c %s ",
1270 sector_erased(info, i) ? 'E' : ' ',
1271 info->protect[i] ? "RO" : " ");
1272 #else /* ! CONFIG_SYS_FLASH_EMPTY_INFO */
1273 printf (" %08lX %s ",
1275 info->protect[i] ? "RO" : " ");
1282 /*-----------------------------------------------------------------------
1283 * This is used in a few places in write_buf() to show programming
1284 * progress. Making it a function is nasty because it needs to do side
1285 * effect updates to digit and dots. Repeated code is nasty too, so
1286 * we define it once here.
1288 #ifdef CONFIG_FLASH_SHOW_PROGRESS
1289 #define FLASH_SHOW_PROGRESS(scale, dots, digit, dots_sub) \
1290 if (flash_verbose) { \
1292 if ((scale > 0) && (dots <= 0)) { \
1293 if ((digit % 5) == 0) \
1294 printf ("%d", digit / 5); \
1302 #define FLASH_SHOW_PROGRESS(scale, dots, digit, dots_sub)
1305 /*-----------------------------------------------------------------------
1306 * Copy memory to flash, returns:
1309 * 2 - Flash not erased
1311 int write_buff (flash_info_t * info, uchar * src, ulong addr, ulong cnt)
1318 #ifdef CONFIG_SYS_FLASH_USE_BUFFER_WRITE
1321 #ifdef CONFIG_FLASH_SHOW_PROGRESS
1322 int digit = CONFIG_FLASH_SHOW_PROGRESS;
1327 * Suppress if there are fewer than CONFIG_FLASH_SHOW_PROGRESS writes.
1329 if (cnt >= CONFIG_FLASH_SHOW_PROGRESS) {
1330 scale = (int)((cnt + CONFIG_FLASH_SHOW_PROGRESS - 1) /
1331 CONFIG_FLASH_SHOW_PROGRESS);
1335 /* get lower aligned address */
1336 wp = (addr & ~(info->portwidth - 1));
1338 /* handle unaligned start */
1339 if ((aln = addr - wp) != 0) {
1342 for (i = 0; i < aln; ++i)
1343 flash_add_byte (info, &cword, flash_read8(p + i));
1345 for (; (i < info->portwidth) && (cnt > 0); i++) {
1346 flash_add_byte (info, &cword, *src++);
1349 for (; (cnt == 0) && (i < info->portwidth); ++i)
1350 flash_add_byte (info, &cword, flash_read8(p + i));
1352 rc = flash_write_cfiword (info, wp, cword);
1357 FLASH_SHOW_PROGRESS(scale, dots, digit, i);
1360 /* handle the aligned part */
1361 #ifdef CONFIG_SYS_FLASH_USE_BUFFER_WRITE
1362 buffered_size = (info->portwidth / info->chipwidth);
1363 buffered_size *= info->buffer_size;
1364 while (cnt >= info->portwidth) {
1365 /* prohibit buffer write when buffer_size is 1 */
1366 if (info->buffer_size == 1) {
1368 for (i = 0; i < info->portwidth; i++)
1369 flash_add_byte (info, &cword, *src++);
1370 if ((rc = flash_write_cfiword (info, wp, cword)) != 0)
1372 wp += info->portwidth;
1373 cnt -= info->portwidth;
1377 /* write buffer until next buffered_size aligned boundary */
1378 i = buffered_size - (wp % buffered_size);
1381 if ((rc = flash_write_cfibuffer (info, wp, src, i)) != ERR_OK)
1383 i -= i & (info->portwidth - 1);
1387 FLASH_SHOW_PROGRESS(scale, dots, digit, i);
1388 /* Only check every once in a while */
1389 if ((cnt & 0xFFFF) < buffered_size && ctrlc())
1393 while (cnt >= info->portwidth) {
1395 for (i = 0; i < info->portwidth; i++) {
1396 flash_add_byte (info, &cword, *src++);
1398 if ((rc = flash_write_cfiword (info, wp, cword)) != 0)
1400 wp += info->portwidth;
1401 cnt -= info->portwidth;
1402 FLASH_SHOW_PROGRESS(scale, dots, digit, info->portwidth);
1403 /* Only check every once in a while */
1404 if ((cnt & 0xFFFF) < info->portwidth && ctrlc())
1407 #endif /* CONFIG_SYS_FLASH_USE_BUFFER_WRITE */
1414 * handle unaligned tail bytes
1418 for (i = 0; (i < info->portwidth) && (cnt > 0); ++i) {
1419 flash_add_byte (info, &cword, *src++);
1422 for (; i < info->portwidth; ++i)
1423 flash_add_byte (info, &cword, flash_read8(p + i));
1425 return flash_write_cfiword (info, wp, cword);
1428 static inline int manufact_match(flash_info_t *info, u32 manu)
1430 return info->manufacturer_id == ((manu & FLASH_VENDMASK) >> 16);
1433 /*-----------------------------------------------------------------------
1435 #ifdef CONFIG_SYS_FLASH_PROTECTION
1437 static int cfi_protect_bugfix(flash_info_t *info, long sector, int prot)
1439 if (manufact_match(info, INTEL_MANUFACT)
1440 && info->device_id == NUMONYX_256MBIT) {
1443 * "Numonyx Axcell P33/P30 Specification Update" :)
1445 flash_write_cmd(info, sector, 0, FLASH_CMD_READ_ID);
1446 if (!flash_isequal(info, sector, FLASH_OFFSET_PROTECT,
1449 * cmd must come before FLASH_CMD_PROTECT + 20us
1450 * Disable interrupts which might cause a timeout here.
1452 int flag = disable_interrupts();
1456 cmd = FLASH_CMD_PROTECT_SET;
1458 cmd = FLASH_CMD_PROTECT_CLEAR;
1459 flash_write_cmd(info, sector, 0,
1461 flash_write_cmd(info, sector, 0, cmd);
1462 /* re-enable interrupts if necessary */
1464 enable_interrupts();
1471 int flash_real_protect (flash_info_t * info, long sector, int prot)
1475 switch (info->vendor) {
1476 case CFI_CMDSET_INTEL_PROG_REGIONS:
1477 case CFI_CMDSET_INTEL_STANDARD:
1478 case CFI_CMDSET_INTEL_EXTENDED:
1479 if (!cfi_protect_bugfix(info, sector, prot)) {
1480 flash_write_cmd(info, sector, 0,
1481 FLASH_CMD_CLEAR_STATUS);
1482 flash_write_cmd(info, sector, 0,
1485 flash_write_cmd(info, sector, 0,
1486 FLASH_CMD_PROTECT_SET);
1488 flash_write_cmd(info, sector, 0,
1489 FLASH_CMD_PROTECT_CLEAR);
1493 case CFI_CMDSET_AMD_EXTENDED:
1494 case CFI_CMDSET_AMD_STANDARD:
1495 /* U-Boot only checks the first byte */
1496 if (manufact_match(info, ATM_MANUFACT)) {
1498 flash_unlock_seq (info, 0);
1499 flash_write_cmd (info, 0,
1501 ATM_CMD_SOFTLOCK_START);
1502 flash_unlock_seq (info, 0);
1503 flash_write_cmd (info, sector, 0,
1506 flash_write_cmd (info, 0,
1508 AMD_CMD_UNLOCK_START);
1509 if (info->device_id == ATM_ID_BV6416)
1510 flash_write_cmd (info, sector,
1511 0, ATM_CMD_UNLOCK_SECT);
1514 if (info->legacy_unlock) {
1515 int flag = disable_interrupts();
1518 flash_unlock_seq(info, 0);
1519 flash_write_cmd(info, 0, info->addr_unlock1,
1520 AMD_CMD_SET_PPB_ENTRY);
1521 lock_flag = flash_isset(info, sector, 0, 0x01);
1524 flash_write_cmd(info, sector, 0,
1525 AMD_CMD_PPB_LOCK_BC1);
1526 flash_write_cmd(info, sector, 0,
1527 AMD_CMD_PPB_LOCK_BC2);
1529 debug("sector %ld %slocked\n", sector,
1530 lock_flag ? "" : "already ");
1533 debug("unlock %ld\n", sector);
1534 flash_write_cmd(info, 0, 0,
1535 AMD_CMD_PPB_UNLOCK_BC1);
1536 flash_write_cmd(info, 0, 0,
1537 AMD_CMD_PPB_UNLOCK_BC2);
1539 debug("sector %ld %sunlocked\n", sector,
1540 !lock_flag ? "" : "already ");
1543 enable_interrupts();
1545 if (flash_status_check(info, sector,
1546 info->erase_blk_tout,
1547 prot ? "protect" : "unprotect"))
1548 printf("status check error\n");
1550 flash_write_cmd(info, 0, 0,
1551 AMD_CMD_SET_PPB_EXIT_BC1);
1552 flash_write_cmd(info, 0, 0,
1553 AMD_CMD_SET_PPB_EXIT_BC2);
1556 #ifdef CONFIG_FLASH_CFI_LEGACY
1557 case CFI_CMDSET_AMD_LEGACY:
1558 flash_write_cmd (info, sector, 0, FLASH_CMD_CLEAR_STATUS);
1559 flash_write_cmd (info, sector, 0, FLASH_CMD_PROTECT);
1561 flash_write_cmd (info, sector, 0, FLASH_CMD_PROTECT_SET);
1563 flash_write_cmd (info, sector, 0, FLASH_CMD_PROTECT_CLEAR);
1568 * Flash needs to be in status register read mode for
1569 * flash_full_status_check() to work correctly
1571 flash_write_cmd(info, sector, 0, FLASH_CMD_READ_STATUS);
1573 flash_full_status_check (info, sector, info->erase_blk_tout,
1574 prot ? "protect" : "unprotect")) == 0) {
1576 info->protect[sector] = prot;
1579 * On some of Intel's flash chips (marked via legacy_unlock)
1580 * unprotect unprotects all locking.
1582 if ((prot == 0) && (info->legacy_unlock)) {
1585 for (i = 0; i < info->sector_count; i++) {
1586 if (info->protect[i])
1587 flash_real_protect (info, i, 1);
1594 /*-----------------------------------------------------------------------
1595 * flash_read_user_serial - read the OneTimeProgramming cells
1597 void flash_read_user_serial (flash_info_t * info, void *buffer, int offset,
1604 src = flash_map (info, 0, FLASH_OFFSET_USER_PROTECTION);
1605 flash_write_cmd (info, 0, 0, FLASH_CMD_READ_ID);
1606 memcpy (dst, src + offset, len);
1607 flash_write_cmd (info, 0, 0, info->cmd_reset);
1609 flash_unmap(info, 0, FLASH_OFFSET_USER_PROTECTION, src);
1613 * flash_read_factory_serial - read the device Id from the protection area
1615 void flash_read_factory_serial (flash_info_t * info, void *buffer, int offset,
1620 src = flash_map (info, 0, FLASH_OFFSET_INTEL_PROTECTION);
1621 flash_write_cmd (info, 0, 0, FLASH_CMD_READ_ID);
1622 memcpy (buffer, src + offset, len);
1623 flash_write_cmd (info, 0, 0, info->cmd_reset);
1625 flash_unmap(info, 0, FLASH_OFFSET_INTEL_PROTECTION, src);
1628 #endif /* CONFIG_SYS_FLASH_PROTECTION */
1630 /*-----------------------------------------------------------------------
1631 * Reverse the order of the erase regions in the CFI QRY structure.
1632 * This is needed for chips that are either a) correctly detected as
1633 * top-boot, or b) buggy.
1635 static void cfi_reverse_geometry(struct cfi_qry *qry)
1640 for (i = 0, j = qry->num_erase_regions - 1; i < j; i++, j--) {
1641 tmp = get_unaligned(&(qry->erase_region_info[i]));
1642 put_unaligned(get_unaligned(&(qry->erase_region_info[j])),
1643 &(qry->erase_region_info[i]));
1644 put_unaligned(tmp, &(qry->erase_region_info[j]));
1648 /*-----------------------------------------------------------------------
1649 * read jedec ids from device and set corresponding fields in info struct
1651 * Note: assume cfi->vendor, cfi->portwidth and cfi->chipwidth are correct
1654 static void cmdset_intel_read_jedec_ids(flash_info_t *info)
1656 flash_write_cmd(info, 0, 0, FLASH_CMD_RESET);
1658 flash_write_cmd(info, 0, 0, FLASH_CMD_READ_ID);
1659 udelay(1000); /* some flash are slow to respond */
1660 info->manufacturer_id = flash_read_uchar (info,
1661 FLASH_OFFSET_MANUFACTURER_ID);
1662 info->device_id = (info->chipwidth == FLASH_CFI_16BIT) ?
1663 flash_read_word (info, FLASH_OFFSET_DEVICE_ID) :
1664 flash_read_uchar (info, FLASH_OFFSET_DEVICE_ID);
1665 flash_write_cmd(info, 0, 0, FLASH_CMD_RESET);
1668 static int cmdset_intel_init(flash_info_t *info, struct cfi_qry *qry)
1670 info->cmd_reset = FLASH_CMD_RESET;
1672 cmdset_intel_read_jedec_ids(info);
1673 flash_write_cmd(info, 0, info->cfi_offset, FLASH_CMD_CFI);
1675 #ifdef CONFIG_SYS_FLASH_PROTECTION
1676 /* read legacy lock/unlock bit from intel flash */
1677 if (info->ext_addr) {
1678 info->legacy_unlock = flash_read_uchar (info,
1679 info->ext_addr + 5) & 0x08;
1686 static void cmdset_amd_read_jedec_ids(flash_info_t *info)
1691 flash_write_cmd(info, 0, 0, AMD_CMD_RESET);
1692 flash_unlock_seq(info, 0);
1693 flash_write_cmd(info, 0, info->addr_unlock1, FLASH_CMD_READ_ID);
1694 udelay(1000); /* some flash are slow to respond */
1696 manuId = flash_read_uchar (info, FLASH_OFFSET_MANUFACTURER_ID);
1697 /* JEDEC JEP106Z specifies ID codes up to bank 7 */
1698 while (manuId == FLASH_CONTINUATION_CODE && bankId < 0x800) {
1700 manuId = flash_read_uchar (info,
1701 bankId | FLASH_OFFSET_MANUFACTURER_ID);
1703 info->manufacturer_id = manuId;
1705 switch (info->chipwidth){
1706 case FLASH_CFI_8BIT:
1707 info->device_id = flash_read_uchar (info,
1708 FLASH_OFFSET_DEVICE_ID);
1709 if (info->device_id == 0x7E) {
1710 /* AMD 3-byte (expanded) device ids */
1711 info->device_id2 = flash_read_uchar (info,
1712 FLASH_OFFSET_DEVICE_ID2);
1713 info->device_id2 <<= 8;
1714 info->device_id2 |= flash_read_uchar (info,
1715 FLASH_OFFSET_DEVICE_ID3);
1718 case FLASH_CFI_16BIT:
1719 info->device_id = flash_read_word (info,
1720 FLASH_OFFSET_DEVICE_ID);
1721 if ((info->device_id & 0xff) == 0x7E) {
1722 /* AMD 3-byte (expanded) device ids */
1723 info->device_id2 = flash_read_uchar (info,
1724 FLASH_OFFSET_DEVICE_ID2);
1725 info->device_id2 <<= 8;
1726 info->device_id2 |= flash_read_uchar (info,
1727 FLASH_OFFSET_DEVICE_ID3);
1733 flash_write_cmd(info, 0, 0, AMD_CMD_RESET);
1737 static int cmdset_amd_init(flash_info_t *info, struct cfi_qry *qry)
1739 info->cmd_reset = AMD_CMD_RESET;
1740 info->cmd_erase_sector = AMD_CMD_ERASE_SECTOR;
1742 cmdset_amd_read_jedec_ids(info);
1743 flash_write_cmd(info, 0, info->cfi_offset, FLASH_CMD_CFI);
1745 #ifdef CONFIG_SYS_FLASH_PROTECTION
1746 if (info->ext_addr) {
1747 /* read sector protect/unprotect scheme (at 0x49) */
1748 if (flash_read_uchar(info, info->ext_addr + 9) == 0x8)
1749 info->legacy_unlock = 1;
1756 #ifdef CONFIG_FLASH_CFI_LEGACY
1757 static void flash_read_jedec_ids (flash_info_t * info)
1759 info->manufacturer_id = 0;
1760 info->device_id = 0;
1761 info->device_id2 = 0;
1763 switch (info->vendor) {
1764 case CFI_CMDSET_INTEL_PROG_REGIONS:
1765 case CFI_CMDSET_INTEL_STANDARD:
1766 case CFI_CMDSET_INTEL_EXTENDED:
1767 cmdset_intel_read_jedec_ids(info);
1769 case CFI_CMDSET_AMD_STANDARD:
1770 case CFI_CMDSET_AMD_EXTENDED:
1771 cmdset_amd_read_jedec_ids(info);
1778 /*-----------------------------------------------------------------------
1779 * Call board code to request info about non-CFI flash.
1780 * board_flash_get_legacy needs to fill in at least:
1781 * info->portwidth, info->chipwidth and info->interface for Jedec probing.
1783 static int flash_detect_legacy(phys_addr_t base, int banknum)
1785 flash_info_t *info = &flash_info[banknum];
1787 if (board_flash_get_legacy(base, banknum, info)) {
1788 /* board code may have filled info completely. If not, we
1789 use JEDEC ID probing. */
1790 if (!info->vendor) {
1792 CFI_CMDSET_AMD_STANDARD,
1793 CFI_CMDSET_INTEL_STANDARD
1797 for (i = 0; i < ARRAY_SIZE(modes); i++) {
1798 info->vendor = modes[i];
1800 (ulong)map_physmem(base,
1803 if (info->portwidth == FLASH_CFI_8BIT
1804 && info->interface == FLASH_CFI_X8X16) {
1805 info->addr_unlock1 = 0x2AAA;
1806 info->addr_unlock2 = 0x5555;
1808 info->addr_unlock1 = 0x5555;
1809 info->addr_unlock2 = 0x2AAA;
1811 flash_read_jedec_ids(info);
1812 debug("JEDEC PROBE: ID %x %x %x\n",
1813 info->manufacturer_id,
1816 if (jedec_flash_match(info, info->start[0]))
1819 unmap_physmem((void *)info->start[0],
1824 switch(info->vendor) {
1825 case CFI_CMDSET_INTEL_PROG_REGIONS:
1826 case CFI_CMDSET_INTEL_STANDARD:
1827 case CFI_CMDSET_INTEL_EXTENDED:
1828 info->cmd_reset = FLASH_CMD_RESET;
1830 case CFI_CMDSET_AMD_STANDARD:
1831 case CFI_CMDSET_AMD_EXTENDED:
1832 case CFI_CMDSET_AMD_LEGACY:
1833 info->cmd_reset = AMD_CMD_RESET;
1836 info->flash_id = FLASH_MAN_CFI;
1839 return 0; /* use CFI */
1842 static inline int flash_detect_legacy(phys_addr_t base, int banknum)
1844 return 0; /* use CFI */
1848 /*-----------------------------------------------------------------------
1849 * detect if flash is compatible with the Common Flash Interface (CFI)
1850 * http://www.jedec.org/download/search/jesd68.pdf
1852 static void flash_read_cfi (flash_info_t *info, void *buf,
1853 unsigned int start, size_t len)
1858 for (i = 0; i < len; i++)
1859 p[i] = flash_read_uchar(info, start + i);
1862 static void __flash_cmd_reset(flash_info_t *info)
1865 * We do not yet know what kind of commandset to use, so we issue
1866 * the reset command in both Intel and AMD variants, in the hope
1867 * that AMD flash roms ignore the Intel command.
1869 flash_write_cmd(info, 0, 0, AMD_CMD_RESET);
1871 flash_write_cmd(info, 0, 0, FLASH_CMD_RESET);
1873 void flash_cmd_reset(flash_info_t *info)
1874 __attribute__((weak,alias("__flash_cmd_reset")));
1876 static int __flash_detect_cfi (flash_info_t * info, struct cfi_qry *qry)
1880 /* Issue FLASH reset command */
1881 flash_cmd_reset(info);
1883 for (cfi_offset = 0; cfi_offset < ARRAY_SIZE(flash_offset_cfi);
1885 flash_write_cmd (info, 0, flash_offset_cfi[cfi_offset],
1887 if (flash_isequal (info, 0, FLASH_OFFSET_CFI_RESP, 'Q')
1888 && flash_isequal (info, 0, FLASH_OFFSET_CFI_RESP + 1, 'R')
1889 && flash_isequal (info, 0, FLASH_OFFSET_CFI_RESP + 2, 'Y')) {
1890 flash_read_cfi(info, qry, FLASH_OFFSET_CFI_RESP,
1891 sizeof(struct cfi_qry));
1892 info->interface = le16_to_cpu(qry->interface_desc);
1894 info->cfi_offset = flash_offset_cfi[cfi_offset];
1895 debug ("device interface is %d\n",
1897 debug ("found port %d chip %d ",
1898 info->portwidth, info->chipwidth);
1899 debug ("port %d bits chip %d bits\n",
1900 info->portwidth << CFI_FLASH_SHIFT_WIDTH,
1901 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
1903 /* calculate command offsets as in the Linux driver */
1904 info->addr_unlock1 = 0x555;
1905 info->addr_unlock2 = 0x2aa;
1908 * modify the unlock address if we are
1909 * in compatibility mode
1911 if ( /* x8/x16 in x8 mode */
1912 ((info->chipwidth == FLASH_CFI_BY8) &&
1913 (info->interface == FLASH_CFI_X8X16)) ||
1914 /* x16/x32 in x16 mode */
1915 ((info->chipwidth == FLASH_CFI_BY16) &&
1916 (info->interface == FLASH_CFI_X16X32)))
1918 info->addr_unlock1 = 0xaaa;
1919 info->addr_unlock2 = 0x555;
1922 info->name = "CFI conformant";
1930 static int flash_detect_cfi (flash_info_t * info, struct cfi_qry *qry)
1932 debug ("flash detect cfi\n");
1934 for (info->portwidth = CONFIG_SYS_FLASH_CFI_WIDTH;
1935 info->portwidth <= FLASH_CFI_64BIT; info->portwidth <<= 1) {
1936 for (info->chipwidth = FLASH_CFI_BY8;
1937 info->chipwidth <= info->portwidth;
1938 info->chipwidth <<= 1)
1939 if (__flash_detect_cfi(info, qry))
1942 debug ("not found\n");
1947 * Manufacturer-specific quirks. Add workarounds for geometry
1948 * reversal, etc. here.
1950 static void flash_fixup_amd(flash_info_t *info, struct cfi_qry *qry)
1952 /* check if flash geometry needs reversal */
1953 if (qry->num_erase_regions > 1) {
1954 /* reverse geometry if top boot part */
1955 if (info->cfi_version < 0x3131) {
1956 /* CFI < 1.1, try to guess from device id */
1957 if ((info->device_id & 0x80) != 0)
1958 cfi_reverse_geometry(qry);
1959 } else if (flash_read_uchar(info, info->ext_addr + 0xf) == 3) {
1960 /* CFI >= 1.1, deduct from top/bottom flag */
1961 /* note: ext_addr is valid since cfi_version > 0 */
1962 cfi_reverse_geometry(qry);
1967 static void flash_fixup_atmel(flash_info_t *info, struct cfi_qry *qry)
1969 int reverse_geometry = 0;
1971 /* Check the "top boot" bit in the PRI */
1972 if (info->ext_addr && !(flash_read_uchar(info, info->ext_addr + 6) & 1))
1973 reverse_geometry = 1;
1975 /* AT49BV6416(T) list the erase regions in the wrong order.
1976 * However, the device ID is identical with the non-broken
1977 * AT49BV642D they differ in the high byte.
1979 if (info->device_id == 0xd6 || info->device_id == 0xd2)
1980 reverse_geometry = !reverse_geometry;
1982 if (reverse_geometry)
1983 cfi_reverse_geometry(qry);
1986 static void flash_fixup_stm(flash_info_t *info, struct cfi_qry *qry)
1988 /* check if flash geometry needs reversal */
1989 if (qry->num_erase_regions > 1) {
1990 /* reverse geometry if top boot part */
1991 if (info->cfi_version < 0x3131) {
1992 /* CFI < 1.1, guess by device id */
1993 if (info->device_id == 0x22CA || /* M29W320DT */
1994 info->device_id == 0x2256 || /* M29W320ET */
1995 info->device_id == 0x22D7) { /* M29W800DT */
1996 cfi_reverse_geometry(qry);
1998 } else if (flash_read_uchar(info, info->ext_addr + 0xf) == 3) {
1999 /* CFI >= 1.1, deduct from top/bottom flag */
2000 /* note: ext_addr is valid since cfi_version > 0 */
2001 cfi_reverse_geometry(qry);
2006 static void flash_fixup_sst(flash_info_t *info, struct cfi_qry *qry)
2009 * SST, for many recent nor parallel flashes, says they are
2010 * CFI-conformant. This is not true, since qry struct.
2011 * reports a std. AMD command set (0x0002), while SST allows to
2012 * erase two different sector sizes for the same memory.
2013 * 64KB sector (SST call it block) needs 0x30 to be erased.
2014 * 4KB sector (SST call it sector) needs 0x50 to be erased.
2015 * Since CFI query detect the 4KB number of sectors, users expects
2016 * a sector granularity of 4KB, and it is here set.
2018 if (info->device_id == 0x5D23 || /* SST39VF3201B */
2019 info->device_id == 0x5C23) { /* SST39VF3202B */
2020 /* set sector granularity to 4KB */
2021 info->cmd_erase_sector=0x50;
2025 static void flash_fixup_num(flash_info_t *info, struct cfi_qry *qry)
2028 * The M29EW devices seem to report the CFI information wrong
2029 * when it's in 8 bit mode.
2030 * There's an app note from Numonyx on this issue.
2031 * So adjust the buffer size for M29EW while operating in 8-bit mode
2033 if (((qry->max_buf_write_size) > 0x8) &&
2034 (info->device_id == 0x7E) &&
2035 (info->device_id2 == 0x2201 ||
2036 info->device_id2 == 0x2301 ||
2037 info->device_id2 == 0x2801 ||
2038 info->device_id2 == 0x4801)) {
2039 debug("Adjusted buffer size on Numonyx flash"
2040 " M29EW family in 8 bit mode\n");
2041 qry->max_buf_write_size = 0x8;
2046 * The following code cannot be run from FLASH!
2049 ulong flash_get_size (phys_addr_t base, int banknum)
2051 flash_info_t *info = &flash_info[banknum];
2053 flash_sect_t sect_cnt;
2057 uchar num_erase_regions;
2058 int erase_region_size;
2059 int erase_region_count;
2061 unsigned long max_size;
2063 memset(&qry, 0, sizeof(qry));
2066 info->cfi_version = 0;
2067 #ifdef CONFIG_SYS_FLASH_PROTECTION
2068 info->legacy_unlock = 0;
2071 info->start[0] = (ulong)map_physmem(base, info->portwidth, MAP_NOCACHE);
2073 if (flash_detect_cfi (info, &qry)) {
2074 info->vendor = le16_to_cpu(get_unaligned(&(qry.p_id)));
2075 info->ext_addr = le16_to_cpu(get_unaligned(&(qry.p_adr)));
2076 num_erase_regions = qry.num_erase_regions;
2078 if (info->ext_addr) {
2079 info->cfi_version = (ushort) flash_read_uchar (info,
2080 info->ext_addr + 3) << 8;
2081 info->cfi_version |= (ushort) flash_read_uchar (info,
2082 info->ext_addr + 4);
2086 flash_printqry (&qry);
2089 switch (info->vendor) {
2090 case CFI_CMDSET_INTEL_PROG_REGIONS:
2091 case CFI_CMDSET_INTEL_STANDARD:
2092 case CFI_CMDSET_INTEL_EXTENDED:
2093 cmdset_intel_init(info, &qry);
2095 case CFI_CMDSET_AMD_STANDARD:
2096 case CFI_CMDSET_AMD_EXTENDED:
2097 cmdset_amd_init(info, &qry);
2100 printf("CFI: Unknown command set 0x%x\n",
2103 * Unfortunately, this means we don't know how
2104 * to get the chip back to Read mode. Might
2105 * as well try an Intel-style reset...
2107 flash_write_cmd(info, 0, 0, FLASH_CMD_RESET);
2111 /* Do manufacturer-specific fixups */
2112 switch (info->manufacturer_id) {
2113 case 0x0001: /* AMD */
2114 case 0x0037: /* AMIC */
2115 flash_fixup_amd(info, &qry);
2118 flash_fixup_atmel(info, &qry);
2121 flash_fixup_stm(info, &qry);
2123 case 0x00bf: /* SST */
2124 flash_fixup_sst(info, &qry);
2126 case 0x0089: /* Numonyx */
2127 flash_fixup_num(info, &qry);
2131 debug ("manufacturer is %d\n", info->vendor);
2132 debug ("manufacturer id is 0x%x\n", info->manufacturer_id);
2133 debug ("device id is 0x%x\n", info->device_id);
2134 debug ("device id2 is 0x%x\n", info->device_id2);
2135 debug ("cfi version is 0x%04x\n", info->cfi_version);
2137 size_ratio = info->portwidth / info->chipwidth;
2138 /* if the chip is x8/x16 reduce the ratio by half */
2139 if ((info->interface == FLASH_CFI_X8X16)
2140 && (info->chipwidth == FLASH_CFI_BY8)) {
2143 debug ("size_ratio %d port %d bits chip %d bits\n",
2144 size_ratio, info->portwidth << CFI_FLASH_SHIFT_WIDTH,
2145 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
2146 info->size = 1 << qry.dev_size;
2147 /* multiply the size by the number of chips */
2148 info->size *= size_ratio;
2149 max_size = cfi_flash_bank_size(banknum);
2150 if (max_size && (info->size > max_size)) {
2151 debug("[truncated from %ldMiB]", info->size >> 20);
2152 info->size = max_size;
2154 debug ("found %d erase regions\n", num_erase_regions);
2157 for (i = 0; i < num_erase_regions; i++) {
2158 if (i > NUM_ERASE_REGIONS) {
2159 printf ("%d erase regions found, only %d used\n",
2160 num_erase_regions, NUM_ERASE_REGIONS);
2164 tmp = le32_to_cpu(get_unaligned(
2165 &(qry.erase_region_info[i])));
2166 debug("erase region %u: 0x%08lx\n", i, tmp);
2168 erase_region_count = (tmp & 0xffff) + 1;
2171 (tmp & 0xffff) ? ((tmp & 0xffff) * 256) : 128;
2172 debug ("erase_region_count = %d erase_region_size = %d\n",
2173 erase_region_count, erase_region_size);
2174 for (j = 0; j < erase_region_count; j++) {
2175 if (sector - base >= info->size)
2177 if (sect_cnt >= CONFIG_SYS_MAX_FLASH_SECT) {
2178 printf("ERROR: too many flash sectors\n");
2181 info->start[sect_cnt] =
2182 (ulong)map_physmem(sector,
2185 sector += (erase_region_size * size_ratio);
2188 * Only read protection status from
2189 * supported devices (intel...)
2191 switch (info->vendor) {
2192 case CFI_CMDSET_INTEL_PROG_REGIONS:
2193 case CFI_CMDSET_INTEL_EXTENDED:
2194 case CFI_CMDSET_INTEL_STANDARD:
2196 * Set flash to read-id mode. Otherwise
2197 * reading protected status is not
2200 flash_write_cmd(info, sect_cnt, 0,
2202 info->protect[sect_cnt] =
2203 flash_isset (info, sect_cnt,
2204 FLASH_OFFSET_PROTECT,
2205 FLASH_STATUS_PROTECT);
2207 case CFI_CMDSET_AMD_EXTENDED:
2208 case CFI_CMDSET_AMD_STANDARD:
2209 if (!info->legacy_unlock) {
2210 /* default: not protected */
2211 info->protect[sect_cnt] = 0;
2215 /* Read protection (PPB) from sector */
2216 flash_write_cmd(info, 0, 0,
2218 flash_unlock_seq(info, 0);
2219 flash_write_cmd(info, 0,
2222 info->protect[sect_cnt] =
2225 FLASH_OFFSET_PROTECT,
2226 FLASH_STATUS_PROTECT);
2229 /* default: not protected */
2230 info->protect[sect_cnt] = 0;
2237 info->sector_count = sect_cnt;
2238 info->buffer_size = 1 << le16_to_cpu(qry.max_buf_write_size);
2239 tmp = 1 << qry.block_erase_timeout_typ;
2240 info->erase_blk_tout = tmp *
2241 (1 << qry.block_erase_timeout_max);
2242 tmp = (1 << qry.buf_write_timeout_typ) *
2243 (1 << qry.buf_write_timeout_max);
2245 /* round up when converting to ms */
2246 info->buffer_write_tout = (tmp + 999) / 1000;
2247 tmp = (1 << qry.word_write_timeout_typ) *
2248 (1 << qry.word_write_timeout_max);
2249 /* round up when converting to ms */
2250 info->write_tout = (tmp + 999) / 1000;
2251 info->flash_id = FLASH_MAN_CFI;
2252 if ((info->interface == FLASH_CFI_X8X16) &&
2253 (info->chipwidth == FLASH_CFI_BY8)) {
2254 /* XXX - Need to test on x8/x16 in parallel. */
2255 info->portwidth >>= 1;
2258 flash_write_cmd (info, 0, 0, info->cmd_reset);
2261 return (info->size);
2264 #ifdef CONFIG_FLASH_CFI_MTD
2265 void flash_set_verbose(uint v)
2271 static void cfi_flash_set_config_reg(u32 base, u16 val)
2273 #ifdef CONFIG_SYS_CFI_FLASH_CONFIG_REGS
2275 * Only set this config register if really defined
2276 * to a valid value (0xffff is invalid)
2282 * Set configuration register. Data is "encrypted" in the 16 lower
2285 flash_write16(FLASH_CMD_SETUP, (void *)(base + (val << 1)));
2286 flash_write16(FLASH_CMD_SET_CR_CONFIRM, (void *)(base + (val << 1)));
2289 * Finally issue reset-command to bring device back to
2292 flash_write16(FLASH_CMD_RESET, (void *)base);
2296 /*-----------------------------------------------------------------------
2299 void flash_protect_default(void)
2301 #if defined(CONFIG_SYS_FLASH_AUTOPROTECT_LIST)
2306 } apl[] = CONFIG_SYS_FLASH_AUTOPROTECT_LIST;
2309 /* Monitor protection ON by default */
2310 #if (CONFIG_SYS_MONITOR_BASE >= CONFIG_SYS_FLASH_BASE) && \
2311 (!defined(CONFIG_MONITOR_IS_IN_RAM))
2312 flash_protect(FLAG_PROTECT_SET,
2313 CONFIG_SYS_MONITOR_BASE,
2314 CONFIG_SYS_MONITOR_BASE + monitor_flash_len - 1,
2315 flash_get_info(CONFIG_SYS_MONITOR_BASE));
2318 /* Environment protection ON by default */
2319 #ifdef CONFIG_ENV_IS_IN_FLASH
2320 flash_protect(FLAG_PROTECT_SET,
2322 CONFIG_ENV_ADDR + CONFIG_ENV_SECT_SIZE - 1,
2323 flash_get_info(CONFIG_ENV_ADDR));
2326 /* Redundant environment protection ON by default */
2327 #ifdef CONFIG_ENV_ADDR_REDUND
2328 flash_protect(FLAG_PROTECT_SET,
2329 CONFIG_ENV_ADDR_REDUND,
2330 CONFIG_ENV_ADDR_REDUND + CONFIG_ENV_SECT_SIZE - 1,
2331 flash_get_info(CONFIG_ENV_ADDR_REDUND));
2334 #if defined(CONFIG_SYS_FLASH_AUTOPROTECT_LIST)
2335 for (i = 0; i < ARRAY_SIZE(apl); i++) {
2336 debug("autoprotecting from %08lx to %08lx\n",
2337 apl[i].start, apl[i].start + apl[i].size - 1);
2338 flash_protect(FLAG_PROTECT_SET,
2340 apl[i].start + apl[i].size - 1,
2341 flash_get_info(apl[i].start));
2346 unsigned long flash_init (void)
2348 unsigned long size = 0;
2351 #ifdef CONFIG_SYS_FLASH_PROTECTION
2352 /* read environment from EEPROM */
2354 getenv_f("unlock", s, sizeof(s));
2357 #ifdef CONFIG_CFI_FLASH /* for driver model */
2358 cfi_flash_init_dm();
2361 /* Init: no FLASHes known */
2362 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; ++i) {
2363 flash_info[i].flash_id = FLASH_UNKNOWN;
2365 /* Optionally write flash configuration register */
2366 cfi_flash_set_config_reg(cfi_flash_bank_addr(i),
2367 cfi_flash_config_reg(i));
2369 if (!flash_detect_legacy(cfi_flash_bank_addr(i), i))
2370 flash_get_size(cfi_flash_bank_addr(i), i);
2371 size += flash_info[i].size;
2372 if (flash_info[i].flash_id == FLASH_UNKNOWN) {
2373 #ifndef CONFIG_SYS_FLASH_QUIET_TEST
2374 printf ("## Unknown flash on Bank %d "
2375 "- Size = 0x%08lx = %ld MB\n",
2376 i+1, flash_info[i].size,
2377 flash_info[i].size >> 20);
2378 #endif /* CONFIG_SYS_FLASH_QUIET_TEST */
2380 #ifdef CONFIG_SYS_FLASH_PROTECTION
2381 else if (strcmp(s, "yes") == 0) {
2383 * Only the U-Boot image and it's environment
2384 * is protected, all other sectors are
2385 * unprotected (unlocked) if flash hardware
2386 * protection is used (CONFIG_SYS_FLASH_PROTECTION)
2387 * and the environment variable "unlock" is
2390 if (flash_info[i].legacy_unlock) {
2394 * Disable legacy_unlock temporarily,
2395 * since flash_real_protect would
2396 * relock all other sectors again
2399 flash_info[i].legacy_unlock = 0;
2402 * Legacy unlocking (e.g. Intel J3) ->
2403 * unlock only one sector. This will
2404 * unlock all sectors.
2406 flash_real_protect (&flash_info[i], 0, 0);
2408 flash_info[i].legacy_unlock = 1;
2411 * Manually mark other sectors as
2412 * unlocked (unprotected)
2414 for (k = 1; k < flash_info[i].sector_count; k++)
2415 flash_info[i].protect[k] = 0;
2418 * No legancy unlocking -> unlock all sectors
2420 flash_protect (FLAG_PROTECT_CLEAR,
2421 flash_info[i].start[0],
2422 flash_info[i].start[0]
2423 + flash_info[i].size - 1,
2427 #endif /* CONFIG_SYS_FLASH_PROTECTION */
2430 flash_protect_default();
2431 #ifdef CONFIG_FLASH_CFI_MTD
2438 #ifdef CONFIG_CFI_FLASH /* for driver model */
2439 static int cfi_flash_probe(struct udevice *dev)
2441 void *blob = (void *)gd->fdt_blob;
2442 int node = dev->of_offset;
2443 const fdt32_t *cell;
2445 int parent, addrc, sizec;
2448 parent = fdt_parent_offset(blob, node);
2449 of_bus_default_count_cells(blob, parent, &addrc, &sizec);
2450 /* decode regs, there may be multiple reg tuples. */
2451 cell = fdt_getprop(blob, node, "reg", &len);
2455 len /= sizeof(fdt32_t);
2457 addr = fdt_translate_address((void *)blob,
2459 cfi_flash_base[cfi_flash_num_flash_banks++] = addr;
2460 idx += addrc + sizec;
2462 gd->bd->bi_flashstart = cfi_flash_base[0];
2467 static const struct udevice_id cfi_flash_ids[] = {
2468 { .compatible = "cfi-flash" },
2469 { .compatible = "jedec-flash" },
2473 U_BOOT_DRIVER(cfi_flash) = {
2474 .name = "cfi_flash",
2476 .of_match = cfi_flash_ids,
2477 .probe = cfi_flash_probe,
2479 #endif /* CONFIG_CFI_FLASH */