diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2015-07-12 03:46:50 -0400 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2015-07-13 04:03:23 -0400 |
commit | 624b71ee20acba269e348eb6bdd516d47b9d30fa (patch) | |
tree | ba8aaf1283a512d9bc057a7204929b1d1804cc59 /arch/arc/kernel/setup.c | |
parent | f51e2f1911122879eefefa4c592dea8bf794b39c (diff) |
ARCv2: support HS38 releases
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc/kernel/setup.c')
-rw-r--r-- | arch/arc/kernel/setup.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/arc/kernel/setup.c b/arch/arc/kernel/setup.c index 08d98eede6e1..18cc01591c96 100644 --- a/arch/arc/kernel/setup.c +++ b/arch/arc/kernel/setup.c | |||
@@ -142,11 +142,15 @@ static void read_arc_build_cfg_regs(void) | |||
142 | } | 142 | } |
143 | 143 | ||
144 | static const struct cpuinfo_data arc_cpu_tbl[] = { | 144 | static const struct cpuinfo_data arc_cpu_tbl[] = { |
145 | #ifdef CONFIG_ISA_ARCOMPACT | ||
145 | { {0x20, "ARC 600" }, 0x2F}, | 146 | { {0x20, "ARC 600" }, 0x2F}, |
146 | { {0x30, "ARC 700" }, 0x33}, | 147 | { {0x30, "ARC 700" }, 0x33}, |
147 | { {0x34, "ARC 700 R4.10"}, 0x34}, | 148 | { {0x34, "ARC 700 R4.10"}, 0x34}, |
148 | { {0x35, "ARC 700 R4.11"}, 0x35}, | 149 | { {0x35, "ARC 700 R4.11"}, 0x35}, |
149 | { {0x50, "ARC HS38" }, 0x51}, | 150 | #else |
151 | { {0x50, "ARC HS38 R2.0"}, 0x51}, | ||
152 | { {0x52, "ARC HS38 R2.1"}, 0x52}, | ||
153 | #endif | ||
150 | { {0x00, NULL } } | 154 | { {0x00, NULL } } |
151 | }; | 155 | }; |
152 | 156 | ||