blob: 53f89ee7e659e9ee30c59fde3a683c64ff2d0108 [file] [log] [blame]
wdenkea8015b2002-10-26 16:43:06 +00001/*
wdenkdc7c9a12003-03-26 06:55:25 +00002 * (C) Copyright 2001
3 * Kyle Harris, Nexus Technologies, Inc. kharris@nexus-tech.net
4 *
5 * (C) Copyright 2001
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenkea8015b2002-10-26 16:43:06 +00007 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
27#include <common.h>
wdenkdc7c9a12003-03-26 06:55:25 +000028#include <linux/byteorder/swab.h>
wdenkea8015b2002-10-26 16:43:06 +000029
30
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020031flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS]; /* info for FLASH chips */
wdenkea8015b2002-10-26 16:43:06 +000032
wdenkdc7c9a12003-03-26 06:55:25 +000033/* Board support for 1 or 2 flash devices */
34#undef FLASH_PORT_WIDTH32
35#define FLASH_PORT_WIDTH16
36
37#ifdef FLASH_PORT_WIDTH16
38#define FLASH_PORT_WIDTH ushort
39#define FLASH_PORT_WIDTHV vu_short
40#define SWAP(x) __swab16(x)
41#else
42#define FLASH_PORT_WIDTH ulong
43#define FLASH_PORT_WIDTHV vu_long
44#define SWAP(x) __swab32(x)
45#endif
46
47#define FPW FLASH_PORT_WIDTH
48#define FPWV FLASH_PORT_WIDTHV
49
50#define mb() __asm__ __volatile__ ("" : : : "memory")
51
52/*-----------------------------------------------------------------------
53 * Functions
wdenkea8015b2002-10-26 16:43:06 +000054 */
wdenkdc7c9a12003-03-26 06:55:25 +000055static ulong flash_get_size (FPW *addr, flash_info_t *info);
56static int write_data (flash_info_t *info, ulong dest, FPW data);
57static void flash_get_offsets (ulong base, flash_info_t *info);
58void inline spin_wheel(void);
wdenkea8015b2002-10-26 16:43:06 +000059
60/*-----------------------------------------------------------------------
61 */
62
wdenkdc7c9a12003-03-26 06:55:25 +000063unsigned long flash_init (void)
wdenkea8015b2002-10-26 16:43:06 +000064{
wdenkdc7c9a12003-03-26 06:55:25 +000065 int i;
wdenkea8015b2002-10-26 16:43:06 +000066 ulong size = 0;
67
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020068 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++)
wdenkea8015b2002-10-26 16:43:06 +000069 {
wdenk8bde7f72003-06-27 21:31:46 +000070 switch (i)
71 {
72 case 0:
73 flash_get_size((FPW *)PHYS_FLASH_1, &flash_info[i]);
74 flash_get_offsets(PHYS_FLASH_1, &flash_info[i]);
75 break;
76 default:
wdenk5f535fe2003-09-18 09:21:33 +000077 panic("configured too many flash banks!\n");
wdenk8bde7f72003-06-27 21:31:46 +000078 break;
79 }
wdenkea8015b2002-10-26 16:43:06 +000080 size += flash_info[i].size;
81 }
82
83 /* Protect monitor and environment sectors
84 */
85 flash_protect(FLAG_PROTECT_SET,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020086 CONFIG_SYS_FLASH_BASE,
87 CONFIG_SYS_FLASH_BASE + monitor_flash_len - 1,
wdenkea8015b2002-10-26 16:43:06 +000088 &flash_info[0]);
89
90 flash_protect(FLAG_PROTECT_SET,
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020091 CONFIG_ENV_ADDR,
92 CONFIG_ENV_ADDR + CONFIG_ENV_SIZE - 1,
wdenkea8015b2002-10-26 16:43:06 +000093 &flash_info[0]);
94
95 return size;
96}
97
98/*-----------------------------------------------------------------------
99 */
wdenkdc7c9a12003-03-26 06:55:25 +0000100static void flash_get_offsets (ulong base, flash_info_t *info)
wdenkea8015b2002-10-26 16:43:06 +0000101{
wdenkdc7c9a12003-03-26 06:55:25 +0000102 int i;
wdenkea8015b2002-10-26 16:43:06 +0000103
wdenkdc7c9a12003-03-26 06:55:25 +0000104 if (info->flash_id == FLASH_UNKNOWN) {
105 return;
wdenkea8015b2002-10-26 16:43:06 +0000106 }
wdenkea8015b2002-10-26 16:43:06 +0000107
wdenkdc7c9a12003-03-26 06:55:25 +0000108 if ((info->flash_id & FLASH_VENDMASK) == FLASH_MAN_INTEL) {
109 for (i = 0; i < info->sector_count; i++) {
110 info->start[i] = base + (i * PHYS_FLASH_SECT_SIZE);
111 info->protect[i] = 0;
112 }
113 }
wdenkea8015b2002-10-26 16:43:06 +0000114}
115
116/*-----------------------------------------------------------------------
117 */
wdenkdc7c9a12003-03-26 06:55:25 +0000118void flash_print_info (flash_info_t *info)
wdenkea8015b2002-10-26 16:43:06 +0000119{
wdenkdc7c9a12003-03-26 06:55:25 +0000120 int i;
wdenkea8015b2002-10-26 16:43:06 +0000121
wdenkdc7c9a12003-03-26 06:55:25 +0000122 if (info->flash_id == FLASH_UNKNOWN) {
123 printf ("missing or unknown FLASH type\n");
124 return;
wdenk8bde7f72003-06-27 21:31:46 +0000125 }
wdenkea8015b2002-10-26 16:43:06 +0000126
wdenkdc7c9a12003-03-26 06:55:25 +0000127 switch (info->flash_id & FLASH_VENDMASK) {
128 case FLASH_MAN_INTEL: printf ("INTEL "); break;
129 default: printf ("Unknown Vendor "); break;
wdenkea8015b2002-10-26 16:43:06 +0000130 }
131
wdenkdc7c9a12003-03-26 06:55:25 +0000132 switch (info->flash_id & FLASH_TYPEMASK) {
133 case FLASH_28F128J3A:
134 printf ("28F128J3A\n"); break;
135 default: printf ("Unknown Chip Type\n"); break;
wdenk8bde7f72003-06-27 21:31:46 +0000136 }
wdenkea8015b2002-10-26 16:43:06 +0000137
wdenkdc7c9a12003-03-26 06:55:25 +0000138 printf (" Size: %ld MB in %d Sectors\n",
wdenk8bde7f72003-06-27 21:31:46 +0000139 info->size >> 20, info->sector_count);
wdenkea8015b2002-10-26 16:43:06 +0000140
wdenkdc7c9a12003-03-26 06:55:25 +0000141 printf (" Sector Start Addresses:");
142 for (i=0; i<info->sector_count; ++i) {
wdenk8bde7f72003-06-27 21:31:46 +0000143 if ((i % 5) == 0)
144 printf ("\n ");
wdenkdc7c9a12003-03-26 06:55:25 +0000145 printf (" %08lX%s",
146 info->start[i],
147 info->protect[i] ? " (RO)" : " "
148 );
wdenk8bde7f72003-06-27 21:31:46 +0000149 }
150 printf ("\n");
wdenkdc7c9a12003-03-26 06:55:25 +0000151 return;
wdenkea8015b2002-10-26 16:43:06 +0000152}
153
wdenkdc7c9a12003-03-26 06:55:25 +0000154/*
155 * The following code cannot be run from FLASH!
156 */
157static ulong flash_get_size (FPW *addr, flash_info_t *info)
158{
159 volatile FPW value;
160 /* Write auto select command: read Manufacturer ID */
161 addr[0x5555] = (FPW)0x00AA00AA;
162 addr[0x2AAA] = (FPW)0x00550055;
163 addr[0x5555] = (FPW)0x00900090;
164
165 mb();
166 value = addr[0];
wdenk8bde7f72003-06-27 21:31:46 +0000167
wdenkdc7c9a12003-03-26 06:55:25 +0000168 switch (value) {
169
170 case (FPW)INTEL_MANUFACT:
171 info->flash_id = FLASH_MAN_INTEL;
172 break;
173
174 default:
175 info->flash_id = FLASH_UNKNOWN;
176 info->sector_count = 0;
177 info->size = 0;
178 addr[0] = (FPW)0x00FF00FF; /* restore read mode */
179 return (0); /* no or unknown flash */
180 }
181
182 mb();
183 value = addr[1]; /* device ID */
184 switch (value) {
185
186 case (FPW)INTEL_ID_28F128J3A:
187 info->flash_id += FLASH_28F128J3A;
188 info->sector_count = 128;
189 info->size = 0x02000000;
190 break; /* => 16 MB */
191
192 default:
193 info->flash_id = FLASH_UNKNOWN;
194 break;
195 }
196
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200197 if (info->sector_count > CONFIG_SYS_MAX_FLASH_SECT) {
wdenkdc7c9a12003-03-26 06:55:25 +0000198 printf ("** ERROR: sector count %d > max (%d) **\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200199 info->sector_count, CONFIG_SYS_MAX_FLASH_SECT);
200 info->sector_count = CONFIG_SYS_MAX_FLASH_SECT;
wdenkdc7c9a12003-03-26 06:55:25 +0000201 }
202
203 addr[0] = (FPW)0x00FF00FF; /* restore read mode */
204
205 return (info->size);
206}
207
208
wdenkea8015b2002-10-26 16:43:06 +0000209/*-----------------------------------------------------------------------
210 */
211
212int flash_erase (flash_info_t *info, int s_first, int s_last)
213{
wdenkdc7c9a12003-03-26 06:55:25 +0000214 int flag, prot, sect;
Graeme Russa60d1e52011-07-15 23:31:37 +0000215 ulong type, start;
wdenkdc7c9a12003-03-26 06:55:25 +0000216 int rcode = 0;
wdenkea8015b2002-10-26 16:43:06 +0000217
218 if ((s_first < 0) || (s_first > s_last)) {
wdenkdc7c9a12003-03-26 06:55:25 +0000219 if (info->flash_id == FLASH_UNKNOWN) {
220 printf ("- missing\n");
221 } else {
222 printf ("- no sectors to erase\n");
223 }
224 return 1;
wdenkea8015b2002-10-26 16:43:06 +0000225 }
226
wdenkdc7c9a12003-03-26 06:55:25 +0000227 type = (info->flash_id & FLASH_VENDMASK);
228 if ((type != FLASH_MAN_INTEL)) {
229 printf ("Can't erase unknown flash type %08lx - aborted\n",
230 info->flash_id);
231 return 1;
wdenkea8015b2002-10-26 16:43:06 +0000232 }
233
234 prot = 0;
235 for (sect=s_first; sect<=s_last; ++sect) {
236 if (info->protect[sect]) {
237 prot++;
238 }
239 }
wdenkea8015b2002-10-26 16:43:06 +0000240
wdenkdc7c9a12003-03-26 06:55:25 +0000241 if (prot) {
242 printf ("- Warning: %d protected sectors will not be erased!\n",
243 prot);
244 } else {
245 printf ("\n");
246 }
247
wdenkdc7c9a12003-03-26 06:55:25 +0000248 /* Disable interrupts which might cause a timeout here */
249 flag = disable_interrupts();
wdenkea8015b2002-10-26 16:43:06 +0000250
251 /* Start erase on unprotected sectors */
wdenkdc7c9a12003-03-26 06:55:25 +0000252 for (sect = s_first; sect<=s_last; sect++) {
253 if (info->protect[sect] == 0) { /* not protected */
254 FPWV *addr = (FPWV *)(info->start[sect]);
255 FPW status;
256
wdenkea8015b2002-10-26 16:43:06 +0000257 printf("Erasing sector %2d ... ", sect);
258
259 /* arm simple, non interrupt dependent timer */
Graeme Russa60d1e52011-07-15 23:31:37 +0000260 start = get_timer(0);
wdenkea8015b2002-10-26 16:43:06 +0000261
wdenkdc7c9a12003-03-26 06:55:25 +0000262 *addr = (FPW)0x00500050; /* clear status register */
263 *addr = (FPW)0x00200020; /* erase setup */
264 *addr = (FPW)0x00D000D0; /* erase confirm */
wdenkea8015b2002-10-26 16:43:06 +0000265
wdenkdc7c9a12003-03-26 06:55:25 +0000266 while (((status = *addr) & (FPW)0x00800080) != (FPW)0x00800080) {
Graeme Russa60d1e52011-07-15 23:31:37 +0000267 if (get_timer(start) > CONFIG_SYS_FLASH_ERASE_TOUT) {
wdenkdc7c9a12003-03-26 06:55:25 +0000268 printf ("Timeout\n");
269 *addr = (FPW)0x00B000B0; /* suspend erase */
270 *addr = (FPW)0x00FF00FF; /* reset to read mode */
271 rcode = 1;
272 break;
wdenkea8015b2002-10-26 16:43:06 +0000273 }
274 }
275
wdenkdc7c9a12003-03-26 06:55:25 +0000276 *addr = (FPW)0x00500050; /* clear status register cmd. */
277 *addr = (FPW)0x00FF00FF; /* resest to read mode */
wdenkea8015b2002-10-26 16:43:06 +0000278
wdenkdc7c9a12003-03-26 06:55:25 +0000279 printf (" done\n");
wdenk8bde7f72003-06-27 21:31:46 +0000280 }
281 }
wdenkdc7c9a12003-03-26 06:55:25 +0000282 return rcode;
wdenkea8015b2002-10-26 16:43:06 +0000283}
284
285/*-----------------------------------------------------------------------
wdenkdc7c9a12003-03-26 06:55:25 +0000286 * Copy memory to flash, returns:
287 * 0 - OK
288 * 1 - write timeout
289 * 2 - Flash not erased
290 * 4 - Flash not identified
wdenkea8015b2002-10-26 16:43:06 +0000291 */
292
293int write_buff (flash_info_t *info, uchar *src, ulong addr, ulong cnt)
294{
wdenkdc7c9a12003-03-26 06:55:25 +0000295 ulong cp, wp;
296 FPW data;
297 int count, i, l, rc, port_width;
wdenkea8015b2002-10-26 16:43:06 +0000298
wdenkdc7c9a12003-03-26 06:55:25 +0000299 if (info->flash_id == FLASH_UNKNOWN) {
300 return 4;
301 }
302/* get lower word aligned address */
303#ifdef FLASH_PORT_WIDTH16
304 wp = (addr & ~1);
305 port_width = 2;
306#else
307 wp = (addr & ~3);
308 port_width = 4;
309#endif
wdenkea8015b2002-10-26 16:43:06 +0000310
311 /*
312 * handle unaligned start bytes
313 */
314 if ((l = addr - wp) != 0) {
315 data = 0;
316 for (i=0, cp=wp; i<l; ++i, ++cp) {
wdenkdc7c9a12003-03-26 06:55:25 +0000317 data = (data << 8) | (*(uchar *)cp);
wdenkea8015b2002-10-26 16:43:06 +0000318 }
wdenkdc7c9a12003-03-26 06:55:25 +0000319 for (; i<port_width && cnt>0; ++i) {
320 data = (data << 8) | *src++;
wdenkea8015b2002-10-26 16:43:06 +0000321 --cnt;
322 ++cp;
323 }
wdenkdc7c9a12003-03-26 06:55:25 +0000324 for (; cnt==0 && i<port_width; ++i, ++cp) {
325 data = (data << 8) | (*(uchar *)cp);
wdenkea8015b2002-10-26 16:43:06 +0000326 }
327
wdenkdc7c9a12003-03-26 06:55:25 +0000328 if ((rc = write_data(info, wp, SWAP(data))) != 0) {
wdenkea8015b2002-10-26 16:43:06 +0000329 return (rc);
330 }
wdenkdc7c9a12003-03-26 06:55:25 +0000331 wp += port_width;
wdenkea8015b2002-10-26 16:43:06 +0000332 }
333
334 /*
335 * handle word aligned part
336 */
wdenkdc7c9a12003-03-26 06:55:25 +0000337 count = 0;
338 while (cnt >= port_width) {
339 data = 0;
340 for (i=0; i<port_width; ++i) {
341 data = (data << 8) | *src++;
342 }
343 if ((rc = write_data(info, wp, SWAP(data))) != 0) {
wdenkea8015b2002-10-26 16:43:06 +0000344 return (rc);
345 }
wdenkdc7c9a12003-03-26 06:55:25 +0000346 wp += port_width;
347 cnt -= port_width;
348 if (count++ > 0x800)
349 {
wdenk8bde7f72003-06-27 21:31:46 +0000350 spin_wheel();
wdenkdc7c9a12003-03-26 06:55:25 +0000351 count = 0;
352 }
wdenkea8015b2002-10-26 16:43:06 +0000353 }
354
355 if (cnt == 0) {
wdenkdc7c9a12003-03-26 06:55:25 +0000356 return (0);
wdenkea8015b2002-10-26 16:43:06 +0000357 }
358
359 /*
360 * handle unaligned tail bytes
361 */
362 data = 0;
wdenkdc7c9a12003-03-26 06:55:25 +0000363 for (i=0, cp=wp; i<port_width && cnt>0; ++i, ++cp) {
364 data = (data << 8) | *src++;
wdenkea8015b2002-10-26 16:43:06 +0000365 --cnt;
366 }
wdenkdc7c9a12003-03-26 06:55:25 +0000367 for (; i<port_width; ++i, ++cp) {
368 data = (data << 8) | (*(uchar *)cp);
369 }
370
371 return (write_data(info, wp, SWAP(data)));
372}
373
374/*-----------------------------------------------------------------------
375 * Write a word or halfword to Flash, returns:
376 * 0 - OK
377 * 1 - write timeout
378 * 2 - Flash not erased
379 */
380static int write_data (flash_info_t *info, ulong dest, FPW data)
381{
382 FPWV *addr = (FPWV *)dest;
383 ulong status;
384 int flag;
Graeme Russa60d1e52011-07-15 23:31:37 +0000385 ulong start;
wdenkdc7c9a12003-03-26 06:55:25 +0000386
387 /* Check if Flash is (sufficiently) erased */
388 if ((*addr & data) != data) {
389 printf("not erased at %08lx (%x)\n",(ulong)addr,*addr);
390 return (2);
391 }
392 /* Disable interrupts which might cause a timeout here */
393 flag = disable_interrupts();
394
395 *addr = (FPW)0x00400040; /* write setup */
396 *addr = data;
397
398 /* arm simple, non interrupt dependent timer */
Graeme Russa60d1e52011-07-15 23:31:37 +0000399 start = get_timer(0);
wdenkdc7c9a12003-03-26 06:55:25 +0000400
401 /* wait while polling the status register */
402 while (((status = *addr) & (FPW)0x00800080) != (FPW)0x00800080) {
Graeme Russa60d1e52011-07-15 23:31:37 +0000403 if (start = get_timer(start) > CONFIG_SYS_FLASH_WRITE_TOUT) {
wdenkdc7c9a12003-03-26 06:55:25 +0000404 *addr = (FPW)0x00FF00FF; /* restore read mode */
405 return (1);
406 }
wdenkea8015b2002-10-26 16:43:06 +0000407 }
408
wdenkdc7c9a12003-03-26 06:55:25 +0000409 *addr = (FPW)0x00FF00FF; /* restore read mode */
410
411 return (0);
wdenkea8015b2002-10-26 16:43:06 +0000412}
wdenkdc7c9a12003-03-26 06:55:25 +0000413
414void inline
415spin_wheel(void)
416{
417 static int p=0;
418 static char w[] = "\\/-";
419
420 printf("\010%c", w[p]);
421 (++p == 3) ? (p = 0) : 0;
422}