acutils.h 20.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/******************************************************************************
 *
 * Name: acutils.h -- prototypes for the common (subsystem-wide) procedures
 *
 *****************************************************************************/

/*
8
 * Copyright (C) 2000 - 2015, 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 _ACUTILS_H
#define _ACUTILS_H

B
Bob Moore 已提交
47
extern const u8 acpi_gbl_resource_aml_sizes[];
48
extern const u8 acpi_gbl_resource_aml_serial_bus_sizes[];
B
Bob Moore 已提交
49

B
Bob Moore 已提交
50 51
/* Strings used by the disassembler and debugger resource dump routines */

52
#if defined(ACPI_DEBUG_OUTPUT) || defined (ACPI_DISASSEMBLER) || defined (ACPI_DEBUGGER)
B
Bob Moore 已提交
53

B
Bob Moore 已提交
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
extern const char *acpi_gbl_bm_decode[];
extern const char *acpi_gbl_config_decode[];
extern const char *acpi_gbl_consume_decode[];
extern const char *acpi_gbl_dec_decode[];
extern const char *acpi_gbl_he_decode[];
extern const char *acpi_gbl_io_decode[];
extern const char *acpi_gbl_ll_decode[];
extern const char *acpi_gbl_max_decode[];
extern const char *acpi_gbl_mem_decode[];
extern const char *acpi_gbl_min_decode[];
extern const char *acpi_gbl_mtp_decode[];
extern const char *acpi_gbl_rng_decode[];
extern const char *acpi_gbl_rw_decode[];
extern const char *acpi_gbl_shr_decode[];
extern const char *acpi_gbl_siz_decode[];
extern const char *acpi_gbl_trs_decode[];
extern const char *acpi_gbl_ttp_decode[];
extern const char *acpi_gbl_typ_decode[];
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
extern const char *acpi_gbl_ppc_decode[];
extern const char *acpi_gbl_ior_decode[];
extern const char *acpi_gbl_dts_decode[];
extern const char *acpi_gbl_ct_decode[];
extern const char *acpi_gbl_sbt_decode[];
extern const char *acpi_gbl_am_decode[];
extern const char *acpi_gbl_sm_decode[];
extern const char *acpi_gbl_wm_decode[];
extern const char *acpi_gbl_cph_decode[];
extern const char *acpi_gbl_cpo_decode[];
extern const char *acpi_gbl_dp_decode[];
extern const char *acpi_gbl_ed_decode[];
extern const char *acpi_gbl_bpb_decode[];
extern const char *acpi_gbl_sb_decode[];
extern const char *acpi_gbl_fc_decode[];
extern const char *acpi_gbl_pt_decode[];
B
Bob Moore 已提交
88 89
#endif

90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
/*
 * For the iASL compiler case, the output is redirected to stderr so that
 * any of the various ACPI errors and warnings do not appear in the output
 * files, for either the compiler or disassembler portions of the tool.
 */
#ifdef ACPI_ASL_COMPILER

#include <stdio.h>

#define ACPI_MSG_REDIRECT_BEGIN \
	FILE                            *output_file = acpi_gbl_output_file; \
	acpi_os_redirect_output (stderr);

#define ACPI_MSG_REDIRECT_END \
	acpi_os_redirect_output (output_file);

#else
/*
 * non-iASL case - no redirection, nothing to do
 */
#define ACPI_MSG_REDIRECT_BEGIN
#define ACPI_MSG_REDIRECT_END
#endif

/*
 * Common error message prefixes
 */
#define ACPI_MSG_ERROR          "ACPI Error: "
#define ACPI_MSG_EXCEPTION      "ACPI Exception: "
#define ACPI_MSG_WARNING        "ACPI Warning: "
#define ACPI_MSG_INFO           "ACPI: "

#define ACPI_MSG_BIOS_ERROR     "ACPI BIOS Error (bug): "
#define ACPI_MSG_BIOS_WARNING   "ACPI BIOS Warning (bug): "

/*
 * Common message suffix
 */
