All of lore.kernel.org
 help / color / mirror / Atom feed
From: Julien Grall <julien.grall@arm.com>
To: Mirela Simonovic <mirela.simonovic@aggios.com>
Cc: Tim Deegan <tim@xen.org>,
	Stefano Stabellini <sstabellini@kernel.org>,
	Xen Devel <xen-devel@lists.xen.org>,
	Davorin Mista <dm@aggios.com>,
	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>,
	George Dunlap <George.Dunlap@eu.citrix.com>,
	Andrew Cooper <andrew.cooper3@citrix.com>,
	Ian Jackson <ian.jackson@eu.citrix.com>,
	Saeed Nowshadi <saeed.nowshadi@xilinx.com>,
	Wei Liu <wei.liu2@citrix.com>, Jan Beulich <jbeulich@suse.com>,
	xen-devel <xen-devel@lists.xenproject.org>,
	Stefano Stabellini <stefano.stabellini@xilinx.com>
Subject: Re: [PATCH 02/18] xen/arm: Implement PSCI system suspend call (virtual interface)
Date: Mon, 12 Nov 2018 20:29:11 +0000	[thread overview]
Message-ID: <d186185e-bd34-0603-37e1-aa2d843c9b08@arm.com> (raw)
In-Reply-To: <CAKPH-Nge2EMDLihthEVGAO0gY8EACksuN6ch1ZJV6+t1JeK=JQ@mail.gmail.com>

