]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/csb226/flash.c
powerpc/83xx: fix sdram initialization for keymile boards
[karo-tx-uboot.git] / board / csb226 / flash.c
1 /*
2  * (C) Copyright 2002
3  * Kyle Harris, Nexus Technologies, Inc. kharris@nexus-tech.net
4  *
5  * (C) Copyright 2002
6  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7  * Marius Groeger <mgroeger@sysgo.de>
8  *
9  * (C) Copyright 2002
10  * Robert Schwebel, Pengutronix, <r.schwebel@pengutronix.de>
11  *
12  * (C) Copyright 2003 (2 x 16 bit Flash bank patches)
13  * Rolf Peukert, IMMS gGmbH, <rolf.peukert@imms.de>
14  *
15  * See file CREDITS for list of people who contributed to this
16  * project.
17  *
18  * This program is free software; you can redistribute it and/or
19  * modify it under the terms of the GNU General Public License as
20  * published by the Free Software Foundation; either version 2 of
21  * the License, or (at your option) any later version.
22  *
23  * This program is distributed in the hope that it will be useful,
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  * GNU General Public License for more details.
27  *
28  * You should have received a copy of the GNU General Public License
29  * along with this program; if not, write to the Free Software
30  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
31  * MA 02111-1307 USA
32  */
33
34 #include <common.h>
35 #include <asm/arch/pxa-regs.h>
36
37 #define FLASH_BANK_SIZE 0x02000000
38 #define MAIN_SECT_SIZE  0x40000         /* 2x16 = 256k per sector */
39
40 flash_info_t    flash_info[CONFIG_SYS_MAX_FLASH_BANKS];
41
42
43 /**
44  * flash_init: - initialize data structures for flash chips
45  *
46  * @return: size of the flash
47  */
48
49 ulong flash_init(void)
50 {
51         int i, j;
52         ulong size = 0;
53
54         for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
55                 ulong flashbase = 0;
56                 flash_info[i].flash_id =
57                         (INTEL_MANUFACT & FLASH_VENDMASK) |
58                         (INTEL_ID_28F128J3 & FLASH_TYPEMASK);
59                 flash_info[i].size = FLASH_BANK_SIZE;
60                 flash_info[i].sector_count = CONFIG_SYS_MAX_FLASH_SECT;
61                 memset(flash_info[i].protect, 0, CONFIG_SYS_MAX_FLASH_SECT);
62
63                 switch (i) {
64                 case 0:
65                         flashbase = PHYS_FLASH_1;
66                         break;
67                 default:
68                         panic("configured too many flash banks!\n");
69                         break;
70                 }
71                 for (j = 0; j < flash_info[i].sector_count; j++) {
72                         flash_info[i].start[j] = flashbase + j*MAIN_SECT_SIZE;
73                 }
74                 size += flash_info[i].size;
75         }
76
77         /* Protect monitor and environment sectors */
78         flash_protect(FLAG_PROTECT_SET,
79                         CONFIG_SYS_FLASH_BASE,
80                         CONFIG_SYS_FLASH_BASE + monitor_flash_len - 1,
81                         &flash_info[0]);
82
83         flash_protect(FLAG_PROTECT_SET,
84                         CONFIG_ENV_ADDR,
85                         CONFIG_ENV_ADDR + CONFIG_ENV_SIZE - 1,
86                         &flash_info[0]);
87
88         return size;
89 }
90
91
92 /**
93  * flash_print_info: - print information about the flash situation
94  */
95
96 void flash_print_info  (flash_info_t *info)
97 {
98         int i, j;
99
100         for (j=0; j<CONFIG_SYS_MAX_FLASH_BANKS; j++) {
101
102                 switch (info->flash_id & FLASH_VENDMASK) {
103                 case (INTEL_MANUFACT & FLASH_VENDMASK):
104                         printf ("Intel: ");
105                         break;
106                 default:
107                         printf ("Unknown Vendor ");
108                         break;
109                 }
110
111                 switch (info->flash_id & FLASH_TYPEMASK) {
112                 case (INTEL_ID_28F128J3 & FLASH_TYPEMASK):
113                         printf("28F128J3 (128Mbit)\n");
114                         break;
115                 default:
116                         printf("Unknown Chip Type\n");
117                         return;
118                 }
119
120                 printf("  Size: %ld MB in %d Sectors\n",
121                         info->size >> 20, info->sector_count);
122
123                 printf("  Sector Start Addresses:");
124                 for (i = 0; i < info->sector_count; i++) {
125                         if ((i % 5) == 0) printf ("\n   ");
126
127                         printf (" %08lX%s", info->start[i],
128                                 info->protect[i] ? " (RO)" : "     ");
129                 }
130                 printf ("\n");
131                 info++;
132         }
133 }
134
135
136 /**
137  * flash_erase: - erase flash sectors
138  */
139
140 int flash_erase(flash_info_t *info, int s_first, int s_last)
141 {
142         int flag, prot, sect;
143         int rc = ERR_OK;
144         ulong start;
145
146         if (info->flash_id == FLASH_UNKNOWN)
147                 return ERR_UNKNOWN_FLASH_TYPE;
148
149         if ((s_first < 0) || (s_first > s_last)) {
150                 return ERR_INVAL;
151         }
152
153         if ((info->flash_id & FLASH_VENDMASK) != (INTEL_MANUFACT & FLASH_VENDMASK))
154                 return ERR_UNKNOWN_FLASH_VENDOR;
155
156         prot = 0;
157         for (sect=s_first; sect<=s_last; ++sect) {
158                 if (info->protect[sect]) prot++;
159         }
160
161         if (prot) return ERR_PROTECTED;
162
163         /*
164          * Disable interrupts which might cause a timeout
165          * here. Remember that our exception vectors are
166          * at address 0 in the flash, and we don't want a
167          * (ticker) exception to happen while the flash
168          * chip is in programming mode.
169          */
170
171         flag = disable_interrupts();
172
173         /* Start erase on unprotected sectors */
174         for (sect = s_first; sect<=s_last && !ctrlc(); sect++) {
175
176                 printf("Erasing sector %2d ... ", sect);
177
178                 /* arm simple, non interrupt dependent timer */
179                 start = get_timer(0);
180
181                 if (info->protect[sect] == 0) { /* not protected */
182                         u32 * volatile addr = (u32 * volatile)(info->start[sect]);
183
184                         /* erase sector:                                    */
185                         /* The strata flashs are aligned side by side on    */
186                         /* the data bus, so we have to write the commands   */
187                         /* to both chips here:                              */
188
189                         *addr = 0x00200020;     /* erase setup */
190                         *addr = 0x00D000D0;     /* erase confirm */
191
192                         while ((*addr & 0x00800080) != 0x00800080) {
193                                 if (get_timer(start) > CONFIG_SYS_FLASH_ERASE_TOUT) {
194                                         *addr = 0x00B000B0; /* suspend erase*/
195                                         *addr = 0x00FF00FF; /* read mode    */
196                                         rc = ERR_TIMOUT;
197                                         goto outahere;
198                                 }
199                         }
200                         *addr = 0x00500050; /* clear status register cmd.   */
201                         *addr = 0x00FF00FF; /* reset to read mode           */
202                 }
203                 printf("ok.\n");
204         }
205         if (ctrlc()) printf("User Interrupt!\n");
206
207 outahere:
208         /* allow flash to settle - wait 10 ms */
209         udelay_masked(10000);
210
211         if (flag) enable_interrupts();
212
213         return rc;
214 }
215
216 /**
217  * write_long: - copy memory to flash, assume a bank of 2 devices with 16bit each
218  */
219
220 static int write_long (flash_info_t *info, ulong dest, ulong data)
221 {
222         u32 * volatile addr = (u32 * volatile)dest, val;
223         int rc = ERR_OK;
224         int flag;
225         ulong start;
226
227         /* read array command - just for the case... */
228         *addr = 0x00FF00FF;
229
230         /* Check if Flash is (sufficiently) erased */
231         if ((*addr & data) != data) return ERR_NOT_ERASED;
232
233         /*
234          * Disable interrupts which might cause a timeout
235          * here. Remember that our exception vectors are
236          * at address 0 in the flash, and we don't want a
237          * (ticker) exception to happen while the flash
238          * chip is in programming mode.
239          */
240         flag = disable_interrupts();
241
242         /* clear status register command */
243         *addr = 0x00500050;
244
245         /* program set-up command */
246         *addr = 0x00400040;
247
248         /* latch address/data */
249         *addr = data;
250
251         /* arm simple, non interrupt dependent timer */
252         start = get_timer(0);
253
254         /* wait while polling the status register */
255         while(((val = *addr) & 0x00800080) != 0x00800080) {
256                 if (get_timer(start) > CONFIG_SYS_FLASH_WRITE_TOUT) {
257                         rc = ERR_TIMOUT;
258                         /* suspend program command */
259                         *addr = 0x00B000B0;
260                         goto outahere;
261                 }
262         }
263
264         /* check for errors */
265         if(val & 0x001A001A) {
266                 printf("\nFlash write error %02x at address %08lx\n",
267                         (int)val, (unsigned long)dest);
268                 if(val & 0x00080008) {
269                         printf("Voltage range error.\n");
270                         rc = ERR_PROG_ERROR;
271                         goto outahere;
272                 }
273                 if(val & 0x00020002) {
274                         printf("Device protect error.\n");
275                         rc = ERR_PROTECTED;
276                         goto outahere;
277                 }
278                 if(val & 0x00100010) {
279                         printf("Programming error.\n");
280                         rc = ERR_PROG_ERROR;
281                         goto outahere;
282                 }
283                 rc = ERR_PROG_ERROR;
284                 goto outahere;
285         }
286
287 outahere:
288         /* read array command */
289         *addr = 0x00FF00FF;
290         if (flag) enable_interrupts();
291
292         return rc;
293 }
294
295
296 /**
297  * write_buf: - Copy memory to flash.
298  *
299  * @param info:
300  * @param src:  source of copy transaction
301  * @param addr: where to copy to
302  * @param cnt:  number of bytes to copy
303  *
304  * @return      error code
305  */
306
307 /* "long" version, uses 32bit words */
308 int write_buff (flash_info_t *info, uchar *src, ulong addr, ulong cnt)
309 {
310         ulong cp, wp;
311         ulong data;
312         int l;
313         int i, rc;
314
315         wp = (addr & ~3);       /* get lower word aligned address */
316
317         /*
318          * handle unaligned start bytes
319          */
320         if ((l = addr - wp) != 0) {
321                 data = 0;
322                 for (i=0, cp=wp; i<l; ++i, ++cp) {
323                         data = (data >> 8) | (*(uchar *)cp << 24);
324                 }
325                 for (; i<4 && cnt>0; ++i) {
326                         data = (data >> 8) | (*src++ << 24);
327                         --cnt;
328                         ++cp;
329                 }
330                 for (; cnt==0 && i<4; ++i, ++cp) {
331                         data = (data >> 8) | (*(uchar *)cp << 24);
332                 }
333
334                 if ((rc = write_long(info, wp, data)) != 0) {
335                         return (rc);
336                 }
337                 wp += 4;
338         }
339
340         /*
341          * handle word aligned part
342          */
343         while (cnt >= 4) {
344                 data = *((ulong*)src);
345                 if ((rc = write_long(info, wp, data)) != 0) {
346                         return (rc);
347                 }
348                 src += 4;
349                 wp  += 4;
350                 cnt -= 4;
351         }
352
353         if (cnt == 0) return ERR_OK;
354
355         /*
356          * handle unaligned tail bytes
357          */
358         data = 0;
359         for (i=0, cp=wp; i<4 && cnt>0; ++i, ++cp) {
360                 data = (data >> 8) | (*src++ << 24);
361                 --cnt;
362         }
363         for (; i<4; ++i, ++cp) {
364                 data = (data >> 8) | (*(uchar *)cp << 24);
365         }
366
367         return write_long(info, wp, data);
368 }