blob: ba82292e35ac75c26083324831da43e946c7e351 [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>
Michal Simek4e39ea82018-07-13 08:26:28 +020015#include <dm.h>
16#include <dm/lists.h>
Michal Simek65e915c2014-05-08 16:08:44 +020017#include <fdtdec.h>
Michal Simek9cabb362012-07-04 13:12:37 +020018#include <asm/processor.h>
Michal Simek9c817f82007-05-07 19:33:51 +020019#include <asm/microblaze_intc.h>
20#include <asm/asm.h>
Michal Simek23ccda02013-04-24 10:01:20 +020021#include <asm/gpio.h>
Shreenidhi Shedi1f8fcbb2018-07-15 02:05:40 +053022#include <dm/uclass.h>
23#include <wdt.h>
Michal Simek23ccda02013-04-24 10:01:20 +020024
Michal Simek65e915c2014-05-08 16:08:44 +020025DECLARE_GLOBAL_DATA_PTR;
26
Michal Simek65e915c2014-05-08 16:08:44 +020027ulong ram_base;
28
Simon Glass2f949c32017-03-31 08:40:32 -060029int dram_init_banksize(void)
Michal Simek65e915c2014-05-08 16:08:44 +020030{
Michal Simekfdf3d802018-11-22 12:39:18 +010031 return fdtdec_setup_memory_banksize();
Michal Simek65e915c2014-05-08 16:08:44 +020032}
33
34int dram_init(void)
35{
Michal Simekfdf3d802018-11-22 12:39:18 +010036 if (fdtdec_setup_mem_size_base() != 0)
37 return -EINVAL;
Michal Simek65e915c2014-05-08 16:08:44 +020038
39 return 0;
40};
Michal Simek65e915c2014-05-08 16:08:44 +020041
Michal Simek01525242015-12-11 15:01:28 +010042int board_late_init(void)
Michal Simek9cabb362012-07-04 13:12:37 +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 Simek01525242015-12-11 15:01:28 +010052 return 0;
Michal Simek9cabb362012-07-04 13:12:37 +020053}