acobject.h 17.1 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3

/******************************************************************************
 *
4
 * Name: acobject.h - Definition of union acpi_operand_object    (Internal object only)
Linus Torvalds's avatar
Linus Torvalds committed
5 6 7 8
 *
 *****************************************************************************/

/*
9 10
 * Copyright (C) 2000 - 2003, R. Byron Moore
 * All rights reserved.
Linus Torvalds's avatar
Linus Torvalds committed
11
 *
12 13 14 15 16 17 18 19 20 21 22 23 24 25
 * 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.
Linus Torvalds's avatar
Linus Torvalds committed
26
 *
27 28 29
 * 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.
Linus Torvalds's avatar
Linus Torvalds committed
30
 *
31 32 33 34 35 36 37 38 39 40 41 42
 * 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.
Linus Torvalds's avatar
Linus Torvalds committed
43 44 45 46 47 48 49
 */

#ifndef _ACOBJECT_H
#define _ACOBJECT_H


/*
50
 * The union acpi_operand_object    is used to pass AML operands from the dispatcher
Linus Torvalds's avatar
Linus Torvalds committed
51 52
 * to the interpreter, and to keep track of the various handlers such as
 * address space handlers and notify handlers.  The object is a constant
Andy Grover's avatar
Andy Grover committed
53
 * size in order to allow it to be cached and reused.
Linus Torvalds's avatar
Linus Torvalds committed
54 55
 */

Andy Grover's avatar
Andy Grover committed
56
/*******************************************************************************
Linus Torvalds's avatar
Linus Torvalds committed
57 58 59
 *
 * Common Descriptors
 *
Andy Grover's avatar
Andy Grover committed
60
 ******************************************************************************/
Linus Torvalds's avatar
Linus Torvalds committed
61 62 63 64

/*
 * Common area for all objects.
 *
65
 * data_type is used to differentiate between internal descriptors, and MUST
Linus Torvalds's avatar
Linus Torvalds committed
66 67
 * be the first byte in this structure.
 */
68 69 70 71 72 73
#define ACPI_OBJECT_COMMON_HEADER   /* SIZE/ALIGNMENT: 32 bits, one ptr plus trailing 8-bit flag */\
	u8                                      descriptor;         /* To differentiate various internal objs */\
	u8                                      type;               /* acpi_object_type */\
	u16                                     reference_count;    /* For object deletion management */\
	union acpi_operand_object               *next_object;       /* Objects linked to parent NS node */\
	u8                                      flags; \
Linus Torvalds's avatar
Linus Torvalds committed
74

Andy Grover's avatar
Andy Grover committed
75
/* Values for flag byte above */
Linus Torvalds's avatar
Linus Torvalds committed
76

Andy Grover's avatar
Andy Grover committed
77
#define AOPOBJ_AML_CONSTANT         0x01
Andy Grover's avatar
Andy Grover committed
78 79 80 81 82
#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
Linus Torvalds's avatar
Linus Torvalds committed
83 84 85 86


/*
 * Common bitfield for the field objects
Andy Grover's avatar
Andy Grover committed
87 88
 * "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
Linus Torvalds's avatar
Linus Torvalds committed
89
 */
90 91 92 93 94 95 96 97 98 99 100 101
#define ACPI_COMMON_FIELD_INFO      /* SIZE/ALIGNMENT: 24 bits + three 32-bit values */\
	u8                                      field_flags;        /* Access, update, and lock bits */\
	u8                                      attribute;          /* From access_as keyword */\
	u8                                      access_byte_width;  /* Read/Write size in bytes */\
	u32                                     bit_length;         /* Length of field in bits */\
	u32                                     base_byte_offset;   /* Byte offset within containing object */\
	u8                                      start_field_bit_offset;/* Bit offset within first field datum (0-63) */\
	u8                                      datum_valid_bits;   /* Valid bit in first "Field datum" */\
	u8                                      end_field_valid_bits; /* Valid bits in the last "field datum" */\
	u8                                      end_buffer_valid_bits; /* Valid bits in the last "buffer datum" */\
	u32                                     value;              /* Value to store into the Bank or Index register */\
	struct acpi_namespace_node              *node;              /* Link back to parent node */
Linus Torvalds's avatar
Linus Torvalds committed
102 103


