wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2004, Psyent Corporation <www.psyent.com> |
| 3 | * Scott McNutt <smcnutt@psyent.com> |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <nios2.h> |
| 10 | #include <nios2-io.h> |
Joachim Foerster | f956ad9 | 2011-10-20 10:28:10 +0200 | [diff] [blame] | 11 | #include <asm/cache.h> |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 12 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 13 | #if defined (CONFIG_SYS_NIOS_SYSID_BASE) |
wdenk | 0c1c117c | 2005-03-30 23:28:18 +0000 | [diff] [blame] | 14 | extern void display_sysid (void); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 15 | #endif /* CONFIG_SYS_NIOS_SYSID_BASE */ |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 16 | |
| 17 | int checkcpu (void) |
| 18 | { |
| 19 | printf ("CPU : Nios-II\n"); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 20 | #if !defined(CONFIG_SYS_NIOS_SYSID_BASE) |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 21 | printf ("SYSID : <unknown>\n"); |
| 22 | #else |
wdenk | 0c1c117c | 2005-03-30 23:28:18 +0000 | [diff] [blame] | 23 | display_sysid (); |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 24 | #endif |
| 25 | return (0); |
| 26 | } |
| 27 | |
Mike Frysinger | 882b7d7 | 2010-10-20 03:41:17 -0400 | [diff] [blame] | 28 | int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 29 | { |
Thomas Chou | 7a6a7d1 | 2010-08-16 10:49:44 +0800 | [diff] [blame] | 30 | disable_interrupts(); |
| 31 | /* indirect call to go beyond 256MB limitation of toolchain */ |
| 32 | nios2_callr(CONFIG_SYS_RESET_ADDR); |
| 33 | return 0; |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 34 | } |
Joachim Foerster | f956ad9 | 2011-10-20 10:28:10 +0200 | [diff] [blame] | 35 | |
| 36 | int dcache_status(void) |
| 37 | { |
| 38 | return 1; |
| 39 | } |
| 40 | |
| 41 | void dcache_enable(void) |
| 42 | { |
| 43 | flush_dcache(CONFIG_SYS_DCACHE_SIZE, CONFIG_SYS_DCACHELINE_SIZE); |
| 44 | } |
| 45 | |
| 46 | void dcache_disable(void) |
| 47 | { |
| 48 | flush_dcache(CONFIG_SYS_DCACHE_SIZE, CONFIG_SYS_DCACHELINE_SIZE); |
| 49 | } |