Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6595 serge 1
/******************************************************************************
2
 *
3
 * Name: acobject.h - Definition of union acpi_operand_object  (Internal object only)
4
 *
5
 *****************************************************************************/
6
 
7
/*
8
 * Copyright (C) 2000 - 2015, Intel Corp.
9
 * All rights reserved.
10
 *
11
 * Redistribution and use in source and binary forms, with or without
12
 * modification, are permitted provided that the following conditions
13
 * are met:
14
 * 1. Redistributions of source code must retain the above copyright
15
 *    notice, this list of conditions, and the following disclaimer,
16
 *    without modification.
17
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18
 *    substantially similar to the "NO WARRANTY" disclaimer below
19
 *    ("Disclaimer") and any redistribution must be conditioned upon
20
 *    including a substantially similar Disclaimer requirement for further
21
 *    binary redistribution.
22
 * 3. Neither the names of the above-listed copyright holders nor the names
23
 *    of any contributors may be used to endorse or promote products derived
24
 *    from this software without specific prior written permission.
25
 *
26
 * Alternatively, this software may be distributed under the terms of the
27
 * GNU General Public License ("GPL") version 2 as published by the Free
28
 * Software Foundation.
29
 *
30
 * NO WARRANTY
31
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41
 * POSSIBILITY OF SUCH DAMAGES.
42
 */
43
 
44
#ifndef _ACOBJECT_H
45
#define _ACOBJECT_H
46
 
47
/* acpisrc:struct_defs -- for acpisrc conversion */
48
 
49
/*
50
 * The union acpi_operand_object is used to pass AML operands from the dispatcher
51
 * to the interpreter, and to keep track of the various handlers such as
52
 * address space handlers and notify handlers. The object is a constant
53
 * size in order to allow it to be cached and reused.
54
 *
55
 * Note: The object is optimized to be aligned and will not work if it is
56
 * byte-packed.
57
 */
58
#if ACPI_MACHINE_WIDTH == 64
59
#pragma pack(8)
60
#else
61
#pragma pack(4)
62
#endif
63
 
64
/*******************************************************************************
65
 *
66
 * Common Descriptors
67
 *
68
 ******************************************************************************/
69
 
70
/*
71
 * Common area for all objects.
72
 *
73
 * descriptor_type is used to differentiate between internal descriptors, and
74
 * must be in the same place across all descriptors
75
 *
76
 * Note: The descriptor_type and Type fields must appear in the identical
77
 * position in both the struct acpi_namespace_node and union acpi_operand_object
78
 * structures.
79
 */
80
#define ACPI_OBJECT_COMMON_HEADER \
81
	union acpi_operand_object       *next_object;       /* Objects linked to parent NS node */\
82
	u8                              descriptor_type;    /* To differentiate various internal objs */\
83
	u8                              type;               /* acpi_object_type */\
84
	u16                             reference_count;    /* For object deletion management */\
85
	u8                              flags;
86
	/*
87
	 * Note: There are 3 bytes available here before the
88
	 * next natural alignment boundary (for both 32/64 cases)
89
	 */
90
 
91
/* Values for Flag byte above */
92
 
93
#define AOPOBJ_AML_CONSTANT         0x01	/* Integer is an AML constant */
94
#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
#define AOPOBJ_OBJECT_INITIALIZED   0x08	/* Region is initialized, _REG was run */
97
#define AOPOBJ_SETUP_COMPLETE       0x10	/* Region setup is complete */
98
#define AOPOBJ_INVALID              0x20	/* Host OS won't allow a Region address */
99
 
100
/******************************************************************************
101
 *
102
 * Basic data types
103
 *
104
 *****************************************************************************/
105
 
106
struct acpi_object_common {
107
ACPI_OBJECT_COMMON_HEADER};
108
 
109
struct acpi_object_integer {
110
	ACPI_OBJECT_COMMON_HEADER u8 fill[3];	/* Prevent warning on some compilers */
111
	u64 value;
112
};
113
 
