aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/xen
diff options
context:
space:
mode:
authorBen Guthro <benjamin.guthro@citrix.com>2013-07-30 08:24:54 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2013-07-31 08:22:35 -0400
commitbe6b25d15f5e67bc49b90ed55feb1dd947f4df2c (patch)
tree1de57c5826b46527732ad02acddc42b018076dfd /drivers/xen
parentd6b47b122473885abc882e337ac2d321bbcfb378 (diff)
xen / ACPI: notify xen when reduced hardware sleep is available
Use the acpi_os_prepare_extended_sleep() callback to notify xen to make use of the reduced hardware sleep functionality The xen hypervisor change underlying this is commit 62d1a69 ("ACPI: support v5 (reduced HW) sleep interface") on the master branch of git://xenbits.xen.org/xen.git. Signed-off-by: Jan Beulich <jbeulich@suse.com> Signed-off-by: Ben Guthro <benjamin.guthro@citrix.com> Acked-by: Konrad Wilk <konrad.wilk@oracle.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/xen')
-rw-r--r--drivers/xen/acpi.c41
1 files changed, 28 insertions, 13 deletions
diff --git a/drivers/xen/acpi.c b/drivers/xen/acpi.c
index 119d42a2bf57..90307c0b630c 100644
--- a/drivers/xen/acpi.c
+++ b/drivers/xen/acpi.c
@@ -35,28 +35,43 @@
35#include <asm/xen/hypercall.h> 35#include <asm/xen/hypercall.h>
36#include <asm/xen/hypervisor.h> 36#include <asm/xen/hypervisor.h>
37 37
38int xen_acpi_notify_hypervisor_state(u8 sleep_state, 38static int xen_acpi_notify_hypervisor_state(u8 sleep_state,
39 u32 pm1a_cnt, u32 pm1b_cnt) 39 u32 val_a, u32 val_b,
40 bool extended)
40{ 41{
42 unsigned int bits = extended ? 8 : 16;
43
41 struct xen_platform_op op = { 44 struct xen_platform_op op = {
42 .cmd = XENPF_enter_acpi_sleep, 45 .cmd = XENPF_enter_acpi_sleep,
43 .interface_version = XENPF_INTERFACE_VERSION, 46 .interface_version = XENPF_INTERFACE_VERSION,
44 .u = { 47 .u.enter_acpi_sleep = {
45 .enter_acpi_sleep = { 48 .val_a = (u16)val_a,
46 .pm1a_cnt_val = (u16)pm1a_cnt, 49 .val_b = (u16)val_b,
47 .pm1b_cnt_val = (u16)pm1b_cnt, 50 .sleep_state = sleep_state,
48 .sleep_state = sleep_state, 51 .flags = extended ? XENPF_ACPI_SLEEP_EXTENDED : 0,
49 },
50 }, 52 },
51 }; 53 };
52 54
53 if ((pm1a_cnt & 0xffff0000) || (pm1b_cnt & 0xffff0000)) { 55 if (WARN((val_a & (~0 << bits)) || (val_b & (~0 << bits)),
54 WARN(1, "Using more than 16bits of PM1A/B 0x%x/0x%x!" 56 "Using more than %u bits of sleep control values %#x/%#x!"
55 "Email xen-devel@lists.xensource.com Thank you.\n", \ 57 "Email xen-devel@lists.xen.org - Thank you.\n", \
56 pm1a_cnt, pm1b_cnt); 58 bits, val_a, val_b))
57 return -1; 59 return -1;
58 }
59 60
60 HYPERVISOR_dom0_op(&op); 61 HYPERVISOR_dom0_op(&op);
61 return 1; 62 return 1;
62} 63}
64
65int xen_acpi_notify_hypervisor_sleep(u8 sleep_state,
66 u32 pm1a_cnt, u32 pm1b_cnt)
67{
68 return xen_acpi_notify_hypervisor_state(sleep_state, pm1a_cnt,
69 pm1b_cnt, false);
70}
71
72int xen_acpi_notify_hypervisor_extended_sleep(u8 sleep_state,
73 u32 val_a, u32 val_b)
74{
75 return xen_acpi_notify_hypervisor_state(sleep_state, val_a,
76 val_b, true);
77}