qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/49] ppc-for-2.8 queue 20161026
@ 2016-10-26 11:42 David Gibson
  2016-10-26 11:42 ` [Qemu-devel] [PULL 01/49] pseries: Update SLOF firmware image to 20161019 David Gibson
                   ` (49 more replies)
  0 siblings, 50 replies; 57+ messages in thread
From: David Gibson @ 2016-10-26 11:42 UTC (permalink / raw)
  To: peter.maydell
  Cc: agraf, clg, thuth, lvivier, aik, mark.cave-ayland, qemu-ppc,
	qemu-devel, David Gibson

  Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2016-10-25' into staging (2016-10-25 17:03:11 +0100)

are available in the git repository at:

  git://github.com/dgibson/qemu.git tags/ppc-for-2.8-20161026

for you to fetch changes up to acb8eed32d455851773be209a1d9cd0258904b21:

  adb: change handler only when recognized (2016-10-26 14:58:02 +1100)

----------------------------------------------------------------
ppc patch queue 2016-10-26

Highlights:
  * SLOF (pseries guest firmware) update
  * Enable a number of extra testcases on ppc / pseries
  * Added the 'powernv' machine type
    - Almost enough to be minimally usable
    - But still missing necessary interrupt controller updates
  * Cleanup and consolidation of NVRAM handling on several platforms
    with related firmware
  * Substantial cleanup to device tree construction
  * Some more POWER9 instruction emulation
  * Cleanup to handling of pseries option vectors and CAS reboot
    handling (host/guest feature negotiation mechanism)
  * Several bug fixes

The NVRAM cleanup affects some Sun sparc platforms as well as ppc
ones, but have been tested by the sparc maintainer (Mark Cave-Ayland).

The test additions also include some general changes to the test
framework that aren't strictly ppc related.  They don't seem to break
tests on other platforms, they're for the benefit of enabling tests on
ppc and there isn't a specific maintainer for them, so they're
included in this tree.

----------------------------------------------------------------
Alexey Kardashevskiy (1):
      pseries: Update SLOF firmware image to 20161019

Benjamin Herrenschmidt (4):
      ppc/xics: Add xics to the monitor "info pic" command
      ppc: Fix single step with gdb stub
      ppc/pnv: add skeleton PowerNV platform
      ppc/pnv: add a LPC controller

Cédric Le Goater (11):
      ppc/xics: add a xics_set_nr_servers common routine
      ppc/xics: add a XICSState backlink in ICPState
      ppc/xics: change the icp_ routines API to use an 'ICPState *' argument
      ppc: add skiboot firmware for the pnv platform
      ppc/pnv: add a PnvChip object
      ppc/pnv: add a core mask to PnvChip
      ppc/pnv: add a PIR handler to PnvChip
      ppc/pnv: add a PnvCore object
      ppc/pnv: add XSCOM infrastructure
      ppc/pnv: add XSCOM handlers to PnvCore
      ppc/pnv: add a ISA bus

David Gibson (13):
      pseries: Remove unused callbacks from sPAPR VIO bus state
      pseries: Split device tree construction from device tree load
      pseries: Remove rtas_addr and fdt_addr fields from machinestate
      pseries: Make spapr_create_fdt_skel() get information from machine state
      pseries: Move adding of fdt reserve map entries
      pseries: Consolidate RTAS loading
      pseries: Move construction of /interrupt-controller fdt node
      pseries: Consolidate construction of /chosen device tree node
      pseries: Consolidate construction of /rtas device tree node
      pseries: Move /event-sources construction to spapr_build_fdt()
      pseries: Move /hypervisor node construction to fdt_build_fdt()
      pseries: Consolidate construction of /vdevice device tree node
      pseries: Remove spapr_create_fdt_skel()

Hervé Poussineau (1):
      adb: change handler only when recognized

Laurent Vivier (6):
      tests: fix memory leak in virtio-scsi-test
      tests: don't check if qtest_spapr_boot() returns NULL
      tests: move QVirtioBus pointer into QVirtioDevice
      tests: rename target_big_endian() as qvirtio_is_big_endian()
      tests: use qtest_pc_boot()/qtest_shutdown() in virtio tests
      tests: enable virtio tests on SPAPR

Michael Roth (5):
      spapr_pci: advertise explicit numa IDs even when there's 1 node
      spapr_ovec: initial implementation of option vector helpers
      spapr_hcall: use spapr_ovec_* interfaces for CAS options
      spapr: add option vector handling in CAS-generated resets
      spapr: improve ibm,architecture-vec-5 property handling

Nicholas Piggin (1):
      ppc: fix MSR_ME handling for system reset interrupt

Nikunj A Dadhania (2):
      target-ppc: implement vnegw/d instructions
      target-ppc: implement xxbr[qdwh] instruction