114
/*
115
 * Note: The String and Buffer object must be identical through the
116
 * pointer and length elements. There is code that depends on this.
117
 *
118
 * Fields common to both Strings and Buffers
119
 */
120
#define ACPI_COMMON_BUFFER_INFO(_type) \
121
	_type                           *pointer; \
122
	u32                             length;
123
 
124
struct acpi_object_string {	/* Null terminated, ASCII characters only */
125
	ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_BUFFER_INFO(char)	/* String in AML stream or allocated string */
126
};
127
 
128
struct acpi_object_buffer {
129
	ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_BUFFER_INFO(u8)	/* Buffer in AML stream or allocated buffer */
130
	u32 aml_length;
131
	u8 *aml_start;
132
	struct acpi_namespace_node *node;	/* Link back to parent node */
133
};
134
 
135
struct acpi_object_package {
136
	ACPI_OBJECT_COMMON_HEADER struct acpi_namespace_node *node;	/* Link back to parent node */
137
	union acpi_operand_object **elements;	/* Array of pointers to acpi_objects */
138
	u8 *aml_start;
139
	u32 aml_length;
140
	u32 count;		/* # of elements in package */
141
};
142
 
143
/******************************************************************************
144
 *
145
 * Complex data types
146
 *
147
 *****************************************************************************/
148
 
149
struct acpi_object_event {
150
	ACPI_OBJECT_COMMON_HEADER acpi_semaphore os_semaphore;	/* Actual OS synchronization object */
151
};
152
 
153
struct acpi_object_mutex {
154
	ACPI_OBJECT_COMMON_HEADER u8 sync_level;	/* 0-15, specified in Mutex() call */
155
	u16 acquisition_depth;	/* Allow multiple Acquires, same thread */
156
	acpi_mutex os_mutex;	/* Actual OS synchronization object */
157
	acpi_thread_id thread_id;	/* Current owner of the mutex */
158
	struct acpi_thread_state *owner_thread;	/* Current owner of the mutex */
159
	union acpi_operand_object *prev;	/* Link for list of acquired mutexes */
160
	union acpi_operand_object *next;	/* Link for list of acquired mutexes */
161
	struct acpi_namespace_node *node;	/* Containing namespace node */
162
	u8 original_sync_level;	/* Owner's original sync level (0-15) */
163
};
164
 
165
struct acpi_object_region {
166
	ACPI_OBJECT_COMMON_HEADER u8 space_id;
167
	struct acpi_namespace_node *node;	/* Containing namespace node */
168
	union acpi_operand_object *handler;	/* Handler for region access */
169
	union acpi_operand_object *next;
170
	acpi_physical_address address;
171
	u32 length;
172
};
173
 
174
struct acpi_object_method {
175
	ACPI_OBJECT_COMMON_HEADER u8 info_flags;
176
	u8 param_count;
177
	u8 sync_level;
178
	union acpi_operand_object *mutex;
179
	union acpi_operand_object *node;
180
	u8 *aml_start;
181
	union {
182
		acpi_internal_method implementation;
183
		union acpi_operand_object *handler;
184
	} dispatch;
185
 
186
	u32 aml_length;
187
	u8 thread_count;
188
	acpi_owner_id owner_id;
189
};
190
 
191
/* Flags for info_flags field above */
192
 
193
#define ACPI_METHOD_MODULE_LEVEL        0x01	/* Method is actually module-level code */
194
#define ACPI_METHOD_INTERNAL_ONLY       0x02	/* Method is implemented internally (_OSI) */
195
#define ACPI_METHOD_SERIALIZED          0x04	/* Method is serialized */
196
#define ACPI_METHOD_SERIALIZED_PENDING  0x08	/* Method is to be marked serialized */
197
#define ACPI_METHOD_IGNORE_SYNC_LEVEL   0x10	/* Method was auto-serialized at table load time */
198
#define ACPI_METHOD_MODIFIED_NAMESPACE  0x20	/* Method modified the namespace */
199
 
