Blackfin: support boards with no external memory
[platform/kernel/u-boot.git] / lib_blackfin / board.c
1 /*
2  * U-boot - board.c First C file to be called contains init routines
3  *
4  * Copyright (c) 2005-2008 Analog Devices Inc.
5  *
6  * (C) Copyright 2000-2004
7  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8  *
9  * Licensed under the GPL-2 or later.
10  */
11
12 #include <common.h>
13 #include <command.h>
14 #include <stdio_dev.h>
15 #include <environment.h>
16 #include <malloc.h>
17 #include <net.h>
18 #include <timestamp.h>
19 #include <status_led.h>
20 #include <version.h>
21
22 #include <asm/cplb.h>
23 #include <asm/mach-common/bits/mpu.h>
24
25 #ifdef CONFIG_CMD_NAND
26 #include <nand.h>       /* cannot even include nand.h if it isnt configured */
27 #endif
28
29 #ifdef CONFIG_BITBANGMII
30 #include <miiphy.h>
31 #endif
32
33 #if defined(CONFIG_POST)
34 #include <post.h>
35 int post_flag;
36 #endif
37
38 DECLARE_GLOBAL_DATA_PTR;
39
40 const char version_string[] = U_BOOT_VERSION " ("U_BOOT_DATE" - "U_BOOT_TIME")";
41
42 __attribute__((always_inline))
43 static inline void serial_early_puts(const char *s)
44 {
45 #ifdef CONFIG_DEBUG_EARLY_SERIAL
46         serial_puts("Early: ");
47         serial_puts(s);
48 #endif
49 }
50
51 static int display_banner(void)
52 {
53         printf("\n\n%s\n\n", version_string);
54         printf("CPU:   ADSP " MK_STR(CONFIG_BFIN_CPU) " "
55                 "(Detected Rev: 0.%d) "
56                 "(%s boot)\n",
57                 bfin_revid(),
58                 get_bfin_boot_mode(CONFIG_BFIN_BOOT_MODE));
59         return 0;
60 }
61
62 static int init_baudrate(void)
63 {
64         char baudrate[15];
65         int i = getenv_r("baudrate", baudrate, sizeof(baudrate));
66         gd->bd->bi_baudrate = gd->baudrate = (i > 0)
67             ? simple_strtoul(baudrate, NULL, 10)
68             : CONFIG_BAUDRATE;
69         return 0;
70 }
71
72 static void display_global_data(void)
73 {
74 #ifdef CONFIG_DEBUG_EARLY_SERIAL
75         bd_t *bd;
76         bd = gd->bd;
77         printf(" gd: %p\n", gd);
78         printf(" |-flags: %lx\n", gd->flags);
79         printf(" |-board_type: %lx\n", gd->board_type);
80         printf(" |-baudrate: %lu\n", gd->baudrate);
81         printf(" |-have_console: %lx\n", gd->have_console);
82         printf(" |-ram_size: %lx\n", gd->ram_size);
83         printf(" |-reloc_off: %lx\n", gd->reloc_off);
84         printf(" |-env_addr: %lx\n", gd->env_addr);
85         printf(" |-env_valid: %lx\n", gd->env_valid);
86         printf(" |-jt(%p): %p\n", gd->jt, *(gd->jt));
87         printf(" \\-bd: %p\n", gd->bd);
88         printf("   |-bi_baudrate: %x\n", bd->bi_baudrate);
89         printf("   |-bi_ip_addr: %lx\n", bd->bi_ip_addr);
90         printf("   |-bi_boot_params: %lx\n", bd->bi_boot_params);
91         printf("   |-bi_memstart: %lx\n", bd->bi_memstart);
92         printf("   |-bi_memsize: %lx\n", bd->bi_memsize);
93         printf("   |-bi_flashstart: %lx\n", bd->bi_flashstart);
94         printf("   |-bi_flashsize: %lx\n", bd->bi_flashsize);
95         printf("   \\-bi_flashoffset: %lx\n", bd->bi_flashoffset);
96 #endif
97 }
98
99 #define CPLB_PAGE_SIZE (4 * 1024 * 1024)
100 #define CPLB_PAGE_MASK (~(CPLB_PAGE_SIZE - 1))
101 void init_cplbtables(void)
102 {
103         volatile uint32_t *ICPLB_ADDR, *ICPLB_DATA;
104         volatile uint32_t *DCPLB_ADDR, *DCPLB_DATA;
105         uint32_t extern_memory;
106         size_t i;
107
108         void icplb_add(uint32_t addr, uint32_t data)
109         {
110                 *(ICPLB_ADDR + i) = addr;
111                 *(ICPLB_DATA + i) = data;
112         }
113         void dcplb_add(uint32_t addr, uint32_t data)
114         {
115                 *(DCPLB_ADDR + i) = addr;
116                 *(DCPLB_DATA + i) = data;
117         }
118
119         /* populate a few common entries ... we'll let
120          * the memory map and cplb exception handler do
121          * the rest of the work.
122          */
123         i = 0;
124         ICPLB_ADDR = (uint32_t *)ICPLB_ADDR0;
125         ICPLB_DATA = (uint32_t *)ICPLB_DATA0;
126         DCPLB_ADDR = (uint32_t *)DCPLB_ADDR0;
127         DCPLB_DATA = (uint32_t *)DCPLB_DATA0;
128
129         icplb_add(0xFFA00000, L1_IMEMORY);
130         dcplb_add(0xFF800000, L1_DMEMORY);
131         ++i;
132
133         if (CONFIG_MEM_SIZE) {
134                 uint32_t mbase = CONFIG_SYS_MONITOR_BASE;
135                 uint32_t mend  = mbase + CONFIG_SYS_MONITOR_LEN;
136                 mbase &= CPLB_PAGE_MASK;
137                 mend &= CPLB_PAGE_MASK;
138
139                 icplb_add(mbase, SDRAM_IKERNEL);
140                 dcplb_add(mbase, SDRAM_DKERNEL);
141                 ++i;
142
143                 /*
144                  * If the monitor crosses a 4 meg boundary, we'll need
145                  * to lock two entries for it.  We assume it doesn't
146                  * cross two 4 meg boundaries ...
147                  */
148                 if (mbase != mend) {
149                         icplb_add(mend, SDRAM_IKERNEL);
150                         dcplb_add(mend, SDRAM_DKERNEL);
151                         ++i;
152                 }
153         }
154
155         icplb_add(0x20000000, SDRAM_INON_CHBL);
156         dcplb_add(0x20000000, SDRAM_EBIU);
157         ++i;
158
159         /* Add entries for the rest of external RAM up to the bootrom */
160         extern_memory = 0;
161
162 #ifdef CONFIG_DEBUG_NULL_PTR
163         icplb_add(extern_memory, (SDRAM_IKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
164         dcplb_add(extern_memory, (SDRAM_DKERNEL & ~PAGE_SIZE_MASK) | PAGE_SIZE_1KB);
165         ++i;
166         icplb_add(extern_memory, SDRAM_IKERNEL);
167         dcplb_add(extern_memory, SDRAM_DKERNEL);
168         extern_memory += CPLB_PAGE_SIZE;
169         ++i;
170 #endif
171
172         while (i < 16 && extern_memory < (CONFIG_SYS_MONITOR_BASE & CPLB_PAGE_MASK)) {
173                 icplb_add(extern_memory, SDRAM_IGENERIC);
174                 dcplb_add(extern_memory, SDRAM_DGENERIC);
175                 extern_memory += CPLB_PAGE_SIZE;
176                 ++i;
177         }
178         while (i < 16) {
179                 icplb_add(0, 0);
180                 dcplb_add(0, 0);
181                 ++i;
182         }
183 }
184
185 /*
186  * All attempts to come up with a "common" initialization sequence
187  * that works for all boards and architectures failed: some of the
188  * requirements are just _too_ different. To get rid of the resulting
189  * mess of board dependend #ifdef'ed code we now make the whole
190  * initialization sequence configurable to the user.
191  *
192  * The requirements for any new initalization function is simple: it
193  * receives a pointer to the "global data" structure as it's only
194  * argument, and returns an integer return code, where 0 means
195  * "continue" and != 0 means "fatal error, hang the system".
196  */
197
198 extern int exception_init(void);
199 extern int irq_init(void);
200 extern int timer_init(void);
201
202 void board_init_f(ulong bootflag)
203 {
204         ulong addr;
205         bd_t *bd;
206         char buf[32];
207
208 #ifdef CONFIG_BOARD_EARLY_INIT_F
209         serial_early_puts("Board early init flash\n");
210         board_early_init_f();
211 #endif
212
213         serial_early_puts("Init CPLB tables\n");
214         init_cplbtables();
215
216         serial_early_puts("Exceptions setup\n");
217         exception_init();
218
219 #ifndef CONFIG_ICACHE_OFF
220         serial_early_puts("Turn on ICACHE\n");
221         icache_enable();
222 #endif
223 #ifndef CONFIG_DCACHE_OFF
224         serial_early_puts("Turn on DCACHE\n");
225         dcache_enable();
226 #endif
227
228 #ifdef DEBUG
229         if (CONFIG_SYS_GBL_DATA_SIZE < sizeof(*gd))
230                 hang();
231 #endif
232         serial_early_puts("Init global data\n");
233         gd = (gd_t *) (CONFIG_SYS_GBL_DATA_ADDR);
234         memset((void *)gd, 0, CONFIG_SYS_GBL_DATA_SIZE);
235
236         /* Board data initialization */
237         addr = (CONFIG_SYS_GBL_DATA_ADDR + sizeof(gd_t));
238
239         /* Align to 4 byte boundary */
240         addr &= ~(4 - 1);
241         bd = (bd_t *) addr;
242         gd->bd = bd;
243         memset((void *)bd, 0, sizeof(bd_t));
244
245         bd->bi_r_version = version_string;
246         bd->bi_cpu = MK_STR(CONFIG_BFIN_CPU);
247         bd->bi_board_name = BFIN_BOARD_NAME;
248         bd->bi_vco = get_vco();
249         bd->bi_cclk = get_cclk();
250         bd->bi_sclk = get_sclk();
251         bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
252         bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
253
254         /* Initialize */
255         serial_early_puts("IRQ init\n");
256         irq_init();
257         serial_early_puts("Environment init\n");
258         env_init();
259         serial_early_puts("Baudrate init\n");
260         init_baudrate();
261         serial_early_puts("Serial init\n");
262         serial_init();
263         serial_early_puts("Console init flash\n");
264         console_init_f();
265         serial_early_puts("End of early debugging\n");
266         display_banner();
267
268         checkboard();
269         timer_init();
270
271         printf("Clock: VCO: %s MHz, ", strmhz(buf, get_vco()));
272         printf("Core: %s MHz, ", strmhz(buf, get_cclk()));
273         printf("System: %s MHz\n", strmhz(buf, get_sclk()));
274
275         printf("RAM:   ");
276         print_size(bd->bi_memsize, "\n");
277 #if defined(CONFIG_POST)
278         post_init_f();
279         post_bootmode_init();
280         post_run(NULL, POST_ROM | post_bootmode_get(0));
281 #endif
282
283         board_init_r((gd_t *) gd, 0x20000010);
284 }
285
286 static void board_net_init_r(bd_t *bd)
287 {
288 #ifdef CONFIG_BITBANGMII
289         bb_miiphy_init();
290 #endif
291 #ifdef CONFIG_CMD_NET
292         char *s;
293
294         if ((s = getenv("bootfile")) != NULL)
295                 copy_filename(BootFile, s, sizeof(BootFile));
296
297         bd->bi_ip_addr = getenv_IPaddr("ipaddr");
298
299         printf("Net:   ");
300         eth_initialize(gd->bd);
301 #endif
302 }
303
304 void board_init_r(gd_t * id, ulong dest_addr)
305 {
306         char *s;
307         bd_t *bd;
308         gd = id;
309         gd->flags |= GD_FLG_RELOC;      /* tell others: relocation done */
310         bd = gd->bd;
311
312 #if defined(CONFIG_POST)
313         post_output_backlog();
314         post_reloc();
315 #endif
316
317         /* initialize malloc() area */
318         mem_malloc_init(CONFIG_SYS_MALLOC_BASE, CONFIG_SYS_MALLOC_LEN);
319
320 #if     !defined(CONFIG_SYS_NO_FLASH)
321         /* Initialize the flash and protect u-boot by default */
322         extern flash_info_t flash_info[];
323         puts("Flash: ");
324         ulong size = flash_init();
325         print_size(size, "\n");
326         flash_protect(FLAG_PROTECT_SET, CONFIG_SYS_FLASH_BASE,
327                 CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN - 1,
328                 &flash_info[0]);
329         bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
330         bd->bi_flashsize = size;
331         bd->bi_flashoffset = 0;
332 #else
333         bd->bi_flashstart = 0;
334         bd->bi_flashsize = 0;
335         bd->bi_flashoffset = 0;
336 #endif
337
338 #ifdef CONFIG_CMD_NAND
339         puts("NAND:  ");
340         nand_init();            /* go init the NAND */
341 #endif
342
343         /* relocate environment function pointers etc. */
344         env_relocate();
345
346         /* Initialize stdio devices */
347         stdio_init();
348         jumptable_init();
349
350         /* Initialize the console (after the relocation and devices init) */
351         console_init_r();
352
353 #ifdef CONFIG_STATUS_LED
354         status_led_set(STATUS_LED_BOOT, STATUS_LED_BLINKING);
355         status_led_set(STATUS_LED_CRASH, STATUS_LED_OFF);
356 #endif
357
358         /* Initialize from environment */
359         if ((s = getenv("loadaddr")) != NULL)
360                 load_addr = simple_strtoul(s, NULL, 16);
361
362 #if defined(CONFIG_MISC_INIT_R)
363         /* miscellaneous platform dependent initialisations */
364         misc_init_r();
365 #endif
366
367         board_net_init_r(bd);
368
369         display_global_data();
370
371 #if defined(CONFIG_POST)
372         if (post_flag)
373                 post_run(NULL, POST_RAM | post_bootmode_get(0));
374 #endif
375
376         if (bfin_os_log_check()) {
377                 puts("\nLog buffer from operating system:\n");
378                 bfin_os_log_dump();
379                 puts("\n");
380         }
381
382         /* main_loop() can return to retry autoboot, if so just run it again. */
383         for (;;)
384                 main_loop();
385 }
386
387 void hang(void)
388 {
389 #ifdef CONFIG_STATUS_LED
390         status_led_set(STATUS_LED_BOOT, STATUS_LED_OFF);
391         status_led_set(STATUS_LED_CRASH, STATUS_LED_BLINKING);
392 #endif
393         puts("### ERROR ### Please RESET the board ###\n");
394         while (1)
395                 /* If a JTAG emulator is hooked up, we'll automatically trigger
396                  * a breakpoint in it.  If one isn't, this is just a NOP.
397                  */
398                 asm("emuexcpt;");
399 }