On 11/12/18 4:35 PM, Mirela Simonovic wrote:
> Hi Julien,
> 
> Thanks for your feedback, I'll need to answer in iterations.
> 
> On Mon, Nov 12, 2018 at 4:27 PM Julien Grall <julien.grall@arm.com> wrote:
>>
>> Hi Mirela,
>>
>> On 11/12/18 11:30 AM, Mirela Simonovic wrote:
>>> The implementation consists of:
>>> -Adding PSCI system suspend call as new PSCI function
>>> -Trapping PSCI system_suspend HVC
>>> -Implementing PSCI system suspend call (virtual interface that allows
>>>    guests to suspend themselves)
>>>
>>> The PSCI system suspend should be called by a guest from its boot
>>> VCPU. Non-boot VCPUs of the guest should be hot-unplugged using PSCI
>>> CPU_OFF call prior to issuing PSCI system suspend. Interrupts that
>>> are left enabled by the guest are assumed to be its wake-up interrupts.
>>> Therefore, a wake-up interrupt triggers the resume of the guest. Guest
>>> should resume regardless of the state of Xen (suspended or not).
>>>
>>> When a guest calls PSCI system suspend the respective domain will be
>>> suspended if the following conditions are met:
>>> 1) Given resume entry point is not invalid
>>> 2) Other (if any) VCPUs of the calling guest are hot-unplugged
>>>
>>> If the conditions above are met the calling domain is labeled as
>>> suspended and the calling VCPU is blocked. If nothing else wouldn't
>>> be done the suspended domain would resume from the place where it
>>> called PSCI system suspend. This is expected if processing of the PSCI
>>> system suspend call fails. However, in the case of success the calling
>>> guest should resume (continue execution after the wake-up) from the entry
>>> point which is given as the first argument of the PSCI system suspend
>>> call. In addition to the entry point, the guest expects to start within
>>> the environment whose state matches the state after reset. This means
>>> that the guest should find reset register values, MMU disabled, etc.
>>> Thereby, the context of VCPU should be 'reset' (as if the system is
>>> comming out of reset), the program counter should contain entry point,
>>> which is 1st argument, and r0/x0 should contain context ID which is 2nd
>>> argument of PSCI system suspend call. The context of VCPU is set
>>> accordingly when the PSCI system suspend is processed, so that nothing
>>> needs to be done on resume/wake-up path. However, in order to ensure that
>>> this context doesn't get overwritten by the scheduler when scheduling out
>>> this VCPU (would normally happen after the calling CPU is blocked), we need
>>> to check whether to return early from ctxt_switch_from().
>>>
>>> There are variables in domain structure to keep track of domain shutdown.
>>> One of existing shutdown reason is 'suspend' which this patch is using to
>>> track the suspend state of a domain. Those variables are used to determine
>>> whether to early return from ctxt_switch_from() or not.
>>>
>>> A suspended domain will resume after the Xen receives an interrupt which is
>>> targeted to the domain, unblocks the domain's VCPU, and schedules it in.
>>> When the VCPU is scheduled in, the VCPU context is already reset, and
>>> contains the right resume entry point in program counter that will be
>>> restored in ctxt_switch_to(). The only thing that needs to be done at this
>>> point is to clear the variables that marked the domain state as suspended.
>>>
>>> Signed-off-by: Mirela Simonovic <mirela.simonovic@aggios.com>
>>> Signed-off-by: Saeed Nowshadi <saeed.nowshadi@xilinx.com>
>>>
>>> ---
>>> Changes in v2:
>>>
>>> -Fix print to compile for arm32 and to align with Xen coding style
>>> ---
>>>    xen/arch/arm/Makefile            |   1 +
>>>    xen/arch/arm/domain.c            |  13 +++
>>>    xen/arch/arm/suspend.c           | 166 +++++++++++++++++++++++++++++++++++++++
>>>    xen/arch/arm/vpsci.c             |  19 +++++
>>>    xen/include/asm-arm/perfc_defn.h |   1 +
>>>    xen/include/asm-arm/psci.h       |   2 +
>>>    xen/include/asm-arm/suspend.h    |  16 ++++
>>>    xen/include/xen/sched.h          |   1 +
>>>    8 files changed, 219 insertions(+)
>>>    create mode 100644 xen/arch/arm/suspend.c
>>>    create mode 100644 xen/include/asm-arm/suspend.h
>>>
>>> diff --git a/xen/arch/arm/Makefile b/xen/arch/arm/Makefile
>>> index 23c5d9adbc..744b1a4dc8 100644
>>> --- a/xen/arch/arm/Makefile
>>> +++ b/xen/arch/arm/Makefile
>>> @@ -43,6 +43,7 @@ obj-y += setup.o
>>>    obj-y += shutdown.o
>>>    obj-y += smp.o
>>>    obj-y += smpboot.o
>>> +obj-y += suspend.o
>>>    obj-y += sysctl.o
>>>    obj-y += time.o
>>>    obj-y += traps.o
>>> diff --git a/xen/arch/arm/domain.c b/xen/arch/arm/domain.c
>>> index e594b48d81..7f8105465c 100644
>>> --- a/xen/arch/arm/domain.c
>>> +++ b/xen/arch/arm/domain.c
>>> @@ -97,6 +97,11 @@ static void ctxt_switch_from(struct vcpu *p)
>>>        if ( is_idle_vcpu(p) )
>>>            return;
>>>
>>> +    /* VCPU's context should not be saved if its domain is suspended */
>>> +    if ( p->domain->is_shut_down &&
>>> +        (p->domain->shutdown_code == SHUTDOWN_suspend) )
>>> +        return;
>> SHUTDOWN_suspend is used in Xen for other purpose (see
>> SCHEDOP_shutdown). The other user of that code relies on all the state
>> to be saved on suspend.
>>
> 
> We just need a flag to mark a domain as suspended, and I do believe
> SHUTDOWN_suspend is not used anywhere else.
> Let's come back on this.

See Andrew's comment here.

> 
>> However, what is the issue with saving all the registers here?
>>
> 
> We need to save arguments that are provided by a guest with system
> suspend PSCI call. These arguments are the entry point that needs to
> be saved in program counter and context ID that needs to be saved in
> x0/r0. We don't have these arguments here. Context switch happens
> after processing the system suspend PSCI call, so it's too late.

It does not feel right to modify ctxt_switch{from,to} for 
suspend/resume. If you want to reset the vCPU state before blocking the 
vCPU, then you should instead

Another way would be to reset the vCPU once you receive the interrupt.

>>> +
>>>        p2m_save_state(p);
>>>
>>>        /* CP 15 */
>>> @@ -181,6 +186,14 @@ static void ctxt_switch_to(struct vcpu *n)
>>>        if ( is_idle_vcpu(n) )
>>>            return;
>>>
>>> +    /* If the domain was suspended, it is resuming now */
>>> +    if ( n->domain->is_shut_down &&
>>> +        (n->domain->shutdown_code == SHUTDOWN_suspend) )
>>> +    {
>>> +        n->domain->is_shut_down = 0;
>>> +        n->domain->shutdown_code = SHUTDOWN_CODE_INVALID;
>>> +    }
>>
>> This looks like a hack. Why not calling domain_resume when receiving the
>> interrupt?
>>
> 
> Good point, I need to double check and come back on this.

