2018-03-15 02:13:07 +03:00
|
|
|
// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
|
2005-04-17 02:20:36 +04:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2015-04-13 06:50:08 +03:00
|
|
|
* Module Name: rsdump - AML debugger support for resource structures.
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#include <acpi/acpi.h>
|
2009-01-09 08:30:03 +03:00
|
|
|
#include "accommon.h"
|
|
|
|
#include "acresrc.h"
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
#define _COMPONENT ACPI_RESOURCES
|
2005-08-05 08:44:28 +04:00
|
|
|
ACPI_MODULE_NAME("rsdump")
|
2014-02-08 05:42:46 +04:00
|
|
|
|
2015-04-13 06:50:08 +03:00
|
|
|
/*
|
|
|
|
* All functions in this module are used by the AML Debugger only
|
|
|
|
*/
|
2005-04-19 06:49:35 +04:00
|
|
|
/* Local prototypes */
|
2016-03-24 04:40:40 +03:00
|
|
|
static void acpi_rs_out_string(const char *title, const char *value);
|
2005-09-17 00:51:15 +04:00
|
|
|
|
2016-03-24 04:40:40 +03:00
|
|
|
static void acpi_rs_out_integer8(const char *title, u8 value);
|
2005-09-17 00:51:15 +04:00
|
|
|
|
2016-03-24 04:40:40 +03:00
|
|
|
static void acpi_rs_out_integer16(const char *title, u16 value);
|
2005-09-17 00:51:15 +04:00
|
|
|
|
2016-03-24 04:40:40 +03:00
|
|
|
static void acpi_rs_out_integer32(const char *title, u32 value);
|
2005-09-17 00:51:15 +04:00
|
|
|
|
2016-03-24 04:40:40 +03:00
|
|
|
static void acpi_rs_out_integer64(const char *title, u64 value);
|
2005-09-17 00:51:15 +04:00
|
|
|
|
2016-03-24 04:40:40 +03:00
|
|
|
static void acpi_rs_out_title(const char *title);
|
2005-09-17 00:51:15 +04:00
|
|
|
|
2011-11-16 10:38:13 +04:00
|
|
|
static void acpi_rs_dump_byte_list(u16 length, u8 *data);
|
2005-09-17 00:51:15 +04:00
|
|
|
|
2011-11-16 10:38:13 +04:00
|
|
|
static void acpi_rs_dump_word_list(u16 length, u16 *data);
|
2005-09-17 00:51:15 +04:00
|
|
|
|
2011-11-16 10:38:13 +04:00
|
|
|
static void acpi_rs_dump_dword_list(u8 length, u32 *data);
|
|
|
|
|
|
|
|
static void acpi_rs_dump_short_byte_list(u8 length, u8 *data);
|
2005-09-17 00:51:15 +04:00
|
|
|
|
|
|
|
static void
|
|
|
|
acpi_rs_dump_resource_source(struct acpi_resource_source *resource_source);
|
|
|
|
|
2017-06-05 11:39:25 +03:00
|
|
|
static void
|
|
|
|
acpi_rs_dump_resource_label(char *title,
|
|
|
|
struct acpi_resource_label *resource_label);
|
|
|
|
|
2005-09-17 00:51:15 +04:00
|
|
|
static void acpi_rs_dump_address_common(union acpi_resource_data *resource);
|
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
static void
|
|
|
|
acpi_rs_dump_descriptor(void *resource, struct acpi_rsdump_info *table);
|
|
|
|
|
2015-04-13 06:50:08 +03:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_resource_list
|
|
|
|
*
|
|
|
|
* PARAMETERS: resource_list - Pointer to a resource descriptor list
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Dispatches the structure to the correct dump routine.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void acpi_rs_dump_resource_list(struct acpi_resource *resource_list)
|
|
|
|
{
|
|
|
|
u32 count = 0;
|
|
|
|
u32 type;
|
|
|
|
|
|
|
|
ACPI_FUNCTION_ENTRY();
|
|
|
|
|
|
|
|
/* Check if debug output enabled */
|
|
|
|
|
|
|
|
if (!ACPI_IS_DEBUG_ENABLED(ACPI_LV_RESOURCES, _COMPONENT)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Walk list and dump all resource descriptors (END_TAG terminates) */
|
|
|
|
|
|
|
|
do {
|
|
|
|
acpi_os_printf("\n[%02X] ", count);
|
|
|
|
count++;
|
|
|
|
|
|
|
|
/* Validate Type before dispatch */
|
|
|
|
|
|
|
|
type = resource_list->type;
|
|
|
|
if (type > ACPI_RESOURCE_TYPE_MAX) {
|
|
|
|
acpi_os_printf
|
|
|
|
("Invalid descriptor type (%X) in resource list\n",
|
|
|
|
resource_list->type);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sanity check the length. It must not be zero, or we loop forever */
|
|
|
|
|
|
|
|
if (!resource_list->length) {
|
|
|
|
acpi_os_printf
|
|
|
|
("Invalid zero length descriptor in resource list\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Dump the resource descriptor */
|
|
|
|
|
|
|
|
if (type == ACPI_RESOURCE_TYPE_SERIAL_BUS) {
|
|
|
|
acpi_rs_dump_descriptor(&resource_list->data,
|
|
|
|
acpi_gbl_dump_serial_bus_dispatch
|
|
|
|
[resource_list->data.
|
|
|
|
common_serial_bus.type]);
|
|
|
|
} else {
|
|
|
|
acpi_rs_dump_descriptor(&resource_list->data,
|
|
|
|
acpi_gbl_dump_resource_dispatch
|
|
|
|
[type]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Point to the next resource structure */
|
|
|
|
|
|
|
|
resource_list = ACPI_NEXT_RESOURCE(resource_list);
|
|
|
|
|
|
|
|
/* Exit when END_TAG descriptor is reached */
|
|
|
|
|
|
|
|
} while (type != ACPI_RESOURCE_TYPE_END_TAG);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_irq_list
|
|
|
|
*
|
|
|
|
* PARAMETERS: route_table - Pointer to the routing table to dump.
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Print IRQ routing table
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void acpi_rs_dump_irq_list(u8 *route_table)
|
|
|
|
{
|
|
|
|
struct acpi_pci_routing_table *prt_element;
|
|
|
|
u8 count;
|
|
|
|
|
|
|
|
ACPI_FUNCTION_ENTRY();
|
|
|
|
|
|
|
|
/* Check if debug output enabled */
|
|
|
|
|
|
|
|
if (!ACPI_IS_DEBUG_ENABLED(ACPI_LV_RESOURCES, _COMPONENT)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
prt_element = ACPI_CAST_PTR(struct acpi_pci_routing_table, route_table);
|
|
|
|
|
|
|
|
/* Dump all table elements, Exit on zero length element */
|
|
|
|
|
|
|
|
for (count = 0; prt_element->length; count++) {
|
|
|
|
acpi_os_printf("\n[%02X] PCI IRQ Routing Table Package\n",
|
|
|
|
count);
|
|
|
|
acpi_rs_dump_descriptor(prt_element, acpi_rs_dump_prt);
|
|
|
|
|
|
|
|
prt_element = ACPI_ADD_PTR(struct acpi_pci_routing_table,
|
|
|
|
prt_element, prt_element->length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-17 00:51:15 +04:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 08:00:00 +04:00
|
|
|
* FUNCTION: acpi_rs_dump_descriptor
|
2005-09-17 00:51:15 +04:00
|
|
|
*
|
2013-01-11 16:08:51 +04:00
|
|
|
* PARAMETERS: resource - Buffer containing the resource
|
|
|
|
* table - Table entry to decode the resource
|
2005-09-17 00:51:15 +04:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2013-01-11 16:08:51 +04:00
|
|
|
* DESCRIPTION: Dump a resource descriptor based on a dump table entry.
|
2005-09-17 00:51:15 +04:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
static void
|
|
|
|
acpi_rs_dump_descriptor(void *resource, struct acpi_rsdump_info *table)
|
2005-09-17 00:51:15 +04:00
|
|
|
{
|
2005-11-02 08:00:00 +03:00
|
|
|
u8 *target = NULL;
|
|
|
|
u8 *previous_target;
|
2016-03-24 04:40:40 +03:00
|
|
|
const char *name;
|
2005-10-21 08:00:00 +04:00
|
|
|
u8 count;
|
|
|
|
|
|
|
|
/* First table entry must contain the table length (# of table entries) */
|
|
|
|
|
|
|
|
count = table->offset;
|
|
|
|
|
|
|
|
while (count) {
|
|
|
|
previous_target = target;
|
2005-11-17 21:07:00 +03:00
|
|
|
target = ACPI_ADD_PTR(u8, resource, table->offset);
|
2005-10-21 08:00:00 +04:00
|
|
|
name = table->name;
|
|
|
|
|
|
|
|
switch (table->opcode) {
|
|
|
|
case ACPI_RSD_TITLE:
|
|
|
|
/*
|
|
|
|
* Optional resource title
|
|
|
|
*/
|
|
|
|
if (table->name) {
|
|
|
|
acpi_os_printf("%s Resource\n", name);
|
|
|
|
}
|
|
|
|
break;
|
2005-09-17 00:51:15 +04:00
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
/* Strings */
|
2005-09-17 00:51:15 +04:00
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
case ACPI_RSD_LITERAL:
|
2013-06-08 04:58:14 +04:00
|
|
|
|
2005-11-02 08:00:00 +03:00
|
|
|
acpi_rs_out_string(name,
|
|
|
|
ACPI_CAST_PTR(char, table->pointer));
|
2005-10-21 08:00:00 +04:00
|
|
|
break;
|
2005-09-17 00:51:15 +04:00
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
case ACPI_RSD_STRING:
|
2013-06-08 04:58:14 +04:00
|
|
|
|
2005-11-02 08:00:00 +03:00
|
|
|
acpi_rs_out_string(name, ACPI_CAST_PTR(char, target));
|
2005-10-21 08:00:00 +04:00
|
|
|
break;
|
2005-09-17 00:51:15 +04:00
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
/* Data items, 8/16/32/64 bit */
|
2005-09-17 00:51:15 +04:00
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
case ACPI_RSD_UINT8:
|
2013-06-08 04:58:14 +04:00
|
|
|
|
2011-11-16 10:38:13 +04:00
|
|
|
if (table->pointer) {
|
2016-03-24 04:40:40 +03:00
|
|
|
acpi_rs_out_string(name,
|
|
|
|
table->pointer[*target]);
|
2011-11-16 10:38:13 +04:00
|
|
|
} else {
|
|
|
|
acpi_rs_out_integer8(name, ACPI_GET8(target));
|
|
|
|
}
|
2005-10-21 08:00:00 +04:00
|
|
|
break;
|
2005-09-17 00:51:15 +04:00
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
case ACPI_RSD_UINT16:
|
2013-06-08 04:58:14 +04:00
|
|
|
|
2005-11-17 21:07:00 +03:00
|
|
|
acpi_rs_out_integer16(name, ACPI_GET16(target));
|
2005-10-21 08:00:00 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_RSD_UINT32:
|
2013-06-08 04:58:14 +04:00
|
|
|
|
2005-11-17 21:07:00 +03:00
|
|
|
acpi_rs_out_integer32(name, ACPI_GET32(target));
|
2005-10-21 08:00:00 +04:00
|
|
|
break;
|
[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 03:03:00 +04:00
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
case ACPI_RSD_UINT64:
|
2013-06-08 04:58:14 +04:00
|
|
|
|
2005-11-17 21:07:00 +03:00
|
|
|
acpi_rs_out_integer64(name, ACPI_GET64(target));
|
2005-10-21 08:00:00 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* Flags: 1-bit and 2-bit flags supported */
|
|
|
|
|
|
|
|
case ACPI_RSD_1BITFLAG:
|
2013-06-08 04:58:14 +04:00
|
|
|
|
2016-03-24 04:40:40 +03:00
|
|
|
acpi_rs_out_string(name,
|
|
|
|
table->pointer[*target & 0x01]);
|
2005-10-21 08:00:00 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_RSD_2BITFLAG:
|
2013-06-08 04:58:14 +04:00
|
|
|
|
2016-03-24 04:40:40 +03:00
|
|
|
acpi_rs_out_string(name,
|
|
|
|
table->pointer[*target & 0x03]);
|
2005-10-21 08:00:00 +04:00
|
|
|
break;
|
|
|
|
|
2011-11-16 10:38:13 +04:00
|
|
|
case ACPI_RSD_3BITFLAG:
|
2013-06-08 04:58:14 +04:00
|
|
|
|
2016-03-24 04:40:40 +03:00
|
|
|
acpi_rs_out_string(name,
|
|
|
|
table->pointer[*target & 0x07]);
|
2011-11-16 10:38:13 +04:00
|
|
|
break;
|
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
case ACPI_RSD_SHORTLIST:
|
|
|
|
/*
|
|
|
|
* Short byte list (single line output) for DMA and IRQ resources
|
|
|
|
* Note: The list length is obtained from the previous table entry
|
|
|
|
*/
|
|
|
|
if (previous_target) {
|
|
|
|
acpi_rs_out_title(name);
|
2005-11-02 08:00:00 +03:00
|
|
|
acpi_rs_dump_short_byte_list(*previous_target,
|
|
|
|
target);
|
2005-10-21 08:00:00 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2011-11-16 10:38:13 +04:00
|
|
|
case ACPI_RSD_SHORTLISTX:
|
|
|
|
/*
|
|
|
|
* Short byte list (single line output) for GPIO vendor data
|
|
|
|
* Note: The list length is obtained from the previous table entry
|
|
|
|
*/
|
|
|
|
if (previous_target) {
|
|
|
|
acpi_rs_out_title(name);
|
|
|
|
acpi_rs_dump_short_byte_list(*previous_target,
|
|
|
|
*
|
|
|
|
(ACPI_CAST_INDIRECT_PTR
|
|
|
|
(u8, target)));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
case ACPI_RSD_LONGLIST:
|
|
|
|
/*
|
|
|
|
* Long byte list for Vendor resource data
|
|
|
|
* Note: The list length is obtained from the previous table entry
|
|
|
|
*/
|
|
|
|
if (previous_target) {
|
2005-11-17 21:07:00 +03:00
|
|
|
acpi_rs_dump_byte_list(ACPI_GET16
|
|
|
|
(previous_target),
|
2005-11-02 08:00:00 +03:00
|
|
|
target);
|
2005-10-21 08:00:00 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_RSD_DWORDLIST:
|
|
|
|
/*
|
|
|
|
* Dword list for Extended Interrupt resources
|
|
|
|
* Note: The list length is obtained from the previous table entry
|
|
|
|
*/
|
|
|
|
if (previous_target) {
|
2005-11-02 08:00:00 +03:00
|
|
|
acpi_rs_dump_dword_list(*previous_target,
|
|
|
|
ACPI_CAST_PTR(u32,
|
|
|
|
target));
|
2005-10-21 08:00:00 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2011-11-16 10:38:13 +04:00
|
|
|
case ACPI_RSD_WORDLIST:
|
|
|
|
/*
|
|
|
|
* Word list for GPIO Pin Table
|
|
|
|
* Note: The list length is obtained from the previous table entry
|
|
|
|
*/
|
|
|
|
if (previous_target) {
|
|
|
|
acpi_rs_dump_word_list(*previous_target,
|
|
|
|
*(ACPI_CAST_INDIRECT_PTR
|
|
|
|
(u16, target)));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
case ACPI_RSD_ADDRESS:
|
|
|
|
/*
|
|
|
|
* Common flags for all Address resources
|
|
|
|
*/
|
2005-11-02 08:00:00 +03:00
|
|
|
acpi_rs_dump_address_common(ACPI_CAST_PTR
|
|
|
|
(union acpi_resource_data,
|
|
|
|
target));
|
2005-10-21 08:00:00 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_RSD_SOURCE:
|
|
|
|
/*
|
|
|
|
* Optional resource_source for Address resources
|
|
|
|
*/
|
2012-12-19 09:37:15 +04:00
|
|
|
acpi_rs_dump_resource_source(ACPI_CAST_PTR
|
|
|
|
(struct
|
2007-05-10 07:34:35 +04:00
|
|
|
acpi_resource_source,
|
|
|
|
target));
|
2005-10-21 08:00:00 +04:00
|
|
|
break;
|
|
|
|
|
2017-06-05 11:39:25 +03:00
|
|
|
case ACPI_RSD_LABEL:
|
|
|
|
/*
|
|
|
|
* resource_label
|
|
|
|
*/
|
|
|
|
acpi_rs_dump_resource_label("Resource Label",
|
|
|
|
ACPI_CAST_PTR(struct
|
|
|
|
acpi_resource_label,
|
|
|
|
target));
|
|
|
|
break;
|
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 11:39:31 +03:00
|
|
|
|
|
|
|
case ACPI_RSD_SOURCE_LABEL:
|
|
|
|
/*
|
|
|
|
* resource_source_label
|
|
|
|
*/
|
|
|
|
acpi_rs_dump_resource_label("Resource Source Label",
|
|
|
|
ACPI_CAST_PTR(struct
|
|
|
|
acpi_resource_label,
|
|
|
|
target));
|
|
|
|
break;
|
2017-06-05 11:39:25 +03:00
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
default:
|
2013-06-08 04:58:14 +04:00
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
acpi_os_printf("**** Invalid table opcode [%X] ****\n",
|
|
|
|
table->opcode);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
table++;
|
|
|
|
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 03:03:00 +04:00
|
|
|
}
|
|
|
|
|
2005-09-17 00:51:15 +04:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_resource_source
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
2005-09-17 00:51:15 +04:00
|
|
|
* PARAMETERS: resource_source - Pointer to a Resource Source struct
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-09-17 00:51:15 +04:00
|
|
|
* DESCRIPTION: Common routine for dumping the optional resource_source and the
|
|
|
|
* corresponding resource_source_index.
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-09-17 00:51:15 +04:00
|
|
|
static void
|
|
|
|
acpi_rs_dump_resource_source(struct acpi_resource_source *resource_source)
|
2005-04-17 02:20:36 +04: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 03:03:00 +04:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-09-17 00:51:15 +04:00
|
|
|
if (resource_source->index == 0xFF) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
acpi_rs_out_integer8("Resource Source Index", resource_source->index);
|
2005-09-17 00:51:15 +04:00
|
|
|
|
|
|
|
acpi_rs_out_string("Resource Source",
|
|
|
|
resource_source->string_ptr ?
|
|
|
|
resource_source->string_ptr : "[Not Specified]");
|
|
|
|
}
|
|
|
|
|
2017-06-05 11:39:25 +03:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_resource_label
|
|
|
|
*
|
|
|
|
* PARAMETERS: title - Title of the dumped resource field
|
|
|
|
* resource_label - Pointer to a Resource Label struct
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Common routine for dumping the resource_label
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
static void
|
|
|
|
acpi_rs_dump_resource_label(char *title,
|
|
|
|
struct acpi_resource_label *resource_label)
|
|
|
|
{
|
|
|
|
ACPI_FUNCTION_ENTRY();
|
|
|
|
|
|
|
|
acpi_rs_out_string(title,
|
|
|
|
resource_label->string_ptr ?
|
|
|
|
resource_label->string_ptr : "[Not Specified]");
|
|
|
|
}
|
|
|
|
|
2005-09-17 00:51:15 +04:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_address_common
|
|
|
|
*
|
2012-07-12 05:40:10 +04:00
|
|
|
* PARAMETERS: resource - Pointer to an internal resource descriptor
|
2005-09-17 00:51:15 +04:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Dump the fields that are common to all Address resource
|
|
|
|
* descriptors
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
static void acpi_rs_dump_address_common(union acpi_resource_data *resource)
|
|
|
|
{
|
2005-08-05 08:44:28 +04:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-09-17 00:51:15 +04:00
|
|
|
/* Decode the type-specific flags */
|
|
|
|
|
|
|
|
switch (resource->address.resource_type) {
|
|
|
|
case ACPI_MEMORY_RANGE:
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
acpi_rs_dump_descriptor(resource, acpi_rs_dump_memory_flags);
|
2005-09-17 00:51:15 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_IO_RANGE:
|
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
acpi_rs_dump_descriptor(resource, acpi_rs_dump_io_flags);
|
2005-09-17 00:51:15 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_BUS_NUMBER_RANGE:
|
|
|
|
|
|
|
|
acpi_rs_out_string("Resource Type", "Bus Number Range");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
acpi_rs_out_integer8("Resource Type",
|
|
|
|
(u8) resource->address.resource_type);
|
|
|
|
break;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2005-09-17 00:51:15 +04:00
|
|
|
/* Decode the general flags */
|
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
acpi_rs_dump_descriptor(resource, acpi_rs_dump_general_flags);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 08:00:00 +04:00
|
|
|
* FUNCTION: acpi_rs_out*
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
2012-07-12 05:40:10 +04:00
|
|
|
* PARAMETERS: title - Name of the resource field
|
|
|
|
* value - Value of the resource field
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-10-21 08:00:00 +04:00
|
|
|
* DESCRIPTION: Miscellaneous helper functions to consistently format the
|
|
|
|
* output of the resource dump routines
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2016-03-24 04:40:40 +03:00
|
|
|
static void acpi_rs_out_string(const char *title, const char *value)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2015-12-29 08:54:36 +03:00
|
|
|
|
2006-01-28 00:43:00 +03:00
|
|
|
acpi_os_printf("%27s : %s", title, value);
|
|
|
|
if (!*value) {
|
|
|
|
acpi_os_printf("[NULL NAMESTRING]");
|
|
|
|
}
|
|
|
|
acpi_os_printf("\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2016-03-24 04:40:40 +03:00
|
|
|
static void acpi_rs_out_integer8(const char *title, u8 value)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2005-10-21 08:00:00 +04:00
|
|
|
acpi_os_printf("%27s : %2.2X\n", title, value);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2016-03-24 04:40:40 +03:00
|
|
|
static void acpi_rs_out_integer16(const char *title, u16 value)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2015-12-29 08:54:36 +03:00
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
acpi_os_printf("%27s : %4.4X\n", title, value);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2016-03-24 04:40:40 +03:00
|
|
|
static void acpi_rs_out_integer32(const char *title, u32 value)
|
[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 03:03:00 +04:00
|
|
|
{
|
2015-12-29 08:54:36 +03:00
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
acpi_os_printf("%27s : %8.8X\n", title, value);
|
[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 03:03:00 +04:00
|
|
|
}
|
|
|
|
|
2016-03-24 04:40:40 +03:00
|
|
|
static void acpi_rs_out_integer64(const char *title, u64 value)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2015-12-29 08:54:36 +03:00
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
acpi_os_printf("%27s : %8.8X%8.8X\n", title, ACPI_FORMAT_UINT64(value));
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2016-03-24 04:40:40 +03:00
|
|
|
static void acpi_rs_out_title(const char *title)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2015-12-29 08:54:36 +03:00
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
acpi_os_printf("%27s : ", title);
|
2005-09-17 00:51:15 +04:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-09-17 00:51:15 +04:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 08:00:00 +04:00
|
|
|
* FUNCTION: acpi_rs_dump*List
|
2005-09-17 00:51:15 +04:00
|
|
|
*
|
2012-07-12 05:40:10 +04:00
|
|
|
* PARAMETERS: length - Number of elements in the list
|
|
|
|
* data - Start of the list
|
2005-09-17 00:51:15 +04:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-10-21 08:00:00 +04:00
|
|
|
* DESCRIPTION: Miscellaneous functions to dump lists of raw data
|
2005-09-17 00:51:15 +04:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
static void acpi_rs_dump_byte_list(u16 length, u8 * data)
|
2005-09-17 00:51:15 +04:00
|
|
|
{
|
2018-05-09 00:06:10 +03:00
|
|
|
u16 i;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
for (i = 0; i < length; i++) {
|
|
|
|
acpi_os_printf("%25s%2.2X : %2.2X\n", "Byte", i, data[i]);
|
|
|
|
}
|
2005-09-17 00:51:15 +04:00
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
static void acpi_rs_dump_short_byte_list(u8 length, u8 * data)
|
2005-09-17 00:51:15 +04:00
|
|
|
{
|
2005-10-21 08:00:00 +04:00
|
|
|
u8 i;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
for (i = 0; i < length; i++) {
|
|
|
|
acpi_os_printf("%X ", data[i]);
|
|
|
|
}
|
2015-12-29 08:54:36 +03:00
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
acpi_os_printf("\n");
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
static void acpi_rs_dump_dword_list(u8 length, u32 * data)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2005-10-21 08:00:00 +04:00
|
|
|
u8 i;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-10-21 08:00:00 +04:00
|
|
|
for (i = 0; i < length; i++) {
|
|
|
|
acpi_os_printf("%25s%2.2X : %8.8X\n", "Dword", i, data[i]);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-16 10:38:13 +04:00
|
|
|
static void acpi_rs_dump_word_list(u16 length, u16 *data)
|
|
|
|
{
|
|
|
|
u16 i;
|
|
|
|
|
|
|
|
for (i = 0; i < length; i++) {
|
|
|
|
acpi_os_printf("%25s%2.2X : %4.4X\n", "Word", i, data[i]);
|
|
|
|
}
|
|
|
|
}
|