Linus Torvalds's avatar
Linus Torvalds committed
104 105 106 107
/*
 * Fields common to both Strings and Buffers
 */
#define ACPI_COMMON_BUFFER_INFO \
108
	u32                                     length;
Linus Torvalds's avatar
Linus Torvalds committed
109 110


Andy Grover's avatar
Andy Grover committed
111 112 113 114
/*
 * Common fields for objects that support ASL notifications
 */
#define ACPI_COMMON_NOTIFY_INFO \
115 116 117
	union acpi_operand_object               *system_notify;     /* Handler for system notifies */\
	union acpi_operand_object               *device_notify;     /* Handler for driver notifies */\
	union acpi_operand_object               *address_space;     /* Handler for Address space */
Andy Grover's avatar
Andy Grover committed
118 119


Linus Torvalds's avatar
Linus Torvalds committed
120 121
/******************************************************************************
 *
Andy Grover's avatar
Andy Grover committed
122
 * Basic data types
Linus Torvalds's avatar
Linus Torvalds committed
123 124 125
 *
 *****************************************************************************/

126
struct acpi_object_common
Linus Torvalds's avatar
Linus Torvalds committed
127 128
{
	ACPI_OBJECT_COMMON_HEADER
129
};
Linus Torvalds's avatar
Linus Torvalds committed
130 131


132
struct acpi_object_integer
Linus Torvalds's avatar
Linus Torvalds committed
133 134
{
	ACPI_OBJECT_COMMON_HEADER
135 136
	acpi_integer                            value;
};
Linus Torvalds's avatar
Linus Torvalds committed
137 138


139
struct acpi_object_string           /* Null terminated, ASCII characters only */
Linus Torvalds's avatar
Linus Torvalds committed
140 141
{
	ACPI_OBJECT_COMMON_HEADER
Linus Torvalds's avatar
Linus Torvalds committed
142
	ACPI_COMMON_BUFFER_INFO
143 144
	char                                    *pointer;           /* String in AML stream or allocated string */
};
Linus Torvalds's avatar
Linus Torvalds committed
145 146


147
struct acpi_object_buffer
Linus Torvalds's avatar
Linus Torvalds committed
148 149
{
	ACPI_OBJECT_COMMON_HEADER
Linus Torvalds's avatar
Linus Torvalds committed
150
	ACPI_COMMON_BUFFER_INFO
151 152 153 154 155
	u8                                      *pointer;           /* Buffer in AML stream or allocated buffer */
	struct acpi_namespace_node              *node;              /* Link back to parent node */
	u8                                      *aml_start;
	u32                                     aml_length;
};
Linus Torvalds's avatar
Linus Torvalds committed
156 157


158
struct acpi_object_package
Linus Torvalds's avatar
Linus Torvalds committed
159 160 161
{
	ACPI_OBJECT_COMMON_HEADER

162 163 164 165 166 167
	u32                                     count;              /* # of elements in package */
	u32                                     aml_length;
	u8                                      *aml_start;
	struct acpi_namespace_node              *node;              /* Link back to parent node */
	union acpi_operand_object               **elements;         /* Array of pointers to acpi_objects */
};
Linus Torvalds's avatar
Linus Torvalds committed
168 169


Andy Grover's avatar
Andy Grover committed
170 171 172 173 174
/******************************************************************************
 *
 * Complex data types
 *
 *****************************************************************************/
Linus Torvalds's avatar
Linus Torvalds committed
175

176
struct acpi_object_event
Linus Torvalds's avatar
Linus Torvalds committed
177 178
{
	ACPI_OBJECT_COMMON_HEADER
179 180
	void                                    *semaphore;
};
Linus Torvalds's avatar
Linus Torvalds committed
181 182 183 184


#define INFINITE_CONCURRENCY        0xFF

185
struct acpi_object_method
Linus Torvalds's avatar
Linus Torvalds committed
186 187
{
	ACPI_OBJECT_COMMON_HEADER
188 189 190 191 192 193 194 195 196 197 198 199
	u8                                      method_flags;
	u8                                      param_count;
	u32                                     aml_length;
	void                                    *semaphore;
	u8                                      *aml_start;
	u8                                      concurrency;
	u8                                      thread_count;
	acpi_owner_id                           owning_id;
};


