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