diff options
author | Feng Tang <feng.tang@intel.com> | 2012-08-20 21:56:58 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-09-21 00:31:33 -0400 |
commit | 8ede06aba5dffa78a27a18c47a9059eb38072ada (patch) | |
tree | fd88db5ccc5be67ea5998ff91187f0f1ff7a372e /include/acpi | |
parent | 7560452c1a4934049811fb6622fb753e8ad1c647 (diff) |
ACPI: Use ACPICA native way to decode the PLD buffer
This patch is on top of the ACPICA 20120816 release, which implemented
a native way to decode PLD buffer, so use it instead of leting upper
level users do the decoding.
v2: Modify the check for PLD buffer length to reject buffers whose
length < 16
Signed-off-by: Feng Tang <feng.tang@intel.com>
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/acpi')
-rw-r--r-- | include/acpi/acpi_bus.h | 31 |
1 files changed, 1 insertions, 30 deletions
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h index bde976ee068d..0c1fcd4a2b42 100644 --- a/include/acpi/acpi_bus.h +++ b/include/acpi/acpi_bus.h | |||
@@ -54,37 +54,8 @@ acpi_status | |||
54 | acpi_evaluate_hotplug_ost(acpi_handle handle, u32 source_event, | 54 | acpi_evaluate_hotplug_ost(acpi_handle handle, u32 source_event, |
55 | u32 status_code, struct acpi_buffer *status_buf); | 55 | u32 status_code, struct acpi_buffer *status_buf); |
56 | 56 | ||
57 | struct acpi_pld { | ||
58 | unsigned int revision:7; /* 0 */ | ||
59 | unsigned int ignore_colour:1; /* 7 */ | ||
60 | unsigned int colour:24; /* 8 */ | ||
61 | unsigned int width:16; /* 32 */ | ||
62 | unsigned int height:16; /* 48 */ | ||
63 | unsigned int user_visible:1; /* 64 */ | ||
64 | unsigned int dock:1; /* 65 */ | ||
65 | unsigned int lid:1; /* 66 */ | ||
66 | unsigned int panel:3; /* 67 */ | ||
67 | unsigned int vertical_pos:2; /* 70 */ | ||
68 | unsigned int horizontal_pos:2; /* 72 */ | ||
69 | unsigned int shape:4; /* 74 */ | ||
70 | unsigned int group_orientation:1; /* 78 */ | ||
71 | unsigned int group_token:8; /* 79 */ | ||
72 | unsigned int group_position:8; /* 87 */ | ||
73 | unsigned int bay:1; /* 95 */ | ||
74 | unsigned int ejectable:1; /* 96 */ | ||
75 | unsigned int ospm_eject_required:1; /* 97 */ | ||
76 | unsigned int cabinet_number:8; /* 98 */ | ||
77 | unsigned int card_cage_number:8; /* 106 */ | ||
78 | unsigned int reference:1; /* 114 */ | ||
79 | unsigned int rotation:4; /* 115 */ | ||
80 | unsigned int order:5; /* 119 */ | ||
81 | unsigned int reserved:4; /* 124 */ | ||
82 | unsigned int vertical_offset:16; /* 128 */ | ||
83 | unsigned int horizontal_offset:16; /* 144 */ | ||
84 | } __attribute__((__packed__)); | ||
85 | |||
86 | acpi_status | 57 | acpi_status |
87 | acpi_get_physical_device_location(acpi_handle handle, struct acpi_pld *pld); | 58 | acpi_get_physical_device_location(acpi_handle handle, struct acpi_pld_info **pld); |
88 | #ifdef CONFIG_ACPI | 59 | #ifdef CONFIG_ACPI |
89 | 60 | ||
90 | #include <linux/proc_fs.h> | 61 | #include <linux/proc_fs.h> |