summaryrefslogtreecommitdiff
path: root/arch/arc/lib
diff options
context:
space:
mode:
authorAlexey Brodkin <abrodkin@synopsys.com>2016-02-20 08:30:19 (GMT)
committerAlexey Brodkin <abrodkin@synopsys.com>2016-04-11 17:20:30 (GMT)
commit8b15010b1fc6a0da76db0b5d96d12ffe69990dbe (patch)
tree7a3b8333d5e008e4d9b64f8a1267f15809b81f0f /arch/arc/lib
parent9dbdc6ebd4db60effebefcf8d541cf598712e3b7 (diff)
downloadu-boot-8b15010b1fc6a0da76db0b5d96d12ffe69990dbe.tar.xz
arc: get rid of running_on_hw
ISS is obsolete now and nSIM is used for simulation instead. In its turn nSIM properly handles baud-rate settings so get rid of now useless check. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Diffstat (limited to 'arch/arc/lib')
-rw-r--r--arch/arc/lib/cpu.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/arc/lib/cpu.c b/arch/arc/lib/cpu.c
index 4e4dd74..d1f10ab 100644
--- a/arch/arc/lib/cpu.c
+++ b/arch/arc/lib/cpu.c
@@ -14,12 +14,6 @@ int arch_cpu_init(void)
{
timer_init();
-/* In simulation (ISS) "CHIPID" and "ARCNUM" are all "ff" */
- if ((read_aux_reg(ARC_AUX_IDENTITY) & 0xffffff00) == 0xffffff00)
- gd->arch.running_on_hw = 0;
- else
- gd->arch.running_on_hw = 1;
-
gd->cpu_clk = CONFIG_SYS_CLK_FREQ;
gd->ram_size = CONFIG_SYS_SDRAM_SIZE;