From fd5ecf31d4c48651de97c1aaf8771762753de9a7 Mon Sep 17 00:00:00 2001 From: Bastian Koppelmann Date: Sun, 22 Mar 2015 12:49:12 +0000 Subject: [PATCH] target-tricore: Add ISA v1.3.1 cpu and fix tc1796 to using v1.3 Signed-off-by: Bastian Koppelmann Reviewed-by: Richard Henderson --- target-tricore/cpu.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/target-tricore/cpu.c b/target-tricore/cpu.c index 2ba0cf4c89..9fe0b9783f 100644 --- a/target-tricore/cpu.c +++ b/target-tricore/cpu.c @@ -118,6 +118,13 @@ static void tc1796_initfn(Object *obj) { TriCoreCPU *cpu = TRICORE_CPU(obj); + set_feature(&cpu->env, TRICORE_FEATURE_13); +} + +static void tc1797_initfn(Object *obj) +{ + TriCoreCPU *cpu = TRICORE_CPU(obj); + set_feature(&cpu->env, TRICORE_FEATURE_131); } @@ -136,6 +143,7 @@ typedef struct TriCoreCPUInfo { static const TriCoreCPUInfo tricore_cpus[] = { { .name = "tc1796", .initfn = tc1796_initfn }, + { .name = "tc1797", .initfn = tc1797_initfn }, { .name = "aurix", .initfn = aurix_initfn }, { .name = NULL } }; -- 2.11.4.GIT