200
/******************************************************************************
201
 *
202
 * Objects that can be notified. All share a common notify_info area.
203
 *
204
 *****************************************************************************/
205
 
206
/*
207
 * Common fields for objects that support ASL notifications
208
 */
209
#define ACPI_COMMON_NOTIFY_INFO \
210
	union acpi_operand_object       *notify_list[2];    /* Handlers for system/device notifies */\
211
	union acpi_operand_object       *handler;	/* Handler for Address space */
212
 
213
struct acpi_object_notify_common {	/* COMMON NOTIFY for POWER, PROCESSOR, DEVICE, and THERMAL */
214
ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_NOTIFY_INFO};
215
 
216
struct acpi_object_device {
217
	ACPI_OBJECT_COMMON_HEADER
218
	    ACPI_COMMON_NOTIFY_INFO struct acpi_gpe_block_info *gpe_block;
219
};
220
 
221
struct acpi_object_power_resource {
222
	ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_NOTIFY_INFO u32 system_level;
223
	u32 resource_order;
224
};
225
 
226
struct acpi_object_processor {
227
	ACPI_OBJECT_COMMON_HEADER
228
	    /* The next two fields take advantage of the 3-byte space before NOTIFY_INFO */
229
	u8 proc_id;
230
	u8 length;
231
	ACPI_COMMON_NOTIFY_INFO acpi_io_address address;
232
};
233
 
234
struct acpi_object_thermal_zone {
235
ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_NOTIFY_INFO};
236
 
237
/******************************************************************************
238
 *
239
 * Fields. All share a common header/info field.
240
 *
241
 *****************************************************************************/
242
 
243
/*
244
 * Common bitfield for the field objects
245
 * "Field Datum"  -- a datum from the actual field object
246
 * "Buffer Datum" -- a datum from a user buffer, read from or to be written to the field
247
 */
248
#define ACPI_COMMON_FIELD_INFO \
249
	u8                              field_flags;        /* Access, update, and lock bits */\
250
	u8                              attribute;          /* From access_as keyword */\
251
	u8                              access_byte_width;  /* Read/Write size in bytes */\
252
	struct acpi_namespace_node      *node;              /* Link back to parent node */\
253
	u32                             bit_length;         /* Length of field in bits */\
254
	u32                             base_byte_offset;   /* Byte offset within containing object */\
255
	u32                             value;              /* Value to store into the Bank or Index register */\
256
	u8                              start_field_bit_offset;/* Bit offset within first field datum (0-63) */\
257
	u8                              access_length;	/* For serial regions/fields */
258
 
259
 
260
struct acpi_object_field_common {	/* COMMON FIELD (for BUFFER, REGION, BANK, and INDEX fields) */
261
	ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO union acpi_operand_object *region_obj;	/* Parent Operation Region object (REGION/BANK fields only) */
262
};
263
 
264
struct acpi_object_region_field {
265
	ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO u16 resource_length;
266
	union acpi_operand_object *region_obj;	/* Containing op_region object */
267
	u8 *resource_buffer;	/* resource_template for serial regions/fields */
268
	u16 pin_number_index;	/* Index relative to previous Connection/Template */
269
};
270
 
271
struct acpi_object_bank_field {
272
	ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO union acpi_operand_object *region_obj;	/* Containing op_region object */
273
	union acpi_operand_object *bank_obj;	/* bank_select Register object */
274
};
275
 
276
struct acpi_object_index_field {
277
	ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO
278
	    /*
279
	     * No "RegionObj" pointer needed since the Index and Data registers
280
	     * are each field definitions unto themselves.
281
	     */
282
	union acpi_operand_object *index_obj;	/* Index register */
283
	union acpi_operand_object *data_obj;	/* Data register */
284
};
285
 
286
/* The buffer_field is different in that it is part of a Buffer, not an op_region */
287
 
