]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/avr32/lib/board.c
avr32: factor out cpu_mmc_init()
[karo-tx-uboot.git] / arch / avr32 / lib / board.c
1 /*
2  * Copyright (C) 2004-2006 Atmel Corporation
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6 #include <common.h>
7 #include <command.h>
8 #include <malloc.h>
9 #include <stdio_dev.h>
10 #include <version.h>
11 #include <net.h>
12
13 #ifdef CONFIG_BITBANGMII
14 #include <miiphy.h>
15 #endif
16
17 #include <asm/sections.h>
18 #include <asm/arch/mmu.h>
19 #include <asm/arch/hardware.h>
20
21 #ifndef CONFIG_IDENT_STRING
22 #define CONFIG_IDENT_STRING ""
23 #endif
24
25 #ifdef CONFIG_GENERIC_ATMEL_MCI
26 #include <mmc.h>
27 #endif
28 DECLARE_GLOBAL_DATA_PTR;
29
30 unsigned long monitor_flash_len;
31
32 /* Weak aliases for optional board functions */
33 static int __do_nothing(void)
34 {
35         return 0;
36 }
37 int board_postclk_init(void) __attribute__((weak, alias("__do_nothing")));
38 int board_early_init_r(void) __attribute__((weak, alias("__do_nothing")));
39
40 static int init_baudrate(void)
41 {
42         gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
43         return 0;
44 }
45
46 static int display_banner (void)
47 {
48         printf ("\n\n%s\n\n", version_string);
49         printf ("U-Boot code: %08lx -> %08lx  data: %08lx -> %08lx\n",
50                 (unsigned long)_text, (unsigned long)_etext,
51                 (unsigned long)_data, (unsigned long)(&__bss_end));
52         return 0;
53 }
54
55 static int display_dram_config (void)
56 {
57         int i;
58
59         puts ("DRAM Configuration:\n");
60
61         for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
62                 printf ("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
63                 print_size (gd->bd->bi_dram[i].size, "\n");
64         }
65
66         return 0;
67 }
68
69 static void display_flash_config (void)
70 {
71         puts ("Flash: ");
72         print_size(gd->bd->bi_flashsize, " ");
73         printf("at address 0x%08lx\n", gd->bd->bi_flashstart);
74 }
75
76 void board_init_f(ulong board_type)
77 {
78         gd_t gd_data;
79         gd_t *new_gd;
80         bd_t *bd;
81         unsigned long *new_sp;
82         unsigned long monitor_len;
83         unsigned long monitor_addr;
84         unsigned long addr;
85         long sdram_size;
86
87         /* Initialize the global data pointer */
88         memset(&gd_data, 0, sizeof(gd_data));
89         gd = &gd_data;
90
91         /* Perform initialization sequence */
92         board_early_init_f();
93         arch_cpu_init();
94         board_postclk_init();
95         env_init();
96         init_baudrate();
97         serial_init();
98         console_init_f();
99         display_banner();
100         sdram_size = initdram(board_type);
101
102         /* If we have no SDRAM, we can't go on */
103         if (sdram_size <= 0)
104                 panic("No working SDRAM available\n");
105
106         /*
107          * Now that we have DRAM mapped and working, we can
108          * relocate the code and continue running from DRAM.
109          *
110          * Reserve memory at end of RAM for (top down in that order):
111          *  - u-boot image
112          *  - heap for malloc()
113          *  - board info struct
114          *  - global data struct
115          *  - stack
116          */
117         addr = CONFIG_SYS_SDRAM_BASE + sdram_size;
118         monitor_len = (char *)(&__bss_end) - _text;
119
120         /*
121          * Reserve memory for u-boot code, data and bss.
122          * Round down to next 4 kB limit.
123          */
124         addr -= monitor_len;
125         addr &= ~(4096UL - 1);
126         monitor_addr = addr;
127
128         /* Reserve memory for malloc() */
129         addr -= CONFIG_SYS_MALLOC_LEN;
130
131 #ifdef CONFIG_LCD
132 #ifdef CONFIG_FB_ADDR
133         printf("LCD: Frame buffer allocated at preset 0x%08x\n",
134                CONFIG_FB_ADDR);
135         gd->fb_base = CONFIG_FB_ADDR;
136 #else
137         addr = lcd_setmem(addr);
138         printf("LCD: Frame buffer allocated at 0x%08lx\n", addr);
139         gd->fb_base = addr;
140 #endif /* CONFIG_FB_ADDR */
141 #endif /* CONFIG_LCD */
142
143         /* Allocate a Board Info struct on a word boundary */
144         addr -= sizeof(bd_t);
145         addr &= ~3UL;
146         gd->bd = bd = (bd_t *)addr;
147
148         /* Allocate a new global data copy on a 8-byte boundary. */
149         addr -= sizeof(gd_t);
150         addr &= ~7UL;
151         new_gd = (gd_t *)addr;
152
153         /* And finally, a new, bigger stack. */
154         new_sp = (unsigned long *)addr;
155         gd->arch.stack_end = addr;
156         *(--new_sp) = 0;
157         *(--new_sp) = 0;
158
159         /*
160          * Initialize the board information struct with the
161          * information we have.
162          */
163         bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
164         bd->bi_dram[0].size = sdram_size;
165
166         memcpy(new_gd, gd, sizeof(gd_t));
167
168         relocate_code((unsigned long)new_sp, new_gd, monitor_addr);
169 }
170
171 void board_init_r(gd_t *new_gd, ulong dest_addr)
172 {
173 #ifndef CONFIG_ENV_IS_NOWHERE
174         extern char * env_name_spec;
175 #endif
176         bd_t *bd;
177
178         gd = new_gd;
179         bd = gd->bd;
180
181         gd->flags |= GD_FLG_RELOC;
182         gd->reloc_off = dest_addr - CONFIG_SYS_MONITOR_BASE;
183
184         /* Enable the MMU so that we can keep u-boot simple */
185         mmu_init_r(dest_addr);
186
187         board_early_init_r();
188
189         monitor_flash_len = _edata - _text;
190
191 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
192         /*
193          * We have to relocate the command table manually
194          */
195         fixup_cmdtable(ll_entry_start(cmd_tbl_t, cmd),
196                         ll_entry_count(cmd_tbl_t, cmd));
197 #endif /* defined(CONFIG_NEEDS_MANUAL_RELOC) */
198
199         /* there are some other pointer constants we must deal with */
200 #ifndef CONFIG_ENV_IS_NOWHERE
201         env_name_spec += gd->reloc_off;
202 #endif
203
204         timer_init();
205
206         /* The malloc area is right below the monitor image in RAM */
207         mem_malloc_init(CONFIG_SYS_MONITOR_BASE + gd->reloc_off -
208                         CONFIG_SYS_MALLOC_LEN, CONFIG_SYS_MALLOC_LEN);
209
210         enable_interrupts();
211
212         bd->bi_flashstart = 0;
213         bd->bi_flashsize = 0;
214         bd->bi_flashoffset = 0;
215
216 #ifndef CONFIG_SYS_NO_FLASH
217         bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
218         bd->bi_flashsize = flash_init();
219         bd->bi_flashoffset = (unsigned long)_edata - (unsigned long)_text;
220
221         if (bd->bi_flashsize)
222                 display_flash_config();
223 #endif
224
225         if (bd->bi_dram[0].size)
226                 display_dram_config();
227
228         gd->bd->bi_boot_params = malloc(CONFIG_SYS_BOOTPARAMS_LEN);
229         if (!gd->bd->bi_boot_params)
230                 puts("WARNING: Cannot allocate space for boot parameters\n");
231
232         /* initialize environment */
233         env_relocate();
234
235         stdio_init();
236         jumptable_init();
237         console_init_r();
238
239         /* Initialize from environment */
240         load_addr = getenv_ulong("loadaddr", 16, load_addr);
241
242 #ifdef CONFIG_BITBANGMII
243         bb_miiphy_init();
244 #endif
245 #if defined(CONFIG_CMD_NET)
246         puts("Net:   ");
247         eth_initialize(gd->bd);
248 #endif
249
250 #ifdef CONFIG_GENERIC_ATMEL_MCI
251         mmc_initialize(gd->bd);
252 #endif
253         for (;;) {
254                 main_loop();
255         }
256 }