#define ACPI_MSG_SUFFIX \
	acpi_os_printf (" (%8.8X/%s-%u)\n", ACPI_CA_VERSION, module_name, line_number)

B
Bob Moore 已提交
131 132 133 134 135 136 137
/* Types for Resource descriptor entries */

#define ACPI_INVALID_RESOURCE           0
#define ACPI_FIXED_LENGTH               1
#define ACPI_VARIABLE_LENGTH            2
#define ACPI_SMALL_VARIABLE_LENGTH      3

B
Bob Moore 已提交
138
typedef
139
acpi_status(*acpi_walk_aml_callback) (u8 *aml,
B
Bob Moore 已提交
140 141
				      u32 length,
				      u32 offset,
B
Bob Moore 已提交
142
				      u8 resource_index, void **context);
B
Bob Moore 已提交
143

L
Linus Torvalds 已提交
144
typedef
L
Len Brown 已提交
145
acpi_status(*acpi_pkg_callback) (u8 object_type,
146
				 union acpi_operand_object *source_object,
L
Len Brown 已提交
147 148 149 150 151 152 153 154
				 union acpi_generic_state * state,
				 void *context);

struct acpi_pkg_info {
	u8 *free_space;
	acpi_size length;
	u32 object_space;
	u32 num_packages;
L
Linus Torvalds 已提交
155 156
};

157 158
/* Object reference counts */

L
Linus Torvalds 已提交
159 160 161 162 163 164 165 166 167 168
#define REF_INCREMENT       (u16) 0
#define REF_DECREMENT       (u16) 1

/* acpi_ut_dump_buffer */

#define DB_BYTE_DISPLAY     1
#define DB_WORD_DISPLAY     2
#define DB_DWORD_DISPLAY    4
#define DB_QWORD_DISPLAY    8

169 170 171 172 173 174 175 176 177 178 179
/*
 * utnonansi - Non-ANSI C library functions
 */
void acpi_ut_strupr(char *src_string);

void acpi_ut_strlwr(char *src_string);

int acpi_ut_stricmp(char *string1, char *string2);

acpi_status acpi_ut_strtoul64(char *string, u32 base, u64 *ret_integer);

L
Linus Torvalds 已提交
180
/*
R
Robert Moore 已提交
181
 * utglobal - Global data structures and procedures
L
Linus Torvalds 已提交
182
 */
183
acpi_status acpi_ut_init_globals(void);
L
Linus Torvalds 已提交
184 185 186

#if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)

187
const char *acpi_ut_get_mutex_name(u32 mutex_id);
L
Linus Torvalds 已提交
188

189
const char *acpi_ut_get_notify_name(u32 notify_value, acpi_object_type type);
L
Linus Torvalds 已提交
190 191
#endif

192
const char *acpi_ut_get_type_name(acpi_object_type type);
L
Linus Torvalds 已提交
193

194
const char *acpi_ut_get_node_name(void *object);
L
Linus Torvalds 已提交
195

196
const char *acpi_ut_get_descriptor_name(void *object);
L
Linus Torvalds 已提交
197

198 199
const char *acpi_ut_get_reference_name(union acpi_operand_object *object);

200
const char *acpi_ut_get_object_type_name(union acpi_operand_object *obj_desc);
L
Linus Torvalds 已提交
201

202
const char *acpi_ut_get_region_name(u8 space_id);
L
Linus Torvalds 已提交
203

204
const char *acpi_ut_get_event_name(u32 event_id);
L
Linus Torvalds 已提交
205

206
char acpi_ut_hex_to_ascii_char(u64 integer, u32 position);
L
Linus Torvalds 已提交
207

208 209
u8 acpi_ut_ascii_char_to_hex(int hex_char);

L
Len Brown 已提交
210
u8 acpi_ut_valid_object_type(acpi_object_type type);
L
Linus Torvalds 已提交
211 212

/*
R
Robert Moore 已提交
213
 * utinit - miscellaneous initialization and shutdown
L
Linus Torvalds 已提交
214
 */
L
Len Brown 已提交
215
acpi_status acpi_ut_hardware_initialize(void);
R
Robert Moore 已提交
216

L
Len Brown 已提交
217
void acpi_ut_subsystem_shutdown(void);
R
Robert Moore 已提交
218

L
Linus Torvalds 已提交
219
/*
R
Robert Moore 已提交
220
 * utcopy - Object construction and conversion interfaces
L
Linus Torvalds 已提交
221 222
 */
acpi_status
L
Len Brown 已提交
223 224
acpi_ut_build_simple_object(union acpi_operand_object *obj,
			    union acpi_object *user_obj,
225
			    u8 *data_space, u32 *buffer_space_used);
L
Linus Torvalds 已提交
226 227

acpi_status
L
Len Brown 已提交
228
acpi_ut_build_package_object(union acpi_operand_object *obj,
229
			     u8 *buffer, u32 *space_used);
L
Linus Torvalds 已提交
230 231

acpi_status
L
Len Brown 已提交
232 233
acpi_ut_copy_iobject_to_eobject(union acpi_operand_object *obj,
				struct acpi_buffer *ret_buffer);
L
Linus Torvalds 已提交
234 235

acpi_status
L
Len Brown 已提交
236 237
acpi_ut_copy_eobject_to_iobject(union acpi_object *obj,
				union acpi_operand_object **internal_obj);
L
Linus Torvalds 已提交
238 239

acpi_status
L
Len Brown 已提交
240 241
acpi_ut_copy_isimple_to_isimple(union acpi_operand_object *source_obj,
				union acpi_operand_object *dest_obj);
L
Linus Torvalds 已提交
242 243

acpi_status
L
Len Brown 已提交
244 245 246
acpi_ut_copy_iobject_to_iobject(union acpi_operand_object *source_desc,
				union acpi_operand_object **dest_desc,
				struct acpi_walk_state *walk_state);
L
Linus Torvalds 已提交
247 248

/*
R
Robert Moore 已提交
249
 * utcreate - Object creation
L
Linus Torvalds 已提交
250 251
 */
acpi_status
L
Len Brown 已提交
252
acpi_ut_update_object_reference(union acpi_operand_object *object, u16 action);
L
Linus Torvalds 已提交
253 254

/*
R
Robert Moore 已提交
255
 * utdebug - Debug interfaces
L
Linus Torvalds 已提交
256
 */
L
Len Brown 已提交
257
void acpi_ut_init_stack_ptr_trace(void);
L
Linus Torvalds 已提交
258

L
Len Brown 已提交
259
void acpi_ut_track_stack_ptr(void);
L
Linus Torvalds 已提交
260 261

void
L
Len Brown 已提交
262
acpi_ut_trace(u32 line_number,
263 264
	      const char *function_name,
	      const char *module_name, u32 component_id);
L
Linus Torvalds 已提交
265 266

void
L
Len Brown 已提交
267 268
acpi_ut_trace_ptr(u32 line_number,
		  const char *function_name,
269
		  const char *module_name, u32 component_id, void *pointer);
L
Linus Torvalds 已提交
270 271

void
L
Len Brown 已提交
272 273
acpi_ut_trace_u32(u32 line_number,
		  const char *function_name,
274
		  const char *module_name, u32 component_id, u32 integer);
L
Linus Torvalds 已提交
275 276

void
L
Len Brown 已提交
277 278
acpi_ut_trace_str(u32 line_number,
		  const char *function_name,
279
		  const char *module_name, u32 component_id, char *string);
L
Linus Torvalds 已提交
280 281

void
L
Len Brown 已提交
282
acpi_ut_exit(u32 line_number,
283 284
	     const char *function_name,
	     const char *module_name, u32 component_id);
L
Linus Torvalds 已提交
285 286

void
L
Len Brown 已提交
287 288
acpi_ut_status_exit(u32 line_number,
		    const char *function_name,
289 290
		    const char *module_name,
		    u32 component_id, acpi_status status);
L
Linus Torvalds 已提交
291 292

void
L
Len Brown 已提交
293 294
acpi_ut_value_exit(u32 line_number,
		   const char *function_name,
295
		   const char *module_name, u32 component_id, u64 value);
