blob: 828c2f2054f68859c36df99299c243894466a3c0 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * (C) Copyright 2002
6 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Marius Groeger <mgroeger@sysgo.de>
8 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
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.
16 *
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.
21 *
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
26 */
27
28#include <common.h>
29#include <command.h>
30#include <devices.h>
31#include <version.h>
32#include <net.h>
33
wdenkc8434db2003-03-26 06:55:25 +000034#if (CONFIG_COMMANDS & CFG_CMD_NAND)
35void nand_init (void);
36#endif
wdenkc6097192002-11-03 00:24:07 +000037
38const char version_string[] =
39 U_BOOT_VERSION" (" __DATE__ " - " __TIME__ ")";
40
41#ifdef CONFIG_DRIVER_CS8900
42extern void cs8900_get_enetaddr (uchar * addr);
43#endif
44
45/*
46 * Begin and End of memory area for malloc(), and current "brk"
47 */
48static ulong mem_malloc_start = 0;
49static ulong mem_malloc_end = 0;
50static ulong mem_malloc_brk = 0;
51
wdenk9dd2b882002-12-03 21:28:10 +000052static
wdenk9dd2b882002-12-03 21:28:10 +000053void mem_malloc_init (ulong dest_addr)
wdenkc6097192002-11-03 00:24:07 +000054{
55 mem_malloc_start = dest_addr;
wdenk699b13a2002-11-03 18:03:52 +000056 mem_malloc_end = dest_addr + CFG_MALLOC_LEN;
wdenkc6097192002-11-03 00:24:07 +000057 mem_malloc_brk = mem_malloc_start;
58
59 memset ((void *) mem_malloc_start, 0,
60 mem_malloc_end - mem_malloc_start);
61}
62
63void *sbrk (ptrdiff_t increment)
64{
65 ulong old = mem_malloc_brk;
66 ulong new = old + increment;
67
68 if ((new < mem_malloc_start) || (new > mem_malloc_end)) {
69 return (NULL);
70 }
71 mem_malloc_brk = new;
72
73 return ((void *) old);
74}
75
76/************************************************************************
77 * Init Utilities *
78 ************************************************************************
79 * Some of this code should be moved into the core functions,
80 * or dropped completely,
81 * but let's get it working (again) first...
82 */
83
84static int init_baudrate (void)
85{
86 DECLARE_GLOBAL_DATA_PTR;
87
88 uchar tmp[64]; /* long enough for environment variables */
89 int i = getenv_r ("baudrate", tmp, sizeof (tmp));
90
91 gd->baudrate = (i > 0)
92 ? (int) simple_strtoul (tmp, NULL, 10)
93 : CONFIG_BAUDRATE;
94
95 return (0);
96}
97
98static int display_banner (void)
99{
100
101 printf ("\n\n%s\n\n", version_string);
102 printf ("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
103 _armboot_start, _armboot_end_data, _armboot_end);
104#ifdef CONFIG_MODEM_SUPPORT
105 puts ("Modem Support enabled\n");
106#endif
107#ifdef CONFIG_USE_IRQ
108 printf ("IRQ Stack: %08lx\n", IRQ_STACK_START);
109 printf ("FIQ Stack: %08lx\n", FIQ_STACK_START);
110#endif
111 return (0);
112}
113
114/*
115 * WARNING: this code looks "cleaner" than the PowerPC version, but
116 * has the disadvantage that you either get nothing, or everything.
117 * On PowerPC, you might see "DRAM: " before the system hangs - which
118 * gives a simple yet clear indication which part of the
119 * initialization if failing.
120 */
121static int display_dram_config (void)
122{
123 DECLARE_GLOBAL_DATA_PTR;
124 int i;
125
126 puts ("DRAM Configuration:\n");
127
128 for(i=0; i<CONFIG_NR_DRAM_BANKS; i++) {
129 printf ("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
130 print_size (gd->bd->bi_dram[i].size, "\n");
131 }
132
133 return (0);
134}
135
136static void display_flash_config (ulong size)
137{
138 puts ("Flash: ");
139 print_size (size, "\n");
140}
141
142
143
144/*
145 * Breath some life into the board...
146 *
147 * Initialize an SMC for serial comms, and carry out some hardware
148 * tests.
149 *
150 * The first part of initialization is running from Flash memory;
151 * its main purpose is to initialize the RAM so that we
152 * can relocate the monitor code to RAM.
153 */
154
155/*
156 * All attempts to come up with a "common" initialization sequence
157 * that works for all boards and architectures failed: some of the
158 * requirements are just _too_ different. To get rid of the resulting
159 * mess of board dependend #ifdef'ed code we now make the whole
160 * initialization sequence configurable to the user.
161 *
162 * The requirements for any new initalization function is simple: it
163 * receives a pointer to the "global data" structure as it's only
164 * argument, and returns an integer return code, where 0 means
165 * "continue" and != 0 means "fatal error, hang the system".
166 */
167typedef int (init_fnc_t) (void);
168
169init_fnc_t *init_sequence[] = {
170 cpu_init, /* basic cpu dependent setup */
171 board_init, /* basic board dependent setup */
172 interrupt_init, /* set up exceptions */
173 env_init, /* initialize environment */
174 init_baudrate, /* initialze baudrate settings */
175 serial_init, /* serial communications setup */
wdenk699b13a2002-11-03 18:03:52 +0000176 display_banner, /* say that we are here */
wdenkc6097192002-11-03 00:24:07 +0000177 dram_init, /* configure available RAM banks */
178 display_dram_config,
wdenk1fe2c702003-03-06 21:55:29 +0000179#if defined(CONFIG_VCMA9)
180 checkboard,
181#endif
wdenkc6097192002-11-03 00:24:07 +0000182 NULL,
183};
184
185void start_armboot (void)
186{
187 DECLARE_GLOBAL_DATA_PTR;
188
189 ulong size;
190 gd_t gd_data;
191 bd_t bd_data;
192 init_fnc_t **init_fnc_ptr;
wdenk4fc95692003-02-28 00:49:47 +0000193#if defined(CONFIG_VFD)
wdenkc6097192002-11-03 00:24:07 +0000194 unsigned long addr;
195#endif
196
197 /* Pointer is writable since we allocated a register for it */
198 gd = &gd_data;
199 memset (gd, 0, sizeof (gd_t));
200 gd->bd = &bd_data;
201 memset (gd->bd, 0, sizeof (bd_t));
202
203 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
204 if ((*init_fnc_ptr)() != 0) {
205 hang ();
206 }
207 }
208
209 /* configure available FLASH banks */
210 size = flash_init ();
211 display_flash_config (size);
212
213#ifdef CONFIG_VFD
wdenk4fc95692003-02-28 00:49:47 +0000214# ifndef PAGE_SIZE
215# define PAGE_SIZE 4096
216# endif
wdenkc6097192002-11-03 00:24:07 +0000217 /*
218 * reserve memory for VFD display (always full pages)
219 */
220 /* armboot_real_end is defined in the board-specific linker script */
221 addr = (_armboot_real_end + (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1);
222 size = vfd_setmem (addr);
223 gd->fb_base = addr;
224 /* round to the next page boundary */
225 addr += size;
226 addr = (addr + (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1);
227 mem_malloc_init (addr);
228#else
229 /* armboot_real_end is defined in the board-specific linker script */
230 mem_malloc_init (_armboot_real_end);
231#endif /* CONFIG_VFD */
232
wdenkc8434db2003-03-26 06:55:25 +0000233#if (CONFIG_COMMANDS & CFG_CMD_NAND)
234 nand_init(); /* go init the NAND */
235#endif
236
wdenk4fc95692003-02-28 00:49:47 +0000237 /* initialize environment */
238 env_relocate ();
239
wdenkc6097192002-11-03 00:24:07 +0000240#ifdef CONFIG_VFD
241 /* must do this after the framebuffer is allocated */
242 drv_vfd_init();
wdenkc6097192002-11-03 00:24:07 +0000243#endif
wdenkc6097192002-11-03 00:24:07 +0000244
245 /* IP Address */
246 bd_data.bi_ip_addr = getenv_IPaddr ("ipaddr");
247
248 /* MAC Address */
249 {
250 int i;
251 ulong reg;
252 char *s, *e;
253 uchar tmp[64];
254
255 i = getenv_r ("ethaddr", tmp, sizeof (tmp));
256 s = (i > 0) ? tmp : NULL;
257
258 for (reg = 0; reg < 6; ++reg) {
259 bd_data.bi_enetaddr[reg] = s ? simple_strtoul (s, &e, 16) : 0;
260 if (s)
261 s = (*e) ? e + 1 : e;
262 }
263 }
264
265#if defined(CONFIG_MISC_INIT_R)
266 /* miscellaneous platform dependent initialisations */
267 misc_init_r ();
268#endif
269
270 /* enable exceptions */
271 enable_interrupts ();
272
273#ifdef CONFIG_DRIVER_CS8900
wdenk4fc95692003-02-28 00:49:47 +0000274 cs8900_get_enetaddr (gd->bd->bi_enetaddr);
wdenkc6097192002-11-03 00:24:07 +0000275#endif
276
277#ifdef BOARD_POST_INIT
278 board_post_init ();
279#endif
280
wdenkc6097192002-11-03 00:24:07 +0000281 /* main_loop() can return to retry autoboot, if so just run it again. */
282 for (;;) {
283 main_loop ();
284 }
285
286 /* NOTREACHED - no way out of command loop except booting */
287}
288
289void hang (void)
290{
291 puts ("### ERROR ### Please RESET the board ###\n");
292 for (;;);
293}
294
295#ifdef CONFIG_MODEM_SUPPORT
296/* called from main loop (common/main.c) */
297extern void dbg(const char *fmt, ...);
298int mdm_init (void)
299{
300 char env_str[16];
301 char *init_str;
302 int i;
303 extern char console_buffer[];
304 static inline void mdm_readline(char *buf, int bufsiz);
305 extern void enable_putc(void);
306 extern int hwflow_onoff(int);
307
308 enable_putc(); /* enable serial_putc() */
309
310#ifdef CONFIG_HWFLOW
311 init_str = getenv("mdm_flow_control");
312 if (init_str && (strcmp(init_str, "rts/cts") == 0))
313 hwflow_onoff (1);
314 else
315 hwflow_onoff(-1);
316#endif
317
318 for (i = 1;;i++) {
319 sprintf(env_str, "mdm_init%d", i);
320 if ((init_str = getenv(env_str)) != NULL) {
321 serial_puts(init_str);
322 serial_puts("\n");
323 for(;;) {
324 mdm_readline(console_buffer, CFG_CBSIZE);
325 dbg("ini%d: [%s]", i, console_buffer);
326
327 if ((strcmp(console_buffer, "OK") == 0) ||
328 (strcmp(console_buffer, "ERROR") == 0)) {
329 dbg("ini%d: cmd done", i);
330 break;
331 } else /* in case we are originating call ... */
332 if (strncmp(console_buffer, "CONNECT", 7) == 0) {
333 dbg("ini%d: connect", i);
334 return 0;
335 }
336 }
337 } else
338 break; /* no init string - stop modem init */
339
340 udelay(100000);
341 }
342
343 udelay(100000);
344
345 /* final stage - wait for connect */
346 for(;i > 1;) { /* if 'i' > 1 - wait for connection
347 message from modem */
348 mdm_readline(console_buffer, CFG_CBSIZE);
349 dbg("ini_f: [%s]", console_buffer);
350 if (strncmp(console_buffer, "CONNECT", 7) == 0) {
351 dbg("ini_f: connected");
352 return 0;
353 }
354 }
355
356 return 0;
357}
358
359/* 'inline' - We have to do it fast */
360static inline void mdm_readline(char *buf, int bufsiz)
361{
362 char c;
363 char *p;
364 int n;
365
366 n = 0;
367 p = buf;
368 for(;;) {
369 c = serial_getc();
370
371 /* dbg("(%c)", c); */
372
373 switch(c) {
374 case '\r':
375 break;
376 case '\n':
377 *p = '\0';
378 return;
379
380 default:
381 if(n++ > bufsiz) {
382 *p = '\0';
383 return; /* sanity check */
384 }
385 *p = c;
386 p++;
387 break;
388 }
389 }
390}
391#endif /* CONFIG_MODEM_SUPPORT */