blob: eebd641e36069770de38efd691771f958cb86561 [file] [log] [blame]
wdenk5653fc32004-02-08 22:55:38 +00001/*
wdenkbf9e3b32004-02-12 00:47:09 +00002 * (C) Copyright 2002-2004
wdenk5653fc32004-02-08 22:55:38 +00003 * Brad Kemp, Seranoa Networks, Brad.Kemp@seranoa.com
4 *
5 * Copyright (C) 2003 Arabella Software Ltd.
6 * Yuli Barcohen <yuli@arabellasw.com>
wdenk5653fc32004-02-08 22:55:38 +00007 *
wdenkbf9e3b32004-02-12 00:47:09 +00008 * Copyright (C) 2004
9 * Ed Okerson
Stefan Roese260421a2006-11-13 13:55:24 +010010 *
11 * Copyright (C) 2006
12 * Tolunay Orkun <listmember@orkun.us>
wdenkbf9e3b32004-02-12 00:47:09 +000013 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020014 * SPDX-License-Identifier: GPL-2.0+
wdenk5653fc32004-02-08 22:55:38 +000015 */
16
17/* The DEBUG define must be before common to enable debugging */
wdenk2d1a5372004-02-23 19:30:57 +000018/* #define DEBUG */
19
wdenk5653fc32004-02-08 22:55:38 +000020#include <common.h>
Simon Glass24b852a2015-11-08 23:47:45 -070021#include <console.h>
Thomas Chouf1056912015-11-07 14:31:08 +080022#include <dm.h>
23#include <errno.h>
24#include <fdt_support.h>
wdenk5653fc32004-02-08 22:55:38 +000025#include <asm/processor.h>
Haiying Wang3a197b22007-02-21 16:52:31 +010026#include <asm/io.h>
wdenk4c0d4c32004-06-09 17:34:58 +000027#include <asm/byteorder.h>
Andrew Gabbasovaedadf12013-05-14 12:27:52 -050028#include <asm/unaligned.h>
wdenk2a8af182005-04-13 10:02:42 +000029#include <environment.h>
Stefan Roesefa36ae72009-10-27 15:15:55 +010030#include <mtd/cfi_flash.h>
Jens Scharsig (BuS Elektronik)a9f5fab2012-01-27 09:29:53 +010031#include <watchdog.h>
wdenk028ab6b2004-02-23 23:54:43 +000032
wdenk5653fc32004-02-08 22:55:38 +000033/*
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +010034 * This file implements a Common Flash Interface (CFI) driver for
35 * U-Boot.
36 *
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.
wdenk5653fc32004-02-08 22:55:38 +000040 *
41 * References
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
Stefan Roese260421a2006-11-13 13:55:24 +010046 * 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
wdenk5653fc32004-02-08 22:55:38 +000049 *
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020050 * Define CONFIG_SYS_WRITE_SWAPPED_DATA, if you have to swap the Bytes between
Heiko Schocherd0b6e142007-01-19 18:05:26 +010051 * reading and writing ... (yes there is such a Hardware).
wdenk5653fc32004-02-08 22:55:38 +000052 */
53
Thomas Chouf1056912015-11-07 14:31:08 +080054DECLARE_GLOBAL_DATA_PTR;
55
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +010056static uint flash_offset_cfi[2] = { FLASH_OFFSET_CFI, FLASH_OFFSET_CFI_ALT };
Mike Frysinger4ffeab22010-12-22 09:41:13 -050057#ifdef CONFIG_FLASH_CFI_MTD
Piotr Ziecik6ea808e2008-11-17 15:49:32 +010058static uint flash_verbose = 1;
Mike Frysinger4ffeab22010-12-22 09:41:13 -050059#else
60#define flash_verbose 1
61#endif
Wolfgang Denk92eb7292006-12-27 01:26:13 +010062
Wolfgang Denk2a112b22008-08-08 16:39:54 +020063flash_info_t flash_info[CFI_MAX_FLASH_BANKS]; /* FLASH chips info */
64
Stefan Roese79b4cda2006-02-28 15:29:58 +010065/*
66 * Check if chip width is defined. If not, start detecting with 8bit.
67 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020068#ifndef CONFIG_SYS_FLASH_CFI_WIDTH
69#define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_8BIT
Stefan Roese79b4cda2006-02-28 15:29:58 +010070#endif
71
Jeroen Hofstee00dcb072014-10-08 22:57:23 +020072#ifdef CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS
73#define __maybe_weak __weak
74#else
75#define __maybe_weak static
76#endif
77
Stefan Roese6f726f92010-10-25 18:31:48 +020078/*
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).
82 */
83static u16 cfi_flash_config_reg(int i)
84{
85#ifdef CONFIG_SYS_CFI_FLASH_CONFIG_REGS
86 return ((u16 [])CONFIG_SYS_CFI_FLASH_CONFIG_REGS)[i];
87#else
88 return 0xffff;
89#endif
90}
91
Stefan Roeseca5def32010-08-31 10:00:10 +020092#if defined(CONFIG_SYS_MAX_FLASH_BANKS_DETECT)
93int cfi_flash_num_flash_banks = CONFIG_SYS_MAX_FLASH_BANKS_DETECT;
94#endif
95
Thomas Chouf1056912015-11-07 14:31:08 +080096#ifdef CONFIG_CFI_FLASH /* for driver model */
97static void cfi_flash_init_dm(void)
98{
99 struct udevice *dev;
100
101 cfi_flash_num_flash_banks = 0;
102 /*
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.
107 */
108 for (uclass_first_device(UCLASS_MTD, &dev);
109 dev;
110 uclass_next_device(&dev)) {
111 }
112}
113
Thomas Chouf1056912015-11-07 14:31:08 +0800114phys_addr_t cfi_flash_bank_addr(int i)
115{
Marek Vasut1ec0a372017-09-12 19:09:08 +0200116 return flash_info[i].base;
Thomas Chouf1056912015-11-07 14:31:08 +0800117}
118#else
Jeroen Hofstee00dcb072014-10-08 22:57:23 +0200119__weak phys_addr_t cfi_flash_bank_addr(int i)
Stefan Roeseb00e19c2010-08-30 10:11:51 +0200120{
121 return ((phys_addr_t [])CONFIG_SYS_FLASH_BANKS_LIST)[i];
122}
Thomas Chouf1056912015-11-07 14:31:08 +0800123#endif
Stefan Roeseb00e19c2010-08-30 10:11:51 +0200124
Jeroen Hofstee00dcb072014-10-08 22:57:23 +0200125__weak unsigned long cfi_flash_bank_size(int i)
Ilya Yanokec50a8e2010-10-21 17:20:12 +0200126{
127#ifdef CONFIG_SYS_FLASH_BANKS_SIZES
128 return ((unsigned long [])CONFIG_SYS_FLASH_BANKS_SIZES)[i];
129#else
130 return 0;
131#endif
132}
Ilya Yanokec50a8e2010-10-21 17:20:12 +0200133
Jeroen Hofstee00dcb072014-10-08 22:57:23 +0200134__maybe_weak void flash_write8(u8 value, void *addr)
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +0100135{
136 __raw_writeb(value, addr);
137}
138
Jeroen Hofstee00dcb072014-10-08 22:57:23 +0200139__maybe_weak void flash_write16(u16 value, void *addr)
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +0100140{
141 __raw_writew(value, addr);
142}
143
Jeroen Hofstee00dcb072014-10-08 22:57:23 +0200144__maybe_weak void flash_write32(u32 value, void *addr)
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +0100145{
146 __raw_writel(value, addr);
147}
148
Jeroen Hofstee00dcb072014-10-08 22:57:23 +0200149__maybe_weak void flash_write64(u64 value, void *addr)
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +0100150{
151 /* No architectures currently implement __raw_writeq() */
152 *(volatile u64 *)addr = value;
153}
154
Jeroen Hofstee00dcb072014-10-08 22:57:23 +0200155__maybe_weak u8 flash_read8(void *addr)
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +0100156{
157 return __raw_readb(addr);
158}
159
Jeroen Hofstee00dcb072014-10-08 22:57:23 +0200160__maybe_weak u16 flash_read16(void *addr)
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +0100161{
162 return __raw_readw(addr);
163}
164
Jeroen Hofstee00dcb072014-10-08 22:57:23 +0200165__maybe_weak u32 flash_read32(void *addr)
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +0100166{
167 return __raw_readl(addr);
168}
169
Jeroen Hofstee00dcb072014-10-08 22:57:23 +0200170__maybe_weak u64 flash_read64(void *addr)
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +0100171{
172 /* No architectures currently implement __raw_readq() */
173 return *(volatile u64 *)addr;
174}
175
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200176/*-----------------------------------------------------------------------
177 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200178#if defined(CONFIG_ENV_IS_IN_FLASH) || defined(CONFIG_ENV_ADDR_REDUND) || (CONFIG_SYS_MONITOR_BASE >= CONFIG_SYS_FLASH_BASE)
Marek Vasut236c49a2017-08-20 17:20:00 +0200179static flash_info_t *flash_get_info(ulong base)
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200180{
181 int i;
Masahiro Yamada24c185c2013-05-17 14:50:37 +0900182 flash_info_t *info;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200183
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200184 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
Masahiro Yamadae2e273a2013-05-17 14:50:36 +0900185 info = &flash_info[i];
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200186 if (info->size && info->start[0] <= base &&
187 base <= info->start[0] + info->size - 1)
Masahiro Yamada24c185c2013-05-17 14:50:37 +0900188 return info;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200189 }
190
Masahiro Yamada24c185c2013-05-17 14:50:37 +0900191 return NULL;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200192}
wdenk5653fc32004-02-08 22:55:38 +0000193#endif
194
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +0100195unsigned long flash_sector_size(flash_info_t *info, flash_sect_t sect)
196{
197 if (sect != (info->sector_count - 1))
198 return info->start[sect + 1] - info->start[sect];
199 else
200 return info->start[0] + info->size - info->start[sect];
201}
202
wdenk5653fc32004-02-08 22:55:38 +0000203/*-----------------------------------------------------------------------
204 * create an address based on the offset and the port width
205 */
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +0100206static inline void *
Mario Sixca2b07a2018-01-26 14:43:32 +0100207flash_map(flash_info_t *info, flash_sect_t sect, uint offset)
wdenk5653fc32004-02-08 22:55:38 +0000208{
Stefan Roesee303be22013-04-12 19:04:54 +0200209 unsigned int byte_offset = offset * info->portwidth;
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +0100210
Stefan Roesee303be22013-04-12 19:04:54 +0200211 return (void *)(info->start[sect] + byte_offset);
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +0100212}
213
214static inline void flash_unmap(flash_info_t *info, flash_sect_t sect,
215 unsigned int offset, void *addr)
216{
wdenk5653fc32004-02-08 22:55:38 +0000217}
wdenkbf9e3b32004-02-12 00:47:09 +0000218
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200219/*-----------------------------------------------------------------------
220 * make a proper sized command based on the port and chip widths
221 */
Sebastian Siewior7288f972008-07-15 13:35:23 +0200222static void flash_make_cmd(flash_info_t *info, u32 cmd, void *cmdbuf)
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200223{
224 int i;
Vasiliy Leoenenko93c56f22008-05-07 21:24:44 +0400225 int cword_offset;
226 int cp_offset;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200227#if defined(__LITTLE_ENDIAN) || defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
Sebastian Siewior340ccb22008-07-16 20:04:49 +0200228 u32 cmd_le = cpu_to_le32(cmd);
229#endif
Vasiliy Leoenenko93c56f22008-05-07 21:24:44 +0400230 uchar val;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200231 uchar *cp = (uchar *) cmdbuf;
232
Mario Sixb1683862018-01-26 14:43:33 +0100233 for (i = info->portwidth; i > 0; i--) {
Mario Six640f4e32018-01-26 14:43:36 +0100234 cword_offset = (info->portwidth - i) % info->chipwidth;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200235#if defined(__LITTLE_ENDIAN) || defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
Vasiliy Leoenenko93c56f22008-05-07 21:24:44 +0400236 cp_offset = info->portwidth - i;
Mario Sixdb91bb22018-01-26 14:43:34 +0100237 val = *((uchar *)&cmd_le + cword_offset);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200238#else
Vasiliy Leoenenko93c56f22008-05-07 21:24:44 +0400239 cp_offset = i - 1;
Mario Sixdb91bb22018-01-26 14:43:34 +0100240 val = *((uchar *)&cmd + sizeof(u32) - cword_offset - 1);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200241#endif
Sebastian Siewior7288f972008-07-15 13:35:23 +0200242 cp[cp_offset] = (cword_offset >= sizeof(u32)) ? 0x00 : val;
Vasiliy Leoenenko93c56f22008-05-07 21:24:44 +0400243 }
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200244}
245
wdenkbf9e3b32004-02-12 00:47:09 +0000246#ifdef DEBUG
247/*-----------------------------------------------------------------------
248 * Debug support
249 */
Mario Six188a5562018-01-26 14:43:31 +0100250static void print_longlong(char *str, unsigned long long data)
wdenkbf9e3b32004-02-12 00:47:09 +0000251{
252 int i;
253 char *cp;
254
Mario Six640f4e32018-01-26 14:43:36 +0100255 cp = (char *)&data;
wdenkbf9e3b32004-02-12 00:47:09 +0000256 for (i = 0; i < 8; i++)
Mario Six188a5562018-01-26 14:43:31 +0100257 sprintf(&str[i * 2], "%2.2x", *cp++);
wdenkbf9e3b32004-02-12 00:47:09 +0000258}
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200259
Mario Six188a5562018-01-26 14:43:31 +0100260static void flash_printqry(struct cfi_qry *qry)
wdenkbf9e3b32004-02-12 00:47:09 +0000261{
Haavard Skinnemoene23741f2007-12-14 15:36:16 +0100262 u8 *p = (u8 *)qry;
wdenkbf9e3b32004-02-12 00:47:09 +0000263 int x, y;
264
Haavard Skinnemoene23741f2007-12-14 15:36:16 +0100265 for (x = 0; x < sizeof(struct cfi_qry); x += 16) {
266 debug("%02x : ", x);
267 for (y = 0; y < 16; y++)
268 debug("%2.2x ", p[x + y]);
269 debug(" ");
wdenkbf9e3b32004-02-12 00:47:09 +0000270 for (y = 0; y < 16; y++) {
Haavard Skinnemoene23741f2007-12-14 15:36:16 +0100271 unsigned char c = p[x + y];
Mario Six7223a8c2018-01-26 14:43:37 +0100272
Haavard Skinnemoene23741f2007-12-14 15:36:16 +0100273 if (c >= 0x20 && c <= 0x7e)
274 debug("%c", c);
275 else
276 debug(".");
wdenkbf9e3b32004-02-12 00:47:09 +0000277 }
Haavard Skinnemoene23741f2007-12-14 15:36:16 +0100278 debug("\n");
wdenkbf9e3b32004-02-12 00:47:09 +0000279 }
280}
wdenkbf9e3b32004-02-12 00:47:09 +0000281#endif
282
wdenk5653fc32004-02-08 22:55:38 +0000283/*-----------------------------------------------------------------------
284 * read a character at a port width address
285 */
Mario Sixca2b07a2018-01-26 14:43:32 +0100286static inline uchar flash_read_uchar(flash_info_t *info, uint offset)
wdenk5653fc32004-02-08 22:55:38 +0000287{
288 uchar *cp;
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +0100289 uchar retval;
wdenkbf9e3b32004-02-12 00:47:09 +0000290
Mario Six188a5562018-01-26 14:43:31 +0100291 cp = flash_map(info, 0, offset);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200292#if defined(__LITTLE_ENDIAN) || defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +0100293 retval = flash_read8(cp);
wdenkbf9e3b32004-02-12 00:47:09 +0000294#else
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +0100295 retval = flash_read8(cp + info->portwidth - 1);
wdenkbf9e3b32004-02-12 00:47:09 +0000296#endif
Mario Six188a5562018-01-26 14:43:31 +0100297 flash_unmap(info, 0, offset, cp);
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +0100298 return retval;
wdenk5653fc32004-02-08 22:55:38 +0000299}
300
301/*-----------------------------------------------------------------------
Tor Krill90447ec2008-03-28 11:29:10 +0100302 * read a word at a port width address, assume 16bit bus
303 */
Mario Sixca2b07a2018-01-26 14:43:32 +0100304static inline ushort flash_read_word(flash_info_t *info, uint offset)
Tor Krill90447ec2008-03-28 11:29:10 +0100305{
306 ushort *addr, retval;
307
Mario Six188a5562018-01-26 14:43:31 +0100308 addr = flash_map(info, 0, offset);
309 retval = flash_read16(addr);
310 flash_unmap(info, 0, offset, addr);
Tor Krill90447ec2008-03-28 11:29:10 +0100311 return retval;
312}
313
Tor Krill90447ec2008-03-28 11:29:10 +0100314/*-----------------------------------------------------------------------
Stefan Roese260421a2006-11-13 13:55:24 +0100315 * read a long word by picking the least significant byte of each maximum
wdenk5653fc32004-02-08 22:55:38 +0000316 * port size word. Swap for ppc format.
317 */
Mario Sixca2b07a2018-01-26 14:43:32 +0100318static ulong flash_read_long (flash_info_t *info, flash_sect_t sect,
Haavard Skinnemoen30557932007-12-13 12:56:29 +0100319 uint offset)
wdenk5653fc32004-02-08 22:55:38 +0000320{
wdenkbf9e3b32004-02-12 00:47:09 +0000321 uchar *addr;
322 ulong retval;
wdenk5653fc32004-02-08 22:55:38 +0000323
wdenkbf9e3b32004-02-12 00:47:09 +0000324#ifdef DEBUG
325 int x;
326#endif
Mario Six188a5562018-01-26 14:43:31 +0100327 addr = flash_map(info, sect, offset);
wdenkbf9e3b32004-02-12 00:47:09 +0000328
329#ifdef DEBUG
Mario Six188a5562018-01-26 14:43:31 +0100330 debug("long addr is at %p info->portwidth = %d\n", addr,
wdenkbf9e3b32004-02-12 00:47:09 +0000331 info->portwidth);
Mario Six0412e902018-01-26 14:43:38 +0100332 for (x = 0; x < 4 * info->portwidth; x++)
Mario Six188a5562018-01-26 14:43:31 +0100333 debug("addr[%x] = 0x%x\n", x, flash_read8(addr + x));
wdenkbf9e3b32004-02-12 00:47:09 +0000334#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200335#if defined(__LITTLE_ENDIAN) || defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +0100336 retval = ((flash_read8(addr) << 16) |
337 (flash_read8(addr + info->portwidth) << 24) |
338 (flash_read8(addr + 2 * info->portwidth)) |
339 (flash_read8(addr + 3 * info->portwidth) << 8));
wdenkbf9e3b32004-02-12 00:47:09 +0000340#else
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +0100341 retval = ((flash_read8(addr + 2 * info->portwidth - 1) << 24) |
342 (flash_read8(addr + info->portwidth - 1) << 16) |
343 (flash_read8(addr + 4 * info->portwidth - 1) << 8) |
344 (flash_read8(addr + 3 * info->portwidth - 1)));
wdenkbf9e3b32004-02-12 00:47:09 +0000345#endif
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +0100346 flash_unmap(info, sect, offset, addr);
347
wdenkbf9e3b32004-02-12 00:47:09 +0000348 return retval;
wdenk5653fc32004-02-08 22:55:38 +0000349}
350
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200351/*
352 * Write a proper sized command to the correct address
353 */
Marek Vasut236c49a2017-08-20 17:20:00 +0200354static void flash_write_cmd(flash_info_t *info, flash_sect_t sect,
355 uint offset, u32 cmd)
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200356{
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +0100357 void *addr;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200358 cfiword_t cword;
359
Mario Six188a5562018-01-26 14:43:31 +0100360 addr = flash_map(info, sect, offset);
361 flash_make_cmd(info, cmd, &cword);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200362 switch (info->portwidth) {
363 case FLASH_CFI_8BIT:
Mario Six188a5562018-01-26 14:43:31 +0100364 debug("fwc addr %p cmd %x %x 8bit x %d bit\n", addr, cmd,
Ryan Harkin622b9522015-10-23 16:50:51 +0100365 cword.w8, info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
366 flash_write8(cword.w8, addr);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200367 break;
368 case FLASH_CFI_16BIT:
Mario Six188a5562018-01-26 14:43:31 +0100369 debug("fwc addr %p cmd %x %4.4x 16bit x %d bit\n", addr,
Ryan Harkin622b9522015-10-23 16:50:51 +0100370 cmd, cword.w16,
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200371 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
Ryan Harkin622b9522015-10-23 16:50:51 +0100372 flash_write16(cword.w16, addr);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200373 break;
374 case FLASH_CFI_32BIT:
Mario Six188a5562018-01-26 14:43:31 +0100375 debug("fwc addr %p cmd %x %8.8x 32bit x %d bit\n", addr,
Ryan Harkin622b9522015-10-23 16:50:51 +0100376 cmd, cword.w32,
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200377 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
Ryan Harkin622b9522015-10-23 16:50:51 +0100378 flash_write32(cword.w32, addr);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200379 break;
380 case FLASH_CFI_64BIT:
381#ifdef DEBUG
382 {
383 char str[20];
384
Mario Six188a5562018-01-26 14:43:31 +0100385 print_longlong(str, cword.w64);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200386
Mario Six188a5562018-01-26 14:43:31 +0100387 debug("fwrite addr %p cmd %x %s 64 bit x %d bit\n",
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +0100388 addr, cmd, str,
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200389 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
390 }
391#endif
Ryan Harkin622b9522015-10-23 16:50:51 +0100392 flash_write64(cword.w64, addr);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200393 break;
394 }
395
396 /* Ensure all the instructions are fully finished */
397 sync();
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +0100398
399 flash_unmap(info, sect, offset, addr);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200400}
401
Mario Sixca2b07a2018-01-26 14:43:32 +0100402static void flash_unlock_seq(flash_info_t *info, flash_sect_t sect)
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200403{
Mario Six188a5562018-01-26 14:43:31 +0100404 flash_write_cmd(info, sect, info->addr_unlock1, AMD_CMD_UNLOCK_START);
405 flash_write_cmd(info, sect, info->addr_unlock2, AMD_CMD_UNLOCK_ACK);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200406}
407
408/*-----------------------------------------------------------------------
409 */
Mario Sixca2b07a2018-01-26 14:43:32 +0100410static int flash_isequal(flash_info_t *info, flash_sect_t sect,
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200411 uint offset, uchar cmd)
412{
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +0100413 void *addr;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200414 cfiword_t cword;
415 int retval;
416
Mario Six188a5562018-01-26 14:43:31 +0100417 addr = flash_map(info, sect, offset);
418 flash_make_cmd(info, cmd, &cword);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200419
Mario Six188a5562018-01-26 14:43:31 +0100420 debug("is= cmd %x(%c) addr %p ", cmd, cmd, addr);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200421 switch (info->portwidth) {
422 case FLASH_CFI_8BIT:
Mario Six188a5562018-01-26 14:43:31 +0100423 debug("is= %x %x\n", flash_read8(addr), cword.w8);
Ryan Harkin622b9522015-10-23 16:50:51 +0100424 retval = (flash_read8(addr) == cword.w8);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200425 break;
426 case FLASH_CFI_16BIT:
Mario Six188a5562018-01-26 14:43:31 +0100427 debug("is= %4.4x %4.4x\n", flash_read16(addr), cword.w16);
Ryan Harkin622b9522015-10-23 16:50:51 +0100428 retval = (flash_read16(addr) == cword.w16);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200429 break;
430 case FLASH_CFI_32BIT:
Mario Six188a5562018-01-26 14:43:31 +0100431 debug("is= %8.8x %8.8x\n", flash_read32(addr), cword.w32);
Ryan Harkin622b9522015-10-23 16:50:51 +0100432 retval = (flash_read32(addr) == cword.w32);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200433 break;
434 case FLASH_CFI_64BIT:
435#ifdef DEBUG
436 {
437 char str1[20];
438 char str2[20];
439
Mario Six188a5562018-01-26 14:43:31 +0100440 print_longlong(str1, flash_read64(addr));
441 print_longlong(str2, cword.w64);
442 debug("is= %s %s\n", str1, str2);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200443 }
444#endif
Ryan Harkin622b9522015-10-23 16:50:51 +0100445 retval = (flash_read64(addr) == cword.w64);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200446 break;
447 default:
448 retval = 0;
449 break;
450 }
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +0100451 flash_unmap(info, sect, offset, addr);
452
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200453 return retval;
454}
455
456/*-----------------------------------------------------------------------
457 */
Mario Sixca2b07a2018-01-26 14:43:32 +0100458static int flash_isset(flash_info_t *info, flash_sect_t sect,
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200459 uint offset, uchar cmd)
460{
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +0100461 void *addr;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200462 cfiword_t cword;
463 int retval;
464
Mario Six188a5562018-01-26 14:43:31 +0100465 addr = flash_map(info, sect, offset);
466 flash_make_cmd(info, cmd, &cword);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200467 switch (info->portwidth) {
468 case FLASH_CFI_8BIT:
Ryan Harkin622b9522015-10-23 16:50:51 +0100469 retval = ((flash_read8(addr) & cword.w8) == cword.w8);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200470 break;
471 case FLASH_CFI_16BIT:
Ryan Harkin622b9522015-10-23 16:50:51 +0100472 retval = ((flash_read16(addr) & cword.w16) == cword.w16);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200473 break;
474 case FLASH_CFI_32BIT:
Ryan Harkin622b9522015-10-23 16:50:51 +0100475 retval = ((flash_read32(addr) & cword.w32) == cword.w32);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200476 break;
477 case FLASH_CFI_64BIT:
Ryan Harkin622b9522015-10-23 16:50:51 +0100478 retval = ((flash_read64(addr) & cword.w64) == cword.w64);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200479 break;
480 default:
481 retval = 0;
482 break;
483 }
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +0100484 flash_unmap(info, sect, offset, addr);
485
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200486 return retval;
487}
488
489/*-----------------------------------------------------------------------
490 */
Mario Sixca2b07a2018-01-26 14:43:32 +0100491static int flash_toggle(flash_info_t *info, flash_sect_t sect,
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200492 uint offset, uchar cmd)
493{
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +0100494 void *addr;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200495 cfiword_t cword;
496 int retval;
497
Mario Six188a5562018-01-26 14:43:31 +0100498 addr = flash_map(info, sect, offset);
499 flash_make_cmd(info, cmd, &cword);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200500 switch (info->portwidth) {
501 case FLASH_CFI_8BIT:
Stefan Roesefb8c0612008-06-16 10:40:02 +0200502 retval = flash_read8(addr) != flash_read8(addr);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200503 break;
504 case FLASH_CFI_16BIT:
Stefan Roesefb8c0612008-06-16 10:40:02 +0200505 retval = flash_read16(addr) != flash_read16(addr);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200506 break;
507 case FLASH_CFI_32BIT:
Stefan Roesefb8c0612008-06-16 10:40:02 +0200508 retval = flash_read32(addr) != flash_read32(addr);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200509 break;
510 case FLASH_CFI_64BIT:
Mario Sixb1683862018-01-26 14:43:33 +0100511 retval = ((flash_read32(addr) != flash_read32(addr)) ||
Mario Six640f4e32018-01-26 14:43:36 +0100512 (flash_read32(addr + 4) != flash_read32(addr + 4)));
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200513 break;
514 default:
515 retval = 0;
516 break;
517 }
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +0100518 flash_unmap(info, sect, offset, addr);
519
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200520 return retval;
521}
522
523/*
524 * flash_is_busy - check to see if the flash is busy
525 *
526 * This routine checks the status of the chip and returns true if the
527 * chip is busy.
528 */
Mario Sixca2b07a2018-01-26 14:43:32 +0100529static int flash_is_busy(flash_info_t *info, flash_sect_t sect)
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200530{
531 int retval;
532
533 switch (info->vendor) {
Vasiliy Leoenenko9c048b52008-05-07 21:25:33 +0400534 case CFI_CMDSET_INTEL_PROG_REGIONS:
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200535 case CFI_CMDSET_INTEL_STANDARD:
536 case CFI_CMDSET_INTEL_EXTENDED:
Mario Six188a5562018-01-26 14:43:31 +0100537 retval = !flash_isset(info, sect, 0, FLASH_STATUS_DONE);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200538 break;
539 case CFI_CMDSET_AMD_STANDARD:
540 case CFI_CMDSET_AMD_EXTENDED:
Michael Schwingen81b20cc2007-12-07 23:35:02 +0100541#ifdef CONFIG_FLASH_CFI_LEGACY
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200542 case CFI_CMDSET_AMD_LEGACY:
543#endif
Marek Vasut72443c72017-09-12 19:09:31 +0200544 if (info->sr_supported) {
Mario Six188a5562018-01-26 14:43:31 +0100545 flash_write_cmd(info, sect, info->addr_unlock1,
Marek Vasut72443c72017-09-12 19:09:31 +0200546 FLASH_CMD_READ_STATUS);
Mario Six188a5562018-01-26 14:43:31 +0100547 retval = !flash_isset(info, sect, 0,
Marek Vasut72443c72017-09-12 19:09:31 +0200548 FLASH_STATUS_DONE);
549 } else {
Mario Six188a5562018-01-26 14:43:31 +0100550 retval = flash_toggle(info, sect, 0,
Marek Vasut72443c72017-09-12 19:09:31 +0200551 AMD_STATUS_TOGGLE);
552 }
553
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200554 break;
555 default:
556 retval = 0;
Michael Schwingen81b20cc2007-12-07 23:35:02 +0100557 }
Mario Six188a5562018-01-26 14:43:31 +0100558 debug("flash_is_busy: %d\n", retval);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200559 return retval;
Michael Schwingen81b20cc2007-12-07 23:35:02 +0100560}
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200561
562/*-----------------------------------------------------------------------
563 * wait for XSR.7 to be set. Time out with an error if it does not.
564 * This routine does not set the flash to read-array mode.
565 */
Mario Sixca2b07a2018-01-26 14:43:32 +0100566static int flash_status_check(flash_info_t *info, flash_sect_t sector,
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200567 ulong tout, char *prompt)
568{
569 ulong start;
570
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200571#if CONFIG_SYS_HZ != 1000
Renato Andreolac40c94a2010-03-24 23:00:47 +0800572 if ((ulong)CONFIG_SYS_HZ > 100000)
573 tout *= (ulong)CONFIG_SYS_HZ / 1000; /* for a big HZ, avoid overflow */
574 else
575 tout = DIV_ROUND_UP(tout * (ulong)CONFIG_SYS_HZ, 1000);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200576#endif
577
578 /* Wait for command completion */
Graeme Russe110c4f2011-07-15 02:18:56 +0000579#ifdef CONFIG_SYS_LOW_RES_TIMER
Thomas Chou22d6c8f2010-04-01 11:15:05 +0800580 reset_timer();
Graeme Russe110c4f2011-07-15 02:18:56 +0000581#endif
Mario Six188a5562018-01-26 14:43:31 +0100582 start = get_timer(0);
Jens Scharsig (BuS Elektronik)a9f5fab2012-01-27 09:29:53 +0100583 WATCHDOG_RESET();
Mario Six188a5562018-01-26 14:43:31 +0100584 while (flash_is_busy(info, sector)) {
585 if (get_timer(start) > tout) {
586 printf("Flash %s timeout at address %lx data %lx\n",
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200587 prompt, info->start[sector],
Mario Six188a5562018-01-26 14:43:31 +0100588 flash_read_long(info, sector, 0));
589 flash_write_cmd(info, sector, 0, info->cmd_reset);
Stefan Roesee303be22013-04-12 19:04:54 +0200590 udelay(1);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200591 return ERR_TIMOUT;
592 }
Mario Six188a5562018-01-26 14:43:31 +0100593 udelay(1); /* also triggers watchdog */
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200594 }
595 return ERR_OK;
596}
597
598/*-----------------------------------------------------------------------
599 * Wait for XSR.7 to be set, if it times out print an error, otherwise
600 * do a full status check.
601 *
602 * This routine sets the flash to read-array mode.
603 */
Mario Sixca2b07a2018-01-26 14:43:32 +0100604static int flash_full_status_check(flash_info_t *info, flash_sect_t sector,
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200605 ulong tout, char *prompt)
606{
607 int retcode;
608
Mario Six188a5562018-01-26 14:43:31 +0100609 retcode = flash_status_check(info, sector, tout, prompt);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200610 switch (info->vendor) {
Vasiliy Leoenenko9c048b52008-05-07 21:25:33 +0400611 case CFI_CMDSET_INTEL_PROG_REGIONS:
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200612 case CFI_CMDSET_INTEL_EXTENDED:
613 case CFI_CMDSET_INTEL_STANDARD:
Mario Six88ecd8b2018-01-26 14:43:39 +0100614 if ((retcode == ERR_OK) &&
615 !flash_isset(info, sector, 0, FLASH_STATUS_DONE)) {
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200616 retcode = ERR_INVAL;
Mario Six188a5562018-01-26 14:43:31 +0100617 printf("Flash %s error at address %lx\n", prompt,
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200618 info->start[sector]);
Mario Six188a5562018-01-26 14:43:31 +0100619 if (flash_isset(info, sector, 0, FLASH_STATUS_ECLBS |
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200620 FLASH_STATUS_PSLBS)) {
Mario Six188a5562018-01-26 14:43:31 +0100621 puts("Command Sequence Error.\n");
622 } else if (flash_isset(info, sector, 0,
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200623 FLASH_STATUS_ECLBS)) {
Mario Six188a5562018-01-26 14:43:31 +0100624 puts("Block Erase Error.\n");
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200625 retcode = ERR_NOT_ERASED;
Mario Six188a5562018-01-26 14:43:31 +0100626 } else if (flash_isset(info, sector, 0,
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200627 FLASH_STATUS_PSLBS)) {
Mario Six188a5562018-01-26 14:43:31 +0100628 puts("Locking Error\n");
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200629 }
Mario Six188a5562018-01-26 14:43:31 +0100630 if (flash_isset(info, sector, 0, FLASH_STATUS_DPS)) {
631 puts("Block locked.\n");
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200632 retcode = ERR_PROTECTED;
633 }
Mario Six188a5562018-01-26 14:43:31 +0100634 if (flash_isset(info, sector, 0, FLASH_STATUS_VPENS))
635 puts("Vpp Low Error.\n");
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200636 }
Mario Six188a5562018-01-26 14:43:31 +0100637 flash_write_cmd(info, sector, 0, info->cmd_reset);
Aaron Williamsa90b9572011-04-12 00:59:04 -0700638 udelay(1);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200639 break;
640 default:
641 break;
642 }
643 return retcode;
644}
645
Thomas Choue5720822010-03-26 08:17:00 +0800646static int use_flash_status_poll(flash_info_t *info)
647{
648#ifdef CONFIG_SYS_CFI_FLASH_STATUS_POLL
649 if (info->vendor == CFI_CMDSET_AMD_EXTENDED ||
650 info->vendor == CFI_CMDSET_AMD_STANDARD)
651 return 1;
652#endif
653 return 0;
654}
655
656static int flash_status_poll(flash_info_t *info, void *src, void *dst,
657 ulong tout, char *prompt)
658{
659#ifdef CONFIG_SYS_CFI_FLASH_STATUS_POLL
660 ulong start;
661 int ready;
662
663#if CONFIG_SYS_HZ != 1000
664 if ((ulong)CONFIG_SYS_HZ > 100000)
665 tout *= (ulong)CONFIG_SYS_HZ / 1000; /* for a big HZ, avoid overflow */
666 else
667 tout = DIV_ROUND_UP(tout * (ulong)CONFIG_SYS_HZ, 1000);
668#endif
669
670 /* Wait for command completion */
Graeme Russe110c4f2011-07-15 02:18:56 +0000671#ifdef CONFIG_SYS_LOW_RES_TIMER
Thomas Chou22d6c8f2010-04-01 11:15:05 +0800672 reset_timer();
Graeme Russe110c4f2011-07-15 02:18:56 +0000673#endif
Thomas Choue5720822010-03-26 08:17:00 +0800674 start = get_timer(0);
Jens Scharsig (BuS Elektronik)a9f5fab2012-01-27 09:29:53 +0100675 WATCHDOG_RESET();
Thomas Choue5720822010-03-26 08:17:00 +0800676 while (1) {
677 switch (info->portwidth) {
678 case FLASH_CFI_8BIT:
679 ready = flash_read8(dst) == flash_read8(src);
680 break;
681 case FLASH_CFI_16BIT:
682 ready = flash_read16(dst) == flash_read16(src);
683 break;
684 case FLASH_CFI_32BIT:
685 ready = flash_read32(dst) == flash_read32(src);
686 break;
687 case FLASH_CFI_64BIT:
688 ready = flash_read64(dst) == flash_read64(src);
689 break;
690 default:
691 ready = 0;
692 break;
693 }
694 if (ready)
695 break;
696 if (get_timer(start) > tout) {
697 printf("Flash %s timeout at address %lx data %lx\n",
698 prompt, (ulong)dst, (ulong)flash_read8(dst));
699 return ERR_TIMOUT;
700 }
701 udelay(1); /* also triggers watchdog */
702 }
703#endif /* CONFIG_SYS_CFI_FLASH_STATUS_POLL */
704 return ERR_OK;
705}
706
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200707/*-----------------------------------------------------------------------
708 */
Mario Sixca2b07a2018-01-26 14:43:32 +0100709static void flash_add_byte(flash_info_t *info, cfiword_t *cword, uchar c)
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200710{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200711#if defined(__LITTLE_ENDIAN) && !defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200712 unsigned short w;
713 unsigned int l;
714 unsigned long long ll;
715#endif
716
717 switch (info->portwidth) {
718 case FLASH_CFI_8BIT:
Ryan Harkin622b9522015-10-23 16:50:51 +0100719 cword->w8 = c;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200720 break;
721 case FLASH_CFI_16BIT:
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200722#if defined(__LITTLE_ENDIAN) && !defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200723 w = c;
724 w <<= 8;
Ryan Harkin622b9522015-10-23 16:50:51 +0100725 cword->w16 = (cword->w16 >> 8) | w;
Michael Schwingen81b20cc2007-12-07 23:35:02 +0100726#else
Ryan Harkin622b9522015-10-23 16:50:51 +0100727 cword->w16 = (cword->w16 << 8) | c;
Michael Schwingen81b20cc2007-12-07 23:35:02 +0100728#endif
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200729 break;
730 case FLASH_CFI_32BIT:
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200731#if defined(__LITTLE_ENDIAN) && !defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200732 l = c;
733 l <<= 24;
Ryan Harkin622b9522015-10-23 16:50:51 +0100734 cword->w32 = (cword->w32 >> 8) | l;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200735#else
Ryan Harkin622b9522015-10-23 16:50:51 +0100736 cword->w32 = (cword->w32 << 8) | c;
Stefan Roese2662b402006-04-01 13:41:03 +0200737#endif
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200738 break;
739 case FLASH_CFI_64BIT:
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200740#if defined(__LITTLE_ENDIAN) && !defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200741 ll = c;
742 ll <<= 56;
Ryan Harkin622b9522015-10-23 16:50:51 +0100743 cword->w64 = (cword->w64 >> 8) | ll;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200744#else
Ryan Harkin622b9522015-10-23 16:50:51 +0100745 cword->w64 = (cword->w64 << 8) | c;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200746#endif
747 break;
wdenk5653fc32004-02-08 22:55:38 +0000748 }
wdenk5653fc32004-02-08 22:55:38 +0000749}
750
Jens Gehrlein0f8e8512008-12-16 17:25:55 +0100751/*
752 * Loop through the sector table starting from the previously found sector.
753 * Searches forwards or backwards, dependent on the passed address.
wdenk5653fc32004-02-08 22:55:38 +0000754 */
Mario Sixca2b07a2018-01-26 14:43:32 +0100755static flash_sect_t find_sector(flash_info_t *info, ulong addr)
wdenk7680c142005-05-16 15:23:22 +0000756{
Kim Phillips11dc4012012-10-29 13:34:45 +0000757 static flash_sect_t saved_sector; /* previously found sector */
Stefan Roesee303be22013-04-12 19:04:54 +0200758 static flash_info_t *saved_info; /* previously used flash bank */
Jens Gehrlein0f8e8512008-12-16 17:25:55 +0100759 flash_sect_t sector = saved_sector;
wdenk7680c142005-05-16 15:23:22 +0000760
Stefan Roesee303be22013-04-12 19:04:54 +0200761 if ((info != saved_info) || (sector >= info->sector_count))
762 sector = 0;
763
Mario Six88ecd8b2018-01-26 14:43:39 +0100764 while ((info->start[sector] < addr) &&
765 (sector < info->sector_count - 1))
Jens Gehrlein0f8e8512008-12-16 17:25:55 +0100766 sector++;
767 while ((info->start[sector] > addr) && (sector > 0))
768 /*
769 * also decrements the sector in case of an overshot
770 * in the first loop
771 */
772 sector--;
773
774 saved_sector = sector;
Stefan Roesee303be22013-04-12 19:04:54 +0200775 saved_info = info;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200776 return sector;
wdenk7680c142005-05-16 15:23:22 +0000777}
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200778
779/*-----------------------------------------------------------------------
780 */
Mario Sixca2b07a2018-01-26 14:43:32 +0100781static int flash_write_cfiword(flash_info_t *info, ulong dest,
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200782 cfiword_t cword)
783{
Becky Bruce09ce9922009-02-02 16:34:51 -0600784 void *dstaddr = (void *)dest;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200785 int flag;
Jens Gehrleina7292872008-12-16 17:25:54 +0100786 flash_sect_t sect = 0;
787 char sect_found = 0;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200788
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200789 /* Check if Flash is (sufficiently) erased */
790 switch (info->portwidth) {
791 case FLASH_CFI_8BIT:
Ryan Harkin622b9522015-10-23 16:50:51 +0100792 flag = ((flash_read8(dstaddr) & cword.w8) == cword.w8);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200793 break;
794 case FLASH_CFI_16BIT:
Ryan Harkin622b9522015-10-23 16:50:51 +0100795 flag = ((flash_read16(dstaddr) & cword.w16) == cword.w16);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200796 break;
797 case FLASH_CFI_32BIT:
Ryan Harkin622b9522015-10-23 16:50:51 +0100798 flag = ((flash_read32(dstaddr) & cword.w32) == cword.w32);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200799 break;
800 case FLASH_CFI_64BIT:
Ryan Harkin622b9522015-10-23 16:50:51 +0100801 flag = ((flash_read64(dstaddr) & cword.w64) == cword.w64);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200802 break;
803 default:
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +0100804 flag = 0;
805 break;
806 }
Becky Bruce09ce9922009-02-02 16:34:51 -0600807 if (!flag)
Stefan Roese0dc80e22007-12-27 07:50:54 +0100808 return ERR_NOT_ERASED;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200809
810 /* Disable interrupts which might cause a timeout here */
Mario Six188a5562018-01-26 14:43:31 +0100811 flag = disable_interrupts();
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200812
813 switch (info->vendor) {
Vasiliy Leoenenko9c048b52008-05-07 21:25:33 +0400814 case CFI_CMDSET_INTEL_PROG_REGIONS:
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200815 case CFI_CMDSET_INTEL_EXTENDED:
816 case CFI_CMDSET_INTEL_STANDARD:
Mario Six188a5562018-01-26 14:43:31 +0100817 flash_write_cmd(info, 0, 0, FLASH_CMD_CLEAR_STATUS);
818 flash_write_cmd(info, 0, 0, FLASH_CMD_WRITE);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200819 break;
820 case CFI_CMDSET_AMD_EXTENDED:
821 case CFI_CMDSET_AMD_STANDARD:
Ed Swarthout0d01f662008-10-09 01:26:36 -0500822 sect = find_sector(info, dest);
Mario Six188a5562018-01-26 14:43:31 +0100823 flash_unlock_seq(info, sect);
824 flash_write_cmd(info, sect, info->addr_unlock1, AMD_CMD_WRITE);
Jens Gehrleina7292872008-12-16 17:25:54 +0100825 sect_found = 1;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200826 break;
Po-Yu Chuangb4db4a72009-07-10 18:03:57 +0800827#ifdef CONFIG_FLASH_CFI_LEGACY
828 case CFI_CMDSET_AMD_LEGACY:
829 sect = find_sector(info, dest);
Mario Six188a5562018-01-26 14:43:31 +0100830 flash_unlock_seq(info, 0);
831 flash_write_cmd(info, 0, info->addr_unlock1, AMD_CMD_WRITE);
Po-Yu Chuangb4db4a72009-07-10 18:03:57 +0800832 sect_found = 1;
833 break;
834#endif
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200835 }
836
837 switch (info->portwidth) {
838 case FLASH_CFI_8BIT:
Ryan Harkin622b9522015-10-23 16:50:51 +0100839 flash_write8(cword.w8, dstaddr);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200840 break;
841 case FLASH_CFI_16BIT:
Ryan Harkin622b9522015-10-23 16:50:51 +0100842 flash_write16(cword.w16, dstaddr);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200843 break;
844 case FLASH_CFI_32BIT:
Ryan Harkin622b9522015-10-23 16:50:51 +0100845 flash_write32(cword.w32, dstaddr);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200846 break;
847 case FLASH_CFI_64BIT:
Ryan Harkin622b9522015-10-23 16:50:51 +0100848 flash_write64(cword.w64, dstaddr);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200849 break;
850 }
851
852 /* re-enable interrupts if necessary */
853 if (flag)
Mario Six188a5562018-01-26 14:43:31 +0100854 enable_interrupts();
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200855
Jens Gehrleina7292872008-12-16 17:25:54 +0100856 if (!sect_found)
Mario Six188a5562018-01-26 14:43:31 +0100857 sect = find_sector(info, dest);
Jens Gehrleina7292872008-12-16 17:25:54 +0100858
Thomas Choue5720822010-03-26 08:17:00 +0800859 if (use_flash_status_poll(info))
860 return flash_status_poll(info, &cword, dstaddr,
861 info->write_tout, "write");
862 else
863 return flash_full_status_check(info, sect,
864 info->write_tout, "write");
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200865}
866
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200867#ifdef CONFIG_SYS_FLASH_USE_BUFFER_WRITE
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200868
Mario Sixca2b07a2018-01-26 14:43:32 +0100869static int flash_write_cfibuffer(flash_info_t *info, ulong dest, uchar *cp,
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200870 int len)
871{
872 flash_sect_t sector;
873 int cnt;
874 int retcode;
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +0100875 void *src = cp;
Stefan Roeseec21d5c2009-02-05 11:25:57 +0100876 void *dst = (void *)dest;
Stefan Roese0dc80e22007-12-27 07:50:54 +0100877 void *dst2 = dst;
Tao Hou85c344e2012-03-15 23:33:58 +0800878 int flag = 1;
Guennadi Liakhovetski96ef8312008-04-03 13:36:02 +0200879 uint offset = 0;
880 unsigned int shift;
Vasiliy Leoenenko9c048b52008-05-07 21:25:33 +0400881 uchar write_cmd;
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +0100882
Stefan Roese0dc80e22007-12-27 07:50:54 +0100883 switch (info->portwidth) {
884 case FLASH_CFI_8BIT:
Guennadi Liakhovetski96ef8312008-04-03 13:36:02 +0200885 shift = 0;
Stefan Roese0dc80e22007-12-27 07:50:54 +0100886 break;
887 case FLASH_CFI_16BIT:
Guennadi Liakhovetski96ef8312008-04-03 13:36:02 +0200888 shift = 1;
Stefan Roese0dc80e22007-12-27 07:50:54 +0100889 break;
890 case FLASH_CFI_32BIT:
Guennadi Liakhovetski96ef8312008-04-03 13:36:02 +0200891 shift = 2;
Stefan Roese0dc80e22007-12-27 07:50:54 +0100892 break;
893 case FLASH_CFI_64BIT:
Guennadi Liakhovetski96ef8312008-04-03 13:36:02 +0200894 shift = 3;
Stefan Roese0dc80e22007-12-27 07:50:54 +0100895 break;
896 default:
897 retcode = ERR_INVAL;
898 goto out_unmap;
899 }
900
Guennadi Liakhovetski96ef8312008-04-03 13:36:02 +0200901 cnt = len >> shift;
902
Tao Hou85c344e2012-03-15 23:33:58 +0800903 while ((cnt-- > 0) && (flag == 1)) {
Stefan Roese0dc80e22007-12-27 07:50:54 +0100904 switch (info->portwidth) {
905 case FLASH_CFI_8BIT:
906 flag = ((flash_read8(dst2) & flash_read8(src)) ==
907 flash_read8(src));
908 src += 1, dst2 += 1;
909 break;
910 case FLASH_CFI_16BIT:
911 flag = ((flash_read16(dst2) & flash_read16(src)) ==
912 flash_read16(src));
913 src += 2, dst2 += 2;
914 break;
915 case FLASH_CFI_32BIT:
916 flag = ((flash_read32(dst2) & flash_read32(src)) ==
917 flash_read32(src));
918 src += 4, dst2 += 4;
919 break;
920 case FLASH_CFI_64BIT:
921 flag = ((flash_read64(dst2) & flash_read64(src)) ==
922 flash_read64(src));
923 src += 8, dst2 += 8;
924 break;
925 }
926 }
927 if (!flag) {
928 retcode = ERR_NOT_ERASED;
929 goto out_unmap;
930 }
931
932 src = cp;
Mario Six188a5562018-01-26 14:43:31 +0100933 sector = find_sector(info, dest);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200934
935 switch (info->vendor) {
Vasiliy Leoenenko9c048b52008-05-07 21:25:33 +0400936 case CFI_CMDSET_INTEL_PROG_REGIONS:
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200937 case CFI_CMDSET_INTEL_STANDARD:
938 case CFI_CMDSET_INTEL_EXTENDED:
Vasiliy Leoenenko9c048b52008-05-07 21:25:33 +0400939 write_cmd = (info->vendor == CFI_CMDSET_INTEL_PROG_REGIONS) ?
940 FLASH_CMD_WRITE_BUFFER_PROG : FLASH_CMD_WRITE_TO_BUFFER;
Mario Six188a5562018-01-26 14:43:31 +0100941 flash_write_cmd(info, sector, 0, FLASH_CMD_CLEAR_STATUS);
942 flash_write_cmd(info, sector, 0, FLASH_CMD_READ_STATUS);
943 flash_write_cmd(info, sector, 0, write_cmd);
944 retcode = flash_status_check(info, sector,
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200945 info->buffer_write_tout,
946 "write to buffer");
947 if (retcode == ERR_OK) {
948 /* reduce the number of loops by the width of
949 * the port */
Guennadi Liakhovetski96ef8312008-04-03 13:36:02 +0200950 cnt = len >> shift;
Mario Six188a5562018-01-26 14:43:31 +0100951 flash_write_cmd(info, sector, 0, cnt - 1);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200952 while (cnt-- > 0) {
953 switch (info->portwidth) {
954 case FLASH_CFI_8BIT:
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +0100955 flash_write8(flash_read8(src), dst);
956 src += 1, dst += 1;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200957 break;
958 case FLASH_CFI_16BIT:
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +0100959 flash_write16(flash_read16(src), dst);
960 src += 2, dst += 2;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200961 break;
962 case FLASH_CFI_32BIT:
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +0100963 flash_write32(flash_read32(src), dst);
964 src += 4, dst += 4;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200965 break;
966 case FLASH_CFI_64BIT:
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +0100967 flash_write64(flash_read64(src), dst);
968 src += 8, dst += 8;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200969 break;
970 default:
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +0100971 retcode = ERR_INVAL;
972 goto out_unmap;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200973 }
974 }
Mario Six188a5562018-01-26 14:43:31 +0100975 flash_write_cmd(info, sector, 0,
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200976 FLASH_CMD_WRITE_BUFFER_CONFIRM);
Mario Six188a5562018-01-26 14:43:31 +0100977 retcode = flash_full_status_check(
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200978 info, sector, info->buffer_write_tout,
979 "buffer write");
980 }
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +0100981
982 break;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200983
984 case CFI_CMDSET_AMD_STANDARD:
985 case CFI_CMDSET_AMD_EXTENDED:
Rouven Behr7570a0c2016-04-10 13:38:13 +0200986 flash_unlock_seq(info, sector);
Guennadi Liakhovetski96ef8312008-04-03 13:36:02 +0200987
988#ifdef CONFIG_FLASH_SPANSION_S29WS_N
989 offset = ((unsigned long)dst - info->start[sector]) >> shift;
990#endif
991 flash_write_cmd(info, sector, offset, AMD_CMD_WRITE_TO_BUFFER);
992 cnt = len >> shift;
John Schmoller7dedefd2009-08-12 10:55:47 -0500993 flash_write_cmd(info, sector, offset, cnt - 1);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +0200994
995 switch (info->portwidth) {
996 case FLASH_CFI_8BIT:
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +0100997 while (cnt-- > 0) {
998 flash_write8(flash_read8(src), dst);
999 src += 1, dst += 1;
1000 }
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02001001 break;
1002 case FLASH_CFI_16BIT:
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +01001003 while (cnt-- > 0) {
1004 flash_write16(flash_read16(src), dst);
1005 src += 2, dst += 2;
1006 }
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02001007 break;
1008 case FLASH_CFI_32BIT:
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +01001009 while (cnt-- > 0) {
1010 flash_write32(flash_read32(src), dst);
1011 src += 4, dst += 4;
1012 }
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02001013 break;
1014 case FLASH_CFI_64BIT:
Haavard Skinnemoencdbaefb2007-12-13 12:56:32 +01001015 while (cnt-- > 0) {
1016 flash_write64(flash_read64(src), dst);
1017 src += 8, dst += 8;
1018 }
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02001019 break;
1020 default:
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +01001021 retcode = ERR_INVAL;
1022 goto out_unmap;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02001023 }
1024
Mario Six188a5562018-01-26 14:43:31 +01001025 flash_write_cmd(info, sector, 0, AMD_CMD_WRITE_BUFFER_CONFIRM);
Thomas Choue5720822010-03-26 08:17:00 +08001026 if (use_flash_status_poll(info))
1027 retcode = flash_status_poll(info, src - (1 << shift),
1028 dst - (1 << shift),
1029 info->buffer_write_tout,
1030 "buffer write");
1031 else
1032 retcode = flash_full_status_check(info, sector,
1033 info->buffer_write_tout,
1034 "buffer write");
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +01001035 break;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02001036
1037 default:
Mario Six188a5562018-01-26 14:43:31 +01001038 debug("Unknown Command Set\n");
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +01001039 retcode = ERR_INVAL;
1040 break;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02001041 }
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +01001042
1043out_unmap:
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +01001044 return retcode;
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02001045}
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001046#endif /* CONFIG_SYS_FLASH_USE_BUFFER_WRITE */
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02001047
wdenk7680c142005-05-16 15:23:22 +00001048/*-----------------------------------------------------------------------
1049 */
Mario Sixca2b07a2018-01-26 14:43:32 +01001050int flash_erase(flash_info_t *info, int s_first, int s_last)
wdenk5653fc32004-02-08 22:55:38 +00001051{
1052 int rcode = 0;
1053 int prot;
1054 flash_sect_t sect;
Thomas Choue5720822010-03-26 08:17:00 +08001055 int st;
wdenk5653fc32004-02-08 22:55:38 +00001056
wdenkbf9e3b32004-02-12 00:47:09 +00001057 if (info->flash_id != FLASH_MAN_CFI) {
Mario Six188a5562018-01-26 14:43:31 +01001058 puts("Can't erase unknown flash type - aborted\n");
wdenk5653fc32004-02-08 22:55:38 +00001059 return 1;
1060 }
1061 if ((s_first < 0) || (s_first > s_last)) {
Mario Six188a5562018-01-26 14:43:31 +01001062 puts("- no sectors to erase\n");
wdenk5653fc32004-02-08 22:55:38 +00001063 return 1;
1064 }
1065
1066 prot = 0;
Mario Six0412e902018-01-26 14:43:38 +01001067 for (sect = s_first; sect <= s_last; ++sect)
1068 if (info->protect[sect])
wdenk5653fc32004-02-08 22:55:38 +00001069 prot++;
wdenk5653fc32004-02-08 22:55:38 +00001070 if (prot) {
Mario Six188a5562018-01-26 14:43:31 +01001071 printf("- Warning: %d protected sectors will not be erased!\n",
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001072 prot);
Piotr Ziecik6ea808e2008-11-17 15:49:32 +01001073 } else if (flash_verbose) {
Mario Six188a5562018-01-26 14:43:31 +01001074 putc('\n');
wdenk5653fc32004-02-08 22:55:38 +00001075 }
1076
wdenkbf9e3b32004-02-12 00:47:09 +00001077 for (sect = s_first; sect <= s_last; sect++) {
Joe Hershbergerde15a062012-08-17 15:36:41 -05001078 if (ctrlc()) {
1079 printf("\n");
1080 return 1;
1081 }
1082
wdenk5653fc32004-02-08 22:55:38 +00001083 if (info->protect[sect] == 0) { /* not protected */
Joe Hershberger6822a642012-08-17 15:36:40 -05001084#ifdef CONFIG_SYS_FLASH_CHECK_BLANK_BEFORE_ERASE
1085 int k;
1086 int size;
1087 int erased;
1088 u32 *flash;
1089
1090 /*
1091 * Check if whole sector is erased
1092 */
1093 size = flash_sector_size(info, sect);
1094 erased = 1;
1095 flash = (u32 *)info->start[sect];
1096 /* divide by 4 for longword access */
1097 size = size >> 2;
1098 for (k = 0; k < size; k++) {
1099 if (flash_read32(flash++) != 0xffffffff) {
1100 erased = 0;
1101 break;
1102 }
1103 }
1104 if (erased) {
1105 if (flash_verbose)
1106 putc(',');
1107 continue;
1108 }
1109#endif
wdenkbf9e3b32004-02-12 00:47:09 +00001110 switch (info->vendor) {
Vasiliy Leoenenko9c048b52008-05-07 21:25:33 +04001111 case CFI_CMDSET_INTEL_PROG_REGIONS:
wdenk5653fc32004-02-08 22:55:38 +00001112 case CFI_CMDSET_INTEL_STANDARD:
1113 case CFI_CMDSET_INTEL_EXTENDED:
Mario Six188a5562018-01-26 14:43:31 +01001114 flash_write_cmd(info, sect, 0,
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001115 FLASH_CMD_CLEAR_STATUS);
Mario Six188a5562018-01-26 14:43:31 +01001116 flash_write_cmd(info, sect, 0,
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001117 FLASH_CMD_BLOCK_ERASE);
Mario Six188a5562018-01-26 14:43:31 +01001118 flash_write_cmd(info, sect, 0,
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001119 FLASH_CMD_ERASE_CONFIRM);
wdenk5653fc32004-02-08 22:55:38 +00001120 break;
1121 case CFI_CMDSET_AMD_STANDARD:
1122 case CFI_CMDSET_AMD_EXTENDED:
Mario Six188a5562018-01-26 14:43:31 +01001123 flash_unlock_seq(info, sect);
1124 flash_write_cmd(info, sect,
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001125 info->addr_unlock1,
1126 AMD_CMD_ERASE_START);
Mario Six188a5562018-01-26 14:43:31 +01001127 flash_unlock_seq(info, sect);
1128 flash_write_cmd(info, sect, 0,
Angelo Dureghello07b2c5c2012-12-01 01:14:18 +01001129 info->cmd_erase_sector);
wdenk5653fc32004-02-08 22:55:38 +00001130 break;
Michael Schwingen81b20cc2007-12-07 23:35:02 +01001131#ifdef CONFIG_FLASH_CFI_LEGACY
1132 case CFI_CMDSET_AMD_LEGACY:
Mario Six188a5562018-01-26 14:43:31 +01001133 flash_unlock_seq(info, 0);
1134 flash_write_cmd(info, 0, info->addr_unlock1,
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001135 AMD_CMD_ERASE_START);
Mario Six188a5562018-01-26 14:43:31 +01001136 flash_unlock_seq(info, 0);
1137 flash_write_cmd(info, sect, 0,
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001138 AMD_CMD_ERASE_SECTOR);
Michael Schwingen81b20cc2007-12-07 23:35:02 +01001139 break;
1140#endif
wdenk5653fc32004-02-08 22:55:38 +00001141 default:
Mario Six188a5562018-01-26 14:43:31 +01001142 debug("Unkown flash vendor %d\n",
wdenkbf9e3b32004-02-12 00:47:09 +00001143 info->vendor);
wdenk5653fc32004-02-08 22:55:38 +00001144 break;
1145 }
1146
Thomas Choue5720822010-03-26 08:17:00 +08001147 if (use_flash_status_poll(info)) {
Kim Phillips11dc4012012-10-29 13:34:45 +00001148 cfiword_t cword;
Thomas Choue5720822010-03-26 08:17:00 +08001149 void *dest;
Mario Six7223a8c2018-01-26 14:43:37 +01001150
Ryan Harkin622b9522015-10-23 16:50:51 +01001151 cword.w64 = 0xffffffffffffffffULL;
Thomas Choue5720822010-03-26 08:17:00 +08001152 dest = flash_map(info, sect, 0);
1153 st = flash_status_poll(info, &cword, dest,
1154 info->erase_blk_tout, "erase");
1155 flash_unmap(info, sect, 0, dest);
1156 } else
1157 st = flash_full_status_check(info, sect,
1158 info->erase_blk_tout,
1159 "erase");
1160 if (st)
wdenk5653fc32004-02-08 22:55:38 +00001161 rcode = 1;
Thomas Choue5720822010-03-26 08:17:00 +08001162 else if (flash_verbose)
Mario Six188a5562018-01-26 14:43:31 +01001163 putc('.');
wdenk5653fc32004-02-08 22:55:38 +00001164 }
1165 }
Piotr Ziecik6ea808e2008-11-17 15:49:32 +01001166
1167 if (flash_verbose)
Mario Six188a5562018-01-26 14:43:31 +01001168 puts(" done\n");
Piotr Ziecik6ea808e2008-11-17 15:49:32 +01001169
wdenk5653fc32004-02-08 22:55:38 +00001170 return rcode;
1171}
1172
Stefan Roese70084df2010-08-13 09:36:36 +02001173#ifdef CONFIG_SYS_FLASH_EMPTY_INFO
1174static int sector_erased(flash_info_t *info, int i)
1175{
1176 int k;
1177 int size;
Stefan Roese4d2ca9d2010-10-25 18:31:39 +02001178 u32 *flash;
Stefan Roese70084df2010-08-13 09:36:36 +02001179
1180 /*
1181 * Check if whole sector is erased
1182 */
1183 size = flash_sector_size(info, i);
Stefan Roese4d2ca9d2010-10-25 18:31:39 +02001184 flash = (u32 *)info->start[i];
Stefan Roese70084df2010-08-13 09:36:36 +02001185 /* divide by 4 for longword access */
1186 size = size >> 2;
1187
1188 for (k = 0; k < size; k++) {
Stefan Roese4d2ca9d2010-10-25 18:31:39 +02001189 if (flash_read32(flash++) != 0xffffffff)
Stefan Roese70084df2010-08-13 09:36:36 +02001190 return 0; /* not erased */
1191 }
1192
1193 return 1; /* erased */
1194}
1195#endif /* CONFIG_SYS_FLASH_EMPTY_INFO */
1196
Mario Sixca2b07a2018-01-26 14:43:32 +01001197void flash_print_info(flash_info_t *info)
wdenk5653fc32004-02-08 22:55:38 +00001198{
1199 int i;
1200
1201 if (info->flash_id != FLASH_MAN_CFI) {
Mario Six188a5562018-01-26 14:43:31 +01001202 puts("missing or unknown FLASH type\n");
wdenk5653fc32004-02-08 22:55:38 +00001203 return;
1204 }
1205
Mario Six188a5562018-01-26 14:43:31 +01001206 printf("%s flash (%d x %d)",
Michael Schwingen81b20cc2007-12-07 23:35:02 +01001207 info->name,
wdenkbf9e3b32004-02-12 00:47:09 +00001208 (info->portwidth << 3), (info->chipwidth << 3));
Mario Six640f4e32018-01-26 14:43:36 +01001209 if (info->size < 1024 * 1024)
Mario Six188a5562018-01-26 14:43:31 +01001210 printf(" Size: %ld kB in %d Sectors\n",
Michael Schwingen81b20cc2007-12-07 23:35:02 +01001211 info->size >> 10, info->sector_count);
1212 else
Mario Six188a5562018-01-26 14:43:31 +01001213 printf(" Size: %ld MB in %d Sectors\n",
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001214 info->size >> 20, info->sector_count);
Mario Six188a5562018-01-26 14:43:31 +01001215 printf(" ");
Stefan Roese260421a2006-11-13 13:55:24 +01001216 switch (info->vendor) {
Mario Sixdde09132018-01-26 14:43:35 +01001217 case CFI_CMDSET_INTEL_PROG_REGIONS:
1218 printf("Intel Prog Regions");
1219 break;
1220 case CFI_CMDSET_INTEL_STANDARD:
1221 printf("Intel Standard");
1222 break;
1223 case CFI_CMDSET_INTEL_EXTENDED:
1224 printf("Intel Extended");
1225 break;
1226 case CFI_CMDSET_AMD_STANDARD:
1227 printf("AMD Standard");
1228 break;
1229 case CFI_CMDSET_AMD_EXTENDED:
1230 printf("AMD Extended");
1231 break;
Michael Schwingen81b20cc2007-12-07 23:35:02 +01001232#ifdef CONFIG_FLASH_CFI_LEGACY
Mario Sixdde09132018-01-26 14:43:35 +01001233 case CFI_CMDSET_AMD_LEGACY:
1234 printf("AMD Legacy");
1235 break;
Michael Schwingen81b20cc2007-12-07 23:35:02 +01001236#endif
Mario Sixdde09132018-01-26 14:43:35 +01001237 default:
1238 printf("Unknown (%d)", info->vendor);
1239 break;
Stefan Roese260421a2006-11-13 13:55:24 +01001240 }
Mario Six188a5562018-01-26 14:43:31 +01001241 printf(" command set, Manufacturer ID: 0x%02X, Device ID: 0x",
Philippe De Muyterd77c7ac2010-08-10 16:54:52 +02001242 info->manufacturer_id);
Mario Six188a5562018-01-26 14:43:31 +01001243 printf(info->chipwidth == FLASH_CFI_16BIT ? "%04X" : "%02X",
Philippe De Muyterd77c7ac2010-08-10 16:54:52 +02001244 info->device_id);
Heiko Schocher5b448ad2011-04-11 14:16:19 +02001245 if ((info->device_id & 0xff) == 0x7E) {
1246 printf(info->chipwidth == FLASH_CFI_16BIT ? "%04X" : "%02X",
1247 info->device_id2);
Stefan Roese260421a2006-11-13 13:55:24 +01001248 }
Stefan Roesed2af0282012-12-06 15:44:12 +01001249 if ((info->vendor == CFI_CMDSET_AMD_STANDARD) && (info->legacy_unlock))
1250 printf("\n Advanced Sector Protection (PPB) enabled");
Mario Six188a5562018-01-26 14:43:31 +01001251 printf("\n Erase timeout: %ld ms, write timeout: %ld ms\n",
wdenk028ab6b2004-02-23 23:54:43 +00001252 info->erase_blk_tout,
Stefan Roese260421a2006-11-13 13:55:24 +01001253 info->write_tout);
1254 if (info->buffer_size > 1) {
Mario Six188a5562018-01-26 14:43:31 +01001255 printf(" Buffer write timeout: %ld ms, "
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001256 "buffer size: %d bytes\n",
wdenk028ab6b2004-02-23 23:54:43 +00001257 info->buffer_write_tout,
1258 info->buffer_size);
Stefan Roese260421a2006-11-13 13:55:24 +01001259 }
wdenk5653fc32004-02-08 22:55:38 +00001260
Mario Six188a5562018-01-26 14:43:31 +01001261 puts("\n Sector Start Addresses:");
wdenkbf9e3b32004-02-12 00:47:09 +00001262 for (i = 0; i < info->sector_count; ++i) {
Kim Phillips2e973942010-07-26 18:35:39 -05001263 if (ctrlc())
Stefan Roese70084df2010-08-13 09:36:36 +02001264 break;
Stefan Roese260421a2006-11-13 13:55:24 +01001265 if ((i % 5) == 0)
Stefan Roese70084df2010-08-13 09:36:36 +02001266 putc('\n');
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001267#ifdef CONFIG_SYS_FLASH_EMPTY_INFO
wdenk5653fc32004-02-08 22:55:38 +00001268 /* print empty and read-only info */
Mario Six188a5562018-01-26 14:43:31 +01001269 printf(" %08lX %c %s ",
wdenk5653fc32004-02-08 22:55:38 +00001270 info->start[i],
Stefan Roese70084df2010-08-13 09:36:36 +02001271 sector_erased(info, i) ? 'E' : ' ',
Stefan Roese260421a2006-11-13 13:55:24 +01001272 info->protect[i] ? "RO" : " ");
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001273#else /* ! CONFIG_SYS_FLASH_EMPTY_INFO */
Mario Six188a5562018-01-26 14:43:31 +01001274 printf(" %08lX %s ",
Stefan Roese260421a2006-11-13 13:55:24 +01001275 info->start[i],
1276 info->protect[i] ? "RO" : " ");
wdenk5653fc32004-02-08 22:55:38 +00001277#endif
1278 }
Mario Six188a5562018-01-26 14:43:31 +01001279 putc('\n');
wdenk5653fc32004-02-08 22:55:38 +00001280 return;
1281}
1282
1283/*-----------------------------------------------------------------------
Jerry Van Baren9a042e92008-03-08 13:48:01 -05001284 * This is used in a few places in write_buf() to show programming
1285 * progress. Making it a function is nasty because it needs to do side
1286 * effect updates to digit and dots. Repeated code is nasty too, so
1287 * we define it once here.
1288 */
Stefan Roesef0105722008-03-19 07:09:26 +01001289#ifdef CONFIG_FLASH_SHOW_PROGRESS
1290#define FLASH_SHOW_PROGRESS(scale, dots, digit, dots_sub) \
Piotr Ziecik6ea808e2008-11-17 15:49:32 +01001291 if (flash_verbose) { \
1292 dots -= dots_sub; \
1293 if ((scale > 0) && (dots <= 0)) { \
1294 if ((digit % 5) == 0) \
Mario Six188a5562018-01-26 14:43:31 +01001295 printf("%d", digit / 5); \
Piotr Ziecik6ea808e2008-11-17 15:49:32 +01001296 else \
Mario Six188a5562018-01-26 14:43:31 +01001297 putc('.'); \
Piotr Ziecik6ea808e2008-11-17 15:49:32 +01001298 digit--; \
1299 dots += scale; \
1300 } \
Jerry Van Baren9a042e92008-03-08 13:48:01 -05001301 }
Stefan Roesef0105722008-03-19 07:09:26 +01001302#else
1303#define FLASH_SHOW_PROGRESS(scale, dots, digit, dots_sub)
1304#endif
Jerry Van Baren9a042e92008-03-08 13:48:01 -05001305
1306/*-----------------------------------------------------------------------
wdenk5653fc32004-02-08 22:55:38 +00001307 * Copy memory to flash, returns:
1308 * 0 - OK
1309 * 1 - write timeout
1310 * 2 - Flash not erased
1311 */
Mario Sixca2b07a2018-01-26 14:43:32 +01001312int write_buff(flash_info_t *info, uchar *src, ulong addr, ulong cnt)
wdenk5653fc32004-02-08 22:55:38 +00001313{
1314 ulong wp;
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +01001315 uchar *p;
wdenk5653fc32004-02-08 22:55:38 +00001316 int aln;
1317 cfiword_t cword;
1318 int i, rc;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001319#ifdef CONFIG_SYS_FLASH_USE_BUFFER_WRITE
wdenkbf9e3b32004-02-12 00:47:09 +00001320 int buffered_size;
1321#endif
Jerry Van Baren9a042e92008-03-08 13:48:01 -05001322#ifdef CONFIG_FLASH_SHOW_PROGRESS
1323 int digit = CONFIG_FLASH_SHOW_PROGRESS;
1324 int scale = 0;
1325 int dots = 0;
1326
1327 /*
1328 * Suppress if there are fewer than CONFIG_FLASH_SHOW_PROGRESS writes.
1329 */
1330 if (cnt >= CONFIG_FLASH_SHOW_PROGRESS) {
1331 scale = (int)((cnt + CONFIG_FLASH_SHOW_PROGRESS - 1) /
1332 CONFIG_FLASH_SHOW_PROGRESS);
1333 }
1334#endif
1335
wdenkbf9e3b32004-02-12 00:47:09 +00001336 /* get lower aligned address */
wdenk5653fc32004-02-08 22:55:38 +00001337 wp = (addr & ~(info->portwidth - 1));
1338
1339 /* handle unaligned start */
wdenkbf9e3b32004-02-12 00:47:09 +00001340 if ((aln = addr - wp) != 0) {
Ryan Harkin622b9522015-10-23 16:50:51 +01001341 cword.w32 = 0;
Becky Bruce09ce9922009-02-02 16:34:51 -06001342 p = (uchar *)wp;
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +01001343 for (i = 0; i < aln; ++i)
Mario Six188a5562018-01-26 14:43:31 +01001344 flash_add_byte(info, &cword, flash_read8(p + i));
wdenk5653fc32004-02-08 22:55:38 +00001345
wdenkbf9e3b32004-02-12 00:47:09 +00001346 for (; (i < info->portwidth) && (cnt > 0); i++) {
Mario Six188a5562018-01-26 14:43:31 +01001347 flash_add_byte(info, &cword, *src++);
wdenk5653fc32004-02-08 22:55:38 +00001348 cnt--;
wdenk5653fc32004-02-08 22:55:38 +00001349 }
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +01001350 for (; (cnt == 0) && (i < info->portwidth); ++i)
Mario Six188a5562018-01-26 14:43:31 +01001351 flash_add_byte(info, &cword, flash_read8(p + i));
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +01001352
Mario Six188a5562018-01-26 14:43:31 +01001353 rc = flash_write_cfiword(info, wp, cword);
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +01001354 if (rc != 0)
wdenk5653fc32004-02-08 22:55:38 +00001355 return rc;
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +01001356
1357 wp += i;
Stefan Roesef0105722008-03-19 07:09:26 +01001358 FLASH_SHOW_PROGRESS(scale, dots, digit, i);
wdenk5653fc32004-02-08 22:55:38 +00001359 }
1360
wdenkbf9e3b32004-02-12 00:47:09 +00001361 /* handle the aligned part */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001362#ifdef CONFIG_SYS_FLASH_USE_BUFFER_WRITE
wdenkbf9e3b32004-02-12 00:47:09 +00001363 buffered_size = (info->portwidth / info->chipwidth);
1364 buffered_size *= info->buffer_size;
1365 while (cnt >= info->portwidth) {
Stefan Roese79b4cda2006-02-28 15:29:58 +01001366 /* prohibit buffer write when buffer_size is 1 */
1367 if (info->buffer_size == 1) {
Ryan Harkin622b9522015-10-23 16:50:51 +01001368 cword.w32 = 0;
Stefan Roese79b4cda2006-02-28 15:29:58 +01001369 for (i = 0; i < info->portwidth; i++)
Mario Six188a5562018-01-26 14:43:31 +01001370 flash_add_byte(info, &cword, *src++);
1371 if ((rc = flash_write_cfiword(info, wp, cword)) != 0)
Stefan Roese79b4cda2006-02-28 15:29:58 +01001372 return rc;
1373 wp += info->portwidth;
1374 cnt -= info->portwidth;
1375 continue;
1376 }
1377
1378 /* write buffer until next buffered_size aligned boundary */
1379 i = buffered_size - (wp % buffered_size);
1380 if (i > cnt)
1381 i = cnt;
Mario Six188a5562018-01-26 14:43:31 +01001382 if ((rc = flash_write_cfibuffer(info, wp, src, i)) != ERR_OK)
wdenk5653fc32004-02-08 22:55:38 +00001383 return rc;
Wolfgang Denk8d4ba3d2005-08-12 22:35:59 +02001384 i -= i & (info->portwidth - 1);
wdenk5653fc32004-02-08 22:55:38 +00001385 wp += i;
1386 src += i;
wdenkbf9e3b32004-02-12 00:47:09 +00001387 cnt -= i;
Stefan Roesef0105722008-03-19 07:09:26 +01001388 FLASH_SHOW_PROGRESS(scale, dots, digit, i);
Joe Hershbergerde15a062012-08-17 15:36:41 -05001389 /* Only check every once in a while */
1390 if ((cnt & 0xFFFF) < buffered_size && ctrlc())
1391 return ERR_ABORTED;
wdenk5653fc32004-02-08 22:55:38 +00001392 }
1393#else
wdenkbf9e3b32004-02-12 00:47:09 +00001394 while (cnt >= info->portwidth) {
Ryan Harkin622b9522015-10-23 16:50:51 +01001395 cword.w32 = 0;
Mario Six0412e902018-01-26 14:43:38 +01001396 for (i = 0; i < info->portwidth; i++)
Mario Six188a5562018-01-26 14:43:31 +01001397 flash_add_byte(info, &cword, *src++);
Mario Six188a5562018-01-26 14:43:31 +01001398 if ((rc = flash_write_cfiword(info, wp, cword)) != 0)
wdenk5653fc32004-02-08 22:55:38 +00001399 return rc;
1400 wp += info->portwidth;
1401 cnt -= info->portwidth;
Stefan Roesef0105722008-03-19 07:09:26 +01001402 FLASH_SHOW_PROGRESS(scale, dots, digit, info->portwidth);
Joe Hershbergerde15a062012-08-17 15:36:41 -05001403 /* Only check every once in a while */
1404 if ((cnt & 0xFFFF) < info->portwidth && ctrlc())
1405 return ERR_ABORTED;
wdenk5653fc32004-02-08 22:55:38 +00001406 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001407#endif /* CONFIG_SYS_FLASH_USE_BUFFER_WRITE */
Jerry Van Baren9a042e92008-03-08 13:48:01 -05001408
Mario Six0412e902018-01-26 14:43:38 +01001409 if (cnt == 0)
wdenk5653fc32004-02-08 22:55:38 +00001410 return (0);
wdenk5653fc32004-02-08 22:55:38 +00001411
1412 /*
1413 * handle unaligned tail bytes
1414 */
Ryan Harkin622b9522015-10-23 16:50:51 +01001415 cword.w32 = 0;
Becky Bruce09ce9922009-02-02 16:34:51 -06001416 p = (uchar *)wp;
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +01001417 for (i = 0; (i < info->portwidth) && (cnt > 0); ++i) {
Mario Six188a5562018-01-26 14:43:31 +01001418 flash_add_byte(info, &cword, *src++);
wdenk5653fc32004-02-08 22:55:38 +00001419 --cnt;
1420 }
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +01001421 for (; i < info->portwidth; ++i)
Mario Six188a5562018-01-26 14:43:31 +01001422 flash_add_byte(info, &cword, flash_read8(p + i));
wdenk5653fc32004-02-08 22:55:38 +00001423
Mario Six188a5562018-01-26 14:43:31 +01001424 return flash_write_cfiword(info, wp, cword);
wdenk5653fc32004-02-08 22:55:38 +00001425}
1426
Stefan Roese20043a42012-12-06 15:44:09 +01001427static inline int manufact_match(flash_info_t *info, u32 manu)
1428{
1429 return info->manufacturer_id == ((manu & FLASH_VENDMASK) >> 16);
1430}
1431
wdenk5653fc32004-02-08 22:55:38 +00001432/*-----------------------------------------------------------------------
1433 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001434#ifdef CONFIG_SYS_FLASH_PROTECTION
wdenk5653fc32004-02-08 22:55:38 +00001435
Holger Brunck81316a92012-08-09 10:22:41 +02001436static int cfi_protect_bugfix(flash_info_t *info, long sector, int prot)
1437{
Mario Six88ecd8b2018-01-26 14:43:39 +01001438 if (manufact_match(info, INTEL_MANUFACT) &&
1439 info->device_id == NUMONYX_256MBIT) {
Holger Brunck81316a92012-08-09 10:22:41 +02001440 /*
1441 * see errata called
1442 * "Numonyx Axcell P33/P30 Specification Update" :)
1443 */
1444 flash_write_cmd(info, sector, 0, FLASH_CMD_READ_ID);
1445 if (!flash_isequal(info, sector, FLASH_OFFSET_PROTECT,
1446 prot)) {
1447 /*
1448 * cmd must come before FLASH_CMD_PROTECT + 20us
1449 * Disable interrupts which might cause a timeout here.
1450 */
1451 int flag = disable_interrupts();
1452 unsigned short cmd;
1453
1454 if (prot)
1455 cmd = FLASH_CMD_PROTECT_SET;
1456 else
1457 cmd = FLASH_CMD_PROTECT_CLEAR;
Andre Przywara58eab322016-11-16 00:50:06 +00001458
1459 flash_write_cmd(info, sector, 0, FLASH_CMD_PROTECT);
Holger Brunck81316a92012-08-09 10:22:41 +02001460 flash_write_cmd(info, sector, 0, cmd);
1461 /* re-enable interrupts if necessary */
1462 if (flag)
1463 enable_interrupts();
1464 }
1465 return 1;
1466 }
1467 return 0;
1468}
1469
Mario Sixca2b07a2018-01-26 14:43:32 +01001470int flash_real_protect(flash_info_t *info, long sector, int prot)
wdenk5653fc32004-02-08 22:55:38 +00001471{
1472 int retcode = 0;
1473
Rafael Camposbc9019e2008-07-31 10:22:20 +02001474 switch (info->vendor) {
Mario Sixdde09132018-01-26 14:43:35 +01001475 case CFI_CMDSET_INTEL_PROG_REGIONS:
1476 case CFI_CMDSET_INTEL_STANDARD:
1477 case CFI_CMDSET_INTEL_EXTENDED:
1478 if (!cfi_protect_bugfix(info, sector, prot)) {
1479 flash_write_cmd(info, sector, 0,
1480 FLASH_CMD_CLEAR_STATUS);
1481 flash_write_cmd(info, sector, 0,
1482 FLASH_CMD_PROTECT);
TsiChung Liew4e00acd2008-08-19 16:53:39 +00001483 if (prot)
Mario Sixdde09132018-01-26 14:43:35 +01001484 flash_write_cmd(info, sector, 0,
1485 FLASH_CMD_PROTECT_SET);
TsiChung Liew4e00acd2008-08-19 16:53:39 +00001486 else
Mario Sixdde09132018-01-26 14:43:35 +01001487 flash_write_cmd(info, sector, 0,
1488 FLASH_CMD_PROTECT_CLEAR);
Mario Sixdde09132018-01-26 14:43:35 +01001489 }
1490 break;
1491 case CFI_CMDSET_AMD_EXTENDED:
1492 case CFI_CMDSET_AMD_STANDARD:
1493 /* U-Boot only checks the first byte */
1494 if (manufact_match(info, ATM_MANUFACT)) {
1495 if (prot) {
1496 flash_unlock_seq(info, 0);
1497 flash_write_cmd(info, 0,
1498 info->addr_unlock1,
1499 ATM_CMD_SOFTLOCK_START);
1500 flash_unlock_seq(info, 0);
1501 flash_write_cmd(info, sector, 0,
1502 ATM_CMD_LOCK_SECT);
1503 } else {
1504 flash_write_cmd(info, 0,
1505 info->addr_unlock1,
1506 AMD_CMD_UNLOCK_START);
1507 if (info->device_id == ATM_ID_BV6416)
1508 flash_write_cmd(info, sector,
1509 0, ATM_CMD_UNLOCK_SECT);
1510 }
1511 }
1512 if (info->legacy_unlock) {
1513 int flag = disable_interrupts();
1514 int lock_flag;
1515
1516 flash_unlock_seq(info, 0);
1517 flash_write_cmd(info, 0, info->addr_unlock1,
1518 AMD_CMD_SET_PPB_ENTRY);
1519 lock_flag = flash_isset(info, sector, 0, 0x01);
1520 if (prot) {
1521 if (lock_flag) {
1522 flash_write_cmd(info, sector, 0,
1523 AMD_CMD_PPB_LOCK_BC1);
1524 flash_write_cmd(info, sector, 0,
1525 AMD_CMD_PPB_LOCK_BC2);
1526 }
1527 debug("sector %ld %slocked\n", sector,
1528 lock_flag ? "" : "already ");
1529 } else {
1530 if (!lock_flag) {
1531 debug("unlock %ld\n", sector);
1532 flash_write_cmd(info, 0, 0,
1533 AMD_CMD_PPB_UNLOCK_BC1);
1534 flash_write_cmd(info, 0, 0,
1535 AMD_CMD_PPB_UNLOCK_BC2);
1536 }
1537 debug("sector %ld %sunlocked\n", sector,
1538 !lock_flag ? "" : "already ");
1539 }
1540 if (flag)
1541 enable_interrupts();
1542
1543 if (flash_status_check(info, sector,
1544 info->erase_blk_tout,
1545 prot ? "protect" : "unprotect"))
1546 printf("status check error\n");
1547
1548 flash_write_cmd(info, 0, 0,
1549 AMD_CMD_SET_PPB_EXIT_BC1);
1550 flash_write_cmd(info, 0, 0,
1551 AMD_CMD_SET_PPB_EXIT_BC2);
1552 }
1553 break;
1554#ifdef CONFIG_FLASH_CFI_LEGACY
1555 case CFI_CMDSET_AMD_LEGACY:
1556 flash_write_cmd(info, sector, 0, FLASH_CMD_CLEAR_STATUS);
1557 flash_write_cmd(info, sector, 0, FLASH_CMD_PROTECT);
1558 if (prot)
1559 flash_write_cmd(info, sector, 0, FLASH_CMD_PROTECT_SET);
1560 else
1561 flash_write_cmd(info, sector, 0, FLASH_CMD_PROTECT_CLEAR);
TsiChung Liew4e00acd2008-08-19 16:53:39 +00001562#endif
Rafael Camposbc9019e2008-07-31 10:22:20 +02001563 };
wdenk5653fc32004-02-08 22:55:38 +00001564
Stefan Roesedf4e8132010-10-25 18:31:29 +02001565 /*
1566 * Flash needs to be in status register read mode for
1567 * flash_full_status_check() to work correctly
1568 */
1569 flash_write_cmd(info, sector, 0, FLASH_CMD_READ_STATUS);
wdenkbf9e3b32004-02-12 00:47:09 +00001570 if ((retcode =
Mario Six188a5562018-01-26 14:43:31 +01001571 flash_full_status_check(info, sector, info->erase_blk_tout,
wdenkbf9e3b32004-02-12 00:47:09 +00001572 prot ? "protect" : "unprotect")) == 0) {
wdenk5653fc32004-02-08 22:55:38 +00001573 info->protect[sector] = prot;
Stefan Roese2662b402006-04-01 13:41:03 +02001574
1575 /*
1576 * On some of Intel's flash chips (marked via legacy_unlock)
1577 * unprotect unprotects all locking.
1578 */
1579 if ((prot == 0) && (info->legacy_unlock)) {
wdenk5653fc32004-02-08 22:55:38 +00001580 flash_sect_t i;
wdenkbf9e3b32004-02-12 00:47:09 +00001581
1582 for (i = 0; i < info->sector_count; i++) {
1583 if (info->protect[i])
Mario Six188a5562018-01-26 14:43:31 +01001584 flash_real_protect(info, i, 1);
wdenk5653fc32004-02-08 22:55:38 +00001585 }
1586 }
1587 }
wdenk5653fc32004-02-08 22:55:38 +00001588 return retcode;
wdenkbf9e3b32004-02-12 00:47:09 +00001589}
1590
wdenk5653fc32004-02-08 22:55:38 +00001591/*-----------------------------------------------------------------------
1592 * flash_read_user_serial - read the OneTimeProgramming cells
1593 */
Mario Sixca2b07a2018-01-26 14:43:32 +01001594void flash_read_user_serial(flash_info_t *info, void *buffer, int offset,
wdenkbf9e3b32004-02-12 00:47:09 +00001595 int len)
wdenk5653fc32004-02-08 22:55:38 +00001596{
wdenkbf9e3b32004-02-12 00:47:09 +00001597 uchar *src;
1598 uchar *dst;
wdenk5653fc32004-02-08 22:55:38 +00001599
1600 dst = buffer;
Mario Six188a5562018-01-26 14:43:31 +01001601 src = flash_map(info, 0, FLASH_OFFSET_USER_PROTECTION);
1602 flash_write_cmd(info, 0, 0, FLASH_CMD_READ_ID);
1603 memcpy(dst, src + offset, len);
1604 flash_write_cmd(info, 0, 0, info->cmd_reset);
Aaron Williamsa90b9572011-04-12 00:59:04 -07001605 udelay(1);
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +01001606 flash_unmap(info, 0, FLASH_OFFSET_USER_PROTECTION, src);
wdenk5653fc32004-02-08 22:55:38 +00001607}
wdenkbf9e3b32004-02-12 00:47:09 +00001608
wdenk5653fc32004-02-08 22:55:38 +00001609/*
1610 * flash_read_factory_serial - read the device Id from the protection area
1611 */
Mario Sixca2b07a2018-01-26 14:43:32 +01001612void flash_read_factory_serial(flash_info_t *info, void *buffer, int offset,
wdenkbf9e3b32004-02-12 00:47:09 +00001613 int len)
wdenk5653fc32004-02-08 22:55:38 +00001614{
wdenkbf9e3b32004-02-12 00:47:09 +00001615 uchar *src;
wdenkcd37d9e2004-02-10 00:03:41 +00001616
Mario Six188a5562018-01-26 14:43:31 +01001617 src = flash_map(info, 0, FLASH_OFFSET_INTEL_PROTECTION);
1618 flash_write_cmd(info, 0, 0, FLASH_CMD_READ_ID);
1619 memcpy(buffer, src + offset, len);
1620 flash_write_cmd(info, 0, 0, info->cmd_reset);
Aaron Williamsa90b9572011-04-12 00:59:04 -07001621 udelay(1);
Haavard Skinnemoen12d30aa2007-12-13 12:56:34 +01001622 flash_unmap(info, 0, FLASH_OFFSET_INTEL_PROTECTION, src);
wdenk5653fc32004-02-08 22:55:38 +00001623}
1624
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001625#endif /* CONFIG_SYS_FLASH_PROTECTION */
wdenk5653fc32004-02-08 22:55:38 +00001626
Haavard Skinnemoen0ddf06d2007-12-14 15:36:17 +01001627/*-----------------------------------------------------------------------
1628 * Reverse the order of the erase regions in the CFI QRY structure.
1629 * This is needed for chips that are either a) correctly detected as
1630 * top-boot, or b) buggy.
1631 */
1632static void cfi_reverse_geometry(struct cfi_qry *qry)
1633{
1634 unsigned int i, j;
1635 u32 tmp;
1636
1637 for (i = 0, j = qry->num_erase_regions - 1; i < j; i++, j--) {
Andrew Gabbasovaedadf12013-05-14 12:27:52 -05001638 tmp = get_unaligned(&(qry->erase_region_info[i]));
1639 put_unaligned(get_unaligned(&(qry->erase_region_info[j])),
1640 &(qry->erase_region_info[i]));
1641 put_unaligned(tmp, &(qry->erase_region_info[j]));
Haavard Skinnemoen0ddf06d2007-12-14 15:36:17 +01001642 }
1643}
wdenk5653fc32004-02-08 22:55:38 +00001644
1645/*-----------------------------------------------------------------------
Stefan Roese260421a2006-11-13 13:55:24 +01001646 * read jedec ids from device and set corresponding fields in info struct
1647 *
1648 * Note: assume cfi->vendor, cfi->portwidth and cfi->chipwidth are correct
1649 *
Haavard Skinnemoen0ddf06d2007-12-14 15:36:17 +01001650 */
1651static void cmdset_intel_read_jedec_ids(flash_info_t *info)
1652{
1653 flash_write_cmd(info, 0, 0, FLASH_CMD_RESET);
Aaron Williamsa90b9572011-04-12 00:59:04 -07001654 udelay(1);
Haavard Skinnemoen0ddf06d2007-12-14 15:36:17 +01001655 flash_write_cmd(info, 0, 0, FLASH_CMD_READ_ID);
1656 udelay(1000); /* some flash are slow to respond */
Mario Six188a5562018-01-26 14:43:31 +01001657 info->manufacturer_id = flash_read_uchar(info,
Haavard Skinnemoen0ddf06d2007-12-14 15:36:17 +01001658 FLASH_OFFSET_MANUFACTURER_ID);
Philippe De Muyterd77c7ac2010-08-10 16:54:52 +02001659 info->device_id = (info->chipwidth == FLASH_CFI_16BIT) ?
Mario Six188a5562018-01-26 14:43:31 +01001660 flash_read_word(info, FLASH_OFFSET_DEVICE_ID) :
1661 flash_read_uchar(info, FLASH_OFFSET_DEVICE_ID);
Haavard Skinnemoen0ddf06d2007-12-14 15:36:17 +01001662 flash_write_cmd(info, 0, 0, FLASH_CMD_RESET);
1663}
1664
1665static int cmdset_intel_init(flash_info_t *info, struct cfi_qry *qry)
1666{
1667 info->cmd_reset = FLASH_CMD_RESET;
1668
1669 cmdset_intel_read_jedec_ids(info);
1670 flash_write_cmd(info, 0, info->cfi_offset, FLASH_CMD_CFI);
1671
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001672#ifdef CONFIG_SYS_FLASH_PROTECTION
Haavard Skinnemoen0ddf06d2007-12-14 15:36:17 +01001673 /* read legacy lock/unlock bit from intel flash */
1674 if (info->ext_addr) {
Mario Six188a5562018-01-26 14:43:31 +01001675 info->legacy_unlock = flash_read_uchar(info,
Haavard Skinnemoen0ddf06d2007-12-14 15:36:17 +01001676 info->ext_addr + 5) & 0x08;
1677 }
1678#endif
1679
1680 return 0;
1681}
1682
1683static void cmdset_amd_read_jedec_ids(flash_info_t *info)
1684{
Niklaus Giger3a7b2c22009-07-22 17:13:24 +02001685 ushort bankId = 0;
1686 uchar manuId;
York Sun2544f472017-11-18 11:09:08 -08001687 uchar feature;
Niklaus Giger3a7b2c22009-07-22 17:13:24 +02001688
Haavard Skinnemoen0ddf06d2007-12-14 15:36:17 +01001689 flash_write_cmd(info, 0, 0, AMD_CMD_RESET);
1690 flash_unlock_seq(info, 0);
1691 flash_write_cmd(info, 0, info->addr_unlock1, FLASH_CMD_READ_ID);
1692 udelay(1000); /* some flash are slow to respond */
Tor Krill90447ec2008-03-28 11:29:10 +01001693
Mario Six188a5562018-01-26 14:43:31 +01001694 manuId = flash_read_uchar(info, FLASH_OFFSET_MANUFACTURER_ID);
Niklaus Giger3a7b2c22009-07-22 17:13:24 +02001695 /* JEDEC JEP106Z specifies ID codes up to bank 7 */
1696 while (manuId == FLASH_CONTINUATION_CODE && bankId < 0x800) {
1697 bankId += 0x100;
Mario Six188a5562018-01-26 14:43:31 +01001698 manuId = flash_read_uchar(info,
Niklaus Giger3a7b2c22009-07-22 17:13:24 +02001699 bankId | FLASH_OFFSET_MANUFACTURER_ID);
1700 }
1701 info->manufacturer_id = manuId;
Tor Krill90447ec2008-03-28 11:29:10 +01001702
York Sun2544f472017-11-18 11:09:08 -08001703 debug("info->ext_addr = 0x%x, cfi_version = 0x%x\n",
1704 info->ext_addr, info->cfi_version);
1705 if (info->ext_addr && info->cfi_version >= 0x3134) {
1706 /* read software feature (at 0x53) */
1707 feature = flash_read_uchar(info, info->ext_addr + 0x13);
1708 debug("feature = 0x%x\n", feature);
1709 info->sr_supported = feature & 0x1;
1710 }
Marek Vasut72443c72017-09-12 19:09:31 +02001711
Mario Sixb1683862018-01-26 14:43:33 +01001712 switch (info->chipwidth) {
Tor Krill90447ec2008-03-28 11:29:10 +01001713 case FLASH_CFI_8BIT:
Mario Six188a5562018-01-26 14:43:31 +01001714 info->device_id = flash_read_uchar(info,
Tor Krill90447ec2008-03-28 11:29:10 +01001715 FLASH_OFFSET_DEVICE_ID);
1716 if (info->device_id == 0x7E) {
1717 /* AMD 3-byte (expanded) device ids */
Mario Six188a5562018-01-26 14:43:31 +01001718 info->device_id2 = flash_read_uchar(info,
Tor Krill90447ec2008-03-28 11:29:10 +01001719 FLASH_OFFSET_DEVICE_ID2);
1720 info->device_id2 <<= 8;
Mario Six188a5562018-01-26 14:43:31 +01001721 info->device_id2 |= flash_read_uchar(info,
Tor Krill90447ec2008-03-28 11:29:10 +01001722 FLASH_OFFSET_DEVICE_ID3);
1723 }
1724 break;
1725 case FLASH_CFI_16BIT:
Mario Six188a5562018-01-26 14:43:31 +01001726 info->device_id = flash_read_word(info,
Tor Krill90447ec2008-03-28 11:29:10 +01001727 FLASH_OFFSET_DEVICE_ID);
Heiko Schocher5b448ad2011-04-11 14:16:19 +02001728 if ((info->device_id & 0xff) == 0x7E) {
1729 /* AMD 3-byte (expanded) device ids */
Mario Six188a5562018-01-26 14:43:31 +01001730 info->device_id2 = flash_read_uchar(info,
Heiko Schocher5b448ad2011-04-11 14:16:19 +02001731 FLASH_OFFSET_DEVICE_ID2);
1732 info->device_id2 <<= 8;
Mario Six188a5562018-01-26 14:43:31 +01001733 info->device_id2 |= flash_read_uchar(info,
Heiko Schocher5b448ad2011-04-11 14:16:19 +02001734 FLASH_OFFSET_DEVICE_ID3);
1735 }
Tor Krill90447ec2008-03-28 11:29:10 +01001736 break;
1737 default:
1738 break;
Haavard Skinnemoen0ddf06d2007-12-14 15:36:17 +01001739 }
1740 flash_write_cmd(info, 0, 0, AMD_CMD_RESET);
Aaron Williamsa90b9572011-04-12 00:59:04 -07001741 udelay(1);
Haavard Skinnemoen0ddf06d2007-12-14 15:36:17 +01001742}
1743
1744static int cmdset_amd_init(flash_info_t *info, struct cfi_qry *qry)
1745{
1746 info->cmd_reset = AMD_CMD_RESET;
Angelo Dureghello07b2c5c2012-12-01 01:14:18 +01001747 info->cmd_erase_sector = AMD_CMD_ERASE_SECTOR;
Haavard Skinnemoen0ddf06d2007-12-14 15:36:17 +01001748
1749 cmdset_amd_read_jedec_ids(info);
1750 flash_write_cmd(info, 0, info->cfi_offset, FLASH_CMD_CFI);
1751
Anatolij Gustschin66863b02012-08-09 08:18:12 +02001752#ifdef CONFIG_SYS_FLASH_PROTECTION
Stefan Roeseac6b9112012-12-06 15:44:11 +01001753 if (info->ext_addr) {
1754 /* read sector protect/unprotect scheme (at 0x49) */
1755 if (flash_read_uchar(info, info->ext_addr + 9) == 0x8)
Anatolij Gustschin66863b02012-08-09 08:18:12 +02001756 info->legacy_unlock = 1;
1757 }
1758#endif
1759
Haavard Skinnemoen0ddf06d2007-12-14 15:36:17 +01001760 return 0;
1761}
1762
1763#ifdef CONFIG_FLASH_CFI_LEGACY
Mario Sixca2b07a2018-01-26 14:43:32 +01001764static void flash_read_jedec_ids(flash_info_t *info)
Stefan Roese260421a2006-11-13 13:55:24 +01001765{
1766 info->manufacturer_id = 0;
1767 info->device_id = 0;
1768 info->device_id2 = 0;
1769
1770 switch (info->vendor) {
Vasiliy Leoenenko9c048b52008-05-07 21:25:33 +04001771 case CFI_CMDSET_INTEL_PROG_REGIONS:
Stefan Roese260421a2006-11-13 13:55:24 +01001772 case CFI_CMDSET_INTEL_STANDARD:
1773 case CFI_CMDSET_INTEL_EXTENDED:
Michael Schwingen8225d1e2008-01-12 20:29:47 +01001774 cmdset_intel_read_jedec_ids(info);
Stefan Roese260421a2006-11-13 13:55:24 +01001775 break;
1776 case CFI_CMDSET_AMD_STANDARD:
1777 case CFI_CMDSET_AMD_EXTENDED:
Michael Schwingen8225d1e2008-01-12 20:29:47 +01001778 cmdset_amd_read_jedec_ids(info);
Stefan Roese260421a2006-11-13 13:55:24 +01001779 break;
1780 default:
1781 break;
1782 }
1783}
1784
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02001785/*-----------------------------------------------------------------------
1786 * Call board code to request info about non-CFI flash.
1787 * board_flash_get_legacy needs to fill in at least:
1788 * info->portwidth, info->chipwidth and info->interface for Jedec probing.
1789 */
Becky Bruce09ce9922009-02-02 16:34:51 -06001790static int flash_detect_legacy(phys_addr_t base, int banknum)
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02001791{
1792 flash_info_t *info = &flash_info[banknum];
1793
1794 if (board_flash_get_legacy(base, banknum, info)) {
1795 /* board code may have filled info completely. If not, we
1796 use JEDEC ID probing. */
1797 if (!info->vendor) {
1798 int modes[] = {
1799 CFI_CMDSET_AMD_STANDARD,
1800 CFI_CMDSET_INTEL_STANDARD
1801 };
1802 int i;
1803
Axel Lin31bf0f52013-06-23 00:56:46 +08001804 for (i = 0; i < ARRAY_SIZE(modes); i++) {
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02001805 info->vendor = modes[i];
Becky Bruce09ce9922009-02-02 16:34:51 -06001806 info->start[0] =
1807 (ulong)map_physmem(base,
Stefan Roesee1fb6d02009-02-05 11:44:52 +01001808 info->portwidth,
Becky Bruce09ce9922009-02-02 16:34:51 -06001809 MAP_NOCACHE);
Mario Six88ecd8b2018-01-26 14:43:39 +01001810 if (info->portwidth == FLASH_CFI_8BIT &&
1811 info->interface == FLASH_CFI_X8X16) {
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02001812 info->addr_unlock1 = 0x2AAA;
1813 info->addr_unlock2 = 0x5555;
1814 } else {
1815 info->addr_unlock1 = 0x5555;
1816 info->addr_unlock2 = 0x2AAA;
1817 }
1818 flash_read_jedec_ids(info);
1819 debug("JEDEC PROBE: ID %x %x %x\n",
1820 info->manufacturer_id,
1821 info->device_id,
1822 info->device_id2);
Becky Bruce09ce9922009-02-02 16:34:51 -06001823 if (jedec_flash_match(info, info->start[0]))
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02001824 break;
Becky Bruce09ce9922009-02-02 16:34:51 -06001825 else
Stefan Roesee1fb6d02009-02-05 11:44:52 +01001826 unmap_physmem((void *)info->start[0],
Kuo-Jung Sud8b57c02013-07-04 11:40:36 +08001827 info->portwidth);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02001828 }
1829 }
1830
Mario Sixb1683862018-01-26 14:43:33 +01001831 switch (info->vendor) {
Vasiliy Leoenenko9c048b52008-05-07 21:25:33 +04001832 case CFI_CMDSET_INTEL_PROG_REGIONS:
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02001833 case CFI_CMDSET_INTEL_STANDARD:
1834 case CFI_CMDSET_INTEL_EXTENDED:
1835 info->cmd_reset = FLASH_CMD_RESET;
1836 break;
1837 case CFI_CMDSET_AMD_STANDARD:
1838 case CFI_CMDSET_AMD_EXTENDED:
1839 case CFI_CMDSET_AMD_LEGACY:
1840 info->cmd_reset = AMD_CMD_RESET;
1841 break;
1842 }
1843 info->flash_id = FLASH_MAN_CFI;
1844 return 1;
1845 }
1846 return 0; /* use CFI */
1847}
1848#else
Becky Bruce09ce9922009-02-02 16:34:51 -06001849static inline int flash_detect_legacy(phys_addr_t base, int banknum)
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02001850{
1851 return 0; /* use CFI */
1852}
1853#endif
1854
Stefan Roese260421a2006-11-13 13:55:24 +01001855/*-----------------------------------------------------------------------
wdenk5653fc32004-02-08 22:55:38 +00001856 * detect if flash is compatible with the Common Flash Interface (CFI)
1857 * http://www.jedec.org/download/search/jesd68.pdf
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001858 */
Mario Six188a5562018-01-26 14:43:31 +01001859static void flash_read_cfi(flash_info_t *info, void *buf,
Haavard Skinnemoene23741f2007-12-14 15:36:16 +01001860 unsigned int start, size_t len)
1861{
1862 u8 *p = buf;
1863 unsigned int i;
1864
1865 for (i = 0; i < len; i++)
Stefan Roesee303be22013-04-12 19:04:54 +02001866 p[i] = flash_read_uchar(info, start + i);
Haavard Skinnemoene23741f2007-12-14 15:36:16 +01001867}
1868
Kim Phillips11dc4012012-10-29 13:34:45 +00001869static void __flash_cmd_reset(flash_info_t *info)
Stefan Roesefa36ae72009-10-27 15:15:55 +01001870{
1871 /*
1872 * We do not yet know what kind of commandset to use, so we issue
1873 * the reset command in both Intel and AMD variants, in the hope
1874 * that AMD flash roms ignore the Intel command.
1875 */
1876 flash_write_cmd(info, 0, 0, AMD_CMD_RESET);
Aaron Williamsa90b9572011-04-12 00:59:04 -07001877 udelay(1);
Stefan Roesefa36ae72009-10-27 15:15:55 +01001878 flash_write_cmd(info, 0, 0, FLASH_CMD_RESET);
1879}
Mario Six7223a8c2018-01-26 14:43:37 +01001880
Stefan Roesefa36ae72009-10-27 15:15:55 +01001881void flash_cmd_reset(flash_info_t *info)
Mario Six640f4e32018-01-26 14:43:36 +01001882 __attribute__((weak, alias("__flash_cmd_reset")));
Stefan Roesefa36ae72009-10-27 15:15:55 +01001883
Mario Sixca2b07a2018-01-26 14:43:32 +01001884static int __flash_detect_cfi(flash_info_t *info, struct cfi_qry *qry)
wdenk5653fc32004-02-08 22:55:38 +00001885{
Wolfgang Denk92eb7292006-12-27 01:26:13 +01001886 int cfi_offset;
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001887
Stefan Roesee303be22013-04-12 19:04:54 +02001888 /* Issue FLASH reset command */
1889 flash_cmd_reset(info);
1890
Axel Lin31bf0f52013-06-23 00:56:46 +08001891 for (cfi_offset = 0; cfi_offset < ARRAY_SIZE(flash_offset_cfi);
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001892 cfi_offset++) {
Mario Six188a5562018-01-26 14:43:31 +01001893 flash_write_cmd(info, 0, flash_offset_cfi[cfi_offset],
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001894 FLASH_CMD_CFI);
Mario Six88ecd8b2018-01-26 14:43:39 +01001895 if (flash_isequal(info, 0, FLASH_OFFSET_CFI_RESP, 'Q') &&
1896 flash_isequal(info, 0, FLASH_OFFSET_CFI_RESP + 1, 'R') &&
1897 flash_isequal(info, 0, FLASH_OFFSET_CFI_RESP + 2, 'Y')) {
Haavard Skinnemoene23741f2007-12-14 15:36:16 +01001898 flash_read_cfi(info, qry, FLASH_OFFSET_CFI_RESP,
1899 sizeof(struct cfi_qry));
1900 info->interface = le16_to_cpu(qry->interface_desc);
Stefan Roesee303be22013-04-12 19:04:54 +02001901
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001902 info->cfi_offset = flash_offset_cfi[cfi_offset];
Mario Six188a5562018-01-26 14:43:31 +01001903 debug("device interface is %d\n",
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001904 info->interface);
Mario Six188a5562018-01-26 14:43:31 +01001905 debug("found port %d chip %d ",
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001906 info->portwidth, info->chipwidth);
Mario Six188a5562018-01-26 14:43:31 +01001907 debug("port %d bits chip %d bits\n",
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001908 info->portwidth << CFI_FLASH_SHIFT_WIDTH,
1909 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
1910
1911 /* calculate command offsets as in the Linux driver */
Stefan Roesee303be22013-04-12 19:04:54 +02001912 info->addr_unlock1 = 0x555;
1913 info->addr_unlock2 = 0x2aa;
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001914
1915 /*
1916 * modify the unlock address if we are
1917 * in compatibility mode
1918 */
Mario Sixb1683862018-01-26 14:43:33 +01001919 if (/* x8/x16 in x8 mode */
1920 ((info->chipwidth == FLASH_CFI_BY8) &&
1921 (info->interface == FLASH_CFI_X8X16)) ||
1922 /* x16/x32 in x16 mode */
1923 ((info->chipwidth == FLASH_CFI_BY16) &&
1924 (info->interface == FLASH_CFI_X16X32)))
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001925 {
1926 info->addr_unlock1 = 0xaaa;
1927 info->addr_unlock2 = 0x555;
1928 }
1929
1930 info->name = "CFI conformant";
1931 return 1;
1932 }
1933 }
1934
1935 return 0;
1936}
1937
Mario Sixca2b07a2018-01-26 14:43:32 +01001938static int flash_detect_cfi(flash_info_t *info, struct cfi_qry *qry)
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001939{
Mario Six188a5562018-01-26 14:43:31 +01001940 debug("flash detect cfi\n");
wdenk5653fc32004-02-08 22:55:38 +00001941
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001942 for (info->portwidth = CONFIG_SYS_FLASH_CFI_WIDTH;
wdenkbf9e3b32004-02-12 00:47:09 +00001943 info->portwidth <= FLASH_CFI_64BIT; info->portwidth <<= 1) {
1944 for (info->chipwidth = FLASH_CFI_BY8;
1945 info->chipwidth <= info->portwidth;
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001946 info->chipwidth <<= 1)
Stefan Roesee303be22013-04-12 19:04:54 +02001947 if (__flash_detect_cfi(info, qry))
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01001948 return 1;
wdenk5653fc32004-02-08 22:55:38 +00001949 }
Mario Six188a5562018-01-26 14:43:31 +01001950 debug("not found\n");
wdenk5653fc32004-02-08 22:55:38 +00001951 return 0;
1952}
wdenkbf9e3b32004-02-12 00:47:09 +00001953
wdenk5653fc32004-02-08 22:55:38 +00001954/*
Haavard Skinnemoen467bcee2007-12-14 15:36:18 +01001955 * Manufacturer-specific quirks. Add workarounds for geometry
1956 * reversal, etc. here.
1957 */
1958static void flash_fixup_amd(flash_info_t *info, struct cfi_qry *qry)
1959{
1960 /* check if flash geometry needs reversal */
1961 if (qry->num_erase_regions > 1) {
1962 /* reverse geometry if top boot part */
1963 if (info->cfi_version < 0x3131) {
1964 /* CFI < 1.1, try to guess from device id */
1965 if ((info->device_id & 0x80) != 0)
1966 cfi_reverse_geometry(qry);
Stefan Roesee303be22013-04-12 19:04:54 +02001967 } else if (flash_read_uchar(info, info->ext_addr + 0xf) == 3) {
Haavard Skinnemoen467bcee2007-12-14 15:36:18 +01001968 /* CFI >= 1.1, deduct from top/bottom flag */
1969 /* note: ext_addr is valid since cfi_version > 0 */
1970 cfi_reverse_geometry(qry);
1971 }
1972 }
1973}
1974
1975static void flash_fixup_atmel(flash_info_t *info, struct cfi_qry *qry)
1976{
1977 int reverse_geometry = 0;
1978
1979 /* Check the "top boot" bit in the PRI */
1980 if (info->ext_addr && !(flash_read_uchar(info, info->ext_addr + 6) & 1))
1981 reverse_geometry = 1;
1982
1983 /* AT49BV6416(T) list the erase regions in the wrong order.
1984 * However, the device ID is identical with the non-broken
Ulf Samuelssoncb82a532009-03-27 23:26:43 +01001985 * AT49BV642D they differ in the high byte.
Haavard Skinnemoen467bcee2007-12-14 15:36:18 +01001986 */
Haavard Skinnemoen467bcee2007-12-14 15:36:18 +01001987 if (info->device_id == 0xd6 || info->device_id == 0xd2)
1988 reverse_geometry = !reverse_geometry;
Haavard Skinnemoen467bcee2007-12-14 15:36:18 +01001989
1990 if (reverse_geometry)
1991 cfi_reverse_geometry(qry);
1992}
1993
Richard Retanubune8eac432009-01-14 08:44:26 -05001994static void flash_fixup_stm(flash_info_t *info, struct cfi_qry *qry)
1995{
1996 /* check if flash geometry needs reversal */
1997 if (qry->num_erase_regions > 1) {
1998 /* reverse geometry if top boot part */
1999 if (info->cfi_version < 0x3131) {
Mike Frysinger6a011ce2011-04-10 16:06:29 -04002000 /* CFI < 1.1, guess by device id */
2001 if (info->device_id == 0x22CA || /* M29W320DT */
2002 info->device_id == 0x2256 || /* M29W320ET */
2003 info->device_id == 0x22D7) { /* M29W800DT */
Richard Retanubune8eac432009-01-14 08:44:26 -05002004 cfi_reverse_geometry(qry);
2005 }
Mike Frysinger4c2105c2011-05-09 18:33:36 -04002006 } else if (flash_read_uchar(info, info->ext_addr + 0xf) == 3) {
2007 /* CFI >= 1.1, deduct from top/bottom flag */
2008 /* note: ext_addr is valid since cfi_version > 0 */
2009 cfi_reverse_geometry(qry);
Richard Retanubune8eac432009-01-14 08:44:26 -05002010 }
2011 }
2012}
2013
Angelo Dureghello07b2c5c2012-12-01 01:14:18 +01002014static void flash_fixup_sst(flash_info_t *info, struct cfi_qry *qry)
2015{
2016 /*
2017 * SST, for many recent nor parallel flashes, says they are
2018 * CFI-conformant. This is not true, since qry struct.
2019 * reports a std. AMD command set (0x0002), while SST allows to
2020 * erase two different sector sizes for the same memory.
2021 * 64KB sector (SST call it block) needs 0x30 to be erased.
2022 * 4KB sector (SST call it sector) needs 0x50 to be erased.
2023 * Since CFI query detect the 4KB number of sectors, users expects
2024 * a sector granularity of 4KB, and it is here set.
2025 */
2026 if (info->device_id == 0x5D23 || /* SST39VF3201B */
2027 info->device_id == 0x5C23) { /* SST39VF3202B */
2028 /* set sector granularity to 4KB */
Mario Six640f4e32018-01-26 14:43:36 +01002029 info->cmd_erase_sector = 0x50;
Angelo Dureghello07b2c5c2012-12-01 01:14:18 +01002030 }
2031}
2032
Jagannadha Sutradharudu Tekic5023212013-03-01 16:54:26 +05302033static void flash_fixup_num(flash_info_t *info, struct cfi_qry *qry)
2034{
2035 /*
2036 * The M29EW devices seem to report the CFI information wrong
2037 * when it's in 8 bit mode.
2038 * There's an app note from Numonyx on this issue.
2039 * So adjust the buffer size for M29EW while operating in 8-bit mode
2040 */
2041 if (((qry->max_buf_write_size) > 0x8) &&
2042 (info->device_id == 0x7E) &&
2043 (info->device_id2 == 0x2201 ||
2044 info->device_id2 == 0x2301 ||
2045 info->device_id2 == 0x2801 ||
2046 info->device_id2 == 0x4801)) {
2047 debug("Adjusted buffer size on Numonyx flash"
2048 " M29EW family in 8 bit mode\n");
2049 qry->max_buf_write_size = 0x8;
2050 }
2051}
2052
Haavard Skinnemoen467bcee2007-12-14 15:36:18 +01002053/*
wdenk5653fc32004-02-08 22:55:38 +00002054 * The following code cannot be run from FLASH!
2055 *
2056 */
Mario Six188a5562018-01-26 14:43:31 +01002057ulong flash_get_size(phys_addr_t base, int banknum)
wdenk5653fc32004-02-08 22:55:38 +00002058{
wdenkbf9e3b32004-02-12 00:47:09 +00002059 flash_info_t *info = &flash_info[banknum];
wdenk5653fc32004-02-08 22:55:38 +00002060 int i, j;
2061 flash_sect_t sect_cnt;
Becky Bruce09ce9922009-02-02 16:34:51 -06002062 phys_addr_t sector;
wdenk5653fc32004-02-08 22:55:38 +00002063 unsigned long tmp;
2064 int size_ratio;
2065 uchar num_erase_regions;
wdenkbf9e3b32004-02-12 00:47:09 +00002066 int erase_region_size;
2067 int erase_region_count;
Haavard Skinnemoene23741f2007-12-14 15:36:16 +01002068 struct cfi_qry qry;
Anatolij Gustschin34bbb8f2010-11-28 02:13:33 +01002069 unsigned long max_size;
Stefan Roese260421a2006-11-13 13:55:24 +01002070
Kumar Galaf9796902008-05-15 15:13:08 -05002071 memset(&qry, 0, sizeof(qry));
2072
Stefan Roese260421a2006-11-13 13:55:24 +01002073 info->ext_addr = 0;
2074 info->cfi_version = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002075#ifdef CONFIG_SYS_FLASH_PROTECTION
Stefan Roese2662b402006-04-01 13:41:03 +02002076 info->legacy_unlock = 0;
2077#endif
wdenk5653fc32004-02-08 22:55:38 +00002078
Becky Bruce09ce9922009-02-02 16:34:51 -06002079 info->start[0] = (ulong)map_physmem(base, info->portwidth, MAP_NOCACHE);
wdenk5653fc32004-02-08 22:55:38 +00002080
Mario Six188a5562018-01-26 14:43:31 +01002081 if (flash_detect_cfi(info, &qry)) {
Andrew Gabbasovaedadf12013-05-14 12:27:52 -05002082 info->vendor = le16_to_cpu(get_unaligned(&(qry.p_id)));
2083 info->ext_addr = le16_to_cpu(get_unaligned(&(qry.p_adr)));
Haavard Skinnemoene23741f2007-12-14 15:36:16 +01002084 num_erase_regions = qry.num_erase_regions;
2085
Stefan Roese260421a2006-11-13 13:55:24 +01002086 if (info->ext_addr) {
Mario Six640f4e32018-01-26 14:43:36 +01002087 info->cfi_version = (ushort)flash_read_uchar(info,
Stefan Roesee303be22013-04-12 19:04:54 +02002088 info->ext_addr + 3) << 8;
Mario Six640f4e32018-01-26 14:43:36 +01002089 info->cfi_version |= (ushort)flash_read_uchar(info,
Stefan Roesee303be22013-04-12 19:04:54 +02002090 info->ext_addr + 4);
Stefan Roese260421a2006-11-13 13:55:24 +01002091 }
Haavard Skinnemoen0ddf06d2007-12-14 15:36:17 +01002092
wdenkbf9e3b32004-02-12 00:47:09 +00002093#ifdef DEBUG
Mario Six188a5562018-01-26 14:43:31 +01002094 flash_printqry(&qry);
wdenkbf9e3b32004-02-12 00:47:09 +00002095#endif
Haavard Skinnemoen0ddf06d2007-12-14 15:36:17 +01002096
wdenkbf9e3b32004-02-12 00:47:09 +00002097 switch (info->vendor) {
Vasiliy Leoenenko9c048b52008-05-07 21:25:33 +04002098 case CFI_CMDSET_INTEL_PROG_REGIONS:
wdenk5653fc32004-02-08 22:55:38 +00002099 case CFI_CMDSET_INTEL_STANDARD:
2100 case CFI_CMDSET_INTEL_EXTENDED:
Haavard Skinnemoen0ddf06d2007-12-14 15:36:17 +01002101 cmdset_intel_init(info, &qry);
wdenk5653fc32004-02-08 22:55:38 +00002102 break;
2103 case CFI_CMDSET_AMD_STANDARD:
2104 case CFI_CMDSET_AMD_EXTENDED:
Haavard Skinnemoen0ddf06d2007-12-14 15:36:17 +01002105 cmdset_amd_init(info, &qry);
wdenk5653fc32004-02-08 22:55:38 +00002106 break;
Haavard Skinnemoen0ddf06d2007-12-14 15:36:17 +01002107 default:
2108 printf("CFI: Unknown command set 0x%x\n",
2109 info->vendor);
2110 /*
2111 * Unfortunately, this means we don't know how
2112 * to get the chip back to Read mode. Might
2113 * as well try an Intel-style reset...
2114 */
2115 flash_write_cmd(info, 0, 0, FLASH_CMD_RESET);
2116 return 0;
wdenk5653fc32004-02-08 22:55:38 +00002117 }
wdenkcd37d9e2004-02-10 00:03:41 +00002118
Haavard Skinnemoen467bcee2007-12-14 15:36:18 +01002119 /* Do manufacturer-specific fixups */
2120 switch (info->manufacturer_id) {
Mario Schuknecht2c9f48a2011-02-21 13:13:14 +01002121 case 0x0001: /* AMD */
2122 case 0x0037: /* AMIC */
Haavard Skinnemoen467bcee2007-12-14 15:36:18 +01002123 flash_fixup_amd(info, &qry);
2124 break;
2125 case 0x001f:
2126 flash_fixup_atmel(info, &qry);
2127 break;
Richard Retanubune8eac432009-01-14 08:44:26 -05002128 case 0x0020:
2129 flash_fixup_stm(info, &qry);
2130 break;
Angelo Dureghello07b2c5c2012-12-01 01:14:18 +01002131 case 0x00bf: /* SST */
2132 flash_fixup_sst(info, &qry);
2133 break;
Jagannadha Sutradharudu Tekic5023212013-03-01 16:54:26 +05302134 case 0x0089: /* Numonyx */
2135 flash_fixup_num(info, &qry);
2136 break;
Haavard Skinnemoen467bcee2007-12-14 15:36:18 +01002137 }
2138
Mario Six188a5562018-01-26 14:43:31 +01002139 debug("manufacturer is %d\n", info->vendor);
2140 debug("manufacturer id is 0x%x\n", info->manufacturer_id);
2141 debug("device id is 0x%x\n", info->device_id);
2142 debug("device id2 is 0x%x\n", info->device_id2);
2143 debug("cfi version is 0x%04x\n", info->cfi_version);
Stefan Roese260421a2006-11-13 13:55:24 +01002144
wdenk5653fc32004-02-08 22:55:38 +00002145 size_ratio = info->portwidth / info->chipwidth;
wdenkbf9e3b32004-02-12 00:47:09 +00002146 /* if the chip is x8/x16 reduce the ratio by half */
Mario Six88ecd8b2018-01-26 14:43:39 +01002147 if ((info->interface == FLASH_CFI_X8X16) &&
2148 (info->chipwidth == FLASH_CFI_BY8)) {
wdenkbf9e3b32004-02-12 00:47:09 +00002149 size_ratio >>= 1;
2150 }
Mario Six188a5562018-01-26 14:43:31 +01002151 debug("size_ratio %d port %d bits chip %d bits\n",
wdenkbf9e3b32004-02-12 00:47:09 +00002152 size_ratio, info->portwidth << CFI_FLASH_SHIFT_WIDTH,
2153 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
Ilya Yanokec50a8e2010-10-21 17:20:12 +02002154 info->size = 1 << qry.dev_size;
2155 /* multiply the size by the number of chips */
2156 info->size *= size_ratio;
Anatolij Gustschin34bbb8f2010-11-28 02:13:33 +01002157 max_size = cfi_flash_bank_size(banknum);
Ilya Yanokec50a8e2010-10-21 17:20:12 +02002158 if (max_size && (info->size > max_size)) {
2159 debug("[truncated from %ldMiB]", info->size >> 20);
2160 info->size = max_size;
2161 }
Mario Six188a5562018-01-26 14:43:31 +01002162 debug("found %d erase regions\n", num_erase_regions);
wdenk5653fc32004-02-08 22:55:38 +00002163 sect_cnt = 0;
2164 sector = base;
wdenkbf9e3b32004-02-12 00:47:09 +00002165 for (i = 0; i < num_erase_regions; i++) {
2166 if (i > NUM_ERASE_REGIONS) {
Mario Six188a5562018-01-26 14:43:31 +01002167 printf("%d erase regions found, only %d used\n",
wdenk028ab6b2004-02-23 23:54:43 +00002168 num_erase_regions, NUM_ERASE_REGIONS);
wdenk5653fc32004-02-08 22:55:38 +00002169 break;
2170 }
Haavard Skinnemoene23741f2007-12-14 15:36:16 +01002171
Andrew Gabbasovaedadf12013-05-14 12:27:52 -05002172 tmp = le32_to_cpu(get_unaligned(
2173 &(qry.erase_region_info[i])));
Haavard Skinnemoen0ddf06d2007-12-14 15:36:17 +01002174 debug("erase region %u: 0x%08lx\n", i, tmp);
Haavard Skinnemoene23741f2007-12-14 15:36:16 +01002175
2176 erase_region_count = (tmp & 0xffff) + 1;
2177 tmp >>= 16;
wdenkbf9e3b32004-02-12 00:47:09 +00002178 erase_region_size =
2179 (tmp & 0xffff) ? ((tmp & 0xffff) * 256) : 128;
Mario Six188a5562018-01-26 14:43:31 +01002180 debug("erase_region_count = %d erase_region_size = %d\n",
wdenk028ab6b2004-02-23 23:54:43 +00002181 erase_region_count, erase_region_size);
wdenkbf9e3b32004-02-12 00:47:09 +00002182 for (j = 0; j < erase_region_count; j++) {
Ilya Yanokec50a8e2010-10-21 17:20:12 +02002183 if (sector - base >= info->size)
2184 break;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002185 if (sect_cnt >= CONFIG_SYS_MAX_FLASH_SECT) {
Michael Schwingen81b20cc2007-12-07 23:35:02 +01002186 printf("ERROR: too many flash sectors\n");
2187 break;
2188 }
Becky Bruce09ce9922009-02-02 16:34:51 -06002189 info->start[sect_cnt] =
2190 (ulong)map_physmem(sector,
2191 info->portwidth,
2192 MAP_NOCACHE);
wdenk5653fc32004-02-08 22:55:38 +00002193 sector += (erase_region_size * size_ratio);
wdenka1191902005-01-09 17:12:27 +00002194
2195 /*
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01002196 * Only read protection status from
2197 * supported devices (intel...)
wdenka1191902005-01-09 17:12:27 +00002198 */
2199 switch (info->vendor) {
Vasiliy Leoenenko9c048b52008-05-07 21:25:33 +04002200 case CFI_CMDSET_INTEL_PROG_REGIONS:
wdenka1191902005-01-09 17:12:27 +00002201 case CFI_CMDSET_INTEL_EXTENDED:
2202 case CFI_CMDSET_INTEL_STANDARD:
Stefan Roesedf4e8132010-10-25 18:31:29 +02002203 /*
2204 * Set flash to read-id mode. Otherwise
2205 * reading protected status is not
2206 * guaranteed.
2207 */
2208 flash_write_cmd(info, sect_cnt, 0,
2209 FLASH_CMD_READ_ID);
wdenka1191902005-01-09 17:12:27 +00002210 info->protect[sect_cnt] =
Mario Six188a5562018-01-26 14:43:31 +01002211 flash_isset(info, sect_cnt,
wdenka1191902005-01-09 17:12:27 +00002212 FLASH_OFFSET_PROTECT,
2213 FLASH_STATUS_PROTECT);
Vasily Khoruzhickedc498c2016-03-20 18:37:10 -07002214 flash_write_cmd(info, sect_cnt, 0,
2215 FLASH_CMD_RESET);
wdenka1191902005-01-09 17:12:27 +00002216 break;
Stefan Roese03deff42012-12-06 15:44:10 +01002217 case CFI_CMDSET_AMD_EXTENDED:
2218 case CFI_CMDSET_AMD_STANDARD:
Stefan Roeseac6b9112012-12-06 15:44:11 +01002219 if (!info->legacy_unlock) {
Stefan Roese03deff42012-12-06 15:44:10 +01002220 /* default: not protected */
2221 info->protect[sect_cnt] = 0;
2222 break;
2223 }
2224
2225 /* Read protection (PPB) from sector */
2226 flash_write_cmd(info, 0, 0,
2227 info->cmd_reset);
2228 flash_unlock_seq(info, 0);
2229 flash_write_cmd(info, 0,
2230 info->addr_unlock1,
2231 FLASH_CMD_READ_ID);
2232 info->protect[sect_cnt] =
2233 flash_isset(
2234 info, sect_cnt,
2235 FLASH_OFFSET_PROTECT,
2236 FLASH_STATUS_PROTECT);
2237 break;
wdenka1191902005-01-09 17:12:27 +00002238 default:
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01002239 /* default: not protected */
2240 info->protect[sect_cnt] = 0;
wdenka1191902005-01-09 17:12:27 +00002241 }
2242
wdenk5653fc32004-02-08 22:55:38 +00002243 sect_cnt++;
2244 }
2245 }
2246
2247 info->sector_count = sect_cnt;
Haavard Skinnemoene23741f2007-12-14 15:36:16 +01002248 info->buffer_size = 1 << le16_to_cpu(qry.max_buf_write_size);
2249 tmp = 1 << qry.block_erase_timeout_typ;
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01002250 info->erase_blk_tout = tmp *
Haavard Skinnemoene23741f2007-12-14 15:36:16 +01002251 (1 << qry.block_erase_timeout_max);
2252 tmp = (1 << qry.buf_write_timeout_typ) *
2253 (1 << qry.buf_write_timeout_max);
2254
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01002255 /* round up when converting to ms */
Haavard Skinnemoene23741f2007-12-14 15:36:16 +01002256 info->buffer_write_tout = (tmp + 999) / 1000;
2257 tmp = (1 << qry.word_write_timeout_typ) *
2258 (1 << qry.word_write_timeout_max);
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01002259 /* round up when converting to ms */
Haavard Skinnemoene23741f2007-12-14 15:36:16 +01002260 info->write_tout = (tmp + 999) / 1000;
wdenk5653fc32004-02-08 22:55:38 +00002261 info->flash_id = FLASH_MAN_CFI;
Haavard Skinnemoen7e5b9b42007-12-13 12:56:28 +01002262 if ((info->interface == FLASH_CFI_X8X16) &&
2263 (info->chipwidth == FLASH_CFI_BY8)) {
2264 /* XXX - Need to test on x8/x16 in parallel. */
2265 info->portwidth >>= 1;
wdenk855a4962004-03-14 18:23:55 +00002266 }
Mike Frysinger22159872008-10-02 01:55:38 -04002267
Mario Six188a5562018-01-26 14:43:31 +01002268 flash_write_cmd(info, 0, 0, info->cmd_reset);
wdenk5653fc32004-02-08 22:55:38 +00002269 }
2270
wdenkbf9e3b32004-02-12 00:47:09 +00002271 return (info->size);
wdenk5653fc32004-02-08 22:55:38 +00002272}
2273
Mike Frysinger4ffeab22010-12-22 09:41:13 -05002274#ifdef CONFIG_FLASH_CFI_MTD
Piotr Ziecik6ea808e2008-11-17 15:49:32 +01002275void flash_set_verbose(uint v)
2276{
2277 flash_verbose = v;
2278}
Mike Frysinger4ffeab22010-12-22 09:41:13 -05002279#endif
Piotr Ziecik6ea808e2008-11-17 15:49:32 +01002280
Stefan Roese6f726f92010-10-25 18:31:48 +02002281static void cfi_flash_set_config_reg(u32 base, u16 val)
2282{
2283#ifdef CONFIG_SYS_CFI_FLASH_CONFIG_REGS
2284 /*
2285 * Only set this config register if really defined
2286 * to a valid value (0xffff is invalid)
2287 */
2288 if (val == 0xffff)
2289 return;
2290
2291 /*
2292 * Set configuration register. Data is "encrypted" in the 16 lower
2293 * address bits.
2294 */
2295 flash_write16(FLASH_CMD_SETUP, (void *)(base + (val << 1)));
2296 flash_write16(FLASH_CMD_SET_CR_CONFIRM, (void *)(base + (val << 1)));
2297
2298 /*
2299 * Finally issue reset-command to bring device back to
2300 * read-array mode
2301 */
2302 flash_write16(FLASH_CMD_RESET, (void *)base);
2303#endif
2304}
2305
wdenk5653fc32004-02-08 22:55:38 +00002306/*-----------------------------------------------------------------------
2307 */
Heiko Schocher6ee14162011-04-04 08:10:21 +02002308
Marek Vasut236c49a2017-08-20 17:20:00 +02002309static void flash_protect_default(void)
Heiko Schocher6ee14162011-04-04 08:10:21 +02002310{
Peter Tyser2c519832011-04-13 11:46:56 -05002311#if defined(CONFIG_SYS_FLASH_AUTOPROTECT_LIST)
2312 int i;
2313 struct apl_s {
2314 ulong start;
2315 ulong size;
2316 } apl[] = CONFIG_SYS_FLASH_AUTOPROTECT_LIST;
2317#endif
2318
Heiko Schocher6ee14162011-04-04 08:10:21 +02002319 /* Monitor protection ON by default */
2320#if (CONFIG_SYS_MONITOR_BASE >= CONFIG_SYS_FLASH_BASE) && \
2321 (!defined(CONFIG_MONITOR_IS_IN_RAM))
2322 flash_protect(FLAG_PROTECT_SET,
2323 CONFIG_SYS_MONITOR_BASE,
2324 CONFIG_SYS_MONITOR_BASE + monitor_flash_len - 1,
2325 flash_get_info(CONFIG_SYS_MONITOR_BASE));
2326#endif
2327
2328 /* Environment protection ON by default */
2329#ifdef CONFIG_ENV_IS_IN_FLASH
2330 flash_protect(FLAG_PROTECT_SET,
2331 CONFIG_ENV_ADDR,
2332 CONFIG_ENV_ADDR + CONFIG_ENV_SECT_SIZE - 1,
2333 flash_get_info(CONFIG_ENV_ADDR));
2334#endif
2335
2336 /* Redundant environment protection ON by default */
2337#ifdef CONFIG_ENV_ADDR_REDUND
2338 flash_protect(FLAG_PROTECT_SET,
2339 CONFIG_ENV_ADDR_REDUND,
2340 CONFIG_ENV_ADDR_REDUND + CONFIG_ENV_SECT_SIZE - 1,
2341 flash_get_info(CONFIG_ENV_ADDR_REDUND));
2342#endif
2343
2344#if defined(CONFIG_SYS_FLASH_AUTOPROTECT_LIST)
Axel Lin31bf0f52013-06-23 00:56:46 +08002345 for (i = 0; i < ARRAY_SIZE(apl); i++) {
Marek Vasut31d34142011-10-21 14:17:05 +00002346 debug("autoprotecting from %08lx to %08lx\n",
Heiko Schocher6ee14162011-04-04 08:10:21 +02002347 apl[i].start, apl[i].start + apl[i].size - 1);
2348 flash_protect(FLAG_PROTECT_SET,
2349 apl[i].start,
2350 apl[i].start + apl[i].size - 1,
2351 flash_get_info(apl[i].start));
2352 }
2353#endif
2354}
2355
Mario Six188a5562018-01-26 14:43:31 +01002356unsigned long flash_init(void)
wdenk5653fc32004-02-08 22:55:38 +00002357{
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02002358 unsigned long size = 0;
2359 int i;
wdenk5653fc32004-02-08 22:55:38 +00002360
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002361#ifdef CONFIG_SYS_FLASH_PROTECTION
Eric Schumann3a3baf32009-03-21 09:59:34 -04002362 /* read environment from EEPROM */
2363 char s[64];
Mario Six7223a8c2018-01-26 14:43:37 +01002364
Simon Glass00caae62017-08-03 12:22:12 -06002365 env_get_f("unlock", s, sizeof(s));
Michael Schwingen81b20cc2007-12-07 23:35:02 +01002366#endif
wdenk5653fc32004-02-08 22:55:38 +00002367
Thomas Chouf1056912015-11-07 14:31:08 +08002368#ifdef CONFIG_CFI_FLASH /* for driver model */
2369 cfi_flash_init_dm();
2370#endif
2371
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02002372 /* Init: no FLASHes known */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002373 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; ++i) {
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02002374 flash_info[i].flash_id = FLASH_UNKNOWN;
wdenk5653fc32004-02-08 22:55:38 +00002375
Stefan Roese6f726f92010-10-25 18:31:48 +02002376 /* Optionally write flash configuration register */
2377 cfi_flash_set_config_reg(cfi_flash_bank_addr(i),
2378 cfi_flash_config_reg(i));
2379
Stefan Roeseb00e19c2010-08-30 10:11:51 +02002380 if (!flash_detect_legacy(cfi_flash_bank_addr(i), i))
Anatolij Gustschin34bbb8f2010-11-28 02:13:33 +01002381 flash_get_size(cfi_flash_bank_addr(i), i);
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02002382 size += flash_info[i].size;
2383 if (flash_info[i].flash_id == FLASH_UNKNOWN) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002384#ifndef CONFIG_SYS_FLASH_QUIET_TEST
Mario Six188a5562018-01-26 14:43:31 +01002385 printf("## Unknown flash on Bank %d "
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02002386 "- Size = 0x%08lx = %ld MB\n",
Mario Six640f4e32018-01-26 14:43:36 +01002387 i + 1, flash_info[i].size,
John Schmoller0e3fa012010-09-29 13:49:05 -05002388 flash_info[i].size >> 20);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002389#endif /* CONFIG_SYS_FLASH_QUIET_TEST */
wdenk5653fc32004-02-08 22:55:38 +00002390 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002391#ifdef CONFIG_SYS_FLASH_PROTECTION
Jeroen Hofsteec15df212014-06-17 22:47:31 +02002392 else if (strcmp(s, "yes") == 0) {
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02002393 /*
2394 * Only the U-Boot image and it's environment
2395 * is protected, all other sectors are
2396 * unprotected (unlocked) if flash hardware
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002397 * protection is used (CONFIG_SYS_FLASH_PROTECTION)
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02002398 * and the environment variable "unlock" is
2399 * set to "yes".
2400 */
2401 if (flash_info[i].legacy_unlock) {
2402 int k;
Stefan Roese79b4cda2006-02-28 15:29:58 +01002403
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02002404 /*
2405 * Disable legacy_unlock temporarily,
2406 * since flash_real_protect would
2407 * relock all other sectors again
2408 * otherwise.
2409 */
2410 flash_info[i].legacy_unlock = 0;
Stefan Roese79b4cda2006-02-28 15:29:58 +01002411
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02002412 /*
2413 * Legacy unlocking (e.g. Intel J3) ->
2414 * unlock only one sector. This will
2415 * unlock all sectors.
2416 */
Mario Six188a5562018-01-26 14:43:31 +01002417 flash_real_protect(&flash_info[i], 0, 0);
Stefan Roese79b4cda2006-02-28 15:29:58 +01002418
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02002419 flash_info[i].legacy_unlock = 1;
2420
2421 /*
2422 * Manually mark other sectors as
2423 * unlocked (unprotected)
2424 */
2425 for (k = 1; k < flash_info[i].sector_count; k++)
2426 flash_info[i].protect[k] = 0;
2427 } else {
2428 /*
2429 * No legancy unlocking -> unlock all sectors
2430 */
Mario Six188a5562018-01-26 14:43:31 +01002431 flash_protect(FLAG_PROTECT_CLEAR,
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02002432 flash_info[i].start[0],
2433 flash_info[i].start[0]
2434 + flash_info[i].size - 1,
2435 &flash_info[i]);
2436 }
Stefan Roese79b4cda2006-02-28 15:29:58 +01002437 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002438#endif /* CONFIG_SYS_FLASH_PROTECTION */
wdenk5653fc32004-02-08 22:55:38 +00002439 }
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02002440
Heiko Schocher6ee14162011-04-04 08:10:21 +02002441 flash_protect_default();
Piotr Ziecik91809ed2008-11-17 15:57:58 +01002442#ifdef CONFIG_FLASH_CFI_MTD
2443 cfi_mtd_init();
2444#endif
2445
Haavard Skinnemoenbe60a902007-10-06 18:55:36 +02002446 return (size);
wdenk5653fc32004-02-08 22:55:38 +00002447}
Thomas Chouf1056912015-11-07 14:31:08 +08002448
2449#ifdef CONFIG_CFI_FLASH /* for driver model */
2450static int cfi_flash_probe(struct udevice *dev)
2451{
2452 void *blob = (void *)gd->fdt_blob;
Simon Glasse160f7d2017-01-17 16:52:55 -07002453 int node = dev_of_offset(dev);
Thomas Chouf1056912015-11-07 14:31:08 +08002454 const fdt32_t *cell;
2455 phys_addr_t addr;
2456 int parent, addrc, sizec;
2457 int len, idx;
2458
2459 parent = fdt_parent_offset(blob, node);
Simon Glasseed36602017-05-18 20:09:26 -06002460 fdt_support_default_count_cells(blob, parent, &addrc, &sizec);
Thomas Chouf1056912015-11-07 14:31:08 +08002461 /* decode regs, there may be multiple reg tuples. */
2462 cell = fdt_getprop(blob, node, "reg", &len);
2463 if (!cell)
2464 return -ENOENT;
2465 idx = 0;
2466 len /= sizeof(fdt32_t);
2467 while (idx < len) {
2468 addr = fdt_translate_address((void *)blob,
2469 node, cell + idx);
Marek Vasut1ec0a372017-09-12 19:09:08 +02002470 flash_info[cfi_flash_num_flash_banks].dev = dev;
2471 flash_info[cfi_flash_num_flash_banks].base = addr;
2472 cfi_flash_num_flash_banks++;
Thomas Chouf1056912015-11-07 14:31:08 +08002473 idx += addrc + sizec;
2474 }
Marek Vasut1ec0a372017-09-12 19:09:08 +02002475 gd->bd->bi_flashstart = flash_info[0].base;
Thomas Chouf1056912015-11-07 14:31:08 +08002476
2477 return 0;
2478}
2479
2480static const struct udevice_id cfi_flash_ids[] = {
2481 { .compatible = "cfi-flash" },
2482 { .compatible = "jedec-flash" },
2483 {}
2484};
2485
2486U_BOOT_DRIVER(cfi_flash) = {
2487 .name = "cfi_flash",
2488 .id = UCLASS_MTD,
2489 .of_match = cfi_flash_ids,
2490 .probe = cfi_flash_probe,
2491};
2492#endif /* CONFIG_CFI_FLASH */