L
Linus Torvalds 已提交
296 297

void
L
Len Brown 已提交
298 299
acpi_ut_ptr_exit(u32 line_number,
		 const char *function_name,
300
		 const char *module_name, u32 component_id, u8 *ptr);
L
Linus Torvalds 已提交
301

302 303
void
acpi_ut_debug_dump_buffer(u8 *buffer, u32 count, u32 display, u32 component_id);
B
Bob Moore 已提交
304

305
void acpi_ut_dump_buffer(u8 *buffer, u32 count, u32 display, u32 offset);
B
Bob Moore 已提交
306

307 308 309 310 311 312 313
#ifdef ACPI_APPLICATION
void
acpi_ut_dump_buffer_to_file(ACPI_FILE file,
			    u8 *buffer,
			    u32 count, u32 display, u32 base_offset);
#endif

B
Bob Moore 已提交
314
void acpi_ut_report_error(char *module_name, u32 line_number);
L
Linus Torvalds 已提交
315

B
Bob Moore 已提交
316
void acpi_ut_report_info(char *module_name, u32 line_number);
L
Linus Torvalds 已提交
317

B
Bob Moore 已提交
318
void acpi_ut_report_warning(char *module_name, u32 line_number);
L
Linus Torvalds 已提交
319 320

/*
R
Robert Moore 已提交
321
 * utdelete - Object deletion and reference counts
L
Linus Torvalds 已提交
322
 */
L
Len Brown 已提交
323
void acpi_ut_add_reference(union acpi_operand_object *object);
L
Linus Torvalds 已提交
324

L
Len Brown 已提交
325
void acpi_ut_remove_reference(union acpi_operand_object *object);
L
Linus Torvalds 已提交
326

L
Len Brown 已提交
327
void acpi_ut_delete_internal_package_object(union acpi_operand_object *object);
L
Linus Torvalds 已提交
328

L
Len Brown 已提交
329
void acpi_ut_delete_internal_simple_object(union acpi_operand_object *object);
L
Linus Torvalds 已提交
330

L
Len Brown 已提交
331
void acpi_ut_delete_internal_object_list(union acpi_operand_object **obj_list);
L
Linus Torvalds 已提交
332 333

/*
R
Robert Moore 已提交
334
 * uteval - object evaluation
L
Linus Torvalds 已提交
335 336
 */
acpi_status
L
Len Brown 已提交
337 338 339 340
acpi_ut_evaluate_object(struct acpi_namespace_node *prefix_node,
			char *path,
			u32 expected_return_btypes,
			union acpi_operand_object **return_desc);
L
Linus Torvalds 已提交
341 342

acpi_status
L
Len Brown 已提交
343 344
acpi_ut_evaluate_numeric_object(char *object_name,
				struct acpi_namespace_node *device_node,
345
				u64 *value);
L
Linus Torvalds 已提交
346 347

acpi_status
348
acpi_ut_execute_STA(struct acpi_namespace_node *device_node, u32 *status_flags);
L
Linus Torvalds 已提交
349 350

acpi_status
351 352 353
acpi_ut_execute_power_methods(struct acpi_namespace_node *device_node,
			      const char **method_names,
			      u8 method_count, u8 *out_values);
L
Linus Torvalds 已提交
354

355 356 357 358 359 360 361 362
/*
 * utfileio - file operations
 */
#ifdef ACPI_APPLICATION
acpi_status
acpi_ut_read_table_from_file(char *filename, struct acpi_table_header **table);
#endif

363 364 365
/*
 * utids - device ID support
 */
L
Linus Torvalds 已提交
366
acpi_status
367
acpi_ut_execute_HID(struct acpi_namespace_node *device_node,
368
		    struct acpi_pnp_device_id ** return_id);
L
Linus Torvalds 已提交
369 370

acpi_status
L
Len Brown 已提交
371
acpi_ut_execute_UID(struct acpi_namespace_node *device_node,
372
		    struct acpi_pnp_device_id ** return_id);
L
Linus Torvalds 已提交
373

