⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tbxface.c

📁 xen虚拟机源代码安装包
💻 C
字号:
/****************************************************************************** * * Module Name: tbxface - Public interfaces to the ACPI subsystem *                         ACPI table oriented interfaces * *****************************************************************************//* * Copyright (C) 2000 - 2008, Intel Corp. * 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 <xen/config.h>#include <xen/init.h>#include <acpi/acpi.h>#include <acpi/acnamesp.h>#include <acpi/actables.h>#define _COMPONENT          ACPI_TABLESACPI_MODULE_NAME("tbxface")/******************************************************************************* * * FUNCTION:    acpi_allocate_root_table * * PARAMETERS:  initial_table_count - Size of initial_table_array, in number of *                                    struct acpi_table_desc structures * * RETURN:      Status * * DESCRIPTION: Allocate a root table array. Used by i_aSL compiler and *              acpi_initialize_tables. * ******************************************************************************/acpi_status acpi_allocate_root_table(u32 initial_table_count){	acpi_gbl_root_table_list.size = initial_table_count;	acpi_gbl_root_table_list.flags = ACPI_ROOT_ALLOW_RESIZE;	return (acpi_tb_resize_root_table_list());}/******************************************************************************* * * FUNCTION:    acpi_initialize_tables * * PARAMETERS:  initial_table_array - Pointer to an array of pre-allocated *                                    struct acpi_table_desc structures. If NULL, the *                                    array is dynamically allocated. *              initial_table_count - Size of initial_table_array, in number of *                                    struct acpi_table_desc structures *              allow_realloc       - Flag to tell Table Manager if resize of *                                    pre-allocated array is allowed. Ignored *                                    if initial_table_array is NULL. * * RETURN:      Status * * DESCRIPTION: Initialize the table manager, get the RSDP and RSDT/XSDT. * * NOTE:        Allows static allocation of the initial table array in order *              to avoid the use of dynamic memory in confined environments *              such as the kernel boot sequence where it may not be available. * *              If the host OS memory managers are initialized, use NULL for *              initial_table_array, and the table will be dynamically allocated. * ******************************************************************************/acpi_status __initacpi_initialize_tables(struct acpi_table_desc * initial_table_array,		       u32 initial_table_count, u8 allow_resize){	acpi_physical_address rsdp_address;	acpi_status status;	ACPI_FUNCTION_TRACE(acpi_initialize_tables);	/*	 * Set up the Root Table Array	 * Allocate the table array if requested	 */	if (!initial_table_array) {		status = acpi_allocate_root_table(initial_table_count);		if (ACPI_FAILURE(status)) {			return_ACPI_STATUS(status);		}	} else {		/* Root Table Array has been statically allocated by the host */		ACPI_MEMSET(initial_table_array, 0,			    initial_table_count *			    sizeof(struct acpi_table_desc));		acpi_gbl_root_table_list.tables = initial_table_array;		acpi_gbl_root_table_list.size = initial_table_count;		acpi_gbl_root_table_list.flags = ACPI_ROOT_ORIGIN_UNKNOWN;		if (allow_resize) {			acpi_gbl_root_table_list.flags |=			    ACPI_ROOT_ALLOW_RESIZE;		}	}	/* Get the address of the RSDP */	rsdp_address = acpi_os_get_root_pointer();	if (!rsdp_address) {		return_ACPI_STATUS(AE_NOT_FOUND);	}	/*	 * Get the root table (RSDT or XSDT) and extract all entries to the local	 * Root Table Array. This array contains the information of the RSDT/XSDT	 * in a common, more useable format.	 */	status =	    acpi_tb_parse_root_table(rsdp_address, ACPI_TABLE_ORIGIN_MAPPED);	return_ACPI_STATUS(status);}/******************************************************************************* * * FUNCTION:    acpi_reallocate_root_table * * PARAMETERS:  None * * RETURN:      Status * * DESCRIPTION: Reallocate Root Table List into dynamic memory. Copies the *              root list from the previously provided scratch area. Should *              be called once dynamic memory allocation is available in the *              kernel * ******************************************************************************/acpi_status acpi_reallocate_root_table(void){	struct acpi_table_desc *tables;	acpi_size new_size;	ACPI_FUNCTION_TRACE(acpi_reallocate_root_table);	/*	 * Only reallocate the root table if the host provided a static buffer	 * for the table array in the call to acpi_initialize_tables.	 */	if (acpi_gbl_root_table_list.flags & ACPI_ROOT_ORIGIN_ALLOCATED) {		return_ACPI_STATUS(AE_SUPPORT);	}	new_size =	    (acpi_gbl_root_table_list.count +	     ACPI_ROOT_TABLE_SIZE_INCREMENT) * sizeof(struct acpi_table_desc);	/* Create new array and copy the old array */	tables = ACPI_ALLOCATE_ZEROED(new_size);	if (!tables) {		return_ACPI_STATUS(AE_NO_MEMORY);	}	ACPI_MEMCPY(tables, acpi_gbl_root_table_list.tables, new_size);	acpi_gbl_root_table_list.size = acpi_gbl_root_table_list.count;	acpi_gbl_root_table_list.tables = tables;	acpi_gbl_root_table_list.flags =	    ACPI_ROOT_ORIGIN_ALLOCATED | ACPI_ROOT_ALLOW_RESIZE;	return_ACPI_STATUS(AE_OK);}/******************************************************************************* * * FUNCTION:    acpi_get_table * * PARAMETERS:  Signature           - ACPI signature of needed table *              Instance            - Which instance (for SSDTs) *              out_table           - Where the pointer to the table is returned * * RETURN:      Status and pointer to table * * DESCRIPTION: Finds and verifies an ACPI table. * *****************************************************************************/acpi_statusacpi_get_table(char *signature,	       acpi_native_uint instance, struct acpi_table_header **out_table){	acpi_native_uint i;	acpi_native_uint j;	acpi_status status;	/* Parameter validation */	if (!signature || !out_table) {		return (AE_BAD_PARAMETER);	}	/*	 * Walk the root table list	 */	for (i = 0, j = 0; i < acpi_gbl_root_table_list.count; i++) {		if (!ACPI_COMPARE_NAME		    (&(acpi_gbl_root_table_list.tables[i].signature),		     signature)) {			continue;		}		if (++j < instance) {			continue;		}		status =		    acpi_tb_verify_table(&acpi_gbl_root_table_list.tables[i]);		if (ACPI_SUCCESS(status)) {			*out_table = acpi_gbl_root_table_list.tables[i].pointer;		}		/*if (!acpi_gbl_permanent_mmap)*/ {			acpi_gbl_root_table_list.tables[i].pointer = NULL;		}		return (status);	}	return (AE_NOT_FOUND);}ACPI_EXPORT_SYMBOL(acpi_get_table)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -