From: Alistair Francis <Alistair.Francis@wdc.com> To: "qemu-devel@nongnu.org" <qemu-devel@nongnu.org>, "qemu-riscv@nongnu.org" <qemu-riscv@nongnu.org> Cc: "palmer@sifive.com" <palmer@sifive.com>, Alistair Francis <Alistair.Francis@wdc.com>, "alistair23@gmail.com" <alistair23@gmail.com>, "ijc@hellion.org.uk" <ijc@hellion.org.uk> Subject: [Qemu-devel] [PATCH for 4.1 v3 0/6] RISC-V: Allow specifying CPU ISA via command line Date: Wed, 10 Apr 2019 23:10:07 +0000 [thread overview] Message-ID: <cover.1554937288.git.alistair.francis@wdc.com> (raw) This patch series adds a generic RISC-V CPU that can be generated at run time based on the ISA string specified to QEMU via the -cpu argument. This is supported on the virt and spike boards allowing users to specify the RISC-V extensions as well as the ISA version. As part of the conversion we have deprecated the version specifi Spike machines. v3: - Ensure a minimal length so we don't run off the end of the string. - Don't parse the rv32/rv64 in the riscv_generate_cpu_init() loop v2: - Keep the any CPU for linux-user Alistair Francis (6): linux-user/riscv: Add the CPU type as a comment target/riscv: Fall back to generating a RISC-V CPU target/riscv: Create settable CPU properties riscv: virt: Allow specifying a CPU via commandline target/riscv: Remove the generic no MMU CPUs riscv: Add a generic spike machine hw/riscv/spike.c | 106 +++++++++++++++++++++++- hw/riscv/virt.c | 3 +- linux-user/riscv/target_elf.h | 1 + target/riscv/cpu.c | 147 +++++++++++++++++++++++++++++++++- target/riscv/cpu.h | 12 ++- 5 files changed, 262 insertions(+), 7 deletions(-) -- 2.21.0
WARNING: multiple messages have this Message-ID (diff)
From: Alistair Francis <Alistair.Francis@wdc.com> To: "qemu-devel@nongnu.org" <qemu-devel@nongnu.org>, "qemu-riscv@nongnu.org" <qemu-riscv@nongnu.org> Cc: "alistair23@gmail.com" <alistair23@gmail.com>, "palmer@sifive.com" <palmer@sifive.com>, Alistair Francis <Alistair.Francis@wdc.com>, "ijc@hellion.org.uk" <ijc@hellion.org.uk> Subject: [Qemu-devel] [PATCH for 4.1 v3 0/6] RISC-V: Allow specifying CPU ISA via command line Date: Wed, 10 Apr 2019 23:10:07 +0000 [thread overview] Message-ID: <cover.1554937288.git.alistair.francis@wdc.com> (raw) Message-ID: <20190410231007.9dDvi9nUQSJBLY2iBBrMwNDj4u0PiO8U563Ieb8n8x0@z> (raw) This patch series adds a generic RISC-V CPU that can be generated at run time based on the ISA string specified to QEMU via the -cpu argument. This is supported on the virt and spike boards allowing users to specify the RISC-V extensions as well as the ISA version. As part of the conversion we have deprecated the version specifi Spike machines. v3: - Ensure a minimal length so we don't run off the end of the string. - Don't parse the rv32/rv64 in the riscv_generate_cpu_init() loop v2: - Keep the any CPU for linux-user Alistair Francis (6): linux-user/riscv: Add the CPU type as a comment target/riscv: Fall back to generating a RISC-V CPU target/riscv: Create settable CPU properties riscv: virt: Allow specifying a CPU via commandline target/riscv: Remove the generic no MMU CPUs riscv: Add a generic spike machine hw/riscv/spike.c | 106 +++++++++++++++++++++++- hw/riscv/virt.c | 3 +- linux-user/riscv/target_elf.h | 1 + target/riscv/cpu.c | 147 +++++++++++++++++++++++++++++++++- target/riscv/cpu.h | 12 ++- 5 files changed, 262 insertions(+), 7 deletions(-) -- 2.21.0
next reply other threads:[~2019-04-10 23:19 UTC|newest] Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-04-10 23:10 Alistair Francis [this message] 2019-04-10 23:10 ` [Qemu-devel] [PATCH for 4.1 v3 0/6] RISC-V: Allow specifying CPU ISA via command line Alistair Francis 2019-04-10 23:10 ` [Qemu-devel] [PATCH for 4.1 v3 1/6] linux-user/riscv: Add the CPU type as a comment Alistair Francis 2019-04-10 23:10 ` Alistair Francis 2019-04-10 23:10 ` [Qemu-devel] [PATCH for 4.1 v3 2/6] target/riscv: Fall back to generating a RISC-V CPU Alistair Francis 2019-04-10 23:10 ` Alistair Francis 2019-04-11 12:18 ` Igor Mammedov 2019-04-11 12:18 ` Igor Mammedov 2019-04-11 20:42 ` Alistair Francis 2019-04-11 20:42 ` Alistair Francis 2019-04-12 8:35 ` Igor Mammedov 2019-04-12 8:35 ` Igor Mammedov 2019-04-12 21:19 ` Alistair Francis 2019-04-12 21:19 ` Alistair Francis 2019-04-15 8:38 ` Igor Mammedov 2019-04-15 8:38 ` Igor Mammedov 2019-04-15 23:56 ` Alistair Francis 2019-04-15 23:56 ` Alistair Francis 2019-04-16 12:19 ` Igor Mammedov 2019-04-16 12:19 ` Igor Mammedov 2019-04-16 13:23 ` Daniel P. Berrangé 2019-04-16 13:23 ` Daniel P. Berrangé 2019-04-19 20:55 ` Alistair Francis 2019-04-19 20:55 ` Alistair Francis 2019-04-10 23:10 ` [Qemu-devel] [PATCH for 4.1 v3 3/6] target/riscv: Create settable CPU properties Alistair Francis 2019-04-10 23:10 ` Alistair Francis 2019-04-10 23:10 ` [Qemu-devel] [PATCH for 4.1 v3 4/6] riscv: virt: Allow specifying a CPU via commandline Alistair Francis 2019-04-10 23:10 ` Alistair Francis 2019-04-11 11:53 ` Igor Mammedov 2019-04-11 11:53 ` Igor Mammedov 2019-04-10 23:10 ` [Qemu-devel] [PATCH for 4.1 v3 5/6] target/riscv: Remove the generic no MMU CPUs Alistair Francis 2019-04-10 23:10 ` Alistair Francis 2019-04-10 23:11 ` [Qemu-devel] [PATCH for 4.1 v3 6/6] riscv: Add a generic spike machine Alistair Francis 2019-04-10 23:11 ` Alistair Francis 2019-04-11 12:06 ` Igor Mammedov 2019-04-11 12:06 ` Igor Mammedov 2019-04-11 12:18 ` Peter Maydell 2019-04-11 12:18 ` Peter Maydell 2019-04-11 20:35 ` Alistair Francis 2019-04-11 20:35 ` Alistair Francis 2019-04-12 7:46 ` Ian Campbell 2019-04-12 7:46 ` Ian Campbell 2019-04-11 20:34 ` Alistair Francis 2019-04-11 20:34 ` Alistair Francis 2019-04-12 8:38 ` Igor Mammedov 2019-04-12 8:38 ` Igor Mammedov
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=cover.1554937288.git.alistair.francis@wdc.com \ --to=alistair.francis@wdc.com \ --cc=alistair23@gmail.com \ --cc=ijc@hellion.org.uk \ --cc=palmer@sifive.com \ --cc=qemu-devel@nongnu.org \ --cc=qemu-riscv@nongnu.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).