374 375 376 377
acpi_status
acpi_ut_execute_SUB(struct acpi_namespace_node *device_node,
		    struct acpi_pnp_device_id **return_id);

L
Linus Torvalds 已提交
378
acpi_status
379
acpi_ut_execute_CID(struct acpi_namespace_node *device_node,
380
		    struct acpi_pnp_device_id_list ** return_cid_list);
L
Linus Torvalds 已提交
381

382 383 384 385
acpi_status
acpi_ut_execute_CLS(struct acpi_namespace_node *device_node,
		    struct acpi_pnp_device_id **return_id);

386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
/*
 * utlock - reader/writer locks
 */
acpi_status acpi_ut_create_rw_lock(struct acpi_rw_lock *lock);

void acpi_ut_delete_rw_lock(struct acpi_rw_lock *lock);

acpi_status acpi_ut_acquire_read_lock(struct acpi_rw_lock *lock);

acpi_status acpi_ut_release_read_lock(struct acpi_rw_lock *lock);

acpi_status acpi_ut_acquire_write_lock(struct acpi_rw_lock *lock);

void acpi_ut_release_write_lock(struct acpi_rw_lock *lock);

L
Linus Torvalds 已提交
401
/*
R
Robert Moore 已提交
402
 * utobject - internal object create/delete/cache routines
L
Linus Torvalds 已提交
403
 */
404 405
union acpi_operand_object *acpi_ut_create_internal_object_dbg(const char
							      *module_name,
L
Len Brown 已提交
406 407 408 409 410
							      u32 line_number,
							      u32 component_id,
							      acpi_object_type
							      type);

411
void *acpi_ut_allocate_object_desc_dbg(const char *module_name,
L
Len Brown 已提交
412
				       u32 line_number, u32 component_id);
L
Linus Torvalds 已提交
413

414 415
#define acpi_ut_create_internal_object(t) acpi_ut_create_internal_object_dbg (_acpi_module_name,__LINE__,_COMPONENT,t)
#define acpi_ut_allocate_object_desc()  acpi_ut_allocate_object_desc_dbg (_acpi_module_name,__LINE__,_COMPONENT)
L
Linus Torvalds 已提交
416

L
Len Brown 已提交
417
void acpi_ut_delete_object_desc(union acpi_operand_object *object);
L
Linus Torvalds 已提交
418

L
Len Brown 已提交
419
u8 acpi_ut_valid_internal_object(void *object);
L
Linus Torvalds 已提交
420

421 422
union acpi_operand_object *acpi_ut_create_package_object(u32 count);

423 424
union acpi_operand_object *acpi_ut_create_integer_object(u64 value);

L
Len Brown 已提交
425
union acpi_operand_object *acpi_ut_create_buffer_object(acpi_size buffer_size);
L
Linus Torvalds 已提交
426

L
Len Brown 已提交
427
union acpi_operand_object *acpi_ut_create_string_object(acpi_size string_size);
L
Linus Torvalds 已提交
428 429

acpi_status
L
Len Brown 已提交
430
acpi_ut_get_object_size(union acpi_operand_object *obj, acpi_size * obj_length);
L
Linus Torvalds 已提交
431

432 433 434 435 436
/*
 * utosi - Support for the _OSI predefined control method
 */
acpi_status acpi_ut_initialize_interfaces(void);

437
acpi_status acpi_ut_interface_terminate(void);
438 439 440 441 442

acpi_status acpi_ut_install_interface(acpi_string interface_name);

acpi_status acpi_ut_remove_interface(acpi_string interface_name);

443 444
acpi_status acpi_ut_update_interfaces(u8 action);

445 446 447 448
struct acpi_interface_info *acpi_ut_get_interface(acpi_string interface_name);

acpi_status acpi_ut_osi_implementation(struct acpi_walk_state *walk_state);

449 450 451 452 453 454 455 456 457
/*
 * utpredef - support for predefined names
 */
const union acpi_predefined_info *acpi_ut_get_next_predefined_method(const union
								     acpi_predefined_info
								     *this_name);

const union acpi_predefined_info *acpi_ut_match_predefined_method(char *name);