It looks like domain_resume may not be the right solution (see Andrew's 
comment). Another solution would be to use domain_pause/domain_unpause.

> 
>>> +
>>>        p2m_restore_state(n);
>>>
>>>        vpidr = READ_SYSREG32(MIDR_EL1);
>>> diff --git a/xen/arch/arm/suspend.c b/xen/arch/arm/suspend.c
>>> new file mode 100644
>>> index 0000000000..9eea9214e1
>>> --- /dev/null
>>> +++ b/xen/arch/arm/suspend.c
>>
>> I would prefer if we don't mix guest and host suspend in the same file.
> 
> Sure, we can move guest suspend code into an another file, e.g.
> xen/arch/arm/vsuspend.c

Do we really need a separate file? The code does not look too big.

> 
>>
>>> @@ -0,0 +1,166 @@
>>
>> Missing copyright headers here.
> 
> Thanks
> 
>>
>>> +#include <xen/sched.h>
>>> +#include <asm/cpufeature.h>
>>> +#include <asm/event.h>
>>> +#include <asm/psci.h>
>>> +
>>> +/* Reset values of VCPU architecture specific registers */
>>
>> Technically this is not requires as most of the registers are unknown. I
>> understand this helps for debugging an OS.
>>
>> I would introduce it in a separate patch and directly in
>> arch_set_info_guest as I would like the behavior to be the same
>> everywhere we need to reset a vCPU.
> 
> I agree. Please just consider that resetting a vCPU context is done in
> 2 scenarios: one where a vCPU is just created, and another one when
> the vCPU already exists but the context has to be cleared. Could you
> please provide some guidance on how to do this, because we struggled
> for a while and didn't really find a nice way?

Why do you think the 2 scenarios requires different path? In both case 
the CPU is off and should be reset. It is just the current PSCI CPU on 
took some shortcut that likely needs to be fixed.

