diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2016-08-26 18:41:29 -0400 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2016-09-30 17:48:17 -0400 |
commit | 26c01c49d559268527d78f45a6818fae0c204a45 (patch) | |
tree | c85355da436bd0f892f581a4f4162d4a5c1862db /arch/arc/kernel/setup.c | |
parent | f507684637ceba4263de145ef7acb90cd107aa12 (diff) |
ARCv2: Support dynamic peripheral address space in HS38 rel 3.0 cores
HS release 3.0 provides for even more flexibility in specifying the
volatile address space for mapping peripherals.
With HS 2.1 @start was made flexible / programmable - with HS 3.0 even
@end can be setup (vs. fixed to 0xFFFF_FFFF before).
So add code to reflect that and while at it remove an unused struct
defintion
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc/kernel/setup.c')
-rw-r--r-- | arch/arc/kernel/setup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arc/kernel/setup.c b/arch/arc/kernel/setup.c index 11a75e4ad4fb..3df7f9c72f42 100644 --- a/arch/arc/kernel/setup.c +++ b/arch/arc/kernel/setup.c | |||
@@ -273,8 +273,8 @@ static char *arc_extn_mumbojumbo(int cpu_id, char *buf, int len) | |||
273 | FIX_PTR(cpu); | 273 | FIX_PTR(cpu); |
274 | 274 | ||
275 | n += scnprintf(buf + n, len - n, | 275 | n += scnprintf(buf + n, len - n, |
276 | "Vector Table\t: %#x\nUncached Base\t: %#lx\n", | 276 | "Vector Table\t: %#x\nPeripherals\t: %#lx:%#lx\n", |
277 | cpu->vec_base, perip_base); | 277 | cpu->vec_base, perip_base, perip_end); |
278 | 278 | ||
279 | if (cpu->extn.fpu_sp || cpu->extn.fpu_dp) | 279 | if (cpu->extn.fpu_sp || cpu->extn.fpu_dp) |
280 | n += scnprintf(buf + n, len - n, "FPU\t\t: %s%s\n", | 280 | n += scnprintf(buf + n, len - n, "FPU\t\t: %s%s\n", |