[PATCH v8 00/13] Add initial Xen Suspend-to-RAM support on ARM64

Mykola Kvach posted 13 patches 5 days, 17 hours ago
Patches applied successfully (tree, apply log)
git fetch https://gitlab.com/xen-project/patchew/xen tags/patchew/cover.1775125380.git.mykola._5Fkvach@epam.com
xen/arch/arm/Kconfig                     |   2 +
xen/arch/arm/Makefile                    |   1 +
xen/arch/arm/arm64/head.S                | 112 ++++++++
xen/arch/arm/gic-v2.c                    | 132 +++++++++
xen/arch/arm/gic-v3-its.c                | 126 +++++++-
xen/arch/arm/gic-v3-lpi.c                |  80 +++++-
xen/arch/arm/gic-v3.c                    | 349 ++++++++++++++++++++++-
xen/arch/arm/gic.c                       |  29 ++
xen/arch/arm/include/asm/gic.h           |  12 +
xen/arch/arm/include/asm/gic_v3_defs.h   |   1 +
xen/arch/arm/include/asm/gic_v3_its.h    |  24 ++
xen/arch/arm/include/asm/mm.h            |   2 +
xen/arch/arm/include/asm/psci.h          |   1 +
xen/arch/arm/include/asm/suspend.h       |  31 ++
xen/arch/arm/include/asm/time.h          |   5 +
xen/arch/arm/mmu/smpboot.c               |   2 +-
xen/arch/arm/psci.c                      |  23 +-
xen/arch/arm/suspend.c                   | 195 +++++++++++++
xen/arch/arm/tee/ffa_notif.c             |  63 +++-
xen/arch/arm/tee/tee.c                   |   2 +-
xen/arch/arm/time.c                      |  44 ++-
xen/arch/arm/vpsci.c                     |  12 +-
xen/common/Kconfig                       |   3 +
xen/common/domain.c                      |   7 +-
xen/drivers/passthrough/arm/ipmmu-vmsa.c | 305 +++++++++++++++++++-
xen/drivers/passthrough/arm/smmu-v3.c    | 172 ++++++++---
xen/drivers/passthrough/arm/smmu.c       |  10 +
xen/include/xen/list.h                   |  14 +
28 files changed, 1670 insertions(+), 89 deletions(-)
create mode 100644 xen/arch/arm/suspend.c
[PATCH v8 00/13] Add initial Xen Suspend-to-RAM support on ARM64
Posted by Mykola Kvach 5 days, 17 hours ago
From: Mykola Kvach <mykola_kvach@epam.com>

This is part 2 of version 8 of the ARM Xen system suspend/resume patch
series, based on earlier work by Mirela Simonovic and Mykyta Poturai.

The first part is in mainline.

NOTE: Most of the code is guarded by CONFIG_SYSTEM_SUSPEND, which can
currently only be selected when UNSUPPORTED is set, and thus the
functionality is neither enabled by default nor even built.

This version is ported to Xen master and includes extensive improvements
based on reviewer feedback. The patch series restructures code to improve
robustness, maintainability, and implements system Suspend-to-RAM support
on ARM64 hardware/control domains.

Key updates in this series:
 - Introduced architecture-specific suspend/resume infrastructure
 - Integrated GICv2/GICv3 suspend and resume, including memory-backed context
   save/restore with error handling
 - Added time and IRQ suspend/resume hooks, ensuring correct timer/interrupt
   state across suspend cycles
 - Implemented proper PSCI SYSTEM_SUSPEND invocation and version checks
 - Improved state management and recovery in error cases during suspend/resume
 - Added support for IPMMU-VMSA/SMMUv3 context save/restore
 - Added support for GICv3 eSPI registers context save/restore
 - Added support for ITS registers context save/restore
---

TODOs:
 - Enable "xl suspend" support on ARM
 - Add suspend/resume CI test for ARM (QEMU if feasible)
 - PCI suspend ?
---

Detailed changelogs can be found in each patch.

Changes in v8:
- Rebased to latest master and refreshed the series accordingly.
- Added a new GICv3 patch to tolerate retained redistributor LPI state
  across CPU_OFF/CPU_ON.
