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