acinterp.h 15.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/******************************************************************************
 *
 * Name: acinterp.h - Interpreter subcomponent prototypes and defines
 *
 *****************************************************************************/

/*
B
Bob Moore 已提交
8
 * Copyright (C) 2000 - 2006, R. Byron Moore
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 __ACINTERP_H__
#define __ACINTERP_H__

B
Bob Moore 已提交
47 48 49 50 51 52 53 54 55
#define ACPI_WALK_OPERANDS          (&(walk_state->operands [walk_state->num_operands -1]))

/* Macros for tables used for debug output */

#define ACPI_EXD_OFFSET(f)          (u8) ACPI_OFFSET (union acpi_operand_object,f)
#define ACPI_EXD_NSOFFSET(f)        (u8) ACPI_OFFSET (struct acpi_namespace_node,f)
#define ACPI_EXD_TABLE_SIZE(name)   (sizeof(name) / sizeof (struct acpi_exdump_info))

/*
B
Bob Moore 已提交
56 57 58 59 60 61
 * If possible, pack the following structures to byte alignment, since we
 * don't care about performance for debug output. Two cases where we cannot
 * pack the structures:
 *
 * 1) Hardware does not support misaligned memory transfers
 * 2) Compiler does not support pointers within packed structures
B
Bob Moore 已提交
62
 */
B
Bob Moore 已提交
63
#if (!defined(ACPI_MISALIGNMENT_NOT_SUPPORTED) && !defined(ACPI_PACKED_POINTERS_NOT_SUPPORTED))
B
Bob Moore 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
#pragma pack(1)
#endif

typedef const struct acpi_exdump_info {
	u8 opcode;
	u8 offset;
	char *name;

} acpi_exdump_info;

/* Values for the Opcode field above */

#define ACPI_EXD_INIT                   0
#define ACPI_EXD_TYPE                   1
#define ACPI_EXD_UINT8                  2
#define ACPI_EXD_UINT16                 3
#define ACPI_EXD_UINT32                 4
#define ACPI_EXD_UINT64                 5
#define ACPI_EXD_LITERAL                6
#define ACPI_EXD_POINTER                7
#define ACPI_EXD_ADDRESS                8
#define ACPI_EXD_STRING                 9
#define ACPI_EXD_BUFFER                 10
#define ACPI_EXD_PACKAGE                11
#define ACPI_EXD_FIELD                  12
#define ACPI_EXD_REFERENCE              13

/* restore default alignment */

#pragma pack()
L
Linus Torvalds 已提交
94 95 96 97 98

/*
 * exconvrt - object conversion
 */
acpi_status
L
Len Brown 已提交
99 100
acpi_ex_convert_to_integer(union acpi_operand_object *obj_desc,
			   union acpi_operand_object **result_desc, u32 flags);
L
Linus Torvalds 已提交
101 102

acpi_status
L
Len Brown 已提交
103 104
acpi_ex_convert_to_buffer(union acpi_operand_object *obj_desc,
			  union acpi_operand_object **result_desc);
L
Linus Torvalds 已提交
105 106

acpi_status
L
Len Brown 已提交
107 108
acpi_ex_convert_to_string(union acpi_operand_object *obj_desc,
			  union acpi_operand_object **result_desc, u32 type);
L
Linus Torvalds 已提交
109 110 111 112 113 114 115 116 117

/* Types for ->String conversion */

#define ACPI_EXPLICIT_BYTE_COPY         0x00000000
#define ACPI_EXPLICIT_CONVERT_HEX       0x00000001
#define ACPI_IMPLICIT_CONVERT_HEX       0x00000002
#define ACPI_EXPLICIT_CONVERT_DECIMAL   0x00000003