458 459 460
void acpi_ut_get_expected_return_types(char *buffer, u32 expected_btypes);

#if (defined ACPI_ASL_COMPILER || defined ACPI_HELP_APP)
461 462 463 464 465 466 467 468
const union acpi_predefined_info *acpi_ut_match_resource_name(char *name);

void
acpi_ut_display_predefined_method(char *buffer,
				  const union acpi_predefined_info *this_name,
				  u8 multi_line);

u32 acpi_ut_get_resource_bit_width(char *buffer, u16 types);
469
#endif
470

L
Linus Torvalds 已提交
471
/*
R
Robert Moore 已提交
472
 * utstate - Generic state creation/cache routines
L
Linus Torvalds 已提交
473 474
 */
void
L
Len Brown 已提交
475 476
acpi_ut_push_generic_state(union acpi_generic_state **list_head,
			   union acpi_generic_state *state);
L
Linus Torvalds 已提交
477

L
Len Brown 已提交
478 479
union acpi_generic_state *acpi_ut_pop_generic_state(union acpi_generic_state
						    **list_head);
L
Linus Torvalds 已提交
480

L
Len Brown 已提交
481
union acpi_generic_state *acpi_ut_create_generic_state(void);
L
Linus Torvalds 已提交
482

L
Len Brown 已提交
483
struct acpi_thread_state *acpi_ut_create_thread_state(void);
L
Linus Torvalds 已提交
484

L
Len Brown 已提交
485 486
union acpi_generic_state *acpi_ut_create_update_state(union acpi_operand_object
						      *object, u16 action);
L
Linus Torvalds 已提交
487

L
Len Brown 已提交
488 489 490
union acpi_generic_state *acpi_ut_create_pkg_state(void *internal_object,
						   void *external_object,
						   u16 index);
L
Linus Torvalds 已提交
491 492

acpi_status
L
Len Brown 已提交
493 494 495
acpi_ut_create_update_state_and_push(union acpi_operand_object *object,
				     u16 action,
				     union acpi_generic_state **state_list);
L
Linus Torvalds 已提交
496

L
Len Brown 已提交
497
union acpi_generic_state *acpi_ut_create_control_state(void);
L
Linus Torvalds 已提交
498

L
Len Brown 已提交
499
void acpi_ut_delete_generic_state(union acpi_generic_state *state);
R
Robert Moore 已提交
500

L
Linus Torvalds 已提交
501
/*
R
Robert Moore 已提交
502
 * utmath
L
Linus Torvalds 已提交
503 504
 */
acpi_status
505 506
acpi_ut_divide(u64 in_dividend,
	       u64 in_divisor, u64 *out_quotient, u64 *out_remainder);
L
Linus Torvalds 已提交
507 508

acpi_status
509 510
acpi_ut_short_divide(u64 in_dividend,
		     u32 divisor, u64 *out_quotient, u32 *out_remainder);
L
Linus Torvalds 已提交
511

R
Robert Moore 已提交
512 513 514
/*
 * utmisc
 */
515 516
const struct acpi_exception_info *acpi_ut_validate_exception(acpi_status
							     status);
517

518 519
u8 acpi_ut_is_pci_root_bridge(char *id);

520
#if (defined ACPI_ASL_COMPILER || defined ACPI_EXEC_APP || defined ACPI_NAMES_APP)
B
Bob Moore 已提交
521
u8 acpi_ut_is_aml_table(struct acpi_table_header *table);
522
#endif
B
Bob Moore 已提交
523

524
acpi_status
L
Len Brown 已提交
525 526 527
acpi_ut_walk_package_tree(union acpi_operand_object *source_object,
			  void *target_object,
			  acpi_pkg_callback walk_callback, void *context);
R
Robert Moore 已提交
528

L
Linus Torvalds 已提交
529 530 531 532
/* Values for Base above (16=Hex, 10=Decimal) */

#define ACPI_ANY_BASE        0

B
Bob Moore 已提交
533 534 535 536 537 538 539 540 541 542 543
u32 acpi_ut_dword_byte_swap(u32 value);

void acpi_ut_set_integer_width(u8 revision);