> 
>>
>>> +static void vcpu_arch_reset(struct vcpu *v)
>>> +{
>>> +    v->arch.ttbr0 = 0;
>>> +    v->arch.ttbr1 = 0;
>>> +    v->arch.ttbcr = 0;
>>> +
>>> +    v->arch.csselr = 0;
>>> +    v->arch.cpacr = 0;
>>> +    v->arch.contextidr = 0;
>>> +    v->arch.tpidr_el0 = 0;
>>> +    v->arch.tpidrro_el0 = 0;
>>> +    v->arch.tpidr_el1 = 0;
>>> +    v->arch.vbar = 0;
>>> +    if ( is_32bit_domain(v->domain) )
>>
>> This is not necessary
>>
>>> +        v->arch.dacr = 0;
>>> +    v->arch.par = 0;
>>> +#if defined(CONFIG_ARM_32)
>>> +    v->arch.mair0 = 0;
>>> +    v->arch.mair1 = 0;
>>> +    v->arch.amair0 = 0;
>>> +    v->arch.amair1 = 0;
>>> +#else
>>> +    v->arch.mair = 0;
>>> +    v->arch.amair = 0;
>>> +#endif
>>> +    /* Fault Status */
>>> +#if defined(CONFIG_ARM_32)
>>> +    v->arch.dfar = 0;
>>> +    v->arch.ifar = 0;
>>> +    v->arch.dfsr = 0;
>>> +#elif defined(CONFIG_ARM_64)
>>> +    v->arch.far = 0;
>>> +    v->arch.esr = 0;
>>> +#endif
>>> +
>>> +    if ( is_32bit_domain(v->domain) )
>>
>> Same here.
>>
>>> +        v->arch.ifsr  = 0;
>>> +    v->arch.afsr0 = 0;
>>> +    v->arch.afsr1 = 0;
>>> +
>>> +#ifdef CONFIG_ARM_32
>>> +    v->arch.joscr = 0;
>>> +    v->arch.jmcr = 0;
>>> +#endif
>>> +
>>> +    if ( is_32bit_domain(v->domain) && cpu_has_thumbee )
>>
>> Same here.
>>
>>> +    {
>>> +        v->arch.teecr = 0;
>>> +        v->arch.teehbr = 0;
>>> +    }
>>> +}
>>> +
>>> +/*
>>> + * This function sets the context of current VCPU to the state which is expected
>>> + * by the guest on resume. The expected VCPU state is:
>>> + * 1) pc to contain resume entry point (1st argument of PSCI SYSTEM_SUSPEND)
>>> + * 2) r0/x0 to contain context ID (2nd argument of PSCI SYSTEM_SUSPEND)
>>> + * 3) All other general purpose and system registers should have reset values
>>> + *
>>> + * Note: this function has to return void because it has to always succeed. In
>>> + * other words, this function is called from virtual PSCI SYSTEM_SUSPEND
>>> + * implementation, which can return only a limited number of possible errors,
>>> + * none of which could represent the fact that an error occurred when preparing
>>> + * the domain for suspend.
>>> + * Consequently, dynamic memory allocation cannot be done within this function,
>>> + * because if malloc fails the error has nowhere to propagate.
>>
>> You could crash the domain if you are not able to resume it. In the
>> current context...
>>
>>> + */
>>> +static void vcpu_suspend(register_t epoint, register_t cid)
>>> +{
>>> +    /* Static allocation because dynamic would need a non-void return */
>>> +    static struct vcpu_guest_context ctxt;
>>
>> ... this is not right. This function can be called concurrently, so a
>> lot of funny things can happen (i.e corruption).
>>
>> The vCPU context does not look too big. So I would just allocate it on
>> the stack directly.
>>
> 
> Agreed, 'static' should be removed to address all these issues.
> 
>>> +    struct vcpu *v = current;
>>> +
>>> +    /* Make sure that VCPU guest regs are zeroied */
>>
>> s/zeroied/zeroed/
> 
> Thanks
> 
>>
>>> +    memset(&ctxt, 0, sizeof(ctxt));
>>> +
>>> +    /* Set non-zero values to the registers prior to copying */
>>> +    ctxt.user_regs.pc64 = (u64)epoint;
>>> +
>>> +    if ( is_32bit_domain(current->domain) )
>>> +    {
>>> +        ctxt.user_regs.r0_usr = cid;
>>> +        ctxt.user_regs.cpsr = PSR_GUEST32_INIT;
>>> +
>>> +        /* Thumb set is allowed only for 32-bit domain */
>>> +        if ( epoint & 1 )
>>> +        {
>>> +            ctxt.user_regs.cpsr |= PSR_THUMB;
>>> +            ctxt.user_regs.pc64 &= ~(u64)1;
>>> +        }
>>> +    }
>>> +#ifdef CONFIG_ARM_64
>>> +    else
>>> +    {
>>> +        ctxt.user_regs.x0 = cid;
>>> +        ctxt.user_regs.cpsr = PSR_GUEST64_INIT;
>>> +    }
>>> +#endif
>>> +    ctxt.sctlr = SCTLR_GUEST_INIT;
>>> +    ctxt.flags = VGCF_online;
>>> +
>>> +    /* Reset architecture specific registers */
>>> +    vcpu_arch_reset(v); > +
>>> +    /* Initialize VCPU registers */
>>> +    _arch_set_info_guest(v, &ctxt);
>>
>> AFAICT, this is expected to be called with the domain lock taken as this
>> can be called by various path.
>>
>> Also, most of the function is the same as CPU_on. So I would like to see
>> the code factored in the separate function and used in both place.
>>
> 
> I agree, but the 2 scenarios (VCPU allocation versus clearing VCPU
> context) made it a bit difficult to share. Please let me know if you
> have some additional hint on how to exactly structure the code.

See above. I would be interested to know why you think they are different.

> 
>>> +}
>>> +
>>> +int32_t domain_suspend(register_t epoint, register_t cid)
>>> +{
>>> +    struct vcpu *v;
>>> +    struct domain *d = current->domain;
>>> +    bool is_thumb = epoint & 1;
>>> +
>>> +    dprintk(XENLOG_DEBUG,
>>> +            "Dom%d suspend: epoint=0x%"PRIregister", cid=0x%"PRIregister"\n",
>>> +            d->domain_id, epoint, cid);
>>> +
>>> +    /* THUMB set is not allowed with 64-bit domain */
>>> +    if ( is_64bit_domain(d) && is_thumb )
>>> +        return PSCI_INVALID_ADDRESS;
>>> +
>>> +    /* Ensure that all CPUs other than the calling one are offline */
>>> +    for_each_vcpu ( d, v )
>>> +    {
>>> +        if ( v != current && is_vcpu_online(v) )
>>> +            return PSCI_DENIED;
>>> +    }
>>
>> What does prevent a vCPU to not come online while doing the loop?
> 
> As you suggested probably nothing if there is a bug in the guest,
> which we want to check for. Is the domain_lock right thing to use
> here?

The domain_lock is probably the best solution here. You want CPU_ON and 
SYSTEM_OFF to race. So CPU_ON may need some modification as well.

> 
>>
>>> +
>>> +    /*
>>> +     * Prepare the calling VCPU for suspend (reset its context, save entry point
>>> +     * into pc and context ID into r0/x0 as specified by PSCI SYSTEM_SUSPEND)
>>> +     */
>>> +    vcpu_suspend(epoint, cid);
>>> +
>>> +    /*
>>> +     * Set the domain state to suspended (will be cleared when the domain
>>> +     * resumes, i.e. VCPU of this domain gets scheduled in).
>>> +     */
>>> +    d->is_shut_down = 1;
>>> +    d->shutdown_code = SHUTDOWN_suspend;
>>
>> If you look at the other usage, you will notice that they are protected
>> with a lock. Why is it not necessary here?
>>
> 
> I think it is necessary here too
> 
>> I am also not entirely sure why we could not re-use code that already
>> exist in common code. Surely suspend/resume should work in a similar way?
>>
> 
> Could you please be more specific (which common code)

You can ignore this for now as shutdown_code may not be the right 
solution here.

Cheers,


-- 
Julien Grall

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

  parent reply	other threads:[~2018-11-12 20:29 UTC|newest]

Thread overview: 153+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-12 11:30 [PATCH 00/18] xen/arm64: Suspend to RAM support for Xen Mirela Simonovic
2018-11-12 11:30 ` [PATCH 01/18] xen/arm: Move code that initializes VCPU context into a separate function Mirela Simonovic
2018-11-12 11:41   ` Jan Beulich
2018-11-12 11:43   ` Wei Liu
2018-11-12 13:15   ` Julien Grall
2018-11-14 11:45     ` Mirela Simonovic
2018-11-12 11:30 ` [PATCH 02/18] xen/arm: Implement PSCI system suspend call (virtual interface) Mirela Simonovic
2018-11-12 11:42   ` Jan Beulich
2018-11-12 11:50     ` Mirela Simonovic
2018-11-12 12:45       ` Jan Beulich
2018-11-12 15:27   ` Julien Grall
2018-11-12 16:35     ` Mirela Simonovic
2018-11-12 16:41       ` Andrew Cooper
2018-11-12 19:56         ` Julien Grall
2018-11-13  8:32           ` Andrew Cooper
2018-11-14 12:08             ` Mirela Simonovic
2018-11-14 12:49               ` Julien Grall
2018-11-15  0:47                 ` Andrew Cooper
2018-11-15 10:13                   ` Julien Grall
2018-11-15 10:26                     ` Andrew Cooper
2018-11-15 10:33                       ` Mirela Simonovic
2018-11-15 10:59                         ` Julien Grall
2018-11-15 11:10                           ` Mirela Simonovic
2018-11-15 11:38                             ` Julien Grall
2018-11-15 11:42                               ` Mirela Simonovic
2018-11-15 19:30                                 ` Stefano Stabellini
2018-11-15 20:25                                 ` Julien Grall
2018-11-16 22:10                               ` Dario Faggioli
2018-11-15 10:36                       ` Julien Grall
2018-11-15 10:36                       ` Julien Grall
2018-11-15 10:50                         ` Andrew Cooper
2018-11-13  1:53         ` Stefano Stabellini
2018-11-13  9:41           ` Julien Grall
2018-11-13 20:39             ` Stefano Stabellini
2018-11-14 13:10               ` Julien Grall
2018-11-14 23:08                 ` Stefano Stabellini
2018-11-12 20:29       ` Julien Grall [this message]
2018-11-13 20:39         ` Stefano Stabellini
2018-11-14 10:45           ` Julien Grall
2018-11-14 12:35             ` Mirela Simonovic
2018-11-14 13:05               ` Julien Grall
2018-11-14 14:48                 ` Julien Grall
2018-11-14 15:36                   ` Mirela Simonovic
2018-11-14 15:37                     ` Mirela Simonovic
2018-11-14 15:51                     ` Julien Grall
2018-11-13 10:23   ` Julien Grall
2018-11-13 15:09     ` Julien Grall
2018-11-14 12:44       ` Mirela Simonovic
2018-11-12 11:30 ` [PATCH 03/18] xen/arm: Save GIC and virtual timer context when the domain suspends Mirela Simonovic
2018-11-12 15:36   ` Julien Grall
2018-11-12 16:52     ` Mirela Simonovic
2018-11-12 17:00       ` Julien Grall
2018-11-12 17:42         ` Mirela Simonovic
2018-11-12 19:20           ` Julien Grall
2018-11-13 20:44             ` Stefano Stabellini
2018-11-14 10:48               ` Julien Grall
2018-11-14 22:45                 ` Stefano Stabellini
2018-11-14 23:39                   ` Julien Grall
2018-11-15  0:05                     ` Julien Grall
2018-11-15  0:35                     ` Stefano Stabellini
2018-11-15 20:29                       ` Julien Grall
2018-11-12 11:30 ` [PATCH 04/18] xen/arm: While a domain is suspended put its watchdogs on pause Mirela Simonovic
2018-11-12 11:47   ` Jan Beulich
2018-11-12 15:17     ` Mirela Simonovic
2018-11-12 15:23       ` Jan Beulich
2018-11-12 15:31         ` Mirela Simonovic
2018-11-12 15:33           ` Andrew Cooper
2018-11-16 22:40             ` Dario Faggioli
2018-11-12 11:30 ` [PATCH 05/18] xen/arm: Trigger Xen suspend when Dom0 completes suspend Mirela Simonovic
2018-11-12 15:45   ` Julien Grall
2018-11-12 23:46     ` Stefano Stabellini
2018-11-13  9:43       ` Julien Grall
2018-11-13 11:26         ` Mirela Simonovic
2018-11-13 11:42           ` Julien Grall
2018-11-14 15:07   ` Julien Grall
2018-11-14 15:40     ` Mirela Simonovic
2018-11-14 17:10       ` Julien Grall
2018-11-14 17:35         ` Mirela Simonovic
2018-11-14 18:48           ` Julien Grall
2018-11-15 12:37             ` Mirela Simonovic
2018-11-15 18:23   ` Julien Grall
2018-11-15 19:17     ` Mirela Simonovic
2018-11-15 20:47       ` Julien Grall
2018-11-12 11:30 ` [PATCH 06/18] xen/x86: Move freeze/thaw_domains into common files Mirela Simonovic
2018-11-13 22:37   ` Stefano Stabellini
2018-11-12 11:30 ` [PATCH 07/18] xen/arm: Freeze domains on suspend and thaw them on resume Mirela Simonovic
2018-11-12 11:30 ` [PATCH 08/18] xen/arm: Disable/enable non-boot physical CPUs on suspend/resume Mirela Simonovic
2018-11-13 22:35   ` Stefano Stabellini
2018-11-14 12:07     ` Julien Grall
2018-11-14 10:52   ` Julien Grall
2018-11-14 13:00     ` Mirela Simonovic
2018-11-14 13:18       ` Julien Grall
2018-11-14 23:04         ` Stefano Stabellini
2018-11-14 23:45           ` Julien Grall
2018-11-15 18:57             ` Stefano Stabellini
2018-11-15 21:09               ` Julien Grall
2018-11-12 11:30 ` [PATCH 09/18] xen/arm: Add rcu_barrier() before enabling non-boot CPUs on resume Mirela Simonovic
2018-11-13 22:42   ` Stefano Stabellini
2018-11-14 12:11   ` Julien Grall
2018-11-14 22:29     ` Stefano Stabellini
2018-11-12 11:30 ` [PATCH 10/18] xen/arm: Implement GIC suspend/resume functions (gicv2 only) Mirela Simonovic
2018-11-13 23:41   ` Stefano Stabellini
2018-11-14  9:13     ` Julien Grall
2018-11-14 11:57       ` Mirela Simonovic
2018-11-14 12:41   ` Julien Grall
2018-11-14 12:52     ` Mirela Simonovic
2018-11-14 13:24       ` Julien Grall
2018-11-14 22:18         ` Stefano Stabellini
2018-11-14 23:50           ` Julien Grall
2018-11-15 18:26             ` Stefano Stabellini
2018-11-12 11:30 ` [PATCH 11/18] xen/arm: Suspend/resume GIC on system suspend/resume Mirela Simonovic
2018-11-12 11:30 ` [PATCH 12/18] xen/arm: Suspend/resume timer interrupt generation Mirela Simonovic
2018-11-12 11:30 ` [PATCH 13/18] xen/arm: Implement PSCI SYSTEM_SUSPEND call (physical interface) Mirela Simonovic
2018-11-14  0:14   ` Stefano Stabellini
2018-11-14 12:03     ` Mirela Simonovic
2018-11-15 21:20   ` Julien Grall
2018-11-12 11:30 ` [PATCH 14/18] xen/arm: Convert setting MMU page tables code into a routine Mirela Simonovic
2018-11-12 11:30 ` [PATCH 15/18] xen/arm: Resume memory management on Xen resume Mirela Simonovic
2018-11-12 16:17   ` Julien Grall
2018-11-13  1:36     ` Stefano Stabellini
2018-11-13  9:59       ` Julien Grall
2018-11-13 21:35         ` Stefano Stabellini
2018-11-13 22:24           ` Julien Grall
2018-11-12 11:30 ` [PATCH 16/18] xen/arm: Save/restore context on suspend/resume Mirela Simonovic
2018-11-12 11:30 ` [PATCH 17/18] xen/arm: Resume Dom0 after Xen resumes Mirela Simonovic
2018-11-15 20:31   ` Julien Grall
2018-11-16 10:33     ` Mirela Simonovic
2018-11-16 11:29       ` Mirela Simonovic
2018-11-16 11:44         ` Julien Grall
2018-11-16 12:34           ` Mirela Simonovic
2018-11-16 13:24             ` Julien Grall
2018-11-16 19:03               ` Stefano Stabellini
2018-11-16 19:09                 ` Stefano Stabellini
2018-11-16 21:41                   ` Mirela Simonovic
2018-11-16 21:58                     ` Julien Grall
2018-11-16 23:01                       ` Dario Faggioli
2018-11-16 23:06                         ` Stefano Stabellini
2018-11-17 16:01                           ` Mirela Simonovic
2018-11-17 16:02                             ` Mirela Simonovic
2018-11-17 16:19                               ` Mirela Simonovic
2018-11-27 18:36                             ` Julien Grall
2018-11-29 14:02                               ` Mirela Simonovic
2018-12-04 18:15                                 ` Julien Grall
2018-11-12 11:30 ` [PATCH 18/18] xen/arm: Suspend/resume console on Xen suspend/resume Mirela Simonovic
2018-11-27 18:46   ` Julien Grall
2018-11-12 11:37 ` [PATCH 00/18] xen/arm64: Suspend to RAM support for Xen Mirela Simonovic
2018-11-12 11:49 ` Julien Grall
2018-11-12 12:01   ` Mirela Simonovic
2018-11-12 12:08     ` Julien Grall
2018-11-12 12:35       ` Mirela Simonovic
2018-11-13  2:22   ` Stefano Stabellini
2018-11-13 10:02     ` Julien Grall
2018-11-13 18:06       ` Stefano Stabellini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d186185e-bd34-0603-37e1-aa2d843c9b08@arm.com \
    --to=julien.grall@arm.com \
    --cc=George.Dunlap@eu.citrix.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=dm@aggios.com \
    --cc=ian.jackson@eu.citrix.com \
    --cc=jbeulich@suse.com \
    --cc=konrad.wilk@oracle.com \
    --cc=mirela.simonovic@aggios.com \
    --cc=saeed.nowshadi@xilinx.com \
    --cc=sstabellini@kernel.org \
    --cc=stefano.stabellini@xilinx.com \
    --cc=tim@xen.org \
    --cc=wei.liu2@citrix.com \
    --cc=xen-devel@lists.xen.org \
    --cc=xen-devel@lists.xenproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.