2018-03-15 07:13:07 +08:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
|
2005-04-17 06:20:36 +08:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Name: acresrc.h - Resource Manager function prototypes
|
|
|
|
*
|
2019-01-15 01:55:25 +08:00
|
|
|
* Copyright (C) 2000 - 2019, Intel Corp.
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
2018-03-15 07:13:07 +08:00
|
|
|
*****************************************************************************/
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#ifndef __ACRESRC_H__
|
|
|
|
#define __ACRESRC_H__
|
|
|
|
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
/* Need the AML resource descriptor structs */
|
|
|
|
|
|
|
|
#include "amlresrc.h"
|
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/*
|
|
|
|
* If possible, pack the following structures to byte alignment, since we
|
2006-07-08 08:44:38 +08:00
|
|
|
* don't care about performance for debug output. Two cases where we cannot
|
|
|
|
* pack the structures:
|
|
|
|
*
|
|
|
|
* 1) Hardware does not support misaligned memory transfers
|
|
|
|
* 2) Compiler does not support pointers within packed structures
|
2005-10-21 12:00:00 +08:00
|
|
|
*/
|
2006-07-08 08:44:38 +08:00
|
|
|
#if (!defined(ACPI_MISALIGNMENT_NOT_SUPPORTED) && !defined(ACPI_PACKED_POINTERS_NOT_SUPPORTED))
|
2005-10-21 12:00:00 +08:00
|
|
|
#pragma pack(1)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Individual entry for the resource conversion tables
|
|
|
|
*/
|
|
|
|
typedef const struct acpi_rsconvert_info {
|
|
|
|
u8 opcode;
|
|
|
|
u8 resource_offset;
|
|
|
|
u8 aml_offset;
|
|
|
|
u8 value;
|
|
|
|
|
|
|
|
} acpi_rsconvert_info;
|
|
|
|
|
|
|
|
/* Resource conversion opcodes */
|
|
|
|
|
2011-11-16 14:38:13 +08:00
|
|
|
typedef enum {
|
|
|
|
ACPI_RSC_INITGET = 0,
|
|
|
|
ACPI_RSC_INITSET,
|
|
|
|
ACPI_RSC_FLAGINIT,
|
|
|
|
ACPI_RSC_1BITFLAG,
|
|
|
|
ACPI_RSC_2BITFLAG,
|
|
|
|
ACPI_RSC_3BITFLAG,
|
|
|
|
ACPI_RSC_ADDRESS,
|
|
|
|
ACPI_RSC_BITMASK,
|
|
|
|
ACPI_RSC_BITMASK16,
|
|
|
|
ACPI_RSC_COUNT,
|
|
|
|
ACPI_RSC_COUNT16,
|
|
|
|
ACPI_RSC_COUNT_GPIO_PIN,
|
|
|
|
ACPI_RSC_COUNT_GPIO_RES,
|
|
|
|
ACPI_RSC_COUNT_GPIO_VEN,
|
|
|
|
ACPI_RSC_COUNT_SERIAL_RES,
|
|
|
|
ACPI_RSC_COUNT_SERIAL_VEN,
|
|
|
|
ACPI_RSC_DATA8,
|
|
|
|
ACPI_RSC_EXIT_EQ,
|
|
|
|
ACPI_RSC_EXIT_LE,
|
|
|
|
ACPI_RSC_EXIT_NE,
|
|
|
|
ACPI_RSC_LENGTH,
|
|
|
|
ACPI_RSC_MOVE_GPIO_PIN,
|
|
|
|
ACPI_RSC_MOVE_GPIO_RES,
|
|
|
|
ACPI_RSC_MOVE_SERIAL_RES,
|
|
|
|
ACPI_RSC_MOVE_SERIAL_VEN,
|
|
|
|
ACPI_RSC_MOVE8,
|
|
|
|
ACPI_RSC_MOVE16,
|
|
|
|
ACPI_RSC_MOVE32,
|
|
|
|
ACPI_RSC_MOVE64,
|
|
|
|
ACPI_RSC_SET8,
|
|
|
|
ACPI_RSC_SOURCE,
|
|
|
|
ACPI_RSC_SOURCEX
|
|
|
|
} ACPI_RSCONVERT_OPCODES;
|
2005-10-21 12:00:00 +08:00
|
|
|
|
|
|
|
/* Resource Conversion sub-opcodes */
|
|
|
|
|
|
|
|
#define ACPI_RSC_COMPARE_AML_LENGTH 0
|
|
|
|
#define ACPI_RSC_COMPARE_VALUE 1
|
|
|
|
|
|
|
|
#define ACPI_RSC_TABLE_SIZE(d) (sizeof (d) / sizeof (struct acpi_rsconvert_info))
|
|
|
|
|
|
|
|
#define ACPI_RS_OFFSET(f) (u8) ACPI_OFFSET (struct acpi_resource,f)
|
|
|
|
#define AML_OFFSET(f) (u8) ACPI_OFFSET (union aml_resource,f)
|
|
|
|
|
2011-11-16 14:38:13 +08:00
|
|
|
/*
|
|
|
|
* Individual entry for the resource dump tables
|
|
|
|
*/
|
2005-10-21 12:00:00 +08:00
|
|
|
typedef const struct acpi_rsdump_info {
|
|
|
|
u8 opcode;
|
|
|
|
u8 offset;
|
2016-03-24 09:40:40 +08:00
|
|
|
const char *name;
|
2005-11-02 13:00:00 +08:00
|
|
|
const char **pointer;
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
} acpi_rsdump_info;
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Values for the Opcode field above */
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
|
2011-11-16 14:38:13 +08:00
|
|
|
typedef enum {
|
|
|
|
ACPI_RSD_TITLE = 0,
|
|
|
|
ACPI_RSD_1BITFLAG,
|
|
|
|
ACPI_RSD_2BITFLAG,
|
|
|
|
ACPI_RSD_3BITFLAG,
|
|
|
|
ACPI_RSD_ADDRESS,
|
|
|
|
ACPI_RSD_DWORDLIST,
|
|
|
|
ACPI_RSD_LITERAL,
|
|
|
|
ACPI_RSD_LONGLIST,
|
|
|
|
ACPI_RSD_SHORTLIST,
|
|
|
|
ACPI_RSD_SHORTLISTX,
|
|
|
|
ACPI_RSD_SOURCE,
|
|
|
|
ACPI_RSD_STRING,
|
|
|
|
ACPI_RSD_UINT8,
|
|
|
|
ACPI_RSD_UINT16,
|
|
|
|
ACPI_RSD_UINT32,
|
|
|
|
ACPI_RSD_UINT64,
|
2017-06-05 16:39:25 +08:00
|
|
|
ACPI_RSD_WORDLIST,
|
|
|
|
ACPI_RSD_LABEL,
|
ACPICA: ACPI 6.2: Add support for PinGroupFunction() resource
ACPICA commit bd9a745749eac7137cd23085e6bdeb322de14ea2
PinGroupFunction() is a new resource introduced with ACPI 6.2. It is
used with PinGroup() to configure specific mode for a set of pins
exposed by a GPIO controller.
The format of the resource is:
PinGroupFunction (Shared/Exclusive, FunctionNumber, ResourceSource,
ResourceSourceIndex, ResourceSourceLabel,
ResourceUsage, DescriptorName, VendorData)
The resource_source and ResourceSourceLabel fields are used to specify
the PinGroup() resource referenced by PinGroupFunction().
Device (GPIO)
{
Name (_CRS, ResourceTemplate () {
PinGroup ("group1") {2, 3}
PinGroup ("group2") {4, 5}
...
})
}
Device (I2C)
{
Name (_CRS, ResourceTemplate () {
PinGroupFunction (Exclusive, 6, "^GPIO", 0, "mygroup2")
})
}
In the above example the PinGroupFunction() references the second
PinGroup() resource (using label "mygroup2" and configures pins 4 and 5
into mode 6.
Link: https://github.com/acpica/acpica/commit/bd9a7457
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2017-06-05 16:39:31 +08:00
|
|
|
ACPI_RSD_SOURCE_LABEL,
|
2017-06-05 16:39:25 +08:00
|
|
|
|
2011-11-16 14:38:13 +08:00
|
|
|
} ACPI_RSDUMP_OPCODES;
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* restore default alignment */
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
#pragma pack()
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/* Resource tables indexed by internal resource type */
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
extern const u8 acpi_gbl_aml_resource_sizes[];
|
2011-11-16 14:38:13 +08:00
|
|
|
extern const u8 acpi_gbl_aml_resource_serial_bus_sizes[];
|
2005-10-21 12:00:00 +08:00
|
|
|
extern struct acpi_rsconvert_info *acpi_gbl_set_resource_dispatch[];
|
|
|
|
|
|
|
|
/* Resource tables indexed by raw AML resource descriptor type */
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
|
2005-11-18 02:07:00 +08:00
|
|
|
extern const u8 acpi_gbl_resource_struct_sizes[];
|
2011-11-16 14:38:13 +08:00
|
|
|
extern const u8 acpi_gbl_resource_struct_serial_bus_sizes[];
|
2005-11-02 13:00:00 +08:00
|
|
|
extern struct acpi_rsconvert_info *acpi_gbl_get_resource_dispatch[];
|
|
|
|
|
2011-11-16 14:38:13 +08:00
|
|
|
extern struct acpi_rsconvert_info
|
|
|
|
*acpi_gbl_convert_resource_serial_bus_dispatch[];
|
|
|
|
|
2005-11-18 02:07:00 +08:00
|
|
|
struct acpi_vendor_walk_info {
|
|
|
|
struct acpi_vendor_uuid *uuid;
|
|
|
|
struct acpi_buffer *buffer;
|
|
|
|
acpi_status status;
|
|
|
|
};
|
2005-10-21 12:00:00 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* rscreate
|
|
|
|
*/
|
|
|
|
acpi_status
|
|
|
|
acpi_rs_create_resource_list(union acpi_operand_object *aml_buffer,
|
|
|
|
struct acpi_buffer *output_buffer);
|
|
|
|
|
|
|
|
acpi_status
|
2013-11-21 12:17:34 +08:00
|
|
|
acpi_rs_create_aml_resources(struct acpi_buffer *resource_list,
|
2005-10-21 12:00:00 +08:00
|
|
|
struct acpi_buffer *output_buffer);
|
|
|
|
|
|
|
|
acpi_status
|
|
|
|
acpi_rs_create_pci_routing_table(union acpi_operand_object *package_object,
|
|
|
|
struct acpi_buffer *output_buffer);
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
2005-10-21 12:00:00 +08:00
|
|
|
* rsutils
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
2006-05-27 04:36:00 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
acpi_status
|
2006-05-27 04:36:00 +08:00
|
|
|
acpi_rs_get_prt_method_data(struct acpi_namespace_node *node,
|
|
|
|
struct acpi_buffer *ret_buffer);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
acpi_status
|
2006-05-27 04:36:00 +08:00
|
|
|
acpi_rs_get_crs_method_data(struct acpi_namespace_node *node,
|
|
|
|
struct acpi_buffer *ret_buffer);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
acpi_status
|
2006-05-27 04:36:00 +08:00
|
|
|
acpi_rs_get_prs_method_data(struct acpi_namespace_node *node,
|
|
|
|
struct acpi_buffer *ret_buffer);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_rs_get_method_data(acpi_handle handle,
|
2016-03-24 09:40:40 +08:00
|
|
|
const char *path, struct acpi_buffer *ret_buffer);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
acpi_status
|
2006-05-27 04:36:00 +08:00
|
|
|
acpi_rs_set_srs_method_data(struct acpi_namespace_node *node,
|
|
|
|
struct acpi_buffer *ret_buffer);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2011-11-16 14:46:57 +08:00
|
|
|
acpi_status
|
|
|
|
acpi_rs_get_aei_method_data(struct acpi_namespace_node *node,
|
|
|
|
struct acpi_buffer *ret_buffer);
|
|
|
|
|
2005-04-19 10:49:35 +08:00
|
|
|
/*
|
|
|
|
* rscalc
|
|
|
|
*/
|
2005-04-17 06:20:36 +08:00
|
|
|
acpi_status
|
2016-05-05 12:57:53 +08:00
|
|
|
acpi_rs_get_list_length(u8 *aml_buffer,
|
|
|
|
u32 aml_buffer_length, acpi_size *size_needed);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
acpi_status
|
2013-11-21 12:17:34 +08:00
|
|
|
acpi_rs_get_aml_length(struct acpi_resource *resource_list,
|
2016-05-05 12:57:53 +08:00
|
|
|
acpi_size resource_list_size, acpi_size *size_needed);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 12:44:28 +08:00
|
|
|
acpi_rs_get_pci_routing_table_length(union acpi_operand_object *package_object,
|
2016-05-05 12:57:53 +08:00
|
|
|
acpi_size *buffer_size_needed);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
acpi_status
|
2006-03-18 05:44:00 +08:00
|
|
|
acpi_rs_convert_aml_to_resources(u8 * aml,
|
|
|
|
u32 length,
|
|
|
|
u32 offset, u8 resource_index, void **context);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
acpi_status
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
acpi_rs_convert_resources_to_aml(struct acpi_resource *resource,
|
|
|
|
acpi_size aml_size_needed, u8 * output_buffer);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
/*
|
|
|
|
* rsaddr
|
|
|
|
*/
|
2005-10-21 12:00:00 +08:00
|
|
|
void
|
|
|
|
acpi_rs_set_address_common(union aml_resource *aml,
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
struct acpi_resource *resource);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
u8
|
|
|
|
acpi_rs_get_address_common(struct acpi_resource *resource,
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
union aml_resource *aml);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
/*
|
|
|
|
* rsmisc
|
|
|
|
*/
|
2005-04-17 06:20:36 +08:00
|
|
|
acpi_status
|
2005-10-21 12:00:00 +08:00
|
|
|
acpi_rs_convert_aml_to_resource(struct acpi_resource *resource,
|
|
|
|
union aml_resource *aml,
|
|
|
|
struct acpi_rsconvert_info *info);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
acpi_status
|
2005-10-21 12:00:00 +08:00
|
|
|
acpi_rs_convert_resource_to_aml(struct acpi_resource *resource,
|
|
|
|
union aml_resource *aml,
|
|
|
|
struct acpi_rsconvert_info *info);
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* rsutils
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
acpi_rs_move_data(void *destination,
|
|
|
|
void *source, u16 item_count, u8 move_type);
|
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
u8 acpi_rs_decode_bitmask(u16 mask, u8 * list);
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
u16 acpi_rs_encode_bitmask(u8 * list, u8 count);
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
acpi_rs_length
|
|
|
|
acpi_rs_get_resource_source(acpi_rs_length resource_length,
|
|
|
|
acpi_rs_length minimum_length,
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
struct acpi_resource_source *resource_source,
|
|
|
|
union aml_resource *aml, char *string_ptr);
|
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
acpi_rsdesc_size
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
acpi_rs_set_resource_source(union aml_resource *aml,
|
2005-10-21 12:00:00 +08:00
|
|
|
acpi_rs_length minimum_length,
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
struct acpi_resource_source *resource_source);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
void
|
|
|
|
acpi_rs_set_resource_header(u8 descriptor_type,
|
2005-10-21 12:00:00 +08:00
|
|
|
acpi_rsdesc_size total_length,
|
|
|
|
union aml_resource *aml);
|
|
|
|
|
|
|
|
void
|
|
|
|
acpi_rs_set_resource_length(acpi_rsdesc_size total_length,
|
|
|
|
union aml_resource *aml);
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
|
2005-09-17 04:51:15 +08:00
|
|
|
/*
|
2015-04-13 11:50:08 +08:00
|
|
|
* rsdump - Debugger support
|
2005-09-17 04:51:15 +08:00
|
|
|
*/
|
2015-04-13 11:50:08 +08:00
|
|
|
#ifdef ACPI_DEBUGGER
|
2005-10-21 12:00:00 +08:00
|
|
|
void acpi_rs_dump_resource_list(struct acpi_resource *resource);
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
|
2015-04-13 11:48:12 +08:00
|
|
|
void acpi_rs_dump_irq_list(u8 *route_table);
|
2015-04-13 11:49:47 +08:00
|
|
|
#endif
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/*
|
|
|
|
* Resource conversion tables
|
|
|
|
*/
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_dma[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_end_dpf[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_io[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_fixed_io[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_end_tag[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_memory24[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_generic_reg[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_memory32[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_fixed_memory32[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_address32[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_address16[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_ext_irq[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_address64[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_ext_address64[];
|
2011-11-16 14:38:13 +08:00
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_gpio[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_fixed_dma[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_i2c_serial_bus[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_spi_serial_bus[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_uart_serial_bus[];
|
2017-06-05 16:39:14 +08:00
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_pin_function[];
|
2017-06-05 16:39:19 +08:00
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_pin_config[];
|
2017-06-05 16:39:25 +08:00
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_pin_group[];
|
ACPICA: ACPI 6.2: Add support for PinGroupFunction() resource
ACPICA commit bd9a745749eac7137cd23085e6bdeb322de14ea2
PinGroupFunction() is a new resource introduced with ACPI 6.2. It is
used with PinGroup() to configure specific mode for a set of pins
exposed by a GPIO controller.
The format of the resource is:
PinGroupFunction (Shared/Exclusive, FunctionNumber, ResourceSource,
ResourceSourceIndex, ResourceSourceLabel,
ResourceUsage, DescriptorName, VendorData)
The resource_source and ResourceSourceLabel fields are used to specify
the PinGroup() resource referenced by PinGroupFunction().
Device (GPIO)
{
Name (_CRS, ResourceTemplate () {
PinGroup ("group1") {2, 3}
PinGroup ("group2") {4, 5}
...
})
}
Device (I2C)
{
Name (_CRS, ResourceTemplate () {
PinGroupFunction (Exclusive, 6, "^GPIO", 0, "mygroup2")
})
}
In the above example the PinGroupFunction() references the second
PinGroup() resource (using label "mygroup2" and configures pins 4 and 5
into mode 6.
Link: https://github.com/acpica/acpica/commit/bd9a7457
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2017-06-05 16:39:31 +08:00
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_pin_group_function[];
|
2017-06-05 16:39:37 +08:00
|
|
|
extern struct acpi_rsconvert_info acpi_rs_convert_pin_group_config[];
|
2005-10-21 12:00:00 +08:00
|
|
|
|
|
|
|
/* These resources require separate get/set tables */
|
|
|
|
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_get_irq[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_get_start_dpf[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_get_vendor_small[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_get_vendor_large[];
|
|
|
|
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_set_irq[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_set_start_dpf[];
|
|
|
|
extern struct acpi_rsconvert_info acpi_rs_set_vendor[];
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
#if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
|
|
|
|
/*
|
|
|
|
* rsinfo
|
|
|
|
*/
|
|
|
|
extern struct acpi_rsdump_info *acpi_gbl_dump_resource_dispatch[];
|
2011-11-16 14:38:13 +08:00
|
|
|
extern struct acpi_rsdump_info *acpi_gbl_dump_serial_bus_dispatch[];
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
|
2005-10-21 12:00:00 +08:00
|
|
|
/*
|
2013-01-11 20:08:51 +08:00
|
|
|
* rsdumpinfo
|
2005-10-21 12:00:00 +08:00
|
|
|
*/
|
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_irq[];
|
2013-01-11 20:08:51 +08:00
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_prt[];
|
2005-10-21 12:00:00 +08:00
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_dma[];
|
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_start_dpf[];
|
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_end_dpf[];
|
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_io[];
|
2013-01-11 20:08:51 +08:00
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_io_flags[];
|
2005-10-21 12:00:00 +08:00
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_fixed_io[];
|
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_vendor[];
|
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_end_tag[];
|
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_memory24[];
|
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_memory32[];
|
2013-01-11 20:08:51 +08:00
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_memory_flags[];
|
2005-10-21 12:00:00 +08:00
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_fixed_memory32[];
|
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_address16[];
|
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_address32[];
|
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_address64[];
|
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_ext_address64[];
|
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_ext_irq[];
|
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_generic_reg[];
|
2011-11-16 14:38:13 +08:00
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_gpio[];
|
2017-06-05 16:39:14 +08:00
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_pin_function[];
|
2011-11-16 14:38:13 +08:00
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_fixed_dma[];
|
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_common_serial_bus[];
|
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_i2c_serial_bus[];
|
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_spi_serial_bus[];
|
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_uart_serial_bus[];
|
2013-01-11 20:08:51 +08:00
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_general_flags[];
|
2017-06-05 16:39:19 +08:00
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_pin_config[];
|
2017-06-05 16:39:25 +08:00
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_pin_group[];
|
ACPICA: ACPI 6.2: Add support for PinGroupFunction() resource
ACPICA commit bd9a745749eac7137cd23085e6bdeb322de14ea2
PinGroupFunction() is a new resource introduced with ACPI 6.2. It is
used with PinGroup() to configure specific mode for a set of pins
exposed by a GPIO controller.
The format of the resource is:
PinGroupFunction (Shared/Exclusive, FunctionNumber, ResourceSource,
ResourceSourceIndex, ResourceSourceLabel,
ResourceUsage, DescriptorName, VendorData)
The resource_source and ResourceSourceLabel fields are used to specify
the PinGroup() resource referenced by PinGroupFunction().
Device (GPIO)
{
Name (_CRS, ResourceTemplate () {
PinGroup ("group1") {2, 3}
PinGroup ("group2") {4, 5}
...
})
}
Device (I2C)
{
Name (_CRS, ResourceTemplate () {
PinGroupFunction (Exclusive, 6, "^GPIO", 0, "mygroup2")
})
}
In the above example the PinGroupFunction() references the second
PinGroup() resource (using label "mygroup2" and configures pins 4 and 5
into mode 6.
Link: https://github.com/acpica/acpica/commit/bd9a7457
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2017-06-05 16:39:31 +08:00
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_pin_group_function[];
|
2017-06-05 16:39:37 +08:00
|
|
|
extern struct acpi_rsdump_info acpi_rs_dump_pin_group_config[];
|
[ACPI] ACPICA 20050930
Completed a major overhaul of the Resource Manager code -
specifically, optimizations in the area of the AML/internal
resource conversion code. The code has been optimized to
simplify and eliminate duplicated code, CPU stack use has
been decreased by optimizing function parameters and local
variables, and naming conventions across the manager have
been standardized for clarity and ease of maintenance (this
includes function, parameter, variable, and struct/typedef
names.)
All Resource Manager dispatch and information tables have
been moved to a single location for clarity and ease of
maintenance. One new file was created, named "rsinfo.c".
The ACPI return macros (return_ACPI_STATUS, etc.) have
been modified to guarantee that the argument is
not evaluated twice, making them less prone to macro
side-effects. However, since there exists the possibility
of additional stack use if a particular compiler cannot
optimize them (such as in the debug generation case),
the original macros are optionally available. Note that
some invocations of the return_VALUE macro may now cause
size mismatch warnings; the return_UINT8 and return_UINT32
macros are provided to eliminate these. (From Randy Dunlap)
Implemented a new mechanism to enable debug tracing for
individual control methods. A new external interface,
acpi_debug_trace(), is provided to enable this mechanism. The
intent is to allow the host OS to easily enable and disable
tracing for problematic control methods. This interface
can be easily exposed to a user or debugger interface if
desired. See the file psxface.c for details.
acpi_ut_callocate() will now return a valid pointer if a
length of zero is specified - a length of one is used
and a warning is issued. This matches the behavior of
acpi_ut_allocate().
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2005-10-01 07:03:00 +08:00
|
|
|
#endif
|
2005-09-17 04:51:15 +08:00
|
|
|
|
2005-08-05 12:44:28 +08:00
|
|
|
#endif /* __ACRESRC_H__ */
|