All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/17] ppc-for-2.7 queue 20160623
@ 2016-06-23  5:48 David Gibson
  2016-06-23  5:48 ` [Qemu-devel] [PULL 01/17] powerpc/mm: Update the WIMG check during H_ENTER David Gibson
                   ` (17 more replies)
  0 siblings, 18 replies; 23+ messages in thread
From: David Gibson @ 2016-06-23  5:48 UTC (permalink / raw)
  To: peter.maydell; +Cc: agraf, qemu-ppc, pbonzini, qemu-devel, David Gibson

The following changes since commit 6f1d2d1c5ad20d464705b17318cb7ca495f8078a:

  Merge remote-tracking branch 'remotes/stsquad/tags/pull-travis-20160621-1' into staging (2016-06-21 15:19:58 +0100)

are available in the git repository at:

  git://github.com/dgibson/qemu.git tags/ppc-for-2.7-20160623

for you to fetch changes up to 86b50f2e1befc33407bdfeb6f45f7b0d2439a740:

  ppc: Disable huge page support if it is not available for main RAM (2016-06-23 12:53:42 +1000)

----------------------------------------------------------------
ppc patch queue for 2016-06-23

Currently outstanding patches for spapr, target-ppc and related
devices.  This batch has:
    * Significant new progress towards full support for hypervisor
      mode
    * Assorted bugfixes
    * Some preliminary patches towards dynamic DMA window support

The last involves a change to memory.c, which Paolo has said I can
take through this tree.

----------------------------------------------------------------
Alexey Kardashevskiy (1):
      memory: Add reporting of supported page sizes

Aneesh Kumar K.V (1):
      powerpc/mm: Update the WIMG check during H_ENTER

Benjamin Herrenschmidt (11):
      ppc: Improve emulation of THRM registers
      ppc: Fix rfi/rfid/hrfi/... emulation
      ppc: define a default LPCR value
      ppc: fix exception model for HV mode
      ppc: Fix POWER7 and POWER8 exception definitions
      ppc: Fix generation if ISI/DSI vs. HV mode
      ppc: Rework generation of priv and inval interrupts
      ppc: Add real mode CI load/store instructions for P7 and P8
      ppc: Turn a bunch of booleans from int to bool
      ppc: Move exception generation code out of line
      ppc: Add P7/P8 Power Management instructions

Laurent Vivier (1):
      ppc64: disable gen_pause() for linux-user mode

Richard Henderson (1):
      target-ppc: Fix rlwimi, rlwinm, rlwnm again

Thomas Huth (2):
      tests: Use '+=' to add additional tests, not '='
      ppc: Disable huge page support if it is not available for main RAM

 hw/ppc/spapr_hcall.c        |   6 +-
 hw/ppc/spapr_iommu.c        |   8 +
 hw/vfio/common.c            |   9 +-
 include/exec/memory.h       |  19 +-
 linux-user/main.c           |   1 +
 memory.c                    |  16 +-
 target-ppc/cpu-qom.h        |   9 +
 target-ppc/cpu.h            |  32 +-
 target-ppc/excp_helper.c    | 263 +++++++------
 target-ppc/helper.h         |   2 +
 target-ppc/kvm.c            |  17 +-
 target-ppc/misc_helper.c    |  41 +++
 target-ppc/mmu-hash64.c     |  69 +++-
 target-ppc/translate.c      | 870 ++++++++++++++++++++++----------------------
 target-ppc/translate_init.c | 154 +++++++-
 tests/Makefile.include      |   8 +-
 16 files changed, 912 insertions(+), 612 deletions(-)

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

end of thread, other threads:[~2016-06-27  6:53 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-23  5:48 [Qemu-devel] [PULL 00/17] ppc-for-2.7 queue 20160623 David Gibson
2016-06-23  5:48 ` [Qemu-devel] [PULL 01/17] powerpc/mm: Update the WIMG check during H_ENTER David Gibson
2016-06-23  5:48 ` [Qemu-devel] [PULL 02/17] tests: Use '+=' to add additional tests, not '=' David Gibson
2016-06-23  5:48 ` [Qemu-devel] [PULL 03/17] ppc64: disable gen_pause() for linux-user mode David Gibson
2016-06-23  5:48 ` [Qemu-devel] [PULL 04/17] target-ppc: Fix rlwimi, rlwinm, rlwnm again David Gibson
2016-06-23  5:48 ` [Qemu-devel] [PULL 05/17] ppc: Improve emulation of THRM registers David Gibson
2016-06-23  5:48 ` [Qemu-devel] [PULL 06/17] memory: Add reporting of supported page sizes David Gibson
2016-06-23  5:48 ` [Qemu-devel] [PULL 07/17] ppc: Fix rfi/rfid/hrfi/... emulation David Gibson
2016-06-27  4:42   ` Benjamin Herrenschmidt
2016-06-27  6:43     ` Mark Cave-Ayland
2016-06-27  6:48     ` David Gibson
2016-06-27  6:52       ` Benjamin Herrenschmidt
2016-06-23  5:48 ` [Qemu-devel] [PULL 08/17] ppc: define a default LPCR value David Gibson
2016-06-23  5:48 ` [Qemu-devel] [PULL 09/17] ppc: fix exception model for HV mode David Gibson
2016-06-23  5:48 ` [Qemu-devel] [PULL 10/17] ppc: Fix POWER7 and POWER8 exception definitions David Gibson
2016-06-23  5:48 ` [Qemu-devel] [PULL 11/17] ppc: Fix generation if ISI/DSI vs. HV mode David Gibson
2016-06-23  5:48 ` [Qemu-devel] [PULL 12/17] ppc: Rework generation of priv and inval interrupts David Gibson
2016-06-23  5:48 ` [Qemu-devel] [PULL 13/17] ppc: Add real mode CI load/store instructions for P7 and P8 David Gibson
2016-06-23  5:48 ` [Qemu-devel] [PULL 14/17] ppc: Turn a bunch of booleans from int to bool David Gibson
2016-06-23  5:48 ` [Qemu-devel] [PULL 15/17] ppc: Move exception generation code out of line David Gibson
2016-06-23  5:48 ` [Qemu-devel] [PULL 16/17] ppc: Add P7/P8 Power Management instructions David Gibson
2016-06-23  5:48 ` [Qemu-devel] [PULL 17/17] ppc: Disable huge page support if it is not available for main RAM David Gibson
2016-06-23 11:43 ` [Qemu-devel] [PULL 00/17] ppc-for-2.7 queue 20160623 Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.