All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v7 0/7] PCI devices passthrough on Arm, part 2
@ 2021-11-24  7:59 Oleksandr Andrushchenko
  2021-11-24  7:59 ` [PATCH v7 1/7] xen/arm: rename DEVICE_PCI to DEVICE_PCI_HOSTBRIDGE Oleksandr Andrushchenko
                   ` (7 more replies)
  0 siblings, 8 replies; 27+ messages in thread
From: Oleksandr Andrushchenko @ 2021-11-24  7:59 UTC (permalink / raw)
  To: xen-devel
  Cc: julien, sstabellini, oleksandr_tyshchenko, volodymyr_babchuk,
	Artem_Mygaiev, roger.pau, jbeulich, andrew.cooper3,
	george.dunlap, paul, bertrand.marquis, rahul.singh,
	Oleksandr Andrushchenko

From: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>

Hi, all!

This is an assorted series of patches which aim is to make some further
basis for PCI passthrough on Arm support. The series continues the work
published earlier by Arm [1] and adds new helpers and clears the way for
vPCI changes which will follow.

RFC is at [2], [3]. Design presentation can be found at [4].

I have removed patch
[PATCH v6 5/7] xen/arm: do not map IRQs and memory for disabled devices
as it seems that this needs more time for decision on how to achive
that.

I have also added a new patch
[PATCH v7 4/7] xen/arm: account IO handler for emulated PCI host bridge
with a tiny latent bug fix.

Thank you,
Oleksandr

[1] https://patchwork.kernel.org/project/xen-devel/list/?series=558681
[2] https://lists.xenproject.org/archives/html/xen-devel/2020-07/msg01184.html
[3] https://lists.xenproject.org/archives/html/xen-devel/2020-07/threads.html#01184
[4] https://static.sched.com/hosted_files/xen2021/e4/PCI_Device_Passthrough_On_Arm.pdf

Oleksandr Andrushchenko (7):
  xen/arm: rename DEVICE_PCI to DEVICE_PCI_HOSTBRIDGE
  xen/arm: add pci-domain for disabled devices
  xen/arm: setup MMIO range trap handlers for hardware domain
  xen/arm: account IO handler for emulated PCI host bridge
  xen/arm: do not map PCI ECAM and MMIO space to Domain-0's p2m
  xen/arm: process pending vPCI map/unmap operations
  xen/arm: do not use void pointer in pci_host_common_probe

 xen/arch/arm/domain.c               |   2 +
 xen/arch/arm/domain_build.c         | 132 +++++++++++++++++++---------
 xen/arch/arm/pci/ecam.c             |  18 +++-
 xen/arch/arm/pci/pci-host-common.c  |  81 +++++++++++++++--
 xen/arch/arm/pci/pci-host-generic.c |   2 +-
 xen/arch/arm/pci/pci-host-zynqmp.c  |   3 +-
 xen/arch/arm/pci/pci.c              |   2 +-
 xen/arch/arm/traps.c                |  13 +++
 xen/arch/arm/vpci.c                 |  80 +++++++++++++++--
 xen/arch/arm/vpci.h                 |   6 ++
 xen/arch/x86/hvm/hvm.c              |   6 ++
 xen/common/ioreq.c                  |   9 --
 xen/include/asm-arm/device.h        |   2 +-
 xen/include/asm-arm/pci.h           |  27 +++++-
 xen/include/asm-arm/setup.h         |  13 +++
 15 files changed, 323 insertions(+), 73 deletions(-)

-- 
2.25.1



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

end of thread, other threads:[~2021-12-09  6:56 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-24  7:59 [PATCH v7 0/7] PCI devices passthrough on Arm, part 2 Oleksandr Andrushchenko
2021-11-24  7:59 ` [PATCH v7 1/7] xen/arm: rename DEVICE_PCI to DEVICE_PCI_HOSTBRIDGE Oleksandr Andrushchenko
2021-11-24  9:18   ` Jiamei Xie
2021-11-24 11:00   ` Rahul Singh
2021-11-25  1:09   ` Henry Wang
2021-11-24  7:59 ` [PATCH v7 2/7] xen/arm: add pci-domain for disabled devices Oleksandr Andrushchenko
2021-11-24 11:20   ` Rahul Singh
2021-12-08 17:24   ` Julien Grall
2021-11-24  7:59 ` [PATCH v7 3/7] xen/arm: setup MMIO range trap handlers for hardware domain Oleksandr Andrushchenko
2021-12-08 16:48   ` Julien Grall
2021-12-08 18:56     ` Oleksandr Andrushchenko
2021-11-24  7:59 ` [PATCH v7 4/7] xen/arm: account IO handler for emulated PCI host bridge Oleksandr Andrushchenko
2021-12-08 16:53   ` Julien Grall
2021-12-08 18:57     ` Oleksandr Andrushchenko
2021-12-09  6:55       ` Oleksandr Andrushchenko
2021-11-24  7:59 ` [PATCH v7 5/7] xen/arm: do not map PCI ECAM and MMIO space to Domain-0's p2m Oleksandr Andrushchenko
2021-12-08 17:20   ` Julien Grall
2021-12-08 18:58     ` Oleksandr Andrushchenko
2021-11-24  7:59 ` [PATCH v7 6/7] xen/arm: process pending vPCI map/unmap operations Oleksandr Andrushchenko
2021-11-24 11:35   ` Rahul Singh
2021-12-03 12:54   ` Julien Grall
2021-12-03 16:10   ` Durrant, Paul
2021-12-07 11:57     ` Oleksandr Andrushchenko
2021-12-08 16:39       ` Julien Grall
2021-11-24  7:59 ` [PATCH v7 7/7] xen/arm: do not use void pointer in pci_host_common_probe Oleksandr Andrushchenko
2021-11-24 11:02   ` Rahul Singh
2021-12-03 13:01 ` [PATCH v7 0/7] PCI devices passthrough on Arm, part 2 Julien Grall

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.