#ifdef ACPI_DEBUG_OUTPUT
void
acpi_ut_display_init_pathname(u8 type,
			      struct acpi_namespace_node *obj_handle,
			      char *path);
#endif

544 545 546 547 548 549 550
/*
 * utownerid - Support for Table/Method Owner IDs
 */
acpi_status acpi_ut_allocate_owner_id(acpi_owner_id * owner_id);

void acpi_ut_release_owner_id(acpi_owner_id * owner_id);

B
Bob Moore 已提交
551 552 553 554
/*
 * utresrc
 */
acpi_status
555 556
acpi_ut_walk_aml_resources(struct acpi_walk_state *walk_state,
			   u8 *aml,
B
Bob Moore 已提交
557
			   acpi_size aml_length,
L
Len Brown 已提交
558 559
			   acpi_walk_aml_callback user_function,
			   void **context);
B
Bob Moore 已提交
560

561 562 563
acpi_status
acpi_ut_validate_resource(struct acpi_walk_state *walk_state,
			  void *aml, u8 *return_index);
B
Bob Moore 已提交
564

B
Bob Moore 已提交
565 566 567 568
u32 acpi_ut_get_descriptor_length(void *aml);

u16 acpi_ut_get_resource_length(void *aml);

B
Bob Moore 已提交
569 570
u8 acpi_ut_get_resource_header_length(void *aml);

B
Bob Moore 已提交
571 572
u8 acpi_ut_get_resource_type(void *aml);

B
Bob Moore 已提交
573
acpi_status
574
acpi_ut_get_resource_end_tag(union acpi_operand_object *obj_desc, u8 **end_tag);
L
Linus Torvalds 已提交
575

576 577 578
/*
 * utstring - String and character utilities
 */
579
void acpi_ut_print_string(char *string, u16 max_length);
580

581
#if defined ACPI_ASL_COMPILER || defined ACPI_EXEC_APP
582
void ut_convert_backslashes(char *pathname);
583
#endif
584

585
u8 acpi_ut_valid_acpi_name(char *name);
586 587 588 589 590

u8 acpi_ut_valid_acpi_char(char character, u32 position);

void acpi_ut_repair_name(char *name);

591 592 593 594 595 596 597 598 599 600 601
#if defined (ACPI_DEBUGGER) || defined (ACPI_APPLICATION)
u8 acpi_ut_safe_strcpy(char *dest, acpi_size dest_size, char *source);

u8 acpi_ut_safe_strcat(char *dest, acpi_size dest_size, char *source);

u8
acpi_ut_safe_strncat(char *dest,
		     acpi_size dest_size,
		     char *source, acpi_size max_transfer_length);
#endif

L
Linus Torvalds 已提交
602
/*
603
 * utmutex - mutex support
L
Linus Torvalds 已提交
604
 */
L
Len Brown 已提交
605
acpi_status acpi_ut_mutex_initialize(void);
L
Linus Torvalds 已提交
606

L
Len Brown 已提交
607
void acpi_ut_mutex_terminate(void);
608

L
Len Brown 已提交
609
acpi_status acpi_ut_acquire_mutex(acpi_mutex_handle mutex_id);
610

L
Len Brown 已提交
611
acpi_status acpi_ut_release_mutex(acpi_mutex_handle mutex_id);
612 613 614 615

/*
 * utalloc - memory allocation and object caching
 */
L
Len Brown 已提交
616
acpi_status acpi_ut_create_caches(void);
617

L
Len Brown 已提交
618
acpi_status acpi_ut_delete_caches(void);
L
Linus Torvalds 已提交
619

L
Len Brown 已提交
620
acpi_status acpi_ut_validate_buffer(struct acpi_buffer *buffer);
L
Linus Torvalds 已提交
621 622

acpi_status
L
Len Brown 已提交
623 624 625
acpi_ut_initialize_buffer(struct acpi_buffer *buffer,
			  acpi_size required_length);

L
Linus Torvalds 已提交
626
#ifdef ACPI_DBG_TRACK_ALLOCATIONS
L
Len Brown 已提交
627
void *acpi_ut_allocate_and_track(acpi_size size,
628
				 u32 component, const char *module, u32 line);