struct acpi_object_mutex
Linus Torvalds's avatar
Linus Torvalds committed
200 201
{
	ACPI_OBJECT_COMMON_HEADER
202 203 204 205 206 207 208 209
	u16                                     sync_level;
	u16                                     acquisition_depth;
	struct acpi_thread_state                *owner_thread;
	void                                    *semaphore;
	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 object */
};
Linus Torvalds's avatar
Linus Torvalds committed
210 211


212
struct acpi_object_region
Linus Torvalds's avatar
Linus Torvalds committed
213 214 215
{
	ACPI_OBJECT_COMMON_HEADER

216
	u8                                      space_id;
217
	union acpi_operand_object               *address_space;     /* Handler for region access */
218 219 220 221 222
	struct acpi_namespace_node              *node;              /* containing object */
	union acpi_operand_object               *next;
	u32                                     length;
	acpi_physical_address                   address;
};
Linus Torvalds's avatar
Linus Torvalds committed
223 224


Andy Grover's avatar
Andy Grover committed
225 226
/******************************************************************************
 *
227
 * Objects that can be notified.  All share a common notify_info area.
Andy Grover's avatar
Andy Grover committed
228 229 230
 *
 *****************************************************************************/

231
struct acpi_object_notify_common            /* COMMON NOTIFY for POWER, PROCESSOR, DEVICE, and THERMAL */
Andy Grover's avatar
Andy Grover committed
232 233 234
{
	ACPI_OBJECT_COMMON_HEADER
	ACPI_COMMON_NOTIFY_INFO
235
};
Andy Grover's avatar
Andy Grover committed
236 237


238
struct acpi_object_device
Andy Grover's avatar
Andy Grover committed
239 240 241
{
	ACPI_OBJECT_COMMON_HEADER
	ACPI_COMMON_NOTIFY_INFO
242
	struct acpi_gpe_block_info              *gpe_block;
243
};
Andy Grover's avatar
Andy Grover committed
244 245


246
struct acpi_object_power_resource
Linus Torvalds's avatar
Linus Torvalds committed
247 248
{
	ACPI_OBJECT_COMMON_HEADER
Andy Grover's avatar
Andy Grover committed
249
	ACPI_COMMON_NOTIFY_INFO
250 251 252
	u32                                     system_level;
	u32                                     resource_order;
};
Linus Torvalds's avatar
Linus Torvalds committed
253 254


255
struct acpi_object_processor
Linus Torvalds's avatar
Linus Torvalds committed
256 257
{
	ACPI_OBJECT_COMMON_HEADER
Andy Grover's avatar
Andy Grover committed
258
	ACPI_COMMON_NOTIFY_INFO
259 260 261 262
	u32                                     proc_id;
	u32                                     length;
	acpi_io_address                         address;
};
Linus Torvalds's avatar
Linus Torvalds committed
263 264


265
struct acpi_object_thermal_zone
Linus Torvalds's avatar
Linus Torvalds committed
266 267
{
	ACPI_OBJECT_COMMON_HEADER
Andy Grover's avatar
Andy Grover committed
268
	ACPI_COMMON_NOTIFY_INFO
269
};
Linus Torvalds's avatar
Linus Torvalds committed
270 271


Andy Grover's avatar
Andy Grover committed
272 273
/******************************************************************************
 *
Linus Torvalds's avatar
Linus Torvalds committed
274
 * Fields.  All share a common header/info field.
Andy Grover's avatar
Andy Grover committed
275 276
 *
 *****************************************************************************/
Linus Torvalds's avatar
Linus Torvalds committed
277

278
struct acpi_object_field_common                         /* COMMON FIELD (for BUFFER, REGION, BANK, and INDEX fields) */
Linus Torvalds's avatar
Linus Torvalds committed
279 280 281
{
	ACPI_OBJECT_COMMON_HEADER
	ACPI_COMMON_FIELD_INFO
282 283 284
	union acpi_operand_object               *region_obj;        /* Containing Operation Region object */
			  /* (REGION/BANK fields only) */
};
Linus Torvalds's avatar
Linus Torvalds committed
285 286


287
struct acpi_object_region_field
Linus Torvalds's avatar
Linus Torvalds committed
288 289 290
{
	ACPI_OBJECT_COMMON_HEADER
	ACPI_COMMON_FIELD_INFO
291 292
	union acpi_operand_object               *region_obj;        /* Containing op_region object */
};
Linus Torvalds's avatar
Linus Torvalds committed
293 294


