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;
|
|
|
|
|
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
|
|
|
{
|
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
|
|
|
}
|