aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/xen
diff options
context:
space:
mode:
authorStefano Stabellini <stefano.stabellini@eu.citrix.com>2010-05-14 07:45:07 -0400
committerJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>2010-07-22 19:46:21 -0400
commit016b6f5fe8398b0291cece60b749d7c930a2e09c (patch)
tree430e9aad74f223dc5d144b60f4b78a0c3fb9cdfd /drivers/xen
parent183d03cc4ff39e0f0d952c09aa96d0abfd6e0c3c (diff)
xen: Add suspend/resume support for PV on HVM guests.
Suspend/resume requires few different things on HVM: the suspend hypercall is different; we don't need to save/restore memory related settings; except the shared info page and the callback mechanism. Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Diffstat (limited to 'drivers/xen')
-rw-r--r--drivers/xen/manage.c45
-rw-r--r--drivers/xen/platform-pci.c22
2 files changed, 62 insertions, 5 deletions
diff --git a/drivers/xen/manage.c b/drivers/xen/manage.c
index af9c5594d315..1799bd890315 100644
--- a/drivers/xen/manage.c
+++ b/drivers/xen/manage.c
@@ -9,6 +9,7 @@
9#include <linux/stop_machine.h> 9#include <linux/stop_machine.h>
10#include <linux/freezer.h> 10#include <linux/freezer.h>
11 11
12#include <xen/xen.h>
12#include <xen/xenbus.h> 13#include <xen/xenbus.h>
13#include <xen/grant_table.h> 14#include <xen/grant_table.h>
14#include <xen/events.h> 15#include <xen/events.h>
@@ -17,6 +18,7 @@
17 18
18#include <asm/xen/hypercall.h> 19#include <asm/xen/hypercall.h>
19#include <asm/xen/page.h> 20#include <asm/xen/page.h>
21#include <asm/xen/hypervisor.h>
20 22
21enum shutdown_state { 23enum shutdown_state {
22 SHUTDOWN_INVALID = -1, 24 SHUTDOWN_INVALID = -1,
@@ -33,10 +35,30 @@ enum shutdown_state {
33static enum shutdown_state shutting_down = SHUTDOWN_INVALID; 35static enum shutdown_state shutting_down = SHUTDOWN_INVALID;
34 36
35#ifdef CONFIG_PM_SLEEP 37#ifdef CONFIG_PM_SLEEP
36static int xen_suspend(void *data) 38static int xen_hvm_suspend(void *data)
37{ 39{
40 struct sched_shutdown r = { .reason = SHUTDOWN_suspend };
38 int *cancelled = data; 41 int *cancelled = data;
42
43 BUG_ON(!irqs_disabled());
44
45 *cancelled = HYPERVISOR_sched_op(SCHEDOP_shutdown, &r);
46
47 xen_hvm_post_suspend(*cancelled);
48 gnttab_resume();
49
50 if (!*cancelled) {
51 xen_irq_resume();
52 xen_timer_resume();
53 }
54
55 return 0;
56}
57
58static int xen_suspend(void *data)
59{
39 int err; 60 int err;
61 int *cancelled = data;
40 62
41 BUG_ON(!irqs_disabled()); 63 BUG_ON(!irqs_disabled());
42 64
@@ -106,7 +128,10 @@ static void do_suspend(void)
106 goto out_resume; 128 goto out_resume;
107 } 129 }
108 130
109 err = stop_machine(xen_suspend, &cancelled, cpumask_of(0)); 131 if (xen_hvm_domain())
132 err = stop_machine(xen_hvm_suspend, &cancelled, cpumask_of(0));
133 else
134 err = stop_machine(xen_suspend, &cancelled, cpumask_of(0));
110 135
111 dpm_resume_noirq(PMSG_RESUME); 136 dpm_resume_noirq(PMSG_RESUME);
112 137
@@ -255,7 +280,19 @@ static int shutdown_event(struct notifier_block *notifier,
255 return NOTIFY_DONE; 280 return NOTIFY_DONE;
256} 281}
257 282
258static int __init setup_shutdown_event(void) 283static int __init __setup_shutdown_event(void)
284{
285 /* Delay initialization in the PV on HVM case */
286 if (xen_hvm_domain())
287 return 0;
288
289 if (!xen_pv_domain())
290 return -ENODEV;
291
292 return xen_setup_shutdown_event();
293}
294
295int xen_setup_shutdown_event(void)
259{ 296{
260 static struct notifier_block xenstore_notifier = { 297 static struct notifier_block xenstore_notifier = {
261 .notifier_call = shutdown_event 298 .notifier_call = shutdown_event
@@ -266,4 +303,4 @@ static int __init setup_shutdown_event(void)
266} 303}
267EXPORT_SYMBOL_GPL(xen_setup_shutdown_event); 304EXPORT_SYMBOL_GPL(xen_setup_shutdown_event);
268 305
269subsys_initcall(setup_shutdown_event); 306subsys_initcall(__setup_shutdown_event);
diff --git a/drivers/xen/platform-pci.c b/drivers/xen/platform-pci.c
index a0ee5d06f715..bdb44f2473e8 100644
--- a/drivers/xen/platform-pci.c
+++ b/drivers/xen/platform-pci.c
@@ -31,6 +31,7 @@
31#include <xen/xenbus.h> 31#include <xen/xenbus.h>
32#include <xen/events.h> 32#include <xen/events.h>
33#include <xen/hvm.h> 33#include <xen/hvm.h>
34#include <xen/xen-ops.h>
34 35
35#define DRV_NAME "xen-platform-pci" 36#define DRV_NAME "xen-platform-pci"
36 37
@@ -41,6 +42,7 @@ MODULE_LICENSE("GPL");
41static unsigned long platform_mmio; 42static unsigned long platform_mmio;
42static unsigned long platform_mmio_alloc; 43static unsigned long platform_mmio_alloc;
43static unsigned long platform_mmiolen; 44static unsigned long platform_mmiolen;
45static uint64_t callback_via;
44 46
45unsigned long alloc_xen_mmio(unsigned long len) 47unsigned long alloc_xen_mmio(unsigned long len)
46{ 48{
@@ -85,13 +87,25 @@ static int xen_allocate_irq(struct pci_dev *pdev)
85 "xen-platform-pci", pdev); 87 "xen-platform-pci", pdev);
86} 88}
87 89
90static int platform_pci_resume(struct pci_dev *pdev)
91{
92 int err;
93 if (xen_have_vector_callback)
94 return 0;
95 err = xen_set_callback_via(callback_via);
96 if (err) {
97 dev_err(&pdev->dev, "platform_pci_resume failure!\n");
98 return err;
99 }
100 return 0;
101}
102
88static int __devinit platform_pci_init(struct pci_dev *pdev, 103static int __devinit platform_pci_init(struct pci_dev *pdev,
89 const struct pci_device_id *ent) 104 const struct pci_device_id *ent)
90{ 105{
91 int i, ret; 106 int i, ret;
92 long ioaddr, iolen; 107 long ioaddr, iolen;
93 long mmio_addr, mmio_len; 108 long mmio_addr, mmio_len;
94 uint64_t callback_via;
95 unsigned int max_nr_gframes; 109 unsigned int max_nr_gframes;
96 110
97 i = pci_enable_device(pdev); 111 i = pci_enable_device(pdev);
@@ -148,6 +162,9 @@ static int __devinit platform_pci_init(struct pci_dev *pdev,
148 if (ret) 162 if (ret)
149 goto out; 163 goto out;
150 xenbus_probe(NULL); 164 xenbus_probe(NULL);
165 ret = xen_setup_shutdown_event();
166 if (ret)
167 goto out;
151 return 0; 168 return 0;
152 169
153out: 170out:
@@ -171,6 +188,9 @@ static struct pci_driver platform_driver = {
171 .name = DRV_NAME, 188 .name = DRV_NAME,
172 .probe = platform_pci_init, 189 .probe = platform_pci_init,
173 .id_table = platform_pci_tbl, 190 .id_table = platform_pci_tbl,
191#ifdef CONFIG_PM
192 .resume_early = platform_pci_resume,
193#endif
174}; 194};
175 195
176static int __init platform_pci_module_init(void) 196static int __init platform_pci_module_init(void)