295
struct acpi_object_bank_field
Linus Torvalds's avatar
Linus Torvalds committed
296 297 298
{
	ACPI_OBJECT_COMMON_HEADER
	ACPI_COMMON_FIELD_INFO
299 300 301
	union acpi_operand_object               *region_obj;        /* Containing op_region object */
	union acpi_operand_object               *bank_obj;          /* bank_select Register object */
};
Linus Torvalds's avatar
Linus Torvalds committed
302 303


304
struct acpi_object_index_field
Linus Torvalds's avatar
Linus Torvalds committed
305
{
Linus Torvalds's avatar
Linus Torvalds committed
306 307 308
	ACPI_OBJECT_COMMON_HEADER
	ACPI_COMMON_FIELD_INFO

Linus Torvalds's avatar
Linus Torvalds committed
309
	/*
310
	 * No "region_obj" pointer needed since the Index and Data registers
Linus Torvalds's avatar
Linus Torvalds committed
311
	 * are each field definitions unto themselves.
Linus Torvalds's avatar
Linus Torvalds committed
312
	 */
313 314 315
	union acpi_operand_object               *index_obj;         /* Index register */
	union acpi_operand_object               *data_obj;          /* Data register */
};
Linus Torvalds's avatar
Linus Torvalds committed
316

Linus Torvalds's avatar
Linus Torvalds committed
317

318
/* The buffer_field is different in that it is part of a Buffer, not an op_region */
Linus Torvalds's avatar
Linus Torvalds committed
319

320
struct acpi_object_buffer_field
Linus Torvalds's avatar
Linus Torvalds committed
321 322
{
	ACPI_OBJECT_COMMON_HEADER
Linus Torvalds's avatar
Linus Torvalds committed
323
	ACPI_COMMON_FIELD_INFO
324 325
	union acpi_operand_object               *buffer_obj;        /* Containing Buffer object */
};
Linus Torvalds's avatar
Linus Torvalds committed
326 327


Andy Grover's avatar
Andy Grover committed
328 329 330 331 332
/******************************************************************************
 *
 * Objects for handlers
 *
 *****************************************************************************/
Linus Torvalds's avatar
Linus Torvalds committed
333

334
struct acpi_object_notify_handler
Linus Torvalds's avatar
Linus Torvalds committed
335 336
{
	ACPI_OBJECT_COMMON_HEADER
337 338 339 340
	struct acpi_namespace_node              *node;              /* Parent device */
	acpi_notify_handler                     handler;
	void                                    *context;
};
Linus Torvalds's avatar
Linus Torvalds committed
341 342 343 344


/* Flags for address handler */

Andy Grover's avatar
Andy Grover committed
345
#define ACPI_ADDR_HANDLER_DEFAULT_INSTALLED  0x1
Linus Torvalds's avatar
Linus Torvalds committed
346 347


348
struct acpi_object_addr_handler
Linus Torvalds's avatar
Linus Torvalds committed
349 350
{
	ACPI_OBJECT_COMMON_HEADER
351 352 353 354 355 356 357 358 359
	u8                                      space_id;
	u16                                     hflags;
	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;
};
Linus Torvalds's avatar
Linus Torvalds committed
360 361


Andy Grover's avatar
Andy Grover committed
362 363 364 365 366 367
/******************************************************************************
 *
 * Special internal objects
 *
 *****************************************************************************/

Linus Torvalds's avatar
Linus Torvalds committed
368 369
/*
 * The Reference object type is used for these opcodes:
370
 * Arg[0-6], Local[0-7], index_op, name_op, zero_op, one_op, ones_op, debug_op
Linus Torvalds's avatar
Linus Torvalds committed
371
 */
372
struct acpi_object_reference
Linus Torvalds's avatar
Linus Torvalds committed
373 374
{
	ACPI_OBJECT_COMMON_HEADER
375 376 377 378 379 380 381
	u8                                      target_type;        /* Used for index_op */
	u16                                     opcode;
	u32                                     offset;             /* Used for arg_op, local_op, and index_op */
	void                                    *object;            /* name_op=>HANDLE to obj, index_op=>union acpi_operand_object  */
	struct acpi_namespace_node              *node;
	union acpi_operand_object               **where;
};
Linus Torvalds's avatar
Linus Torvalds committed
382 383 384 385


