acobject.h 17.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/******************************************************************************
 *
B
Bob Moore 已提交
3
 * Name: acobject.h - Definition of union acpi_operand_object  (Internal object only)
L
Linus Torvalds 已提交
4 5 6 7
 *
 *****************************************************************************/

/*
8
 * Copyright (C) 2000 - 2012, Intel Corp.
L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
 * 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

B
Bob Moore 已提交
47 48
/* acpisrc:struct_defs -- for acpisrc conversion */

L
Linus Torvalds 已提交
49
/*
B
Bob Moore 已提交
50
 * The union acpi_operand_object is used to pass AML operands from the dispatcher
L
Linus Torvalds 已提交
51
 * to the interpreter, and to keep track of the various handlers such as
B
Bob Moore 已提交
52
 * address space handlers and notify handlers. The object is a constant
L
Linus Torvalds 已提交
53
 * size in order to allow it to be cached and reused.
54 55 56
 *
 * Note: The object is optimized to be aligned and will not work if it is
 * byte-packed.
L
Linus Torvalds 已提交
57
 */
58 59 60 61 62
#if ACPI_MACHINE_WIDTH == 64
#pragma pack(8)
#else
#pragma pack(4)
#endif
L
Linus Torvalds 已提交
63 64 65 66 67 68 69 70 71 72

/*******************************************************************************
 *
 * Common Descriptors
 *
 ******************************************************************************/

/*
 * Common area for all objects.
 *
B
Bob Moore 已提交
73 74
 * descriptor_type is used to differentiate between internal descriptors, and
 * must be in the same place across all descriptors
B
Bob Moore 已提交
75 76 77 78
 *
 * 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.
L
Linus Torvalds 已提交
79
 */
B
Bob Moore 已提交
80 81 82 83 84 85 86 87 88 89 90 91
#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 */
L
Linus Torvalds 已提交
92

93 94
#define AOPOBJ_AML_CONSTANT         0x01	/* Integer is an AML constant */
#define AOPOBJ_STATIC_POINTER       0x02	/* Data is part of an ACPI table, don't delete */
95
#define AOPOBJ_DATA_VALID           0x04	/* Object is initialized and data is valid */
96 97 98
#define AOPOBJ_OBJECT_INITIALIZED   0x08	/* Region is initialized, _REG was run */
#define AOPOBJ_SETUP_COMPLETE       0x10	/* Region setup is complete */
#define AOPOBJ_INVALID              0x20	/* Host OS won't allow a Region address */
L
Linus Torvalds 已提交
99 100 101 102 103 104 105

/******************************************************************************
 *
 * Basic data types
 *
 *****************************************************************************/

L
Len Brown 已提交
106 107
struct acpi_object_common {
ACPI_OBJECT_COMMON_HEADER};
L
Linus Torvalds 已提交
108

L
Len Brown 已提交
109
struct acpi_object_integer {
110
	ACPI_OBJECT_COMMON_HEADER u8 fill[3];	/* Prevent warning on some compilers */
111
	u64 value;
L
Linus Torvalds 已提交
112 113 114
};

/*
B
Bob Moore 已提交
115 116
 * Note: The String and Buffer object must be identical through the
 * pointer and length elements. There is code that depends on this.
B
Bob Moore 已提交
117 118
 *
 * Fields common to both Strings and Buffers
L
Linus Torvalds 已提交
119
 */
B
Bob Moore 已提交
120 121 122 123
#define ACPI_COMMON_BUFFER_INFO(_type) \
	_type                           *pointer; \
	u32                             length;

L
Len Brown 已提交
124
struct acpi_object_string {	/* Null terminated, ASCII characters only */
B
Bob Moore 已提交
125
	ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_BUFFER_INFO(char)	/* String in AML stream or allocated string */
L
Linus Torvalds 已提交
126 127
};

L
Len Brown 已提交
128
struct acpi_object_buffer {
B
Bob Moore 已提交
129
	ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_BUFFER_INFO(u8)	/* Buffer in AML stream or allocated buffer */
L
Len Brown 已提交
130
	u32 aml_length;
B
Bob Moore 已提交
131 132
	u8 *aml_start;
	struct acpi_namespace_node *node;	/* Link back to parent node */
L
Linus Torvalds 已提交
133 134
};

