Re: [Qemu-devel] [PATCH v3 2/4] target/ppc: add basic support for PTCR on POWER9

2018-03-20 Thread David Gibson
On Thu, Mar 15, 2018 at 01:34:00PM +, Cédric Le Goater wrote: > The Partition Table Control Register (PTCR) is a hypervisor privileged > SPR. It contains the host real address of the Partition Table and its > size. > > Signed-off-by: Cédric Le Goater Reviewed-by: David Gibson > --- > > C

[Qemu-devel] [PATCH v3 2/4] target/ppc: add basic support for PTCR on POWER9

2018-03-15 Thread Cédric Le Goater
The Partition Table Control Register (PTCR) is a hypervisor privileged SPR. It contains the host real address of the Partition Table and its size. Signed-off-by: Cédric Le Goater --- Changes since v2: - added an assert on MMU model in ppc_store_ptcr() - renamed s/ptas/patbsize/ Changes si