blob: 2531e9da86bd8ac08bcada1e387cf490bc791b32 [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>
7 * Modified to work with AMD flashes
8 *
wdenkbf9e3b32004-02-12 00:47:09 +00009 * Copyright (C) 2004
10 * Ed Okerson
11 * Modified to work with little-endian systems.
12 *
wdenk5653fc32004-02-08 22:55:38 +000013 * See file CREDITS for list of people who contributed to this
14 * project.
15 *
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License as
18 * published by the Free Software Foundation; either version 2 of
19 * the License, or (at your option) any later version.
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 * MA 02111-1307 USA
30 *
31 * History
32 * 01/20/2004 - combined variants of original driver.
wdenkbf9e3b32004-02-12 00:47:09 +000033 * 01/22/2004 - Write performance enhancements for parallel chips (Tolunay)
34 * 01/23/2004 - Support for x8/x16 chips (Rune Raknerud)
35 * 01/27/2004 - Little endian support Ed Okerson
wdenk5653fc32004-02-08 22:55:38 +000036 *
37 * Tested Architectures
wdenkbf9e3b32004-02-12 00:47:09 +000038 * Port Width Chip Width # of banks Flash Chip Board
wdenk2d1a5372004-02-23 19:30:57 +000039 * 32 16 1 28F128J3 seranoa/eagle
40 * 64 16 1 28F128J3 seranoa/falcon
wdenkcd37d9e2004-02-10 00:03:41 +000041 *
wdenk5653fc32004-02-08 22:55:38 +000042 */
43
44/* The DEBUG define must be before common to enable debugging */
wdenk2d1a5372004-02-23 19:30:57 +000045/* #define DEBUG */
46
wdenk5653fc32004-02-08 22:55:38 +000047#include <common.h>
48#include <asm/processor.h>
wdenk4c0d4c32004-06-09 17:34:58 +000049#include <asm/byteorder.h>
wdenk028ab6b2004-02-23 23:54:43 +000050#include <linux/byteorder/swab.h>
wdenk2a8af182005-04-13 10:02:42 +000051#include <environment.h>
wdenkbf9e3b32004-02-12 00:47:09 +000052#ifdef CFG_FLASH_CFI_DRIVER
wdenk028ab6b2004-02-23 23:54:43 +000053
wdenk5653fc32004-02-08 22:55:38 +000054/*
55 * This file implements a Common Flash Interface (CFI) driver for U-Boot.
56 * The width of the port and the width of the chips are determined at initialization.
57 * These widths are used to calculate the address for access CFI data structures.
58 * It has been tested on an Intel Strataflash implementation and AMD 29F016D.
59 *
60 * References
61 * JEDEC Standard JESD68 - Common Flash Interface (CFI)
62 * JEDEC Standard JEP137-A Common Flash Interface (CFI) ID Codes
63 * Intel Application Note 646 Common Flash Interface (CFI) and Command Sets
64 * Intel 290667-008 3 Volt Intel StrataFlash Memory datasheet
65 *
66 * TODO
67 *
68 * Use Primary Extended Query table (PRI) and Alternate Algorithm Query
69 * Table (ALT) to determine if protection is available
70 *
71 * Add support for other command sets Use the PRI and ALT to determine command set
72 * Verify erase and program timeouts.
73 */
74
wdenkbf9e3b32004-02-12 00:47:09 +000075#ifndef CFG_FLASH_BANKS_LIST
76#define CFG_FLASH_BANKS_LIST { CFG_FLASH_BASE }
77#endif
78
wdenk5653fc32004-02-08 22:55:38 +000079#define FLASH_CMD_CFI 0x98
80#define FLASH_CMD_READ_ID 0x90
81#define FLASH_CMD_RESET 0xff
82#define FLASH_CMD_BLOCK_ERASE 0x20
83#define FLASH_CMD_ERASE_CONFIRM 0xD0
84#define FLASH_CMD_WRITE 0x40
85#define FLASH_CMD_PROTECT 0x60
86#define FLASH_CMD_PROTECT_SET 0x01
87#define FLASH_CMD_PROTECT_CLEAR 0xD0
88#define FLASH_CMD_CLEAR_STATUS 0x50
wdenkbf9e3b32004-02-12 00:47:09 +000089#define FLASH_CMD_WRITE_TO_BUFFER 0xE8
90#define FLASH_CMD_WRITE_BUFFER_CONFIRM 0xD0
wdenk5653fc32004-02-08 22:55:38 +000091
92#define FLASH_STATUS_DONE 0x80
93#define FLASH_STATUS_ESS 0x40
94#define FLASH_STATUS_ECLBS 0x20
95#define FLASH_STATUS_PSLBS 0x10
96#define FLASH_STATUS_VPENS 0x08
97#define FLASH_STATUS_PSS 0x04
98#define FLASH_STATUS_DPS 0x02
99#define FLASH_STATUS_R 0x01
100#define FLASH_STATUS_PROTECT 0x01
101
102#define AMD_CMD_RESET 0xF0
103#define AMD_CMD_WRITE 0xA0
104#define AMD_CMD_ERASE_START 0x80
105#define AMD_CMD_ERASE_SECTOR 0x30
wdenk855a4962004-03-14 18:23:55 +0000106#define AMD_CMD_UNLOCK_START 0xAA
107#define AMD_CMD_UNLOCK_ACK 0x55
wdenk5653fc32004-02-08 22:55:38 +0000108
109#define AMD_STATUS_TOGGLE 0x40
110#define AMD_STATUS_ERROR 0x20
wdenk855a4962004-03-14 18:23:55 +0000111#define AMD_ADDR_ERASE_START 0x555
112#define AMD_ADDR_START 0x555
113#define AMD_ADDR_ACK 0x2AA
wdenk5653fc32004-02-08 22:55:38 +0000114
115#define FLASH_OFFSET_CFI 0x55
116#define FLASH_OFFSET_CFI_RESP 0x10
wdenkbf9e3b32004-02-12 00:47:09 +0000117#define FLASH_OFFSET_PRIMARY_VENDOR 0x13
wdenk5653fc32004-02-08 22:55:38 +0000118#define FLASH_OFFSET_WTOUT 0x1F
wdenkbf9e3b32004-02-12 00:47:09 +0000119#define FLASH_OFFSET_WBTOUT 0x20
wdenk5653fc32004-02-08 22:55:38 +0000120#define FLASH_OFFSET_ETOUT 0x21
wdenkbf9e3b32004-02-12 00:47:09 +0000121#define FLASH_OFFSET_CETOUT 0x22
wdenk5653fc32004-02-08 22:55:38 +0000122#define FLASH_OFFSET_WMAX_TOUT 0x23
wdenkbf9e3b32004-02-12 00:47:09 +0000123#define FLASH_OFFSET_WBMAX_TOUT 0x24
wdenk5653fc32004-02-08 22:55:38 +0000124#define FLASH_OFFSET_EMAX_TOUT 0x25
wdenkbf9e3b32004-02-12 00:47:09 +0000125#define FLASH_OFFSET_CEMAX_TOUT 0x26
wdenk5653fc32004-02-08 22:55:38 +0000126#define FLASH_OFFSET_SIZE 0x27
wdenkbf9e3b32004-02-12 00:47:09 +0000127#define FLASH_OFFSET_INTERFACE 0x28
128#define FLASH_OFFSET_BUFFER_SIZE 0x2A
wdenk5653fc32004-02-08 22:55:38 +0000129#define FLASH_OFFSET_NUM_ERASE_REGIONS 0x2C
130#define FLASH_OFFSET_ERASE_REGIONS 0x2D
131#define FLASH_OFFSET_PROTECT 0x02
wdenkbf9e3b32004-02-12 00:47:09 +0000132#define FLASH_OFFSET_USER_PROTECTION 0x85
133#define FLASH_OFFSET_INTEL_PROTECTION 0x81
wdenk5653fc32004-02-08 22:55:38 +0000134
135
136#define FLASH_MAN_CFI 0x01000000
137
wdenkbf9e3b32004-02-12 00:47:09 +0000138#define CFI_CMDSET_NONE 0
wdenk5653fc32004-02-08 22:55:38 +0000139#define CFI_CMDSET_INTEL_EXTENDED 1
wdenkbf9e3b32004-02-12 00:47:09 +0000140#define CFI_CMDSET_AMD_STANDARD 2
wdenk5653fc32004-02-08 22:55:38 +0000141#define CFI_CMDSET_INTEL_STANDARD 3
wdenkbf9e3b32004-02-12 00:47:09 +0000142#define CFI_CMDSET_AMD_EXTENDED 4
wdenk5653fc32004-02-08 22:55:38 +0000143#define CFI_CMDSET_MITSU_STANDARD 256
144#define CFI_CMDSET_MITSU_EXTENDED 257
wdenkbf9e3b32004-02-12 00:47:09 +0000145#define CFI_CMDSET_SST 258
wdenk5653fc32004-02-08 22:55:38 +0000146
147
wdenkf7d15722004-12-18 22:35:43 +0000148#ifdef CFG_FLASH_CFI_AMD_RESET /* needed for STM_ID_29W320DB on UC100 */
149# undef FLASH_CMD_RESET
150# define FLASH_CMD_RESET AMD_CMD_RESET /* use AMD-Reset instead */
151#endif
152
153
wdenk5653fc32004-02-08 22:55:38 +0000154typedef union {
155 unsigned char c;
156 unsigned short w;
157 unsigned long l;
158 unsigned long long ll;
159} cfiword_t;
160
161typedef union {
wdenkbf9e3b32004-02-12 00:47:09 +0000162 volatile unsigned char *cp;
wdenk5653fc32004-02-08 22:55:38 +0000163 volatile unsigned short *wp;
wdenkbf9e3b32004-02-12 00:47:09 +0000164 volatile unsigned long *lp;
wdenk5653fc32004-02-08 22:55:38 +0000165 volatile unsigned long long *llp;
166} cfiptr_t;
167
168#define NUM_ERASE_REGIONS 4
169
170static ulong bank_base[CFG_MAX_FLASH_BANKS] = CFG_FLASH_BANKS_LIST;
171
wdenkbf9e3b32004-02-12 00:47:09 +0000172flash_info_t flash_info[CFG_MAX_FLASH_BANKS]; /* info for FLASH chips */
wdenk5653fc32004-02-08 22:55:38 +0000173
174/*-----------------------------------------------------------------------
175 * Functions
176 */
177
178typedef unsigned long flash_sect_t;
179
wdenkbf9e3b32004-02-12 00:47:09 +0000180static void flash_add_byte (flash_info_t * info, cfiword_t * cword, uchar c);
181static void flash_make_cmd (flash_info_t * info, uchar cmd, void *cmdbuf);
wdenk028ab6b2004-02-23 23:54:43 +0000182static void flash_write_cmd (flash_info_t * info, flash_sect_t sect, uint offset, uchar cmd);
wdenkbf9e3b32004-02-12 00:47:09 +0000183static void flash_unlock_seq (flash_info_t * info, flash_sect_t sect);
wdenk028ab6b2004-02-23 23:54:43 +0000184static int flash_isequal (flash_info_t * info, flash_sect_t sect, uint offset, uchar cmd);
185static int flash_isset (flash_info_t * info, flash_sect_t sect, uint offset, uchar cmd);
186static int flash_toggle (flash_info_t * info, flash_sect_t sect, uint offset, uchar cmd);
wdenkbf9e3b32004-02-12 00:47:09 +0000187static int flash_detect_cfi (flash_info_t * info);
wdenk5653fc32004-02-08 22:55:38 +0000188static ulong flash_get_size (ulong base, int banknum);
wdenk028ab6b2004-02-23 23:54:43 +0000189static int flash_write_cfiword (flash_info_t * info, ulong dest, cfiword_t cword);
wdenkbf9e3b32004-02-12 00:47:09 +0000190static int flash_full_status_check (flash_info_t * info, flash_sect_t sector,
191 ulong tout, char *prompt);
wdenk5653fc32004-02-08 22:55:38 +0000192#ifdef CFG_FLASH_USE_BUFFER_WRITE
wdenk028ab6b2004-02-23 23:54:43 +0000193static int flash_write_cfibuffer (flash_info_t * info, ulong dest, uchar * cp, int len);
wdenk5653fc32004-02-08 22:55:38 +0000194#endif
195
wdenk5653fc32004-02-08 22:55:38 +0000196/*-----------------------------------------------------------------------
197 * create an address based on the offset and the port width
198 */
wdenk028ab6b2004-02-23 23:54:43 +0000199inline uchar *flash_make_addr (flash_info_t * info, flash_sect_t sect, uint offset)
wdenk5653fc32004-02-08 22:55:38 +0000200{
wdenkbf9e3b32004-02-12 00:47:09 +0000201 return ((uchar *) (info->start[sect] + (offset * info->portwidth)));
wdenk5653fc32004-02-08 22:55:38 +0000202}
wdenkbf9e3b32004-02-12 00:47:09 +0000203
204#ifdef DEBUG
205/*-----------------------------------------------------------------------
206 * Debug support
207 */
208void print_longlong (char *str, unsigned long long data)
209{
210 int i;
211 char *cp;
212
213 cp = (unsigned char *) &data;
214 for (i = 0; i < 8; i++)
215 sprintf (&str[i * 2], "%2.2x", *cp++);
216}
217static void flash_printqry (flash_info_t * info, flash_sect_t sect)
218{
219 cfiptr_t cptr;
220 int x, y;
221
222 for (x = 0; x < 0x40; x += 16 / info->portwidth) {
223 cptr.cp =
224 flash_make_addr (info, sect,
225 x + FLASH_OFFSET_CFI_RESP);
226 debug ("%p : ", cptr.cp);
227 for (y = 0; y < 16; y++) {
228 debug ("%2.2x ", cptr.cp[y]);
229 }
230 debug (" ");
231 for (y = 0; y < 16; y++) {
232 if (cptr.cp[y] >= 0x20 && cptr.cp[y] <= 0x7e) {
233 debug ("%c", cptr.cp[y]);
234 } else {
235 debug (".");
236 }
237 }
238 debug ("\n");
239 }
240}
wdenkbf9e3b32004-02-12 00:47:09 +0000241#endif
242
243
wdenk5653fc32004-02-08 22:55:38 +0000244/*-----------------------------------------------------------------------
245 * read a character at a port width address
246 */
wdenkbf9e3b32004-02-12 00:47:09 +0000247inline uchar flash_read_uchar (flash_info_t * info, uint offset)
wdenk5653fc32004-02-08 22:55:38 +0000248{
249 uchar *cp;
wdenkbf9e3b32004-02-12 00:47:09 +0000250
251 cp = flash_make_addr (info, 0, offset);
252#if defined(__LITTLE_ENDIAN)
253 return (cp[0]);
254#else
wdenk5653fc32004-02-08 22:55:38 +0000255 return (cp[info->portwidth - 1]);
wdenkbf9e3b32004-02-12 00:47:09 +0000256#endif
wdenk5653fc32004-02-08 22:55:38 +0000257}
258
259/*-----------------------------------------------------------------------
260 * read a short word by swapping for ppc format.
261 */
wdenkbf9e3b32004-02-12 00:47:09 +0000262ushort flash_read_ushort (flash_info_t * info, flash_sect_t sect, uint offset)
wdenk5653fc32004-02-08 22:55:38 +0000263{
wdenkbf9e3b32004-02-12 00:47:09 +0000264 uchar *addr;
265 ushort retval;
wdenk5653fc32004-02-08 22:55:38 +0000266
wdenkbf9e3b32004-02-12 00:47:09 +0000267#ifdef DEBUG
268 int x;
269#endif
270 addr = flash_make_addr (info, sect, offset);
wdenk5653fc32004-02-08 22:55:38 +0000271
wdenkbf9e3b32004-02-12 00:47:09 +0000272#ifdef DEBUG
273 debug ("ushort addr is at %p info->portwidth = %d\n", addr,
274 info->portwidth);
275 for (x = 0; x < 2 * info->portwidth; x++) {
276 debug ("addr[%x] = 0x%x\n", x, addr[x]);
277 }
278#endif
279#if defined(__LITTLE_ENDIAN)
280 retval = ((addr[(info->portwidth)] << 8) | addr[0]);
281#else
282 retval = ((addr[(2 * info->portwidth) - 1] << 8) |
283 addr[info->portwidth - 1]);
284#endif
285
286 debug ("retval = 0x%x\n", retval);
287 return retval;
wdenk5653fc32004-02-08 22:55:38 +0000288}
289
290/*-----------------------------------------------------------------------
291 * read a long word by picking the least significant byte of each maiximum
292 * port size word. Swap for ppc format.
293 */
wdenkbf9e3b32004-02-12 00:47:09 +0000294ulong flash_read_long (flash_info_t * info, flash_sect_t sect, uint offset)
wdenk5653fc32004-02-08 22:55:38 +0000295{
wdenkbf9e3b32004-02-12 00:47:09 +0000296 uchar *addr;
297 ulong retval;
wdenk5653fc32004-02-08 22:55:38 +0000298
wdenkbf9e3b32004-02-12 00:47:09 +0000299#ifdef DEBUG
300 int x;
301#endif
302 addr = flash_make_addr (info, sect, offset);
303
304#ifdef DEBUG
305 debug ("long addr is at %p info->portwidth = %d\n", addr,
306 info->portwidth);
307 for (x = 0; x < 4 * info->portwidth; x++) {
308 debug ("addr[%x] = 0x%x\n", x, addr[x]);
309 }
310#endif
311#if defined(__LITTLE_ENDIAN)
312 retval = (addr[0] << 16) | (addr[(info->portwidth)] << 24) |
wdenk028ab6b2004-02-23 23:54:43 +0000313 (addr[(2 * info->portwidth)]) | (addr[(3 * info->portwidth)] << 8);
wdenkbf9e3b32004-02-12 00:47:09 +0000314#else
315 retval = (addr[(2 * info->portwidth) - 1] << 24) |
316 (addr[(info->portwidth) - 1] << 16) |
317 (addr[(4 * info->portwidth) - 1] << 8) |
318 addr[(3 * info->portwidth) - 1];
319#endif
320 return retval;
wdenk5653fc32004-02-08 22:55:38 +0000321}
322
323/*-----------------------------------------------------------------------
324 */
325unsigned long flash_init (void)
326{
327 unsigned long size = 0;
328 int i;
329
330 /* Init: no FLASHes known */
wdenkbf9e3b32004-02-12 00:47:09 +0000331 for (i = 0; i < CFG_MAX_FLASH_BANKS; ++i) {
wdenk5653fc32004-02-08 22:55:38 +0000332 flash_info[i].flash_id = FLASH_UNKNOWN;
wdenkbf9e3b32004-02-12 00:47:09 +0000333 size += flash_info[i].size = flash_get_size (bank_base[i], i);
wdenk5653fc32004-02-08 22:55:38 +0000334 if (flash_info[i].flash_id == FLASH_UNKNOWN) {
wdenk028ab6b2004-02-23 23:54:43 +0000335 printf ("## Unknown FLASH on Bank %d - Size = 0x%08lx = %ld MB\n",
336 i, flash_info[i].size, flash_info[i].size << 20);
wdenk5653fc32004-02-08 22:55:38 +0000337 }
338 }
339
340 /* Monitor protection ON by default */
341#if (CFG_MONITOR_BASE >= CFG_FLASH_BASE)
wdenkbf9e3b32004-02-12 00:47:09 +0000342 flash_protect (FLAG_PROTECT_SET,
343 CFG_MONITOR_BASE,
344 CFG_MONITOR_BASE + CFG_MONITOR_LEN - 1,
345 &flash_info[0]);
wdenk5653fc32004-02-08 22:55:38 +0000346#endif
347
wdenk656658d2004-10-10 22:16:06 +0000348 /* Environment protection ON by default */
349#ifdef CFG_ENV_IS_IN_FLASH
350 flash_protect (FLAG_PROTECT_SET,
351 CFG_ENV_ADDR,
352 CFG_ENV_ADDR + CFG_ENV_SECT_SIZE - 1,
353 &flash_info[0]);
354#endif
355
356 /* Redundant environment protection ON by default */
357#ifdef CFG_ENV_ADDR_REDUND
358 flash_protect (FLAG_PROTECT_SET,
359 CFG_ENV_ADDR_REDUND,
360 CFG_ENV_ADDR_REDUND + CFG_ENV_SIZE_REDUND - 1,
361 &flash_info[0]);
362#endif
wdenk5653fc32004-02-08 22:55:38 +0000363 return (size);
364}
365
366/*-----------------------------------------------------------------------
367 */
wdenkbf9e3b32004-02-12 00:47:09 +0000368int flash_erase (flash_info_t * info, int s_first, int s_last)
wdenk5653fc32004-02-08 22:55:38 +0000369{
370 int rcode = 0;
371 int prot;
372 flash_sect_t sect;
373
wdenkbf9e3b32004-02-12 00:47:09 +0000374 if (info->flash_id != FLASH_MAN_CFI) {
wdenk4b9206e2004-03-23 22:14:11 +0000375 puts ("Can't erase unknown flash type - aborted\n");
wdenk5653fc32004-02-08 22:55:38 +0000376 return 1;
377 }
378 if ((s_first < 0) || (s_first > s_last)) {
wdenk4b9206e2004-03-23 22:14:11 +0000379 puts ("- no sectors to erase\n");
wdenk5653fc32004-02-08 22:55:38 +0000380 return 1;
381 }
382
383 prot = 0;
wdenkbf9e3b32004-02-12 00:47:09 +0000384 for (sect = s_first; sect <= s_last; ++sect) {
wdenk5653fc32004-02-08 22:55:38 +0000385 if (info->protect[sect]) {
386 prot++;
387 }
388 }
389 if (prot) {
wdenkbf9e3b32004-02-12 00:47:09 +0000390 printf ("- Warning: %d protected sectors will not be erased!\n", prot);
wdenk5653fc32004-02-08 22:55:38 +0000391 } else {
wdenk4b9206e2004-03-23 22:14:11 +0000392 putc ('\n');
wdenk5653fc32004-02-08 22:55:38 +0000393 }
394
395
wdenkbf9e3b32004-02-12 00:47:09 +0000396 for (sect = s_first; sect <= s_last; sect++) {
wdenk5653fc32004-02-08 22:55:38 +0000397 if (info->protect[sect] == 0) { /* not protected */
wdenkbf9e3b32004-02-12 00:47:09 +0000398 switch (info->vendor) {
wdenk5653fc32004-02-08 22:55:38 +0000399 case CFI_CMDSET_INTEL_STANDARD:
400 case CFI_CMDSET_INTEL_EXTENDED:
wdenk028ab6b2004-02-23 23:54:43 +0000401 flash_write_cmd (info, sect, 0, FLASH_CMD_CLEAR_STATUS);
402 flash_write_cmd (info, sect, 0, FLASH_CMD_BLOCK_ERASE);
403 flash_write_cmd (info, sect, 0, FLASH_CMD_ERASE_CONFIRM);
wdenk5653fc32004-02-08 22:55:38 +0000404 break;
405 case CFI_CMDSET_AMD_STANDARD:
406 case CFI_CMDSET_AMD_EXTENDED:
wdenkbf9e3b32004-02-12 00:47:09 +0000407 flash_unlock_seq (info, sect);
wdenk855a4962004-03-14 18:23:55 +0000408 flash_write_cmd (info, sect, AMD_ADDR_ERASE_START,
409 AMD_CMD_ERASE_START);
wdenkbf9e3b32004-02-12 00:47:09 +0000410 flash_unlock_seq (info, sect);
wdenk028ab6b2004-02-23 23:54:43 +0000411 flash_write_cmd (info, sect, 0, AMD_CMD_ERASE_SECTOR);
wdenk5653fc32004-02-08 22:55:38 +0000412 break;
413 default:
wdenkbf9e3b32004-02-12 00:47:09 +0000414 debug ("Unkown flash vendor %d\n",
415 info->vendor);
wdenk5653fc32004-02-08 22:55:38 +0000416 break;
417 }
418
wdenkbf9e3b32004-02-12 00:47:09 +0000419 if (flash_full_status_check
420 (info, sect, info->erase_blk_tout, "erase")) {
wdenk5653fc32004-02-08 22:55:38 +0000421 rcode = 1;
422 } else
wdenk4b9206e2004-03-23 22:14:11 +0000423 putc ('.');
wdenk5653fc32004-02-08 22:55:38 +0000424 }
425 }
wdenk4b9206e2004-03-23 22:14:11 +0000426 puts (" done\n");
wdenk5653fc32004-02-08 22:55:38 +0000427 return rcode;
428}
429
430/*-----------------------------------------------------------------------
431 */
wdenkbf9e3b32004-02-12 00:47:09 +0000432void flash_print_info (flash_info_t * info)
wdenk5653fc32004-02-08 22:55:38 +0000433{
434 int i;
435
436 if (info->flash_id != FLASH_MAN_CFI) {
wdenk4b9206e2004-03-23 22:14:11 +0000437 puts ("missing or unknown FLASH type\n");
wdenk5653fc32004-02-08 22:55:38 +0000438 return;
439 }
440
wdenkbf9e3b32004-02-12 00:47:09 +0000441 printf ("CFI conformant FLASH (%d x %d)",
442 (info->portwidth << 3), (info->chipwidth << 3));
wdenk5653fc32004-02-08 22:55:38 +0000443 printf (" Size: %ld MB in %d Sectors\n",
444 info->size >> 20, info->sector_count);
wdenk028ab6b2004-02-23 23:54:43 +0000445 printf (" Erase timeout %ld ms, write timeout %ld ms, buffer write timeout %ld ms, buffer size %d\n",
446 info->erase_blk_tout,
447 info->write_tout,
448 info->buffer_write_tout,
449 info->buffer_size);
wdenk5653fc32004-02-08 22:55:38 +0000450
wdenk4b9206e2004-03-23 22:14:11 +0000451 puts (" Sector Start Addresses:");
wdenkbf9e3b32004-02-12 00:47:09 +0000452 for (i = 0; i < info->sector_count; ++i) {
wdenk5653fc32004-02-08 22:55:38 +0000453#ifdef CFG_FLASH_EMPTY_INFO
454 int k;
455 int size;
456 int erased;
457 volatile unsigned long *flash;
458
459 /*
460 * Check if whole sector is erased
461 */
wdenkbf9e3b32004-02-12 00:47:09 +0000462 if (i != (info->sector_count - 1))
463 size = info->start[i + 1] - info->start[i];
wdenk5653fc32004-02-08 22:55:38 +0000464 else
wdenkbf9e3b32004-02-12 00:47:09 +0000465 size = info->start[0] + info->size - info->start[i];
wdenk5653fc32004-02-08 22:55:38 +0000466 erased = 1;
wdenkbf9e3b32004-02-12 00:47:09 +0000467 flash = (volatile unsigned long *) info->start[i];
468 size = size >> 2; /* divide by 4 for longword access */
469 for (k = 0; k < size; k++) {
470 if (*flash++ != 0xffffffff) {
471 erased = 0;
472 break;
473 }
474 }
wdenk5653fc32004-02-08 22:55:38 +0000475
476 if ((i % 5) == 0)
477 printf ("\n");
478 /* print empty and read-only info */
479 printf (" %08lX%s%s",
480 info->start[i],
481 erased ? " E" : " ",
482 info->protect[i] ? "RO " : " ");
483#else
484 if ((i % 5) == 0)
485 printf ("\n ");
486 printf (" %08lX%s",
wdenk30d56fa2004-10-09 22:44:59 +0000487 info->start[i], info->protect[i] ? " (RO) " : " ");
wdenk5653fc32004-02-08 22:55:38 +0000488#endif
489 }
wdenk4b9206e2004-03-23 22:14:11 +0000490 putc ('\n');
wdenk5653fc32004-02-08 22:55:38 +0000491 return;
492}
493
494/*-----------------------------------------------------------------------
495 * Copy memory to flash, returns:
496 * 0 - OK
497 * 1 - write timeout
498 * 2 - Flash not erased
499 */
wdenkbf9e3b32004-02-12 00:47:09 +0000500int write_buff (flash_info_t * info, uchar * src, ulong addr, ulong cnt)
wdenk5653fc32004-02-08 22:55:38 +0000501{
502 ulong wp;
503 ulong cp;
504 int aln;
505 cfiword_t cword;
506 int i, rc;
507
wdenkbf9e3b32004-02-12 00:47:09 +0000508#ifdef CFG_FLASH_USE_BUFFER_WRITE
509 int buffered_size;
510#endif
wdenkbf9e3b32004-02-12 00:47:09 +0000511 /* get lower aligned address */
wdenk5653fc32004-02-08 22:55:38 +0000512 /* get lower aligned address */
513 wp = (addr & ~(info->portwidth - 1));
514
515 /* handle unaligned start */
wdenkbf9e3b32004-02-12 00:47:09 +0000516 if ((aln = addr - wp) != 0) {
wdenk5653fc32004-02-08 22:55:38 +0000517 cword.l = 0;
518 cp = wp;
wdenkbf9e3b32004-02-12 00:47:09 +0000519 for (i = 0; i < aln; ++i, ++cp)
520 flash_add_byte (info, &cword, (*(uchar *) cp));
wdenk5653fc32004-02-08 22:55:38 +0000521
wdenkbf9e3b32004-02-12 00:47:09 +0000522 for (; (i < info->portwidth) && (cnt > 0); i++) {
523 flash_add_byte (info, &cword, *src++);
wdenk5653fc32004-02-08 22:55:38 +0000524 cnt--;
525 cp++;
526 }
wdenkbf9e3b32004-02-12 00:47:09 +0000527 for (; (cnt == 0) && (i < info->portwidth); ++i, ++cp)
528 flash_add_byte (info, &cword, (*(uchar *) cp));
529 if ((rc = flash_write_cfiword (info, wp, cword)) != 0)
wdenk5653fc32004-02-08 22:55:38 +0000530 return rc;
531 wp = cp;
532 }
533
wdenkbf9e3b32004-02-12 00:47:09 +0000534 /* handle the aligned part */
wdenk5653fc32004-02-08 22:55:38 +0000535#ifdef CFG_FLASH_USE_BUFFER_WRITE
wdenkbf9e3b32004-02-12 00:47:09 +0000536 buffered_size = (info->portwidth / info->chipwidth);
537 buffered_size *= info->buffer_size;
538 while (cnt >= info->portwidth) {
539 i = buffered_size > cnt ? cnt : buffered_size;
540 if ((rc = flash_write_cfibuffer (info, wp, src, i)) != ERR_OK)
wdenk5653fc32004-02-08 22:55:38 +0000541 return rc;
wdenkcce625e2004-09-28 19:00:19 +0000542 i -= (i % info->portwidth);
wdenk5653fc32004-02-08 22:55:38 +0000543 wp += i;
544 src += i;
wdenkbf9e3b32004-02-12 00:47:09 +0000545 cnt -= i;
wdenk5653fc32004-02-08 22:55:38 +0000546 }
547#else
wdenkbf9e3b32004-02-12 00:47:09 +0000548 while (cnt >= info->portwidth) {
wdenk5653fc32004-02-08 22:55:38 +0000549 cword.l = 0;
wdenkbf9e3b32004-02-12 00:47:09 +0000550 for (i = 0; i < info->portwidth; i++) {
551 flash_add_byte (info, &cword, *src++);
wdenk5653fc32004-02-08 22:55:38 +0000552 }
wdenkbf9e3b32004-02-12 00:47:09 +0000553 if ((rc = flash_write_cfiword (info, wp, cword)) != 0)
wdenk5653fc32004-02-08 22:55:38 +0000554 return rc;
555 wp += info->portwidth;
556 cnt -= info->portwidth;
557 }
558#endif /* CFG_FLASH_USE_BUFFER_WRITE */
559 if (cnt == 0) {
560 return (0);
561 }
562
563 /*
564 * handle unaligned tail bytes
565 */
566 cword.l = 0;
wdenkbf9e3b32004-02-12 00:47:09 +0000567 for (i = 0, cp = wp; (i < info->portwidth) && (cnt > 0); ++i, ++cp) {
568 flash_add_byte (info, &cword, *src++);
wdenk5653fc32004-02-08 22:55:38 +0000569 --cnt;
570 }
wdenkbf9e3b32004-02-12 00:47:09 +0000571 for (; i < info->portwidth; ++i, ++cp) {
572 flash_add_byte (info, &cword, (*(uchar *) cp));
wdenk5653fc32004-02-08 22:55:38 +0000573 }
574
wdenkbf9e3b32004-02-12 00:47:09 +0000575 return flash_write_cfiword (info, wp, cword);
wdenk5653fc32004-02-08 22:55:38 +0000576}
577
578/*-----------------------------------------------------------------------
579 */
580#ifdef CFG_FLASH_PROTECTION
581
wdenkbf9e3b32004-02-12 00:47:09 +0000582int flash_real_protect (flash_info_t * info, long sector, int prot)
wdenk5653fc32004-02-08 22:55:38 +0000583{
584 int retcode = 0;
585
wdenkbf9e3b32004-02-12 00:47:09 +0000586 flash_write_cmd (info, sector, 0, FLASH_CMD_CLEAR_STATUS);
587 flash_write_cmd (info, sector, 0, FLASH_CMD_PROTECT);
588 if (prot)
589 flash_write_cmd (info, sector, 0, FLASH_CMD_PROTECT_SET);
wdenk5653fc32004-02-08 22:55:38 +0000590 else
wdenkbf9e3b32004-02-12 00:47:09 +0000591 flash_write_cmd (info, sector, 0, FLASH_CMD_PROTECT_CLEAR);
wdenk5653fc32004-02-08 22:55:38 +0000592
wdenkbf9e3b32004-02-12 00:47:09 +0000593 if ((retcode =
594 flash_full_status_check (info, sector, info->erase_blk_tout,
595 prot ? "protect" : "unprotect")) == 0) {
wdenk5653fc32004-02-08 22:55:38 +0000596
597 info->protect[sector] = prot;
598 /* Intel's unprotect unprotects all locking */
wdenkbf9e3b32004-02-12 00:47:09 +0000599 if (prot == 0) {
wdenk5653fc32004-02-08 22:55:38 +0000600 flash_sect_t i;
wdenkbf9e3b32004-02-12 00:47:09 +0000601
602 for (i = 0; i < info->sector_count; i++) {
603 if (info->protect[i])
604 flash_real_protect (info, i, 1);
wdenk5653fc32004-02-08 22:55:38 +0000605 }
606 }
607 }
wdenk5653fc32004-02-08 22:55:38 +0000608 return retcode;
wdenkbf9e3b32004-02-12 00:47:09 +0000609}
610
wdenk5653fc32004-02-08 22:55:38 +0000611/*-----------------------------------------------------------------------
612 * flash_read_user_serial - read the OneTimeProgramming cells
613 */
wdenkbf9e3b32004-02-12 00:47:09 +0000614void flash_read_user_serial (flash_info_t * info, void *buffer, int offset,
615 int len)
wdenk5653fc32004-02-08 22:55:38 +0000616{
wdenkbf9e3b32004-02-12 00:47:09 +0000617 uchar *src;
618 uchar *dst;
wdenk5653fc32004-02-08 22:55:38 +0000619
620 dst = buffer;
wdenkbf9e3b32004-02-12 00:47:09 +0000621 src = flash_make_addr (info, 0, FLASH_OFFSET_USER_PROTECTION);
622 flash_write_cmd (info, 0, 0, FLASH_CMD_READ_ID);
623 memcpy (dst, src + offset, len);
624 flash_write_cmd (info, 0, 0, FLASH_CMD_RESET);
wdenk5653fc32004-02-08 22:55:38 +0000625}
wdenkbf9e3b32004-02-12 00:47:09 +0000626
wdenk5653fc32004-02-08 22:55:38 +0000627/*
628 * flash_read_factory_serial - read the device Id from the protection area
629 */
wdenkbf9e3b32004-02-12 00:47:09 +0000630void flash_read_factory_serial (flash_info_t * info, void *buffer, int offset,
631 int len)
wdenk5653fc32004-02-08 22:55:38 +0000632{
wdenkbf9e3b32004-02-12 00:47:09 +0000633 uchar *src;
wdenkcd37d9e2004-02-10 00:03:41 +0000634
wdenkbf9e3b32004-02-12 00:47:09 +0000635 src = flash_make_addr (info, 0, FLASH_OFFSET_INTEL_PROTECTION);
636 flash_write_cmd (info, 0, 0, FLASH_CMD_READ_ID);
637 memcpy (buffer, src + offset, len);
638 flash_write_cmd (info, 0, 0, FLASH_CMD_RESET);
wdenk5653fc32004-02-08 22:55:38 +0000639}
640
641#endif /* CFG_FLASH_PROTECTION */
642
wdenkbf9e3b32004-02-12 00:47:09 +0000643/*
644 * flash_is_busy - check to see if the flash is busy
645 * This routine checks the status of the chip and returns true if the chip is busy
646 */
647static int flash_is_busy (flash_info_t * info, flash_sect_t sect)
wdenk5653fc32004-02-08 22:55:38 +0000648{
649 int retval;
wdenkbf9e3b32004-02-12 00:47:09 +0000650
651 switch (info->vendor) {
wdenk5653fc32004-02-08 22:55:38 +0000652 case CFI_CMDSET_INTEL_STANDARD:
653 case CFI_CMDSET_INTEL_EXTENDED:
wdenkbf9e3b32004-02-12 00:47:09 +0000654 retval = !flash_isset (info, sect, 0, FLASH_STATUS_DONE);
wdenk5653fc32004-02-08 22:55:38 +0000655 break;
656 case CFI_CMDSET_AMD_STANDARD:
657 case CFI_CMDSET_AMD_EXTENDED:
wdenkbf9e3b32004-02-12 00:47:09 +0000658 retval = flash_toggle (info, sect, 0, AMD_STATUS_TOGGLE);
wdenk5653fc32004-02-08 22:55:38 +0000659 break;
660 default:
661 retval = 0;
662 }
wdenkbf9e3b32004-02-12 00:47:09 +0000663 debug ("flash_is_busy: %d\n", retval);
wdenk5653fc32004-02-08 22:55:38 +0000664 return retval;
665}
wdenkbf9e3b32004-02-12 00:47:09 +0000666
wdenk5653fc32004-02-08 22:55:38 +0000667/*-----------------------------------------------------------------------
668 * wait for XSR.7 to be set. Time out with an error if it does not.
669 * This routine does not set the flash to read-array mode.
670 */
wdenkbf9e3b32004-02-12 00:47:09 +0000671static int flash_status_check (flash_info_t * info, flash_sect_t sector,
672 ulong tout, char *prompt)
wdenk5653fc32004-02-08 22:55:38 +0000673{
674 ulong start;
675
676 /* Wait for command completion */
677 start = get_timer (0);
wdenkbf9e3b32004-02-12 00:47:09 +0000678 while (flash_is_busy (info, sector)) {
679 if (get_timer (start) > info->erase_blk_tout * CFG_HZ) {
680 printf ("Flash %s timeout at address %lx data %lx\n",
681 prompt, info->start[sector],
682 flash_read_long (info, sector, 0));
683 flash_write_cmd (info, sector, 0, info->cmd_reset);
wdenk5653fc32004-02-08 22:55:38 +0000684 return ERR_TIMOUT;
685 }
686 }
687 return ERR_OK;
688}
wdenkbf9e3b32004-02-12 00:47:09 +0000689
wdenk5653fc32004-02-08 22:55:38 +0000690/*-----------------------------------------------------------------------
691 * Wait for XSR.7 to be set, if it times out print an error, otherwise do a full status check.
692 * This routine sets the flash to read-array mode.
693 */
wdenkbf9e3b32004-02-12 00:47:09 +0000694static int flash_full_status_check (flash_info_t * info, flash_sect_t sector,
695 ulong tout, char *prompt)
wdenk5653fc32004-02-08 22:55:38 +0000696{
697 int retcode;
wdenkbf9e3b32004-02-12 00:47:09 +0000698
699 retcode = flash_status_check (info, sector, tout, prompt);
700 switch (info->vendor) {
wdenk5653fc32004-02-08 22:55:38 +0000701 case CFI_CMDSET_INTEL_EXTENDED:
702 case CFI_CMDSET_INTEL_STANDARD:
wdenkbf9e3b32004-02-12 00:47:09 +0000703 if ((retcode != ERR_OK)
704 && !flash_isequal (info, sector, 0, FLASH_STATUS_DONE)) {
wdenk5653fc32004-02-08 22:55:38 +0000705 retcode = ERR_INVAL;
wdenkbf9e3b32004-02-12 00:47:09 +0000706 printf ("Flash %s error at address %lx\n", prompt,
707 info->start[sector]);
wdenk028ab6b2004-02-23 23:54:43 +0000708 if (flash_isset (info, sector, 0, FLASH_STATUS_ECLBS | FLASH_STATUS_PSLBS)) {
wdenk4b9206e2004-03-23 22:14:11 +0000709 puts ("Command Sequence Error.\n");
wdenk028ab6b2004-02-23 23:54:43 +0000710 } else if (flash_isset (info, sector, 0, FLASH_STATUS_ECLBS)) {
wdenk4b9206e2004-03-23 22:14:11 +0000711 puts ("Block Erase Error.\n");
wdenk5653fc32004-02-08 22:55:38 +0000712 retcode = ERR_NOT_ERASED;
wdenk028ab6b2004-02-23 23:54:43 +0000713 } else if (flash_isset (info, sector, 0, FLASH_STATUS_PSLBS)) {
wdenk4b9206e2004-03-23 22:14:11 +0000714 puts ("Locking Error\n");
wdenk5653fc32004-02-08 22:55:38 +0000715 }
wdenkbf9e3b32004-02-12 00:47:09 +0000716 if (flash_isset (info, sector, 0, FLASH_STATUS_DPS)) {
wdenk4b9206e2004-03-23 22:14:11 +0000717 puts ("Block locked.\n");
wdenkbf9e3b32004-02-12 00:47:09 +0000718 retcode = ERR_PROTECTED;
719 }
720 if (flash_isset (info, sector, 0, FLASH_STATUS_VPENS))
wdenk4b9206e2004-03-23 22:14:11 +0000721 puts ("Vpp Low Error.\n");
wdenk5653fc32004-02-08 22:55:38 +0000722 }
wdenkbf9e3b32004-02-12 00:47:09 +0000723 flash_write_cmd (info, sector, 0, FLASH_CMD_RESET);
wdenk5653fc32004-02-08 22:55:38 +0000724 break;
725 default:
726 break;
727 }
728 return retcode;
729}
wdenkbf9e3b32004-02-12 00:47:09 +0000730
wdenk5653fc32004-02-08 22:55:38 +0000731/*-----------------------------------------------------------------------
732 */
wdenkbf9e3b32004-02-12 00:47:09 +0000733static void flash_add_byte (flash_info_t * info, cfiword_t * cword, uchar c)
wdenk5653fc32004-02-08 22:55:38 +0000734{
wdenk4d13cba2004-03-14 14:09:05 +0000735#if defined(__LITTLE_ENDIAN)
736 unsigned short w;
737 unsigned int l;
738 unsigned long long ll;
739#endif
740
wdenkbf9e3b32004-02-12 00:47:09 +0000741 switch (info->portwidth) {
wdenk5653fc32004-02-08 22:55:38 +0000742 case FLASH_CFI_8BIT:
743 cword->c = c;
744 break;
745 case FLASH_CFI_16BIT:
wdenk4d13cba2004-03-14 14:09:05 +0000746#if defined(__LITTLE_ENDIAN)
747 w = c;
748 w <<= 8;
749 cword->w = (cword->w >> 8) | w;
750#else
wdenk5653fc32004-02-08 22:55:38 +0000751 cword->w = (cword->w << 8) | c;
wdenk4d13cba2004-03-14 14:09:05 +0000752#endif
wdenk5653fc32004-02-08 22:55:38 +0000753 break;
754 case FLASH_CFI_32BIT:
wdenk4d13cba2004-03-14 14:09:05 +0000755#if defined(__LITTLE_ENDIAN)
756 l = c;
757 l <<= 24;
758 cword->l = (cword->l >> 8) | l;
759#else
wdenk5653fc32004-02-08 22:55:38 +0000760 cword->l = (cword->l << 8) | c;
wdenk4d13cba2004-03-14 14:09:05 +0000761#endif
wdenk5653fc32004-02-08 22:55:38 +0000762 break;
763 case FLASH_CFI_64BIT:
wdenk4d13cba2004-03-14 14:09:05 +0000764#if defined(__LITTLE_ENDIAN)
765 ll = c;
766 ll <<= 56;
767 cword->ll = (cword->ll >> 8) | ll;
768#else
wdenk5653fc32004-02-08 22:55:38 +0000769 cword->ll = (cword->ll << 8) | c;
wdenk4d13cba2004-03-14 14:09:05 +0000770#endif
wdenk5653fc32004-02-08 22:55:38 +0000771 break;
772 }
773}
774
775
776/*-----------------------------------------------------------------------
777 * make a proper sized command based on the port and chip widths
778 */
wdenkbf9e3b32004-02-12 00:47:09 +0000779static void flash_make_cmd (flash_info_t * info, uchar cmd, void *cmdbuf)
wdenk5653fc32004-02-08 22:55:38 +0000780{
781 int i;
wdenkbf9e3b32004-02-12 00:47:09 +0000782
783#if defined(__LITTLE_ENDIAN)
wdenk028ab6b2004-02-23 23:54:43 +0000784 ushort stmpw;
785 uint stmpi;
wdenkbf9e3b32004-02-12 00:47:09 +0000786#endif
787 uchar *cp = (uchar *) cmdbuf;
788
789 for (i = 0; i < info->portwidth; i++)
790 *cp++ = ((i + 1) % info->chipwidth) ? '\0' : cmd;
791#if defined(__LITTLE_ENDIAN)
wdenk028ab6b2004-02-23 23:54:43 +0000792 switch (info->portwidth) {
793 case FLASH_CFI_8BIT:
794 break;
795 case FLASH_CFI_16BIT:
796 stmpw = *(ushort *) cmdbuf;
797 *(ushort *) cmdbuf = __swab16 (stmpw);
798 break;
799 case FLASH_CFI_32BIT:
800 stmpi = *(uint *) cmdbuf;
801 *(uint *) cmdbuf = __swab32 (stmpi);
802 break;
803 default:
wdenk4b9206e2004-03-23 22:14:11 +0000804 puts ("WARNING: flash_make_cmd: unsuppported LittleEndian mode\n");
wdenk028ab6b2004-02-23 23:54:43 +0000805 break;
wdenkbf9e3b32004-02-12 00:47:09 +0000806 }
807#endif
wdenk5653fc32004-02-08 22:55:38 +0000808}
809
810/*
811 * Write a proper sized command to the correct address
812 */
wdenk028ab6b2004-02-23 23:54:43 +0000813static void flash_write_cmd (flash_info_t * info, flash_sect_t sect, uint offset, uchar cmd)
wdenk5653fc32004-02-08 22:55:38 +0000814{
815
816 volatile cfiptr_t addr;
817 cfiword_t cword;
wdenkbf9e3b32004-02-12 00:47:09 +0000818
819 addr.cp = flash_make_addr (info, sect, offset);
820 flash_make_cmd (info, cmd, &cword);
821 switch (info->portwidth) {
wdenk5653fc32004-02-08 22:55:38 +0000822 case FLASH_CFI_8BIT:
wdenkbf9e3b32004-02-12 00:47:09 +0000823 debug ("fwc addr %p cmd %x %x 8bit x %d bit\n", addr.cp, cmd,
824 cword.c, info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
wdenk5653fc32004-02-08 22:55:38 +0000825 *addr.cp = cword.c;
826 break;
827 case FLASH_CFI_16BIT:
wdenkbf9e3b32004-02-12 00:47:09 +0000828 debug ("fwc addr %p cmd %x %4.4x 16bit x %d bit\n", addr.wp,
829 cmd, cword.w,
wdenk5653fc32004-02-08 22:55:38 +0000830 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
831 *addr.wp = cword.w;
832 break;
833 case FLASH_CFI_32BIT:
wdenkbf9e3b32004-02-12 00:47:09 +0000834 debug ("fwc addr %p cmd %x %8.8lx 32bit x %d bit\n", addr.lp,
835 cmd, cword.l,
wdenk5653fc32004-02-08 22:55:38 +0000836 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
837 *addr.lp = cword.l;
838 break;
839 case FLASH_CFI_64BIT:
840#ifdef DEBUG
wdenkbf9e3b32004-02-12 00:47:09 +0000841 {
wdenk5653fc32004-02-08 22:55:38 +0000842 char str[20];
wdenkcd37d9e2004-02-10 00:03:41 +0000843
wdenkbf9e3b32004-02-12 00:47:09 +0000844 print_longlong (str, cword.ll);
845
846 debug ("fwrite addr %p cmd %x %s 64 bit x %d bit\n",
847 addr.llp, cmd, str,
wdenk5653fc32004-02-08 22:55:38 +0000848 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
849 }
850#endif
851 *addr.llp = cword.ll;
852 break;
853 }
854}
855
wdenkbf9e3b32004-02-12 00:47:09 +0000856static void flash_unlock_seq (flash_info_t * info, flash_sect_t sect)
wdenk5653fc32004-02-08 22:55:38 +0000857{
wdenk855a4962004-03-14 18:23:55 +0000858 flash_write_cmd (info, sect, AMD_ADDR_START, AMD_CMD_UNLOCK_START);
859 flash_write_cmd (info, sect, AMD_ADDR_ACK, AMD_CMD_UNLOCK_ACK);
wdenk5653fc32004-02-08 22:55:38 +0000860}
wdenkbf9e3b32004-02-12 00:47:09 +0000861
wdenk5653fc32004-02-08 22:55:38 +0000862/*-----------------------------------------------------------------------
863 */
wdenk028ab6b2004-02-23 23:54:43 +0000864static int flash_isequal (flash_info_t * info, flash_sect_t sect, uint offset, uchar cmd)
wdenk5653fc32004-02-08 22:55:38 +0000865{
866 cfiptr_t cptr;
867 cfiword_t cword;
868 int retval;
wdenk5653fc32004-02-08 22:55:38 +0000869
wdenkbf9e3b32004-02-12 00:47:09 +0000870 cptr.cp = flash_make_addr (info, sect, offset);
871 flash_make_cmd (info, cmd, &cword);
872
873 debug ("is= cmd %x(%c) addr %p ", cmd, cmd, cptr.cp);
874 switch (info->portwidth) {
wdenk5653fc32004-02-08 22:55:38 +0000875 case FLASH_CFI_8BIT:
wdenkbf9e3b32004-02-12 00:47:09 +0000876 debug ("is= %x %x\n", cptr.cp[0], cword.c);
wdenk5653fc32004-02-08 22:55:38 +0000877 retval = (cptr.cp[0] == cword.c);
878 break;
879 case FLASH_CFI_16BIT:
wdenkbf9e3b32004-02-12 00:47:09 +0000880 debug ("is= %4.4x %4.4x\n", cptr.wp[0], cword.w);
wdenk5653fc32004-02-08 22:55:38 +0000881 retval = (cptr.wp[0] == cword.w);
882 break;
883 case FLASH_CFI_32BIT:
wdenkbf9e3b32004-02-12 00:47:09 +0000884 debug ("is= %8.8lx %8.8lx\n", cptr.lp[0], cword.l);
wdenk5653fc32004-02-08 22:55:38 +0000885 retval = (cptr.lp[0] == cword.l);
886 break;
887 case FLASH_CFI_64BIT:
wdenkcd37d9e2004-02-10 00:03:41 +0000888#ifdef DEBUG
wdenkbf9e3b32004-02-12 00:47:09 +0000889 {
wdenk5653fc32004-02-08 22:55:38 +0000890 char str1[20];
891 char str2[20];
wdenkbf9e3b32004-02-12 00:47:09 +0000892
893 print_longlong (str1, cptr.llp[0]);
894 print_longlong (str2, cword.ll);
895 debug ("is= %s %s\n", str1, str2);
wdenk5653fc32004-02-08 22:55:38 +0000896 }
897#endif
898 retval = (cptr.llp[0] == cword.ll);
899 break;
900 default:
901 retval = 0;
902 break;
903 }
904 return retval;
905}
wdenkbf9e3b32004-02-12 00:47:09 +0000906
wdenk5653fc32004-02-08 22:55:38 +0000907/*-----------------------------------------------------------------------
908 */
wdenk028ab6b2004-02-23 23:54:43 +0000909static int flash_isset (flash_info_t * info, flash_sect_t sect, uint offset, uchar cmd)
wdenk5653fc32004-02-08 22:55:38 +0000910{
911 cfiptr_t cptr;
912 cfiword_t cword;
913 int retval;
wdenkbf9e3b32004-02-12 00:47:09 +0000914
915 cptr.cp = flash_make_addr (info, sect, offset);
916 flash_make_cmd (info, cmd, &cword);
917 switch (info->portwidth) {
wdenk5653fc32004-02-08 22:55:38 +0000918 case FLASH_CFI_8BIT:
919 retval = ((cptr.cp[0] & cword.c) == cword.c);
920 break;
921 case FLASH_CFI_16BIT:
922 retval = ((cptr.wp[0] & cword.w) == cword.w);
923 break;
924 case FLASH_CFI_32BIT:
925 retval = ((cptr.lp[0] & cword.l) == cword.l);
926 break;
927 case FLASH_CFI_64BIT:
928 retval = ((cptr.llp[0] & cword.ll) == cword.ll);
wdenkbf9e3b32004-02-12 00:47:09 +0000929 break;
wdenk5653fc32004-02-08 22:55:38 +0000930 default:
931 retval = 0;
932 break;
933 }
934 return retval;
935}
936
937/*-----------------------------------------------------------------------
938 */
wdenk028ab6b2004-02-23 23:54:43 +0000939static int flash_toggle (flash_info_t * info, flash_sect_t sect, uint offset, uchar cmd)
wdenk5653fc32004-02-08 22:55:38 +0000940{
941 cfiptr_t cptr;
942 cfiword_t cword;
943 int retval;
wdenkbf9e3b32004-02-12 00:47:09 +0000944
945 cptr.cp = flash_make_addr (info, sect, offset);
946 flash_make_cmd (info, cmd, &cword);
947 switch (info->portwidth) {
wdenk5653fc32004-02-08 22:55:38 +0000948 case FLASH_CFI_8BIT:
949 retval = ((cptr.cp[0] & cword.c) != (cptr.cp[0] & cword.c));
950 break;
951 case FLASH_CFI_16BIT:
952 retval = ((cptr.wp[0] & cword.w) != (cptr.wp[0] & cword.w));
953 break;
954 case FLASH_CFI_32BIT:
955 retval = ((cptr.lp[0] & cword.l) != (cptr.lp[0] & cword.l));
956 break;
957 case FLASH_CFI_64BIT:
wdenkbf9e3b32004-02-12 00:47:09 +0000958 retval = ((cptr.llp[0] & cword.ll) !=
959 (cptr.llp[0] & cword.ll));
wdenk5653fc32004-02-08 22:55:38 +0000960 break;
961 default:
962 retval = 0;
963 break;
964 }
965 return retval;
966}
967
968/*-----------------------------------------------------------------------
969 * detect if flash is compatible with the Common Flash Interface (CFI)
970 * http://www.jedec.org/download/search/jesd68.pdf
971 *
972*/
wdenkbf9e3b32004-02-12 00:47:09 +0000973static int flash_detect_cfi (flash_info_t * info)
wdenk5653fc32004-02-08 22:55:38 +0000974{
wdenkbf9e3b32004-02-12 00:47:09 +0000975 debug ("flash detect cfi\n");
wdenk5653fc32004-02-08 22:55:38 +0000976
wdenkbf9e3b32004-02-12 00:47:09 +0000977 for (info->portwidth = FLASH_CFI_8BIT;
978 info->portwidth <= FLASH_CFI_64BIT; info->portwidth <<= 1) {
979 for (info->chipwidth = FLASH_CFI_BY8;
980 info->chipwidth <= info->portwidth;
981 info->chipwidth <<= 1) {
982 flash_write_cmd (info, 0, 0, FLASH_CMD_RESET);
wdenk028ab6b2004-02-23 23:54:43 +0000983 flash_write_cmd (info, 0, FLASH_OFFSET_CFI, FLASH_CMD_CFI);
984 if (flash_isequal (info, 0, FLASH_OFFSET_CFI_RESP, 'Q')
985 && flash_isequal (info, 0, FLASH_OFFSET_CFI_RESP + 1, 'R')
986 && flash_isequal (info, 0, FLASH_OFFSET_CFI_RESP + 2, 'Y')) {
987 info->interface = flash_read_ushort (info, 0, FLASH_OFFSET_INTERFACE);
wdenkbf9e3b32004-02-12 00:47:09 +0000988 debug ("device interface is %d\n",
989 info->interface);
990 debug ("found port %d chip %d ",
991 info->portwidth, info->chipwidth);
992 debug ("port %d bits chip %d bits\n",
wdenk028ab6b2004-02-23 23:54:43 +0000993 info->portwidth << CFI_FLASH_SHIFT_WIDTH,
994 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
wdenk5653fc32004-02-08 22:55:38 +0000995 return 1;
996 }
997 }
998 }
wdenkbf9e3b32004-02-12 00:47:09 +0000999 debug ("not found\n");
wdenk5653fc32004-02-08 22:55:38 +00001000 return 0;
1001}
wdenkbf9e3b32004-02-12 00:47:09 +00001002
wdenk5653fc32004-02-08 22:55:38 +00001003/*
1004 * The following code cannot be run from FLASH!
1005 *
1006 */
1007static ulong flash_get_size (ulong base, int banknum)
1008{
wdenkbf9e3b32004-02-12 00:47:09 +00001009 flash_info_t *info = &flash_info[banknum];
wdenk5653fc32004-02-08 22:55:38 +00001010 int i, j;
1011 flash_sect_t sect_cnt;
1012 unsigned long sector;
1013 unsigned long tmp;
1014 int size_ratio;
1015 uchar num_erase_regions;
wdenkbf9e3b32004-02-12 00:47:09 +00001016 int erase_region_size;
1017 int erase_region_count;
wdenk5653fc32004-02-08 22:55:38 +00001018
1019 info->start[0] = base;
1020
wdenkbf9e3b32004-02-12 00:47:09 +00001021 if (flash_detect_cfi (info)) {
wdenk028ab6b2004-02-23 23:54:43 +00001022 info->vendor = flash_read_ushort (info, 0, FLASH_OFFSET_PRIMARY_VENDOR);
wdenkbf9e3b32004-02-12 00:47:09 +00001023#ifdef DEBUG
1024 flash_printqry (info, 0);
1025#endif
1026 switch (info->vendor) {
wdenk5653fc32004-02-08 22:55:38 +00001027 case CFI_CMDSET_INTEL_STANDARD:
1028 case CFI_CMDSET_INTEL_EXTENDED:
1029 default:
1030 info->cmd_reset = FLASH_CMD_RESET;
1031 break;
1032 case CFI_CMDSET_AMD_STANDARD:
1033 case CFI_CMDSET_AMD_EXTENDED:
1034 info->cmd_reset = AMD_CMD_RESET;
1035 break;
1036 }
wdenkcd37d9e2004-02-10 00:03:41 +00001037
wdenkbf9e3b32004-02-12 00:47:09 +00001038 debug ("manufacturer is %d\n", info->vendor);
wdenk5653fc32004-02-08 22:55:38 +00001039 size_ratio = info->portwidth / info->chipwidth;
wdenkbf9e3b32004-02-12 00:47:09 +00001040 /* if the chip is x8/x16 reduce the ratio by half */
1041 if ((info->interface == FLASH_CFI_X8X16)
1042 && (info->chipwidth == FLASH_CFI_BY8)) {
1043 size_ratio >>= 1;
1044 }
wdenk028ab6b2004-02-23 23:54:43 +00001045 num_erase_regions = flash_read_uchar (info, FLASH_OFFSET_NUM_ERASE_REGIONS);
wdenkbf9e3b32004-02-12 00:47:09 +00001046 debug ("size_ratio %d port %d bits chip %d bits\n",
1047 size_ratio, info->portwidth << CFI_FLASH_SHIFT_WIDTH,
1048 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
1049 debug ("found %d erase regions\n", num_erase_regions);
wdenk5653fc32004-02-08 22:55:38 +00001050 sect_cnt = 0;
1051 sector = base;
wdenkbf9e3b32004-02-12 00:47:09 +00001052 for (i = 0; i < num_erase_regions; i++) {
1053 if (i > NUM_ERASE_REGIONS) {
wdenk028ab6b2004-02-23 23:54:43 +00001054 printf ("%d erase regions found, only %d used\n",
1055 num_erase_regions, NUM_ERASE_REGIONS);
wdenk5653fc32004-02-08 22:55:38 +00001056 break;
1057 }
wdenkbf9e3b32004-02-12 00:47:09 +00001058 tmp = flash_read_long (info, 0,
1059 FLASH_OFFSET_ERASE_REGIONS +
1060 i * 4);
1061 erase_region_size =
1062 (tmp & 0xffff) ? ((tmp & 0xffff) * 256) : 128;
wdenk5653fc32004-02-08 22:55:38 +00001063 tmp >>= 16;
wdenkbf9e3b32004-02-12 00:47:09 +00001064 erase_region_count = (tmp & 0xffff) + 1;
wdenk4c0d4c32004-06-09 17:34:58 +00001065 debug ("erase_region_count = %d erase_region_size = %d\n",
wdenk028ab6b2004-02-23 23:54:43 +00001066 erase_region_count, erase_region_size);
wdenkbf9e3b32004-02-12 00:47:09 +00001067 for (j = 0; j < erase_region_count; j++) {
wdenk5653fc32004-02-08 22:55:38 +00001068 info->start[sect_cnt] = sector;
1069 sector += (erase_region_size * size_ratio);
wdenka1191902005-01-09 17:12:27 +00001070
1071 /*
1072 * Only read protection status from supported devices (intel...)
1073 */
1074 switch (info->vendor) {
1075 case CFI_CMDSET_INTEL_EXTENDED:
1076 case CFI_CMDSET_INTEL_STANDARD:
1077 info->protect[sect_cnt] =
1078 flash_isset (info, sect_cnt,
1079 FLASH_OFFSET_PROTECT,
1080 FLASH_STATUS_PROTECT);
1081 break;
1082 default:
1083 info->protect[sect_cnt] = 0; /* default: not protected */
1084 }
1085
wdenk5653fc32004-02-08 22:55:38 +00001086 sect_cnt++;
1087 }
1088 }
1089
1090 info->sector_count = sect_cnt;
1091 /* multiply the size by the number of chips */
wdenk028ab6b2004-02-23 23:54:43 +00001092 info->size = (1 << flash_read_uchar (info, FLASH_OFFSET_SIZE)) * size_ratio;
1093 info->buffer_size = (1 << flash_read_ushort (info, 0, FLASH_OFFSET_BUFFER_SIZE));
wdenkbf9e3b32004-02-12 00:47:09 +00001094 tmp = 1 << flash_read_uchar (info, FLASH_OFFSET_ETOUT);
wdenk028ab6b2004-02-23 23:54:43 +00001095 info->erase_blk_tout = (tmp * (1 << flash_read_uchar (info, FLASH_OFFSET_EMAX_TOUT)));
wdenkbf9e3b32004-02-12 00:47:09 +00001096 tmp = 1 << flash_read_uchar (info, FLASH_OFFSET_WBTOUT);
wdenk028ab6b2004-02-23 23:54:43 +00001097 info->buffer_write_tout = (tmp * (1 << flash_read_uchar (info, FLASH_OFFSET_WBMAX_TOUT)));
wdenkbf9e3b32004-02-12 00:47:09 +00001098 tmp = 1 << flash_read_uchar (info, FLASH_OFFSET_WTOUT);
wdenk028ab6b2004-02-23 23:54:43 +00001099 info->write_tout = (tmp * (1 << flash_read_uchar (info, FLASH_OFFSET_WMAX_TOUT))) / 1000;
wdenk5653fc32004-02-08 22:55:38 +00001100 info->flash_id = FLASH_MAN_CFI;
wdenk855a4962004-03-14 18:23:55 +00001101 if ((info->interface == FLASH_CFI_X8X16) && (info->chipwidth == FLASH_CFI_BY8)) {
1102 info->portwidth >>= 1; /* XXX - Need to test on x8/x16 in parallel. */
1103 }
wdenk5653fc32004-02-08 22:55:38 +00001104 }
1105
wdenkbf9e3b32004-02-12 00:47:09 +00001106 flash_write_cmd (info, 0, 0, FLASH_CMD_RESET);
1107 return (info->size);
wdenk5653fc32004-02-08 22:55:38 +00001108}
1109
1110
1111/*-----------------------------------------------------------------------
1112 */
wdenkbf9e3b32004-02-12 00:47:09 +00001113static int flash_write_cfiword (flash_info_t * info, ulong dest,
1114 cfiword_t cword)
wdenk5653fc32004-02-08 22:55:38 +00001115{
1116
1117 cfiptr_t ctladdr;
1118 cfiptr_t cptr;
1119 int flag;
1120
wdenkbf9e3b32004-02-12 00:47:09 +00001121 ctladdr.cp = flash_make_addr (info, 0, 0);
1122 cptr.cp = (uchar *) dest;
wdenk5653fc32004-02-08 22:55:38 +00001123
1124
1125 /* Check if Flash is (sufficiently) erased */
wdenkbf9e3b32004-02-12 00:47:09 +00001126 switch (info->portwidth) {
wdenk5653fc32004-02-08 22:55:38 +00001127 case FLASH_CFI_8BIT:
1128 flag = ((cptr.cp[0] & cword.c) == cword.c);
1129 break;
1130 case FLASH_CFI_16BIT:
1131 flag = ((cptr.wp[0] & cword.w) == cword.w);
1132 break;
1133 case FLASH_CFI_32BIT:
wdenkbf9e3b32004-02-12 00:47:09 +00001134 flag = ((cptr.lp[0] & cword.l) == cword.l);
wdenk5653fc32004-02-08 22:55:38 +00001135 break;
1136 case FLASH_CFI_64BIT:
wdenke1599e82004-10-10 23:27:33 +00001137 flag = ((cptr.llp[0] & cword.ll) == cword.ll);
wdenk5653fc32004-02-08 22:55:38 +00001138 break;
1139 default:
1140 return 2;
1141 }
wdenkbf9e3b32004-02-12 00:47:09 +00001142 if (!flag)
wdenk5653fc32004-02-08 22:55:38 +00001143 return 2;
1144
1145 /* Disable interrupts which might cause a timeout here */
wdenkbf9e3b32004-02-12 00:47:09 +00001146 flag = disable_interrupts ();
wdenk5653fc32004-02-08 22:55:38 +00001147
wdenkbf9e3b32004-02-12 00:47:09 +00001148 switch (info->vendor) {
wdenk5653fc32004-02-08 22:55:38 +00001149 case CFI_CMDSET_INTEL_EXTENDED:
1150 case CFI_CMDSET_INTEL_STANDARD:
wdenkbf9e3b32004-02-12 00:47:09 +00001151 flash_write_cmd (info, 0, 0, FLASH_CMD_CLEAR_STATUS);
1152 flash_write_cmd (info, 0, 0, FLASH_CMD_WRITE);
wdenk5653fc32004-02-08 22:55:38 +00001153 break;
1154 case CFI_CMDSET_AMD_EXTENDED:
1155 case CFI_CMDSET_AMD_STANDARD:
wdenkbf9e3b32004-02-12 00:47:09 +00001156 flash_unlock_seq (info, 0);
wdenk855a4962004-03-14 18:23:55 +00001157 flash_write_cmd (info, 0, AMD_ADDR_START, AMD_CMD_WRITE);
wdenk5653fc32004-02-08 22:55:38 +00001158 break;
1159 }
1160
wdenkbf9e3b32004-02-12 00:47:09 +00001161 switch (info->portwidth) {
wdenk5653fc32004-02-08 22:55:38 +00001162 case FLASH_CFI_8BIT:
1163 cptr.cp[0] = cword.c;
1164 break;
1165 case FLASH_CFI_16BIT:
1166 cptr.wp[0] = cword.w;
1167 break;
1168 case FLASH_CFI_32BIT:
1169 cptr.lp[0] = cword.l;
1170 break;
1171 case FLASH_CFI_64BIT:
1172 cptr.llp[0] = cword.ll;
1173 break;
1174 }
1175
1176 /* re-enable interrupts if necessary */
wdenkbf9e3b32004-02-12 00:47:09 +00001177 if (flag)
1178 enable_interrupts ();
wdenk5653fc32004-02-08 22:55:38 +00001179
wdenkbf9e3b32004-02-12 00:47:09 +00001180 return flash_full_status_check (info, 0, info->write_tout, "write");
wdenk5653fc32004-02-08 22:55:38 +00001181}
1182
1183#ifdef CFG_FLASH_USE_BUFFER_WRITE
1184
1185/* loop through the sectors from the highest address
1186 * when the passed address is greater or equal to the sector address
1187 * we have a match
1188 */
wdenkbf9e3b32004-02-12 00:47:09 +00001189static flash_sect_t find_sector (flash_info_t * info, ulong addr)
wdenk5653fc32004-02-08 22:55:38 +00001190{
1191 flash_sect_t sector;
wdenkbf9e3b32004-02-12 00:47:09 +00001192
1193 for (sector = info->sector_count - 1; sector >= 0; sector--) {
1194 if (addr >= info->start[sector])
wdenk5653fc32004-02-08 22:55:38 +00001195 break;
1196 }
1197 return sector;
1198}
1199
wdenkbf9e3b32004-02-12 00:47:09 +00001200static int flash_write_cfibuffer (flash_info_t * info, ulong dest, uchar * cp,
1201 int len)
wdenk5653fc32004-02-08 22:55:38 +00001202{
1203 flash_sect_t sector;
1204 int cnt;
1205 int retcode;
1206 volatile cfiptr_t src;
1207 volatile cfiptr_t dst;
wdenk855a4962004-03-14 18:23:55 +00001208 /* buffered writes in the AMD chip set is not supported yet */
1209 if((info->vendor == CFI_CMDSET_AMD_STANDARD) ||
1210 (info->vendor == CFI_CMDSET_AMD_EXTENDED))
1211 return ERR_INVAL;
wdenk5653fc32004-02-08 22:55:38 +00001212
1213 src.cp = cp;
wdenkbf9e3b32004-02-12 00:47:09 +00001214 dst.cp = (uchar *) dest;
1215 sector = find_sector (info, dest);
1216 flash_write_cmd (info, sector, 0, FLASH_CMD_CLEAR_STATUS);
1217 flash_write_cmd (info, sector, 0, FLASH_CMD_WRITE_TO_BUFFER);
1218 if ((retcode =
1219 flash_status_check (info, sector, info->buffer_write_tout,
1220 "write to buffer")) == ERR_OK) {
1221 /* reduce the number of loops by the width of the port */
1222 switch (info->portwidth) {
wdenk5653fc32004-02-08 22:55:38 +00001223 case FLASH_CFI_8BIT:
1224 cnt = len;
1225 break;
1226 case FLASH_CFI_16BIT:
1227 cnt = len >> 1;
1228 break;
1229 case FLASH_CFI_32BIT:
1230 cnt = len >> 2;
1231 break;
1232 case FLASH_CFI_64BIT:
1233 cnt = len >> 3;
1234 break;
1235 default:
1236 return ERR_INVAL;
1237 break;
1238 }
wdenkbf9e3b32004-02-12 00:47:09 +00001239 flash_write_cmd (info, sector, 0, (uchar) cnt - 1);
1240 while (cnt-- > 0) {
1241 switch (info->portwidth) {
wdenk5653fc32004-02-08 22:55:38 +00001242 case FLASH_CFI_8BIT:
1243 *dst.cp++ = *src.cp++;
1244 break;
1245 case FLASH_CFI_16BIT:
1246 *dst.wp++ = *src.wp++;
1247 break;
1248 case FLASH_CFI_32BIT:
1249 *dst.lp++ = *src.lp++;
1250 break;
1251 case FLASH_CFI_64BIT:
1252 *dst.llp++ = *src.llp++;
1253 break;
1254 default:
1255 return ERR_INVAL;
1256 break;
1257 }
1258 }
wdenkbf9e3b32004-02-12 00:47:09 +00001259 flash_write_cmd (info, sector, 0,
1260 FLASH_CMD_WRITE_BUFFER_CONFIRM);
1261 retcode =
1262 flash_full_status_check (info, sector,
1263 info->buffer_write_tout,
1264 "buffer write");
wdenk5653fc32004-02-08 22:55:38 +00001265 }
wdenkbf9e3b32004-02-12 00:47:09 +00001266 flash_write_cmd (info, sector, 0, FLASH_CMD_CLEAR_STATUS);
wdenk5653fc32004-02-08 22:55:38 +00001267 return retcode;
1268}
wdenkcce625e2004-09-28 19:00:19 +00001269#endif /* CFG_FLASH_USE_BUFFER_WRITE */
wdenk5653fc32004-02-08 22:55:38 +00001270#endif /* CFG_FLASH_CFI */