From: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
To: qemu-ppc@nongnu.org
Cc: david@gibson.dropbear.id.au, agraf@suse.de,
qemu-devel@nongnu.org, sam.bobroff@au1.ibm.com
Subject: Re: [Qemu-devel] [QEMU-PPC] [PATCH V2 00/10] target/ppc: Implement POWER9 pseries tcg
Date: Fri, 10 Feb 2017 16:28:34 +1100 [thread overview]
Message-ID: <1486704514.4230.7.camel@gmail.com> (raw)
In-Reply-To: <1486704360-27361-1-git-send-email-sjitindarsingh@gmail.com>
On Fri, 2017-02-10 at 16:25 +1100, Suraj Jitindar Singh wrote:
> This is V2 of the patch series to implement tcg emulation support for
> a
> POWER9 cpu model for the pseries machine type running a legacy
> kernel.
> That is a kernel which doesn't use the new radix mmu mode or the new
> hash
> mmu mode with segment tables.
FWIW tree available here:
https://gitlab.ozlabs.ibm.com/surajjs/qemu/tree/POWER9-LEGACY
>
> To use a POWER9 cpu provide the command line option "-cpu POWER9".
>
> This series attempts to avoid precluding KVM-HV support for the
> POWER9
> cpu model but doesn't attempt to support KVM-PR or the powernv
> machine
> for the POWER9 cpu model as these aren't currently supported or
> implemented and further code changes will be required in the event
> these
> are implemented.
>
> This series will be followed shortly by one to implement radix
> support and
> currently trying to boot a kernel with support for radix with this
> series
> will fail on the H_REGISTER_PROCESS_TABLE hcall.
>
> The changes from V1 are as follows:
>
> - Drop patches which have already been merged.
> - Instead of allocating a whole partition table we allocate a single
> entry in the sPAPRMachineState and access it via the virtual hypv.
> - Changes to how we handle SDR1 and renaming of associated
> functions.
> - Drop patch to use the new pte format, guest kernels expect the old
> format anyway, so this will only be applicable when POWER9 powernv
> support is added, so delay adding support for this until then.
> - Rename the mmu fault handler to ppc64_v3_handle_mmu_fault.
> - Move segment table searching into the fault handler instead of in
> slb_lookup().
> - Move adding the POWER9 pseries cpu model to the end of the series.
>
> Suraj Jitindar Singh (10):
> target/ppc/POWER9: Add ISAv3.00 MMU definition
> target/ppc: Fix LPCR DPFD mask define
> target/ppc/POWER9: Adapt LPCR handling for POWER9
> target/ppc/POWER9: Direct all instr and data storage interrupts to
> the
> hypv
> target/ppc: Add patb_entry to sPAPRMachineState
> target/ppc: Don't use SDR1 when running under a POWER9 cpu model
> target/ppc/POWER9: Add POWER9 mmu fault handler
> target/ppc/POWER9: Add POWER9 pa-features definition
> target/ppc/POWER9: Add cpu_has_work function for POWER9
> hw/ppc/spapr: Add POWER9 to pseries cpu models
>
> hw/ppc/spapr.c | 37 ++++++++++++++++++
> hw/ppc/spapr_cpu_core.c | 3 ++
> include/hw/ppc/spapr.h | 1 +
> target/ppc/cpu-qom.h | 5 ++-
> target/ppc/cpu.h | 24 +++++++++++-
> target/ppc/kvm.c | 2 +-
> target/ppc/machine.c | 4 +-
> target/ppc/misc_helper.c | 3 +-
> target/ppc/mmu-hash64.c | 49 +++++++++++++++++++++---
> target/ppc/mmu-hash64.h | 2 +-
> target/ppc/mmu.h | 50 +++++++++++++++++++++++++
> target/ppc/mmu_helper.c | 54 +++++++++++++++++++++++++--
> target/ppc/translate.c | 7 +++-
> target/ppc/translate_init.c | 91
> +++++++++++++++++++++++++++++++++++++++------
> 14 files changed, 302 insertions(+), 30 deletions(-)
> create mode 100644 target/ppc/mmu.h
>
next prev parent reply other threads:[~2017-02-10 5:28 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-10 5:25 [Qemu-devel] [QEMU-PPC] [PATCH V2 00/10] target/ppc: Implement POWER9 pseries tcg Suraj Jitindar Singh
2017-02-10 5:25 ` [Qemu-devel] [QEMU-PPC] [PATCH V2 01/10] target/ppc/POWER9: Add ISAv3.00 MMU definition Suraj Jitindar Singh
2017-02-10 5:25 ` [Qemu-devel] [QEMU-PPC] [PATCH V2 02/10] target/ppc: Fix LPCR DPFD mask define Suraj Jitindar Singh
2017-02-13 1:59 ` David Gibson
2017-02-10 5:25 ` [Qemu-devel] [QEMU-PPC] [PATCH V2 03/10] target/ppc/POWER9: Adapt LPCR handling for POWER9 Suraj Jitindar Singh
2017-02-10 5:25 ` [Qemu-devel] [QEMU-PPC] [PATCH V2 04/10] target/ppc/POWER9: Direct all instr and data storage interrupts to the hypv Suraj Jitindar Singh
2017-02-10 5:25 ` [Qemu-devel] [QEMU-PPC] [PATCH V2 05/10] target/ppc: Add patb_entry to sPAPRMachineState Suraj Jitindar Singh
2017-02-13 2:17 ` David Gibson
2017-02-13 3:40 ` Suraj Jitindar Singh
2017-02-10 5:25 ` [Qemu-devel] [QEMU-PPC] [PATCH V2 06/10] target/ppc: Don't use SDR1 when running under a POWER9 cpu model Suraj Jitindar Singh
2017-02-13 3:44 ` David Gibson
2017-02-10 5:25 ` [Qemu-devel] [QEMU-PPC] [PATCH V2 07/10] target/ppc/POWER9: Add POWER9 mmu fault handler Suraj Jitindar Singh
2017-02-13 4:06 ` David Gibson
2017-02-10 5:25 ` [Qemu-devel] [QEMU-PPC] [PATCH V2 08/10] target/ppc/POWER9: Add POWER9 pa-features definition Suraj Jitindar Singh
2017-02-13 4:33 ` David Gibson
2017-02-10 5:25 ` [Qemu-devel] [QEMU-PPC] [PATCH V2 09/10] target/ppc/POWER9: Add cpu_has_work function for POWER9 Suraj Jitindar Singh
2017-02-13 4:34 ` David Gibson
2017-02-10 5:26 ` [Qemu-devel] [QEMU-PPC] [PATCH V2 10/10] hw/ppc/spapr: Add POWER9 to pseries cpu models Suraj Jitindar Singh
2017-02-13 4:35 ` David Gibson
2017-02-10 5:28 ` Suraj Jitindar Singh [this message]
2017-02-10 5:49 ` [Qemu-devel] [QEMU-PPC] [PATCH V2 00/10] target/ppc: Implement POWER9 pseries tcg Suraj Jitindar Singh
2017-02-10 5:43 ` no-reply
2017-02-13 4:40 ` David Gibson
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=1486704514.4230.7.camel@gmail.com \
--to=sjitindarsingh@gmail.com \
--cc=agraf@suse.de \
--cc=david@gibson.dropbear.id.au \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=sam.bobroff@au1.ibm.com \
/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: link
Be 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).