2011-12-23 05:51:29 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2011
|
|
|
|
* Graeme Russ, <graeme.russ@gmail.com>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2011-12-23 05:51:29 +00:00
|
|
|
*/
|
|
|
|
#include <common.h>
|
2013-02-28 19:26:15 +00:00
|
|
|
#include <fdtdec.h>
|
2012-11-03 11:41:23 +00:00
|
|
|
#include <spi.h>
|
2013-03-05 14:39:54 +00:00
|
|
|
#include <asm/sections.h>
|
2011-12-23 05:51:29 +00:00
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2013-02-28 19:26:10 +00:00
|
|
|
/* Get the top of usable RAM */
|
|
|
|
__weak ulong board_get_usable_ram_top(ulong total_size)
|
2011-12-23 10:14:22 +00:00
|
|
|
{
|
2013-02-28 19:26:10 +00:00
|
|
|
return gd->ram_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
int calculate_relocation_address(void)
|
|
|
|
{
|
|
|
|
const ulong uboot_size = (uintptr_t)&__bss_end -
|
|
|
|
(uintptr_t)&__text_start;
|
|
|
|
ulong total_size;
|
2011-12-23 10:14:22 +00:00
|
|
|
ulong dest_addr;
|
2013-02-28 19:26:15 +00:00
|
|
|
ulong fdt_size = 0;
|
2011-12-23 10:14:22 +00:00
|
|
|
|
2013-02-28 19:26:15 +00:00
|
|
|
#if defined(CONFIG_OF_SEPARATE) && defined(CONFIG_OF_CONTROL)
|
|
|
|
if (gd->fdt_blob)
|
|
|
|
fdt_size = ALIGN(fdt_totalsize(gd->fdt_blob) + 0x1000, 32);
|
|
|
|
#endif
|
2013-02-28 19:26:10 +00:00
|
|
|
total_size = ALIGN(uboot_size, 1 << 12) + CONFIG_SYS_MALLOC_LEN +
|
2013-02-28 19:26:15 +00:00
|
|
|
CONFIG_SYS_STACK_SIZE + fdt_size;
|
2013-02-28 19:26:10 +00:00
|
|
|
|
2013-02-28 19:26:15 +00:00
|
|
|
dest_addr = board_get_usable_ram_top(total_size);
|
2011-12-23 10:14:22 +00:00
|
|
|
/*
|
|
|
|
* NOTE: All destination address are rounded down to 16-byte
|
|
|
|
* boundary to satisfy various worst-case alignment
|
|
|
|
* requirements
|
|
|
|
*/
|
2013-02-28 19:26:15 +00:00
|
|
|
dest_addr &= ~15;
|
2011-12-23 10:14:22 +00:00
|
|
|
|
2013-02-28 19:26:15 +00:00
|
|
|
#if defined(CONFIG_OF_SEPARATE) && defined(CONFIG_OF_CONTROL)
|
|
|
|
/*
|
|
|
|
* If the device tree is sitting immediate above our image then we
|
|
|
|
* must relocate it. If it is embedded in the data section, then it
|
|
|
|
* will be relocated with other data.
|
|
|
|
*/
|
|
|
|
if (gd->fdt_blob) {
|
|
|
|
dest_addr -= fdt_size;
|
2013-03-11 06:49:53 +00:00
|
|
|
gd->new_fdt = (void *)dest_addr;
|
2013-02-28 19:26:15 +00:00
|
|
|
dest_addr &= ~15;
|
|
|
|
}
|
|
|
|
#endif
|
2013-02-28 19:26:10 +00:00
|
|
|
/* U-Boot is below the FDT */
|
|
|
|
dest_addr -= uboot_size;
|
|
|
|
dest_addr &= ~((1 << 12) - 1);
|
2011-12-23 10:14:22 +00:00
|
|
|
gd->relocaddr = dest_addr;
|
2013-02-28 19:26:10 +00:00
|
|
|
gd->reloc_off = dest_addr - (uintptr_t)&__text_start;
|
2011-12-23 10:14:22 +00:00
|
|
|
|
2012-11-03 11:41:24 +00:00
|
|
|
/* Stack is at the bottom, so it can grow down */
|
|
|
|
gd->start_addr_sp = dest_addr - CONFIG_SYS_MALLOC_LEN;
|
|
|
|
|
2011-12-23 10:14:22 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int init_cache_f_r(void)
|
|
|
|
{
|
|
|
|
/* Initialise the CPU cache(s) */
|
|
|
|
return init_cache();
|
|
|
|
}
|
|
|
|
|
2011-12-23 05:51:29 +00:00
|
|
|
bd_t bd_data;
|
|
|
|
|
|
|
|
int init_bd_struct_r(void)
|
|
|
|
{
|
|
|
|
gd->bd = &bd_data;
|
|
|
|
memset(gd->bd, 0, sizeof(bd_t));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-03 11:41:23 +00:00
|
|
|
int init_func_spi(void)
|
|
|
|
{
|
|
|
|
puts("SPI: ");
|
|
|
|
spi_init();
|
|
|
|
puts("ready\n");
|
|
|
|
return 0;
|
|
|
|
}
|
2012-11-03 11:41:30 +00:00
|
|
|
|
|
|
|
int find_fdt(void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_OF_EMBED
|
|
|
|
/* Get a pointer to the FDT */
|
2014-02-05 02:28:25 +00:00
|
|
|
gd->fdt_blob = __dtb_dt_begin;
|
2012-11-03 11:41:30 +00:00
|
|
|
#elif defined CONFIG_OF_SEPARATE
|
|
|
|
/* FDT is at end of image */
|
2013-02-28 19:26:13 +00:00
|
|
|
gd->fdt_blob = (ulong *)&_end;
|
2012-11-03 11:41:30 +00:00
|
|
|
#endif
|
|
|
|
/* Allow the early environment to override the fdt address */
|
|
|
|
gd->fdt_blob = (void *)getenv_ulong("fdtcontroladdr", 16,
|
|
|
|
(uintptr_t)gd->fdt_blob);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int prepare_fdt(void)
|
|
|
|
{
|
|
|
|
/* For now, put this check after the console is ready */
|
|
|
|
if (fdtdec_prepare_fdt()) {
|
|
|
|
panic("** CONFIG_OF_CONTROL defined but no FDT - please see "
|
|
|
|
"doc/README.fdt-control");
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|