]> git.ipfire.org Git - people/ms/u-boot.git/blob - drivers/cfi_flash.c
* Move dm9161.c and lxt972.c into cpu/arm920t/at91rm9200
[people/ms/u-boot.git] / drivers / cfi_flash.c
1 /*
2 * (C) Copyright 2002-2004
3 * 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 *
9 * Copyright (C) 2004
10 * Ed Okerson
11 * Modified to work with little-endian systems.
12 *
13 * 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.
33 * 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
36 *
37 * Tested Architectures
38 * Port Width Chip Width # of banks Flash Chip Board
39 * 32 16 1 28F128J3 seranoa/eagle
40 * 64 16 1 28F128J3 seranoa/falcon
41 *
42 */
43
44 /* The DEBUG define must be before common to enable debugging */
45 /* #define DEBUG */
46
47 #include <common.h>
48 #include <asm/processor.h>
49 #include <asm/byteorder.h>
50 #include <environment.h>
51 #ifdef CFG_FLASH_CFI_DRIVER
52
53 /*
54 * This file implements a Common Flash Interface (CFI) driver for U-Boot.
55 * The width of the port and the width of the chips are determined at initialization.
56 * These widths are used to calculate the address for access CFI data structures.
57 * It has been tested on an Intel Strataflash implementation and AMD 29F016D.
58 *
59 * References
60 * JEDEC Standard JESD68 - Common Flash Interface (CFI)
61 * JEDEC Standard JEP137-A Common Flash Interface (CFI) ID Codes
62 * Intel Application Note 646 Common Flash Interface (CFI) and Command Sets
63 * Intel 290667-008 3 Volt Intel StrataFlash Memory datasheet
64 *
65 * TODO
66 *
67 * Use Primary Extended Query table (PRI) and Alternate Algorithm Query
68 * Table (ALT) to determine if protection is available
69 *
70 * Add support for other command sets Use the PRI and ALT to determine command set
71 * Verify erase and program timeouts.
72 */
73
74 #ifndef CFG_FLASH_BANKS_LIST
75 #define CFG_FLASH_BANKS_LIST { CFG_FLASH_BASE }
76 #endif
77
78 #define FLASH_CMD_CFI 0x98
79 #define FLASH_CMD_READ_ID 0x90
80 #define FLASH_CMD_RESET 0xff
81 #define FLASH_CMD_BLOCK_ERASE 0x20
82 #define FLASH_CMD_ERASE_CONFIRM 0xD0
83 #define FLASH_CMD_WRITE 0x40
84 #define FLASH_CMD_PROTECT 0x60
85 #define FLASH_CMD_PROTECT_SET 0x01
86 #define FLASH_CMD_PROTECT_CLEAR 0xD0
87 #define FLASH_CMD_CLEAR_STATUS 0x50
88 #define FLASH_CMD_WRITE_TO_BUFFER 0xE8
89 #define FLASH_CMD_WRITE_BUFFER_CONFIRM 0xD0
90
91 #define FLASH_STATUS_DONE 0x80
92 #define FLASH_STATUS_ESS 0x40
93 #define FLASH_STATUS_ECLBS 0x20
94 #define FLASH_STATUS_PSLBS 0x10
95 #define FLASH_STATUS_VPENS 0x08
96 #define FLASH_STATUS_PSS 0x04
97 #define FLASH_STATUS_DPS 0x02
98 #define FLASH_STATUS_R 0x01
99 #define FLASH_STATUS_PROTECT 0x01
100
101 #define AMD_CMD_RESET 0xF0
102 #define AMD_CMD_WRITE 0xA0
103 #define AMD_CMD_ERASE_START 0x80
104 #define AMD_CMD_ERASE_SECTOR 0x30
105 #define AMD_CMD_UNLOCK_START 0xAA
106 #define AMD_CMD_UNLOCK_ACK 0x55
107
108 #define AMD_STATUS_TOGGLE 0x40
109 #define AMD_STATUS_ERROR 0x20
110 #define AMD_ADDR_ERASE_START 0x555
111 #define AMD_ADDR_START 0x555
112 #define AMD_ADDR_ACK 0x2AA
113
114 #define FLASH_OFFSET_CFI 0x55
115 #define FLASH_OFFSET_CFI_RESP 0x10
116 #define FLASH_OFFSET_PRIMARY_VENDOR 0x13
117 #define FLASH_OFFSET_WTOUT 0x1F
118 #define FLASH_OFFSET_WBTOUT 0x20
119 #define FLASH_OFFSET_ETOUT 0x21
120 #define FLASH_OFFSET_CETOUT 0x22
121 #define FLASH_OFFSET_WMAX_TOUT 0x23
122 #define FLASH_OFFSET_WBMAX_TOUT 0x24
123 #define FLASH_OFFSET_EMAX_TOUT 0x25
124 #define FLASH_OFFSET_CEMAX_TOUT 0x26
125 #define FLASH_OFFSET_SIZE 0x27
126 #define FLASH_OFFSET_INTERFACE 0x28
127 #define FLASH_OFFSET_BUFFER_SIZE 0x2A
128 #define FLASH_OFFSET_NUM_ERASE_REGIONS 0x2C
129 #define FLASH_OFFSET_ERASE_REGIONS 0x2D
130 #define FLASH_OFFSET_PROTECT 0x02
131 #define FLASH_OFFSET_USER_PROTECTION 0x85
132 #define FLASH_OFFSET_INTEL_PROTECTION 0x81
133
134
135 #define FLASH_MAN_CFI 0x01000000
136
137 #define CFI_CMDSET_NONE 0
138 #define CFI_CMDSET_INTEL_EXTENDED 1
139 #define CFI_CMDSET_AMD_STANDARD 2
140 #define CFI_CMDSET_INTEL_STANDARD 3
141 #define CFI_CMDSET_AMD_EXTENDED 4
142 #define CFI_CMDSET_MITSU_STANDARD 256
143 #define CFI_CMDSET_MITSU_EXTENDED 257
144 #define CFI_CMDSET_SST 258
145
146
147 #ifdef CFG_FLASH_CFI_AMD_RESET /* needed for STM_ID_29W320DB on UC100 */
148 # undef FLASH_CMD_RESET
149 # define FLASH_CMD_RESET AMD_CMD_RESET /* use AMD-Reset instead */
150 #endif
151
152
153 typedef union {
154 unsigned char c;
155 unsigned short w;
156 unsigned long l;
157 unsigned long long ll;
158 } cfiword_t;
159
160 typedef union {
161 volatile unsigned char *cp;
162 volatile unsigned short *wp;
163 volatile unsigned long *lp;
164 volatile unsigned long long *llp;
165 } cfiptr_t;
166
167 #define NUM_ERASE_REGIONS 4
168
169 static ulong bank_base[CFG_MAX_FLASH_BANKS] = CFG_FLASH_BANKS_LIST;
170
171 flash_info_t flash_info[CFG_MAX_FLASH_BANKS]; /* info for FLASH chips */
172
173 /*-----------------------------------------------------------------------
174 * Functions
175 */
176
177 typedef unsigned long flash_sect_t;
178
179 static void flash_add_byte (flash_info_t * info, cfiword_t * cword, uchar c);
180 static void flash_make_cmd (flash_info_t * info, uchar cmd, void *cmdbuf);
181 static void flash_write_cmd (flash_info_t * info, flash_sect_t sect, uint offset, uchar cmd);
182 static void flash_unlock_seq (flash_info_t * info, flash_sect_t sect);
183 static int flash_isequal (flash_info_t * info, flash_sect_t sect, uint offset, uchar cmd);
184 static int flash_isset (flash_info_t * info, flash_sect_t sect, uint offset, uchar cmd);
185 static int flash_toggle (flash_info_t * info, flash_sect_t sect, uint offset, uchar cmd);
186 static int flash_detect_cfi (flash_info_t * info);
187 static ulong flash_get_size (ulong base, int banknum);
188 static int flash_write_cfiword (flash_info_t * info, ulong dest, cfiword_t cword);
189 static int flash_full_status_check (flash_info_t * info, flash_sect_t sector,
190 ulong tout, char *prompt);
191 #if defined(CFG_ENV_IS_IN_FLASH) || defined(CFG_ENV_ADDR_REDUND) || (CFG_MONITOR_BASE >= CFG_FLASH_BASE)
192 static flash_info_t *flash_get_info(ulong base);
193 #endif
194 #ifdef CFG_FLASH_USE_BUFFER_WRITE
195 static int flash_write_cfibuffer (flash_info_t * info, ulong dest, uchar * cp, int len);
196 #endif
197
198 /*-----------------------------------------------------------------------
199 * create an address based on the offset and the port width
200 */
201 inline uchar *flash_make_addr (flash_info_t * info, flash_sect_t sect, uint offset)
202 {
203 return ((uchar *) (info->start[sect] + (offset * info->portwidth)));
204 }
205
206 #ifdef DEBUG
207 /*-----------------------------------------------------------------------
208 * Debug support
209 */
210 void print_longlong (char *str, unsigned long long data)
211 {
212 int i;
213 char *cp;
214
215 cp = (unsigned char *) &data;
216 for (i = 0; i < 8; i++)
217 sprintf (&str[i * 2], "%2.2x", *cp++);
218 }
219 static void flash_printqry (flash_info_t * info, flash_sect_t sect)
220 {
221 cfiptr_t cptr;
222 int x, y;
223
224 for (x = 0; x < 0x40; x += 16 / info->portwidth) {
225 cptr.cp =
226 flash_make_addr (info, sect,
227 x + FLASH_OFFSET_CFI_RESP);
228 debug ("%p : ", cptr.cp);
229 for (y = 0; y < 16; y++) {
230 debug ("%2.2x ", cptr.cp[y]);
231 }
232 debug (" ");
233 for (y = 0; y < 16; y++) {
234 if (cptr.cp[y] >= 0x20 && cptr.cp[y] <= 0x7e) {
235 debug ("%c", cptr.cp[y]);
236 } else {
237 debug (".");
238 }
239 }
240 debug ("\n");
241 }
242 }
243 #endif
244
245
246 /*-----------------------------------------------------------------------
247 * read a character at a port width address
248 */
249 inline uchar flash_read_uchar (flash_info_t * info, uint offset)
250 {
251 uchar *cp;
252
253 cp = flash_make_addr (info, 0, offset);
254 #if defined(__LITTLE_ENDIAN)
255 return (cp[0]);
256 #else
257 return (cp[info->portwidth - 1]);
258 #endif
259 }
260
261 /*-----------------------------------------------------------------------
262 * read a short word by swapping for ppc format.
263 */
264 ushort flash_read_ushort (flash_info_t * info, flash_sect_t sect, uint offset)
265 {
266 uchar *addr;
267 ushort retval;
268
269 #ifdef DEBUG
270 int x;
271 #endif
272 addr = flash_make_addr (info, sect, offset);
273
274 #ifdef DEBUG
275 debug ("ushort addr is at %p info->portwidth = %d\n", addr,
276 info->portwidth);
277 for (x = 0; x < 2 * info->portwidth; x++) {
278 debug ("addr[%x] = 0x%x\n", x, addr[x]);
279 }
280 #endif
281 #if defined(__LITTLE_ENDIAN)
282 retval = ((addr[(info->portwidth)] << 8) | addr[0]);
283 #else
284 retval = ((addr[(2 * info->portwidth) - 1] << 8) |
285 addr[info->portwidth - 1]);
286 #endif
287
288 debug ("retval = 0x%x\n", retval);
289 return retval;
290 }
291
292 /*-----------------------------------------------------------------------
293 * read a long word by picking the least significant byte of each maiximum
294 * port size word. Swap for ppc format.
295 */
296 ulong flash_read_long (flash_info_t * info, flash_sect_t sect, uint offset)
297 {
298 uchar *addr;
299 ulong retval;
300
301 #ifdef DEBUG
302 int x;
303 #endif
304 addr = flash_make_addr (info, sect, offset);
305
306 #ifdef DEBUG
307 debug ("long addr is at %p info->portwidth = %d\n", addr,
308 info->portwidth);
309 for (x = 0; x < 4 * info->portwidth; x++) {
310 debug ("addr[%x] = 0x%x\n", x, addr[x]);
311 }
312 #endif
313 #if defined(__LITTLE_ENDIAN)
314 retval = (addr[0] << 16) | (addr[(info->portwidth)] << 24) |
315 (addr[(2 * info->portwidth)]) | (addr[(3 * info->portwidth)] << 8);
316 #else
317 retval = (addr[(2 * info->portwidth) - 1] << 24) |
318 (addr[(info->portwidth) - 1] << 16) |
319 (addr[(4 * info->portwidth) - 1] << 8) |
320 addr[(3 * info->portwidth) - 1];
321 #endif
322 return retval;
323 }
324
325 /*-----------------------------------------------------------------------
326 */
327 unsigned long flash_init (void)
328 {
329 unsigned long size = 0;
330 int i;
331
332 /* Init: no FLASHes known */
333 for (i = 0; i < CFG_MAX_FLASH_BANKS; ++i) {
334 flash_info[i].flash_id = FLASH_UNKNOWN;
335 size += flash_info[i].size = flash_get_size (bank_base[i], i);
336 if (flash_info[i].flash_id == FLASH_UNKNOWN) {
337 printf ("## Unknown FLASH on Bank %d - Size = 0x%08lx = %ld MB\n",
338 i, flash_info[i].size, flash_info[i].size << 20);
339 }
340 }
341
342 /* Monitor protection ON by default */
343 #if (CFG_MONITOR_BASE >= CFG_FLASH_BASE)
344 flash_protect (FLAG_PROTECT_SET,
345 CFG_MONITOR_BASE,
346 CFG_MONITOR_BASE + monitor_flash_len - 1,
347 flash_get_info(CFG_MONITOR_BASE));
348 #endif
349
350 /* Environment protection ON by default */
351 #ifdef CFG_ENV_IS_IN_FLASH
352 flash_protect (FLAG_PROTECT_SET,
353 CFG_ENV_ADDR,
354 CFG_ENV_ADDR + CFG_ENV_SECT_SIZE - 1,
355 flash_get_info(CFG_ENV_ADDR));
356 #endif
357
358 /* Redundant environment protection ON by default */
359 #ifdef CFG_ENV_ADDR_REDUND
360 flash_protect (FLAG_PROTECT_SET,
361 CFG_ENV_ADDR_REDUND,
362 CFG_ENV_ADDR_REDUND + CFG_ENV_SIZE_REDUND - 1,
363 flash_get_info(CFG_ENV_ADDR_REDUND));
364 #endif
365 return (size);
366 }
367
368 /*-----------------------------------------------------------------------
369 */
370 #if defined(CFG_ENV_IS_IN_FLASH) || defined(CFG_ENV_ADDR_REDUND) || (CFG_MONITOR_BASE >= CFG_FLASH_BASE)
371 static flash_info_t *flash_get_info(ulong base)
372 {
373 int i;
374 flash_info_t * info;
375
376 for (i = 0; i < CFG_MAX_FLASH_BANKS; i ++) {
377 info = & flash_info[i];
378 if (info->size && info->start[0] <= base &&
379 base <= info->start[0] + info->size - 1)
380 break;
381 }
382
383 return i == CFG_MAX_FLASH_BANKS ? 0 : info;
384 }
385 #endif
386
387 /*-----------------------------------------------------------------------
388 */
389 int flash_erase (flash_info_t * info, int s_first, int s_last)
390 {
391 int rcode = 0;
392 int prot;
393 flash_sect_t sect;
394
395 if (info->flash_id != FLASH_MAN_CFI) {
396 puts ("Can't erase unknown flash type - aborted\n");
397 return 1;
398 }
399 if ((s_first < 0) || (s_first > s_last)) {
400 puts ("- no sectors to erase\n");
401 return 1;
402 }
403
404 prot = 0;
405 for (sect = s_first; sect <= s_last; ++sect) {
406 if (info->protect[sect]) {
407 prot++;
408 }
409 }
410 if (prot) {
411 printf ("- Warning: %d protected sectors will not be erased!\n", prot);
412 } else {
413 putc ('\n');
414 }
415
416
417 for (sect = s_first; sect <= s_last; sect++) {
418 if (info->protect[sect] == 0) { /* not protected */
419 switch (info->vendor) {
420 case CFI_CMDSET_INTEL_STANDARD:
421 case CFI_CMDSET_INTEL_EXTENDED:
422 flash_write_cmd (info, sect, 0, FLASH_CMD_CLEAR_STATUS);
423 flash_write_cmd (info, sect, 0, FLASH_CMD_BLOCK_ERASE);
424 flash_write_cmd (info, sect, 0, FLASH_CMD_ERASE_CONFIRM);
425 break;
426 case CFI_CMDSET_AMD_STANDARD:
427 case CFI_CMDSET_AMD_EXTENDED:
428 flash_unlock_seq (info, sect);
429 flash_write_cmd (info, sect, AMD_ADDR_ERASE_START,
430 AMD_CMD_ERASE_START);
431 flash_unlock_seq (info, sect);
432 flash_write_cmd (info, sect, 0, AMD_CMD_ERASE_SECTOR);
433 break;
434 default:
435 debug ("Unkown flash vendor %d\n",
436 info->vendor);
437 break;
438 }
439
440 if (flash_full_status_check
441 (info, sect, info->erase_blk_tout, "erase")) {
442 rcode = 1;
443 } else
444 putc ('.');
445 }
446 }
447 puts (" done\n");
448 return rcode;
449 }
450
451 /*-----------------------------------------------------------------------
452 */
453 void flash_print_info (flash_info_t * info)
454 {
455 int i;
456
457 if (info->flash_id != FLASH_MAN_CFI) {
458 puts ("missing or unknown FLASH type\n");
459 return;
460 }
461
462 printf ("CFI conformant FLASH (%d x %d)",
463 (info->portwidth << 3), (info->chipwidth << 3));
464 printf (" Size: %ld MB in %d Sectors\n",
465 info->size >> 20, info->sector_count);
466 printf (" Erase timeout %ld ms, write timeout %ld ms, buffer write timeout %ld ms, buffer size %d\n",
467 info->erase_blk_tout,
468 info->write_tout,
469 info->buffer_write_tout,
470 info->buffer_size);
471
472 puts (" Sector Start Addresses:");
473 for (i = 0; i < info->sector_count; ++i) {
474 #ifdef CFG_FLASH_EMPTY_INFO
475 int k;
476 int size;
477 int erased;
478 volatile unsigned long *flash;
479
480 /*
481 * Check if whole sector is erased
482 */
483 if (i != (info->sector_count - 1))
484 size = info->start[i + 1] - info->start[i];
485 else
486 size = info->start[0] + info->size - info->start[i];
487 erased = 1;
488 flash = (volatile unsigned long *) info->start[i];
489 size = size >> 2; /* divide by 4 for longword access */
490 for (k = 0; k < size; k++) {
491 if (*flash++ != 0xffffffff) {
492 erased = 0;
493 break;
494 }
495 }
496
497 if ((i % 5) == 0)
498 printf ("\n");
499 /* print empty and read-only info */
500 printf (" %08lX%s%s",
501 info->start[i],
502 erased ? " E" : " ",
503 info->protect[i] ? "RO " : " ");
504 #else /* ! CFG_FLASH_EMPTY_INFO */
505 if ((i % 5) == 0)
506 printf ("\n ");
507 printf (" %08lX%s",
508 info->start[i], info->protect[i] ? " (RO)" : " ");
509 #endif
510 }
511 putc ('\n');
512 return;
513 }
514
515 /*-----------------------------------------------------------------------
516 * Copy memory to flash, returns:
517 * 0 - OK
518 * 1 - write timeout
519 * 2 - Flash not erased
520 */
521 int write_buff (flash_info_t * info, uchar * src, ulong addr, ulong cnt)
522 {
523 ulong wp;
524 ulong cp;
525 int aln;
526 cfiword_t cword;
527 int i, rc;
528
529 #ifdef CFG_FLASH_USE_BUFFER_WRITE
530 int buffered_size;
531 #endif
532 /* get lower aligned address */
533 /* get lower aligned address */
534 wp = (addr & ~(info->portwidth - 1));
535
536 /* handle unaligned start */
537 if ((aln = addr - wp) != 0) {
538 cword.l = 0;
539 cp = wp;
540 for (i = 0; i < aln; ++i, ++cp)
541 flash_add_byte (info, &cword, (*(uchar *) cp));
542
543 for (; (i < info->portwidth) && (cnt > 0); i++) {
544 flash_add_byte (info, &cword, *src++);
545 cnt--;
546 cp++;
547 }
548 for (; (cnt == 0) && (i < info->portwidth); ++i, ++cp)
549 flash_add_byte (info, &cword, (*(uchar *) cp));
550 if ((rc = flash_write_cfiword (info, wp, cword)) != 0)
551 return rc;
552 wp = cp;
553 }
554
555 /* handle the aligned part */
556 #ifdef CFG_FLASH_USE_BUFFER_WRITE
557 buffered_size = (info->portwidth / info->chipwidth);
558 buffered_size *= info->buffer_size;
559 while (cnt >= info->portwidth) {
560 i = buffered_size > cnt ? cnt : buffered_size;
561 if ((rc = flash_write_cfibuffer (info, wp, src, i)) != ERR_OK)
562 return rc;
563 i -= i & (info->portwidth - 1);
564 wp += i;
565 src += i;
566 cnt -= i;
567 }
568 #else
569 while (cnt >= info->portwidth) {
570 cword.l = 0;
571 for (i = 0; i < info->portwidth; i++) {
572 flash_add_byte (info, &cword, *src++);
573 }
574 if ((rc = flash_write_cfiword (info, wp, cword)) != 0)
575 return rc;
576 wp += info->portwidth;
577 cnt -= info->portwidth;
578 }
579 #endif /* CFG_FLASH_USE_BUFFER_WRITE */
580 if (cnt == 0) {
581 return (0);
582 }
583
584 /*
585 * handle unaligned tail bytes
586 */
587 cword.l = 0;
588 for (i = 0, cp = wp; (i < info->portwidth) && (cnt > 0); ++i, ++cp) {
589 flash_add_byte (info, &cword, *src++);
590 --cnt;
591 }
592 for (; i < info->portwidth; ++i, ++cp) {
593 flash_add_byte (info, &cword, (*(uchar *) cp));
594 }
595
596 return flash_write_cfiword (info, wp, cword);
597 }
598
599 /*-----------------------------------------------------------------------
600 */
601 #ifdef CFG_FLASH_PROTECTION
602
603 int flash_real_protect (flash_info_t * info, long sector, int prot)
604 {
605 int retcode = 0;
606
607 flash_write_cmd (info, sector, 0, FLASH_CMD_CLEAR_STATUS);
608 flash_write_cmd (info, sector, 0, FLASH_CMD_PROTECT);
609 if (prot)
610 flash_write_cmd (info, sector, 0, FLASH_CMD_PROTECT_SET);
611 else
612 flash_write_cmd (info, sector, 0, FLASH_CMD_PROTECT_CLEAR);
613
614 if ((retcode =
615 flash_full_status_check (info, sector, info->erase_blk_tout,
616 prot ? "protect" : "unprotect")) == 0) {
617
618 info->protect[sector] = prot;
619 /* Intel's unprotect unprotects all locking */
620 if (prot == 0) {
621 flash_sect_t i;
622
623 for (i = 0; i < info->sector_count; i++) {
624 if (info->protect[i])
625 flash_real_protect (info, i, 1);
626 }
627 }
628 }
629 return retcode;
630 }
631
632 /*-----------------------------------------------------------------------
633 * flash_read_user_serial - read the OneTimeProgramming cells
634 */
635 void flash_read_user_serial (flash_info_t * info, void *buffer, int offset,
636 int len)
637 {
638 uchar *src;
639 uchar *dst;
640
641 dst = buffer;
642 src = flash_make_addr (info, 0, FLASH_OFFSET_USER_PROTECTION);
643 flash_write_cmd (info, 0, 0, FLASH_CMD_READ_ID);
644 memcpy (dst, src + offset, len);
645 flash_write_cmd (info, 0, 0, info->cmd_reset);
646 }
647
648 /*
649 * flash_read_factory_serial - read the device Id from the protection area
650 */
651 void flash_read_factory_serial (flash_info_t * info, void *buffer, int offset,
652 int len)
653 {
654 uchar *src;
655
656 src = flash_make_addr (info, 0, FLASH_OFFSET_INTEL_PROTECTION);
657 flash_write_cmd (info, 0, 0, FLASH_CMD_READ_ID);
658 memcpy (buffer, src + offset, len);
659 flash_write_cmd (info, 0, 0, info->cmd_reset);
660 }
661
662 #endif /* CFG_FLASH_PROTECTION */
663
664 /*
665 * flash_is_busy - check to see if the flash is busy
666 * This routine checks the status of the chip and returns true if the chip is busy
667 */
668 static int flash_is_busy (flash_info_t * info, flash_sect_t sect)
669 {
670 int retval;
671
672 switch (info->vendor) {
673 case CFI_CMDSET_INTEL_STANDARD:
674 case CFI_CMDSET_INTEL_EXTENDED:
675 retval = !flash_isset (info, sect, 0, FLASH_STATUS_DONE);
676 break;
677 case CFI_CMDSET_AMD_STANDARD:
678 case CFI_CMDSET_AMD_EXTENDED:
679 retval = flash_toggle (info, sect, 0, AMD_STATUS_TOGGLE);
680 break;
681 default:
682 retval = 0;
683 }
684 debug ("flash_is_busy: %d\n", retval);
685 return retval;
686 }
687
688 /*-----------------------------------------------------------------------
689 * wait for XSR.7 to be set. Time out with an error if it does not.
690 * This routine does not set the flash to read-array mode.
691 */
692 static int flash_status_check (flash_info_t * info, flash_sect_t sector,
693 ulong tout, char *prompt)
694 {
695 ulong start;
696
697 /* Wait for command completion */
698 start = get_timer (0);
699 while (flash_is_busy (info, sector)) {
700 if (get_timer (start) > info->erase_blk_tout * CFG_HZ) {
701 printf ("Flash %s timeout at address %lx data %lx\n",
702 prompt, info->start[sector],
703 flash_read_long (info, sector, 0));
704 flash_write_cmd (info, sector, 0, info->cmd_reset);
705 return ERR_TIMOUT;
706 }
707 }
708 return ERR_OK;
709 }
710
711 /*-----------------------------------------------------------------------
712 * Wait for XSR.7 to be set, if it times out print an error, otherwise do a full status check.
713 * This routine sets the flash to read-array mode.
714 */
715 static int flash_full_status_check (flash_info_t * info, flash_sect_t sector,
716 ulong tout, char *prompt)
717 {
718 int retcode;
719
720 retcode = flash_status_check (info, sector, tout, prompt);
721 switch (info->vendor) {
722 case CFI_CMDSET_INTEL_EXTENDED:
723 case CFI_CMDSET_INTEL_STANDARD:
724 if ((retcode != ERR_OK)
725 && !flash_isequal (info, sector, 0, FLASH_STATUS_DONE)) {
726 retcode = ERR_INVAL;
727 printf ("Flash %s error at address %lx\n", prompt,
728 info->start[sector]);
729 if (flash_isset (info, sector, 0, FLASH_STATUS_ECLBS | FLASH_STATUS_PSLBS)) {
730 puts ("Command Sequence Error.\n");
731 } else if (flash_isset (info, sector, 0, FLASH_STATUS_ECLBS)) {
732 puts ("Block Erase Error.\n");
733 retcode = ERR_NOT_ERASED;
734 } else if (flash_isset (info, sector, 0, FLASH_STATUS_PSLBS)) {
735 puts ("Locking Error\n");
736 }
737 if (flash_isset (info, sector, 0, FLASH_STATUS_DPS)) {
738 puts ("Block locked.\n");
739 retcode = ERR_PROTECTED;
740 }
741 if (flash_isset (info, sector, 0, FLASH_STATUS_VPENS))
742 puts ("Vpp Low Error.\n");
743 }
744 flash_write_cmd (info, sector, 0, info->cmd_reset);
745 break;
746 default:
747 break;
748 }
749 return retcode;
750 }
751
752 /*-----------------------------------------------------------------------
753 */
754 static void flash_add_byte (flash_info_t * info, cfiword_t * cword, uchar c)
755 {
756 #if defined(__LITTLE_ENDIAN)
757 unsigned short w;
758 unsigned int l;
759 unsigned long long ll;
760 #endif
761
762 switch (info->portwidth) {
763 case FLASH_CFI_8BIT:
764 cword->c = c;
765 break;
766 case FLASH_CFI_16BIT:
767 #if defined(__LITTLE_ENDIAN)
768 w = c;
769 w <<= 8;
770 cword->w = (cword->w >> 8) | w;
771 #else
772 cword->w = (cword->w << 8) | c;
773 #endif
774 break;
775 case FLASH_CFI_32BIT:
776 #if defined(__LITTLE_ENDIAN)
777 l = c;
778 l <<= 24;
779 cword->l = (cword->l >> 8) | l;
780 #else
781 cword->l = (cword->l << 8) | c;
782 #endif
783 break;
784 case FLASH_CFI_64BIT:
785 #if defined(__LITTLE_ENDIAN)
786 ll = c;
787 ll <<= 56;
788 cword->ll = (cword->ll >> 8) | ll;
789 #else
790 cword->ll = (cword->ll << 8) | c;
791 #endif
792 break;
793 }
794 }
795
796
797 /*-----------------------------------------------------------------------
798 * make a proper sized command based on the port and chip widths
799 */
800 static void flash_make_cmd (flash_info_t * info, uchar cmd, void *cmdbuf)
801 {
802 int i;
803 uchar *cp = (uchar *) cmdbuf;
804
805 #if defined(__LITTLE_ENDIAN)
806 for (i = info->portwidth; i > 0; i--)
807 #else
808 for (i = 1; i <= info->portwidth; i++)
809 #endif
810 *cp++ = (i % info->chipwidth) ? '\0' : cmd;
811 }
812
813 /*
814 * Write a proper sized command to the correct address
815 */
816 static void flash_write_cmd (flash_info_t * info, flash_sect_t sect, uint offset, uchar cmd)
817 {
818
819 volatile cfiptr_t addr;
820 cfiword_t cword;
821
822 addr.cp = flash_make_addr (info, sect, offset);
823 flash_make_cmd (info, cmd, &cword);
824 switch (info->portwidth) {
825 case FLASH_CFI_8BIT:
826 debug ("fwc addr %p cmd %x %x 8bit x %d bit\n", addr.cp, cmd,
827 cword.c, info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
828 *addr.cp = cword.c;
829 break;
830 case FLASH_CFI_16BIT:
831 debug ("fwc addr %p cmd %x %4.4x 16bit x %d bit\n", addr.wp,
832 cmd, cword.w,
833 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
834 *addr.wp = cword.w;
835 break;
836 case FLASH_CFI_32BIT:
837 debug ("fwc addr %p cmd %x %8.8lx 32bit x %d bit\n", addr.lp,
838 cmd, cword.l,
839 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
840 *addr.lp = cword.l;
841 break;
842 case FLASH_CFI_64BIT:
843 #ifdef DEBUG
844 {
845 char str[20];
846
847 print_longlong (str, cword.ll);
848
849 debug ("fwrite addr %p cmd %x %s 64 bit x %d bit\n",
850 addr.llp, cmd, str,
851 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
852 }
853 #endif
854 *addr.llp = cword.ll;
855 break;
856 }
857 }
858
859 static void flash_unlock_seq (flash_info_t * info, flash_sect_t sect)
860 {
861 flash_write_cmd (info, sect, AMD_ADDR_START, AMD_CMD_UNLOCK_START);
862 flash_write_cmd (info, sect, AMD_ADDR_ACK, AMD_CMD_UNLOCK_ACK);
863 }
864
865 /*-----------------------------------------------------------------------
866 */
867 static int flash_isequal (flash_info_t * info, flash_sect_t sect, uint offset, uchar cmd)
868 {
869 cfiptr_t cptr;
870 cfiword_t cword;
871 int retval;
872
873 cptr.cp = flash_make_addr (info, sect, offset);
874 flash_make_cmd (info, cmd, &cword);
875
876 debug ("is= cmd %x(%c) addr %p ", cmd, cmd, cptr.cp);
877 switch (info->portwidth) {
878 case FLASH_CFI_8BIT:
879 debug ("is= %x %x\n", cptr.cp[0], cword.c);
880 retval = (cptr.cp[0] == cword.c);
881 break;
882 case FLASH_CFI_16BIT:
883 debug ("is= %4.4x %4.4x\n", cptr.wp[0], cword.w);
884 retval = (cptr.wp[0] == cword.w);
885 break;
886 case FLASH_CFI_32BIT:
887 debug ("is= %8.8lx %8.8lx\n", cptr.lp[0], cword.l);
888 retval = (cptr.lp[0] == cword.l);
889 break;
890 case FLASH_CFI_64BIT:
891 #ifdef DEBUG
892 {
893 char str1[20];
894 char str2[20];
895
896 print_longlong (str1, cptr.llp[0]);
897 print_longlong (str2, cword.ll);
898 debug ("is= %s %s\n", str1, str2);
899 }
900 #endif
901 retval = (cptr.llp[0] == cword.ll);
902 break;
903 default:
904 retval = 0;
905 break;
906 }
907 return retval;
908 }
909
910 /*-----------------------------------------------------------------------
911 */
912 static int flash_isset (flash_info_t * info, flash_sect_t sect, uint offset, uchar cmd)
913 {
914 cfiptr_t cptr;
915 cfiword_t cword;
916 int retval;
917
918 cptr.cp = flash_make_addr (info, sect, offset);
919 flash_make_cmd (info, cmd, &cword);
920 switch (info->portwidth) {
921 case FLASH_CFI_8BIT:
922 retval = ((cptr.cp[0] & cword.c) == cword.c);
923 break;
924 case FLASH_CFI_16BIT:
925 retval = ((cptr.wp[0] & cword.w) == cword.w);
926 break;
927 case FLASH_CFI_32BIT:
928 retval = ((cptr.lp[0] & cword.l) == cword.l);
929 break;
930 case FLASH_CFI_64BIT:
931 retval = ((cptr.llp[0] & cword.ll) == cword.ll);
932 break;
933 default:
934 retval = 0;
935 break;
936 }
937 return retval;
938 }
939
940 /*-----------------------------------------------------------------------
941 */
942 static int flash_toggle (flash_info_t * info, flash_sect_t sect, uint offset, uchar cmd)
943 {
944 cfiptr_t cptr;
945 cfiword_t cword;
946 int retval;
947
948 cptr.cp = flash_make_addr (info, sect, offset);
949 flash_make_cmd (info, cmd, &cword);
950 switch (info->portwidth) {
951 case FLASH_CFI_8BIT:
952 retval = ((cptr.cp[0] & cword.c) != (cptr.cp[0] & cword.c));
953 break;
954 case FLASH_CFI_16BIT:
955 retval = ((cptr.wp[0] & cword.w) != (cptr.wp[0] & cword.w));
956 break;
957 case FLASH_CFI_32BIT:
958 retval = ((cptr.lp[0] & cword.l) != (cptr.lp[0] & cword.l));
959 break;
960 case FLASH_CFI_64BIT:
961 retval = ((cptr.llp[0] & cword.ll) !=
962 (cptr.llp[0] & cword.ll));
963 break;
964 default:
965 retval = 0;
966 break;
967 }
968 return retval;
969 }
970
971 /*-----------------------------------------------------------------------
972 * detect if flash is compatible with the Common Flash Interface (CFI)
973 * http://www.jedec.org/download/search/jesd68.pdf
974 *
975 */
976 static int flash_detect_cfi (flash_info_t * info)
977 {
978 debug ("flash detect cfi\n");
979
980 for (info->portwidth = FLASH_CFI_8BIT;
981 info->portwidth <= FLASH_CFI_64BIT; info->portwidth <<= 1) {
982 for (info->chipwidth = FLASH_CFI_BY8;
983 info->chipwidth <= info->portwidth;
984 info->chipwidth <<= 1) {
985 flash_write_cmd (info, 0, 0, info->cmd_reset);
986 flash_write_cmd (info, 0, FLASH_OFFSET_CFI, FLASH_CMD_CFI);
987 if (flash_isequal (info, 0, FLASH_OFFSET_CFI_RESP, 'Q')
988 && flash_isequal (info, 0, FLASH_OFFSET_CFI_RESP + 1, 'R')
989 && flash_isequal (info, 0, FLASH_OFFSET_CFI_RESP + 2, 'Y')) {
990 info->interface = flash_read_ushort (info, 0, FLASH_OFFSET_INTERFACE);
991 debug ("device interface is %d\n",
992 info->interface);
993 debug ("found port %d chip %d ",
994 info->portwidth, info->chipwidth);
995 debug ("port %d bits chip %d bits\n",
996 info->portwidth << CFI_FLASH_SHIFT_WIDTH,
997 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
998 return 1;
999 }
1000 }
1001 }
1002 debug ("not found\n");
1003 return 0;
1004 }
1005
1006 /*
1007 * The following code cannot be run from FLASH!
1008 *
1009 */
1010 static ulong flash_get_size (ulong base, int banknum)
1011 {
1012 flash_info_t *info = &flash_info[banknum];
1013 int i, j;
1014 flash_sect_t sect_cnt;
1015 unsigned long sector;
1016 unsigned long tmp;
1017 int size_ratio;
1018 uchar num_erase_regions;
1019 int erase_region_size;
1020 int erase_region_count;
1021
1022 info->start[0] = base;
1023
1024 if (flash_detect_cfi (info)) {
1025 info->vendor = flash_read_ushort (info, 0, FLASH_OFFSET_PRIMARY_VENDOR);
1026 #ifdef DEBUG
1027 flash_printqry (info, 0);
1028 #endif
1029 switch (info->vendor) {
1030 case CFI_CMDSET_INTEL_STANDARD:
1031 case CFI_CMDSET_INTEL_EXTENDED:
1032 default:
1033 info->cmd_reset = FLASH_CMD_RESET;
1034 break;
1035 case CFI_CMDSET_AMD_STANDARD:
1036 case CFI_CMDSET_AMD_EXTENDED:
1037 info->cmd_reset = AMD_CMD_RESET;
1038 break;
1039 }
1040
1041 debug ("manufacturer is %d\n", info->vendor);
1042 size_ratio = info->portwidth / info->chipwidth;
1043 /* if the chip is x8/x16 reduce the ratio by half */
1044 if ((info->interface == FLASH_CFI_X8X16)
1045 && (info->chipwidth == FLASH_CFI_BY8)) {
1046 size_ratio >>= 1;
1047 }
1048 num_erase_regions = flash_read_uchar (info, FLASH_OFFSET_NUM_ERASE_REGIONS);
1049 debug ("size_ratio %d port %d bits chip %d bits\n",
1050 size_ratio, info->portwidth << CFI_FLASH_SHIFT_WIDTH,
1051 info->chipwidth << CFI_FLASH_SHIFT_WIDTH);
1052 debug ("found %d erase regions\n", num_erase_regions);
1053 sect_cnt = 0;
1054 sector = base;
1055 for (i = 0; i < num_erase_regions; i++) {
1056 if (i > NUM_ERASE_REGIONS) {
1057 printf ("%d erase regions found, only %d used\n",
1058 num_erase_regions, NUM_ERASE_REGIONS);
1059 break;
1060 }
1061 tmp = flash_read_long (info, 0,
1062 FLASH_OFFSET_ERASE_REGIONS +
1063 i * 4);
1064 erase_region_size =
1065 (tmp & 0xffff) ? ((tmp & 0xffff) * 256) : 128;
1066 tmp >>= 16;
1067 erase_region_count = (tmp & 0xffff) + 1;
1068 debug ("erase_region_count = %d erase_region_size = %d\n",
1069 erase_region_count, erase_region_size);
1070 for (j = 0; j < erase_region_count; j++) {
1071 info->start[sect_cnt] = sector;
1072 sector += (erase_region_size * size_ratio);
1073
1074 /*
1075 * Only read protection status from supported devices (intel...)
1076 */
1077 switch (info->vendor) {
1078 case CFI_CMDSET_INTEL_EXTENDED:
1079 case CFI_CMDSET_INTEL_STANDARD:
1080 info->protect[sect_cnt] =
1081 flash_isset (info, sect_cnt,
1082 FLASH_OFFSET_PROTECT,
1083 FLASH_STATUS_PROTECT);
1084 break;
1085 default:
1086 info->protect[sect_cnt] = 0; /* default: not protected */
1087 }
1088
1089 sect_cnt++;
1090 }
1091 }
1092
1093 info->sector_count = sect_cnt;
1094 /* multiply the size by the number of chips */
1095 info->size = (1 << flash_read_uchar (info, FLASH_OFFSET_SIZE)) * size_ratio;
1096 info->buffer_size = (1 << flash_read_ushort (info, 0, FLASH_OFFSET_BUFFER_SIZE));
1097 tmp = 1 << flash_read_uchar (info, FLASH_OFFSET_ETOUT);
1098 info->erase_blk_tout = (tmp * (1 << flash_read_uchar (info, FLASH_OFFSET_EMAX_TOUT)));
1099 tmp = 1 << flash_read_uchar (info, FLASH_OFFSET_WBTOUT);
1100 info->buffer_write_tout = (tmp * (1 << flash_read_uchar (info, FLASH_OFFSET_WBMAX_TOUT)));
1101 tmp = 1 << flash_read_uchar (info, FLASH_OFFSET_WTOUT);
1102 info->write_tout = (tmp * (1 << flash_read_uchar (info, FLASH_OFFSET_WMAX_TOUT))) / 1000;
1103 info->flash_id = FLASH_MAN_CFI;
1104 if ((info->interface == FLASH_CFI_X8X16) && (info->chipwidth == FLASH_CFI_BY8)) {
1105 info->portwidth >>= 1; /* XXX - Need to test on x8/x16 in parallel. */
1106 }
1107 }
1108
1109 flash_write_cmd (info, 0, 0, info->cmd_reset);
1110 return (info->size);
1111 }
1112
1113
1114 /*-----------------------------------------------------------------------
1115 */
1116 static int flash_write_cfiword (flash_info_t * info, ulong dest,
1117 cfiword_t cword)
1118 {
1119
1120 cfiptr_t ctladdr;
1121 cfiptr_t cptr;
1122 int flag;
1123
1124 ctladdr.cp = flash_make_addr (info, 0, 0);
1125 cptr.cp = (uchar *) dest;
1126
1127
1128 /* Check if Flash is (sufficiently) erased */
1129 switch (info->portwidth) {
1130 case FLASH_CFI_8BIT:
1131 flag = ((cptr.cp[0] & cword.c) == cword.c);
1132 break;
1133 case FLASH_CFI_16BIT:
1134 flag = ((cptr.wp[0] & cword.w) == cword.w);
1135 break;
1136 case FLASH_CFI_32BIT:
1137 flag = ((cptr.lp[0] & cword.l) == cword.l);
1138 break;
1139 case FLASH_CFI_64BIT:
1140 flag = ((cptr.llp[0] & cword.ll) == cword.ll);
1141 break;
1142 default:
1143 return 2;
1144 }
1145 if (!flag)
1146 return 2;
1147
1148 /* Disable interrupts which might cause a timeout here */
1149 flag = disable_interrupts ();
1150
1151 switch (info->vendor) {
1152 case CFI_CMDSET_INTEL_EXTENDED:
1153 case CFI_CMDSET_INTEL_STANDARD:
1154 flash_write_cmd (info, 0, 0, FLASH_CMD_CLEAR_STATUS);
1155 flash_write_cmd (info, 0, 0, FLASH_CMD_WRITE);
1156 break;
1157 case CFI_CMDSET_AMD_EXTENDED:
1158 case CFI_CMDSET_AMD_STANDARD:
1159 flash_unlock_seq (info, 0);
1160 flash_write_cmd (info, 0, AMD_ADDR_START, AMD_CMD_WRITE);
1161 break;
1162 }
1163
1164 switch (info->portwidth) {
1165 case FLASH_CFI_8BIT:
1166 cptr.cp[0] = cword.c;
1167 break;
1168 case FLASH_CFI_16BIT:
1169 cptr.wp[0] = cword.w;
1170 break;
1171 case FLASH_CFI_32BIT:
1172 cptr.lp[0] = cword.l;
1173 break;
1174 case FLASH_CFI_64BIT:
1175 cptr.llp[0] = cword.ll;
1176 break;
1177 }
1178
1179 /* re-enable interrupts if necessary */
1180 if (flag)
1181 enable_interrupts ();
1182
1183 return flash_full_status_check (info, 0, info->write_tout, "write");
1184 }
1185
1186 #ifdef CFG_FLASH_USE_BUFFER_WRITE
1187
1188 /* loop through the sectors from the highest address
1189 * when the passed address is greater or equal to the sector address
1190 * we have a match
1191 */
1192 static flash_sect_t find_sector (flash_info_t * info, ulong addr)
1193 {
1194 flash_sect_t sector;
1195
1196 for (sector = info->sector_count - 1; sector >= 0; sector--) {
1197 if (addr >= info->start[sector])
1198 break;
1199 }
1200 return sector;
1201 }
1202
1203 static int flash_write_cfibuffer (flash_info_t * info, ulong dest, uchar * cp,
1204 int len)
1205 {
1206 flash_sect_t sector;
1207 int cnt;
1208 int retcode;
1209 volatile cfiptr_t src;
1210 volatile cfiptr_t dst;
1211 /* buffered writes in the AMD chip set is not supported yet */
1212 if((info->vendor == CFI_CMDSET_AMD_STANDARD) ||
1213 (info->vendor == CFI_CMDSET_AMD_EXTENDED))
1214 return ERR_INVAL;
1215
1216 src.cp = cp;
1217 dst.cp = (uchar *) dest;
1218 sector = find_sector (info, dest);
1219 flash_write_cmd (info, sector, 0, FLASH_CMD_CLEAR_STATUS);
1220 flash_write_cmd (info, sector, 0, FLASH_CMD_WRITE_TO_BUFFER);
1221 if ((retcode =
1222 flash_status_check (info, sector, info->buffer_write_tout,
1223 "write to buffer")) == ERR_OK) {
1224 /* reduce the number of loops by the width of the port */
1225 switch (info->portwidth) {
1226 case FLASH_CFI_8BIT:
1227 cnt = len;
1228 break;
1229 case FLASH_CFI_16BIT:
1230 cnt = len >> 1;
1231 break;
1232 case FLASH_CFI_32BIT:
1233 cnt = len >> 2;
1234 break;
1235 case FLASH_CFI_64BIT:
1236 cnt = len >> 3;
1237 break;
1238 default:
1239 return ERR_INVAL;
1240 break;
1241 }
1242 flash_write_cmd (info, sector, 0, (uchar) cnt - 1);
1243 while (cnt-- > 0) {
1244 switch (info->portwidth) {
1245 case FLASH_CFI_8BIT:
1246 *dst.cp++ = *src.cp++;
1247 break;
1248 case FLASH_CFI_16BIT:
1249 *dst.wp++ = *src.wp++;
1250 break;
1251 case FLASH_CFI_32BIT:
1252 *dst.lp++ = *src.lp++;
1253 break;
1254 case FLASH_CFI_64BIT:
1255 *dst.llp++ = *src.llp++;
1256 break;
1257 default:
1258 return ERR_INVAL;
1259 break;
1260 }
1261 }
1262 flash_write_cmd (info, sector, 0,
1263 FLASH_CMD_WRITE_BUFFER_CONFIRM);
1264 retcode =
1265 flash_full_status_check (info, sector,
1266 info->buffer_write_tout,
1267 "buffer write");
1268 }
1269 flash_write_cmd (info, sector, 0, FLASH_CMD_CLEAR_STATUS);
1270 return retcode;
1271 }
1272 #endif /* CFG_FLASH_USE_BUFFER_WRITE */
1273 #endif /* CFG_FLASH_CFI */