2007-03-11 12:42:58 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2007 Michal Simek
|
|
|
|
*
|
|
|
|
* Michal SIMEK <monstr@monstr.eu>
|
|
|
|
*
|
2013-10-07 11:07:26 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2007-03-11 12:42:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* This is a board specific file. It's OK to include board specific
|
|
|
|
* header files */
|
|
|
|
|
|
|
|
#include <common.h>
|
2007-03-30 20:52:09 +00:00
|
|
|
#include <config.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>
|
|
|
|
|
2014-05-08 14:08:44 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2013-04-24 08:01:20 +00:00
|
|
|
#ifdef CONFIG_XILINX_GPIO
|
|
|
|
static int reset_pin = -1;
|
|
|
|
#endif
|
2007-03-11 12:42:58 +00:00
|
|
|
|
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
|
|
|
{
|
|
|
|
gd->bd->bi_dram[0].start = ram_base;
|
|
|
|
gd->bd->bi_dram[0].size = get_effective_memsize();
|
2017-03-31 14:40:32 +00:00
|
|
|
|
|
|
|
return 0;
|
2014-05-08 14:08:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int dram_init(void)
|
|
|
|
{
|
|
|
|
int node;
|
|
|
|
fdt_addr_t addr;
|
|
|
|
fdt_size_t size;
|
|
|
|
const void *blob = gd->fdt_blob;
|
|
|
|
|
|
|
|
node = fdt_node_offset_by_prop_value(blob, -1, "device_type",
|
|
|
|
"memory", 7);
|
|
|
|
if (node == -FDT_ERR_NOTFOUND) {
|
|
|
|
debug("DRAM: Can't get memory node\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
addr = fdtdec_get_addr_size(blob, node, "reg", &size);
|
|
|
|
if (addr == FDT_ADDR_T_NONE || size == 0) {
|
|
|
|
debug("DRAM: Can't get base address or size\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
ram_base = addr;
|
|
|
|
|
|
|
|
gd->ram_top = addr; /* In setup_dest_addr() is done +ram_size */
|
|
|
|
gd->ram_size = size;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
|
2010-10-20 07:41:17 +00:00
|
|
|
int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2007-03-11 12:42:58 +00:00
|
|
|
{
|
2015-12-09 10:53:25 +00:00
|
|
|
#ifndef CONFIG_SPL_BUILD
|
2013-04-24 08:01:20 +00:00
|
|
|
#ifdef CONFIG_XILINX_GPIO
|
|
|
|
if (reset_pin != -1)
|
|
|
|
gpio_direction_output(reset_pin, 1);
|
2007-03-11 12:42:58 +00:00
|
|
|
#endif
|
2012-11-02 08:33:05 +00:00
|
|
|
|
2013-04-22 09:23:16 +00:00
|
|
|
#ifdef CONFIG_XILINX_TB_WATCHDOG
|
|
|
|
hw_watchdog_disable();
|
|
|
|
#endif
|
2015-12-09 10:53:25 +00:00
|
|
|
#endif
|
2007-03-11 12:42:58 +00:00
|
|
|
puts ("Reseting board\n");
|
2012-11-07 14:27:39 +00:00
|
|
|
__asm__ __volatile__ (" mts rmsr, r0;" \
|
|
|
|
"bra r0");
|
2012-11-02 08:33:05 +00:00
|
|
|
|
2010-10-20 07:41:17 +00:00
|
|
|
return 0;
|
2007-03-11 12:42:58 +00:00
|
|
|
}
|
|
|
|
|
2015-12-11 14:01:28 +00:00
|
|
|
static int gpio_init(void)
|
2007-03-11 12:42:58 +00:00
|
|
|
{
|
2013-04-24 08:01:20 +00:00
|
|
|
#ifdef CONFIG_XILINX_GPIO
|
|
|
|
reset_pin = gpio_alloc(CONFIG_SYS_GPIO_0_ADDR, "reset", 1);
|
|
|
|
if (reset_pin != -1)
|
|
|
|
gpio_request(reset_pin, "reset_pin");
|
2007-03-11 12:42:58 +00:00
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
2007-05-07 17:33:51 +00:00
|
|
|
|
2015-12-11 14:01:28 +00:00
|
|
|
int board_late_init(void)
|
2012-07-04 11:12:37 +00:00
|
|
|
{
|
|
|
|
gpio_init();
|
2015-12-11 14:01:28 +00:00
|
|
|
|
|
|
|
return 0;
|
2012-07-04 11:12:37 +00:00
|
|
|
}
|