L
Len Brown 已提交
135
struct acpi_object_package {
B
Bob Moore 已提交
136
	ACPI_OBJECT_COMMON_HEADER struct acpi_namespace_node *node;	/* Link back to parent node */
L
Len Brown 已提交
137
	union acpi_operand_object **elements;	/* Array of pointers to acpi_objects */
B
Bob Moore 已提交
138 139 140
	u8 *aml_start;
	u32 aml_length;
	u32 count;		/* # of elements in package */
L
Linus Torvalds 已提交
141 142 143 144 145 146 147 148
};

/******************************************************************************
 *
 * Complex data types
 *
 *****************************************************************************/

L
Len Brown 已提交
149
struct acpi_object_event {
B
Bob Moore 已提交
150
	ACPI_OBJECT_COMMON_HEADER acpi_semaphore os_semaphore;	/* Actual OS synchronization object */
L
Linus Torvalds 已提交
151 152
};

L
Len Brown 已提交
153 154 155
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 */
B
Bob Moore 已提交
156
	acpi_mutex os_mutex;	/* Actual OS synchronization object */
157 158
	acpi_thread_id thread_id;	/* Current owner of the mutex */
	struct acpi_thread_state *owner_thread;	/* Current owner of the mutex */
L
Len Brown 已提交
159 160 161 162
	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) */
L
Linus Torvalds 已提交
163 164
};

L
Len Brown 已提交
165 166 167
struct acpi_object_region {
	ACPI_OBJECT_COMMON_HEADER u8 space_id;
	struct acpi_namespace_node *node;	/* Containing namespace node */
B
Bob Moore 已提交
168
	union acpi_operand_object *handler;	/* Handler for region access */
L
Len Brown 已提交
169 170
	union acpi_operand_object *next;
	acpi_physical_address address;
B
Bob Moore 已提交
171 172 173 174
	u32 length;
};

struct acpi_object_method {
175
	ACPI_OBJECT_COMMON_HEADER u8 info_flags;
B
Bob Moore 已提交
176
	u8 param_count;
B
Bob Moore 已提交
177 178
	u8 sync_level;
	union acpi_operand_object *mutex;
B
Bob Moore 已提交
179
	u8 *aml_start;
180
	union {
L
Lv Zheng 已提交
181
		acpi_internal_method implementation;
182
		union acpi_operand_object *handler;
183
	} dispatch;
184

B
Bob Moore 已提交
185 186 187
	u32 aml_length;
	u8 thread_count;
	acpi_owner_id owner_id;
L
Linus Torvalds 已提交
188 189
};

190 191 192 193 194 195 196 197
/* Flags for info_flags field above */

#define ACPI_METHOD_MODULE_LEVEL        0x01	/* Method is actually module-level code */
#define ACPI_METHOD_INTERNAL_ONLY       0x02	/* Method is implemented internally (_OSI) */
#define ACPI_METHOD_SERIALIZED          0x04	/* Method is serialized */
#define ACPI_METHOD_SERIALIZED_PENDING  0x08	/* Method is to be marked serialized */
#define ACPI_METHOD_MODIFIED_NAMESPACE  0x10	/* Method modified the namespace */

L
Linus Torvalds 已提交
198 199
/******************************************************************************
 *
200
 * Objects that can be notified. All share a common notify_info area.
L
Linus Torvalds 已提交
201 202 203
 *
 *****************************************************************************/

B
Bob Moore 已提交
204 205 206 207
/*
 * Common fields for objects that support ASL notifications
 */
#define ACPI_COMMON_NOTIFY_INFO \
208
	union acpi_operand_object       *notify_list[2];    /* Handlers for system/device notifies */\
B
Bob Moore 已提交
209 210
	union acpi_operand_object       *handler;	/* Handler for Address space */

L
Len Brown 已提交
211 212
struct acpi_object_notify_common {	/* COMMON NOTIFY for POWER, PROCESSOR, DEVICE, and THERMAL */
ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_NOTIFY_INFO};
L
Linus Torvalds 已提交
213

