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