Re: [PATCH 1/3] target/mips: introduce generic Cavium Octeon CPU model

2022-06-07 Thread Richard Henderson
On 6/7/22 01:59, Pavel Dovgalyuk wrote: +{ +/* + * A generic CPU providing MIPS64 Cavium Octeon features. + * PRid is taken from Octeon 68xx CPUs + * FIXME: Eventually this should be replaced by a real CPU model. + */ You should just add the real cpu

[PATCH 1/3] target/mips: introduce generic Cavium Octeon CPU model

2022-06-07 Thread Pavel Dovgalyuk
This patch adds generic Octeon vCPU for providing Octeon-specific instructions. Signed-off-by: Pavel Dovgalyuk --- target/mips/cpu-defs.c.inc | 30 ++ target/mips/mips-defs.h|1 + 2 files changed, 31 insertions(+) diff --git a/target/mips/cpu-defs.c.inc b/t