2019-05-27 06:55:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* acpi_utils.c - ACPI Utility Functions ($Revision: 10 $)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
|
|
|
|
* Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
|
|
|
|
*/
|
|
|
|
|
2021-01-20 19:00:32 +00:00
|
|
|
#define pr_fmt(fmt) "ACPI: utils: " fmt
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/types.h>
|
ACPI: Add acpi_handle_<level>() interfaces
This patch introduces acpi_handle_<level>(), where <level> is
a kernel message level such as err/warn/info, to support improved
logging messages for ACPI, esp. hot-plug operations.
acpi_handle_<level>() appends "ACPI" prefix and ACPI object path
to the messages. This improves diagnosis of hotplug operations
since an error message in a log file identifies an object that
caused an issue. This interface acquires the global namespace
mutex to obtain an object path. In interrupt context, it shows
the object path as <n/a>.
acpi_handle_<level>() takes acpi_handle as an argument, which is
passed to ACPI hotplug notify handlers from the ACPICA. Therefore,
it is always available unlike other kernel objects, such as device.
For example:
acpi_handle_err(handle, "Device don't exist, dropping EJECT\n");
logs an error message like this at KERN_ERR.
ACPI: \_SB_.SCK4.CPU4: Device don't exist, dropping EJECT
ACPI hot-plug drivers can use acpi_handle_<level>() when they need
to identify a target ACPI object path in their messages, such as
error cases. The usage model is similar to dev_<level>().
acpi_handle_<level>() can be used when a device is not created or
is invalid during hot-plug operations. ACPI object path is also
consistent on the platform, unlike device name that gets incremented
over hotplug operations.
ACPI drivers should use dev_<level>() when a device object is valid.
Device name provides more user friendly information, and avoids
acquiring the global ACPI namespace mutex. ACPI drivers also
continue to use pr_<level>() when they do not need to specify device
information, such as boot-up messages.
Note: ACPI_[WARNING|INFO|ERROR]() are intended for the ACPICA and
are not associated with the kernel message level.
Signed-off-by: Toshi Kani <toshi.kani@hp.com>
Tested-by: Vijay Mohan Pandarathil <vijaymohan.pandarathil@hp.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2012-11-21 01:36:28 +00:00
|
|
|
#include <linux/hardirq.h>
|
|
|
|
#include <linux/acpi.h>
|
2014-05-22 10:47:47 +00:00
|
|
|
#include <linux/dynamic_debug.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-07-28 20:45:54 +00:00
|
|
|
#include "internal.h"
|
2015-11-25 20:19:55 +00:00
|
|
|
#include "sleep.h"
|
2009-07-28 20:45:54 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* --------------------------------------------------------------------------
|
|
|
|
Object Evaluation Helpers
|
|
|
|
-------------------------------------------------------------------------- */
|
2021-01-20 19:00:32 +00:00
|
|
|
static void acpi_util_eval_error(acpi_handle h, acpi_string p, acpi_status s)
|
2008-02-16 01:07:19 +00:00
|
|
|
{
|
2021-01-20 19:00:32 +00:00
|
|
|
acpi_handle_debug(h, "Evaluate [%s]: %s\n", p, acpi_format_exception(s));
|
2008-02-16 01:07:19 +00:00
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
acpi_status
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_extract_package(union acpi_object *package,
|
|
|
|
struct acpi_buffer *format, struct acpi_buffer *buffer)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
u32 size_required = 0;
|
|
|
|
u32 tail_offset = 0;
|
|
|
|
char *format_string = NULL;
|
|
|
|
u32 format_count = 0;
|
|
|
|
u32 i = 0;
|
|
|
|
u8 *head = NULL;
|
|
|
|
u8 *tail = NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
if (!package || (package->type != ACPI_TYPE_PACKAGE)
|
|
|
|
|| (package->package.count < 1)) {
|
2021-01-20 19:00:32 +00:00
|
|
|
pr_debug("Invalid package argument\n");
|
2006-06-27 04:41:40 +00:00
|
|
|
return AE_BAD_PARAMETER;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!format || !format->pointer || (format->length < 1)) {
|
2021-01-20 19:00:32 +00:00
|
|
|
pr_debug("Invalid format argument\n");
|
2006-06-27 04:41:40 +00:00
|
|
|
return AE_BAD_PARAMETER;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!buffer) {
|
2021-01-20 19:00:32 +00:00
|
|
|
pr_debug("Invalid buffer argument\n");
|
2006-06-27 04:41:40 +00:00
|
|
|
return AE_BAD_PARAMETER;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
format_count = (format->length / sizeof(char)) - 1;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (format_count > package->package.count) {
|
2021-01-20 19:00:32 +00:00
|
|
|
pr_debug("Format specifies more objects [%d] than present [%d]\n",
|
|
|
|
format_count, package->package.count);
|
2006-06-27 04:41:40 +00:00
|
|
|
return AE_BAD_DATA;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2006-09-30 22:28:50 +00:00
|
|
|
format_string = format->pointer;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Calculate size_required.
|
|
|
|
*/
|
2005-08-05 04:44:28 +00:00
|
|
|
for (i = 0; i < format_count; i++) {
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
union acpi_object *element = &(package->package.elements[i]);
|
|
|
|
|
|
|
|
switch (element->type) {
|
|
|
|
|
|
|
|
case ACPI_TYPE_INTEGER:
|
|
|
|
switch (format_string[i]) {
|
|
|
|
case 'N':
|
2010-01-28 02:53:19 +00:00
|
|
|
size_required += sizeof(u64);
|
|
|
|
tail_offset += sizeof(u64);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
case 'S':
|
2005-08-05 04:44:28 +00:00
|
|
|
size_required +=
|
2010-01-28 02:53:19 +00:00
|
|
|
sizeof(char *) + sizeof(u64) +
|
2005-08-05 04:44:28 +00:00
|
|
|
sizeof(char);
|
|
|
|
tail_offset += sizeof(char *);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
default:
|
2021-01-20 19:00:32 +00:00
|
|
|
pr_debug("Invalid package element [%d]: got number, expected [%c]\n",
|
|
|
|
i, format_string[i]);
|
2006-06-27 04:41:40 +00:00
|
|
|
return AE_BAD_DATA;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_STRING:
|
|
|
|
case ACPI_TYPE_BUFFER:
|
|
|
|
switch (format_string[i]) {
|
|
|
|
case 'S':
|
2005-08-05 04:44:28 +00:00
|
|
|
size_required +=
|
|
|
|
sizeof(char *) +
|
|
|
|
(element->string.length * sizeof(char)) +
|
|
|
|
sizeof(char);
|
|
|
|
tail_offset += sizeof(char *);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
case 'B':
|
2005-08-05 04:44:28 +00:00
|
|
|
size_required +=
|
2014-11-16 09:57:00 +00:00
|
|
|
sizeof(u8 *) + element->buffer.length;
|
2005-08-05 04:44:28 +00:00
|
|
|
tail_offset += sizeof(u8 *);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
default:
|
2021-01-20 19:00:32 +00:00
|
|
|
pr_debug("Invalid package element [%d] got string/buffer, expected [%c]\n",
|
|
|
|
i, format_string[i]);
|
2006-06-27 04:41:40 +00:00
|
|
|
return AE_BAD_DATA;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
break;
|
2014-03-16 13:34:16 +00:00
|
|
|
case ACPI_TYPE_LOCAL_REFERENCE:
|
|
|
|
switch (format_string[i]) {
|
|
|
|
case 'R':
|
|
|
|
size_required += sizeof(void *);
|
|
|
|
tail_offset += sizeof(void *);
|
|
|
|
break;
|
|
|
|
default:
|
2021-01-20 19:00:32 +00:00
|
|
|
pr_debug("Invalid package element [%d] got reference, expected [%c]\n",
|
|
|
|
i, format_string[i]);
|
2014-03-16 13:34:16 +00:00
|
|
|
return AE_BAD_DATA;
|
|
|
|
}
|
|
|
|
break;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
case ACPI_TYPE_PACKAGE:
|
|
|
|
default:
|
2021-01-20 19:00:32 +00:00
|
|
|
pr_debug("Unsupported element at index=%d\n", i);
|
2005-04-16 22:20:36 +00:00
|
|
|
/* TBD: handle nested packages... */
|
2006-06-27 04:41:40 +00:00
|
|
|
return AE_SUPPORT;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Validate output buffer.
|
|
|
|
*/
|
2013-10-09 20:21:10 +00:00
|
|
|
if (buffer->length == ACPI_ALLOCATE_BUFFER) {
|
2014-03-20 07:35:56 +00:00
|
|
|
buffer->pointer = ACPI_ALLOCATE_ZEROED(size_required);
|
2013-10-09 20:21:10 +00:00
|
|
|
if (!buffer->pointer)
|
|
|
|
return AE_NO_MEMORY;
|
2005-04-16 22:20:36 +00:00
|
|
|
buffer->length = size_required;
|
2013-10-09 20:21:10 +00:00
|
|
|
} else {
|
|
|
|
if (buffer->length < size_required) {
|
|
|
|
buffer->length = size_required;
|
|
|
|
return AE_BUFFER_OVERFLOW;
|
|
|
|
} else if (buffer->length != size_required ||
|
|
|
|
!buffer->pointer) {
|
|
|
|
return AE_BAD_PARAMETER;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
head = buffer->pointer;
|
|
|
|
tail = buffer->pointer + tail_offset;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Extract package data.
|
|
|
|
*/
|
2005-08-05 04:44:28 +00:00
|
|
|
for (i = 0; i < format_count; i++) {
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
u8 **pointer = NULL;
|
|
|
|
union acpi_object *element = &(package->package.elements[i]);
|
|
|
|
|
|
|
|
switch (element->type) {
|
|
|
|
|
|
|
|
case ACPI_TYPE_INTEGER:
|
|
|
|
switch (format_string[i]) {
|
|
|
|
case 'N':
|
2010-01-28 02:53:19 +00:00
|
|
|
*((u64 *) head) =
|
2005-08-05 04:44:28 +00:00
|
|
|
element->integer.value;
|
2010-01-28 02:53:19 +00:00
|
|
|
head += sizeof(u64);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
case 'S':
|
2005-08-05 04:44:28 +00:00
|
|
|
pointer = (u8 **) head;
|
2005-04-16 22:20:36 +00:00
|
|
|
*pointer = tail;
|
2010-01-28 02:53:19 +00:00
|
|
|
*((u64 *) tail) =
|
2005-08-05 04:44:28 +00:00
|
|
|
element->integer.value;
|
2010-01-28 02:53:19 +00:00
|
|
|
head += sizeof(u64 *);
|
|
|
|
tail += sizeof(u64);
|
2005-04-16 22:20:36 +00:00
|
|
|
/* NULL terminate string */
|
|
|
|
*tail = (char)0;
|
|
|
|
tail += sizeof(char);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* Should never get here */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_STRING:
|
|
|
|
case ACPI_TYPE_BUFFER:
|
|
|
|
switch (format_string[i]) {
|
|
|
|
case 'S':
|
2005-08-05 04:44:28 +00:00
|
|
|
pointer = (u8 **) head;
|
2005-04-16 22:20:36 +00:00
|
|
|
*pointer = tail;
|
2005-08-05 04:44:28 +00:00
|
|
|
memcpy(tail, element->string.pointer,
|
|
|
|
element->string.length);
|
|
|
|
head += sizeof(char *);
|
2005-04-16 22:20:36 +00:00
|
|
|
tail += element->string.length * sizeof(char);
|
|
|
|
/* NULL terminate string */
|
|
|
|
*tail = (char)0;
|
|
|
|
tail += sizeof(char);
|
|
|
|
break;
|
|
|
|
case 'B':
|
2005-08-05 04:44:28 +00:00
|
|
|
pointer = (u8 **) head;
|
2005-04-16 22:20:36 +00:00
|
|
|
*pointer = tail;
|
2005-08-05 04:44:28 +00:00
|
|
|
memcpy(tail, element->buffer.pointer,
|
|
|
|
element->buffer.length);
|
|
|
|
head += sizeof(u8 *);
|
2014-11-16 09:57:00 +00:00
|
|
|
tail += element->buffer.length;
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* Should never get here */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2014-03-16 13:34:16 +00:00
|
|
|
case ACPI_TYPE_LOCAL_REFERENCE:
|
|
|
|
switch (format_string[i]) {
|
|
|
|
case 'R':
|
|
|
|
*(void **)head =
|
|
|
|
(void *)element->reference.handle;
|
|
|
|
head += sizeof(void *);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* Should never get here */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2005-04-16 22:20:36 +00:00
|
|
|
case ACPI_TYPE_PACKAGE:
|
|
|
|
/* TBD: handle nested packages... */
|
|
|
|
default:
|
|
|
|
/* Should never get here */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-06-27 04:41:40 +00:00
|
|
|
return AE_OK;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
EXPORT_SYMBOL(acpi_extract_package);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_evaluate_integer(acpi_handle handle,
|
|
|
|
acpi_string pathname,
|
2008-10-10 06:22:59 +00:00
|
|
|
struct acpi_object_list *arguments, unsigned long long *data)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_status status = AE_OK;
|
2008-11-25 11:05:08 +00:00
|
|
|
union acpi_object element;
|
2005-08-05 04:44:28 +00:00
|
|
|
struct acpi_buffer buffer = { 0, NULL };
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (!data)
|
2006-06-27 04:41:40 +00:00
|
|
|
return AE_BAD_PARAMETER;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
buffer.length = sizeof(union acpi_object);
|
2008-11-25 11:05:08 +00:00
|
|
|
buffer.pointer = &element;
|
2005-04-16 22:20:36 +00:00
|
|
|
status = acpi_evaluate_object(handle, pathname, arguments, &buffer);
|
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
acpi_util_eval_error(handle, pathname, status);
|
2006-06-27 04:41:40 +00:00
|
|
|
return status;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2008-11-25 11:05:08 +00:00
|
|
|
if (element.type != ACPI_TYPE_INTEGER) {
|
2005-04-16 22:20:36 +00:00
|
|
|
acpi_util_eval_error(handle, pathname, AE_BAD_DATA);
|
2006-06-27 04:41:40 +00:00
|
|
|
return AE_BAD_DATA;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2008-11-25 11:05:08 +00:00
|
|
|
*data = element.integer.value;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2021-01-20 19:00:32 +00:00
|
|
|
acpi_handle_debug(handle, "Return value [%llu]\n", *data);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-06-27 04:41:40 +00:00
|
|
|
return AE_OK;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
EXPORT_SYMBOL(acpi_evaluate_integer);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2021-06-11 10:53:56 +00:00
|
|
|
int acpi_get_local_address(acpi_handle handle, u32 *addr)
|
|
|
|
{
|
|
|
|
unsigned long long adr;
|
|
|
|
acpi_status status;
|
|
|
|
|
|
|
|
status = acpi_evaluate_integer(handle, METHOD_NAME__ADR, NULL, &adr);
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
return -ENODATA;
|
|
|
|
|
|
|
|
*addr = (u32)adr;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(acpi_get_local_address);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
acpi_status
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_evaluate_reference(acpi_handle handle,
|
|
|
|
acpi_string pathname,
|
|
|
|
struct acpi_object_list *arguments,
|
|
|
|
struct acpi_handle_list *list)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_status status = AE_OK;
|
|
|
|
union acpi_object *package = NULL;
|
|
|
|
union acpi_object *element = NULL;
|
|
|
|
struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
|
|
|
|
u32 i = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
if (!list) {
|
2006-06-27 04:41:40 +00:00
|
|
|
return AE_BAD_PARAMETER;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Evaluate object. */
|
|
|
|
|
|
|
|
status = acpi_evaluate_object(handle, pathname, arguments, &buffer);
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
goto end;
|
|
|
|
|
2006-09-30 22:28:50 +00:00
|
|
|
package = buffer.pointer;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if ((buffer.length == 0) || !package) {
|
|
|
|
status = AE_BAD_DATA;
|
|
|
|
acpi_util_eval_error(handle, pathname, status);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
if (package->type != ACPI_TYPE_PACKAGE) {
|
|
|
|
status = AE_BAD_DATA;
|
|
|
|
acpi_util_eval_error(handle, pathname, status);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
if (!package->package.count) {
|
|
|
|
status = AE_BAD_DATA;
|
|
|
|
acpi_util_eval_error(handle, pathname, status);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (package->package.count > ACPI_MAX_HANDLES) {
|
2017-11-09 06:22:39 +00:00
|
|
|
kfree(package);
|
2006-06-27 04:41:40 +00:00
|
|
|
return AE_NO_MEMORY;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
list->count = package->package.count;
|
|
|
|
|
|
|
|
/* Extract package data. */
|
|
|
|
|
|
|
|
for (i = 0; i < list->count; i++) {
|
|
|
|
|
|
|
|
element = &(package->package.elements[i]);
|
|
|
|
|
2008-04-10 15:06:43 +00:00
|
|
|
if (element->type != ACPI_TYPE_LOCAL_REFERENCE) {
|
2005-04-16 22:20:36 +00:00
|
|
|
status = AE_BAD_DATA;
|
|
|
|
acpi_util_eval_error(handle, pathname, status);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-03-12 00:06:24 +00:00
|
|
|
if (!element->reference.handle) {
|
|
|
|
status = AE_NULL_ENTRY;
|
2014-12-12 21:51:01 +00:00
|
|
|
acpi_util_eval_error(handle, pathname, status);
|
2008-03-12 00:06:24 +00:00
|
|
|
break;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
/* Get the acpi_handle. */
|
|
|
|
|
|
|
|
list->handles[i] = element->reference.handle;
|
2021-01-20 19:00:32 +00:00
|
|
|
acpi_handle_debug(list->handles[i], "Found in reference list\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
end:
|
2005-04-16 22:20:36 +00:00
|
|
|
if (ACPI_FAILURE(status)) {
|
|
|
|
list->count = 0;
|
|
|
|
//kfree(list->handles);
|
|
|
|
}
|
|
|
|
|
2006-06-30 07:19:10 +00:00
|
|
|
kfree(buffer.pointer);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-06-27 04:41:40 +00:00
|
|
|
return status;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
EXPORT_SYMBOL(acpi_evaluate_reference);
|
2012-05-11 08:08:26 +00:00
|
|
|
|
|
|
|
acpi_status
|
2012-08-21 01:56:58 +00:00
|
|
|
acpi_get_physical_device_location(acpi_handle handle, struct acpi_pld_info **pld)
|
2012-05-11 08:08:26 +00:00
|
|
|
{
|
|
|
|
acpi_status status;
|
|
|
|
struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
|
|
|
|
union acpi_object *output;
|
|
|
|
|
|
|
|
status = acpi_evaluate_object(handle, "_PLD", NULL, &buffer);
|
|
|
|
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
return status;
|
|
|
|
|
|
|
|
output = buffer.pointer;
|
|
|
|
|
|
|
|
if (!output || output->type != ACPI_TYPE_PACKAGE
|
|
|
|
|| !output->package.count
|
|
|
|
|| output->package.elements[0].type != ACPI_TYPE_BUFFER
|
2012-08-21 01:56:58 +00:00
|
|
|
|| output->package.elements[0].buffer.length < ACPI_PLD_REV1_BUFFER_SIZE) {
|
2012-05-11 08:08:26 +00:00
|
|
|
status = AE_TYPE;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2012-08-21 01:56:58 +00:00
|
|
|
status = acpi_decode_pld_buffer(
|
|
|
|
output->package.elements[0].buffer.pointer,
|
|
|
|
output->package.elements[0].buffer.length,
|
|
|
|
pld);
|
|
|
|
|
2012-05-11 08:08:26 +00:00
|
|
|
out:
|
|
|
|
kfree(buffer.pointer);
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(acpi_get_physical_device_location);
|
2012-05-24 02:25:19 +00:00
|
|
|
|
|
|
|
/**
|
2014-02-21 00:07:17 +00:00
|
|
|
* acpi_evaluate_ost: Evaluate _OST for hotplug operations
|
2012-05-24 02:25:19 +00:00
|
|
|
* @handle: ACPI device handle
|
|
|
|
* @source_event: source event code
|
|
|
|
* @status_code: status code
|
|
|
|
* @status_buf: optional detailed information (NULL if none)
|
|
|
|
*
|
|
|
|
* Evaluate _OST for hotplug operations. All ACPI hotplug handlers
|
|
|
|
* must call this function when evaluating _OST for hotplug operations.
|
|
|
|
* When the platform does not support _OST, this function has no effect.
|
|
|
|
*/
|
|
|
|
acpi_status
|
2014-02-19 06:02:15 +00:00
|
|
|
acpi_evaluate_ost(acpi_handle handle, u32 source_event, u32 status_code,
|
|
|
|
struct acpi_buffer *status_buf)
|
2012-05-24 02:25:19 +00:00
|
|
|
{
|
|
|
|
union acpi_object params[3] = {
|
|
|
|
{.type = ACPI_TYPE_INTEGER,},
|
|
|
|
{.type = ACPI_TYPE_INTEGER,},
|
|
|
|
{.type = ACPI_TYPE_BUFFER,}
|
|
|
|
};
|
|
|
|
struct acpi_object_list arg_list = {3, params};
|
|
|
|
|
|
|
|
params[0].integer.value = source_event;
|
|
|
|
params[1].integer.value = status_code;
|
|
|
|
if (status_buf != NULL) {
|
|
|
|
params[2].buffer.pointer = status_buf->pointer;
|
|
|
|
params[2].buffer.length = status_buf->length;
|
|
|
|
} else {
|
|
|
|
params[2].buffer.pointer = NULL;
|
|
|
|
params[2].buffer.length = 0;
|
|
|
|
}
|
|
|
|
|
2014-02-19 06:02:15 +00:00
|
|
|
return acpi_evaluate_object(handle, "_OST", &arg_list, NULL);
|
2012-05-24 02:25:19 +00:00
|
|
|
}
|
2014-02-19 06:02:15 +00:00
|
|
|
EXPORT_SYMBOL(acpi_evaluate_ost);
|
ACPI: Add acpi_handle_<level>() interfaces
This patch introduces acpi_handle_<level>(), where <level> is
a kernel message level such as err/warn/info, to support improved
logging messages for ACPI, esp. hot-plug operations.
acpi_handle_<level>() appends "ACPI" prefix and ACPI object path
to the messages. This improves diagnosis of hotplug operations
since an error message in a log file identifies an object that
caused an issue. This interface acquires the global namespace
mutex to obtain an object path. In interrupt context, it shows
the object path as <n/a>.
acpi_handle_<level>() takes acpi_handle as an argument, which is
passed to ACPI hotplug notify handlers from the ACPICA. Therefore,
it is always available unlike other kernel objects, such as device.
For example:
acpi_handle_err(handle, "Device don't exist, dropping EJECT\n");
logs an error message like this at KERN_ERR.
ACPI: \_SB_.SCK4.CPU4: Device don't exist, dropping EJECT
ACPI hot-plug drivers can use acpi_handle_<level>() when they need
to identify a target ACPI object path in their messages, such as
error cases. The usage model is similar to dev_<level>().
acpi_handle_<level>() can be used when a device is not created or
is invalid during hot-plug operations. ACPI object path is also
consistent on the platform, unlike device name that gets incremented
over hotplug operations.
ACPI drivers should use dev_<level>() when a device object is valid.
Device name provides more user friendly information, and avoids
acquiring the global ACPI namespace mutex. ACPI drivers also
continue to use pr_<level>() when they do not need to specify device
information, such as boot-up messages.
Note: ACPI_[WARNING|INFO|ERROR]() are intended for the ACPICA and
are not associated with the kernel message level.
Signed-off-by: Toshi Kani <toshi.kani@hp.com>
Tested-by: Vijay Mohan Pandarathil <vijaymohan.pandarathil@hp.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2012-11-21 01:36:28 +00:00
|
|
|
|
2014-05-22 10:47:47 +00:00
|
|
|
/**
|
|
|
|
* acpi_handle_path: Return the object path of handle
|
2019-10-01 14:27:20 +00:00
|
|
|
* @handle: ACPI device handle
|
2014-05-22 10:47:47 +00:00
|
|
|
*
|
|
|
|
* Caller must free the returned buffer
|
|
|
|
*/
|
|
|
|
static char *acpi_handle_path(acpi_handle handle)
|
|
|
|
{
|
|
|
|
struct acpi_buffer buffer = {
|
|
|
|
.length = ACPI_ALLOCATE_BUFFER,
|
|
|
|
.pointer = NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
if (in_interrupt() ||
|
|
|
|
acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer) != AE_OK)
|
|
|
|
return NULL;
|
|
|
|
return buffer.pointer;
|
|
|
|
}
|
|
|
|
|
ACPI: Add acpi_handle_<level>() interfaces
This patch introduces acpi_handle_<level>(), where <level> is
a kernel message level such as err/warn/info, to support improved
logging messages for ACPI, esp. hot-plug operations.
acpi_handle_<level>() appends "ACPI" prefix and ACPI object path
to the messages. This improves diagnosis of hotplug operations
since an error message in a log file identifies an object that
caused an issue. This interface acquires the global namespace
mutex to obtain an object path. In interrupt context, it shows
the object path as <n/a>.
acpi_handle_<level>() takes acpi_handle as an argument, which is
passed to ACPI hotplug notify handlers from the ACPICA. Therefore,
it is always available unlike other kernel objects, such as device.
For example:
acpi_handle_err(handle, "Device don't exist, dropping EJECT\n");
logs an error message like this at KERN_ERR.
ACPI: \_SB_.SCK4.CPU4: Device don't exist, dropping EJECT
ACPI hot-plug drivers can use acpi_handle_<level>() when they need
to identify a target ACPI object path in their messages, such as
error cases. The usage model is similar to dev_<level>().
acpi_handle_<level>() can be used when a device is not created or
is invalid during hot-plug operations. ACPI object path is also
consistent on the platform, unlike device name that gets incremented
over hotplug operations.
ACPI drivers should use dev_<level>() when a device object is valid.
Device name provides more user friendly information, and avoids
acquiring the global ACPI namespace mutex. ACPI drivers also
continue to use pr_<level>() when they do not need to specify device
information, such as boot-up messages.
Note: ACPI_[WARNING|INFO|ERROR]() are intended for the ACPICA and
are not associated with the kernel message level.
Signed-off-by: Toshi Kani <toshi.kani@hp.com>
Tested-by: Vijay Mohan Pandarathil <vijaymohan.pandarathil@hp.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2012-11-21 01:36:28 +00:00
|
|
|
/**
|
|
|
|
* acpi_handle_printk: Print message with ACPI prefix and object path
|
2019-10-01 14:27:20 +00:00
|
|
|
* @level: log level
|
|
|
|
* @handle: ACPI device handle
|
|
|
|
* @fmt: format string
|
ACPI: Add acpi_handle_<level>() interfaces
This patch introduces acpi_handle_<level>(), where <level> is
a kernel message level such as err/warn/info, to support improved
logging messages for ACPI, esp. hot-plug operations.
acpi_handle_<level>() appends "ACPI" prefix and ACPI object path
to the messages. This improves diagnosis of hotplug operations
since an error message in a log file identifies an object that
caused an issue. This interface acquires the global namespace
mutex to obtain an object path. In interrupt context, it shows
the object path as <n/a>.
acpi_handle_<level>() takes acpi_handle as an argument, which is
passed to ACPI hotplug notify handlers from the ACPICA. Therefore,
it is always available unlike other kernel objects, such as device.
For example:
acpi_handle_err(handle, "Device don't exist, dropping EJECT\n");
logs an error message like this at KERN_ERR.
ACPI: \_SB_.SCK4.CPU4: Device don't exist, dropping EJECT
ACPI hot-plug drivers can use acpi_handle_<level>() when they need
to identify a target ACPI object path in their messages, such as
error cases. The usage model is similar to dev_<level>().
acpi_handle_<level>() can be used when a device is not created or
is invalid during hot-plug operations. ACPI object path is also
consistent on the platform, unlike device name that gets incremented
over hotplug operations.
ACPI drivers should use dev_<level>() when a device object is valid.
Device name provides more user friendly information, and avoids
acquiring the global ACPI namespace mutex. ACPI drivers also
continue to use pr_<level>() when they do not need to specify device
information, such as boot-up messages.
Note: ACPI_[WARNING|INFO|ERROR]() are intended for the ACPICA and
are not associated with the kernel message level.
Signed-off-by: Toshi Kani <toshi.kani@hp.com>
Tested-by: Vijay Mohan Pandarathil <vijaymohan.pandarathil@hp.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2012-11-21 01:36:28 +00:00
|
|
|
*
|
|
|
|
* This function is called through acpi_handle_<level> macros and prints
|
|
|
|
* a message with ACPI prefix and object path. This function acquires
|
|
|
|
* the global namespace mutex to obtain an object path. In interrupt
|
|
|
|
* context, it shows the object path as <n/a>.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
acpi_handle_printk(const char *level, acpi_handle handle, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
struct va_format vaf;
|
|
|
|
va_list args;
|
|
|
|
const char *path;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
vaf.fmt = fmt;
|
|
|
|
vaf.va = &args;
|
|
|
|
|
2014-05-22 10:47:47 +00:00
|
|
|
path = acpi_handle_path(handle);
|
|
|
|
printk("%sACPI: %s: %pV", level, path ? path : "<n/a>" , &vaf);
|
ACPI: Add acpi_handle_<level>() interfaces
This patch introduces acpi_handle_<level>(), where <level> is
a kernel message level such as err/warn/info, to support improved
logging messages for ACPI, esp. hot-plug operations.
acpi_handle_<level>() appends "ACPI" prefix and ACPI object path
to the messages. This improves diagnosis of hotplug operations
since an error message in a log file identifies an object that
caused an issue. This interface acquires the global namespace
mutex to obtain an object path. In interrupt context, it shows
the object path as <n/a>.
acpi_handle_<level>() takes acpi_handle as an argument, which is
passed to ACPI hotplug notify handlers from the ACPICA. Therefore,
it is always available unlike other kernel objects, such as device.
For example:
acpi_handle_err(handle, "Device don't exist, dropping EJECT\n");
logs an error message like this at KERN_ERR.
ACPI: \_SB_.SCK4.CPU4: Device don't exist, dropping EJECT
ACPI hot-plug drivers can use acpi_handle_<level>() when they need
to identify a target ACPI object path in their messages, such as
error cases. The usage model is similar to dev_<level>().
acpi_handle_<level>() can be used when a device is not created or
is invalid during hot-plug operations. ACPI object path is also
consistent on the platform, unlike device name that gets incremented
over hotplug operations.
ACPI drivers should use dev_<level>() when a device object is valid.
Device name provides more user friendly information, and avoids
acquiring the global ACPI namespace mutex. ACPI drivers also
continue to use pr_<level>() when they do not need to specify device
information, such as boot-up messages.
Note: ACPI_[WARNING|INFO|ERROR]() are intended for the ACPICA and
are not associated with the kernel message level.
Signed-off-by: Toshi Kani <toshi.kani@hp.com>
Tested-by: Vijay Mohan Pandarathil <vijaymohan.pandarathil@hp.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2012-11-21 01:36:28 +00:00
|
|
|
|
|
|
|
va_end(args);
|
2014-05-22 10:47:47 +00:00
|
|
|
kfree(path);
|
ACPI: Add acpi_handle_<level>() interfaces
This patch introduces acpi_handle_<level>(), where <level> is
a kernel message level such as err/warn/info, to support improved
logging messages for ACPI, esp. hot-plug operations.
acpi_handle_<level>() appends "ACPI" prefix and ACPI object path
to the messages. This improves diagnosis of hotplug operations
since an error message in a log file identifies an object that
caused an issue. This interface acquires the global namespace
mutex to obtain an object path. In interrupt context, it shows
the object path as <n/a>.
acpi_handle_<level>() takes acpi_handle as an argument, which is
passed to ACPI hotplug notify handlers from the ACPICA. Therefore,
it is always available unlike other kernel objects, such as device.
For example:
acpi_handle_err(handle, "Device don't exist, dropping EJECT\n");
logs an error message like this at KERN_ERR.
ACPI: \_SB_.SCK4.CPU4: Device don't exist, dropping EJECT
ACPI hot-plug drivers can use acpi_handle_<level>() when they need
to identify a target ACPI object path in their messages, such as
error cases. The usage model is similar to dev_<level>().
acpi_handle_<level>() can be used when a device is not created or
is invalid during hot-plug operations. ACPI object path is also
consistent on the platform, unlike device name that gets incremented
over hotplug operations.
ACPI drivers should use dev_<level>() when a device object is valid.
Device name provides more user friendly information, and avoids
acquiring the global ACPI namespace mutex. ACPI drivers also
continue to use pr_<level>() when they do not need to specify device
information, such as boot-up messages.
Note: ACPI_[WARNING|INFO|ERROR]() are intended for the ACPICA and
are not associated with the kernel message level.
Signed-off-by: Toshi Kani <toshi.kani@hp.com>
Tested-by: Vijay Mohan Pandarathil <vijaymohan.pandarathil@hp.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2012-11-21 01:36:28 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(acpi_handle_printk);
|
2013-06-28 16:24:38 +00:00
|
|
|
|
2014-05-22 10:47:47 +00:00
|
|
|
#if defined(CONFIG_DYNAMIC_DEBUG)
|
|
|
|
/**
|
|
|
|
* __acpi_handle_debug: pr_debug with ACPI prefix and object path
|
2019-10-01 14:27:20 +00:00
|
|
|
* @descriptor: Dynamic Debug descriptor
|
|
|
|
* @handle: ACPI device handle
|
|
|
|
* @fmt: format string
|
2014-05-22 10:47:47 +00:00
|
|
|
*
|
|
|
|
* This function is called through acpi_handle_debug macro and debug
|
|
|
|
* prints a message with ACPI prefix and object path. This function
|
|
|
|
* acquires the global namespace mutex to obtain an object path. In
|
|
|
|
* interrupt context, it shows the object path as <n/a>.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
__acpi_handle_debug(struct _ddebug *descriptor, acpi_handle handle,
|
|
|
|
const char *fmt, ...)
|
|
|
|
{
|
|
|
|
struct va_format vaf;
|
|
|
|
va_list args;
|
|
|
|
const char *path;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
vaf.fmt = fmt;
|
|
|
|
vaf.va = &args;
|
|
|
|
|
|
|
|
path = acpi_handle_path(handle);
|
|
|
|
__dynamic_pr_debug(descriptor, "ACPI: %s: %pV", path ? path : "<n/a>", &vaf);
|
|
|
|
|
|
|
|
va_end(args);
|
|
|
|
kfree(path);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(__acpi_handle_debug);
|
|
|
|
#endif
|
|
|
|
|
2021-03-05 18:41:44 +00:00
|
|
|
/**
|
|
|
|
* acpi_evaluation_failure_warn - Log evaluation failure warning.
|
|
|
|
* @handle: Parent object handle.
|
|
|
|
* @name: Name of the object whose evaluation has failed.
|
|
|
|
* @status: Status value returned by the failing object evaluation.
|
|
|
|
*/
|
|
|
|
void acpi_evaluation_failure_warn(acpi_handle handle, const char *name,
|
|
|
|
acpi_status status)
|
|
|
|
{
|
|
|
|
acpi_handle_warn(handle, "%s evaluation failed: %s\n", name,
|
|
|
|
acpi_format_exception(status));
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(acpi_evaluation_failure_warn);
|
|
|
|
|
2013-06-28 16:24:38 +00:00
|
|
|
/**
|
|
|
|
* acpi_has_method: Check whether @handle has a method named @name
|
|
|
|
* @handle: ACPI device handle
|
|
|
|
* @name: name of object or method
|
|
|
|
*
|
|
|
|
* Check whether @handle has a method named @name.
|
|
|
|
*/
|
|
|
|
bool acpi_has_method(acpi_handle handle, char *name)
|
|
|
|
{
|
|
|
|
acpi_handle tmp;
|
|
|
|
|
|
|
|
return ACPI_SUCCESS(acpi_get_handle(handle, name, &tmp));
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(acpi_has_method);
|
2013-06-28 16:24:39 +00:00
|
|
|
|
|
|
|
acpi_status acpi_execute_simple_method(acpi_handle handle, char *method,
|
|
|
|
u64 arg)
|
|
|
|
{
|
|
|
|
union acpi_object obj = { .type = ACPI_TYPE_INTEGER };
|
|
|
|
struct acpi_object_list arg_list = { .count = 1, .pointer = &obj, };
|
|
|
|
|
|
|
|
obj.integer.value = arg;
|
|
|
|
|
|
|
|
return acpi_evaluate_object(handle, method, &arg_list, NULL);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(acpi_execute_simple_method);
|
2013-06-28 16:24:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* acpi_evaluate_ej0: Evaluate _EJ0 method for hotplug operations
|
|
|
|
* @handle: ACPI device handle
|
|
|
|
*
|
|
|
|
* Evaluate device's _EJ0 method for hotplug operations.
|
|
|
|
*/
|
|
|
|
acpi_status acpi_evaluate_ej0(acpi_handle handle)
|
|
|
|
{
|
|
|
|
acpi_status status;
|
|
|
|
|
|
|
|
status = acpi_execute_simple_method(handle, "_EJ0", 1);
|
|
|
|
if (status == AE_NOT_FOUND)
|
|
|
|
acpi_handle_warn(handle, "No _EJ0 support for device\n");
|
|
|
|
else if (ACPI_FAILURE(status))
|
|
|
|
acpi_handle_warn(handle, "Eject failed (0x%x)\n", status);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* acpi_evaluate_lck: Evaluate _LCK method to lock/unlock device
|
|
|
|
* @handle: ACPI device handle
|
|
|
|
* @lock: lock device if non-zero, otherwise unlock device
|
|
|
|
*
|
|
|
|
* Evaluate device's _LCK method if present to lock/unlock device
|
|
|
|
*/
|
|
|
|
acpi_status acpi_evaluate_lck(acpi_handle handle, int lock)
|
|
|
|
{
|
|
|
|
acpi_status status;
|
|
|
|
|
|
|
|
status = acpi_execute_simple_method(handle, "_LCK", !!lock);
|
|
|
|
if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
|
|
|
|
if (lock)
|
|
|
|
acpi_handle_warn(handle,
|
|
|
|
"Locking device failed (0x%x)\n", status);
|
|
|
|
else
|
|
|
|
acpi_handle_warn(handle,
|
|
|
|
"Unlocking device failed (0x%x)\n", status);
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
2013-12-19 12:38:10 +00:00
|
|
|
|
2020-05-07 10:49:16 +00:00
|
|
|
/**
|
|
|
|
* acpi_evaluate_reg: Evaluate _REG method to register OpRegion presence
|
|
|
|
* @handle: ACPI device handle
|
|
|
|
* @space_id: ACPI address space id to register OpRegion presence for
|
|
|
|
* @function: Parameter to pass to _REG one of ACPI_REG_CONNECT or
|
|
|
|
* ACPI_REG_DISCONNECT
|
|
|
|
*
|
|
|
|
* Evaluate device's _REG method to register OpRegion presence.
|
|
|
|
*/
|
|
|
|
acpi_status acpi_evaluate_reg(acpi_handle handle, u8 space_id, u32 function)
|
|
|
|
{
|
|
|
|
struct acpi_object_list arg_list;
|
|
|
|
union acpi_object params[2];
|
|
|
|
|
|
|
|
params[0].type = ACPI_TYPE_INTEGER;
|
|
|
|
params[0].integer.value = space_id;
|
|
|
|
params[1].type = ACPI_TYPE_INTEGER;
|
|
|
|
params[1].integer.value = function;
|
|
|
|
arg_list.count = 2;
|
|
|
|
arg_list.pointer = params;
|
|
|
|
|
|
|
|
return acpi_evaluate_object(handle, "_REG", &arg_list, NULL);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(acpi_evaluate_reg);
|
|
|
|
|
2013-12-19 12:38:10 +00:00
|
|
|
/**
|
|
|
|
* acpi_evaluate_dsm - evaluate device's _DSM method
|
|
|
|
* @handle: ACPI device handle
|
2017-06-05 16:40:46 +00:00
|
|
|
* @guid: GUID of requested functions, should be 16 bytes
|
2013-12-19 12:38:10 +00:00
|
|
|
* @rev: revision number of requested function
|
|
|
|
* @func: requested function number
|
|
|
|
* @argv4: the function specific parameter
|
|
|
|
*
|
2017-06-05 16:40:46 +00:00
|
|
|
* Evaluate device's _DSM method with specified GUID, revision id and
|
2013-12-19 12:38:10 +00:00
|
|
|
* function number. Caller needs to free the returned object.
|
|
|
|
*
|
|
|
|
* Though ACPI defines the fourth parameter for _DSM should be a package,
|
|
|
|
* some old BIOSes do expect a buffer or an integer etc.
|
|
|
|
*/
|
|
|
|
union acpi_object *
|
2017-06-05 16:40:46 +00:00
|
|
|
acpi_evaluate_dsm(acpi_handle handle, const guid_t *guid, u64 rev, u64 func,
|
2013-12-19 12:38:10 +00:00
|
|
|
union acpi_object *argv4)
|
|
|
|
{
|
|
|
|
acpi_status ret;
|
|
|
|
struct acpi_buffer buf = {ACPI_ALLOCATE_BUFFER, NULL};
|
|
|
|
union acpi_object params[4];
|
|
|
|
struct acpi_object_list input = {
|
|
|
|
.count = 4,
|
|
|
|
.pointer = params,
|
|
|
|
};
|
|
|
|
|
|
|
|
params[0].type = ACPI_TYPE_BUFFER;
|
|
|
|
params[0].buffer.length = 16;
|
2017-06-05 16:40:46 +00:00
|
|
|
params[0].buffer.pointer = (u8 *)guid;
|
2013-12-19 12:38:10 +00:00
|
|
|
params[1].type = ACPI_TYPE_INTEGER;
|
|
|
|
params[1].integer.value = rev;
|
|
|
|
params[2].type = ACPI_TYPE_INTEGER;
|
|
|
|
params[2].integer.value = func;
|
|
|
|
if (argv4) {
|
|
|
|
params[3] = *argv4;
|
|
|
|
} else {
|
|
|
|
params[3].type = ACPI_TYPE_PACKAGE;
|
|
|
|
params[3].package.count = 0;
|
|
|
|
params[3].package.elements = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = acpi_evaluate_object(handle, "_DSM", &input, &buf);
|
|
|
|
if (ACPI_SUCCESS(ret))
|
|
|
|
return (union acpi_object *)buf.pointer;
|
|
|
|
|
|
|
|
if (ret != AE_NOT_FOUND)
|
|
|
|
acpi_handle_warn(handle,
|
|
|
|
"failed to evaluate _DSM (0x%x)\n", ret);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(acpi_evaluate_dsm);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* acpi_check_dsm - check if _DSM method supports requested functions.
|
|
|
|
* @handle: ACPI device handle
|
2017-06-05 16:40:46 +00:00
|
|
|
* @guid: GUID of requested functions, should be 16 bytes at least
|
2013-12-19 12:38:10 +00:00
|
|
|
* @rev: revision number of requested functions
|
|
|
|
* @funcs: bitmap of requested functions
|
|
|
|
*
|
|
|
|
* Evaluate device's _DSM method to check whether it supports requested
|
|
|
|
* functions. Currently only support 64 functions at maximum, should be
|
|
|
|
* enough for now.
|
|
|
|
*/
|
2017-06-05 16:40:46 +00:00
|
|
|
bool acpi_check_dsm(acpi_handle handle, const guid_t *guid, u64 rev, u64 funcs)
|
2013-12-19 12:38:10 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
u64 mask = 0;
|
|
|
|
union acpi_object *obj;
|
|
|
|
|
2016-07-19 19:32:39 +00:00
|
|
|
if (funcs == 0)
|
|
|
|
return false;
|
|
|
|
|
2017-06-05 16:40:46 +00:00
|
|
|
obj = acpi_evaluate_dsm(handle, guid, rev, 0, NULL);
|
2013-12-19 12:38:10 +00:00
|
|
|
if (!obj)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* For compatibility, old BIOSes may return an integer */
|
|
|
|
if (obj->type == ACPI_TYPE_INTEGER)
|
|
|
|
mask = obj->integer.value;
|
|
|
|
else if (obj->type == ACPI_TYPE_BUFFER)
|
|
|
|
for (i = 0; i < obj->buffer.length && i < 8; i++)
|
2016-03-18 15:08:01 +00:00
|
|
|
mask |= (((u64)obj->buffer.pointer[i]) << (i * 8));
|
2013-12-19 12:38:10 +00:00
|
|
|
ACPI_FREE(obj);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Bit 0 indicates whether there's support for any functions other than
|
2017-06-05 16:40:46 +00:00
|
|
|
* function 0 for the specified GUID and revision.
|
2013-12-19 12:38:10 +00:00
|
|
|
*/
|
|
|
|
if ((mask & 0x1) && (mask & funcs) == funcs)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(acpi_check_dsm);
|
2015-06-16 14:27:47 +00:00
|
|
|
|
2019-10-01 14:27:22 +00:00
|
|
|
/**
|
|
|
|
* acpi_dev_hid_uid_match - Match device by supplied HID and UID
|
|
|
|
* @adev: ACPI device to match.
|
|
|
|
* @hid2: Hardware ID of the device.
|
|
|
|
* @uid2: Unique ID of the device, pass NULL to not check _UID.
|
|
|
|
*
|
|
|
|
* Matches HID and UID in @adev with given @hid2 and @uid2.
|
|
|
|
* Returns true if matches.
|
|
|
|
*/
|
|
|
|
bool acpi_dev_hid_uid_match(struct acpi_device *adev,
|
|
|
|
const char *hid2, const char *uid2)
|
|
|
|
{
|
|
|
|
const char *hid1 = acpi_device_hid(adev);
|
|
|
|
const char *uid1 = acpi_device_uid(adev);
|
|
|
|
|
|
|
|
if (strcmp(hid1, hid2))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!uid2)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return uid1 && !strcmp(uid1, uid2);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(acpi_dev_hid_uid_match);
|
|
|
|
|
2015-11-25 20:19:55 +00:00
|
|
|
/**
|
2016-03-24 12:15:20 +00:00
|
|
|
* acpi_dev_found - Detect presence of a given ACPI device in the namespace.
|
2015-11-25 20:19:55 +00:00
|
|
|
* @hid: Hardware ID of the device.
|
|
|
|
*
|
|
|
|
* Return %true if the device was present at the moment of invocation.
|
|
|
|
* Note that if the device is pluggable, it may since have disappeared.
|
|
|
|
*
|
|
|
|
* For this function to work, acpi_bus_scan() must have been executed
|
|
|
|
* which happens in the subsys_initcall() subsection. Hence, do not
|
|
|
|
* call from a subsys_initcall() or earlier (use acpi_get_devices()
|
|
|
|
* instead). Calling from module_init() is fine (which is synonymous
|
|
|
|
* with device_initcall()).
|
|
|
|
*/
|
2016-03-24 12:15:20 +00:00
|
|
|
bool acpi_dev_found(const char *hid)
|
2015-11-25 20:19:55 +00:00
|
|
|
{
|
|
|
|
struct acpi_device_bus_id *acpi_device_bus_id;
|
|
|
|
bool found = false;
|
|
|
|
|
|
|
|
mutex_lock(&acpi_device_lock);
|
|
|
|
list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node)
|
|
|
|
if (!strcmp(acpi_device_bus_id->bus_id, hid)) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
mutex_unlock(&acpi_device_lock);
|
|
|
|
|
|
|
|
return found;
|
|
|
|
}
|
2016-03-24 12:15:20 +00:00
|
|
|
EXPORT_SYMBOL(acpi_dev_found);
|
2015-11-25 20:19:55 +00:00
|
|
|
|
2018-01-05 16:09:33 +00:00
|
|
|
struct acpi_dev_match_info {
|
2017-04-19 12:02:08 +00:00
|
|
|
struct acpi_device_id hid[2];
|
|
|
|
const char *uid;
|
|
|
|
s64 hrv;
|
|
|
|
};
|
|
|
|
|
2019-06-14 17:53:59 +00:00
|
|
|
static int acpi_dev_match_cb(struct device *dev, const void *data)
|
2017-04-19 12:02:08 +00:00
|
|
|
{
|
|
|
|
struct acpi_device *adev = to_acpi_device(dev);
|
2019-06-14 17:53:59 +00:00
|
|
|
const struct acpi_dev_match_info *match = data;
|
2017-04-19 12:02:08 +00:00
|
|
|
unsigned long long hrv;
|
|
|
|
acpi_status status;
|
|
|
|
|
|
|
|
if (acpi_match_device_ids(adev, match->hid))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (match->uid && (!adev->pnp.unique_id ||
|
|
|
|
strcmp(adev->pnp.unique_id, match->uid)))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (match->hrv == -1)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
status = acpi_evaluate_integer(adev->handle, "_HRV", NULL, &hrv);
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return hrv == match->hrv;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* acpi_dev_present - Detect that a given ACPI device is present
|
|
|
|
* @hid: Hardware ID of the device.
|
|
|
|
* @uid: Unique ID of the device, pass NULL to not check _UID
|
|
|
|
* @hrv: Hardware Revision of the device, pass -1 to not check _HRV
|
|
|
|
*
|
|
|
|
* Return %true if a matching device was present at the moment of invocation.
|
|
|
|
* Note that if the device is pluggable, it may since have disappeared.
|
|
|
|
*
|
|
|
|
* Note that unlike acpi_dev_found() this function checks the status
|
2021-04-12 23:20:52 +00:00
|
|
|
* of the device. So for devices which are present in the DSDT, but
|
2017-04-19 12:02:08 +00:00
|
|
|
* which are disabled (their _STA callback returns 0) this function
|
|
|
|
* will return false.
|
|
|
|
*
|
|
|
|
* For this function to work, acpi_bus_scan() must have been executed
|
|
|
|
* which happens in the subsys_initcall() subsection. Hence, do not
|
|
|
|
* call from a subsys_initcall() or earlier (use acpi_get_devices()
|
|
|
|
* instead). Calling from module_init() is fine (which is synonymous
|
|
|
|
* with device_initcall()).
|
|
|
|
*/
|
|
|
|
bool acpi_dev_present(const char *hid, const char *uid, s64 hrv)
|
|
|
|
{
|
2018-01-05 16:09:33 +00:00
|
|
|
struct acpi_dev_match_info match = {};
|
2017-04-19 12:02:08 +00:00
|
|
|
struct device *dev;
|
|
|
|
|
|
|
|
strlcpy(match.hid[0].id, hid, sizeof(match.hid[0].id));
|
|
|
|
match.uid = uid;
|
|
|
|
match.hrv = hrv;
|
|
|
|
|
2018-01-05 16:09:33 +00:00
|
|
|
dev = bus_find_device(&acpi_bus_type, NULL, &match, acpi_dev_match_cb);
|
2019-03-18 18:47:09 +00:00
|
|
|
put_device(dev);
|
2017-04-19 12:02:08 +00:00
|
|
|
return !!dev;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(acpi_dev_present);
|
|
|
|
|
2018-01-05 16:09:33 +00:00
|
|
|
/**
|
2021-01-07 13:28:36 +00:00
|
|
|
* acpi_dev_get_next_match_dev - Return the next match of ACPI device
|
2021-04-12 23:20:52 +00:00
|
|
|
* @adev: Pointer to the previous ACPI device matching this @hid, @uid and @hrv
|
2018-01-05 16:09:33 +00:00
|
|
|
* @hid: Hardware ID of the device.
|
|
|
|
* @uid: Unique ID of the device, pass NULL to not check _UID
|
|
|
|
* @hrv: Hardware Revision of the device, pass -1 to not check _HRV
|
|
|
|
*
|
2021-01-07 13:28:36 +00:00
|
|
|
* Return the next match of ACPI device if another matching device was present
|
2018-01-05 16:09:33 +00:00
|
|
|
* at the moment of invocation, or NULL otherwise.
|
|
|
|
*
|
2021-04-12 23:20:51 +00:00
|
|
|
* The caller is responsible for invoking acpi_dev_put() on the returned device.
|
2021-07-12 18:21:21 +00:00
|
|
|
* On the other hand the function invokes acpi_dev_put() on the given @adev
|
|
|
|
* assuming that its reference counter had been increased beforehand.
|
2019-03-18 20:00:54 +00:00
|
|
|
*
|
2018-01-05 16:09:33 +00:00
|
|
|
* See additional information in acpi_dev_present() as well.
|
|
|
|
*/
|
2019-03-18 20:00:54 +00:00
|
|
|
struct acpi_device *
|
2021-01-07 13:28:36 +00:00
|
|
|
acpi_dev_get_next_match_dev(struct acpi_device *adev, const char *hid, const char *uid, s64 hrv)
|
2019-03-18 20:00:54 +00:00
|
|
|
{
|
2021-01-07 13:28:36 +00:00
|
|
|
struct device *start = adev ? &adev->dev : NULL;
|
2019-03-18 20:00:54 +00:00
|
|
|
struct acpi_dev_match_info match = {};
|
|
|
|
struct device *dev;
|
|
|
|
|
|
|
|
strlcpy(match.hid[0].id, hid, sizeof(match.hid[0].id));
|
|
|
|
match.uid = uid;
|
|
|
|
match.hrv = hrv;
|
|
|
|
|
2021-01-07 13:28:36 +00:00
|
|
|
dev = bus_find_device(&acpi_bus_type, start, &match, acpi_dev_match_cb);
|
2021-07-12 18:21:21 +00:00
|
|
|
acpi_dev_put(adev);
|
2019-06-14 17:53:58 +00:00
|
|
|
return dev ? to_acpi_device(dev) : NULL;
|
2019-03-18 20:00:54 +00:00
|
|
|
}
|
2021-01-07 13:28:36 +00:00
|
|
|
EXPORT_SYMBOL(acpi_dev_get_next_match_dev);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* acpi_dev_get_first_match_dev - Return the first match of ACPI device
|
|
|
|
* @hid: Hardware ID of the device.
|
|
|
|
* @uid: Unique ID of the device, pass NULL to not check _UID
|
|
|
|
* @hrv: Hardware Revision of the device, pass -1 to not check _HRV
|
|
|
|
*
|
|
|
|
* Return the first match of ACPI device if a matching device was present
|
|
|
|
* at the moment of invocation, or NULL otherwise.
|
|
|
|
*
|
2021-04-12 23:20:51 +00:00
|
|
|
* The caller is responsible for invoking acpi_dev_put() on the returned device.
|
2021-01-07 13:28:36 +00:00
|
|
|
*
|
|
|
|
* See additional information in acpi_dev_present() as well.
|
|
|
|
*/
|
|
|
|
struct acpi_device *
|
|
|
|
acpi_dev_get_first_match_dev(const char *hid, const char *uid, s64 hrv)
|
|
|
|
{
|
|
|
|
return acpi_dev_get_next_match_dev(NULL, hid, uid, hrv);
|
|
|
|
}
|
2019-03-18 20:00:54 +00:00
|
|
|
EXPORT_SYMBOL(acpi_dev_get_first_match_dev);
|
|
|
|
|
2021-04-07 17:58:20 +00:00
|
|
|
/**
|
|
|
|
* acpi_reduced_hardware - Return if this is an ACPI-reduced-hw machine
|
|
|
|
*
|
|
|
|
* Return true when running on an ACPI-reduced-hw machine, false otherwise.
|
|
|
|
*/
|
|
|
|
bool acpi_reduced_hardware(void)
|
|
|
|
{
|
|
|
|
return acpi_gbl_reduced_hardware;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(acpi_reduced_hardware);
|
|
|
|
|
2015-06-16 14:27:47 +00:00
|
|
|
/*
|
|
|
|
* acpi_backlight= handling, this is done here rather then in video_detect.c
|
|
|
|
* because __setup cannot be used in modules.
|
|
|
|
*/
|
|
|
|
char acpi_video_backlight_string[16];
|
|
|
|
EXPORT_SYMBOL(acpi_video_backlight_string);
|
|
|
|
|
|
|
|
static int __init acpi_backlight(char *str)
|
|
|
|
{
|
|
|
|
strlcpy(acpi_video_backlight_string, str,
|
|
|
|
sizeof(acpi_video_backlight_string));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
__setup("acpi_backlight=", acpi_backlight);
|
2017-08-23 22:54:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* acpi_match_platform_list - Check if the system matches with a given list
|
|
|
|
* @plat: pointer to acpi_platform_list table terminated by a NULL entry
|
|
|
|
*
|
|
|
|
* Return the matched index if the system is found in the platform list.
|
|
|
|
* Otherwise, return a negative error code.
|
|
|
|
*/
|
|
|
|
int acpi_match_platform_list(const struct acpi_platform_list *plat)
|
|
|
|
{
|
|
|
|
struct acpi_table_header hdr;
|
|
|
|
int idx = 0;
|
|
|
|
|
|
|
|
if (acpi_disabled)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
for (; plat->oem_id[0]; plat++, idx++) {
|
|
|
|
if (ACPI_FAILURE(acpi_get_table_header(plat->table, 0, &hdr)))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (strncmp(plat->oem_id, hdr.oem_id, ACPI_OEM_ID_SIZE))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (strncmp(plat->oem_table_id, hdr.oem_table_id, ACPI_OEM_TABLE_ID_SIZE))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if ((plat->pred == all_versions) ||
|
|
|
|
(plat->pred == less_than_or_equal && hdr.oem_revision <= plat->oem_revision) ||
|
|
|
|
(plat->pred == greater_than_or_equal && hdr.oem_revision >= plat->oem_revision) ||
|
|
|
|
(plat->pred == equal && hdr.oem_revision == plat->oem_revision))
|
|
|
|
return idx;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(acpi_match_platform_list);
|