From patchwork Sun Feb 10 18:30:47 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [07/10] mips64-linux-user: Use MIPS64R2-generic as default cpu. From: Richard Henderson X-Patchwork-Id: 219517 Message-Id: <1360521050-29680-8-git-send-email-rth@twiddle.net> To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, riku.voipio@iki.fi, aurelien@aurel32.net Date: Sun, 10 Feb 2013 10:30:47 -0800 Signed-off-by: Richard Henderson --- linux-user/main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) I don't actually recall why this patch was in my old tree. It might just have been that I wanted a mips64r2 part for testing and didn't want to keep specifying -cpu on the command-line. OTOH, I don't see any reason not to emulate as many ISA extensions as possible by default. r~ diff --git a/linux-user/main.c b/linux-user/main.c index 3a3be70..8c4dffd 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -3525,7 +3525,9 @@ int main(int argc, char **argv, char **envp) cpu_model = "Fujitsu MB86904"; #endif #elif defined(TARGET_MIPS) -#if defined(TARGET_ABI_MIPSN32) || defined(TARGET_ABI_MIPSN64) +#if defined(TARGET_ABI_MIPSN64) + cpu_model = "MIPS64R2-generic"; +#elif defined(TARGET_ABI_MIPSN32) cpu_model = "20Kc"; #else cpu_model = "24Kf";