288
struct acpi_object_buffer_field {
289
	ACPI_OBJECT_COMMON_HEADER ACPI_COMMON_FIELD_INFO union acpi_operand_object *buffer_obj;	/* Containing Buffer object */
290
};
291
 
292
/******************************************************************************
293
 *
294
 * Objects for handlers
295
 *
296
 *****************************************************************************/
297
 
298
struct acpi_object_notify_handler {
299
	ACPI_OBJECT_COMMON_HEADER struct acpi_namespace_node *node;	/* Parent device */
300
	u32 handler_type;	/* Type: Device/System/Both */
301
	acpi_notify_handler handler;	/* Handler address */
302
	void *context;
303
	union acpi_operand_object *next[2];	/* Device and System handler lists */
304
};
305
 
306
struct acpi_object_addr_handler {
307
	ACPI_OBJECT_COMMON_HEADER u8 space_id;
308
	u8 handler_flags;
309
	acpi_adr_space_handler handler;
310
	struct acpi_namespace_node *node;	/* Parent device */
311
	void *context;
312
	acpi_adr_space_setup setup;
313
	union acpi_operand_object *region_list;	/* Regions using this handler */
314
	union acpi_operand_object *next;
315
};
316
 
317
/* Flags for address handler (handler_flags) */
318
 
319
#define ACPI_ADDR_HANDLER_DEFAULT_INSTALLED  0x01
320
 
321
/******************************************************************************
322
 *
323
 * Special internal objects
324
 *
325
 *****************************************************************************/
326
 
327
/*
328
 * The Reference object is used for these opcodes:
329
 * Arg[0-6], Local[0-7], index_op, name_op, ref_of_op, load_op, load_table_op, debug_op
330
 * The Reference.Class differentiates these types.
331
 */
332
struct acpi_object_reference {
333
	ACPI_OBJECT_COMMON_HEADER u8 class;	/* Reference Class */
334
	u8 target_type;		/* Used for Index Op */
335
	u8 reserved;
336
	void *object;		/* name_op=>HANDLE to obj, index_op=>union acpi_operand_object */
337
	struct acpi_namespace_node *node;	/* ref_of or Namepath */
338
	union acpi_operand_object **where;	/* Target of Index */
339
	u8 *index_pointer;	/* Used for Buffers and Strings */
340
	u32 value;		/* Used for Local/Arg/Index/ddb_handle */
341
};
342
 
343
/* Values for Reference.Class above */
344
 
345
typedef enum {
346
	ACPI_REFCLASS_LOCAL = 0,	/* Method local */
347
	ACPI_REFCLASS_ARG = 1,	/* Method argument */
348
	ACPI_REFCLASS_REFOF = 2,	/* Result of ref_of() TBD: Split to Ref/Node and Ref/operand_obj? */
349
	ACPI_REFCLASS_INDEX = 3,	/* Result of Index() */
350
	ACPI_REFCLASS_TABLE = 4,	/* ddb_handle - Load(), load_table() */
351
	ACPI_REFCLASS_NAME = 5,	/* Reference to a named object */
352
	ACPI_REFCLASS_DEBUG = 6,	/* Debug object */
353
 
354
	ACPI_REFCLASS_MAX = 6
355
} ACPI_REFERENCE_CLASSES;
356
 
357
/*
358
 * Extra object is used as additional storage for types that
359
 * have AML code in their declarations (term_args) that must be
360
 * evaluated at run time.
361
 *
362
 * Currently: Region and field_unit types
363
 */
364
struct acpi_object_extra {
365
	ACPI_OBJECT_COMMON_HEADER struct acpi_namespace_node *method_REG;	/* _REG method for this region (if any) */
366
	struct acpi_namespace_node *scope_node;
367
	void *region_context;	/* Region-specific data */
368
	u8 *aml_start;
369
	u32 aml_length;
370
};
371
 
372
/* Additional data that can be attached to namespace nodes */
373
 
374
struct acpi_object_data {
375
	ACPI_OBJECT_COMMON_HEADER acpi_object_handler handler;
376
	void *pointer;
377
};
378
 
