From: David Gibson <david@gibson.dropbear.id.au>
To: peter.maydell@linaro.org
Cc: agraf@suse.de, groug@kaod.org, mdroth@linux.vnet.ibm.com,
lvivier@redhat.com, qemu-ppc@nongnu.org, qemu-devel@nongnu.org,
David Gibson <david@gibson.dropbear.id.au>
Subject: [Qemu-devel] [PULL 00/24] ppc-for-2.12 queue 20171215
Date: Fri, 15 Dec 2017 16:54:11 +1100 [thread overview]
Message-ID: <20171215055435.24204-1-david@gibson.dropbear.id.au> (raw)
The following changes since commit 0ef0583d5adceb9138bdb47494dabd1549ac5b6d:
Merge remote-tracking branch 'remotes/dgilbert/tags/pull-hmp-20171214' into staging (2017-12-14 15:32:32 +0000)
are available in the Git repository at:
git://github.com/dgibson/qemu.git tags/ppc-for-2.12-20171215
for you to fetch changes up to 1481fe5fcfeb7fcf3c1ebb9d8c0432e3e0188ccf:
spapr: don't initialize PATB entry if max-cpu-compat < power9 (2017-12-15 09:50:29 +1100)
----------------------------------------------------------------
ppc patch queue 2017-12-15
First pull request for qemu-2.12. This has quite a bit of stuff
accumulated while 2.11 was finalizing. Highlights are:
* Some preliminary work towards implementing the "XIVE" POWER9
interrupt controller
* Some fixes for problems during reboot with MTTCG
* A substantial TCG performance improvement via
tcg_get_lookup_and_goto_ptr
* Numerous assorted cleanups and bugfixes that weren't urgent enough
for 2.11
----------------------------------------------------------------
Cédric Le Goater (11):
ppc/xics: remove useless if condition
pcc: define the Power-saving mode Exit Cause Enable bits in PowerPCCPUClass
spapr/rtas: disable the decrementer interrupt when a CPU is unplugged
spapr/rtas: fix reboot of a a SMP TCG guest
spapr/rtas: do not reset the MSR in stop-self command
ppc/xics: introduce an icp_create() helper
ppc/xics: assign of the CPU 'intc' pointer under the core
spapr: move the IRQ allocation routines under the machine
spapr: introduce a spapr_irq_set_lsi() helper
spapr: introduce a spapr_qirq() helper
target/ppc: introduce the PPC_BIT() macro
David Gibson (3):
spapr: Add pseries-2.12 machine type
spapr: Rename machine init functions for clarity
spapr: Assume msi_nonbroken
Greg Kurz (3):
spapr_cpu_core: instantiate CPUs separately
spapr: fix LSI interrupt specifiers in the device tree
spapr_events: drop bogus cell from "interrupt-ranges" property
Igor Mammedov (1):
spapr: replace numa_get_node() with lookup in pc-dimm list
Laurent Vivier (1):
spapr: don't initialize PATB entry if max-cpu-compat < power9
Michael Davidsaver (4):
e500: name openpic and pci host bridge
nvram: add AT24Cx i2c eeprom
openpic: debug w/ info_report()
e500: fix pci host bridge class/type
Richard Henderson (1):
target/ppc: Use tcg_gen_lookup_and_goto_ptr
hw/intc/openpic.c | 102 +++++++++---------
hw/intc/trace-events | 4 -
hw/intc/xics.c | 34 +++---
hw/intc/xics_spapr.c | 116 ---------------------
hw/mem/pc-dimm.c | 2 -
hw/nvram/Makefile.objs | 1 +
hw/nvram/eeprom_at24c.c | 205 +++++++++++++++++++++++++++++++++++++
hw/pci-host/ppce500.c | 5 -
hw/ppc/e500.c | 4 +
hw/ppc/pnv_core.c | 10 +-
hw/ppc/spapr.c | 222 +++++++++++++++++++++++++++++++++++-----
hw/ppc/spapr_cpu_core.c | 41 ++++----
hw/ppc/spapr_events.c | 22 ++--
hw/ppc/spapr_pci.c | 13 ++-
hw/ppc/spapr_rtas.c | 21 ++--
hw/ppc/spapr_vio.c | 5 +-
hw/ppc/trace-events | 4 +
include/hw/compat.h | 2 +
include/hw/pci-host/spapr.h | 2 +-
include/hw/ppc/spapr.h | 17 +++
include/hw/ppc/spapr_cpu_core.h | 2 +-
include/hw/ppc/spapr_vio.h | 2 +-
include/hw/ppc/xics.h | 8 +-
include/sysemu/numa.h | 10 --
numa.c | 94 -----------------
target/ppc/cpu-qom.h | 1 +
target/ppc/cpu.h | 105 ++++++++++---------
target/ppc/translate.c | 23 ++---
target/ppc/translate_init.c | 26 ++---
29 files changed, 636 insertions(+), 467 deletions(-)
create mode 100644 hw/nvram/eeprom_at24c.c
next reply other threads:[~2017-12-15 5:54 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-15 5:54 David Gibson [this message]
2017-12-15 5:54 ` [Qemu-devel] [PULL 01/24] target/ppc: Use tcg_gen_lookup_and_goto_ptr David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 02/24] ppc/xics: remove useless if condition David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 03/24] spapr: Add pseries-2.12 machine type David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 04/24] spapr_cpu_core: instantiate CPUs separately David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 05/24] e500: name openpic and pci host bridge David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 06/24] nvram: add AT24Cx i2c eeprom David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 07/24] pcc: define the Power-saving mode Exit Cause Enable bits in PowerPCCPUClass David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 08/24] openpic: debug w/ info_report() David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 09/24] e500: fix pci host bridge class/type David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 10/24] spapr/rtas: disable the decrementer interrupt when a CPU is unplugged David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 11/24] spapr/rtas: fix reboot of a a SMP TCG guest David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 12/24] spapr/rtas: do not reset the MSR in stop-self command David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 13/24] ppc/xics: introduce an icp_create() helper David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 14/24] ppc/xics: assign of the CPU 'intc' pointer under the core David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 15/24] spapr: move the IRQ allocation routines under the machine David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 16/24] spapr: introduce a spapr_irq_set_lsi() helper David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 17/24] spapr: introduce a spapr_qirq() helper David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 18/24] spapr: replace numa_get_node() with lookup in pc-dimm list David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 19/24] spapr: fix LSI interrupt specifiers in the device tree David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 20/24] spapr_events: drop bogus cell from "interrupt-ranges" property David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 21/24] target/ppc: introduce the PPC_BIT() macro David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 22/24] spapr: Rename machine init functions for clarity David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 23/24] spapr: Assume msi_nonbroken David Gibson
2017-12-15 5:54 ` [Qemu-devel] [PULL 24/24] spapr: don't initialize PATB entry if max-cpu-compat < power9 David Gibson
2017-12-15 12:38 ` [Qemu-devel] [PULL 00/24] ppc-for-2.12 queue 20171215 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=20171215055435.24204-1-david@gibson.dropbear.id.au \
--to=david@gibson.dropbear.id.au \
--cc=agraf@suse.de \
--cc=groug@kaod.org \
--cc=lvivier@redhat.com \
--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).