qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/26] ppc-for-2.6 queue 20160218
@ 2016-02-18  4:18 David Gibson
  2016-02-18  4:18 ` [Qemu-devel] [PULL 01/26] hw: fix some debug message format strings David Gibson
                   ` (26 more replies)
  0 siblings, 27 replies; 28+ messages in thread
From: David Gibson @ 2016-02-18  4:18 UTC (permalink / raw)
  To: peter.maydell
  Cc: aik, mark.cave-ayland, agraf, qemu-devel, qemu-ppc, David Gibson

The following changes since commit 3fc63c3f339a61f4e4526f88150927424744f687:

  Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging (2016-02-16 17:31:56 +0000)

are available in the git repository at:

  git://github.com/dgibson/qemu.git tags/ppc-for-2.6-20160218

for you to fetch changes up to 8a9c1b77e9df5b4a9fcc1ffe08b4fcff7b0c791f:

  hw/ppc/spapr: Halt CPU when powering off via RTAS call (2016-02-18 11:08:43 +1100)

----------------------------------------------------------------
ppc patch queue for 2016-02-18

Currently accumulated patches for target-ppc, pseries machine type and
related devices.
  * Some cleanups to management of SDR1 and the hashed page table
  * Implementations of a number of simple PAPR hypercalls
  * Significant improvements to the Macintosh CUDA device
  * Several bugfixes

----------------------------------------------------------------
Alyssa Milburn (1):
      hw: fix some debug message format strings

David Gibson (8):
      target-ppc: Remove unused kvmppc_update_sdr1() stub
      target-ppc: Include missing MMU models for SDR1 in info registers
      pseries: Simplify handling of the hash page table fd
      pseries: Add helper to calculate recommended hash page table size
      pseries: Move hash page table allocation to reset time
      target-ppc: Remove hack for ppc_hash64_load_hpte*() with HV KVM
      migration: ensure htab_save_first completes after timeout
      pseries: Include missing pseries-2.5 compat properties in pseries-2.4

Hervé Poussineau (13):
      cuda: add a framework to handle commands
      cuda: move unknown commands reject out of switch
      cuda: port AUTOPOLL command to new framework
      cuda: port SET_AUTO_RATE command to new framework
      cuda: port SET_DEVICE_LIST command to new framework
      cuda: port POWERDOWN command to new framework
      cuda: port RESET_SYSTEM command to new framework
      cuda: port FILE_SERVER_FLAG command to new framework
      cuda: port SET_POWER_MESSAGES command to new framework
      cuda: port GET_TIME command to new framework
      cuda: port SET_TIME command to new framework
      cuda: remove GET_6805_ADDR command
      cuda: remove CUDA_GET_SET_IIC/CUDA_COMBINED_FORMAT_IIC commands

Thomas Huth (4):
      hw/ppc/spapr: Add h_set_sprg0 hypercall
      hw/ppc/spapr: Implement h_set_dabr
      hw/ppc/spapr: Implement the h_set_xdabr hypercall
      hw/ppc/spapr: Halt CPU when powering off via RTAS call

 hw/input/adb.c          |  18 ++--
 hw/misc/macio/cuda.c    | 279 +++++++++++++++++++++++++++++++++++-------------
 hw/nvram/mac_nvram.c    |   6 +-
 hw/pci-host/uninorth.c  |   4 +-
 hw/ppc/mac.h            |   2 +
 hw/ppc/spapr.c          | 239 +++++++++++++++++++----------------------
 hw/ppc/spapr_hcall.c    |  62 +++++++++--
 hw/ppc/spapr_rtas.c     |   1 +
 include/hw/input/adb.h  |   2 +-
 include/hw/ppc/spapr.h  |   1 -
 target-ppc/kvm_ppc.h    |   5 -
 target-ppc/mmu-hash64.h |   4 +-
 target-ppc/translate.c  |   2 +
 13 files changed, 393 insertions(+), 232 deletions(-)

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

end of thread, other threads:[~2016-02-18 11:20 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-18  4:18 [Qemu-devel] [PULL 00/26] ppc-for-2.6 queue 20160218 David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 01/26] hw: fix some debug message format strings David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 02/26] target-ppc: Remove unused kvmppc_update_sdr1() stub David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 03/26] target-ppc: Include missing MMU models for SDR1 in info registers David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 04/26] pseries: Simplify handling of the hash page table fd David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 05/26] pseries: Add helper to calculate recommended hash page table size David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 06/26] pseries: Move hash page table allocation to reset time David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 07/26] target-ppc: Remove hack for ppc_hash64_load_hpte*() with HV KVM David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 08/26] migration: ensure htab_save_first completes after timeout David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 09/26] hw/ppc/spapr: Add h_set_sprg0 hypercall David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 10/26] hw/ppc/spapr: Implement h_set_dabr David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 11/26] hw/ppc/spapr: Implement the h_set_xdabr hypercall David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 12/26] cuda: add a framework to handle commands David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 13/26] cuda: move unknown commands reject out of switch David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 14/26] cuda: port AUTOPOLL command to new framework David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 15/26] cuda: port SET_AUTO_RATE " David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 16/26] cuda: port SET_DEVICE_LIST " David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 17/26] cuda: port POWERDOWN " David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 18/26] cuda: port RESET_SYSTEM " David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 19/26] cuda: port FILE_SERVER_FLAG " David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 20/26] cuda: port SET_POWER_MESSAGES " David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 21/26] cuda: port GET_TIME " David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 22/26] cuda: port SET_TIME " David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 23/26] cuda: remove GET_6805_ADDR command David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 24/26] cuda: remove CUDA_GET_SET_IIC/CUDA_COMBINED_FORMAT_IIC commands David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 25/26] pseries: Include missing pseries-2.5 compat properties in pseries-2.4 David Gibson
2016-02-18  4:18 ` [Qemu-devel] [PULL 26/26] hw/ppc/spapr: Halt CPU when powering off via RTAS call David Gibson
2016-02-18 11:20 ` [Qemu-devel] [PULL 00/26] ppc-for-2.6 queue 20160218 Peter Maydell

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