blob: 19a428abb8118245dff4bdd13fc54030c6855362 [file] [log] [blame]
wdenkaffae2b2002-08-17 09:36:01 +00001/*
Wolfgang Denk250b66e2011-11-04 15:55:41 +00002 * (C) Copyright 2000-2011
wdenkaffae2b2002-08-17 09:36:01 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
25#include <mpc8xx.h>
26
Wolfgang Denk098a8a82011-11-04 15:55:40 +000027flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS];
wdenkaffae2b2002-08-17 09:36:01 +000028
29/*-----------------------------------------------------------------------
30 * Functions
31 */
Wolfgang Denk098a8a82011-11-04 15:55:40 +000032static ulong flash_get_size(vu_long *addr, flash_info_t *info);
33static int write_word(flash_info_t *info, ulong dest, ulong data);
34static void flash_get_offsets(ulong base, flash_info_t *info);
wdenkaffae2b2002-08-17 09:36:01 +000035
36/*-----------------------------------------------------------------------
37 */
38
Wolfgang Denk098a8a82011-11-04 15:55:40 +000039unsigned long flash_init(void)
wdenkaffae2b2002-08-17 09:36:01 +000040{
Wolfgang Denk250b66e2011-11-04 15:55:41 +000041 unsigned long size_b0;
wdenkaffae2b2002-08-17 09:36:01 +000042 int i;
43
44 /* Init: no FLASHes known */
Wolfgang Denk098a8a82011-11-04 15:55:40 +000045 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; ++i)
46 flash_info[i].flash_id = FLASH_UNKNOWN;
wdenkaffae2b2002-08-17 09:36:01 +000047
48 /* Detect size */
Wolfgang Denk098a8a82011-11-04 15:55:40 +000049 size_b0 = flash_get_size((vu_long *)CONFIG_SYS_FLASH_BASE,
50 &flash_info[0]);
wdenkaffae2b2002-08-17 09:36:01 +000051
52 /* Setup offsets */
Wolfgang Denk098a8a82011-11-04 15:55:40 +000053 flash_get_offsets(CONFIG_SYS_FLASH_BASE, &flash_info[0]);
wdenkaffae2b2002-08-17 09:36:01 +000054
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020055#if CONFIG_SYS_MONITOR_BASE >= CONFIG_SYS_FLASH_BASE
wdenkaffae2b2002-08-17 09:36:01 +000056 /* Monitor protection ON by default */
57 flash_protect(FLAG_PROTECT_SET,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020058 CONFIG_SYS_MONITOR_BASE,
59 CONFIG_SYS_MONITOR_BASE+monitor_flash_len-1,
wdenkaffae2b2002-08-17 09:36:01 +000060 &flash_info[0]);
61#endif
62
wdenkaffae2b2002-08-17 09:36:01 +000063 flash_info[0].size = size_b0;
wdenkaffae2b2002-08-17 09:36:01 +000064
Wolfgang Denk250b66e2011-11-04 15:55:41 +000065 return size_b0;
wdenkaffae2b2002-08-17 09:36:01 +000066}
67
68/*-----------------------------------------------------------------------
69 * Fix this to support variable sector sizes
70*/
Wolfgang Denk098a8a82011-11-04 15:55:40 +000071static void flash_get_offsets(ulong base, flash_info_t *info)
wdenkaffae2b2002-08-17 09:36:01 +000072{
73 int i;
74
75 /* set up sector start address table */
76 if ((info->flash_id & FLASH_TYPEMASK) == FLASH_AM040) {
77 /* set sector offsets for bottom boot block type */
78 for (i = 0; i < info->sector_count; i++)
79 info->start[i] = base + (i * 0x00010000);
80 }
81}
82
83/*-----------------------------------------------------------------------
84 */
Wolfgang Denk098a8a82011-11-04 15:55:40 +000085void flash_print_info(flash_info_t *info)
wdenkaffae2b2002-08-17 09:36:01 +000086{
87 int i;
88
Wolfgang Denk098a8a82011-11-04 15:55:40 +000089 if (info->flash_id == FLASH_UNKNOWN) {
90 puts("missing or unknown FLASH type\n");
wdenkaffae2b2002-08-17 09:36:01 +000091 return;
92 }
93
Wolfgang Denk098a8a82011-11-04 15:55:40 +000094 switch (info->flash_id & FLASH_VENDMASK) {
95 case FLASH_MAN_AMD:
96 printf("AMD ");
97 break;
98 case FLASH_MAN_FUJ:
99 printf("FUJITSU ");
100 break;
101 case FLASH_MAN_BM:
102 printf("BRIGHT MICRO ");
103 break;
104 default:
105 printf("Unknown Vendor ");
106 break;
wdenkaffae2b2002-08-17 09:36:01 +0000107 }
108
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000109 switch (info->flash_id & FLASH_TYPEMASK) {
110 case FLASH_AM040:
111 printf("29F040 or 29LV040 (4 Mbit, uniform sectors)\n");
112 break;
113 case FLASH_AM400B:
114 printf("AM29LV400B (4 Mbit, bottom boot sect)\n");
115 break;
116 case FLASH_AM400T:
117 printf("AM29LV400T (4 Mbit, top boot sector)\n");
118 break;
119 case FLASH_AM800B:
120 printf("AM29LV800B (8 Mbit, bottom boot sect)\n");
121 break;
122 case FLASH_AM800T:
123 printf("AM29LV800T (8 Mbit, top boot sector)\n");
124 break;
125 case FLASH_AM160B:
126 printf("AM29LV160B (16 Mbit, bottom boot sect)\n");
127 break;
128 case FLASH_AM160T:
129 printf("AM29LV160T (16 Mbit, top boot sector)\n");
130 break;
131 case FLASH_AM320B:
132 printf("AM29LV320B (32 Mbit, bottom boot sect)\n");
133 break;
134 case FLASH_AM320T:
135 printf("AM29LV320T (32 Mbit, top boot sector)\n");
136 break;
137 default:
138 printf("Unknown Chip Type\n");
139 break;
wdenkaffae2b2002-08-17 09:36:01 +0000140 }
141
142 if (info->size >> 20) {
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000143 printf(" Size: %ld MB in %d Sectors\n",
144 info->size >> 20,
145 info->sector_count);
wdenkaffae2b2002-08-17 09:36:01 +0000146 } else {
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000147 printf(" Size: %ld KB in %d Sectors\n",
148 info->size >> 10,
149 info->sector_count);
wdenkaffae2b2002-08-17 09:36:01 +0000150 }
151
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000152 puts(" Sector Start Addresses:");
wdenkaffae2b2002-08-17 09:36:01 +0000153
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000154 for (i = 0; i < info->sector_count; ++i) {
wdenkaffae2b2002-08-17 09:36:01 +0000155 if ((i % 5) == 0)
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000156 puts("\n ");
wdenkaffae2b2002-08-17 09:36:01 +0000157
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000158 printf(" %08lX%s",
wdenkaffae2b2002-08-17 09:36:01 +0000159 info->start[i],
160 info->protect[i] ? " (RO)" : " ");
161 }
162
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000163 putc('\n');
wdenkaffae2b2002-08-17 09:36:01 +0000164 return;
165}
166/*-----------------------------------------------------------------------
167 */
168
169/*
170 * The following code cannot be run from FLASH!
171 */
172
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000173static ulong flash_get_size(vu_long *addr, flash_info_t *info)
wdenkaffae2b2002-08-17 09:36:01 +0000174{
175 short i;
176 volatile unsigned char *caddr;
177 char value;
178
179 caddr = (volatile unsigned char *)addr ;
180
181 /* Write auto select command: read Manufacturer ID */
182
Wolfgang Denk250b66e2011-11-04 15:55:41 +0000183 debug("Base address is: %8p\n", caddr);
wdenkaffae2b2002-08-17 09:36:01 +0000184
185 caddr[0x0555] = 0xAA;
186 caddr[0x02AA] = 0x55;
187 caddr[0x0555] = 0x90;
188
189 value = caddr[0];
190
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000191 debug("Manufact ID: %02x\n", value);
wdenkaffae2b2002-08-17 09:36:01 +0000192
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000193 switch (value) {
194 case 0x1: /* AMD_MANUFACT */
195 info->flash_id = FLASH_MAN_AMD;
wdenkaffae2b2002-08-17 09:36:01 +0000196 break;
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000197 case 0x4: /* FUJ_MANUFACT */
198 info->flash_id = FLASH_MAN_FUJ;
199 break;
200 default:
201 info->flash_id = FLASH_UNKNOWN;
202 info->sector_count = 0;
203 info->size = 0;
204 break;
wdenkaffae2b2002-08-17 09:36:01 +0000205 }
206
207 value = caddr[1]; /* device ID */
wdenkaffae2b2002-08-17 09:36:01 +0000208
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000209 debug("Device ID: %02x\n", value);
wdenkaffae2b2002-08-17 09:36:01 +0000210
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000211 switch (value) {
212 case AMD_ID_LV040B:
213 info->flash_id += FLASH_AM040;
214 info->sector_count = 8;
215 info->size = 0x00080000;
216 break; /* => 512Kb */
217
218 default:
219 info->flash_id = FLASH_UNKNOWN;
220 return 0; /* => no or unknown flash */
wdenkaffae2b2002-08-17 09:36:01 +0000221 }
222
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000223 flash_get_offsets((ulong)addr, &flash_info[0]);
wdenkaffae2b2002-08-17 09:36:01 +0000224
225 /* check for protected sectors */
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000226 for (i = 0; i < info->sector_count; i++) {
227 /*
228 * read sector protection at sector address,
229 * (A7 .. A0) = 0x02
230 * D0 = 1 if protected
231 */
wdenkaffae2b2002-08-17 09:36:01 +0000232 caddr = (volatile unsigned char *)(info->start[i]);
233 info->protect[i] = caddr[2] & 1;
234 }
235
236 /*
237 * Prevent writes to uninitialized FLASH.
238 */
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000239 if (info->flash_id != FLASH_UNKNOWN) {
wdenkaffae2b2002-08-17 09:36:01 +0000240 caddr = (volatile unsigned char *)info->start[0];
241 *caddr = 0xF0; /* reset bank */
242 }
243
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000244 return info->size;
wdenkaffae2b2002-08-17 09:36:01 +0000245}
246
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000247int flash_erase(flash_info_t *info, int s_first, int s_last)
wdenkaffae2b2002-08-17 09:36:01 +0000248{
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000249 volatile unsigned char *addr =
250 (volatile unsigned char *)(info->start[0]);
wdenkaffae2b2002-08-17 09:36:01 +0000251 int flag, prot, sect, l_sect;
252 ulong start, now, last;
253
254 if ((s_first < 0) || (s_first > s_last)) {
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000255 if (info->flash_id == FLASH_UNKNOWN)
256 printf("- missing\n");
257 else
258 printf("- no sectors to erase\n");
259
wdenkaffae2b2002-08-17 09:36:01 +0000260 return 1;
261 }
262
263 if ((info->flash_id == FLASH_UNKNOWN) ||
264 (info->flash_id > FLASH_AMD_COMP)) {
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000265 printf("Can't erase unknown flash type - aborted\n");
wdenkaffae2b2002-08-17 09:36:01 +0000266 return 1;
267 }
268
269 prot = 0;
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000270 for (sect = s_first; sect <= s_last; ++sect) {
271 if (info->protect[sect])
wdenkaffae2b2002-08-17 09:36:01 +0000272 prot++;
wdenkaffae2b2002-08-17 09:36:01 +0000273 }
274
275 if (prot) {
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000276 printf("- Warning: %d protected sectors will not be erased!\n",
wdenkaffae2b2002-08-17 09:36:01 +0000277 prot);
278 } else {
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000279 printf("\n");
wdenkaffae2b2002-08-17 09:36:01 +0000280 }
281
282 l_sect = -1;
283
284 /* Disable interrupts which might cause a timeout here */
285 flag = disable_interrupts();
286
287 addr[0x0555] = 0xAA;
288 addr[0x02AA] = 0x55;
289 addr[0x0555] = 0x80;
290 addr[0x0555] = 0xAA;
291 addr[0x02AA] = 0x55;
292
293 /* Start erase on unprotected sectors */
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000294 for (sect = s_first; sect <= s_last; sect++) {
wdenkaffae2b2002-08-17 09:36:01 +0000295 if (info->protect[sect] == 0) { /* not protected */
296 addr = (volatile unsigned char *)(info->start[sect]);
297 addr[0] = 0x30;
298 l_sect = sect;
299 }
300 }
301
302 /* re-enable interrupts if necessary */
303 if (flag)
304 enable_interrupts();
305
306 /* wait at least 80us - let's wait 1 ms */
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000307 udelay(1000);
wdenkaffae2b2002-08-17 09:36:01 +0000308
309 /*
310 * We wait for the last triggered sector
311 */
312 if (l_sect < 0)
313 goto DONE;
314
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000315 start = get_timer(0);
wdenkaffae2b2002-08-17 09:36:01 +0000316 last = start;
317 addr = (volatile unsigned char *)(info->start[l_sect]);
318
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000319 while ((addr[0] & 0xFF) != 0xFF) {
320
321 now = get_timer(start);
322
323 if (now > CONFIG_SYS_FLASH_ERASE_TOUT) {
324 printf("Timeout\n");
wdenkaffae2b2002-08-17 09:36:01 +0000325 return 1;
326 }
327 /* show that we're waiting */
328 if ((now - last) > 1000) { /* every second */
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000329 putc('.');
wdenkaffae2b2002-08-17 09:36:01 +0000330 last = now;
331 }
332 }
333
334DONE:
335 /* reset to read mode */
336 addr = (volatile unsigned char *)info->start[0];
337
338 addr[0] = 0xF0; /* reset bank */
339
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000340 printf(" done\n");
wdenkaffae2b2002-08-17 09:36:01 +0000341 return 0;
342}
343
344/*-----------------------------------------------------------------------
345 * Copy memory to flash, returns:
346 * 0 - OK
347 * 1 - write timeout
348 * 2 - Flash not erased
349 */
350
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000351int write_buff(flash_info_t *info, uchar *src, ulong addr, ulong cnt)
wdenkaffae2b2002-08-17 09:36:01 +0000352{
353 ulong cp, wp, data;
354 int i, l, rc;
355
356 wp = (addr & ~3); /* get lower word aligned address */
357
358 /*
359 * handle unaligned start bytes
360 */
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000361 l = addr - wp;
362
363 if (l != 0) {
wdenkaffae2b2002-08-17 09:36:01 +0000364 data = 0;
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000365 for (i = 0, cp = wp; i < l; ++i, ++cp)
wdenkaffae2b2002-08-17 09:36:01 +0000366 data = (data << 8) | (*(uchar *)cp);
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000367
368 for (; i < 4 && cnt > 0; ++i) {
wdenkaffae2b2002-08-17 09:36:01 +0000369 data = (data << 8) | *src++;
370 --cnt;
371 ++cp;
372 }
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000373 for (; cnt == 0 && i < 4; ++i, ++cp)
wdenkaffae2b2002-08-17 09:36:01 +0000374 data = (data << 8) | (*(uchar *)cp);
wdenkaffae2b2002-08-17 09:36:01 +0000375
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000376 rc = write_word(info, wp, data);
377
378 if (rc != 0)
379 return rc;
380
wdenkaffae2b2002-08-17 09:36:01 +0000381 wp += 4;
382 }
383
384 /*
385 * handle word aligned part
386 */
387 while (cnt >= 4) {
388 data = 0;
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000389 for (i = 0; i < 4; ++i)
wdenkaffae2b2002-08-17 09:36:01 +0000390 data = (data << 8) | *src++;
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000391
392 rc = write_word(info, wp, data);
393
394 if (rc != 0)
395 return rc;
396
wdenkaffae2b2002-08-17 09:36:01 +0000397 wp += 4;
398 cnt -= 4;
399 }
400
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000401 if (cnt == 0)
402 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000403
404 /*
405 * handle unaligned tail bytes
406 */
407 data = 0;
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000408 for (i = 0, cp = wp; i < 4 && cnt > 0; ++i, ++cp) {
wdenkaffae2b2002-08-17 09:36:01 +0000409 data = (data << 8) | *src++;
410 --cnt;
411 }
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000412 for (; i < 4; ++i, ++cp)
wdenkaffae2b2002-08-17 09:36:01 +0000413 data = (data << 8) | (*(uchar *)cp);
wdenkaffae2b2002-08-17 09:36:01 +0000414
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000415 return write_word(info, wp, data);
wdenkaffae2b2002-08-17 09:36:01 +0000416}
417
418/*-----------------------------------------------------------------------
419 * Write a word to Flash, returns:
420 * 0 - OK
421 * 1 - write timeout
422 * 2 - Flash not erased
423 */
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000424static int write_word(flash_info_t *info, ulong dest, ulong data)
wdenkaffae2b2002-08-17 09:36:01 +0000425{
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000426 volatile unsigned char *cdest, *cdata;
427 volatile unsigned char *addr =
428 (volatile unsigned char *)(info->start[0]);
wdenkaffae2b2002-08-17 09:36:01 +0000429 ulong start;
430 int flag, count = 4 ;
431
432 cdest = (volatile unsigned char *)dest ;
433 cdata = (volatile unsigned char *)&data ;
434
435 /* Check if Flash is (sufficiently) erased */
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000436 if ((*((vu_long *)dest) & data) != data)
437 return 2;
wdenkaffae2b2002-08-17 09:36:01 +0000438
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000439 while (count--) {
wdenkaffae2b2002-08-17 09:36:01 +0000440
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000441 /* Disable interrupts which might cause a timeout here */
442 flag = disable_interrupts();
wdenkaffae2b2002-08-17 09:36:01 +0000443
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000444 addr[0x0555] = 0xAA;
445 addr[0x02AA] = 0x55;
446 addr[0x0555] = 0xA0;
wdenkaffae2b2002-08-17 09:36:01 +0000447
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000448 *cdest = *cdata;
wdenkaffae2b2002-08-17 09:36:01 +0000449
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000450 /* re-enable interrupts if necessary */
451 if (flag)
452 enable_interrupts();
453
454 /* data polling for D7 */
455 start = get_timer(0);
456 while ((*cdest ^ *cdata) & 0x80) {
457 if (get_timer(start) > CONFIG_SYS_FLASH_WRITE_TOUT)
458 return 1;
wdenkaffae2b2002-08-17 09:36:01 +0000459 }
wdenkaffae2b2002-08-17 09:36:01 +0000460
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000461 cdata++ ;
462 cdest++ ;
wdenkaffae2b2002-08-17 09:36:01 +0000463 }
Wolfgang Denk098a8a82011-11-04 15:55:40 +0000464 return 0;
wdenkaffae2b2002-08-17 09:36:01 +0000465}