/*
 * Extra object is used as additional storage for types that
386
 * have AML code in their declarations (term_args) that must be
Linus Torvalds's avatar
Linus Torvalds committed
387 388
 * evaluated at run time.
 *
389
 * Currently: Region and field_unit types
Linus Torvalds's avatar
Linus Torvalds committed
390
 */
391
struct acpi_object_extra
Linus Torvalds's avatar
Linus Torvalds committed
392 393
{
	ACPI_OBJECT_COMMON_HEADER
394 395 396 397 398 399 400
	u8                                      byte_fill1;
	u16                                     word_fill1;
	u32                                     aml_length;
	u8                                      *aml_start;
	struct acpi_namespace_node              *method_REG;        /* _REG method for this region (if any) */
	void                                    *region_context;    /* Region-specific data */
};
Linus Torvalds's avatar
Linus Torvalds committed
401 402


Andy Grover's avatar
Andy Grover committed
403 404
/* Additional data that can be attached to namespace nodes */

405
struct acpi_object_data
Andy Grover's avatar
Andy Grover committed
406 407
{
	ACPI_OBJECT_COMMON_HEADER
408 409 410
	acpi_object_handler                     handler;
	void                                    *pointer;
};
Andy Grover's avatar
Andy Grover committed
411 412


Andy Grover's avatar
Andy Grover committed
413 414
/* Structure used when objects are cached for reuse */

415
struct acpi_object_cache_list
Andy Grover's avatar
Andy Grover committed
416 417
{
	ACPI_OBJECT_COMMON_HEADER
418 419
	union acpi_operand_object               *next;              /* Link for object cache and internal lists*/
};
Andy Grover's avatar
Andy Grover committed
420 421


Linus Torvalds's avatar
Linus Torvalds committed
422 423
/******************************************************************************
 *
424
 * union acpi_operand_object Descriptor - a giant union of all of the above
Linus Torvalds's avatar
Linus Torvalds committed
425 426 427
 *
 *****************************************************************************/

428
union acpi_operand_object
Linus Torvalds's avatar
Linus Torvalds committed
429
{
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
	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;
449 450
	struct acpi_object_notify_handler       notify;
	struct acpi_object_addr_handler         address_space;
451 452 453 454 455
	struct acpi_object_reference            reference;
	struct acpi_object_extra                extra;
	struct acpi_object_data                 data;
	struct acpi_object_cache_list           cache;
};
Linus Torvalds's avatar
Linus Torvalds committed
456

457 458 459

/******************************************************************************
 *
460
 * union acpi_descriptor - objects that share a common descriptor identifier
461 462 463 464 465 466
 *
 *****************************************************************************/


/* Object descriptor types */

467
#define ACPI_DESC_TYPE_CACHED           0x11        /* Used only when object is cached */
468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483
#define ACPI_DESC_TYPE_STATE            0x20
#define ACPI_DESC_TYPE_STATE_UPDATE     0x21
#define ACPI_DESC_TYPE_STATE_PACKAGE    0x22
#define ACPI_DESC_TYPE_STATE_CONTROL    0x23
#define ACPI_DESC_TYPE_STATE_RPSCOPE    0x24
#define ACPI_DESC_TYPE_STATE_PSCOPE     0x25
#define ACPI_DESC_TYPE_STATE_WSCOPE     0x26
#define ACPI_DESC_TYPE_STATE_RESULT     0x27
#define ACPI_DESC_TYPE_STATE_NOTIFY     0x28
#define ACPI_DESC_TYPE_STATE_THREAD     0x29
#define ACPI_DESC_TYPE_WALK             0x44
#define ACPI_DESC_TYPE_PARSER           0x66
#define ACPI_DESC_TYPE_OPERAND          0x88
#define ACPI_DESC_TYPE_NAMED            0xAA


484
union acpi_descriptor
485
{
486 487 488 489 490
	u8                                      descriptor_id;  /* To differentiate various internal objs */\
	union acpi_operand_object               object;
	struct acpi_namespace_node              node;
	union acpi_parse_object                 op;
};
491 492


Linus Torvalds's avatar
Linus Torvalds committed
493
#endif /* _ACOBJECT_H */