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>
|
2018-07-13 06:26:28 +00:00
|
|
|
#include <dm.h>
|
|
|
|
#include <dm/lists.h>
|
2014-05-08 14:08:44 +00:00
|
|
|
#include <fdtdec.h>
|
2012-07-04 11:12:37 +00:00
|
|
|
#include <asm/processor.h>
|
2007-05-07 17:33:51 +00:00
|
|
|
#include <asm/microblaze_intc.h>
|
|
|
|
#include <asm/asm.h>
|
2013-04-24 08:01:20 +00:00
|
|
|
#include <asm/gpio.h>
|
2018-07-14 20:35:40 +00:00
|
|
|
#include <dm/uclass.h>
|
|
|
|
#include <wdt.h>
|
2013-04-24 08:01:20 +00:00
|
|
|
|
2014-05-08 14:08:44 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2018-07-14 20:35:40 +00:00
|
|
|
#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_WDT)
|
|
|
|
static struct udevice *watchdog_dev;
|
|
|
|
#endif /* !CONFIG_SPL_BUILD && CONFIG_WDT */
|
|
|
|
|
2014-05-08 14:08:44 +00:00
|
|
|
ulong ram_base;
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2018-07-14 20:35:40 +00:00
|
|
|
#ifdef CONFIG_WDT
|
|
|
|
/* Called by macro WATCHDOG_RESET */
|
|
|
|
void watchdog_reset(void)
|
|
|
|
{
|
|
|
|
#if !defined(CONFIG_SPL_BUILD)
|
|
|
|
ulong now;
|
|
|
|
static ulong next_reset;
|
|
|
|
|
|
|
|
if (!watchdog_dev)
|
|
|
|
return;
|
|
|
|
|
|
|
|
now = timer_get_us();
|
|
|
|
|
|
|
|
/* Do not reset the watchdog too often */
|
|
|
|
if (now > next_reset) {
|
|
|
|
wdt_reset(watchdog_dev);
|
|
|
|
next_reset = now + 1000;
|
|
|
|
}
|
|
|
|
#endif /* !CONFIG_SPL_BUILD */
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_WDT */
|
|
|
|
|
2015-12-11 14:01:28 +00:00
|
|
|
int board_late_init(void)
|
2012-07-04 11:12:37 +00:00
|
|
|
{
|
2018-07-14 20:35:40 +00:00
|
|
|
#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_WDT)
|
|
|
|
watchdog_dev = NULL;
|
|
|
|
|
|
|
|
if (uclass_get_device_by_seq(UCLASS_WDT, 0, &watchdog_dev)) {
|
|
|
|
debug("Watchdog: Not found by seq!\n");
|
|
|
|
if (uclass_get_device(UCLASS_WDT, 0, &watchdog_dev)) {
|
|
|
|
puts("Watchdog: Not found!\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
wdt_start(watchdog_dev, 0, 0);
|
|
|
|
puts("Watchdog: Started\n");
|
|
|
|
#endif /* !CONFIG_SPL_BUILD && CONFIG_WDT */
|
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
|
2015-12-11 14:01:28 +00:00
|
|
|
return 0;
|
2012-07-04 11:12:37 +00:00
|
|
|
}
|