2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2007-03-11 12:42:58 +00:00
|
|
|
/*
|
2018-07-13 06:26:28 +00:00
|
|
|
* (C) Copyright 2007-2018 Michal Simek
|
2007-03-11 12:42:58 +00:00
|
|
|
*
|
2018-07-13 06:26:28 +00:00
|
|
|
* Michal SIMEK <monstr@monstr.eu>
|
2007-03-11 12:42:58 +00:00
|
|
|
*/
|
|
|
|
|
2018-07-14 21:04:35 +00:00
|
|
|
/*
|
|
|
|
* This is a board specific file. It's OK to include board specific
|
|
|
|
* header files
|
|
|
|
*/
|
2007-03-11 12:42:58 +00:00
|
|
|
|
|
|
|
#include <common.h>
|
2007-03-30 20:52:09 +00:00
|
|
|
#include <config.h>
|
2020-05-10 17:40:03 +00:00
|
|
|
#include <env.h>
|
2019-11-14 19:57:46 +00:00
|
|
|
#include <init.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2018-07-13 06:26:28 +00:00
|
|
|
#include <dm/lists.h>
|
2014-05-08 14:08:44 +00:00
|
|
|
#include <fdtdec.h>
|
2019-09-25 09:00:17 +00:00
|
|
|
#include <linux/sizes.h>
|
2013-04-24 08:01:20 +00:00
|
|
|
|
2014-05-08 14:08:44 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2017-03-31 14:40:32 +00:00
|
|
|
int dram_init_banksize(void)
|
2014-05-08 14:08:44 +00:00
|
|
|
{
|
2018-11-22 11:39:18 +00:00
|
|
|
return fdtdec_setup_memory_banksize();
|
2014-05-08 14:08:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int dram_init(void)
|
|
|
|
{
|
2018-11-22 11:39:18 +00:00
|
|
|
if (fdtdec_setup_mem_size_base() != 0)
|
|
|
|
return -EINVAL;
|
2014-05-08 14:08:44 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
|
2015-12-11 14:01:28 +00:00
|
|
|
int board_late_init(void)
|
2012-07-04 11:12:37 +00:00
|
|
|
{
|
2019-09-25 09:00:17 +00:00
|
|
|
ulong max_size, lowmem_size;
|
2020-09-22 11:18:53 +00:00
|
|
|
u32 status = 0;
|
2019-09-25 09:00:17 +00:00
|
|
|
|
2018-07-13 06:26:28 +00:00
|
|
|
#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_SYSRESET_MICROBLAZE)
|
|
|
|
int ret;
|
2018-07-14 20:35:40 +00:00
|
|
|
|
2018-07-13 06:26:28 +00:00
|
|
|
ret = device_bind_driver(gd->dm_root, "mb_soft_reset",
|
|
|
|
"reset_soft", NULL);
|
|
|
|
if (ret)
|
|
|
|
printf("Warning: No reset driver: ret=%d\n", ret);
|
|
|
|
#endif
|
2019-09-25 09:00:17 +00:00
|
|
|
|
|
|
|
if (!(gd->flags & GD_FLG_ENV_DEFAULT)) {
|
|
|
|
debug("Saved variables - Skipping\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
max_size = gd->start_addr_sp - CONFIG_STACK_SIZE;
|
|
|
|
max_size = round_down(max_size, SZ_16M);
|
|
|
|
|
|
|
|
/* Linux default LOWMEM_SIZE is 0x30000000 = 768MB */
|
|
|
|
lowmem_size = gd->ram_base + 768 * 1024 * 1024;
|
|
|
|
|
2020-09-22 11:18:53 +00:00
|
|
|
status |= env_set_addr("initrd_high", (void *)min_t(ulong, max_size,
|
|
|
|
lowmem_size));
|
|
|
|
status |= env_set_addr("fdt_high", (void *)min_t(ulong, max_size,
|
|
|
|
lowmem_size));
|
|
|
|
if (status)
|
|
|
|
printf("%s: Saving run time variables FAILED\n", __func__);
|
2019-09-25 09:00:17 +00:00
|
|
|
|
2015-12-11 14:01:28 +00:00
|
|
|
return 0;
|
2012-07-04 11:12:37 +00:00
|
|
|
}
|