L
Len Brown 已提交
214
struct acpi_object_device {
L
Linus Torvalds 已提交
215
	ACPI_OBJECT_COMMON_HEADER
L
Len Brown 已提交
216
	    ACPI_COMMON_NOTIFY_INFO struct acpi_gpe_block_info *gpe_block;
L
Linus Torvalds 已提交
217 218
};

L
Len Brown 已提交
219 220 221
struct acpi_object_power_resource {
	ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_NOTIFY_INFO u32 system_level;
	u32 resource_order;
L
Linus Torvalds 已提交
222 223
};

L
Len Brown 已提交
224
struct acpi_object_processor {
225 226 227
	ACPI_OBJECT_COMMON_HEADER
	    /* The next two fields take advantage of the 3-byte space before NOTIFY_INFO */
	u8 proc_id;
B
Bob Moore 已提交
228
	u8 length;
L
Len Brown 已提交
229
	ACPI_COMMON_NOTIFY_INFO acpi_io_address address;
L
Linus Torvalds 已提交
230 231
};

L
Len Brown 已提交
232 233
struct acpi_object_thermal_zone {
ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_NOTIFY_INFO};
L
Linus Torvalds 已提交
234 235 236

/******************************************************************************
 *
237
 * Fields. All share a common header/info field.
L
Linus Torvalds 已提交
238 239 240
 *
 *****************************************************************************/

B
Bob Moore 已提交
241 242 243 244 245 246 247 248 249 250 251 252 253 254
/*
 * Common bitfield for the field objects
 * "Field Datum"  -- a datum from the actual field object
 * "Buffer Datum" -- a datum from a user buffer, read from or to be written to the field
 */
#define ACPI_COMMON_FIELD_INFO \
	u8                              field_flags;        /* Access, update, and lock bits */\
	u8                              attribute;          /* From access_as keyword */\
	u8                              access_byte_width;  /* Read/Write size in bytes */\
	struct acpi_namespace_node      *node;              /* Link back to parent node */\
	u32                             bit_length;         /* Length of field in bits */\
	u32                             base_byte_offset;   /* Byte offset within containing object */\
	u32                             value;              /* Value to store into the Bank or Index register */\
	u8                              start_field_bit_offset;/* Bit offset within first field datum (0-63) */\
255
	u8                              access_length;	/* For serial regions/fields */
256

B
Bob Moore 已提交
257

L
Len Brown 已提交
258
struct acpi_object_field_common {	/* COMMON FIELD (for BUFFER, REGION, BANK, and INDEX fields) */
B
Bob Moore 已提交
259
	ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO union acpi_operand_object *region_obj;	/* Parent Operation Region object (REGION/BANK fields only) */
L
Linus Torvalds 已提交
260 261
};

L
Len Brown 已提交
262
struct acpi_object_region_field {
263 264 265
	ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO u16 resource_length;
	union acpi_operand_object *region_obj;	/* Containing op_region object */
	u8 *resource_buffer;	/* resource_template for serial regions/fields */
L
Linus Torvalds 已提交
266 267
};

L
Len Brown 已提交
268 269 270
struct acpi_object_bank_field {
	ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO union acpi_operand_object *region_obj;	/* Containing op_region object */
	union acpi_operand_object *bank_obj;	/* bank_select Register object */
L
Linus Torvalds 已提交
271 272
};

L
Len Brown 已提交
273 274 275
struct acpi_object_index_field {
	ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO
	    /*
B
Bob Moore 已提交
276
	     * No "RegionObj" pointer needed since the Index and Data registers
L
Len Brown 已提交
277 278 279 280
	     * are each field definitions unto themselves.
	     */
	union acpi_operand_object *index_obj;	/* Index register */
	union acpi_operand_object *data_obj;	/* Data register */
L
Linus Torvalds 已提交
281 282 283 284
};

/* The buffer_field is different in that it is part of a Buffer, not an op_region */

L
Len Brown 已提交
285 286
struct acpi_object_buffer_field {
	ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO union acpi_operand_object *buffer_obj;	/* Containing Buffer object */
L
Linus Torvalds 已提交
287 288 289 290 291 292 293 294
};

/******************************************************************************
 *
 * Objects for handlers
 *
 *****************************************************************************/

