2005-04-16 18:20:36 -04: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>
|
2005-10-21 00:00:00 -04:00
|
|
|
#include <acpi/acdisasm.h>
|
2005-04-16 18:20:36 -04:00
|
|
|
|
|
|
|
#define _COMPONENT ACPI_RESOURCES
|
2005-08-05 00:44:28 -04:00
|
|
|
ACPI_MODULE_NAME("rsdump")
|
2005-05-13 00:00:00 -04:00
|
|
|
|
|
|
|
#if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
|
2005-04-18 22:49:35 -04:00
|
|
|
/* Local prototypes */
|
2005-09-16 16:51:15 -04:00
|
|
|
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);
|
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
static void acpi_rs_dump_byte_list(u16 length, u8 * data);
|
2005-09-16 16:51:15 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
static void acpi_rs_dump_dword_list(u8 length, u32 * data);
|
2005-09-16 16:51:15 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
static void acpi_rs_dump_short_byte_list(u8 length, u8 * data);
|
2005-09-16 16:51:15 -04:00
|
|
|
|
|
|
|
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);
|
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
static void
|
|
|
|
acpi_rs_dump_descriptor(void *resource, struct acpi_rsdump_info *table);
|
|
|
|
|
|
|
|
#define ACPI_RSD_OFFSET(f) (u8) ACPI_OFFSET (union acpi_resource_data,f)
|
|
|
|
#define ACPI_PRT_OFFSET(f) (u8) ACPI_OFFSET (struct acpi_pci_routing_table,f)
|
|
|
|
#define ACPI_RSD_TABLE_SIZE(name) (sizeof(name) / sizeof (struct acpi_rsdump_info))
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 00:00:00 -04:00
|
|
|
* Resource Descriptor info tables
|
2005-09-16 16:51:15 -04:00
|
|
|
*
|
2005-10-21 00:00:00 -04:00
|
|
|
* Note: The first table entry must be a Title or Literal and must contain
|
|
|
|
* the table length (number of table entries)
|
2005-09-16 16:51:15 -04:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
struct acpi_rsdump_info acpi_rs_dump_irq[6] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_irq), "IRQ", NULL},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(irq.triggering), "Triggering",
|
|
|
|
acpi_gbl_HEdecode},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(irq.polarity), "Polarity",
|
|
|
|
acpi_gbl_LLdecode},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(irq.sharable), "Sharing",
|
|
|
|
acpi_gbl_SHRdecode},
|
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(irq.interrupt_count),
|
|
|
|
"Interrupt Count", NULL},
|
|
|
|
{ACPI_RSD_SHORTLIST, ACPI_RSD_OFFSET(irq.interrupts[0]),
|
|
|
|
"Interrupt List", NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_dma[6] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_dma), "DMA", NULL},
|
|
|
|
{ACPI_RSD_2BITFLAG, ACPI_RSD_OFFSET(dma.type), "Speed",
|
|
|
|
acpi_gbl_TYPdecode},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(dma.bus_master), "Mastering",
|
|
|
|
acpi_gbl_BMdecode},
|
|
|
|
{ACPI_RSD_2BITFLAG, ACPI_RSD_OFFSET(dma.transfer), "Transfer Type",
|
|
|
|
acpi_gbl_SIZdecode},
|
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(dma.channel_count), "Channel Count",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_SHORTLIST, ACPI_RSD_OFFSET(dma.channels[0]), "Channel List",
|
|
|
|
NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_start_dpf[3] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_start_dpf),
|
|
|
|
"Start-Dependent-Functions", NULL},
|
|
|
|
{ACPI_RSD_2BITFLAG, ACPI_RSD_OFFSET(start_dpf.compatibility_priority),
|
|
|
|
"Compatibility Priority", acpi_gbl_config_decode},
|
|
|
|
{ACPI_RSD_2BITFLAG, ACPI_RSD_OFFSET(start_dpf.performance_robustness),
|
|
|
|
"Performance/Robustness", acpi_gbl_config_decode}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_end_dpf[1] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_end_dpf),
|
|
|
|
"End-Dependent-Functions", NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_io[6] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_io), "I/O", NULL},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(io.io_decode), "Address Decoding",
|
|
|
|
acpi_gbl_io_decode},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(io.minimum), "Address Minimum", NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(io.maximum), "Address Maximum", NULL},
|
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(io.alignment), "Alignment", NULL},
|
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(io.address_length), "Address Length",
|
|
|
|
NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_fixed_io[3] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_fixed_io),
|
|
|
|
"Fixed I/O", NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(fixed_io.address), "Address", NULL},
|
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(fixed_io.address_length),
|
|
|
|
"Address Length", NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_vendor[3] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_vendor),
|
|
|
|
"Vendor Specific", NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(vendor.byte_length), "Length", NULL},
|
|
|
|
{ACPI_RSD_LONGLIST, ACPI_RSD_OFFSET(vendor.byte_data[0]), "Vendor Data",
|
|
|
|
NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_end_tag[1] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_end_tag), "end_tag",
|
|
|
|
NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_memory24[6] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_memory24),
|
|
|
|
"24-Bit Memory Range", NULL},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(memory24.write_protect),
|
|
|
|
"Write Protect", acpi_gbl_RWdecode},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(memory24.minimum), "Address Minimum",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(memory24.maximum), "Address Maximum",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(memory24.alignment), "Alignment",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(memory24.address_length),
|
|
|
|
"Address Length", NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_memory32[6] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_memory32),
|
|
|
|
"32-Bit Memory Range", NULL},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(memory32.write_protect),
|
|
|
|
"Write Protect", acpi_gbl_RWdecode},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(memory32.minimum), "Address Minimum",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(memory32.maximum), "Address Maximum",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(memory32.alignment), "Alignment",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(memory32.address_length),
|
|
|
|
"Address Length", NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_fixed_memory32[4] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_fixed_memory32),
|
|
|
|
"32-Bit Fixed Memory Range", NULL},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(fixed_memory32.write_protect),
|
|
|
|
"Write Protect", acpi_gbl_RWdecode},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(fixed_memory32.address), "Address",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(fixed_memory32.address_length),
|
|
|
|
"Address Length", NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_address16[8] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_address16),
|
|
|
|
"16-Bit WORD Address Space", NULL},
|
|
|
|
{ACPI_RSD_ADDRESS, 0, NULL, NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(address16.granularity), "Granularity",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(address16.minimum), "Address Minimum",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(address16.maximum), "Address Maximum",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(address16.translation_offset),
|
|
|
|
"Translation Offset", NULL},
|
|
|
|
{ACPI_RSD_UINT16, ACPI_RSD_OFFSET(address16.address_length),
|
|
|
|
"Address Length", NULL},
|
|
|
|
{ACPI_RSD_SOURCE, ACPI_RSD_OFFSET(address16.resource_source), NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_address32[8] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_address32),
|
|
|
|
"32-Bit DWORD Address Space", NULL},
|
|
|
|
{ACPI_RSD_ADDRESS, 0, NULL, NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(address32.granularity), "Granularity",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(address32.minimum), "Address Minimum",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(address32.maximum), "Address Maximum",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(address32.translation_offset),
|
|
|
|
"Translation Offset", NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_RSD_OFFSET(address32.address_length),
|
|
|
|
"Address Length", NULL},
|
|
|
|
{ACPI_RSD_SOURCE, ACPI_RSD_OFFSET(address32.resource_source), NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_address64[8] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_address64),
|
|
|
|
"64-Bit QWORD Address Space", NULL},
|
|
|
|
{ACPI_RSD_ADDRESS, 0, NULL, NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(address64.granularity), "Granularity",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(address64.minimum), "Address Minimum",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(address64.maximum), "Address Maximum",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(address64.translation_offset),
|
|
|
|
"Translation Offset", NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(address64.address_length),
|
|
|
|
"Address Length", NULL},
|
|
|
|
{ACPI_RSD_SOURCE, ACPI_RSD_OFFSET(address64.resource_source), NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_ext_address64[8] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_ext_address64),
|
|
|
|
"64-Bit Extended Address Space", NULL},
|
|
|
|
{ACPI_RSD_ADDRESS, 0, NULL, NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(ext_address64.granularity),
|
|
|
|
"Granularity", NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(ext_address64.minimum),
|
|
|
|
"Address Minimum", NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(ext_address64.maximum),
|
|
|
|
"Address Maximum", NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(ext_address64.translation_offset),
|
|
|
|
"Translation Offset", NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(ext_address64.address_length),
|
|
|
|
"Address Length", NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(ext_address64.type_specific),
|
|
|
|
"Type-Specific Attribute", NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_ext_irq[8] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_ext_irq),
|
|
|
|
"Extended IRQ", NULL},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(extended_irq.producer_consumer),
|
|
|
|
"Type", acpi_gbl_consume_decode},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(extended_irq.triggering),
|
|
|
|
"Triggering", acpi_gbl_HEdecode},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(extended_irq.polarity), "Polarity",
|
|
|
|
acpi_gbl_LLdecode},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(extended_irq.sharable), "Sharing",
|
|
|
|
acpi_gbl_SHRdecode},
|
|
|
|
{ACPI_RSD_SOURCE, ACPI_RSD_OFFSET(extended_irq.resource_source), NULL,
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(extended_irq.interrupt_count),
|
|
|
|
"Interrupt Count", NULL},
|
|
|
|
{ACPI_RSD_DWORDLIST, ACPI_RSD_OFFSET(extended_irq.interrupts[0]),
|
|
|
|
"Interrupt List", NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct acpi_rsdump_info acpi_rs_dump_generic_reg[6] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_generic_reg),
|
|
|
|
"Generic Register", NULL},
|
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(generic_reg.space_id), "Space ID",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(generic_reg.bit_width), "Bit Width",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(generic_reg.bit_offset), "Bit Offset",
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_UINT8, ACPI_RSD_OFFSET(generic_reg.access_size),
|
|
|
|
"Access Size", NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_RSD_OFFSET(generic_reg.address), "Address", NULL}
|
|
|
|
};
|
2005-09-16 16:51:15 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
/*
|
|
|
|
* Tables used for common address descriptor flag fields
|
|
|
|
*/
|
|
|
|
static struct acpi_rsdump_info acpi_rs_dump_general_flags[5] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_general_flags), NULL,
|
|
|
|
NULL},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(address.producer_consumer),
|
|
|
|
"Consumer/Producer", acpi_gbl_consume_decode},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(address.decode), "Address Decode",
|
|
|
|
acpi_gbl_DECdecode},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(address.min_address_fixed),
|
|
|
|
"Min Relocatability", acpi_gbl_min_decode},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(address.max_address_fixed),
|
|
|
|
"Max Relocatability", acpi_gbl_max_decode}
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct acpi_rsdump_info acpi_rs_dump_memory_flags[5] = {
|
|
|
|
{ACPI_RSD_LITERAL, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_memory_flags),
|
|
|
|
"Resource Type", "Memory Range"},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(address.info.mem.write_protect),
|
|
|
|
"Write Protect", acpi_gbl_RWdecode},
|
|
|
|
{ACPI_RSD_2BITFLAG, ACPI_RSD_OFFSET(address.info.mem.caching),
|
|
|
|
"Caching", acpi_gbl_MEMdecode},
|
|
|
|
{ACPI_RSD_2BITFLAG, ACPI_RSD_OFFSET(address.info.mem.range_type),
|
|
|
|
"Range Type", acpi_gbl_MTPdecode},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(address.info.mem.translation),
|
|
|
|
"Translation", acpi_gbl_TTPdecode}
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct acpi_rsdump_info acpi_rs_dump_io_flags[4] = {
|
|
|
|
{ACPI_RSD_LITERAL, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_io_flags),
|
|
|
|
"Resource Type", "I/O Range"},
|
|
|
|
{ACPI_RSD_2BITFLAG, ACPI_RSD_OFFSET(address.info.io.range_type),
|
|
|
|
"Range Type", acpi_gbl_RNGdecode},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(address.info.io.translation),
|
|
|
|
"Translation", acpi_gbl_TTPdecode},
|
|
|
|
{ACPI_RSD_1BITFLAG, ACPI_RSD_OFFSET(address.info.io.translation_type),
|
|
|
|
"Translation Type", acpi_gbl_TRSdecode}
|
|
|
|
};
|
2005-09-16 16:51:15 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
/*
|
|
|
|
* Table used to dump _PRT contents
|
|
|
|
*/
|
|
|
|
static struct acpi_rsdump_info acpi_rs_dump_prt[5] = {
|
|
|
|
{ACPI_RSD_TITLE, ACPI_RSD_TABLE_SIZE(acpi_rs_dump_prt), NULL, NULL},
|
|
|
|
{ACPI_RSD_UINT64, ACPI_PRT_OFFSET(address), "Address", NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_PRT_OFFSET(pin), "Pin", NULL},
|
|
|
|
{ACPI_RSD_STRING, ACPI_PRT_OFFSET(source[0]), "Source", NULL},
|
|
|
|
{ACPI_RSD_UINT32, ACPI_PRT_OFFSET(source_index), "Source Index", NULL}
|
|
|
|
};
|
2005-09-16 16:51:15 -04:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 00:00:00 -04:00
|
|
|
* FUNCTION: acpi_rs_dump_descriptor
|
2005-09-16 16:51:15 -04:00
|
|
|
*
|
2005-10-21 00:00:00 -04:00
|
|
|
* PARAMETERS: Resource
|
2005-09-16 16:51:15 -04:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-10-21 00:00:00 -04:00
|
|
|
* DESCRIPTION:
|
2005-09-16 16:51:15 -04:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
static void
|
|
|
|
acpi_rs_dump_descriptor(void *resource, struct acpi_rsdump_info *table)
|
2005-09-16 16:51:15 -04:00
|
|
|
{
|
2005-10-21 00:00:00 -04:00
|
|
|
void *target = NULL;
|
|
|
|
void *previous_target;
|
|
|
|
char *name;
|
|
|
|
u8 count;
|
|
|
|
|
|
|
|
/* First table entry must contain the table length (# of table entries) */
|
|
|
|
|
|
|
|
count = table->offset;
|
|
|
|
|
|
|
|
while (count) {
|
|
|
|
previous_target = target;
|
|
|
|
target = ((u8 *) resource) + table->offset;
|
|
|
|
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-16 16:51:15 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
/* Strings */
|
2005-09-16 16:51:15 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
case ACPI_RSD_LITERAL:
|
|
|
|
acpi_rs_out_string(name, (char *)table->pointer);
|
|
|
|
break;
|
2005-09-16 16:51:15 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
case ACPI_RSD_STRING:
|
|
|
|
acpi_rs_out_string(name, (char *)target);
|
|
|
|
break;
|
2005-09-16 16:51:15 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
/* Data items, 8/16/32/64 bit */
|
2005-09-16 16:51:15 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
case ACPI_RSD_UINT8:
|
|
|
|
acpi_rs_out_integer8(name, *(u8 *) target);
|
|
|
|
break;
|
2005-09-16 16:51:15 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
case ACPI_RSD_UINT16:
|
|
|
|
acpi_rs_out_integer16(name, *(u16 *) target);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_RSD_UINT32:
|
|
|
|
acpi_rs_out_integer32(name, *(u32 *) target);
|
|
|
|
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-09-30 19:03:00 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
case ACPI_RSD_UINT64:
|
|
|
|
acpi_rs_out_integer64(name, *(u64 *) target);
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Flags: 1-bit and 2-bit flags supported */
|
|
|
|
|
|
|
|
case ACPI_RSD_1BITFLAG:
|
|
|
|
acpi_rs_out_string(name, (char *)
|
|
|
|
((const char **)table->
|
|
|
|
pointer)[(*(u8 *) target) & 0x01]);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_RSD_2BITFLAG:
|
|
|
|
acpi_rs_out_string(name, (char *)
|
|
|
|
((const char **)table->
|
|
|
|
pointer)[(*(u8 *) target) & 0x03]);
|
|
|
|
break;
|
|
|
|
|
|
|
|
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);
|
|
|
|
acpi_rs_dump_short_byte_list(*
|
|
|
|
((u8 *)
|
|
|
|
previous_target),
|
|
|
|
(u8 *) target);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
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) {
|
|
|
|
acpi_rs_dump_byte_list(*
|
|
|
|
((u16 *)
|
|
|
|
previous_target),
|
|
|
|
(u8 *) target);
|
|
|
|
}
|
|
|
|
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) {
|
|
|
|
acpi_rs_dump_dword_list(*
|
|
|
|
((u8 *)
|
|
|
|
previous_target),
|
|
|
|
(u32 *) target);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_RSD_ADDRESS:
|
|
|
|
/*
|
|
|
|
* Common flags for all Address resources
|
|
|
|
*/
|
|
|
|
acpi_rs_dump_address_common((union acpi_resource_data *)
|
|
|
|
target);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_RSD_SOURCE:
|
|
|
|
/*
|
|
|
|
* Optional resource_source for Address resources
|
|
|
|
*/
|
|
|
|
acpi_rs_dump_resource_source((struct
|
|
|
|
acpi_resource_source *)
|
|
|
|
target);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
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-09-30 19:03:00 -04:00
|
|
|
}
|
|
|
|
|
2005-09-16 16:51:15 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_rs_dump_resource_source
|
2005-04-16 18:20:36 -04:00
|
|
|
*
|
2005-09-16 16:51:15 -04:00
|
|
|
* PARAMETERS: resource_source - Pointer to a Resource Source struct
|
2005-04-16 18:20:36 -04:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-09-16 16:51:15 -04:00
|
|
|
* DESCRIPTION: Common routine for dumping the optional resource_source and the
|
|
|
|
* corresponding resource_source_index.
|
2005-04-16 18:20:36 -04:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-09-16 16:51:15 -04:00
|
|
|
static void
|
|
|
|
acpi_rs_dump_resource_source(struct acpi_resource_source *resource_source)
|
2005-04-16 18: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-09-30 19:03:00 -04:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-09-16 16:51:15 -04:00
|
|
|
if (resource_source->index == 0xFF) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
acpi_rs_out_integer8("Resource Source Index", resource_source->index);
|
2005-09-16 16:51:15 -04:00
|
|
|
|
|
|
|
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 00:44:28 -04:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-09-16 16:51:15 -04:00
|
|
|
/* Decode the type-specific flags */
|
|
|
|
|
|
|
|
switch (resource->address.resource_type) {
|
|
|
|
case ACPI_MEMORY_RANGE:
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
acpi_rs_dump_descriptor(resource, acpi_rs_dump_memory_flags);
|
2005-09-16 16:51:15 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_IO_RANGE:
|
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
acpi_rs_dump_descriptor(resource, acpi_rs_dump_io_flags);
|
2005-09-16 16: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-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
|
2005-09-16 16:51:15 -04:00
|
|
|
/* Decode the general flags */
|
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
acpi_rs_dump_descriptor(resource, acpi_rs_dump_general_flags);
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-09-16 16:51:15 -04:00
|
|
|
* FUNCTION: acpi_rs_dump_resource_list
|
2005-04-16 18:20:36 -04:00
|
|
|
*
|
2005-09-16 16:51:15 -04:00
|
|
|
* PARAMETERS: resource_list - Pointer to a resource descriptor list
|
2005-04-16 18:20:36 -04:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-09-16 16:51:15 -04:00
|
|
|
* DESCRIPTION: Dispatches the structure to the correct dump routine.
|
2005-04-16 18:20:36 -04:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-09-16 16:51:15 -04:00
|
|
|
void acpi_rs_dump_resource_list(struct acpi_resource *resource_list)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2005-09-16 16:51:15 -04:00
|
|
|
u32 count = 0;
|
2005-10-21 00:00:00 -04:00
|
|
|
u32 type;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-09-16 16:51:15 -04:00
|
|
|
if (!(acpi_dbg_level & ACPI_LV_RESOURCES)
|
|
|
|
|| !(_COMPONENT & acpi_dbg_layer)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
/* Walk list and dump all resource descriptors (END_TAG terminates) */
|
2005-09-16 16:51:15 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
do {
|
2005-09-16 16:51:15 -04:00
|
|
|
acpi_os_printf("\n[%02X] ", count);
|
2005-10-21 00:00:00 -04:00
|
|
|
count++;
|
2005-09-16 16:51:15 -04:00
|
|
|
|
|
|
|
/* Validate Type before dispatch */
|
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
type = resource_list->type;
|
|
|
|
if (type > ACPI_RESOURCE_TYPE_MAX) {
|
2005-09-16 16:51:15 -04:00
|
|
|
acpi_os_printf
|
|
|
|
("Invalid descriptor type (%X) in resource list\n",
|
|
|
|
resource_list->type);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Dump the resource descriptor */
|
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
acpi_rs_dump_descriptor(&resource_list->data,
|
|
|
|
acpi_gbl_dump_resource_dispatch[type]);
|
2005-09-16 16:51:15 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
/* Point to the next resource structure */
|
2005-09-16 16:51:15 -04:00
|
|
|
|
|
|
|
resource_list =
|
|
|
|
ACPI_PTR_ADD(struct acpi_resource, resource_list,
|
|
|
|
resource_list->length);
|
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
/* Exit when END_TAG descriptor is reached */
|
2005-09-16 16:51:15 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
} while (type != ACPI_RESOURCE_TYPE_END_TAG);
|
2005-09-16 16:51:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 00:00:00 -04:00
|
|
|
* FUNCTION: acpi_rs_dump_irq_list
|
2005-09-16 16:51:15 -04:00
|
|
|
*
|
2005-10-21 00:00:00 -04:00
|
|
|
* PARAMETERS: route_table - Pointer to the routing table to dump.
|
2005-09-16 16:51:15 -04:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-10-21 00:00:00 -04:00
|
|
|
* DESCRIPTION: Print IRQ routing table
|
2005-09-16 16:51:15 -04:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
void acpi_rs_dump_irq_list(u8 * route_table)
|
2005-09-16 16:51:15 -04:00
|
|
|
{
|
2005-10-21 00:00:00 -04:00
|
|
|
struct acpi_pci_routing_table *prt_element;
|
|
|
|
u8 count;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-08-05 00:44:28 -04:00
|
|
|
ACPI_FUNCTION_ENTRY();
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
if (!(acpi_dbg_level & ACPI_LV_RESOURCES)
|
|
|
|
|| !(_COMPONENT & acpi_dbg_layer)) {
|
|
|
|
return;
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
prt_element = ACPI_CAST_PTR(struct acpi_pci_routing_table, route_table);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
/* Dump all table elements, Exit on zero length element */
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
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);
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
prt_element = ACPI_CAST_PTR(struct acpi_pci_routing_table,
|
|
|
|
((u8 *) prt_element) +
|
|
|
|
prt_element->length);
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 00:00:00 -04:00
|
|
|
* FUNCTION: acpi_rs_out*
|
2005-04-16 18:20:36 -04:00
|
|
|
*
|
2005-10-21 00:00:00 -04:00
|
|
|
* PARAMETERS: Title - Name of the resource field
|
|
|
|
* Value - Value of the resource field
|
2005-04-16 18:20:36 -04:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-10-21 00:00:00 -04:00
|
|
|
* DESCRIPTION: Miscellaneous helper functions to consistently format the
|
|
|
|
* output of the resource dump routines
|
2005-04-16 18:20:36 -04:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
static void acpi_rs_out_string(char *title, char *value)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2005-10-21 00:00:00 -04:00
|
|
|
acpi_os_printf("%27s : %s\n", title, value);
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
static void acpi_rs_out_integer8(char *title, u8 value)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2005-10-21 00:00:00 -04:00
|
|
|
acpi_os_printf("%27s : %2.2X\n", title, value);
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
static void acpi_rs_out_integer16(char *title, u16 value)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2005-10-21 00:00:00 -04:00
|
|
|
acpi_os_printf("%27s : %4.4X\n", title, value);
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
static void acpi_rs_out_integer32(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-09-30 19:03:00 -04:00
|
|
|
{
|
2005-10-21 00: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-09-30 19:03:00 -04:00
|
|
|
}
|
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
static void acpi_rs_out_integer64(char *title, u64 value)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2005-10-21 00:00:00 -04:00
|
|
|
acpi_os_printf("%27s : %8.8X%8.8X\n", title, ACPI_FORMAT_UINT64(value));
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
static void acpi_rs_out_title(char *title)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2005-10-21 00:00:00 -04:00
|
|
|
acpi_os_printf("%27s : ", title);
|
2005-09-16 16:51:15 -04:00
|
|
|
}
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-09-16 16:51:15 -04:00
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2005-10-21 00:00:00 -04:00
|
|
|
* FUNCTION: acpi_rs_dump*List
|
2005-09-16 16:51:15 -04:00
|
|
|
*
|
2005-10-21 00:00:00 -04:00
|
|
|
* PARAMETERS: Length - Number of elements in the list
|
|
|
|
* Data - Start of the list
|
2005-09-16 16:51:15 -04:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2005-10-21 00:00:00 -04:00
|
|
|
* DESCRIPTION: Miscellaneous functions to dump lists of raw data
|
2005-09-16 16:51:15 -04:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
static void acpi_rs_dump_byte_list(u16 length, u8 * data)
|
2005-09-16 16:51:15 -04:00
|
|
|
{
|
2005-10-21 00:00:00 -04:00
|
|
|
u8 i;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-10-21 00: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-16 16:51:15 -04:00
|
|
|
}
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
static void acpi_rs_dump_short_byte_list(u8 length, u8 * data)
|
2005-09-16 16:51:15 -04:00
|
|
|
{
|
2005-10-21 00:00:00 -04:00
|
|
|
u8 i;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
for (i = 0; i < length; i++) {
|
|
|
|
acpi_os_printf("%X ", data[i]);
|
|
|
|
}
|
|
|
|
acpi_os_printf("\n");
|
2005-04-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
|
2005-10-21 00:00:00 -04:00
|
|
|
static void acpi_rs_dump_dword_list(u8 length, u32 * data)
|
2005-04-16 18:20:36 -04:00
|
|
|
{
|
2005-10-21 00:00:00 -04:00
|
|
|
u8 i;
|
2005-04-16 18:20:36 -04:00
|
|
|
|
2005-10-21 00: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-16 18:20:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|