All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v7 00/12] PCI devices passthrough on Arm, part 3
@ 2023-06-13 10:32 Volodymyr Babchuk
  2023-06-13 10:32 ` [PATCH v7 01/12] vpci: introduce per-domain lock to protect vpci structure Volodymyr Babchuk
                   ` (12 more replies)
  0 siblings, 13 replies; 38+ messages in thread
From: Volodymyr Babchuk @ 2023-06-13 10:32 UTC (permalink / raw)
  To: xen-devel@lists.xenproject.org
  Cc: Volodymyr Babchuk, Jan Beulich, Andrew Cooper,
	Roger Pau Monné, Wei Liu, George Dunlap, Julien Grall,
	Stefano Stabellini, Paul Durrant, Bertrand Marquis,
	Volodymyr Babchuk

Hello,

This is another another version of vPCI rework (previous one can be
found at [1]). The biggest change is how vPCI locking is done. This
series uses per-domain vPCI rwlock.

Note that this series does not include my work on reference counting
for PCI devices because this counting does not resolve isses we are
having for vPCI. While it is (maybe) nice to have PCI refcounting, it
does not moves us towards PCI on ARM.


[1] https://lore.kernel.org/all/20220204063459.680961-1-andr2000@gmail.com/

Oleksandr Andrushchenko (12):
  vpci: introduce per-domain lock to protect vpci structure
  vpci: restrict unhandled read/write operations for guests
  vpci: add hooks for PCI device assign/de-assign
  vpci/header: implement guest BAR register handlers
  rangeset: add RANGESETF_no_print flag
  vpci/header: handle p2m range sets per BAR
  vpci/header: program p2m with guest BAR view
  vpci/header: emulate PCI_COMMAND register for guests
  vpci/header: reset the command register when adding devices
  vpci: add initial support for virtual PCI bus topology
  xen/arm: translate virtual PCI bus topology for guests
  xen/arm: account IO handlers for emulated PCI MSI-X

 xen/arch/arm/vpci.c           |  31 ++-
 xen/arch/x86/hvm/vmsi.c       |   7 +
 xen/common/domain.c           |   3 +
 xen/common/rangeset.c         |   5 +-
 xen/drivers/Kconfig           |   4 +
 xen/drivers/passthrough/pci.c |  16 ++
 xen/drivers/vpci/header.c     | 485 ++++++++++++++++++++++++++++------
 xen/drivers/vpci/msi.c        |  29 +-
 xen/drivers/vpci/msix.c       |  55 +++-
 xen/drivers/vpci/vpci.c       | 257 ++++++++++++++++--
 xen/include/xen/pci.h         |   1 +
 xen/include/xen/rangeset.h    |   5 +-
 xen/include/xen/sched.h       |  11 +
 xen/include/xen/vpci.h        |  47 +++-
 14 files changed, 826 insertions(+), 130 deletions(-)

-- 
2.40.1

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

end of thread, other threads:[~2023-07-10  6:20 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-13 10:32 [PATCH v7 00/12] PCI devices passthrough on Arm, part 3 Volodymyr Babchuk
2023-06-13 10:32 ` [PATCH v7 01/12] vpci: introduce per-domain lock to protect vpci structure Volodymyr Babchuk
2023-06-16 16:30   ` Roger Pau Monné
2023-06-21 22:07     ` Volodymyr Babchuk
2023-06-22  8:15       ` Roger Pau Monné
2023-06-22 21:17         ` Volodymyr Babchuk
2023-06-23  8:50           ` Roger Pau Monné
2023-06-23  9:26             ` Volodymyr Babchuk
2023-06-23 17:09               ` Jan Beulich
2023-07-04 21:03             ` Volodymyr Babchuk
2023-07-05  7:11               ` Jan Beulich
2023-07-05  8:59                 ` Roger Pau Monné
2023-07-05  9:13                   ` Jan Beulich
2023-07-07  2:02                     ` Volodymyr Babchuk
2023-07-07  6:32                       ` Jan Beulich
2023-07-09 22:41                 ` Volodymyr Babchuk
2023-07-10  6:20                   ` Jan Beulich
2023-06-20 20:17   ` Stewart Hildebrand
2023-06-22 21:18     ` Volodymyr Babchuk
2023-06-13 10:32 ` [PATCH v7 04/12] vpci/header: implement guest BAR register handlers Volodymyr Babchuk
2023-06-13 10:32 ` [PATCH v7 03/12] vpci: add hooks for PCI device assign/de-assign Volodymyr Babchuk
2023-06-13 10:32 ` [PATCH v7 02/12] vpci: restrict unhandled read/write operations for guests Volodymyr Babchuk
2023-06-13 10:32 ` [PATCH v7 06/12] vpci/header: handle p2m range sets per BAR Volodymyr Babchuk
2023-06-13 10:32 ` [PATCH v7 08/12] vpci/header: emulate PCI_COMMAND register for guests Volodymyr Babchuk
2023-06-13 10:32 ` [PATCH v7 05/12] rangeset: add RANGESETF_no_print flag Volodymyr Babchuk
2023-06-13 10:32 ` [PATCH v7 07/12] vpci/header: program p2m with guest BAR view Volodymyr Babchuk
2023-06-13 10:32 ` [PATCH v7 10/12] vpci: add initial support for virtual PCI bus topology Volodymyr Babchuk
2023-06-21 12:06   ` Jan Beulich
2023-07-07 16:45     ` Oleksandr Tyshchenko
2023-06-13 10:32 ` [PATCH v7 11/12] xen/arm: translate virtual PCI bus topology for guests Volodymyr Babchuk
2023-06-21 12:01   ` Jan Beulich
2023-06-13 10:32 ` [PATCH v7 09/12] vpci/header: reset the command register when adding devices Volodymyr Babchuk
2023-06-13 10:32 ` [PATCH v7 12/12] xen/arm: account IO handlers for emulated PCI MSI-X Volodymyr Babchuk
2023-06-15  2:01 ` [PATCH v7 00/12] PCI devices passthrough on Arm, part 3 Stewart Hildebrand
2023-06-15  9:39   ` Volodymyr Babchuk
2023-06-15 12:16     ` Jan Beulich
2023-06-21 22:11       ` Volodymyr Babchuk
2023-06-22  7:48         ` Jan Beulich

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.