- GICv2 suspend now disables the CPU interface and distributor before
  saving state.
- GICv3 suspend/resume fixes the redistributor base used for LPI state.
- ITS and SMMUv3 suspend/resume paths were tightened, with safer
  restore/rollback handling and stricter fatal-error handling.
- System suspend now checks that all domains are already in
  SHUTDOWN_suspend before proceeding, and renames the hardware-domain
  suspend capability/helper for clearer semantics.
- Fixed alignment/cleanup issues in the low-level suspend/resume code.

Changes in v7:
- Timer helper renamed/clarified; virtual/hyper/phys handling documented.
- GICv2 uses one context block; restore saved CTLR; panic on alloc failure.
- GICv3/eSPI/ITS always suspend/resume; restore LPI/eSPI; rdist timeout.
- IPMMU suspend context allocated before PCI setup.
- System suspend: control domain drives host suspend.
- Dropped v6 IRQ descriptor restore patches; use setup_irq and re-register
  local IRQs on resume instead.

For earlier changelogs, please refer to the previous cover letters.

Mirela Simonovic (6):
  xen/arm: Add suspend and resume timer helpers
  xen/arm: gic-v2: Implement GIC suspend/resume functions
  xen/arm: Resume memory management on Xen resume
  xen/arm: Save/restore context on suspend/resume
  xen/arm: Implement PSCI SYSTEM_SUSPEND call (host interface)
  xen/arm: Add support for system suspend triggered by hardware domain

Mykola Kvach (6):
  xen/arm: gic-v3: tolerate retained redistributor LPI state across
    CPU_OFF
  xen/arm: gic-v3: Implement GICv3 suspend/resume functions
  xen/arm: gic-v3: add ITS suspend/resume support
  xen/arm: tee: keep init_tee_secondary() for hotplug and resume
  xen/arm: ffa: fix notification SRI across CPU hotplug/suspend
  arm/smmu-v3: add suspend/resume handlers

Oleksandr Tyshchenko (1):
  iommu/ipmmu-vmsa: Implement suspend/resume callbacks

 xen/arch/arm/Kconfig                     |   2 +
 xen/arch/arm/Makefile                    |   1 +
 xen/arch/arm/arm64/head.S                | 112 ++++++++
 xen/arch/arm/gic-v2.c                    | 132 +++++++++
 xen/arch/arm/gic-v3-its.c                | 126 +++++++-
 xen/arch/arm/gic-v3-lpi.c                |  80 +++++-
 xen/arch/arm/gic-v3.c                    | 349 ++++++++++++++++++++++-
 xen/arch/arm/gic.c                       |  29 ++
 xen/arch/arm/include/asm/gic.h           |  12 +
 xen/arch/arm/include/asm/gic_v3_defs.h   |   1 +
 xen/arch/arm/include/asm/gic_v3_its.h    |  24 ++
 xen/arch/arm/include/asm/mm.h            |   2 +
 xen/arch/arm/include/asm/psci.h          |   1 +
 xen/arch/arm/include/asm/suspend.h       |  31 ++
 xen/arch/arm/include/asm/time.h          |   5 +
 xen/arch/arm/mmu/smpboot.c               |   2 +-
 xen/arch/arm/psci.c                      |  23 +-
 xen/arch/arm/suspend.c                   | 195 +++++++++++++
 xen/arch/arm/tee/ffa_notif.c             |  63 +++-
 xen/arch/arm/tee/tee.c                   |   2 +-
 xen/arch/arm/time.c                      |  44 ++-
 xen/arch/arm/vpsci.c                     |  12 +-
 xen/common/Kconfig                       |   3 +
 xen/common/domain.c                      |   7 +-
 xen/drivers/passthrough/arm/ipmmu-vmsa.c | 305 +++++++++++++++++++-
 xen/drivers/passthrough/arm/smmu-v3.c    | 172 ++++++++---
 xen/drivers/passthrough/arm/smmu.c       |  10 +
 xen/include/xen/list.h                   |  14 +
 28 files changed, 1670 insertions(+), 89 deletions(-)
 create mode 100644 xen/arch/arm/suspend.c

-- 
2.43.0