2005-04-16 22:20:36 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: rsdump - Functions to display the resource structures.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2000 - 2005, R. Byron Moore
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions, and the following disclaimer,
|
|
|
|
* without modification.
|
|
|
|
* 2. Redistributions in binary form must reproduce at minimum a disclaimer
|
|
|
|
* substantially similar to the "NO WARRANTY" disclaimer below
|
|
|
|
* ("Disclaimer") and any redistribution must be conditioned upon
|
|
|
|
* including a substantially similar Disclaimer requirement for further
|
|
|
|
* binary redistribution.
|
|
|
|
* 3. Neither the names of the above-listed copyright holders nor the names
|
|
|
|
* of any contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* Alternatively, this software may be distributed under the terms of the
|
|
|
|
* GNU General Public License ("GPL") version 2 as published by the Free
|
|
|
|
* Software Foundation.
|
|
|
|
*
|
|
|
|
* NO WARRANTY
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGES.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <acpi/acpi.h>
|
|
|
|
#include <acpi/acresrc.h>
|
|
|
|
|
|
|
|
#define _COMPONENT ACPI_RESOURCES
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_MODULE_NAME("rsdump")
|
2005-05-13 04:00:00 +00:00
|
|
|
|
|
|
|
#if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
|
2005-04-19 02:49:35 +00:00
|
|
|
/* Local prototypes */
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_irq(union acpi_resource_data *resource);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_address16(union acpi_resource_data *resource);
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_address32(union acpi_resource_data *resource);
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_address64(union acpi_resource_data *resource);
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_dma(union acpi_resource_data *resource);
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_io(union acpi_resource_data *resource);
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_extended_irq(union acpi_resource_data *resource);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_fixed_io(union acpi_resource_data *resource);
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_fixed_memory32(union acpi_resource_data *resource);
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_memory24(union acpi_resource_data *resource);
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_memory32(union acpi_resource_data *resource);
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_start_depend_fns(union acpi_resource_data *resource);
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_vendor_specific(union acpi_resource_data *resource);
|
|
|
|
|
|
|
|
static void acpi_rs_dump_generic_reg(union acpi_resource_data *resource);
|
|
|
|
|
|
|
|
static void acpi_rs_dump_end_depend_fns(union acpi_resource_data *resource);
|
|
|
|
|
|
|
|
static void acpi_rs_dump_end_tag(union acpi_resource_data *resource);
|
|
|
|
|
|
|
|
static void acpi_rs_out_string(char *title, char *value);
|
|
|
|
|
|
|
|
static void acpi_rs_out_integer8(char *title, u8 value);
|
|
|
|
|
|
|
|
static void acpi_rs_out_integer16(char *title, u16 value);
|
|
|
|
|
|
|
|
static void acpi_rs_out_integer32(char *title, u32 value);
|
|
|
|
|
|
|
|
static void acpi_rs_out_integer64(char *title, u64 value);
|
|
|
|
|
|
|
|
static void acpi_rs_out_title(char *title);
|
|
|
|
|
|
|
|
static void acpi_rs_dump_byte_list(u32 length, u8 * data);
|
|
|
|
|
|
|
|
static void acpi_rs_dump_dword_list(u32 length, u32 * data);
|
|
|
|
|
|
|
|
static void acpi_rs_dump_short_byte_list(u32 length, u32 * data);
|
|
|
|
|
|
|
|
static void
|
|
|
|
acpi_rs_dump_resource_source(struct acpi_resource_source *resource_source);
|
|
|
|
|
|
|
|
static void acpi_rs_dump_address_common(union acpi_resource_data *resource);
|
|
|
|
|
|
|
|
/* Dispatch table for resource dump functions */
|
|
|
|
|
|
|
|
typedef
|
|
|
|
void (*ACPI_DUMP_RESOURCE) (union acpi_resource_data * data);
|
|
|
|
|
|
|
|
static ACPI_DUMP_RESOURCE acpi_gbl_dump_resource_dispatch[] = {
|
|
|
|
acpi_rs_dump_irq, /* ACPI_RSTYPE_IRQ */
|
|
|
|
acpi_rs_dump_dma, /* ACPI_RSTYPE_DMA */
|
|
|
|
acpi_rs_dump_start_depend_fns, /* ACPI_RSTYPE_START_DPF */
|
|
|
|
acpi_rs_dump_end_depend_fns, /* ACPI_RSTYPE_END_DPF */
|
|
|
|
acpi_rs_dump_io, /* ACPI_RSTYPE_IO */
|
|
|
|
acpi_rs_dump_fixed_io, /* ACPI_RSTYPE_FIXED_IO */
|
|
|
|
acpi_rs_dump_vendor_specific, /* ACPI_RSTYPE_VENDOR */
|
|
|
|
acpi_rs_dump_end_tag, /* ACPI_RSTYPE_END_TAG */
|
|
|
|
acpi_rs_dump_memory24, /* ACPI_RSTYPE_MEM24 */
|
|
|
|
acpi_rs_dump_memory32, /* ACPI_RSTYPE_MEM32 */
|
|
|
|
acpi_rs_dump_fixed_memory32, /* ACPI_RSTYPE_FIXED_MEM32 */
|
|
|
|
acpi_rs_dump_address16, /* ACPI_RSTYPE_ADDRESS16 */
|
|
|
|
acpi_rs_dump_address32, /* ACPI_RSTYPE_ADDRESS32 */
|
|
|
|
acpi_rs_dump_address64, /* ACPI_RSTYPE_ADDRESS64 */
|
|
|
|
acpi_rs_dump_extended_irq, /* ACPI_RSTYPE_EXT_IRQ */
|
|
|
|
acpi_rs_dump_generic_reg /* ACPI_RSTYPE_GENERIC_REG */
|
|
|
|
};
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* FUNCTION: acpi_rs_out*
|
|
|
|
*
|
|
|
|
* PARAMETERS: Title - Name of the resource field
|
|
|
|
* Value - Value of the resource field
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Miscellaneous helper functions to consistently format the
|
|
|
|
* output of the resource dump routines
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
static void acpi_rs_out_string(char *title, char *value)
|
|
|
|
{
|
|
|
|
acpi_os_printf("%30s : %s\n", title, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void acpi_rs_out_integer8(char *title, u8 value)
|
|
|
|
{
|
|
|
|
acpi_os_printf("%30s : %2.2X\n", title, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void acpi_rs_out_integer16(char *title, u16 value)
|
|
|
|
{
|
|
|
|
acpi_os_printf("%30s : %4.4X\n", title, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void acpi_rs_out_integer32(char *title, u32 value)
|
|
|
|
{
|
|
|
|
acpi_os_printf("%30s : %8.8X\n", title, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void acpi_rs_out_integer64(char *title, u64 value)
|
|
|
|
{
|
|
|
|
acpi_os_printf("%30s : %8.8X%8.8X\n", title, ACPI_FORMAT_UINT64(value));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void acpi_rs_out_title(char *title)
|
|
|
|
{
|
|
|
|
acpi_os_printf("%30s : ", title);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump*List
|
|
|
|
*
|
|
|
|
* PARAMETERS: Length - Number of elements in the list
|
|
|
|
* Data - Start of the list
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Miscellaneous functions to dump lists of raw data
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
static void acpi_rs_dump_byte_list(u32 length, u8 * data)
|
|
|
|
{
|
|
|
|
u32 i;
|
|
|
|
|
|
|
|
for (i = 0; i < length; i++) {
|
|
|
|
acpi_os_printf("%28s%2.2X : %2.2X\n", "Byte", i, data[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void acpi_rs_dump_dword_list(u32 length, u32 * data)
|
|
|
|
{
|
|
|
|
u32 i;
|
|
|
|
|
|
|
|
for (i = 0; i < length; i++) {
|
|
|
|
acpi_os_printf("%28s%2.2X : %8.8X\n", "Dword", i, data[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void acpi_rs_dump_short_byte_list(u32 length, u32 * data)
|
|
|
|
{
|
|
|
|
u32 i;
|
|
|
|
|
|
|
|
for (i = 0; i < length; i++) {
|
|
|
|
acpi_os_printf("%X ", data[i]);
|
|
|
|
}
|
|
|
|
acpi_os_printf("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_resource_source
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* PARAMETERS: resource_source - Pointer to a Resource Source struct
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* DESCRIPTION: Common routine for dumping the optional resource_source and the
|
|
|
|
* corresponding resource_source_index.
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void
|
|
|
|
acpi_rs_dump_resource_source(struct acpi_resource_source *resource_source)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
if (resource_source->index == 0xFF) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
acpi_rs_out_integer8("Resource Source Index",
|
|
|
|
(u8) resource_source->index);
|
|
|
|
|
|
|
|
acpi_rs_out_string("Resource Source",
|
|
|
|
resource_source->string_ptr ?
|
|
|
|
resource_source->string_ptr : "[Not Specified]");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_address_common
|
|
|
|
*
|
|
|
|
* PARAMETERS: Resource - Pointer to an internal resource descriptor
|
|
|
|
*
|
|
|
|
* 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 04:44:28 +00:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
/* Decode the type-specific flags */
|
|
|
|
|
|
|
|
switch (resource->address.resource_type) {
|
|
|
|
case ACPI_MEMORY_RANGE:
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_string("Resource Type", "Memory Range");
|
|
|
|
|
|
|
|
acpi_rs_out_title("Type-Specific Flags");
|
|
|
|
|
|
|
|
switch (resource->address.attribute.memory.cache_attribute) {
|
|
|
|
case ACPI_NON_CACHEABLE_MEMORY:
|
|
|
|
acpi_os_printf("Noncacheable memory\n");
|
|
|
|
break;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
case ACPI_CACHABLE_MEMORY:
|
|
|
|
acpi_os_printf("Cacheable memory\n");
|
|
|
|
break;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
case ACPI_WRITE_COMBINING_MEMORY:
|
|
|
|
acpi_os_printf("Write-combining memory\n");
|
|
|
|
break;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
case ACPI_PREFETCHABLE_MEMORY:
|
|
|
|
acpi_os_printf("Prefetchable memory\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
acpi_os_printf("Invalid cache attribute\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
acpi_rs_out_string("Read/Write Attribute",
|
|
|
|
ACPI_READ_WRITE_MEMORY ==
|
|
|
|
resource->address.attribute.memory.
|
|
|
|
read_write_attribute ? "Read/Write" :
|
|
|
|
"Read Only");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_IO_RANGE:
|
|
|
|
|
|
|
|
acpi_rs_out_string("Resource Type", "I/O Range");
|
|
|
|
|
|
|
|
acpi_rs_out_title("Type-Specific Flags");
|
|
|
|
|
|
|
|
switch (resource->address.attribute.io.range_attribute) {
|
|
|
|
case ACPI_NON_ISA_ONLY_RANGES:
|
|
|
|
acpi_os_printf("Non-ISA I/O Addresses\n");
|
|
|
|
break;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
case ACPI_ISA_ONLY_RANGES:
|
|
|
|
acpi_os_printf("ISA I/O Addresses\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_ENTIRE_RANGE:
|
|
|
|
acpi_os_printf("ISA and non-ISA I/O Addresses\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
acpi_os_printf("Invalid range attribute\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
acpi_rs_out_string("Translation Attribute",
|
|
|
|
ACPI_SPARSE_TRANSLATION ==
|
|
|
|
resource->address.attribute.io.
|
|
|
|
translation_attribute ? "Sparse Translation"
|
|
|
|
: "Dense Translation");
|
|
|
|
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-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
/* Decode the general flags */
|
|
|
|
|
|
|
|
acpi_rs_out_string("Resource",
|
|
|
|
ACPI_CONSUMER ==
|
|
|
|
resource->address.
|
|
|
|
producer_consumer ? "Consumer" : "Producer");
|
|
|
|
|
|
|
|
acpi_rs_out_string("Decode",
|
|
|
|
ACPI_SUB_DECODE == resource->address.decode ?
|
|
|
|
"Subtractive" : "Positive");
|
|
|
|
|
|
|
|
acpi_rs_out_string("Min Address",
|
|
|
|
ACPI_ADDRESS_FIXED ==
|
|
|
|
resource->address.
|
|
|
|
min_address_fixed ? "Fixed" : "Not Fixed");
|
|
|
|
|
|
|
|
acpi_rs_out_string("Max Address",
|
|
|
|
ACPI_ADDRESS_FIXED ==
|
|
|
|
resource->address.
|
|
|
|
max_address_fixed ? "Fixed" : "Not Fixed");
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* FUNCTION: acpi_rs_dump_resource_list
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* PARAMETERS: resource_list - Pointer to a resource descriptor list
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* DESCRIPTION: Dispatches the structure to the correct dump routine.
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
void acpi_rs_dump_resource_list(struct acpi_resource *resource_list)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-09-16 20:51:15 +00:00
|
|
|
u32 count = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
if (!(acpi_dbg_level & ACPI_LV_RESOURCES)
|
|
|
|
|| !(_COMPONENT & acpi_dbg_layer)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Dump all resource descriptors in the list */
|
|
|
|
|
|
|
|
while (resource_list) {
|
|
|
|
acpi_os_printf("\n[%02X] ", count);
|
|
|
|
|
|
|
|
/* Validate Type before dispatch */
|
|
|
|
|
|
|
|
if (resource_list->type > ACPI_RSTYPE_MAX) {
|
|
|
|
acpi_os_printf
|
|
|
|
("Invalid descriptor type (%X) in resource list\n",
|
|
|
|
resource_list->type);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Dump the resource descriptor */
|
|
|
|
|
|
|
|
acpi_gbl_dump_resource_dispatch[resource_list->
|
|
|
|
type] (&resource_list->data);
|
|
|
|
|
|
|
|
/* Exit on end tag */
|
|
|
|
|
|
|
|
if (resource_list->type == ACPI_RSTYPE_END_TAG) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the next resource structure */
|
|
|
|
|
|
|
|
resource_list =
|
|
|
|
ACPI_PTR_ADD(struct acpi_resource, resource_list,
|
|
|
|
resource_list->length);
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_irq
|
|
|
|
*
|
|
|
|
* PARAMETERS: Resource - Pointer to an internal resource descriptor
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Dump the field names and values of the resource descriptor
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
static void acpi_rs_dump_irq(union acpi_resource_data *resource)
|
|
|
|
{
|
|
|
|
ACPI_FUNCTION_ENTRY();
|
|
|
|
|
|
|
|
acpi_os_printf("IRQ Resource\n");
|
|
|
|
|
|
|
|
acpi_rs_out_string("Triggering",
|
|
|
|
ACPI_LEVEL_SENSITIVE ==
|
|
|
|
resource->irq.edge_level ? "Level" : "Edge");
|
|
|
|
|
|
|
|
acpi_rs_out_string("Active",
|
|
|
|
ACPI_ACTIVE_LOW ==
|
|
|
|
resource->irq.active_high_low ? "Low" : "High");
|
|
|
|
|
|
|
|
acpi_rs_out_string("Sharing",
|
|
|
|
ACPI_SHARED ==
|
|
|
|
resource->irq.
|
|
|
|
shared_exclusive ? "Shared" : "Exclusive");
|
|
|
|
|
|
|
|
acpi_rs_out_integer8("Interrupt Count",
|
|
|
|
(u8) resource->irq.number_of_interrupts);
|
|
|
|
|
|
|
|
acpi_rs_out_title("Interrupt List");
|
|
|
|
acpi_rs_dump_short_byte_list(resource->irq.number_of_interrupts,
|
|
|
|
resource->irq.interrupts);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_dma
|
|
|
|
*
|
|
|
|
* PARAMETERS: Resource - Pointer to an internal resource descriptor
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Dump the field names and values of the resource descriptor
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
static void acpi_rs_dump_dma(union acpi_resource_data *resource)
|
|
|
|
{
|
|
|
|
ACPI_FUNCTION_ENTRY();
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_os_printf("DMA Resource\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_title("DMA Type");
|
|
|
|
switch (resource->dma.type) {
|
2005-04-16 22:20:36 +00:00
|
|
|
case ACPI_COMPATIBILITY:
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("Compatibility mode\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_A:
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("Type A\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_B:
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("Type B\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TYPE_F:
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("Type F\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("**** Invalid DMA type\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_string("Bus Master",
|
|
|
|
ACPI_BUS_MASTER ==
|
|
|
|
resource->dma.bus_master ? "Yes" : "No");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_title("Transfer Type");
|
|
|
|
switch (resource->dma.transfer) {
|
2005-04-16 22:20:36 +00:00
|
|
|
case ACPI_TRANSFER_8:
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("8-bit transfers only\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TRANSFER_8_16:
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("8-bit and 16-bit transfers\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_TRANSFER_16:
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("16-bit transfers only\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("**** Invalid transfer preference\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer8("DMA Channel Count",
|
|
|
|
(u8) resource->dma.number_of_channels);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_title("Channel List");
|
|
|
|
acpi_rs_dump_short_byte_list(resource->dma.number_of_channels,
|
|
|
|
resource->dma.channels);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_start_depend_fns
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* PARAMETERS: Resource - Pointer to an internal resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* DESCRIPTION: Dump the field names and values of the resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_start_depend_fns(union acpi_resource_data *resource)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_os_printf("Start Dependent Functions Resource\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_title("Compatibility Priority");
|
|
|
|
switch (resource->start_dpf.compatibility_priority) {
|
2005-04-16 22:20:36 +00:00
|
|
|
case ACPI_GOOD_CONFIGURATION:
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("Good configuration\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_ACCEPTABLE_CONFIGURATION:
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("Acceptable configuration\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_SUB_OPTIMAL_CONFIGURATION:
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("Sub-optimal configuration\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("**** Invalid compatibility priority\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_title("Performance/Robustness");
|
|
|
|
switch (resource->start_dpf.performance_robustness) {
|
2005-04-16 22:20:36 +00:00
|
|
|
case ACPI_GOOD_CONFIGURATION:
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("Good configuration\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_ACCEPTABLE_CONFIGURATION:
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("Acceptable configuration\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_SUB_OPTIMAL_CONFIGURATION:
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("Sub-optimal configuration\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf
|
|
|
|
("**** Invalid performance robustness preference\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_io
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* PARAMETERS: Resource - Pointer to an internal resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* DESCRIPTION: Dump the field names and values of the resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_io(union acpi_resource_data *resource)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("I/O Resource\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_string("Decode",
|
|
|
|
ACPI_DECODE_16 ==
|
|
|
|
resource->io.io_decode ? "16-bit" : "10-bit");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer32("Range Minimum Base",
|
|
|
|
resource->io.min_base_address);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer32("Range Maximum Base",
|
|
|
|
resource->io.max_base_address);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer32("Alignment", resource->io.alignment);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer32("Range Length", resource->io.range_length);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_fixed_io
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* PARAMETERS: Resource - Pointer to an internal resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* DESCRIPTION: Dump the field names and values of the resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_fixed_io(union acpi_resource_data *resource)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("Fixed I/O Resource\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer32("Range Base Address",
|
|
|
|
resource->fixed_io.base_address);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer32("Range Length", resource->fixed_io.range_length);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_vendor_specific
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* PARAMETERS: Resource - Pointer to an internal resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* DESCRIPTION: Dump the field names and values of the resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_vendor_specific(union acpi_resource_data *resource)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_os_printf("Vendor Specific Resource\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer16("Length", (u16) resource->vendor_specific.length);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_dump_byte_list(resource->vendor_specific.length,
|
|
|
|
resource->vendor_specific.reserved);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_memory24
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* PARAMETERS: Resource - Pointer to an internal resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* DESCRIPTION: Dump the field names and values of the resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_memory24(union acpi_resource_data *resource)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_os_printf("24-Bit Memory Range Resource\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_string("Attribute",
|
|
|
|
ACPI_READ_WRITE_MEMORY ==
|
|
|
|
resource->memory24.read_write_attribute ?
|
|
|
|
"Read/Write" : "Read Only");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer16("Range Minimum Base",
|
|
|
|
(u16) resource->memory24.min_base_address);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer16("Range Maximum Base",
|
|
|
|
(u16) resource->memory24.max_base_address);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer16("Alignment", (u16) resource->memory24.alignment);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer16("Range Length",
|
|
|
|
(u16) resource->memory24.range_length);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_memory32
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* PARAMETERS: Resource - Pointer to an internal resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* DESCRIPTION: Dump the field names and values of the resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_memory32(union acpi_resource_data *resource)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_os_printf("32-Bit Memory Range Resource\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_string("Attribute",
|
|
|
|
ACPI_READ_WRITE_MEMORY ==
|
|
|
|
resource->memory32.read_write_attribute ?
|
|
|
|
"Read/Write" : "Read Only");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer32("Range Minimum Base",
|
|
|
|
resource->memory32.min_base_address);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer32("Range Maximum Base",
|
|
|
|
resource->memory32.max_base_address);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer32("Alignment", resource->memory32.alignment);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer32("Range Length", resource->memory32.range_length);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_fixed_memory32
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* PARAMETERS: Resource - Pointer to an internal resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* RETURN:
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* DESCRIPTION: Dump the field names and values of the resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_fixed_memory32(union acpi_resource_data *resource)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_os_printf("32-Bit Fixed Location Memory Range Resource\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_string("Attribute",
|
|
|
|
ACPI_READ_WRITE_MEMORY ==
|
|
|
|
resource->fixed_memory32.read_write_attribute ?
|
|
|
|
"Read/Write" : "Read Only");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer32("Range Base Address",
|
|
|
|
resource->fixed_memory32.range_base_address);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer32("Range Length",
|
|
|
|
resource->fixed_memory32.range_length);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_address16
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* PARAMETERS: Resource - Pointer to an internal resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* DESCRIPTION: Dump the field names and values of the resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_address16(union acpi_resource_data *resource)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_os_printf("16-Bit Address Space Resource\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_dump_address_common(resource);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer16("Granularity",
|
|
|
|
(u16) resource->address16.granularity);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer16("Address Range Min",
|
|
|
|
(u16) resource->address16.min_address_range);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer16("Address Range Max",
|
|
|
|
(u16) resource->address16.max_address_range);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer16("Address Translation Offset",
|
|
|
|
(u16) resource->address16.
|
|
|
|
address_translation_offset);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer16("Address Length",
|
|
|
|
(u16) resource->address16.address_length);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_dump_resource_source(&resource->address16.resource_source);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_address32
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* PARAMETERS: Resource - Pointer to an internal resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* DESCRIPTION: Dump the field names and values of the resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_address32(union acpi_resource_data *resource)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_os_printf("32-Bit Address Space Resource\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_dump_address_common(resource);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer32("Granularity", resource->address32.granularity);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer32("Address Range Min",
|
|
|
|
resource->address32.min_address_range);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer32("Address Range Max",
|
|
|
|
resource->address32.max_address_range);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer32("Address Translation Offset",
|
|
|
|
resource->address32.address_translation_offset);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer32("Address Length",
|
|
|
|
resource->address32.address_length);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_dump_resource_source(&resource->address32.resource_source);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_address64
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* PARAMETERS: Resource - Pointer to an internal resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* DESCRIPTION: Dump the field names and values of the resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_address64(union acpi_resource_data *resource)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_os_printf("64-Bit Address Space Resource\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_dump_address_common(resource);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer64("Granularity", resource->address64.granularity);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer64("Address Range Min",
|
|
|
|
resource->address64.min_address_range);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer64("Address Range Max",
|
|
|
|
resource->address64.max_address_range);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer64("Address Translation Offset",
|
|
|
|
resource->address64.address_translation_offset);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer64("Address Length",
|
|
|
|
resource->address64.address_length);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer64("Type Specific Attributes",
|
|
|
|
resource->address64.type_specific_attributes);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_dump_resource_source(&resource->address64.resource_source);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_extended_irq
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* PARAMETERS: Resource - Pointer to an internal resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* DESCRIPTION: Dump the field names and values of the resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_extended_irq(union acpi_resource_data *resource)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_os_printf("Extended IRQ Resource\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_string("Resource",
|
|
|
|
ACPI_CONSUMER ==
|
|
|
|
resource->extended_irq.
|
|
|
|
producer_consumer ? "Consumer" : "Producer");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_string("Triggering",
|
|
|
|
ACPI_LEVEL_SENSITIVE ==
|
|
|
|
resource->extended_irq.
|
|
|
|
edge_level ? "Level" : "Edge");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_string("Active",
|
|
|
|
ACPI_ACTIVE_LOW ==
|
|
|
|
resource->extended_irq.
|
|
|
|
active_high_low ? "Low" : "High");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_string("Sharing",
|
|
|
|
ACPI_SHARED ==
|
|
|
|
resource->extended_irq.
|
|
|
|
shared_exclusive ? "Shared" : "Exclusive");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_dump_resource_source(&resource->extended_irq.resource_source);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer8("Interrupts",
|
|
|
|
(u8) resource->extended_irq.number_of_interrupts);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_dump_dword_list(resource->extended_irq.number_of_interrupts,
|
|
|
|
resource->extended_irq.interrupts);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* FUNCTION: acpi_rs_dump_generic_reg
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* PARAMETERS: Resource - Pointer to an internal resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* DESCRIPTION: Dump the field names and values of the resource descriptor
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_generic_reg(union acpi_resource_data *resource)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("Generic Register Resource\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer8("Space ID", (u8) resource->generic_reg.space_id);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer8("Bit Width", (u8) resource->generic_reg.bit_width);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer8("Bit Offset",
|
|
|
|
(u8) resource->generic_reg.bit_offset);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer8("Address Size",
|
|
|
|
(u8) resource->generic_reg.address_size);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer64("Address", resource->generic_reg.address);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_end_depend_fns
|
|
|
|
*
|
|
|
|
* PARAMETERS: Resource - Pointer to an internal resource descriptor
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Print type, no data.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_end_depend_fns(union acpi_resource_data *resource)
|
|
|
|
{
|
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("end_dependent_functions Resource\n");
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_end_tag
|
|
|
|
*
|
|
|
|
* PARAMETERS: Resource - Pointer to an internal resource descriptor
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Print type, no data.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
static void acpi_rs_dump_end_tag(union acpi_resource_data *resource)
|
|
|
|
{
|
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_os_printf("end_tag Resource\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_irq_list
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* PARAMETERS: route_table - Pointer to the routing table to dump.
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-09-16 20:51:15 +00:00
|
|
|
* DESCRIPTION: Print IRQ routing table
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
void acpi_rs_dump_irq_list(u8 * route_table)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
u8 *buffer = route_table;
|
|
|
|
u8 count = 0;
|
|
|
|
struct acpi_pci_routing_table *prt_element;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
if (!(acpi_dbg_level & ACPI_LV_RESOURCES)
|
|
|
|
|| !(_COMPONENT & acpi_dbg_layer)) {
|
|
|
|
return;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
prt_element = ACPI_CAST_PTR(struct acpi_pci_routing_table, buffer);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
/* Dump all table elements, Exit on null length element */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
while (prt_element->length) {
|
|
|
|
acpi_os_printf("\n[%02X] PCI IRQ Routing Table Package\n",
|
|
|
|
count);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer64("Address", prt_element->address);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
acpi_rs_out_integer32("Pin", prt_element->pin);
|
|
|
|
acpi_rs_out_string("Source", prt_element->source);
|
|
|
|
acpi_rs_out_integer32("Source Index",
|
|
|
|
prt_element->source_index);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-09-16 20:51:15 +00:00
|
|
|
buffer += prt_element->length;
|
|
|
|
prt_element =
|
|
|
|
ACPI_CAST_PTR(struct acpi_pci_routing_table, buffer);
|
|
|
|
count++;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|