L
Len Brown 已提交
629

B
Bob Moore 已提交
630
void *acpi_ut_allocate_zeroed_and_track(acpi_size size,
631 632
					u32 component,
					const char *module, u32 line);
L
Linus Torvalds 已提交
633 634

void
635 636
acpi_ut_free_and_track(void *address,
		       u32 component, const char *module, u32 line);
L
Linus Torvalds 已提交
637

L
Len Brown 已提交
638
void acpi_ut_dump_allocation_info(void);
L
Linus Torvalds 已提交
639

640
void acpi_ut_dump_allocations(u32 component, const char *module);
B
Bob Moore 已提交
641 642 643 644 645

acpi_status
acpi_ut_create_list(char *list_name,
		    u16 object_size, struct acpi_memory_list **return_cache);

646 647
#endif				/* ACPI_DBG_TRACK_ALLOCATIONS */

648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665
/*
 * utaddress - address range check
 */
acpi_status
acpi_ut_add_address_range(acpi_adr_space_type space_id,
			  acpi_physical_address address,
			  u32 length, struct acpi_namespace_node *region_node);

void
acpi_ut_remove_address_range(acpi_adr_space_type space_id,
			     struct acpi_namespace_node *region_node);

u32
acpi_ut_check_address_range(acpi_adr_space_type space_id,
			    acpi_physical_address address, u32 length, u8 warn);

void acpi_ut_delete_address_lists(void);

666 667 668 669 670 671 672 673 674 675 676 677 678 679
/*
 * utxferror - various error/warning output functions
 */
void ACPI_INTERNAL_VAR_XFACE
acpi_ut_predefined_warning(const char *module_name,
			   u32 line_number,
			   char *pathname,
			   u8 node_flags, const char *format, ...);

void ACPI_INTERNAL_VAR_XFACE
acpi_ut_predefined_info(const char *module_name,
			u32 line_number,
			char *pathname, u8 node_flags, const char *format, ...);

680 681 682 683 684 685
void ACPI_INTERNAL_VAR_XFACE
acpi_ut_predefined_bios_error(const char *module_name,
			      u32 line_number,
			      char *pathname,
			      u8 node_flags, const char *format, ...);

686 687 688 689 690 691 692 693 694 695 696
void
acpi_ut_namespace_error(const char *module_name,
			u32 line_number,
			const char *internal_name, acpi_status lookup_status);

void
acpi_ut_method_error(const char *module_name,
		     u32 line_number,
		     const char *message,
		     struct acpi_namespace_node *node,
		     const char *path, acpi_status lookup_status);
L
Linus Torvalds 已提交
697

698 699 700 701 702
/*
 * Utility functions for ACPI names and IDs
 */
const struct ah_predefined_name *acpi_ah_match_predefined_name(char *nameseg);

703
const struct ah_device_id *acpi_ah_match_hardware_id(char *hid);
704

705 706
const char *acpi_ah_match_uuid(u8 *data);

707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725
/*
 * utprint - printf/vprintf output functions
 */
const char *acpi_ut_scan_number(const char *string, u64 *number_ptr);

const char *acpi_ut_print_number(char *string, u64 number);

int
acpi_ut_vsnprintf(char *string,
		  acpi_size size, const char *format, va_list args);

int acpi_ut_snprintf(char *string, acpi_size size, const char *format, ...);

#ifdef ACPI_APPLICATION
int acpi_ut_file_vprintf(ACPI_FILE file, const char *format, va_list args);

int acpi_ut_file_printf(ACPI_FILE file, const char *format, ...);
#endif

726 727 728
/*
 * utuuid -- UUID support functions
 */
729
#if (defined ACPI_ASL_COMPILER || defined ACPI_EXEC_APP || defined ACPI_HELP_APP)
730
void acpi_ut_convert_string_to_uuid(char *in_string, u8 *uuid_buffer);
731
#endif
732

L
Len Brown 已提交
733
#endif				/* _ACUTILS_H */