Thomas Huth (4):
      nvram: Introduce helper functions for CHRP "system" and "free space" partitions
      sparc: Use the new common NVRAM functions for system and free space partition
      nvram: Move the remaining CHRP NVRAM related code to chrp_nvram.[ch]
      nvram: Rename openbios_firmware_abi.h into sun_nvram.h

Vasant Hegde (1):
      target-ppc: add vmul10[u,eu,cu,ecu]q instructions

 .gitmodules                                        |   3 +
 MAINTAINERS                                        |   1 +
 Makefile                                           |   2 +-
 default-configs/ppc64-softmmu.mak                  |   1 +
 hw/input/adb.c                                     |  26 +-
 hw/intc/xics.c                                     |  99 ++-
 hw/intc/xics_kvm.c                                 |  13 +-
 hw/intc/xics_spapr.c                               |  53 +-
 hw/nvram/Makefile.objs                             |   1 +
 hw/nvram/chrp_nvram.c                              |  85 +++
 hw/nvram/mac_nvram.c                               |  49 +-
 hw/ppc/Makefile.objs                               |   4 +-
 hw/ppc/pnv.c                                       | 819 +++++++++++++++++++++
 hw/ppc/pnv_core.c                                  | 232 ++++++
 hw/ppc/pnv_lpc.c                                   | 471 ++++++++++++
 hw/ppc/pnv_xscom.c                                 | 275 +++++++
 hw/ppc/spapr.c                                     | 615 ++++++++--------
 hw/ppc/spapr_cpu_core.c                            |   2 +-
 hw/ppc/spapr_events.c                              |  21 +-
 hw/ppc/spapr_hcall.c                               |  70 +-
 hw/ppc/spapr_ovec.c                                | 242 ++++++
 hw/ppc/spapr_pci.c                                 |   8 +-
 hw/ppc/spapr_rtas.c                                |  91 +--
 hw/ppc/spapr_vio.c                                 |  40 +-
 hw/sparc/sun4m.c                                   |  35 +-
 hw/sparc64/sun4u.c                                 |  35 +-
 include/hw/nvram/chrp_nvram.h                      |  54 ++
 .../nvram/{openbios_firmware_abi.h => sun_nvram.h} |  47 +-
 include/hw/ppc/pnv.h                               | 129 ++++
 include/hw/ppc/pnv_core.h                          |  50 ++
 include/hw/ppc/pnv_lpc.h                           |  67 ++
 include/hw/ppc/pnv_xscom.h                         |  78 ++
 include/hw/ppc/spapr.h                             |  19 +-
 include/hw/ppc/spapr_ovec.h                        |  66 ++
 include/hw/ppc/spapr_vio.h                         |   6 +-
 include/hw/ppc/xics.h                              |  11 +-
 pc-bios/README                                     |   7 +-
 pc-bios/skiboot.lid                                | Bin 0 -> 983893 bytes
 pc-bios/slof.bin                                   | Bin 923832 -> 898232 bytes
 roms/Makefile                                      |   8 +-
 roms/SLOF                                          |   2 +-
 roms/skiboot                                       |   1 +
 target-ppc/excp_helper.c                           |   4 +-
 target-ppc/helper.h                                |   2 +
 target-ppc/int_helper.c                            |  12 +
 target-ppc/translate.c                             |  34 +-
 target-ppc/translate/vmx-impl.inc.c                |  74 ++
 target-ppc/translate/vmx-ops.inc.c                 |  10 +-
 target-ppc/translate/vsx-impl.inc.c                |  77 ++
 target-ppc/translate/vsx-ops.inc.c                 |   8 +
 tests/Makefile.include                             |   3 +-
 tests/libqos/libqos.c                              |   2 +
 tests/libqos/virtio-mmio.c                         |   1 +
 tests/libqos/virtio-pci.c                          |  28 +-
 tests/libqos/virtio.c                              |  78 +-
 tests/libqos/virtio.h                              |  57 +-
 tests/libqtest.h                                   |  10 -
 tests/postcopy-test.c                              |   8 +-
 tests/rtas-test.c                                  |   1 -
 tests/vhost-user-test.c                            |  33 +-
 tests/virtio-9p-test.c                             |  69 +-
 tests/virtio-blk-test.c                            | 322 ++++----
 tests/virtio-net-test.c                            | 106 +--
 tests/virtio-rng-test.c                            |   7 +-
 tests/virtio-scsi-test.c                           |  91 +--
 65 files changed, 3819 insertions(+), 1056 deletions(-)
 create mode 100644 hw/nvram/chrp_nvram.c
 create mode 100644 hw/ppc/pnv.c
 create mode 100644 hw/ppc/pnv_core.c
 create mode 100644 hw/ppc/pnv_lpc.c
 create mode 100644 hw/ppc/pnv_xscom.c
 create mode 100644 hw/ppc/spapr_ovec.c
 create mode 100644 include/hw/nvram/chrp_nvram.h
 rename include/hw/nvram/{openbios_firmware_abi.h => sun_nvram.h} (50%)
 create mode 100644 include/hw/ppc/pnv.h
 create mode 100644 include/hw/ppc/pnv_core.h
 create mode 100644 include/hw/ppc/pnv_lpc.h
 create mode 100644 include/hw/ppc/pnv_xscom.h
 create mode 100644 include/hw/ppc/spapr_ovec.h
 create mode 100644 pc-bios/skiboot.lid
 create mode 160000 roms/skiboot

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