L
Len Brown 已提交
295 296
struct acpi_object_notify_handler {
	ACPI_OBJECT_COMMON_HEADER struct acpi_namespace_node *node;	/* Parent device */
297 298
	u32 handler_type;	/* Type: Device/System/Both */
	acpi_notify_handler handler;	/* Handler address */
L
Len Brown 已提交
299
	void *context;
300
	union acpi_operand_object *next[2];	/* Device and System handler lists */
L
Linus Torvalds 已提交
301 302
};

L
Len Brown 已提交
303 304
struct acpi_object_addr_handler {
	ACPI_OBJECT_COMMON_HEADER u8 space_id;
B
Bob Moore 已提交
305
	u8 handler_flags;
L
Len Brown 已提交
306 307 308 309 310 311
	acpi_adr_space_handler handler;
	struct acpi_namespace_node *node;	/* Parent device */
	void *context;
	acpi_adr_space_setup setup;
	union acpi_operand_object *region_list;	/* regions using this handler */
	union acpi_operand_object *next;
L
Linus Torvalds 已提交
312 313
};

B
Bob Moore 已提交
314 315 316 317
/* Flags for address handler (handler_flags) */

#define ACPI_ADDR_HANDLER_DEFAULT_INSTALLED  0x01

L
Linus Torvalds 已提交
318 319 320 321 322 323 324
/******************************************************************************
 *
 * Special internal objects
 *
 *****************************************************************************/

/*
325 326 327
 * The Reference object is used for these opcodes:
 * Arg[0-6], Local[0-7], index_op, name_op, ref_of_op, load_op, load_table_op, debug_op
 * The Reference.Class differentiates these types.
L
Linus Torvalds 已提交
328
 */
L
Len Brown 已提交
329
struct acpi_object_reference {
330 331 332
	ACPI_OBJECT_COMMON_HEADER u8 class;	/* Reference Class */
	u8 target_type;		/* Used for Index Op */
	u8 reserved;
B
Bob Moore 已提交
333
	void *object;		/* name_op=>HANDLE to obj, index_op=>union acpi_operand_object */
334 335 336
	struct acpi_namespace_node *node;	/* ref_of or Namepath */
	union acpi_operand_object **where;	/* Target of Index */
	u32 value;		/* Used for Local/Arg/Index/ddb_handle */
L
Linus Torvalds 已提交
337 338
};

339 340 341 342 343 344 345 346 347 348 349 350 351 352
/* Values for Reference.Class above */

typedef enum {
	ACPI_REFCLASS_LOCAL = 0,	/* Method local */
	ACPI_REFCLASS_ARG = 1,	/* Method argument */
	ACPI_REFCLASS_REFOF = 2,	/* Result of ref_of() TBD: Split to Ref/Node and Ref/operand_obj? */
	ACPI_REFCLASS_INDEX = 3,	/* Result of Index() */
	ACPI_REFCLASS_TABLE = 4,	/* ddb_handle - Load(), load_table() */
	ACPI_REFCLASS_NAME = 5,	/* Reference to a named object */
	ACPI_REFCLASS_DEBUG = 6,	/* Debug object */

	ACPI_REFCLASS_MAX = 6
} ACPI_REFERENCE_CLASSES;

L
Linus Torvalds 已提交
353 354 355 356 357 358 359
/*
 * Extra object is used as additional storage for types that
 * have AML code in their declarations (term_args) that must be
 * evaluated at run time.
 *
 * Currently: Region and field_unit types
 */
L
Len Brown 已提交
360
struct acpi_object_extra {
B
Bob Moore 已提交
361
	ACPI_OBJECT_COMMON_HEADER struct acpi_namespace_node *method_REG;	/* _REG method for this region (if any) */
362
	struct acpi_namespace_node *scope_node;
L
Len Brown 已提交
363
	void *region_context;	/* Region-specific data */
B
Bob Moore 已提交
364 365
	u8 *aml_start;
	u32 aml_length;
L
Linus Torvalds 已提交
366 367 368 369
};

/* Additional data that can be attached to namespace nodes */

