Linux-ARM-Kernel Archive on lore.kernel.org
 help / color / mirror / Atom feed
  • [parent not found: <20241019172459.2241939-3-dwmw2@infradead.org>]
  • [parent not found: <20241019172459.2241939-4-dwmw2@infradead.org>]
  • [parent not found: <20241019172459.2241939-6-dwmw2@infradead.org>]
  • * Re: (subset) [PATCH v6 0/6] Add PSCI v1.3 SYSTEM_OFF2 support for hibernation
           [not found] <20241019172459.2241939-1-dwmw2@infradead.org>
                       ` (3 preceding siblings ...)
           [not found] ` <20241019172459.2241939-6-dwmw2@infradead.org>
    @ 2024-10-25 22:12 ` Oliver Upton
      2024-10-31 12:15   ` Catalin Marinas
           [not found] ` <20241019172459.2241939-7-dwmw2@infradead.org>
      2024-10-31 17:56 ` (subset) [PATCH v6 0/6] Add PSCI v1.3 SYSTEM_OFF2 support for hibernation Oliver Upton
      6 siblings, 1 reply; 22+ messages in thread
    From: Oliver Upton @ 2024-10-25 22:12 UTC (permalink / raw)
      To: Zenghui Yu, James Morse, linux-doc, David Woodhouse, Marc Zyngier,
    	Jonathan Corbet, kvmarm, Len Brown, Mark Rutland, linux-kernel,
    	Pavel Machek, Shuah Khan, kvm, Suzuki K Poulose, David Woodhouse,
    	Miguel Luis, Will Deacon, Rafael J. Wysocki, Catalin Marinas,
    	Paolo Bonzini, linux-kselftest, Francesco Lavra,
    	Lorenzo Pieralisi, linux-pm, linux-arm-kernel
      Cc: Oliver Upton
    
    On Sat, 19 Oct 2024 18:15:41 +0100, David Woodhouse wrote:
    > The PSCI v1.3 spec (https://developer.arm.com/documentation/den0022)
    > adds support for a SYSTEM_OFF2 function enabling a HIBERNATE_OFF state
    > which is analogous to ACPI S4. This will allow hosting environments to
    > determine that a guest is hibernated rather than just powered off, and
    > ensure that they preserve the virtual environment appropriately to
    > allow the guest to resume safely (or bump the hardware_signature in the
    > FACS to trigger a clean reboot instead).
    > 
    > [...]
    
    I grabbed the KVM portions of this series, as they look ready to go. Happy
    to take the last one through kvmarm tree w/ acks, and can toss it on top.
    
    Applied to kvmarm/next, thanks!
    
    [1/6] firmware/psci: Add definitions for PSCI v1.3 specification
          https://git.kernel.org/kvmarm/kvmarm/c/2f2d46959808
    [2/6] KVM: arm64: Add PSCI v1.3 SYSTEM_OFF2 function for hibernation
          https://git.kernel.org/kvmarm/kvmarm/c/97413cea1c48
    [3/6] KVM: arm64: Add support for PSCI v1.2 and v1.3
          https://git.kernel.org/kvmarm/kvmarm/c/8be82d536a9f
    [4/6] KVM: selftests: Add test for PSCI SYSTEM_OFF2
          https://git.kernel.org/kvmarm/kvmarm/c/72be5aa6be4a
    [5/6] KVM: arm64: nvhe: Pass through PSCI v1.3 SYSTEM_OFF2 call
          https://git.kernel.org/kvmarm/kvmarm/c/94f985c39a1e
    
    --
    Best,
    Oliver
    
    
    ^ permalink raw reply	[flat|nested] 22+ messages in thread
  • [parent not found: <20241019172459.2241939-7-dwmw2@infradead.org>]
  • * Re: (subset) [PATCH v6 0/6] Add PSCI v1.3 SYSTEM_OFF2 support for hibernation
           [not found] <20241019172459.2241939-1-dwmw2@infradead.org>
                       ` (5 preceding siblings ...)
           [not found] ` <20241019172459.2241939-7-dwmw2@infradead.org>
    @ 2024-10-31 17:56 ` Oliver Upton
      2024-10-31 18:01   ` David Woodhouse
      6 siblings, 1 reply; 22+ messages in thread
    From: Oliver Upton @ 2024-10-31 17:56 UTC (permalink / raw)
      To: linux-arm-kernel, Catalin Marinas, Pavel Machek, Paolo Bonzini,
    	Will Deacon, Len Brown, Shuah Khan, linux-kselftest, kvmarm,
    	David Woodhouse, Lorenzo Pieralisi, Mark Rutland, Francesco Lavra,
    	linux-pm, David Woodhouse, Jonathan Corbet, kvm,
    	Rafael J. Wysocki, Miguel Luis, linux-kernel, James Morse,
    	Marc Zyngier, linux-doc, Zenghui Yu, Suzuki K Poulose
      Cc: Oliver Upton
    
    On Sat, 19 Oct 2024 18:15:41 +0100, David Woodhouse wrote:
    > The PSCI v1.3 spec (https://developer.arm.com/documentation/den0022)
    > adds support for a SYSTEM_OFF2 function enabling a HIBERNATE_OFF state
    > which is analogous to ACPI S4. This will allow hosting environments to
    > determine that a guest is hibernated rather than just powered off, and
    > ensure that they preserve the virtual environment appropriately to
    > allow the guest to resume safely (or bump the hardware_signature in the
    > FACS to trigger a clean reboot instead).
    > 
    > [...]
    
    Thanks Catalin for the ack, as promised:
    
    Applied to kvmarm/next, thanks!
    
    [6/6] arm64: Use SYSTEM_OFF2 PSCI call to power off for hibernate
          https://git.kernel.org/kvmarm/kvmarm/c/3e251afaec9a
    
    --
    Best,
    Oliver
    
    
    ^ permalink raw reply	[flat|nested] 22+ messages in thread

  • end of thread, other threads:[~2024-11-04 15:46 UTC | newest]
    
    Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
    -- links below jump to the message on this page --
         [not found] <20241019172459.2241939-1-dwmw2@infradead.org>
         [not found] ` <20241019172459.2241939-2-dwmw2@infradead.org>
    2024-10-23 15:31   ` [PATCH v6 1/6] firmware/psci: Add definitions for PSCI v1.3 specification Miguel Luis
         [not found] ` <20241019172459.2241939-3-dwmw2@infradead.org>
    2024-10-23 16:02   ` [PATCH v6 2/6] KVM: arm64: Add PSCI v1.3 SYSTEM_OFF2 function for hibernation Miguel Luis
         [not found] ` <20241019172459.2241939-4-dwmw2@infradead.org>
    2024-10-23 16:21   ` [PATCH v6 3/6] KVM: arm64: Add support for PSCI v1.2 and v1.3 Miguel Luis
         [not found] ` <20241019172459.2241939-6-dwmw2@infradead.org>
    2024-10-24 10:42   ` [PATCH v6 5/6] KVM: arm64: nvhe: Pass through PSCI v1.3 SYSTEM_OFF2 call Miguel Luis
    2024-10-25 22:12 ` (subset) [PATCH v6 0/6] Add PSCI v1.3 SYSTEM_OFF2 support for hibernation Oliver Upton
    2024-10-31 12:15   ` Catalin Marinas
    2024-10-31 17:18     ` David Woodhouse
         [not found] ` <20241019172459.2241939-7-dwmw2@infradead.org>
    2024-10-24 12:54   ` [PATCH v6 6/6] arm64: Use SYSTEM_OFF2 PSCI call to power off for hibernate Miguel Luis
    2024-10-24 13:48     ` David Woodhouse
    2024-10-24 15:44       ` Oliver Upton
    2024-10-24 15:56         ` David Woodhouse
    2024-10-24 19:57           ` Oliver Upton
    2024-10-25  6:13             ` David Woodhouse
    2024-10-25 20:40               ` Oliver Upton
    2024-10-31 18:00                 ` David Woodhouse
    2024-10-31 12:16   ` Catalin Marinas
    2024-10-31 17:55   ` Lorenzo Pieralisi
    2024-11-01 17:48     ` Lorenzo Pieralisi
    2024-11-04 13:54       ` Ard Biesheuvel
    2024-11-04 15:11         ` Lorenzo Pieralisi
    2024-10-31 17:56 ` (subset) [PATCH v6 0/6] Add PSCI v1.3 SYSTEM_OFF2 support for hibernation Oliver Upton
    2024-10-31 18:01   ` David Woodhouse
    

    This is a public inbox, see mirroring instructions
    for how to clone and mirror all data and code used for this inbox