diff options
author | Liu Jinsong <jinsong.liu@intel.com> | 2013-01-25 02:42:31 -0500 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2013-02-19 22:02:28 -0500 |
commit | 40a58637a4fa10a2faea71f0f30ff0b3d74c6e00 (patch) | |
tree | e7fe9fcfb7f0bdca91152b8cef0fc08d6e224024 /include/xen/acpi.h | |
parent | b22ff77b82598ff131d215627533e09e4a472220 (diff) |
xen/acpi: Move xen_acpi_get_pxm to Xen's acpi.h
So that it could be reused by Xen CPU hotplug logic.
Signed-off-by: Liu, Jinsong <jinsong.liu@intel.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'include/xen/acpi.h')
-rw-r--r-- | include/xen/acpi.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/xen/acpi.h b/include/xen/acpi.h index 2b3103b33725..dc69c91605b8 100644 --- a/include/xen/acpi.h +++ b/include/xen/acpi.h | |||
@@ -69,4 +69,22 @@ static inline void xen_acpi_sleep_register(void) | |||
69 | } | 69 | } |
70 | #endif | 70 | #endif |
71 | 71 | ||
72 | static inline int xen_acpi_get_pxm(acpi_handle h) | ||
73 | { | ||
74 | unsigned long long pxm; | ||
75 | acpi_status status; | ||
76 | acpi_handle handle; | ||
77 | acpi_handle phandle = h; | ||
78 | |||
79 | do { | ||
80 | handle = phandle; | ||
81 | status = acpi_evaluate_integer(handle, "_PXM", NULL, &pxm); | ||
82 | if (ACPI_SUCCESS(status)) | ||
83 | return pxm; | ||
84 | status = acpi_get_parent(handle, &phandle); | ||
85 | } while (ACPI_SUCCESS(status)); | ||
86 | |||
87 | return -ENXIO; | ||
88 | } | ||
89 | |||
72 | #endif /* _XEN_ACPI_H */ | 90 | #endif /* _XEN_ACPI_H */ |