From: David Gibson <david@gibson.dropbear.id.au>
To: peter.maydell@linaro.org
Cc: groug@kaod.org, qemu-ppc@nongnu.org, qemu-devel@nongnu.org,
mdroth@linux.vnet.ibm.com,
David Gibson <david@gibson.dropbear.id.au>
Subject: [Qemu-devel] [PULL 00/14] ppc-for-2.12 queue 20171219
Date: Tue, 19 Dec 2017 15:29:28 +1100 [thread overview]
Message-ID: <20171219042942.29297-1-david@gibson.dropbear.id.au> (raw)
The following changes since commit eaefea537b476cb853e2edbdc68e969ec777e4bb:
Merge remote-tracking branch 'remotes/mjt/tags/trivial-patches-fetch' into staging (2017-12-18 14:17:42 +0000)
are available in the Git repository at:
git://github.com/dgibson/qemu.git tags/ppc-for-2.12-20171219
for you to fetch changes up to eec745d4366076dee068750ea80245e1a46e9c13:
hw/ide: Emulate SiI3112 SATA controller (2017-12-19 15:24:28 +1100)
----------------------------------------------------------------
ppc patch queue 2017-12-19
Here's a second batch of patches for qemu-2.12. Highlights are:
* Optional capabilities for the "pseries" machine. This removes
some places where we were changing guest visible properties based
on host capabilities, which makes life very bad for migration.
* SLOF update
* Significant TCG speedup from Paolo
* Several new devices for embedded platforms
* Some minor cleanups
----------------------------------------------------------------
Alexey Kardashevskiy (1):
pseries: Update SLOF firmware image to qemu-slof-20171214
BALATON Zoltan (4):
sm501: Add panel hardware cursor registers also to read function
sm501: Add some more unimplemented registers
ppc4xx_i2c: Implement basic I2C functions
hw/ide: Emulate SiI3112 SATA controller
Cédric Le Goater (1):
ppc/pnv: change powernv_ prefix to pnv_ for overall naming consistency
David Gibson (6):
spapr: Capabilities infrastructure
spapr: Treat Hardware Transactional Memory (HTM) as an optional capability
spapr: Validate capabilities on migration
target/ppc: Clean up probing of VMX, VSX and DFP availability on KVM
spapr: Handle VMX/VSX presence as an spapr capability flag
spapr: Handle Decimal Floating Point (DFP) as an optional capability
Greg Kurz (1):
spapr_pci: use warn_report()
pbonzini@redhat.com (1):
target-ppc: optimize cmp translation
MAINTAINERS | 6 +
default-configs/ppcemb-softmmu.mak | 1 +
hw/display/sm501.c | 30 +++
hw/i2c/ppc4xx_i2c.c | 198 +++++++++++++++++---
hw/ide/Makefile.objs | 1 +
hw/ide/sii3112.c | 368 +++++++++++++++++++++++++++++++++++++
hw/ide/trace-events | 5 +
hw/ppc/Makefile.objs | 2 +-
hw/ppc/pnv.c | 94 +++++-----
hw/ppc/pnv_bmc.c | 2 +-
hw/ppc/pnv_core.c | 8 +-
hw/ppc/pnv_lpc.c | 6 +-
hw/ppc/pnv_psi.c | 4 +-
hw/ppc/pnv_xscom.c | 10 +-
hw/ppc/spapr.c | 47 +++--
hw/ppc/spapr_caps.c | 341 ++++++++++++++++++++++++++++++++++
hw/ppc/spapr_pci.c | 6 +-
hw/ppc/spapr_pci_vfio.c | 2 +-
include/hw/i2c/ppc4xx_i2c.h | 3 +
include/hw/ppc/pnv.h | 10 +-
include/hw/ppc/pnv_xscom.h | 4 +-
include/hw/ppc/spapr.h | 46 +++++
pc-bios/README | 2 +-
pc-bios/slof.bin | Bin 905200 -> 913880 bytes
roms/SLOF | 2 +-
target/ppc/kvm.c | 27 +--
target/ppc/kvm_ppc.h | 2 -
target/ppc/translate.c | 29 ++-
28 files changed, 1095 insertions(+), 161 deletions(-)
create mode 100644 hw/ide/sii3112.c
create mode 100644 hw/ppc/spapr_caps.c
next reply other threads:[~2017-12-19 4:29 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-19 4:29 David Gibson [this message]
2017-12-19 4:29 ` [Qemu-devel] [PULL 01/14] target-ppc: optimize cmp translation David Gibson
2017-12-19 4:29 ` [Qemu-devel] [PULL 02/14] pseries: Update SLOF firmware image to qemu-slof-20171214 David Gibson
2017-12-19 4:29 ` [Qemu-devel] [PULL 03/14] sm501: Add panel hardware cursor registers also to read function David Gibson
2017-12-19 4:29 ` [Qemu-devel] [PULL 04/14] sm501: Add some more unimplemented registers David Gibson
2017-12-19 4:29 ` [Qemu-devel] [PULL 05/14] ppc4xx_i2c: Implement basic I2C functions David Gibson
2017-12-19 4:29 ` [Qemu-devel] [PULL 06/14] ppc/pnv: change powernv_ prefix to pnv_ for overall naming consistency David Gibson
2017-12-19 4:29 ` [Qemu-devel] [PULL 07/14] spapr: Capabilities infrastructure David Gibson
2017-12-19 4:29 ` [Qemu-devel] [PULL 08/14] spapr: Treat Hardware Transactional Memory (HTM) as an optional capability David Gibson
2017-12-19 4:29 ` [Qemu-devel] [PULL 09/14] spapr: Validate capabilities on migration David Gibson
2017-12-19 4:29 ` [Qemu-devel] [PULL 10/14] target/ppc: Clean up probing of VMX, VSX and DFP availability on KVM David Gibson
2017-12-19 4:29 ` [Qemu-devel] [PULL 11/14] spapr: Handle VMX/VSX presence as an spapr capability flag David Gibson
2017-12-19 4:29 ` [Qemu-devel] [PULL 12/14] spapr: Handle Decimal Floating Point (DFP) as an optional capability David Gibson
2017-12-19 4:29 ` [Qemu-devel] [PULL 13/14] spapr_pci: use warn_report() David Gibson
2017-12-19 4:29 ` [Qemu-devel] [PULL 14/14] hw/ide: Emulate SiI3112 SATA controller David Gibson
2017-12-20 11:29 ` [Qemu-devel] [PULL 00/14] ppc-for-2.12 queue 20171219 Peter Maydell
2017-12-20 13:45 ` David Gibson
2017-12-21 8:40 ` David Gibson
2017-12-21 13:09 ` Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171219042942.29297-1-david@gibson.dropbear.id.au \
--to=david@gibson.dropbear.id.au \
--cc=groug@kaod.org \
--cc=mdroth@linux.vnet.ibm.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).