Blackfin arch: cache SWRST value at bootup so other things like watchdog can non-destructively query it
Signed-off-by: Mike Frysinger <michael.frysinger@analog.com> Signed-off-by: Bryan Wu <bryan.wu@analog.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
19381f024b
commit
a9c59c2746
@@ -43,6 +43,8 @@
|
||||
#include <asm/blackfin.h>
|
||||
#include <asm/cplbinit.h>
|
||||
|
||||
u16 _bfin_swrst;
|
||||
|
||||
unsigned long memory_start, memory_end, physical_mem_end;
|
||||
unsigned long reserved_mem_dcache_on;
|
||||
unsigned long reserved_mem_icache_on;
|
||||
@@ -381,6 +383,12 @@ void __init setup_arch(char **cmdline_p)
|
||||
if (l1_length > L1_DATA_A_LENGTH)
|
||||
panic("L1 memory overflow\n");
|
||||
|
||||
#ifdef BF561_FAMILY
|
||||
_bfin_swrst = bfin_read_SICA_SWRST();
|
||||
#else
|
||||
_bfin_swrst = bfin_read_SWRST();
|
||||
#endif
|
||||
|
||||
bf53x_cache_init();
|
||||
|
||||
printk(KERN_INFO "Hardware Trace Enabled\n");
|
||||
|
Reference in New Issue
Block a user