L
Len Brown 已提交
370 371 372
struct acpi_object_data {
	ACPI_OBJECT_COMMON_HEADER acpi_object_handler handler;
	void *pointer;
L
Linus Torvalds 已提交
373 374 375 376
};

/* Structure used when objects are cached for reuse */

L
Len Brown 已提交
377 378
struct acpi_object_cache_list {
	ACPI_OBJECT_COMMON_HEADER union acpi_operand_object *next;	/* Link for object cache and internal lists */
L
Linus Torvalds 已提交
379 380 381 382
};

/******************************************************************************
 *
383
 * union acpi_operand_object descriptor - a giant union of all of the above
L
Linus Torvalds 已提交
384 385 386
 *
 *****************************************************************************/

L
Len Brown 已提交
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
union acpi_operand_object {
	struct acpi_object_common common;
	struct acpi_object_integer integer;
	struct acpi_object_string string;
	struct acpi_object_buffer buffer;
	struct acpi_object_package package;
	struct acpi_object_event event;
	struct acpi_object_method method;
	struct acpi_object_mutex mutex;
	struct acpi_object_region region;
	struct acpi_object_notify_common common_notify;
	struct acpi_object_device device;
	struct acpi_object_power_resource power_resource;
	struct acpi_object_processor processor;
	struct acpi_object_thermal_zone thermal_zone;
	struct acpi_object_field_common common_field;
	struct acpi_object_region_field field;
	struct acpi_object_buffer_field buffer_field;
	struct acpi_object_bank_field bank_field;
	struct acpi_object_index_field index_field;
	struct acpi_object_notify_handler notify;
	struct acpi_object_addr_handler address_space;
	struct acpi_object_reference reference;
	struct acpi_object_extra extra;
	struct acpi_object_data data;
	struct acpi_object_cache_list cache;
413 414 415 416 417 418 419

	/*
	 * Add namespace node to union in order to simplify code that accepts both
	 * ACPI_OPERAND_OBJECTs and ACPI_NAMESPACE_NODEs. The structures share
	 * a common descriptor_type field in order to differentiate them.
	 */
	struct acpi_namespace_node node;
L
Linus Torvalds 已提交
420 421 422 423 424 425 426 427 428 429
};

/******************************************************************************
 *
 * union acpi_descriptor - objects that share a common descriptor identifier
 *
 *****************************************************************************/

/* Object descriptor types */

L
Len Brown 已提交
430
#define ACPI_DESC_TYPE_CACHED           0x01	/* Used only when object is cached */
L
Linus Torvalds 已提交
431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446
#define ACPI_DESC_TYPE_STATE            0x02
#define ACPI_DESC_TYPE_STATE_UPDATE     0x03
#define ACPI_DESC_TYPE_STATE_PACKAGE    0x04
#define ACPI_DESC_TYPE_STATE_CONTROL    0x05
#define ACPI_DESC_TYPE_STATE_RPSCOPE    0x06
#define ACPI_DESC_TYPE_STATE_PSCOPE     0x07
#define ACPI_DESC_TYPE_STATE_WSCOPE     0x08
#define ACPI_DESC_TYPE_STATE_RESULT     0x09
#define ACPI_DESC_TYPE_STATE_NOTIFY     0x0A
#define ACPI_DESC_TYPE_STATE_THREAD     0x0B
#define ACPI_DESC_TYPE_WALK             0x0C
#define ACPI_DESC_TYPE_PARSER           0x0D
#define ACPI_DESC_TYPE_OPERAND          0x0E
#define ACPI_DESC_TYPE_NAMED            0x0F
#define ACPI_DESC_TYPE_MAX              0x0F

B
Bob Moore 已提交
447 448 449 450 451
struct acpi_common_descriptor {
	void *common_pointer;
	u8 descriptor_type;	/* To differentiate various internal objs */
};

L
Len Brown 已提交
452
union acpi_descriptor {
B
Bob Moore 已提交
453
	struct acpi_common_descriptor common;
L
Len Brown 已提交
454 455 456
	union acpi_operand_object object;
	struct acpi_namespace_node node;
	union acpi_parse_object op;
L
Linus Torvalds 已提交
457 458
};

459 460
#pragma pack()

L
Len Brown 已提交
461
#endif				/* _ACOBJECT_H */