[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 00/40] ppc patch queue 2015-06-03
From: |
Alexander Graf |
Subject: |
[Qemu-devel] [PULL 00/40] ppc patch queue 2015-06-03 |
Date: |
Wed, 3 Jun 2015 23:45:01 +0200 |
Hi Peter,
This is my current patch queue for ppc. Please pull.
Alex
The following changes since commit 3fc827d591679f3e262b9d1f8b34528eabfca8c0:
target-arm: Correct check for non-EL3 (2015-06-02 13:22:29 +0100)
are available in the git repository at:
git://github.com/agraf/qemu.git tags/signed-ppc-for-upstream
for you to fetch changes up to e229d3cc64420204cdb40b983ce08eae657812f9:
softmmu: support up to 12 MMU modes (2015-06-03 23:42:13 +0200)
----------------------------------------------------------------
Patch queue for ppc - 2015-06-03
Highlights this time around:
- sPAPR: endian fixes, speedups, bug fixes, hotplug basics
- add default ram size capability for machines (sPAPR defaults to 512MB now)
----------------------------------------------------------------
Alexey Kardashevskiy (10):
spapr_iommu: Disable in-kernel IOMMU tables for >4GB windows
spapr_iommu: Make H_PUT_TCE_INDIRECT endian-safe
spapr_pci: Introduce a liobn number generating macros
spapr_vio: Introduce a liobn number generating macros
spapr_pci: Define default DMA window size as a macro
spapr_iommu: Add separate trace points for PCI DMA operations
spapr_pci: Make find_phb()/find_dev() public
spapr_iommu: Make spapr_tce_find_by_liobn() public
spapr_pci: Rework device-tree rendering
spapr_iommu: Give unique QOM name to TCE table
David Gibson (4):
spapr_pci: Fix unsafe signed/unsigned comparisons
pseries: Add pseries-2.4 machine type
pseries: Enable in-kernel H_LOGICAL_CI_{LOAD, STORE} implementations
Add David Gibson for sPAPR in MAINTAINERS file
Markus Armbruster (1):
macio: Convert to realize()
Michael Roth (9):
docs: add sPAPR hotplug/dynamic-reconfiguration documentation
spapr_drc: initial implementation of sPAPRDRConnector device
spapr: add rtas_st_buffer_direct() helper
spapr_rtas: add ibm, configure-connector RTAS interface
spapr_drc: add spapr_drc_populate_dt()
spapr_pci: add dynamic-reconfiguration option for spapr-pci-host-bridge
spapr_pci: create DRConnectors for each PCI slot during PHB realize
pci: make pci_bar useable outside pci.c
spapr_pci: enable basic hotplug operations
Mike Day (2):
spapr_rtas: add set-indicator RTAS interface
spapr_rtas: add get-sensor-state RTAS interface
Nathan Fontenot (2):
spapr_rtas: add get/set-power-level RTAS interfaces
spapr_events: re-use EPOW event infrastructure for hotplug events
Nikunj A Dadhania (2):
machine: add default_ram_size to machine class
spapr: override default ram size to 512MB
Paolo Bonzini (3):
tci: do not use CPUArchState in tcg-target.h
tcg: add TCG_TARGET_TLB_DISPLACEMENT_BITS
softmmu: support up to 12 MMU modes
Thomas Huth (5):
dtc: Update dtc / libfdt submodule to version 1.4.0
configure: Check for libfdt version 1.4.0
hw/ppc/spapr_iommu: Fix the check for invalid upper bits in liobn
hw/ppc/spapr: Fix error message when firmware could not be loaded
hw/ppc/spapr: Use error_report() instead of hw_error()
Tyrel Datwyler (2):
spapr_events: event-scan RTAS interface
spapr_pci: emit hotplug add/remove events during hotplug
MAINTAINERS | 3 +-
configure | 6 +-
docs/specs/ppc-spapr-hotplug.txt | 287 +++++++++++++++
dtc | 2 +-
hw/core/machine.c | 9 +
hw/misc/macio/macio.c | 71 ++--
hw/pci/pci.c | 2 +-
hw/ppc/Makefile.objs | 2 +-
hw/ppc/spapr.c | 49 ++-
hw/ppc/spapr_drc.c | 744 +++++++++++++++++++++++++++++++++++++++
hw/ppc/spapr_events.c | 338 +++++++++++++++---
hw/ppc/spapr_iommu.c | 46 ++-
hw/ppc/spapr_pci.c | 513 +++++++++++++++++++++++----
hw/ppc/spapr_rtas.c | 361 +++++++++++++++++++
hw/ppc/spapr_vio.c | 2 +-
include/exec/cpu-defs.h | 35 +-
include/exec/cpu_ldst.h | 104 +++++-
include/hw/boards.h | 1 +
include/hw/pci-host/spapr.h | 7 +
include/hw/pci/pci.h | 6 +
include/hw/ppc/spapr.h | 59 +++-
include/hw/ppc/spapr_drc.h | 201 +++++++++++
include/qemu-common.h | 6 +
target-ppc/kvm.c | 17 +
target-ppc/kvm_ppc.h | 5 +
tcg/aarch64/tcg-target.h | 1 +
tcg/arm/tcg-target.h | 1 +
tcg/i386/tcg-target.h | 1 +
tcg/ia64/tcg-target.h | 2 +
tcg/mips/tcg-target.h | 1 +
tcg/ppc/tcg-target.h | 1 +
tcg/s390/tcg-target.h | 1 +
tcg/sparc/tcg-target.h | 1 +
tcg/tcg.h | 4 +-
tcg/tci/tcg-target.h | 4 +-
trace-events | 4 +
vl.c | 30 +-
37 files changed, 2704 insertions(+), 223 deletions(-)
create mode 100644 docs/specs/ppc-spapr-hotplug.txt
create mode 100644 hw/ppc/spapr_drc.c
create mode 100644 include/hw/ppc/spapr_drc.h
- [Qemu-devel] [PULL 00/40] ppc patch queue 2015-06-03,
Alexander Graf <=
- [Qemu-devel] [PULL 02/40] dtc: Update dtc / libfdt submodule to version 1.4.0, Alexander Graf, 2015/06/03
- [Qemu-devel] [PULL 03/40] configure: Check for libfdt version 1.4.0, Alexander Graf, 2015/06/03
- [Qemu-devel] [PULL 01/40] macio: Convert to realize(), Alexander Graf, 2015/06/03
- [Qemu-devel] [PULL 10/40] spapr_iommu: Add separate trace points for PCI DMA operations, Alexander Graf, 2015/06/03
- [Qemu-devel] [PULL 23/40] spapr_rtas: add get-sensor-state RTAS interface, Alexander Graf, 2015/06/03
- [Qemu-devel] [PULL 31/40] pci: make pci_bar useable outside pci.c, Alexander Graf, 2015/06/03
- [Qemu-devel] [PULL 05/40] spapr_iommu: Disable in-kernel IOMMU tables for >4GB windows, Alexander Graf, 2015/06/03
- [Qemu-devel] [PULL 33/40] spapr_pci: emit hotplug add/remove events during hotplug, Alexander Graf, 2015/06/03