379
/* Structure used when objects are cached for reuse */
380
 
381
struct acpi_object_cache_list {
382
	ACPI_OBJECT_COMMON_HEADER union acpi_operand_object *next;	/* Link for object cache and internal lists */
383
};
384
 
385
/******************************************************************************
386
 *
387
 * union acpi_operand_object descriptor - a giant union of all of the above
388
 *
389
 *****************************************************************************/
390
 
391
union acpi_operand_object {
392
	struct acpi_object_common common;
393
	struct acpi_object_integer integer;
394
	struct acpi_object_string string;
395
	struct acpi_object_buffer buffer;
396
	struct acpi_object_package package;
397
	struct acpi_object_event event;
398
	struct acpi_object_method method;
399
	struct acpi_object_mutex mutex;
400
	struct acpi_object_region region;
401
	struct acpi_object_notify_common common_notify;
402
	struct acpi_object_device device;
403
	struct acpi_object_power_resource power_resource;
404
	struct acpi_object_processor processor;
405
	struct acpi_object_thermal_zone thermal_zone;
406
	struct acpi_object_field_common common_field;
407
	struct acpi_object_region_field field;
408
	struct acpi_object_buffer_field buffer_field;
409
	struct acpi_object_bank_field bank_field;
410
	struct acpi_object_index_field index_field;
411
	struct acpi_object_notify_handler notify;
412
	struct acpi_object_addr_handler address_space;
413
	struct acpi_object_reference reference;
414
	struct acpi_object_extra extra;
415
	struct acpi_object_data data;
416
	struct acpi_object_cache_list cache;
417
 
418
	/*
419
	 * Add namespace node to union in order to simplify code that accepts both
420
	 * ACPI_OPERAND_OBJECTs and ACPI_NAMESPACE_NODEs. The structures share
421
	 * a common descriptor_type field in order to differentiate them.
422
	 */
423
	struct acpi_namespace_node node;
424
};
425
 
426
/******************************************************************************
427
 *
428
 * union acpi_descriptor - objects that share a common descriptor identifier
429
 *
430
 *****************************************************************************/
431
 
432
/* Object descriptor types */
433
 
434
#define ACPI_DESC_TYPE_CACHED           0x01	/* Used only when object is cached */
435
#define ACPI_DESC_TYPE_STATE            0x02
436
#define ACPI_DESC_TYPE_STATE_UPDATE     0x03
437
#define ACPI_DESC_TYPE_STATE_PACKAGE    0x04
438
#define ACPI_DESC_TYPE_STATE_CONTROL    0x05
439
#define ACPI_DESC_TYPE_STATE_RPSCOPE    0x06
440
#define ACPI_DESC_TYPE_STATE_PSCOPE     0x07
441
#define ACPI_DESC_TYPE_STATE_WSCOPE     0x08
442
#define ACPI_DESC_TYPE_STATE_RESULT     0x09
443
#define ACPI_DESC_TYPE_STATE_NOTIFY     0x0A
444
#define ACPI_DESC_TYPE_STATE_THREAD     0x0B
445
#define ACPI_DESC_TYPE_WALK             0x0C
446
#define ACPI_DESC_TYPE_PARSER           0x0D
447
#define ACPI_DESC_TYPE_OPERAND          0x0E
448
#define ACPI_DESC_TYPE_NAMED            0x0F
449
#define ACPI_DESC_TYPE_MAX              0x0F
450
 
451
struct acpi_common_descriptor {
452
	void *common_pointer;
453
	u8 descriptor_type;	/* To differentiate various internal objs */
454
};
455
 
456
union acpi_descriptor {
457
	struct acpi_common_descriptor common;
458
	union acpi_operand_object object;
459
	struct acpi_namespace_node node;
460
	union acpi_parse_object op;
461
};
462
 
463
#pragma pack()
464
 
465
#endif				/* _ACOBJECT_H */