2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2012-09-28 09:56:37 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2012 Michal Simek <monstr@monstr.eu>
|
2018-01-17 06:37:47 +00:00
|
|
|
* (C) Copyright 2013 - 2018 Xilinx, Inc.
|
2012-09-28 09:56:37 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2018-02-21 16:04:28 +00:00
|
|
|
#include <dm/uclass.h>
|
2014-02-24 10:16:32 +00:00
|
|
|
#include <fdtdec.h>
|
2014-04-25 11:51:17 +00:00
|
|
|
#include <fpga.h>
|
|
|
|
#include <mmc.h>
|
2018-06-08 11:45:14 +00:00
|
|
|
#include <watchdog.h>
|
2018-02-21 16:04:28 +00:00
|
|
|
#include <wdt.h>
|
2013-04-22 13:43:02 +00:00
|
|
|
#include <zynqpl.h>
|
2013-04-12 14:33:08 +00:00
|
|
|
#include <asm/arch/hardware.h>
|
|
|
|
#include <asm/arch/sys_proto.h>
|
2012-09-28 09:56:37 +00:00
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2018-02-21 16:04:28 +00:00
|
|
|
#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_WDT)
|
|
|
|
static struct udevice *watchdog_dev;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_BOARD_EARLY_INIT_F)
|
|
|
|
int board_early_init_f(void)
|
|
|
|
{
|
|
|
|
# if defined(CONFIG_WDT)
|
|
|
|
/* bss is not cleared at time when watchdog_reset() is called */
|
|
|
|
watchdog_dev = NULL;
|
|
|
|
# endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-09-28 09:56:37 +00:00
|
|
|
int board_init(void)
|
|
|
|
{
|
2018-02-21 16:04:28 +00:00
|
|
|
#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_WDT)
|
|
|
|
if (uclass_get_device(UCLASS_WDT, 0, &watchdog_dev)) {
|
|
|
|
puts("Watchdog: Not found!\n");
|
|
|
|
} else {
|
|
|
|
wdt_start(watchdog_dev, 0, 0);
|
|
|
|
puts("Watchdog: Started\n");
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
|
2012-09-28 09:56:37 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-08 20:18:21 +00:00
|
|
|
int board_late_init(void)
|
|
|
|
{
|
|
|
|
switch ((zynq_slcr_get_boot_mode()) & ZYNQ_BM_MASK) {
|
2016-12-16 12:16:14 +00:00
|
|
|
case ZYNQ_BM_QSPI:
|
2017-08-03 18:22:09 +00:00
|
|
|
env_set("modeboot", "qspiboot");
|
2016-12-16 12:16:14 +00:00
|
|
|
break;
|
|
|
|
case ZYNQ_BM_NAND:
|
2017-08-03 18:22:09 +00:00
|
|
|
env_set("modeboot", "nandboot");
|
2016-12-16 12:16:14 +00:00
|
|
|
break;
|
2014-01-08 20:18:21 +00:00
|
|
|
case ZYNQ_BM_NOR:
|
2017-08-03 18:22:09 +00:00
|
|
|
env_set("modeboot", "norboot");
|
2014-01-08 20:18:21 +00:00
|
|
|
break;
|
|
|
|
case ZYNQ_BM_SD:
|
2017-08-03 18:22:09 +00:00
|
|
|
env_set("modeboot", "sdboot");
|
2014-01-08 20:18:21 +00:00
|
|
|
break;
|
|
|
|
case ZYNQ_BM_JTAG:
|
2017-08-03 18:22:09 +00:00
|
|
|
env_set("modeboot", "jtagboot");
|
2014-01-08 20:18:21 +00:00
|
|
|
break;
|
|
|
|
default:
|
2017-08-03 18:22:09 +00:00
|
|
|
env_set("modeboot", "");
|
2014-01-08 20:18:21 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2012-09-28 09:56:37 +00:00
|
|
|
|
2016-01-26 17:57:03 +00:00
|
|
|
int zynq_board_read_rom_ethaddr(unsigned char *ethaddr)
|
|
|
|
{
|
|
|
|
#if defined(CONFIG_ZYNQ_GEM_EEPROM_ADDR) && \
|
|
|
|
defined(CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET)
|
|
|
|
if (eeprom_read(CONFIG_ZYNQ_GEM_EEPROM_ADDR,
|
|
|
|
CONFIG_ZYNQ_GEM_I2C_MAC_OFFSET,
|
|
|
|
ethaddr, 6))
|
|
|
|
printf("I2C EEPROM MAC address read failed\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-04-01 13:56:33 +00:00
|
|
|
#if !defined(CONFIG_SYS_SDRAM_BASE) && !defined(CONFIG_SYS_SDRAM_SIZE)
|
2017-03-31 14:40:32 +00:00
|
|
|
int dram_init_banksize(void)
|
2016-12-09 12:56:54 +00:00
|
|
|
{
|
2017-11-03 14:25:51 +00:00
|
|
|
return fdtdec_setup_memory_banksize();
|
2016-12-09 12:56:54 +00:00
|
|
|
}
|
2016-12-06 15:31:53 +00:00
|
|
|
|
2016-12-09 12:56:54 +00:00
|
|
|
int dram_init(void)
|
|
|
|
{
|
2016-12-18 14:03:34 +00:00
|
|
|
if (fdtdec_setup_memory_size() != 0)
|
|
|
|
return -EINVAL;
|
2016-12-04 09:33:22 +00:00
|
|
|
|
2016-12-09 12:56:54 +00:00
|
|
|
zynq_ddrc_init();
|
2016-12-04 09:33:22 +00:00
|
|
|
|
2016-12-09 12:56:54 +00:00
|
|
|
return 0;
|
2016-04-01 13:56:33 +00:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
int dram_init(void)
|
|
|
|
{
|
2018-04-11 14:12:28 +00:00
|
|
|
gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
|
|
|
|
CONFIG_SYS_SDRAM_SIZE);
|
2016-04-01 13:56:33 +00:00
|
|
|
|
2013-06-17 12:37:01 +00:00
|
|
|
zynq_ddrc_init();
|
|
|
|
|
2012-09-28 09:56:37 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2016-04-01 13:56:33 +00:00
|
|
|
#endif
|
2018-02-21 16:04:28 +00:00
|
|
|
|
|
|
|
#if defined(CONFIG_WATCHDOG)
|
|
|
|
/* Called by macro WATCHDOG_RESET */
|
|
|
|
void watchdog_reset(void)
|
|
|
|
{
|
|
|
|
# if !defined(CONFIG_SPL_BUILD)
|
|
|
|
static ulong next_reset;
|
|
|
|
ulong now;
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
#endif
|