end of thread, other threads:[~2016-10-28  1:39 UTC | newest]

Thread overview: 57+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-26 11:42 [Qemu-devel] [PULL 00/49] ppc-for-2.8 queue 20161026 David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 01/49] pseries: Update SLOF firmware image to 20161019 David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 02/49] ppc/xics: Add xics to the monitor "info pic" command David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 03/49] tests: fix memory leak in virtio-scsi-test David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 04/49] tests: don't check if qtest_spapr_boot() returns NULL David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 05/49] tests: move QVirtioBus pointer into QVirtioDevice David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 06/49] tests: rename target_big_endian() as qvirtio_is_big_endian() David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 07/49] tests: use qtest_pc_boot()/qtest_shutdown() in virtio tests David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 08/49] tests: enable virtio tests on SPAPR David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 09/49] spapr_pci: advertise explicit numa IDs even when there's 1 node David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 10/49] nvram: Introduce helper functions for CHRP "system" and "free space" partitions David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 11/49] sparc: Use the new common NVRAM functions for system and free space partition David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 12/49] nvram: Move the remaining CHRP NVRAM related code to chrp_nvram.[ch] David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 13/49] nvram: Rename openbios_firmware_abi.h into sun_nvram.h David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 14/49] target-ppc: implement vnegw/d instructions David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 15/49] target-ppc: implement xxbr[qdwh] instruction David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 16/49] ppc/xics: add a xics_set_nr_servers common routine David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 17/49] ppc/xics: add a XICSState backlink in ICPState David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 18/49] ppc/xics: change the icp_ routines API to use an 'ICPState *' argument David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 19/49] ppc: fix MSR_ME handling for system reset interrupt David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 20/49] pseries: Remove unused callbacks from sPAPR VIO bus state David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 21/49] ppc: Fix single step with gdb stub David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 22/49] ppc: add skiboot firmware for the pnv platform David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 23/49] ppc/pnv: add skeleton PowerNV platform David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 24/49] ppc/pnv: add a PnvChip object David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 25/49] ppc/pnv: add a core mask to PnvChip David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 26/49] ppc/pnv: add a PIR handler " David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 27/49] ppc/pnv: add a PnvCore object David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 28/49] ppc/pnv: add XSCOM infrastructure David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 29/49] ppc/pnv: add XSCOM handlers to PnvCore David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 30/49] ppc/pnv: add a LPC controller David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 31/49] ppc/pnv: add a ISA bus David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 32/49] target-ppc: add vmul10[u, eu, cu, ecu]q instructions David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 33/49] pseries: Split device tree construction from device tree load David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 34/49] pseries: Remove rtas_addr and fdt_addr fields from machinestate David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 35/49] pseries: Make spapr_create_fdt_skel() get information from machine state David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 36/49] pseries: Move adding of fdt reserve map entries David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 37/49] pseries: Consolidate RTAS loading David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 38/49] pseries: Move construction of /interrupt-controller fdt node David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 39/49] pseries: Consolidate construction of /chosen device tree node David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 40/49] pseries: Consolidate construction of /rtas " David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 41/49] pseries: Move /event-sources construction to spapr_build_fdt() David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 42/49] pseries: Move /hypervisor node construction to fdt_build_fdt() David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 43/49] pseries: Consolidate construction of /vdevice device tree node David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 44/49] pseries: Remove spapr_create_fdt_skel() David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 45/49] spapr_ovec: initial implementation of option vector helpers David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 46/49] spapr_hcall: use spapr_ovec_* interfaces for CAS options David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 47/49] spapr: add option vector handling in CAS-generated resets David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 48/49] spapr: improve ibm, architecture-vec-5 property handling David Gibson
2016-10-26 11:42 ` [Qemu-devel] [PULL 49/49] adb: change handler only when recognized David Gibson
2016-10-27 13:06 ` [Qemu-devel] [PULL 00/49] ppc-for-2.8 queue 20161026 Peter Maydell
2016-10-27 13:34   ` David Gibson
2016-10-27 14:05     ` Peter Maydell
2016-10-27 14:25     ` Cédric Le Goater
2016-10-27 22:38       ` David Gibson
2016-10-27 13:52   ` Cédric Le Goater
2016-10-27 13:58     ` Peter Maydell

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