blob: a427ac94a1703ee3478787a2df5a40ea60888a77 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Michal Simek952d5142007-03-11 13:42:58 +01002/*
Michal Simek4e39ea82018-07-13 08:26:28 +02003 * (C) Copyright 2007-2018 Michal Simek
Michal Simek952d5142007-03-11 13:42:58 +01004 *
Michal Simek4e39ea82018-07-13 08:26:28 +02005 * Michal SIMEK <monstr@monstr.eu>
Michal Simek952d5142007-03-11 13:42:58 +01006 */
7
Shreenidhi Shediffced402018-07-15 02:34:35 +05308/*
9 * This is a board specific file. It's OK to include board specific
10 * header files
11 */
Michal Simek952d5142007-03-11 13:42:58 +010012
13#include <common.h>
Michal Simekdda9bd82007-03-30 22:52:09 +020014#include <config.h>
Simon Glassed38aef2020-05-10 11:40:03 -060015#include <env.h>
Simon Glassa7b51302019-11-14 12:57:46 -070016#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060017#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060018#include <asm/global_data.h>
Michal Simek4e39ea82018-07-13 08:26:28 +020019#include <dm/lists.h>
Michal Simek65e915c2014-05-08 16:08:44 +020020#include <fdtdec.h>
Michal Simek360da4b2019-09-25 11:00:17 +020021#include <linux/sizes.h>
Michal Simek9ccfcae2020-10-23 07:54:18 +020022#include "../common/board.h"
Michal Simek23ccda02013-04-24 10:01:20 +020023
Michal Simek65e915c2014-05-08 16:08:44 +020024DECLARE_GLOBAL_DATA_PTR;
25
Simon Glass2f949c32017-03-31 08:40:32 -060026int dram_init_banksize(void)
Michal Simek65e915c2014-05-08 16:08:44 +020027{
Michal Simekfdf3d802018-11-22 12:39:18 +010028 return fdtdec_setup_memory_banksize();
Michal Simek65e915c2014-05-08 16:08:44 +020029}
30
31int dram_init(void)
32{
Michal Simekfdf3d802018-11-22 12:39:18 +010033 if (fdtdec_setup_mem_size_base() != 0)
34 return -EINVAL;
Michal Simek65e915c2014-05-08 16:08:44 +020035
36 return 0;
37};
Michal Simek65e915c2014-05-08 16:08:44 +020038
Michal Simek01525242015-12-11 15:01:28 +010039int board_late_init(void)
Michal Simek9cabb362012-07-04 13:12:37 +020040{
Michal Simek9ccfcae2020-10-23 07:54:18 +020041 ulong max_size;
T Karthik Reddy51d78152020-09-22 05:18:53 -060042 u32 status = 0;
Michal Simek360da4b2019-09-25 11:00:17 +020043
Michal Simek4e39ea82018-07-13 08:26:28 +020044#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_SYSRESET_MICROBLAZE)
45 int ret;
Shreenidhi Shedi1f8fcbb2018-07-15 02:05:40 +053046
Michal Simek4e39ea82018-07-13 08:26:28 +020047 ret = device_bind_driver(gd->dm_root, "mb_soft_reset",
48 "reset_soft", NULL);
49 if (ret)
50 printf("Warning: No reset driver: ret=%d\n", ret);
51#endif
Michal Simek360da4b2019-09-25 11:00:17 +020052
53 if (!(gd->flags & GD_FLG_ENV_DEFAULT)) {
54 debug("Saved variables - Skipping\n");
55 return 0;
56 }
57
58 max_size = gd->start_addr_sp - CONFIG_STACK_SIZE;
59 max_size = round_down(max_size, SZ_16M);
60
T Karthik Reddya95a5bc2020-09-22 05:18:54 -060061 status |= env_set_hex("scriptaddr", max_size + SZ_2M);
62
63 status |= env_set_hex("pxefile_addr_r", max_size + SZ_1M);
64
65 status |= env_set_hex("kernel_addr_r", gd->ram_base + SZ_32M);
66
67 status |= env_set_hex("fdt_addr_r", gd->ram_base + SZ_32M - SZ_1M);
68
69 status |= env_set_hex("ramdisk_addr_r",
70 gd->ram_base + SZ_32M + SZ_4M + SZ_2M);
T Karthik Reddy78aae962020-12-17 03:15:55 -070071 if (IS_ENABLED(CONFIG_MTD_NOR_FLASH))
72 status |= env_set_hex("script_offset_nor",
73 gd->bd->bi_flashstart +
74 CONFIG_BOOT_SCRIPT_OFFSET);
T Karthik Reddy51d78152020-09-22 05:18:53 -060075 if (status)
76 printf("%s: Saving run time variables FAILED\n", __func__);
Michal Simek360da4b2019-09-25 11:00:17 +020077
Michal Simek9ccfcae2020-10-23 07:54:18 +020078 return board_late_init_xilinx();
Michal Simek9cabb362012-07-04 13:12:37 +020079}