diff options
author | Bob Moore <robert.moore@intel.com> | 2008-11-12 20:45:35 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-12-29 22:38:37 -0500 |
commit | a8fadc923d1659f1a322194d420808d5b255883c (patch) | |
tree | b8afd36cc4217400efb0e71c550c69bfc8822352 /drivers/acpi/parser/psxface.c | |
parent | 9f15fc666ef54afc7aff31dfa31edecf00e0d81a (diff) |
ACPICA: Add support to externally execute _OSI method
The current implemenation of _OSI within ACPICA only allows other
control methods to execute _OSI. This change allows the host
OS to execute _OSI via the AcpiEvaluateObject interface. _OSI
is a special method -- it does not exist in the AML code, it is
implemented within ACPICA.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/parser/psxface.c')
-rw-r--r-- | drivers/acpi/parser/psxface.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/acpi/parser/psxface.c b/drivers/acpi/parser/psxface.c index 270469aae842..4985ce58c024 100644 --- a/drivers/acpi/parser/psxface.c +++ b/drivers/acpi/parser/psxface.c | |||
@@ -45,6 +45,7 @@ | |||
45 | #include <acpi/acparser.h> | 45 | #include <acpi/acparser.h> |
46 | #include <acpi/acdispat.h> | 46 | #include <acpi/acdispat.h> |
47 | #include <acpi/acinterp.h> | 47 | #include <acpi/acinterp.h> |
48 | #include <acpi/amlcode.h> | ||
48 | 49 | ||
49 | #define _COMPONENT ACPI_PARSER | 50 | #define _COMPONENT ACPI_PARSER |
50 | ACPI_MODULE_NAME("psxface") | 51 | ACPI_MODULE_NAME("psxface") |
@@ -278,6 +279,22 @@ acpi_status acpi_ps_execute_method(struct acpi_evaluate_info *info) | |||
278 | goto cleanup; | 279 | goto cleanup; |
279 | } | 280 | } |
280 | 281 | ||
282 | /* Invoke an internal method if necessary */ | ||
283 | |||
284 | if (info->obj_desc->method.method_flags & AML_METHOD_INTERNAL_ONLY) { | ||
285 | status = info->obj_desc->method.implementation(walk_state); | ||
286 | info->return_object = walk_state->return_desc; | ||
287 | |||
288 | /* Cleanup states */ | ||
289 | |||
290 | acpi_ds_scope_stack_clear(walk_state); | ||
291 | acpi_ps_cleanup_scope(&walk_state->parser_state); | ||
292 | acpi_ds_terminate_control_method(walk_state->method_desc, | ||
293 | walk_state); | ||
294 | acpi_ds_delete_walk_state(walk_state); | ||
295 | goto cleanup; | ||
296 | } | ||
297 | |||
281 | /* Parse the AML */ | 298 | /* Parse the AML */ |
282 | 299 | ||
283 | status = acpi_ps_parse_aml(walk_state); | 300 | status = acpi_ps_parse_aml(walk_state); |