2008-05-26 23:31:27 +01:00
|
|
|
#include <linux/types.h>
|
2015-03-25 13:09:16 +01:00
|
|
|
#include <linux/tick.h>
|
2008-05-26 23:31:27 +01:00
|
|
|
|
2015-12-29 14:54:13 -08:00
|
|
|
#include <xen/xen.h>
|
2008-05-26 23:31:27 +01:00
|
|
|
#include <xen/interface/xen.h>
|
|
|
|
#include <xen/grant_table.h>
|
|
|
|
#include <xen/events.h>
|
|
|
|
|
|
|
|
#include <asm/xen/hypercall.h>
|
|
|
|
#include <asm/xen/page.h>
|
2009-01-23 11:09:15 +01:00
|
|
|
#include <asm/fixmap.h>
|
2008-05-26 23:31:27 +01:00
|
|
|
|
|
|
|
#include "xen-ops.h"
|
|
|
|
#include "mmu.h"
|
2015-08-10 16:34:34 -04:00
|
|
|
#include "pmu.h"
|
2008-05-26 23:31:27 +01:00
|
|
|
|
2014-05-08 11:09:23 +01:00
|
|
|
void xen_arch_pre_suspend(void)
|
|
|
|
{
|
2015-08-10 16:34:34 -04:00
|
|
|
if (xen_pv_domain())
|
|
|
|
xen_pv_pre_suspend();
|
2014-05-08 11:09:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void xen_arch_post_suspend(int cancelled)
|
|
|
|
{
|
2015-08-10 16:34:34 -04:00
|
|
|
if (xen_pv_domain())
|
|
|
|
xen_pv_post_suspend(cancelled);
|
|
|
|
else
|
|
|
|
xen_hvm_post_suspend(cancelled);
|
2008-05-26 23:31:27 +01:00
|
|
|
}
|
|
|
|
|
2009-11-25 14:12:08 +00:00
|
|
|
static void xen_vcpu_notify_restore(void *data)
|
|
|
|
{
|
|
|
|
/* Boot processor notified via generic timekeeping_resume() */
|
2015-03-25 13:09:16 +01:00
|
|
|
if (smp_processor_id() == 0)
|
2009-11-25 14:12:08 +00:00
|
|
|
return;
|
|
|
|
|
2015-03-25 13:11:04 +01:00
|
|
|
tick_resume_local();
|
2009-11-25 14:12:08 +00:00
|
|
|
}
|
|
|
|
|
2015-04-28 18:46:20 -04:00
|
|
|
static void xen_vcpu_notify_suspend(void *data)
|
|
|
|
{
|
|
|
|
tick_suspend_local();
|
|
|
|
}
|
|
|
|
|
2008-07-08 15:06:32 -07:00
|
|
|
void xen_arch_resume(void)
|
|
|
|
{
|
2015-12-02 12:10:48 -05:00
|
|
|
int cpu;
|
|
|
|
|
2015-03-25 13:09:16 +01:00
|
|
|
on_each_cpu(xen_vcpu_notify_restore, NULL, 1);
|
2015-12-02 12:10:48 -05:00
|
|
|
|
|
|
|
for_each_online_cpu(cpu)
|
|
|
|
xen_pmu_init(cpu);
|
2008-07-08 15:06:32 -07:00
|
|
|
}
|
2015-04-28 18:46:20 -04:00
|
|
|
|
|
|
|
void xen_arch_suspend(void)
|
|
|
|
{
|
2015-12-02 12:10:48 -05:00
|
|
|
int cpu;
|
|
|
|
|
|
|
|
for_each_online_cpu(cpu)
|
|
|
|
xen_pmu_finish(cpu);
|
|
|
|
|
2015-04-28 18:46:20 -04:00
|
|
|
on_each_cpu(xen_vcpu_notify_suspend, NULL, 1);
|
|
|
|
}
|