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

📄 acobject.h

📁 xen虚拟机源代码安装包
💻 H
📖 第 1 页 / 共 2 页
字号:
/****************************************************************************** * * Name: acobject.h - Definition of union acpi_operand_object  (Internal object only) * *****************************************************************************//* * Copyright (C) 2000 - 2007, 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. */#ifndef _ACOBJECT_H#define _ACOBJECT_H/* acpisrc:struct_defs -- for acpisrc conversion *//* * The union acpi_operand_object is used to pass AML operands from the dispatcher * to the interpreter, and to keep track of the various handlers such as * address space handlers and notify handlers. The object is a constant * size in order to allow it to be cached and reused. * * Note: The object is optimized to be aligned and will not work if it is * byte-packed. */#if ACPI_MACHINE_WIDTH == 64#pragma pack(8)#else#pragma pack(4)#endif/******************************************************************************* * * Common Descriptors * ******************************************************************************//* * Common area for all objects. * * descriptor_type is used to differentiate between internal descriptors, and * must be in the same place across all descriptors * * Note: The descriptor_type and Type fields must appear in the identical * position in both the struct acpi_namespace_node and union acpi_operand_object * structures. */#define ACPI_OBJECT_COMMON_HEADER \	union acpi_operand_object       *next_object;       /* Objects linked to parent NS node */\	u8                              descriptor_type;    /* To differentiate various internal objs */\	u8                              type;               /* acpi_object_type */\	u16                             reference_count;    /* For object deletion management */\	u8                              flags;	/*	 * Note: There are 3 bytes available here before the	 * next natural alignment boundary (for both 32/64 cases)	 *//* Values for Flag byte above */#define AOPOBJ_AML_CONSTANT         0x01#define AOPOBJ_STATIC_POINTER       0x02#define AOPOBJ_DATA_VALID           0x04#define AOPOBJ_OBJECT_INITIALIZED   0x08#define AOPOBJ_SETUP_COMPLETE       0x10#define AOPOBJ_SINGLE_DATUM         0x20#define AOPOBJ_INVALID              0x40	/* Used if host OS won't allow an op_region address *//****************************************************************************** * * Basic data types * *****************************************************************************/struct acpi_object_common {ACPI_OBJECT_COMMON_HEADER};struct acpi_object_integer {	ACPI_OBJECT_COMMON_HEADER u8 fill[3];	/* Prevent warning on some compilers */	acpi_integer value;};/* * Note: The String and Buffer object must be identical through the Pointer * and length elements.  There is code that depends on this. * * Fields common to both Strings and Buffers */#define ACPI_COMMON_BUFFER_INFO(_type) \	_type                           *pointer; \	u32                             length;struct acpi_object_string {	/* Null terminated, ASCII characters only */	ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_BUFFER_INFO(char)	/* String in AML stream or allocated string */};struct acpi_object_buffer {	ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_BUFFER_INFO(u8)	/* Buffer in AML stream or allocated buffer */	u32 aml_length;	u8 *aml_start;	struct acpi_namespace_node *node;	/* Link back to parent node */};struct acpi_object_package {	ACPI_OBJECT_COMMON_HEADER struct acpi_namespace_node *node;	/* Link back to parent node */	union acpi_operand_object **elements;	/* Array of pointers to acpi_objects */	u8 *aml_start;	u32 aml_length;	u32 count;		/* # of elements in package */};/****************************************************************************** * * Complex data types * *****************************************************************************/struct acpi_object_event {	ACPI_OBJECT_COMMON_HEADER acpi_semaphore os_semaphore;	/* Actual OS synchronization object */};struct acpi_object_mutex {	ACPI_OBJECT_COMMON_HEADER u8 sync_level;	/* 0-15, specified in Mutex() call */	u16 acquisition_depth;	/* Allow multiple Acquires, same thread */	struct acpi_thread_state *owner_thread;	/* Current owner of the mutex */	acpi_mutex os_mutex;	/* Actual OS synchronization object */	union acpi_operand_object *prev;	/* Link for list of acquired mutexes */	union acpi_operand_object *next;	/* Link for list of acquired mutexes */	struct acpi_namespace_node *node;	/* Containing namespace node */	u8 original_sync_level;	/* Owner's original sync level (0-15) */};struct acpi_object_region {	ACPI_OBJECT_COMMON_HEADER u8 space_id;	struct acpi_namespace_node *node;	/* Containing namespace node */	union acpi_operand_object *handler;	/* Handler for region access */	union acpi_operand_object *next;	acpi_physical_address address;	u32 length;};struct acpi_object_method {	ACPI_OBJECT_COMMON_HEADER u8 method_flags;	u8 param_count;	u8 sync_level;	union acpi_operand_object *mutex;	u8 *aml_start;	ACPI_INTERNAL_METHOD implementation;	u32 aml_length;	u8 thread_count;	acpi_owner_id owner_id;};/****************************************************************************** * * Objects that can be notified.  All share a common notify_info area. * *****************************************************************************//* * Common fields for objects that support ASL notifications */#define ACPI_COMMON_NOTIFY_INFO \	union acpi_operand_object       *system_notify;     /* Handler for system notifies */\	union acpi_operand_object       *device_notify;     /* Handler for driver notifies */\	union acpi_operand_object       *handler;	/* Handler for Address space */struct acpi_object_notify_common {	/* COMMON NOTIFY for POWER, PROCESSOR, DEVICE, and THERMAL */ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_NOTIFY_INFO};struct acpi_object_device {	ACPI_OBJECT_COMMON_HEADER	    ACPI_COMMON_NOTIFY_INFO struct acpi_gpe_block_info *gpe_block;};struct acpi_object_power_resource {	ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_NOTIFY_INFO u32 system_level;	u32 resource_order;};

⌨️ 快捷键说明

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