2004-10-10 21:27:30 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2004, Psyent Corporation <www.psyent.com>
|
|
|
|
* Scott McNutt <smcnutt@psyent.com>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2004-10-10 21:27:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2014-08-25 09:09:07 +00:00
|
|
|
#include <asm/nios2.h>
|
2011-10-20 08:28:10 +00:00
|
|
|
#include <asm/cache.h>
|
2004-10-10 21:27:30 +00:00
|
|
|
|
2014-08-22 03:36:47 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#if defined (CONFIG_SYS_NIOS_SYSID_BASE)
|
2005-03-30 23:28:18 +00:00
|
|
|
extern void display_sysid (void);
|
2008-10-16 13:01:15 +00:00
|
|
|
#endif /* CONFIG_SYS_NIOS_SYSID_BASE */
|
2004-10-10 21:27:30 +00:00
|
|
|
|
2014-08-22 03:36:47 +00:00
|
|
|
#ifdef CONFIG_DISPLAY_CPUINFO
|
|
|
|
int print_cpuinfo(void)
|
2004-10-10 21:27:30 +00:00
|
|
|
{
|
|
|
|
printf ("CPU : Nios-II\n");
|
2008-10-16 13:01:15 +00:00
|
|
|
#if !defined(CONFIG_SYS_NIOS_SYSID_BASE)
|
2004-10-10 21:27:30 +00:00
|
|
|
printf ("SYSID : <unknown>\n");
|
|
|
|
#else
|
2005-03-30 23:28:18 +00:00
|
|
|
display_sysid ();
|
2004-10-10 21:27:30 +00:00
|
|
|
#endif
|
|
|
|
return (0);
|
|
|
|
}
|
2014-08-22 03:36:47 +00:00
|
|
|
#endif /* CONFIG_DISPLAY_CPUINFO */
|
2004-10-10 21:27:30 +00:00
|
|
|
|
2010-10-20 07:41:17 +00:00
|
|
|
int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2004-10-10 21:27:30 +00:00
|
|
|
{
|
2010-08-16 02:49:44 +00:00
|
|
|
disable_interrupts();
|
|
|
|
/* indirect call to go beyond 256MB limitation of toolchain */
|
|
|
|
nios2_callr(CONFIG_SYS_RESET_ADDR);
|
|
|
|
return 0;
|
2004-10-10 21:27:30 +00:00
|
|
|
}
|
2011-10-20 08:28:10 +00:00
|
|
|
|
|
|
|
int dcache_status(void)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void dcache_enable(void)
|
|
|
|
{
|
|
|
|
flush_dcache(CONFIG_SYS_DCACHE_SIZE, CONFIG_SYS_DCACHELINE_SIZE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void dcache_disable(void)
|
|
|
|
{
|
|
|
|
flush_dcache(CONFIG_SYS_DCACHE_SIZE, CONFIG_SYS_DCACHELINE_SIZE);
|
|
|
|
}
|
2014-08-22 03:36:47 +00:00
|
|
|
|
|
|
|
int arch_cpu_init(void)
|
|
|
|
{
|
|
|
|
gd->cpu_clk = CONFIG_SYS_CLK_FREQ;
|
|
|
|
gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|