qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/14] VFIO updates 2016-02-19
@ 2016-02-19 17:39 Alex Williamson
  2016-02-19 17:39 ` [Qemu-devel] [PULL 01/14] pcie: modify the capability size assert Alex Williamson
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: Alex Williamson @ 2016-02-19 17:39 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 1b3337bb1d1c3125a2140c47629f36540ac57605:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-error-2016-02-19' into staging (2016-02-19 15:19:13 +0000)

are available in the git repository at:


  git://github.com/awilliam/qemu-vfio.git tags/vfio-update-20160219.1

for you to fetch changes up to b58b17f744b5465d0fc76eba1be549a9f5704bab:

  vfio/pci: use PCI_MSIX_FLAGS on retrieving the MSIX entries (2016-02-19 09:42:32 -0700)

----------------------------------------------------------------
VFIO updates 2016-02-19

 - AER pre-enable and misc fixes (Cao jin and Chen Fan)
 - PCI_CAP_LIST_NEXT & PCI_MSIX_FLAGS cleanup (Wei Yang)
 - AMD XGBE KVM platform passthrough (Eric Auger)

----------------------------------------------------------------
Chen Fan (4):
      pcie: modify the capability size assert
      vfio: make the 4 bytes aligned for capability size
      aer: impove pcie_aer_init to support vfio device
      pcie_aer: expose pcie_aer_msg() interface

Eric Auger (8):
      hw/vfio/platform: amd-xgbe device
      device_tree: introduce load_device_tree_from_sysfs
      device_tree: introduce qemu_fdt_node_path
      device_tree: qemu_fdt_getprop converted to use the error API
      device_tree: qemu_fdt_getprop_cell converted to use the error API
      hw/arm/sysbus-fdt: helpers for clock node generation
      hw/arm/sysbus-fdt: enable amd-xgbe dynamic instantiation
      hw/arm/sysbus-fdt: remove qemu_fdt_setprop returned value check

Wei Yang (2):
      vfio/pci: replace 1 with PCI_CAP_LIST_NEXT to make code self-explain
      vfio/pci: use PCI_MSIX_FLAGS on retrieving the MSIX entries

 device_tree.c                      | 182 +++++++++++++++++++--
 hw/arm/boot.c                      |   6 +-
 hw/arm/sysbus-fdt.c                | 319 +++++++++++++++++++++++++++++++++++--
 hw/arm/vexpress.c                  |   6 +-
 hw/pci-bridge/ioh3420.c            |   2 +-
 hw/pci-bridge/xio3130_downstream.c |   2 +-
 hw/pci-bridge/xio3130_upstream.c   |   2 +-
 hw/pci/pcie.c                      |   2 +-
 hw/pci/pcie_aer.c                  |   6 +-
 hw/vfio/Makefile.objs              |   1 +
 hw/vfio/amd-xgbe.c                 |  55 +++++++
 hw/vfio/pci.c                      |  13 +-
 include/hw/pci/pcie_aer.h          |   3 +-
 include/hw/vfio/vfio-amd-xgbe.h    |  51 ++++++
 include/sysemu/device_tree.h       |  53 +++++-
 15 files changed, 660 insertions(+), 43 deletions(-)
 create mode 100644 hw/vfio/amd-xgbe.c
 create mode 100644 include/hw/vfio/vfio-amd-xgbe.h

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

end of thread, other threads:[~2016-02-19 18:35 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-19 17:39 [Qemu-devel] [PULL 00/14] VFIO updates 2016-02-19 Alex Williamson
2016-02-19 17:39 ` [Qemu-devel] [PULL 01/14] pcie: modify the capability size assert Alex Williamson
2016-02-19 17:39 ` [Qemu-devel] [PULL 02/14] vfio: make the 4 bytes aligned for capability size Alex Williamson
2016-02-19 17:39 ` [Qemu-devel] [PULL 03/14] aer: impove pcie_aer_init to support vfio device Alex Williamson
2016-02-19 17:39 ` [Qemu-devel] [PULL 04/14] pcie_aer: expose pcie_aer_msg() interface Alex Williamson
2016-02-19 17:40 ` [Qemu-devel] [PULL 05/14] vfio/pci: replace 1 with PCI_CAP_LIST_NEXT to make code self-explain Alex Williamson
2016-02-19 17:40 ` [Qemu-devel] [PULL 06/14] hw/vfio/platform: amd-xgbe device Alex Williamson
2016-02-19 17:40 ` [Qemu-devel] [PULL 07/14] device_tree: introduce load_device_tree_from_sysfs Alex Williamson
2016-02-19 17:40 ` [Qemu-devel] [PULL 08/14] device_tree: introduce qemu_fdt_node_path Alex Williamson
2016-02-19 17:40 ` [Qemu-devel] [PULL 09/14] device_tree: qemu_fdt_getprop converted to use the error API Alex Williamson
2016-02-19 17:40 ` [Qemu-devel] [PULL 10/14] device_tree: qemu_fdt_getprop_cell " Alex Williamson
2016-02-19 17:40 ` [Qemu-devel] [PULL 11/14] hw/arm/sysbus-fdt: helpers for clock node generation Alex Williamson
2016-02-19 17:40 ` [Qemu-devel] [PULL 12/14] hw/arm/sysbus-fdt: enable amd-xgbe dynamic instantiation Alex Williamson
2016-02-19 17:40 ` [Qemu-devel] [PULL 13/14] hw/arm/sysbus-fdt: remove qemu_fdt_setprop returned value check Alex Williamson
2016-02-19 17:40 ` [Qemu-devel] [PULL 14/14] vfio/pci: use PCI_MSIX_FLAGS on retrieving the MSIX entries Alex Williamson
2016-02-19 17:47 ` [Qemu-devel] [PULL 00/14] VFIO updates 2016-02-19 Alex Williamson
2016-02-19 18:34 ` 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).