[PULL 00/15] hw/nvme updates

Klaus Jensen posted 15 patches 1 year, 11 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20220623213442.67789-1-its@irrelevant.dk
Maintainers: "Michael S. Tsirkin" <mst@redhat.com>, Igor Mammedov <imammedo@redhat.com>, Ani Sinha <ani@anisinha.ca>, Keith Busch <kbusch@kernel.org>, Klaus Jensen <its@irrelevant.dk>, Stefan Hajnoczi <stefanha@redhat.com>, Fam Zheng <fam@euphon.net>, "Philippe Mathieu-Daudé" <f4bug@amsat.org>, Kevin Wolf <kwolf@redhat.com>, Hanna Reitz <hreitz@redhat.com>, Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
There is a newer version of this series
docs/system/devices/nvme.rst |  82 ++++
hw/acpi/pcihp.c              |   6 +-
hw/nvme/ctrl.c               | 743 ++++++++++++++++++++++++++++++-----
hw/nvme/ns.c                 |   2 +-
hw/nvme/nvme.h               |  55 ++-
hw/nvme/subsys.c             |  75 +++-
hw/nvme/trace-events         |   6 +
include/block/nvme.h         |  65 +++
include/hw/pci/pci_ids.h     |   1 +
9 files changed, 933 insertions(+), 102 deletions(-)
[PULL 00/15] hw/nvme updates
Posted by Klaus Jensen 1 year, 11 months ago
From: Klaus Jensen <k.jensen@samsung.com>

Hi,

The following changes since commit 7db86fe2ed220c196061824e652b94e7a2acbabf:

  Merge tag 'pull-migration-20220623b' of https://gitlab.com/dagrh/qemu into staging (2022-06-23 10:14:20 -0700)

are available in the Git repository at:

  git://git.infradead.org/qemu-nvme.git tags/nvme-next-pull-request

for you to fetch changes up to 98836e8e012a959ec515c041e4fdd7f2ae87ae16:

  hw/nvme: clear aen mask on reset (2022-06-23 23:24:29 +0200)

----------------------------------------------------------------
hw/nvme updates

- sriov functionality
- odd fixes

----------------------------------------------------------------

Klaus Jensen (3):
  hw/nvme: clean up CC register write logic
  Revert "hw/block/nvme: add support for sgl bit bucket descriptor"
  hw/nvme: clear aen mask on reset

Lukasz Maniak (4):
  hw/nvme: Add support for SR-IOV
  hw/nvme: Add support for Primary Controller Capabilities
  hw/nvme: Add support for Secondary Controller List
  docs: Add documentation for SR-IOV and Virtualization Enhancements

Łukasz Gieryk (8):
  hw/nvme: Implement the Function Level Reset
  hw/nvme: Make max_ioqpairs and msix_qsize configurable in runtime
  hw/nvme: Remove reg_size variable and update BAR0 size calculation
  hw/nvme: Calculate BAR attributes in a function
  hw/nvme: Initialize capability structures for primary/secondary
    controllers
  hw/nvme: Add support for the Virtualization Management command
  hw/nvme: Update the initalization place for the AER queue
  hw/acpi: Make the PCI hot-plug aware of SR-IOV

 docs/system/devices/nvme.rst |  82 ++++
 hw/acpi/pcihp.c              |   6 +-
 hw/nvme/ctrl.c               | 743 ++++++++++++++++++++++++++++++-----
 hw/nvme/ns.c                 |   2 +-
 hw/nvme/nvme.h               |  55 ++-
 hw/nvme/subsys.c             |  75 +++-
 hw/nvme/trace-events         |   6 +
 include/block/nvme.h         |  65 +++
 include/hw/pci/pci_ids.h     |   1 +
 9 files changed, 933 insertions(+), 102 deletions(-)

-- 
2.36.1

Re: [PULL 00/15] hw/nvme updates
Posted by Richard Henderson 1 year, 11 months ago
On 6/23/22 14:34, Klaus Jensen wrote:
> From: Klaus Jensen <k.jensen@samsung.com>
> 
> Hi,
> 
> The following changes since commit 7db86fe2ed220c196061824e652b94e7a2acbabf:
> 
>    Merge tag 'pull-migration-20220623b' of https://gitlab.com/dagrh/qemu into staging (2022-06-23 10:14:20 -0700)
> 
> are available in the Git repository at:
> 
>    git://git.infradead.org/qemu-nvme.git tags/nvme-next-pull-request
> 
> for you to fetch changes up to 98836e8e012a959ec515c041e4fdd7f2ae87ae16:
> 
>    hw/nvme: clear aen mask on reset (2022-06-23 23:24:29 +0200)
> 
> ----------------------------------------------------------------
> hw/nvme updates
> 
> - sriov functionality
> - odd fixes

Applied, thanks.  Please update https://wiki.qemu.org/ChangeLog/7.1 as appropriate.


r~



> 
> ----------------------------------------------------------------
> 
> Klaus Jensen (3):
>    hw/nvme: clean up CC register write logic
>    Revert "hw/block/nvme: add support for sgl bit bucket descriptor"
>    hw/nvme: clear aen mask on reset
> 
> Lukasz Maniak (4):
>    hw/nvme: Add support for SR-IOV
>    hw/nvme: Add support for Primary Controller Capabilities
>    hw/nvme: Add support for Secondary Controller List
>    docs: Add documentation for SR-IOV and Virtualization Enhancements
> 
> Łukasz Gieryk (8):
>    hw/nvme: Implement the Function Level Reset
>    hw/nvme: Make max_ioqpairs and msix_qsize configurable in runtime
>    hw/nvme: Remove reg_size variable and update BAR0 size calculation
>    hw/nvme: Calculate BAR attributes in a function
>    hw/nvme: Initialize capability structures for primary/secondary
>      controllers
>    hw/nvme: Add support for the Virtualization Management command
>    hw/nvme: Update the initalization place for the AER queue
>    hw/acpi: Make the PCI hot-plug aware of SR-IOV
> 
>   docs/system/devices/nvme.rst |  82 ++++
>   hw/acpi/pcihp.c              |   6 +-
>   hw/nvme/ctrl.c               | 743 ++++++++++++++++++++++++++++++-----
>   hw/nvme/ns.c                 |   2 +-
>   hw/nvme/nvme.h               |  55 ++-
>   hw/nvme/subsys.c             |  75 +++-
>   hw/nvme/trace-events         |   6 +
>   include/block/nvme.h         |  65 +++
>   include/hw/pci/pci_ids.h     |   1 +
>   9 files changed, 933 insertions(+), 102 deletions(-)
>