glamo-mmc.patch
[u-boot-openmoko/mini2440.git] / board / sc520_cdp / flash_old.c
blob3c0f6d6a6803cf7c4b75956b3a75ed69e1201264
1 /*
2 * (C) Copyright 2002
3 * Daniel Engström, Omicron Ceti AB, daniel@omicron.se
5 * (C) Copyright 2002
6 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Alex Zuepke <azu@sysgo.de>
9 * See file CREDITS for list of people who contributed to this
10 * project.
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
28 #include <common.h>
29 #include <asm/io.h>
31 ulong myflush(void);
34 #define SC520_MAX_FLASH_BANKS 3
35 #define SC520_FLASH_BANK0_BASE 0x38000000 /* BOOTCS */
36 #define SC520_FLASH_BANK1_BASE 0x30000000 /* ROMCS0 */
37 #define SC520_FLASH_BANK2_BASE 0x28000000 /* ROMCS1 */
38 #define SC520_FLASH_BANKSIZE 0x8000000
40 #define AMD29LV016_SIZE 0x200000
41 #define AMD29LV016_SECTORS 32
43 flash_info_t flash_info[SC520_MAX_FLASH_BANKS];
45 #define CMD_READ_ARRAY 0x00F000F0
46 #define CMD_UNLOCK1 0x00AA00AA
47 #define CMD_UNLOCK2 0x00550055
48 #define CMD_ERASE_SETUP 0x00800080
49 #define CMD_ERASE_CONFIRM 0x00300030
50 #define CMD_PROGRAM 0x00A000A0
51 #define CMD_UNLOCK_BYPASS 0x00200020
54 #define BIT_ERASE_DONE 0x00800080
55 #define BIT_RDY_MASK 0x00800080
56 #define BIT_PROGRAM_ERROR 0x00200020
57 #define BIT_TIMEOUT 0x80000000 /* our flag */
59 #define READY 1
60 #define ERR 2
61 #define TMO 4
63 /*-----------------------------------------------------------------------
66 ulong flash_init(void)
68 int i, j;
69 ulong size = 0;
71 for (i = 0; i < SC520_MAX_FLASH_BANKS; i++) {
72 ulong flashbase = 0;
73 int sectsize = 0;
74 if (i==0 || i==2) {
75 /* FixMe: this assumes that bank 0 and 2
76 * are mapped to the two 8Mb banks */
77 flash_info[i].flash_id =
78 (AMD_MANUFACT & FLASH_VENDMASK) |
79 (AMD_ID_LV016B & FLASH_TYPEMASK);
81 flash_info[i].size = AMD29LV016_SIZE*4;
82 flash_info[i].sector_count = AMD29LV016_SECTORS;
83 sectsize = (AMD29LV016_SIZE*4)/AMD29LV016_SECTORS;
84 } else {
85 /* FixMe: this assumes that bank1 is unmapped
86 * (or mapped to the same flash bank as BOOTCS) */
87 flash_info[i].flash_id = 0;
88 flash_info[i].size = 0;
89 flash_info[i].sector_count = 0;
90 sectsize=0;
92 memset(flash_info[i].protect, 0, CFG_MAX_FLASH_SECT);
93 switch (i) {
94 case 0:
95 flashbase = SC520_FLASH_BANK0_BASE;
96 break;
97 case 1:
98 flashbase = SC520_FLASH_BANK1_BASE;
99 break;
100 case 2:
101 flashbase = SC520_FLASH_BANK0_BASE;
102 break;
103 default:
104 panic("configured too many flash banks!\n");
107 for (j = 0; j < flash_info[i].sector_count; j++) {
108 flash_info[i].start[j] = sectsize;
109 flash_info[i].start[j] = flashbase + j * sectsize;
111 size += flash_info[i].size;
115 * Protect monitor and environment sectors
117 flash_protect(FLAG_PROTECT_SET,
118 i386boot_start-SC520_FLASH_BANK0_BASE,
119 i386boot_end-SC520_FLASH_BANK0_BASE,
120 &flash_info[0]);
122 #ifdef CFG_ENV_ADDR
123 flash_protect(FLAG_PROTECT_SET,
124 CFG_ENV_ADDR,
125 CFG_ENV_ADDR + CFG_ENV_SIZE - 1,
126 &flash_info[0]);
127 #endif
128 return size;
131 /*-----------------------------------------------------------------------
133 void flash_print_info(flash_info_t *info)
135 int i;
137 switch (info->flash_id & FLASH_VENDMASK) {
138 case (AMD_MANUFACT & FLASH_VENDMASK):
139 printf("AMD: ");
140 break;
141 default:
142 printf("Unknown Vendor ");
143 break;
146 switch (info->flash_id & FLASH_TYPEMASK) {
147 case (AMD_ID_LV016B & FLASH_TYPEMASK):
148 printf("4x Amd29LV016B (16Mbit)\n");
149 break;
150 default:
151 printf("Unknown Chip Type\n");
152 goto done;
153 break;
156 printf(" Size: %ld MB in %d Sectors\n",
157 info->size >> 20, info->sector_count);
159 printf(" Sector Start Addresses:");
160 for (i = 0; i < info->sector_count; i++) {
161 if ((i % 5) == 0) {
162 printf ("\n ");
164 printf (" %08lX%s", info->start[i],
165 info->protect[i] ? " (RO)" : " ");
167 printf ("\n");
169 done:
172 /*-----------------------------------------------------------------------
175 int flash_erase(flash_info_t *info, int s_first, int s_last)
177 ulong result;
178 int iflag, prot, sect;
179 int rc = ERR_OK;
180 int chip1, chip2;
182 /* first look for protection bits */
184 if (info->flash_id == FLASH_UNKNOWN) {
185 return ERR_UNKNOWN_FLASH_TYPE;
188 if ((s_first < 0) || (s_first > s_last)) {
189 return ERR_INVAL;
192 if ((info->flash_id & FLASH_VENDMASK) !=
193 (AMD_MANUFACT & FLASH_VENDMASK)) {
194 return ERR_UNKNOWN_FLASH_VENDOR;
197 prot = 0;
198 for (sect=s_first; sect<=s_last; ++sect) {
199 if (info->protect[sect]) {
200 prot++;
203 if (prot) {
204 return ERR_PROTECTED;
208 * Disable interrupts which might cause a timeout
209 * here. Remember that our exception vectors are
210 * at address 0 in the flash, and we don't want a
211 * (ticker) exception to happen while the flash
212 * chip is in programming mode.
214 iflag = disable_interrupts();
216 /* Start erase on unprotected sectors */
217 for (sect = s_first; sect<=s_last && !ctrlc(); sect++) {
218 printf("Erasing sector %2d ... ", sect);
220 /* arm simple, non interrupt dependent timer */
221 reset_timer();
223 if (info->protect[sect] == 0) {
224 /* not protected */
225 ulong addr = info->start[sect];
227 writel(CMD_UNLOCK1, addr + 1);
228 writel(CMD_UNLOCK2, addr + 2);
229 writel(CMD_ERASE_SETUP, addr + 1);
231 writel(CMD_UNLOCK1, addr + 1);
232 writel(CMD_UNLOCK2, addr + 2);
233 writel(CMD_ERASE_CONFIRM, addr);
236 /* wait until flash is ready */
237 chip1 = chip2 = 0;
239 do {
240 result = readl(addr);
242 /* check timeout */
243 if (get_timer(0) > CFG_FLASH_ERASE_TOUT) {
244 writel(CMD_READ_ARRAY, addr + 1);
245 chip1 = TMO;
246 break;
249 if (!chip1 && (result & 0xFFFF) & BIT_ERASE_DONE) {
250 chip1 = READY;
253 if (!chip1 && (result & 0xFFFF) & BIT_PROGRAM_ERROR) {
254 chip1 = ERR;
257 if (!chip2 && (result >> 16) & BIT_ERASE_DONE) {
258 chip2 = READY;
261 if (!chip2 && (result >> 16) & BIT_PROGRAM_ERROR) {
262 chip2 = ERR;
265 } while (!chip1 || !chip2);
267 writel(CMD_READ_ARRAY, addr + 1);
269 if (chip1 == ERR || chip2 == ERR) {
270 rc = ERR_PROG_ERROR;
271 goto outahere;
274 if (chip1 == TMO) {
275 rc = ERR_TIMOUT;
276 goto outahere;
279 printf("ok.\n");
280 } else { /* it was protected */
282 printf("protected!\n");
286 if (ctrlc()) {
287 printf("User Interrupt!\n");
290 outahere:
291 /* allow flash to settle - wait 10 ms */
292 udelay(10000);
294 if (iflag) {
295 enable_interrupts();
298 return rc;
301 /*-----------------------------------------------------------------------
302 * Copy memory to flash
305 volatile static int write_word(flash_info_t *info, ulong dest, ulong data)
307 ulong addr = dest;
308 ulong result;
309 int rc = ERR_OK;
310 int iflag;
311 int chip1, chip2;
314 * Check if Flash is (sufficiently) erased
316 result = readl(addr);
317 if ((result & data) != data) {
318 return ERR_NOT_ERASED;
322 * Disable interrupts which might cause a timeout
323 * here. Remember that our exception vectors are
324 * at address 0 in the flash, and we don't want a
325 * (ticker) exception to happen while the flash
326 * chip is in programming mode.
328 iflag = disable_interrupts();
330 writel(CMD_UNLOCK1, addr + 1);
331 writel(CMD_UNLOCK2, addr + 2);
332 writel(CMD_UNLOCK_BYPASS, addr + 1);
333 writel(addr, CMD_PROGRAM);
334 writel(addr, data);
336 /* arm simple, non interrupt dependent timer */
337 reset_timer();
339 /* wait until flash is ready */
340 chip1 = chip2 = 0;
341 do {
342 result = readl(addr);
344 /* check timeout */
345 if (get_timer(0) > CFG_FLASH_ERASE_TOUT) {
346 chip1 = ERR | TMO;
347 break;
350 if (!chip1 && ((result & 0x80) == (data & 0x80))) {
351 chip1 = READY;
354 if (!chip1 && ((result & 0xFFFF) & BIT_PROGRAM_ERROR)) {
355 result = readl(addr);
357 if ((result & 0x80) == (data & 0x80)) {
358 chip1 = READY;
359 } else {
360 chip1 = ERR;
364 if (!chip2 && ((result & (0x80 << 16)) == (data & (0x80 << 16)))) {
365 chip2 = READY;
368 if (!chip2 && ((result >> 16) & BIT_PROGRAM_ERROR)) {
369 result = readl(addr);
371 if ((result & (0x80 << 16)) == (data & (0x80 << 16))) {
372 chip2 = READY;
373 } else {
374 chip2 = ERR;
378 } while (!chip1 || !chip2);
380 writel(CMD_READ_ARRAY, addr);
382 if (chip1 == ERR || chip2 == ERR || readl(addr) != data) {
383 rc = ERR_PROG_ERROR;
386 if (iflag) {
387 enable_interrupts();
390 return rc;
393 /*-----------------------------------------------------------------------
394 * Copy memory to flash.
397 int write_buff(flash_info_t *info, uchar *src, ulong addr, ulong cnt)
399 ulong cp, wp, data;
400 int l;
401 int i, rc;
403 wp = (addr & ~3); /* get lower word aligned address */
406 * handle unaligned start bytes
408 if ((l = addr - wp) != 0) {
409 data = 0;
410 for (i=0, cp=wp; i<l; ++i, ++cp) {
411 data = (data >> 8) | (*(uchar *)cp << 24);
413 for (; i<4 && cnt>0; ++i) {
414 data = (data >> 8) | (*src++ << 24);
415 --cnt;
416 ++cp;
418 for (; cnt==0 && i<4; ++i, ++cp) {
419 data = (data >> 8) | (*(uchar *)cp << 24);
422 if ((rc = write_word(info, wp, data)) != 0) {
423 return rc;
425 wp += 4;
429 * handle word aligned part
431 while (cnt >= 4) {
432 data = *((vu_long*)src);
433 if ((rc = write_word(info, wp, data)) != 0) {
434 return rc;
436 src += 4;
437 wp += 4;
438 cnt -= 4;
441 if (cnt == 0) {
442 return ERR_OK;
446 * handle unaligned tail bytes
448 data = 0;
449 for (i=0, cp=wp; i<4 && cnt>0; ++i, ++cp) {
450 data = (data >> 8) | (*src++ << 24);
451 --cnt;
453 for (; i<4; ++i, ++cp) {
454 data = (data >> 8) | (*(uchar *)cp << 24);
457 return write_word(info, wp, data);