blob: 28c2ec09efdf705ad241e6fefc74a189aabdb622 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/*
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#include <atmel_mci.h>
13
14#ifdef CONFIG_BITBANGMII
15#include <miiphy.h>
16#endif
17
18#include <asm/sections.h>
19#include <asm/arch/mmu.h>
20#include <asm/arch/hardware.h>
21
22#ifndef CONFIG_IDENT_STRING
23#define CONFIG_IDENT_STRING ""
24#endif
25
26#ifdef CONFIG_GENERIC_ATMEL_MCI
27#include <mmc.h>
28#endif
29DECLARE_GLOBAL_DATA_PTR;
30
31unsigned long monitor_flash_len;
32
33/* Weak aliases for optional board functions */
34static int __do_nothing(void)
35{
36 return 0;
37}
38int board_postclk_init(void) __attribute__((weak, alias("__do_nothing")));
39int board_early_init_r(void) __attribute__((weak, alias("__do_nothing")));
40
41/* provide cpu_mmc_init, to overwrite provide board_mmc_init */
42int cpu_mmc_init(bd_t *bd)
43{
44 /* This calls the atmel_mci_init in gen_atmel_mci.c */
45 return atmel_mci_init((void *)ATMEL_BASE_MMCI);
46}
47
48#ifdef CONFIG_SYS_DMA_ALLOC_LEN
49#include <asm/arch/cacheflush.h>
50#include <asm/io.h>
51
52static unsigned long dma_alloc_start;
53static unsigned long dma_alloc_end;
54static unsigned long dma_alloc_brk;
55
56static void dma_alloc_init(void)
57{
58 unsigned long monitor_addr;
59
60 monitor_addr = CONFIG_SYS_MONITOR_BASE + gd->reloc_off;
61 dma_alloc_end = monitor_addr - CONFIG_SYS_MALLOC_LEN;
62 dma_alloc_start = dma_alloc_end - CONFIG_SYS_DMA_ALLOC_LEN;
63 dma_alloc_brk = dma_alloc_start;
64
65 printf("DMA: Using memory from 0x%08lx to 0x%08lx\n",
66 dma_alloc_start, dma_alloc_end);
67
68 dcache_invalidate_range(cached(dma_alloc_start),
69 dma_alloc_end - dma_alloc_start);
70}
71
72void *dma_alloc_coherent(size_t len, unsigned long *handle)
73{
74 unsigned long paddr = dma_alloc_brk;
75
76 if (dma_alloc_brk + len > dma_alloc_end)
77 return NULL;
78
79 dma_alloc_brk = ((paddr + len + CONFIG_SYS_DCACHE_LINESZ - 1)
80 & ~(CONFIG_SYS_DCACHE_LINESZ - 1));
81
82 *handle = paddr;
83 return uncached(paddr);
84}
85#else
86static inline void dma_alloc_init(void)
87{
88
89}
90#endif
91
92static int init_baudrate(void)
93{
94 gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
95 return 0;
96}
97
98static int display_banner (void)
99{
100 printf ("\n\n%s\n\n", version_string);
101 printf ("U-Boot code: %08lx -> %08lx data: %08lx -> %08lx\n",
102 (unsigned long)_text, (unsigned long)_etext,
103 (unsigned long)_data, (unsigned long)(&__bss_end));
104 return 0;
105}
106
107static int display_dram_config (void)
108{
109 int i;
110
111 puts ("DRAM Configuration:\n");
112
113 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
114 printf ("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
115 print_size (gd->bd->bi_dram[i].size, "\n");
116 }
117
118 return 0;
119}
120
121static void display_flash_config (void)
122{
123 puts ("Flash: ");
124 print_size(gd->bd->bi_flashsize, " ");
125 printf("at address 0x%08lx\n", gd->bd->bi_flashstart);
126}
127
128void board_init_f(ulong board_type)
129{
130 gd_t gd_data;
131 gd_t *new_gd;
132 bd_t *bd;
133 unsigned long *new_sp;
134 unsigned long monitor_len;
135 unsigned long monitor_addr;
136 unsigned long addr;
137 long sdram_size;
138
139 /* Initialize the global data pointer */
140 memset(&gd_data, 0, sizeof(gd_data));
141 gd = &gd_data;
142
143 /* Perform initialization sequence */
144 board_early_init_f();
145 cpu_init();
146 board_postclk_init();
147 env_init();
148 init_baudrate();
149 serial_init();
150 console_init_f();
151 display_banner();
152 sdram_size = initdram(board_type);
153
154 /* If we have no SDRAM, we can't go on */
155 if (sdram_size <= 0)
156 panic("No working SDRAM available\n");
157
158 /*
159 * Now that we have DRAM mapped and working, we can
160 * relocate the code and continue running from DRAM.
161 *
162 * Reserve memory at end of RAM for (top down in that order):
163 * - u-boot image
164 * - heap for malloc()
165 * - board info struct
166 * - global data struct
167 * - stack
168 */
169 addr = CONFIG_SYS_SDRAM_BASE + sdram_size;
170 monitor_len = (char *)(&__bss_end) - _text;
171
172 /*
173 * Reserve memory for u-boot code, data and bss.
174 * Round down to next 4 kB limit.
175 */
176 addr -= monitor_len;
177 addr &= ~(4096UL - 1);
178 monitor_addr = addr;
179
180 /* Reserve memory for malloc() */
181 addr -= CONFIG_SYS_MALLOC_LEN;
182
183#ifdef CONFIG_SYS_DMA_ALLOC_LEN
184 /* Reserve DMA memory (must be cache aligned) */
185 addr &= ~(CONFIG_SYS_DCACHE_LINESZ - 1);
186 addr -= CONFIG_SYS_DMA_ALLOC_LEN;
187#endif
188
189#ifdef CONFIG_LCD
190#ifdef CONFIG_FB_ADDR
191 printf("LCD: Frame buffer allocated at preset 0x%08x\n",
192 CONFIG_FB_ADDR);
193 gd->fb_base = CONFIG_FB_ADDR;
194#else
195 addr = lcd_setmem(addr);
196 printf("LCD: Frame buffer allocated at 0x%08lx\n", addr);
197 gd->fb_base = addr;
198#endif /* CONFIG_FB_ADDR */
199#endif /* CONFIG_LCD */
200
201 /* Allocate a Board Info struct on a word boundary */
202 addr -= sizeof(bd_t);
203 addr &= ~3UL;
204 gd->bd = bd = (bd_t *)addr;
205
206 /* Allocate a new global data copy on a 8-byte boundary. */
207 addr -= sizeof(gd_t);
208 addr &= ~7UL;
209 new_gd = (gd_t *)addr;
210
211 /* And finally, a new, bigger stack. */
212 new_sp = (unsigned long *)addr;
213 gd->arch.stack_end = addr;
214 *(--new_sp) = 0;
215 *(--new_sp) = 0;
216
217 /*
218 * Initialize the board information struct with the
219 * information we have.
220 */
221 bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
222 bd->bi_dram[0].size = sdram_size;
223 bd->bi_baudrate = gd->baudrate;
224
225 memcpy(new_gd, gd, sizeof(gd_t));
226
227 relocate_code((unsigned long)new_sp, new_gd, monitor_addr);
228}
229
230void board_init_r(gd_t *new_gd, ulong dest_addr)
231{
232#ifndef CONFIG_ENV_IS_NOWHERE
233 extern char * env_name_spec;
234#endif
235 bd_t *bd;
236
237 gd = new_gd;
238 bd = gd->bd;
239
240 gd->flags |= GD_FLG_RELOC;
241 gd->reloc_off = dest_addr - CONFIG_SYS_MONITOR_BASE;
242
243 /* Enable the MMU so that we can keep u-boot simple */
244 mmu_init_r(dest_addr);
245
246 board_early_init_r();
247
248 monitor_flash_len = _edata - _text;
249
250#if defined(CONFIG_NEEDS_MANUAL_RELOC)
251 /*
252 * We have to relocate the command table manually
253 */
254 fixup_cmdtable(ll_entry_start(cmd_tbl_t, cmd),
255 ll_entry_count(cmd_tbl_t, cmd));
256#endif /* defined(CONFIG_NEEDS_MANUAL_RELOC) */
257
258 /* there are some other pointer constants we must deal with */
259#ifndef CONFIG_ENV_IS_NOWHERE
260 env_name_spec += gd->reloc_off;
261#endif
262
263 timer_init();
264
265 /* The malloc area is right below the monitor image in RAM */
266 mem_malloc_init(CONFIG_SYS_MONITOR_BASE + gd->reloc_off -
267 CONFIG_SYS_MALLOC_LEN, CONFIG_SYS_MALLOC_LEN);
268 dma_alloc_init();
269
270 enable_interrupts();
271
272 bd->bi_flashstart = 0;
273 bd->bi_flashsize = 0;
274 bd->bi_flashoffset = 0;
275
276#ifndef CONFIG_SYS_NO_FLASH
277 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
278 bd->bi_flashsize = flash_init();
279 bd->bi_flashoffset = (unsigned long)_edata - (unsigned long)_text;
280
281 if (bd->bi_flashsize)
282 display_flash_config();
283#endif
284
285 if (bd->bi_dram[0].size)
286 display_dram_config();
287
288 gd->bd->bi_boot_params = malloc(CONFIG_SYS_BOOTPARAMS_LEN);
289 if (!gd->bd->bi_boot_params)
290 puts("WARNING: Cannot allocate space for boot parameters\n");
291
292 /* initialize environment */
293 env_relocate();
294
295 stdio_init();
296 jumptable_init();
297 console_init_r();
298
299 /* Initialize from environment */
300 load_addr = getenv_ulong("loadaddr", 16, load_addr);
301
302#ifdef CONFIG_BITBANGMII
303 bb_miiphy_init();
304#endif
305#if defined(CONFIG_CMD_NET)
306 puts("Net: ");
307 eth_initialize(gd->bd);
308#endif
309
310#ifdef CONFIG_GENERIC_ATMEL_MCI
311 mmc_initialize(gd->bd);
312#endif
313 for (;;) {
314 main_loop();
315 }
316}