acpi_status
L
Len Brown 已提交
118 119 120 121
acpi_ex_convert_to_target_type(acpi_object_type destination_type,
			       union acpi_operand_object *source_desc,
			       union acpi_operand_object **result_desc,
			       struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
122 123 124 125 126

/*
 * exfield - ACPI AML (p-code) execution - field manipulation
 */
acpi_status
L
Len Brown 已提交
127 128
acpi_ex_common_buffer_setup(union acpi_operand_object *obj_desc,
			    u32 buffer_length, u32 * datum_count);
L
Linus Torvalds 已提交
129 130

acpi_status
L
Len Brown 已提交
131 132 133 134
acpi_ex_write_with_update_rule(union acpi_operand_object *obj_desc,
			       acpi_integer mask,
			       acpi_integer field_value,
			       u32 field_datum_byte_offset);
L
Linus Torvalds 已提交
135 136

void
L
Len Brown 已提交
137 138 139 140
acpi_ex_get_buffer_datum(acpi_integer * datum,
			 void *buffer,
			 u32 buffer_length,
			 u32 byte_granularity, u32 buffer_offset);
L
Linus Torvalds 已提交
141 142

void
L
Len Brown 已提交
143 144 145 146
acpi_ex_set_buffer_datum(acpi_integer merged_datum,
			 void *buffer,
			 u32 buffer_length,
			 u32 byte_granularity, u32 buffer_offset);
L
Linus Torvalds 已提交
147 148

acpi_status
L
Len Brown 已提交
149 150 151
acpi_ex_read_data_from_field(struct acpi_walk_state *walk_state,
			     union acpi_operand_object *obj_desc,
			     union acpi_operand_object **ret_buffer_desc);
L
Linus Torvalds 已提交
152 153

acpi_status
L
Len Brown 已提交
154 155 156
acpi_ex_write_data_to_field(union acpi_operand_object *source_desc,
			    union acpi_operand_object *obj_desc,
			    union acpi_operand_object **result_desc);
R
Robert Moore 已提交
157

L
Linus Torvalds 已提交
158
/*
R
Robert Moore 已提交
159
 * exfldio - low level field I/O
L
Linus Torvalds 已提交
160 161
 */
acpi_status
L
Len Brown 已提交
162 163
acpi_ex_extract_from_field(union acpi_operand_object *obj_desc,
			   void *buffer, u32 buffer_length);
L
Linus Torvalds 已提交
164 165

acpi_status
L
Len Brown 已提交
166 167
acpi_ex_insert_into_field(union acpi_operand_object *obj_desc,
			  void *buffer, u32 buffer_length);
L
Linus Torvalds 已提交
168 169

acpi_status
L
Len Brown 已提交
170 171 172
acpi_ex_access_region(union acpi_operand_object *obj_desc,
		      u32 field_datum_byte_offset,
		      acpi_integer * value, u32 read_write);
L
Linus Torvalds 已提交
173

R
Robert Moore 已提交
174 175 176
/*
 * exmisc - misc support routines
 */
L
Linus Torvalds 已提交
177
acpi_status
L
Len Brown 已提交
178 179 180
acpi_ex_get_object_reference(union acpi_operand_object *obj_desc,
			     union acpi_operand_object **return_desc,
			     struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
181 182

acpi_status
L
Len Brown 已提交
183 184 185 186
acpi_ex_concat_template(union acpi_operand_object *obj_desc,
			union acpi_operand_object *obj_desc2,
			union acpi_operand_object **actual_return_desc,
			struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
187 188

acpi_status
L
Len Brown 已提交
189 190 191 192
acpi_ex_do_concatenate(union acpi_operand_object *obj_desc,
		       union acpi_operand_object *obj_desc2,
		       union acpi_operand_object **actual_return_desc,
		       struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
193 194

acpi_status
L
Len Brown 已提交
195 196 197
acpi_ex_do_logical_numeric_op(u16 opcode,
			      acpi_integer integer0,
			      acpi_integer integer1, u8 * logical_result);
L
Linus Torvalds 已提交
198 199

acpi_status
L
Len Brown 已提交
200 201 202
acpi_ex_do_logical_op(u16 opcode,
		      union acpi_operand_object *operand0,
		      union acpi_operand_object *operand1, u8 * logical_result);
L
Linus Torvalds 已提交
203 204

acpi_integer
L
Len Brown 已提交
205
acpi_ex_do_math_op(u16 opcode, acpi_integer operand0, acpi_integer operand1);
L
Linus Torvalds 已提交
206

L
Len Brown 已提交
207
acpi_status acpi_ex_create_mutex(struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
208

L
Len Brown 已提交
209
acpi_status acpi_ex_create_processor(struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
210

L
Len Brown 已提交
211
acpi_status acpi_ex_create_power_resource(struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
212 213

acpi_status
L
Len Brown 已提交
214 215 216
acpi_ex_create_region(u8 * aml_start,
		      u32 aml_length,
		      u8 region_space, struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
217

L
Len Brown 已提交
218
acpi_status acpi_ex_create_table_region(struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
219

L
Len Brown 已提交
220
acpi_status acpi_ex_create_event(struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
221

L
Len Brown 已提交
222
acpi_status acpi_ex_create_alias(struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
223 224

acpi_status
L
Len Brown 已提交
225 226
acpi_ex_create_method(u8 * aml_start,
		      u32 aml_length, struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
227 228 229 230 231

/*
 * exconfig - dynamic table load/unload
 */
acpi_status
L
Len Brown 已提交
232 233 234
acpi_ex_load_op(union acpi_operand_object *obj_desc,
		union acpi_operand_object *target,
		struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
235 236

acpi_status
L
Len Brown 已提交
237 238
acpi_ex_load_table_op(struct acpi_walk_state *walk_state,
		      union acpi_operand_object **return_desc);
L
Linus Torvalds 已提交
239

L
Len Brown 已提交
240
acpi_status acpi_ex_unload_table(union acpi_operand_object *ddb_handle);
L
Linus Torvalds 已提交
241 242 243 244 245

/*
 * exmutex - mutex support
 */
acpi_status
L
Len Brown 已提交
246 247 248
acpi_ex_acquire_mutex(union acpi_operand_object *time_desc,
		      union acpi_operand_object *obj_desc,
		      struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
249 250

acpi_status
L
Len Brown 已提交
251 252
acpi_ex_release_mutex(union acpi_operand_object *obj_desc,
		      struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
253

L
Len Brown 已提交
254
void acpi_ex_release_all_mutexes(struct acpi_thread_state *thread);
L
Linus Torvalds 已提交
255

L
Len Brown 已提交
256
void acpi_ex_unlink_mutex(union acpi_operand_object *obj_desc);
L
Linus Torvalds 已提交
257 258

/*
R
Robert Moore 已提交
259
 * exprep - ACPI AML execution - prep utilities
L
Linus Torvalds 已提交
260 261
 */
acpi_status
L
Len Brown 已提交
262 263 264 265
acpi_ex_prep_common_field_object(union acpi_operand_object *obj_desc,
				 u8 field_flags,
				 u8 field_attribute,
				 u32 field_bit_position, u32 field_bit_length);
L
Linus Torvalds 已提交
266

L
Len Brown 已提交
267
acpi_status acpi_ex_prep_field_value(struct acpi_create_field_info *info);
R
Robert Moore 已提交
268

L
Linus Torvalds 已提交
269 270 271 272
/*
 * exsystem - Interface to OS services
 */
acpi_status
L
Len Brown 已提交
273 274
acpi_ex_system_do_notify_op(union acpi_operand_object *value,
			    union acpi_operand_object *obj_desc);
L
Linus Torvalds 已提交
275

L
Len Brown 已提交
276
acpi_status acpi_ex_system_do_suspend(acpi_integer time);
L
Linus Torvalds 已提交
277

L
Len Brown 已提交
278
acpi_status acpi_ex_system_do_stall(u32 time);
L
Linus Torvalds 已提交
279

L
Len Brown 已提交
280
acpi_status acpi_ex_system_signal_event(union acpi_operand_object *obj_desc);
L
Linus Torvalds 已提交
281 282

acpi_status
L
Len Brown 已提交
283 284
acpi_ex_system_wait_event(union acpi_operand_object *time,
			  union acpi_operand_object *obj_desc);
L
Linus Torvalds 已提交
285

L
Len Brown 已提交
286
acpi_status acpi_ex_system_reset_event(union acpi_operand_object *obj_desc);
L
Linus Torvalds 已提交
287

B
Bob Moore 已提交
288 289 290 291
acpi_status
acpi_ex_system_wait_semaphore(acpi_semaphore semaphore, u16 timeout);

acpi_status acpi_ex_system_wait_mutex(acpi_mutex mutex, u16 timeout);
L
Linus Torvalds 已提交
292 293

/*
R
Robert Moore 已提交
294
 * exoparg1 - ACPI AML execution, 1 operand
L
Linus Torvalds 已提交
295
 */
L
Len Brown 已提交
296
acpi_status acpi_ex_opcode_0A_0T_1R(struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
297

L
Len Brown 已提交
298
acpi_status acpi_ex_opcode_1A_0T_0R(struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
299

L
Len Brown 已提交
300
acpi_status acpi_ex_opcode_1A_0T_1R(struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
301

L
Len Brown 已提交
302
acpi_status acpi_ex_opcode_1A_1T_1R(struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
303

L
Len Brown 已提交
304
acpi_status acpi_ex_opcode_1A_1T_0R(struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
305 306

/*
R
Robert Moore 已提交
307
 * exoparg2 - ACPI AML execution, 2 operands
L
Linus Torvalds 已提交
308
 */
L
Len Brown 已提交
309
acpi_status acpi_ex_opcode_2A_0T_0R(struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
310

L
Len Brown 已提交
311
acpi_status acpi_ex_opcode_2A_0T_1R(struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
312

L
Len Brown 已提交
313
acpi_status acpi_ex_opcode_2A_1T_1R(struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
314

L
Len Brown 已提交
315
acpi_status acpi_ex_opcode_2A_2T_1R(struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
316 317

/*
R
Robert Moore 已提交
318 319
 * exoparg3 - ACPI AML execution, 3 operands
 */
L
Len Brown 已提交
320
acpi_status acpi_ex_opcode_3A_0T_0R(struct acpi_walk_state *walk_state);
R
Robert Moore 已提交
321

L
Len Brown 已提交
322
acpi_status acpi_ex_opcode_3A_1T_1R(struct acpi_walk_state *walk_state);
R
Robert Moore 已提交
323 324 325

/*
 * exoparg6 - ACPI AML execution, 6 operands
L
Linus Torvalds 已提交
326
 */
L
Len Brown 已提交
327
acpi_status acpi_ex_opcode_6A_0T_1R(struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
328

R
Robert Moore 已提交
329 330 331
/*
 * exresolv - Object resolution and get value functions
 */
L
Linus Torvalds 已提交
332
acpi_status
L
Len Brown 已提交
333 334
acpi_ex_resolve_to_value(union acpi_operand_object **stack_ptr,
			 struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
335 336

acpi_status
L
Len Brown 已提交
337 338 339 340
acpi_ex_resolve_multiple(struct acpi_walk_state *walk_state,
			 union acpi_operand_object *operand,
			 acpi_object_type * return_type,
			 union acpi_operand_object **return_desc);
R
Robert Moore 已提交
341 342 343 344 345

/*
 * exresnte - resolve namespace node
 */
acpi_status
L
Len Brown 已提交
346 347
acpi_ex_resolve_node_to_value(struct acpi_namespace_node **stack_ptr,
			      struct acpi_walk_state *walk_state);
R
Robert Moore 已提交
348 349 350 351

/*
 * exresop - resolve operand to value
 */
L
Linus Torvalds 已提交
352
acpi_status
L
Len Brown 已提交
353 354 355
acpi_ex_resolve_operands(u16 opcode,
			 union acpi_operand_object **stack_ptr,
			 struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
356 357 358 359

/*
 * exdump - Interpreter debug output routines
 */
L
Len Brown 已提交
360
void acpi_ex_dump_operand(union acpi_operand_object *obj_desc, u32 depth);
L
Linus Torvalds 已提交
361 362

void
L
Len Brown 已提交
363 364 365 366 367
acpi_ex_dump_operands(union acpi_operand_object **operands,
		      acpi_interpreter_mode interpreter_mode,
		      char *ident,
		      u32 num_levels,
		      char *note, char *module_name, u32 line_number);
L
Linus Torvalds 已提交
368

R
Robert Moore 已提交
369
#ifdef	ACPI_FUTURE_USAGE
L
Linus Torvalds 已提交
370
void
L
Len Brown 已提交
371
acpi_ex_dump_object_descriptor(union acpi_operand_object *object, u32 flags);
L
Linus Torvalds 已提交
372

B
Bob Moore 已提交
373
void acpi_ex_dump_namespace_node(struct acpi_namespace_node *node, u32 flags);
L
Len Brown 已提交
374
#endif				/* ACPI_FUTURE_USAGE */
L
Linus Torvalds 已提交
375 376

/*
R
Robert Moore 已提交
377
 * exnames - AML namestring support
L
Linus Torvalds 已提交
378 379
 */
acpi_status
L
Len Brown 已提交
380 381 382
acpi_ex_get_name_string(acpi_object_type data_type,
			u8 * in_aml_address,
			char **out_name_string, u32 * out_name_length);
L
Linus Torvalds 已提交
383 384 385 386 387

/*
 * exstore - Object store support
 */
acpi_status
L
Len Brown 已提交
388 389 390
acpi_ex_store(union acpi_operand_object *val_desc,
	      union acpi_operand_object *dest_desc,
	      struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
391 392

acpi_status
L
Len Brown 已提交
393 394 395 396
acpi_ex_store_object_to_node(union acpi_operand_object *source_desc,
			     struct acpi_namespace_node *node,
			     struct acpi_walk_state *walk_state,
			     u8 implicit_conversion);
L
Linus Torvalds 已提交
397 398 399 400 401

#define ACPI_IMPLICIT_CONVERSION        TRUE
#define ACPI_NO_IMPLICIT_CONVERSION     FALSE

/*
R
Robert Moore 已提交
402
 * exstoren - resolve/store object
L
Linus Torvalds 已提交
403 404
 */
acpi_status
L
Len Brown 已提交
405 406 407
acpi_ex_resolve_object(union acpi_operand_object **source_desc_ptr,
		       acpi_object_type target_type,
		       struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
408 409

acpi_status
L
Len Brown 已提交
410 411 412 413
acpi_ex_store_object_to_object(union acpi_operand_object *source_desc,
			       union acpi_operand_object *dest_desc,
			       union acpi_operand_object **new_desc,
			       struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
414 415

/*
R
Robert Moore 已提交
416
 * exstorob - store object - buffer/string
L
Linus Torvalds 已提交
417 418
 */
acpi_status
L
Len Brown 已提交
419 420
acpi_ex_store_buffer_to_buffer(union acpi_operand_object *source_desc,
			       union acpi_operand_object *target_desc);
L
Linus Torvalds 已提交
421 422

acpi_status
L
Len Brown 已提交
423 424
acpi_ex_store_string_to_string(union acpi_operand_object *source_desc,
			       union acpi_operand_object *target_desc);
R
Robert Moore 已提交
425 426 427 428

/*
 * excopy - object copy
 */
L
Linus Torvalds 已提交
429
acpi_status
L
Len Brown 已提交
430 431
acpi_ex_copy_integer_to_index_field(union acpi_operand_object *source_desc,
				    union acpi_operand_object *target_desc);
L
Linus Torvalds 已提交
432 433

acpi_status
L
Len Brown 已提交
434 435
acpi_ex_copy_integer_to_bank_field(union acpi_operand_object *source_desc,
				   union acpi_operand_object *target_desc);
L
Linus Torvalds 已提交
436 437

acpi_status
L
Len Brown 已提交
438 439
acpi_ex_copy_data_to_named_field(union acpi_operand_object *source_desc,
				 struct acpi_namespace_node *node);
L
Linus Torvalds 已提交
440 441

acpi_status
L
Len Brown 已提交
442 443
acpi_ex_copy_integer_to_buffer_field(union acpi_operand_object *source_desc,
				     union acpi_operand_object *target_desc);
R
Robert Moore 已提交
444

L
Linus Torvalds 已提交
445 446 447
/*
 * exutils - interpreter/scanner utilities
 */
448
void acpi_ex_enter_interpreter(void);
L
Linus Torvalds 已提交
449

L
Len Brown 已提交
450
void acpi_ex_exit_interpreter(void);
L
Linus Torvalds 已提交
451

452 453 454 455
void acpi_ex_reacquire_interpreter(void);

void acpi_ex_relinquish_interpreter(void);

L
Len Brown 已提交
456
void acpi_ex_truncate_for32bit_table(union acpi_operand_object *obj_desc);
L
Linus Torvalds 已提交
457

L
Len Brown 已提交
458
u8 acpi_ex_acquire_global_lock(u32 rule);
L
Linus Torvalds 已提交
459

L
Len Brown 已提交
460
void acpi_ex_release_global_lock(u8 locked);
L
Linus Torvalds 已提交
461

L
Len Brown 已提交
462
void acpi_ex_eisa_id_to_string(u32 numeric_id, char *out_string);
L
Linus Torvalds 已提交
463

L
Len Brown 已提交
464
void acpi_ex_unsigned_integer_to_string(acpi_integer value, char *out_string);
L
Linus Torvalds 已提交
465 466 467 468 469

/*
 * exregion - default op_region handlers
 */
acpi_status
L
Len Brown 已提交
470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
acpi_ex_system_memory_space_handler(u32 function,
				    acpi_physical_address address,
				    u32 bit_width,
				    acpi_integer * value,
				    void *handler_context,
				    void *region_context);

acpi_status
acpi_ex_system_io_space_handler(u32 function,
				acpi_physical_address address,
				u32 bit_width,
				acpi_integer * value,
				void *handler_context, void *region_context);

acpi_status
acpi_ex_pci_config_space_handler(u32 function,
				 acpi_physical_address address,
				 u32 bit_width,
				 acpi_integer * value,
				 void *handler_context, void *region_context);

acpi_status
acpi_ex_cmos_space_handler(u32 function,
			   acpi_physical_address address,
			   u32 bit_width,
			   acpi_integer * value,
			   void *handler_context, void *region_context);

acpi_status
acpi_ex_pci_bar_space_handler(u32 function,
			      acpi_physical_address address,
			      u32 bit_width,
			      acpi_integer * value,
			      void *handler_context, void *region_context);

acpi_status
acpi_ex_embedded_controller_space_handler(u32 function,
					  acpi_physical_address address,
					  u32 bit_width,
					  acpi_integer * value,
					  void *handler_context,
					  void *region_context);

acpi_status
acpi_ex_sm_bus_space_handler(u32 function,
			     acpi_physical_address address,
			     u32 bit_width,
			     acpi_integer * value,
			     void *handler_context, void *region_context);

acpi_status
acpi_ex_data_table_space_handler(u32 function,
				 acpi_physical_address address,
				 u32 bit_width,
				 acpi_integer * value,
				 void *handler_context, void *region_context);

#endif				/* __INTERP_H__ */