[Qemu-devel] [PULL 00/22] ppc-for-3.1 queue 20181108

David Gibson posted 22 patches 5 years, 5 months ago
Failed in applying to current master (apply log)
MAINTAINERS                        |  30 +-
default-configs/ppc64-softmmu.mak  |   1 +
hw/misc/macio/pmu.c                |   1 +
hw/pci-host/ppce500.c              |  14 +-
hw/ppc/Makefile.objs               |   3 +-
hw/ppc/mac_newworld.c              |   1 +
hw/ppc/pnv_lpc.c                   |   8 +-
hw/ppc/ppc440_pcix.c               |  14 +-
hw/ppc/ppc440_uc.c                 |   6 +-
hw/ppc/ppc4xx_pci.c                |  14 +-
hw/ppc/spapr.c                     |  25 ++
hw/ppc/spapr_caps.c                |  32 ++
hw/ppc/spapr_pci.c                 |   2 +-
hw/ppc/spapr_rng.c                 |  23 --
include/hw/ppc/spapr.h             |   7 +-
target/ppc/cpu.h                   |  24 +-
target/ppc/fpu_helper.c            | 661 ++++++++++++++++++-------------------
target/ppc/helper.h                |   4 +
target/ppc/kvm.c                   |  12 +
target/ppc/kvm_ppc.h               |  12 +
target/ppc/mem_helper.c            |  34 +-
target/ppc/mmu_helper.c            | 172 +++++++---
target/ppc/translate.c             | 165 +++++++++
target/ppc/translate/fp-impl.inc.c |  34 ++
target/ppc/translate/fp-ops.inc.c  |   2 +
target/ppc/translate_init.inc.c    |  31 +-
26 files changed, 874 insertions(+), 458 deletions(-)
[Qemu-devel] [PULL 00/22] ppc-for-3.1 queue 20181108
Posted by David Gibson 5 years, 5 months ago
The following changes since commit 4de6bb0c02ad3f0ec48f0f84ba1a65ab06e81b86:

  Update version for v3.1.0-rc0 release (2018-11-06 18:27:35 +0000)

are available in the Git repository at:

  git://github.com/dgibson/qemu.git tags/ppc-for-3.1-20181108

for you to fetch changes up to b9a477b725788e47bf653eab36e64f232d259f2a:

  ppc/spapr_caps: Add SPAPR_CAP_NESTED_KVM_HV (2018-11-08 13:08:35 +1100)

----------------------------------------------------------------
ppc patch queue 2018-11-08

Here's another patch of accumulated ppc patches for qemu-3.1.
Highlights are:
  * Support for nested HV KVM on POWER9 hosts
  * Remove Alex Graf as ppc maintainer
  * Emulation of external PID instructions

----------------------------------------------------------------
Alexander Graf (1):
      MAINTAINERS: PPC: Remove myself

Cédric Le Goater (3):
      ppc440_pcix: convert SysBus init method to a realize method
      ppc4xx_pci: convert SysBus init method to a realize method
      PPC: e500: convert SysBus init method to a realize method

Dr. David Alan Gilbert (1):
      macio/pmu: Fix missing vmsd terminator

Greg Kurz (1):
      spapr_pci: convert g_malloc() to g_new()

Maria Klimushenkova (1):
      This patch fixes processing of rfi instructions in icount mode.

Pavel Dovgalyuk (1):
      target/ppc: fix mtmsr instruction for icount

Peter Maydell (2):
      hw/ppc/mac_newworld: Free openpic_irqs array after use
      hw/ppc/ppc440_uc: Remove dead code in sdram_size()

Prasad J Pandit (1):
      ppc/pnv: check size before data buffer access

Richard Henderson (7):
      target/ppc: Split up float_invalid_op_excp
      target/ppc: Remove float_check_status
      target/ppc: Introduce fp number classification
      target/ppc: Split out float_invalid_op_addsub
      target/ppc: Split out float_invalid_op_mul
      target/ppc: Split out float_invalid_op_div
      target/ppc: Split out float_invalid_cvt

Roman Kapl (1):
      target/ppc: add external PID support

Suraj Jitindar Singh (2):
      target/ppc: Add one reg id for ptcr
      ppc/spapr_caps: Add SPAPR_CAP_NESTED_KVM_HV

Thomas Huth (1):
      hw/ppc/spapr_rng: Introduce CONFIG_SPAPR_RNG switch for spapr_rng.c

 MAINTAINERS                        |  30 +-
 default-configs/ppc64-softmmu.mak  |   1 +
 hw/misc/macio/pmu.c                |   1 +
 hw/pci-host/ppce500.c              |  14 +-
 hw/ppc/Makefile.objs               |   3 +-
 hw/ppc/mac_newworld.c              |   1 +
 hw/ppc/pnv_lpc.c                   |   8 +-
 hw/ppc/ppc440_pcix.c               |  14 +-
 hw/ppc/ppc440_uc.c                 |   6 +-
 hw/ppc/ppc4xx_pci.c                |  14 +-
 hw/ppc/spapr.c                     |  25 ++
 hw/ppc/spapr_caps.c                |  32 ++
 hw/ppc/spapr_pci.c                 |   2 +-
 hw/ppc/spapr_rng.c                 |  23 --
 include/hw/ppc/spapr.h             |   7 +-
 target/ppc/cpu.h                   |  24 +-
 target/ppc/fpu_helper.c            | 661 ++++++++++++++++++-------------------
 target/ppc/helper.h                |   4 +
 target/ppc/kvm.c                   |  12 +
 target/ppc/kvm_ppc.h               |  12 +
 target/ppc/mem_helper.c            |  34 +-
 target/ppc/mmu_helper.c            | 172 +++++++---
 target/ppc/translate.c             | 165 +++++++++
 target/ppc/translate/fp-impl.inc.c |  34 ++
 target/ppc/translate/fp-ops.inc.c  |   2 +
 target/ppc/translate_init.inc.c    |  31 +-
 26 files changed, 874 insertions(+), 458 deletions(-)

Re: [Qemu-devel] [PULL 00/22] ppc-for-3.1 queue 20181108
Posted by Eric Blake 5 years, 5 months ago
On 11/8/18 6:16 AM, David Gibson wrote:
> The following changes since commit 4de6bb0c02ad3f0ec48f0f84ba1a65ab06e81b86:
> 
>    Update version for v3.1.0-rc0 release (2018-11-06 18:27:35 +0000)
> 

> 
> Maria Klimushenkova (1):
>        This patch fixes processing of rfi instructions in icount mode.

Repeating the comment on 20/22 here, in case David wants to send a v2 
respin of the PR before Peter applies this subject line as-is.

-- 
Eric Blake, Principal Software Engineer
Red Hat, Inc.           +1-919-301-3266
Virtualization:  qemu.org | libvirt.org

Re: [Qemu-devel] [PULL 00/22] ppc-for-3.1 queue 20181108
Posted by Peter Maydell 5 years, 5 months ago
On 8 November 2018 at 14:45, Eric Blake <eblake@redhat.com> wrote:
> On 11/8/18 6:16 AM, David Gibson wrote:
>>
>> The following changes since commit
>> 4de6bb0c02ad3f0ec48f0f84ba1a65ab06e81b86:
>>
>>    Update version for v3.1.0-rc0 release (2018-11-06 18:27:35 +0000)
>>
>
>>
>> Maria Klimushenkova (1):
>>        This patch fixes processing of rfi instructions in icount mode.
>
>
> Repeating the comment on 20/22 here, in case David wants to send a v2 respin
> of the PR before Peter applies this subject line as-is.

...sorry, already pushed to master before I saw this.

thanks
-- PMM