qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/22] ppc patch queue 2013-07-11
@ 2013-07-11 17:01 Alexander Graf
  2013-07-11 17:01 ` [Qemu-devel] [PATCH 01/22] e600 core for MPC86xx processors Alexander Graf
                   ` (22 more replies)
  0 siblings, 23 replies; 24+ messages in thread
From: Alexander Graf @ 2013-07-11 17:01 UTC (permalink / raw)
  To: qemu-devel; +Cc: Blue Swirl, qemu-ppc, Aurelien Jarno

Hi Blue / Aurelien,

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

While at it, could you please also generate a new OpenBIOS binary for PPC and
SPARC? Quite a number of bug fixes happened in there in between.

Alex


The following changes since commit c170a23ca0097a95b44fc7cc604018cd3c3b7d44:

  Merge remote-tracking branch 'luiz/queue/qmp' into staging (2013-07-10 14:34:32 -0500)

are available in the git repository at:


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

for you to fetch changes up to f35ea98cd9f75db9286f05bf3dc4b532f4cb5eaa:

  PPC: dbdma: Support more multi-issue DMA requests (2013-07-11 18:51:25 +0200)

----------------------------------------------------------------
Alexander Graf (16):
      PPC: Mac: Fix guest exported tbfreq values
      PPC: g3beige: Move secondary IDE bus to mac-io
      PPC: Macio: Replace tabs with spaces
      PPC: dbdma: Replace tabs with spaces
      PPC: Mac: Add debug prints in macio and dbdma code
      PPC: dbdma: Fix debug print
      PPC: dbdma: Allow new commands in RUN state
      PPC: dbdma: Move defines into header file
      PPC: dbdma: Introduce kick function
      PPC: dbdma: Move static bh variable to device struct
      PPC: dbdma: macio: Add DMA callback
      PPC: dbdma: Move processing to io
      PPC: dbdma: Wait for DMA until we have data
      PPC: dbdma: Support unaligned DMA access
      PPC: Add timer handler for newworld mac-io
      PPC: dbdma: Support more multi-issue DMA requests

Alexey Kardashevskiy (1):
      pseries: move interrupt controllers to hw/intc/

Andreas Färber (1):
      spapr: Respect -bios command line option for SLOF

Julio Guerra (1):
      e600 core for MPC86xx processors

Prerna Saxena (1):
      target-ppc: Add POWER8 v1.0 CPU model

Stefan Weil (2):
      spapr: Fix compiler warnings for some versions of gcc
      spapr: Use named enum for function remove_hpte

 default-configs/ppc64-softmmu.mak |   2 +
 hw/ide/macio.c                    | 241 +++++++++++++++++++++++++++++++++++---
 hw/intc/Makefile.objs             |   1 +
 hw/{ppc => intc}/xics.c           |   0
 hw/misc/macio/mac_dbdma.c         | 193 ++++++++----------------------
 hw/misc/macio/macio.c             | 126 ++++++++++++++------
 hw/ppc/Makefile.objs              |   2 +-
 hw/ppc/mac.h                      |   3 +
 hw/ppc/mac_newworld.c             |   5 +-
 hw/ppc/mac_oldworld.c             |  22 ++--
 hw/ppc/spapr.c                    |   5 +-
 hw/ppc/spapr_hcall.c              |  10 +-
 hw/ppc/spapr_pci.c                |   4 +-
 include/hw/ppc/mac_dbdma.h        | 124 ++++++++++++++++++++
 target-ppc/cpu-models.c           |  13 +-
 target-ppc/cpu-models.h           |   5 +-
 target-ppc/translate_init.c       | 159 +++++++++++++++++++++++++
 17 files changed, 688 insertions(+), 227 deletions(-)
 rename hw/{ppc => intc}/xics.c (100%)

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

end of thread, other threads:[~2013-07-12 19:04 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-11 17:01 [Qemu-devel] [PULL 00/22] ppc patch queue 2013-07-11 Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 01/22] e600 core for MPC86xx processors Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 02/22] spapr: Fix compiler warnings for some versions of gcc Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 03/22] spapr: Use named enum for function remove_hpte Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 04/22] spapr: Respect -bios command line option for SLOF Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 05/22] pseries: move interrupt controllers to hw/intc/ Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 06/22] target-ppc: Add POWER8 v1.0 CPU model Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 07/22] PPC: Mac: Fix guest exported tbfreq values Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 08/22] PPC: g3beige: Move secondary IDE bus to mac-io Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 09/22] PPC: Macio: Replace tabs with spaces Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 10/22] PPC: dbdma: " Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 11/22] PPC: Mac: Add debug prints in macio and dbdma code Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 12/22] PPC: dbdma: Fix debug print Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 13/22] PPC: dbdma: Allow new commands in RUN state Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 14/22] PPC: dbdma: Move defines into header file Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 15/22] PPC: dbdma: Introduce kick function Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 16/22] PPC: dbdma: Move static bh variable to device struct Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 17/22] PPC: dbdma: macio: Add DMA callback Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 18/22] PPC: dbdma: Move processing to io Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 19/22] PPC: dbdma: Wait for DMA until we have data Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 20/22] PPC: dbdma: Support unaligned DMA access Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 21/22] PPC: Add timer handler for newworld mac-io Alexander Graf
2013-07-11 17:01 ` [Qemu-devel] [PATCH 22/22] PPC: dbdma: Support more multi-issue DMA requests Alexander Graf
2013-07-12 19:03 ` [Qemu-devel] [APPLIED] Merge remote-tracking branch 'agraf/ppc-for-upstream' into staging Anthony Liguori

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