blob: 2a234db5949beb39e21e5fa09089c3740d802940 [file] [log] [blame]
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001#include <linux/types.h>
2
3#include <xen/interface/xen.h>
4#include <xen/grant_table.h>
5#include <xen/events.h>
6
7#include <asm/xen/hypercall.h>
8#include <asm/xen/page.h>
9
10#include "xen-ops.h"
11#include "mmu.h"
12
13void xen_pre_suspend(void)
14{
15 xen_start_info->store_mfn = mfn_to_pfn(xen_start_info->store_mfn);
16 xen_start_info->console.domU.mfn =
17 mfn_to_pfn(xen_start_info->console.domU.mfn);
18
19 BUG_ON(!irqs_disabled());
20
21 HYPERVISOR_shared_info = &xen_dummy_shared_info;
22 if (HYPERVISOR_update_va_mapping(fix_to_virt(FIX_PARAVIRT_BOOTMAP),
23 __pte_ma(0), 0))
24 BUG();
25}
26
27void xen_post_suspend(int suspend_cancelled)
28{
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +010029 xen_setup_shared_info();
30
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010031 if (suspend_cancelled) {
32 xen_start_info->store_mfn =
33 pfn_to_mfn(xen_start_info->store_mfn);
34 xen_start_info->console.domU.mfn =
35 pfn_to_mfn(xen_start_info->console.domU.mfn);
36 } else {
37#ifdef CONFIG_SMP
38 xen_cpu_initialized_map = cpu_online_map;
39#endif
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +010040 xen_vcpu_restore();
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010041 }
42
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010043}
44
Isaku Yamahataad55db92008-07-08 15:06:32 -070045void xen_arch_resume(void)
46{
47 /* nothing */
48}