qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/29] ppc patch queue 2013-10-25
@ 2013-10-25 21:27 Alexander Graf
  2013-10-25 21:27 ` [Qemu-devel] [PULL 01/29] pseries: Update SLOF firmware image Alexander Graf
                   ` (29 more replies)
  0 siblings, 30 replies; 33+ messages in thread
From: Alexander Graf @ 2013-10-25 21:27 UTC (permalink / raw)
  To: QEMU Developers
  Cc: Blue Swirl, qemu-ppc@nongnu.org list:PowerPC, Anthony Liguori,
	Aurelien Jarno

Hi Blue / Aurelien / Anthony,

This is my current patch queue for ppc.  Please pull.

Alex


The following changes since commit fc8ead74674b7129e8f31c2595c76658e5622197:

  Merge remote-tracking branch 'qemu-kvm/uq/master' into staging (2013-10-18 10:03:24 -0700)

are available in the git repository at:


  git://github.com/agraf/qemu.git ppc-for-upstream

for you to fetch changes up to 3bbf37f2692652cc9d48030a9e7f34e2207429f6:

  spapr: Use DeviceClass::fw_name for device tree CPU node (2013-10-25 23:25:48 +0200)

----------------------------------------------------------------
Alexander Graf (1):
      PPC: Fix L2CR write accesses

Alexey Kardashevskiy (14):
      pseries: Update SLOF firmware image
      spapr: increase temporary fdt buffer size
      spapr: Add ibm, purr property on power7 and newer
      spapr-rtas: fix h_rtas parameters reading
      xics: move reset and cpu_setup
      spapr: move cpu_setup after kvmppc_set_papr
      xics: replace fprintf with error_report
      xics: add pre_save/post_load dispatchers
      xics: convert init() to realize()
      xics: add missing const specifiers to TypeInfo
      xics: split to xics and xics-common
      xics: add cpu_setup callback
      xics-kvm: enable irqfd for MSI
      spapr-pci: enable irqfd for INTx

Andreas Färber (2):
      target-ppc: Fill in OpenFirmware names for some PowerPCCPU families
      spapr: Use DeviceClass::fw_name for device tree CPU node

Aneesh Kumar K.V (5):
      target-ppc: Update slb array with correct index values.
      target-ppc: Check for error on address translation in memsave command
      target-ppc: Use #define for max slb entries
      dump-guest-memory: Check for the correct return value
      target-ppc: dump-guest-memory support

Benjamin Herrenschmidt (3):
      pseries: Fix loading of little endian kernels
      xics: Implement H_IPOLL
      xics: Implement H_XIRR_X

David Gibson (2):
      target-ppc: Add helper for KVM_PPC_RTAS_DEFINE_TOKEN
      xics-kvm: Support for in-kernel XICS interrupt controller

Tom Musta (2):
      ppc: Add CFAR, DAR and DSISR to the dictionary of printable registers
      target-ppc: Little Endian Correction to Load/Store Vector Element

 cpus.c                            |   5 +-
 default-configs/ppc64-softmmu.mak |   1 +
 dump.c                            |   4 +-
 hw/intc/Makefile.objs             |   1 +
 hw/intc/xics.c                    | 327 ++++++++++++++++++++-----
 hw/intc/xics_kvm.c                | 494 ++++++++++++++++++++++++++++++++++++++
 hw/ppc/spapr.c                    |  72 ++++--
 hw/ppc/spapr_hcall.c              |   6 +-
 hw/ppc/spapr_pci.c                |  13 +
 include/elf.h                     |   3 +
 include/hw/ppc/spapr.h            |  11 +-
 include/hw/ppc/xics.h             |  57 +++++
 monitor.c                         |   3 +
 pc-bios/README                    |   2 +-
 pc-bios/slof.bin                  | Bin 909720 -> 875424 bytes
 roms/SLOF                         |   2 +-
 target-ppc/Makefile.objs          |   2 +-
 target-ppc/arch_dump.c            | 253 +++++++++++++++++++
 target-ppc/cpu-qom.h              |   5 +-
 target-ppc/cpu.h                  |   3 +-
 target-ppc/kvm.c                  |  35 ++-
 target-ppc/kvm_ppc.h              |   7 +
 target-ppc/machine.c              |   2 +-
 target-ppc/mem_helper.c           |   2 +
 target-ppc/translate_init.c       |  38 ++-
 25 files changed, 1235 insertions(+), 113 deletions(-)
 create mode 100644 hw/intc/xics_kvm.c
 create mode 100644 target-ppc/arch_dump.c

^ permalink raw reply	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2013-10-26  9:05 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-25 21:27 [Qemu-devel] [PULL 00/29] ppc patch queue 2013-10-25 Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 01/29] pseries: Update SLOF firmware image Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 02/29] pseries: Fix loading of little endian kernels Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 03/29] ppc: Add CFAR, DAR and DSISR to the dictionary of printable registers Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 04/29] target-ppc: Little Endian Correction to Load/Store Vector Element Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 05/29] PPC: Fix L2CR write accesses Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 06/29] spapr: increase temporary fdt buffer size Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 07/29] spapr: Add ibm, purr property on power7 and newer Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 08/29] spapr-rtas: fix h_rtas parameters reading Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 09/29] target-ppc: Add helper for KVM_PPC_RTAS_DEFINE_TOKEN Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 10/29] xics: move reset and cpu_setup Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 11/29] spapr: move cpu_setup after kvmppc_set_papr Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 12/29] xics: replace fprintf with error_report Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 13/29] xics: add pre_save/post_load dispatchers Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 14/29] xics: convert init() to realize() Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 15/29] xics: add missing const specifiers to TypeInfo Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 16/29] xics: split to xics and xics-common Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 17/29] xics: add cpu_setup callback Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 18/29] xics-kvm: Support for in-kernel XICS interrupt controller Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 19/29] xics: Implement H_IPOLL Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 20/29] xics: Implement H_XIRR_X Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 21/29] xics-kvm: enable irqfd for MSI Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 22/29] spapr-pci: enable irqfd for INTx Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 23/29] target-ppc: Update slb array with correct index values Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 24/29] target-ppc: Check for error on address translation in memsave command Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 25/29] target-ppc: Use #define for max slb entries Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 26/29] dump-guest-memory: Check for the correct return value Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 27/29] target-ppc: dump-guest-memory support Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 28/29] target-ppc: Fill in OpenFirmware names for some PowerPCCPU families Alexander Graf
2013-10-25 21:27 ` [Qemu-devel] [PULL 29/29] spapr: Use DeviceClass::fw_name for device tree CPU node Alexander Graf
2013-10-25 22:59 ` [Qemu-devel] [Qemu-ppc] [PULL 00/29] ppc patch queue 2013-10-25 Mark Cave-Ayland
2013-10-26  4:43   ` Alexander Graf
2013-10-26  9:03     ` Mark Cave-Ayland

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).