acutils.h 18.2 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 - 2012, Intel Corp.
L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions, and the following disclaimer,
 *    without modification.
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 *    substantially similar to the "NO WARRANTY" disclaimer below
 *    ("Disclaimer") and any redistribution must be conditioned upon
 *    including a substantially similar Disclaimer requirement for further
 *    binary redistribution.
 * 3. Neither the names of the above-listed copyright holders nor the names
 *    of any contributors may be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 *
 * Alternatively, this software may be distributed under the terms of the
 * GNU General Public License ("GPL") version 2 as published by the Free
 * Software Foundation.
 *
 * NO WARRANTY
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGES.
 */

#ifndef _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 52 53
/* Strings used by the disassembler and debugger resource dump routines */

#if defined(ACPI_DISASSEMBLER) || defined (ACPI_DEBUGGER)

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[];
B
Bob Moore 已提交
72 73
#endif

B
Bob Moore 已提交
74 75 76 77 78 79 80
/* 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 已提交
81 82 83 84
typedef
acpi_status(*acpi_walk_aml_callback) (u8 * aml,
				      u32 length,
				      u32 offset,
B
Bob Moore 已提交
85
				      u8 resource_index, void **context);
B
Bob Moore 已提交
86

L
Linus Torvalds 已提交
87
typedef
L
Len Brown 已提交
88 89 90 91 92 93 94 95 96 97
acpi_status(*acpi_pkg_callback) (u8 object_type,
				 union acpi_operand_object * source_object,
				 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 已提交
98 99 100 101 102 103 104 105 106 107 108 109 110 111
};

#define REF_INCREMENT       (u16) 0
#define REF_DECREMENT       (u16) 1
#define REF_FORCE_DELETE    (u16) 2

/* acpi_ut_dump_buffer */

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

/*
R
Robert Moore 已提交
112
 * utglobal - Global data structures and procedures
L
Linus Torvalds 已提交
113
 */
114
acpi_status acpi_ut_init_globals(void);
L
Linus Torvalds 已提交
115 116 117

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

L
Len Brown 已提交
118
char *acpi_ut_get_mutex_name(u32 mutex_id);
L
Linus Torvalds 已提交
119

Z
Zhang Rui 已提交
120 121
const char *acpi_ut_get_notify_name(u32 notify_value);

L
Linus Torvalds 已提交
122 123
#endif

L
Len Brown 已提交
124
char *acpi_ut_get_type_name(acpi_object_type type);
L
Linus Torvalds 已提交
125

L
Len Brown 已提交
126
char *acpi_ut_get_node_name(void *object);
L
Linus Torvalds 已提交
127

L
Len Brown 已提交
128
char *acpi_ut_get_descriptor_name(void *object);
L
Linus Torvalds 已提交
129

130 131
const char *acpi_ut_get_reference_name(union acpi_operand_object *object);

L
Len Brown 已提交
132
char *acpi_ut_get_object_type_name(union acpi_operand_object *obj_desc);
L
Linus Torvalds 已提交
133

L
Len Brown 已提交
134
char *acpi_ut_get_region_name(u8 space_id);
L
Linus Torvalds 已提交
135

L
Len Brown 已提交
136
char *acpi_ut_get_event_name(u32 event_id);
L
Linus Torvalds 已提交
137

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

L
Len Brown 已提交
140
u8 acpi_ut_valid_object_type(acpi_object_type type);
L
Linus Torvalds 已提交
141 142

/*
R
Robert Moore 已提交
143
 * utinit - miscellaneous initialization and shutdown
L
Linus Torvalds 已提交
144
 */
L
Len Brown 已提交
145
acpi_status acpi_ut_hardware_initialize(void);
R
Robert Moore 已提交
146

L
Len Brown 已提交
147
void acpi_ut_subsystem_shutdown(void);
R
Robert Moore 已提交
148 149 150 151

/*
 * utclib - Local implementations of C library functions
 */
L
Linus Torvalds 已提交
152 153
#ifndef ACPI_USE_SYSTEM_CLIBRARY

L
Len Brown 已提交
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
acpi_size acpi_ut_strlen(const char *string);

char *acpi_ut_strcpy(char *dst_string, const char *src_string);

char *acpi_ut_strncpy(char *dst_string,
		      const char *src_string, acpi_size count);

int acpi_ut_memcmp(const char *buffer1, const char *buffer2, acpi_size count);

int acpi_ut_strncmp(const char *string1, const char *string2, acpi_size count);

int acpi_ut_strcmp(const char *string1, const char *string2);

char *acpi_ut_strcat(char *dst_string, const char *src_string);

char *acpi_ut_strncat(char *dst_string,
		      const char *src_string, acpi_size count);

u32 acpi_ut_strtoul(const char *string, char **terminator, u32 base);

char *acpi_ut_strstr(char *string1, char *string2);

void *acpi_ut_memcpy(void *dest, const void *src, acpi_size count);

178
void *acpi_ut_memset(void *dest, u8 value, acpi_size count);
L
Len Brown 已提交
179 180 181 182

int acpi_ut_to_upper(int c);

int acpi_ut_to_lower(int c);
L
Linus Torvalds 已提交
183 184 185

extern const u8 _acpi_ctype[];

L
Len Brown 已提交
186 187 188 189 190 191 192 193 194 195
#define _ACPI_XA     0x00	/* extra alphabetic - not supported */
#define _ACPI_XS     0x40	/* extra space */
#define _ACPI_BB     0x00	/* BEL, BS, etc. - not supported */
#define _ACPI_CN     0x20	/* CR, FF, HT, NL, VT */
#define _ACPI_DI     0x04	/* '0'-'9' */
#define _ACPI_LO     0x02	/* 'a'-'z' */
#define _ACPI_PU     0x10	/* punctuation */
#define _ACPI_SP     0x08	/* space */
#define _ACPI_UP     0x01	/* 'A'-'Z' */
#define _ACPI_XD     0x80	/* '0'-'9', 'A'-'F', 'a'-'f' */
L
Linus Torvalds 已提交
196 197 198 199 200 201 202 203 204

#define ACPI_IS_DIGIT(c)  (_acpi_ctype[(unsigned char)(c)] & (_ACPI_DI))
#define ACPI_IS_SPACE(c)  (_acpi_ctype[(unsigned char)(c)] & (_ACPI_SP))
#define ACPI_IS_XDIGIT(c) (_acpi_ctype[(unsigned char)(c)] & (_ACPI_XD))
#define ACPI_IS_UPPER(c)  (_acpi_ctype[(unsigned char)(c)] & (_ACPI_UP))
#define ACPI_IS_LOWER(c)  (_acpi_ctype[(unsigned char)(c)] & (_ACPI_LO))
#define ACPI_IS_PRINT(c)  (_acpi_ctype[(unsigned char)(c)] & (_ACPI_LO | _ACPI_UP | _ACPI_DI | _ACPI_SP | _ACPI_PU))
#define ACPI_IS_ALPHA(c)  (_acpi_ctype[(unsigned char)(c)] & (_ACPI_LO | _ACPI_UP))

L
Len Brown 已提交
205
#endif				/* ACPI_USE_SYSTEM_CLIBRARY */
R
Robert Moore 已提交
206

L
Linus Torvalds 已提交
207
/*
R
Robert Moore 已提交
208
 * utcopy - Object construction and conversion interfaces
L
Linus Torvalds 已提交
209 210
 */
acpi_status
L
Len Brown 已提交
211 212 213
acpi_ut_build_simple_object(union acpi_operand_object *obj,
			    union acpi_object *user_obj,
			    u8 * data_space, u32 * buffer_space_used);
L
Linus Torvalds 已提交
214 215

acpi_status
L
Len Brown 已提交
216 217
acpi_ut_build_package_object(union acpi_operand_object *obj,
			     u8 * buffer, u32 * space_used);
L
Linus Torvalds 已提交
218 219

acpi_status
L
Len Brown 已提交
220 221
acpi_ut_copy_iobject_to_eobject(union acpi_operand_object *obj,
				struct acpi_buffer *ret_buffer);
L
Linus Torvalds 已提交
222 223

acpi_status
L
Len Brown 已提交
224 225
acpi_ut_copy_eobject_to_iobject(union acpi_object *obj,
				union acpi_operand_object **internal_obj);
L
Linus Torvalds 已提交
226 227

acpi_status
L
Len Brown 已提交
228 229
acpi_ut_copy_isimple_to_isimple(union acpi_operand_object *source_obj,
				union acpi_operand_object *dest_obj);
L
Linus Torvalds 已提交
230 231

acpi_status
L
Len Brown 已提交
232 233 234
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 已提交
235 236

/*
R
Robert Moore 已提交
237
 * utcreate - Object creation
L
Linus Torvalds 已提交
238 239
 */
acpi_status
L
Len Brown 已提交
240
acpi_ut_update_object_reference(union acpi_operand_object *object, u16 action);
L
Linus Torvalds 已提交
241 242

/*
R
Robert Moore 已提交
243
 * utdebug - Debug interfaces
L
Linus Torvalds 已提交
244
 */
L
Len Brown 已提交
245
void acpi_ut_init_stack_ptr_trace(void);
L
Linus Torvalds 已提交
246

L
Len Brown 已提交
247
void acpi_ut_track_stack_ptr(void);
L
Linus Torvalds 已提交
248 249

void
L
Len Brown 已提交
250
acpi_ut_trace(u32 line_number,
251 252
	      const char *function_name,
	      const char *module_name, u32 component_id);
L
Linus Torvalds 已提交
253 254

void
L
Len Brown 已提交
255 256
acpi_ut_trace_ptr(u32 line_number,
		  const char *function_name,
257
		  const char *module_name, u32 component_id, void *pointer);
L
Linus Torvalds 已提交
258 259

void
L
Len Brown 已提交
260 261
acpi_ut_trace_u32(u32 line_number,
		  const char *function_name,
262
		  const char *module_name, u32 component_id, u32 integer);
L
Linus Torvalds 已提交
263 264

void
L
Len Brown 已提交
265 266
acpi_ut_trace_str(u32 line_number,
		  const char *function_name,
267
		  const char *module_name, u32 component_id, char *string);
L
Linus Torvalds 已提交
268 269

void
L
Len Brown 已提交
270
acpi_ut_exit(u32 line_number,
271 272
	     const char *function_name,
	     const char *module_name, u32 component_id);
L
Linus Torvalds 已提交
273 274

void
L
Len Brown 已提交
275 276
acpi_ut_status_exit(u32 line_number,
		    const char *function_name,
277 278
		    const char *module_name,
		    u32 component_id, acpi_status status);
L
Linus Torvalds 已提交
279 280

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

void
L
Len Brown 已提交
286 287
acpi_ut_ptr_exit(u32 line_number,
		 const char *function_name,
288
		 const char *module_name, u32 component_id, u8 *ptr);
L
Linus Torvalds 已提交
289

B
Bob Moore 已提交
290 291
void acpi_ut_dump_buffer(u8 * buffer, u32 count, u32 display, u32 component_id);

B
Bob Moore 已提交
292 293
void acpi_ut_dump_buffer2(u8 * buffer, u32 count, u32 display);

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

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

B
Bob Moore 已提交
298
void acpi_ut_report_warning(char *module_name, u32 line_number);
L
Linus Torvalds 已提交
299 300

/*
R
Robert Moore 已提交
301
 * utdelete - Object deletion and reference counts
L
Linus Torvalds 已提交
302
 */
L
Len Brown 已提交
303
void acpi_ut_add_reference(union acpi_operand_object *object);
L
Linus Torvalds 已提交
304

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

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

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

L
Len Brown 已提交
311
void acpi_ut_delete_internal_object_list(union acpi_operand_object **obj_list);
L
Linus Torvalds 已提交
312 313

/*
R
Robert Moore 已提交
314
 * uteval - object evaluation
L
Linus Torvalds 已提交
315 316
 */
acpi_status
L
Len Brown 已提交
317 318 319 320
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 已提交
321 322

acpi_status
L
Len Brown 已提交
323 324
acpi_ut_evaluate_numeric_object(char *object_name,
				struct acpi_namespace_node *device_node,
325
				u64 *value);
L
Linus Torvalds 已提交
326 327

acpi_status
328
acpi_ut_execute_STA(struct acpi_namespace_node *device_node, u32 *status_flags);
L
Linus Torvalds 已提交
329 330

acpi_status
331 332 333
acpi_ut_execute_power_methods(struct acpi_namespace_node *device_node,
			      const char **method_names,
			      u8 method_count, u8 *out_values);
L
Linus Torvalds 已提交
334

335 336 337
/*
 * utids - device ID support
 */
L
Linus Torvalds 已提交
338
acpi_status
339 340
acpi_ut_execute_HID(struct acpi_namespace_node *device_node,
		    struct acpica_device_id **return_id);
L
Linus Torvalds 已提交
341 342

acpi_status
L
Len Brown 已提交
343
acpi_ut_execute_UID(struct acpi_namespace_node *device_node,
344
		    struct acpica_device_id **return_id);
L
Linus Torvalds 已提交
345 346

acpi_status
347 348
acpi_ut_execute_CID(struct acpi_namespace_node *device_node,
		    struct acpica_device_id_list **return_cid_list);
L
Linus Torvalds 已提交
349

350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
/*
 * 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 已提交
365
/*
R
Robert Moore 已提交
366
 * utobject - internal object create/delete/cache routines
L
Linus Torvalds 已提交
367
 */
368 369
union acpi_operand_object *acpi_ut_create_internal_object_dbg(const char
							      *module_name,
L
Len Brown 已提交
370 371 372 373 374
							      u32 line_number,
							      u32 component_id,
							      acpi_object_type
							      type);

375
void *acpi_ut_allocate_object_desc_dbg(const char *module_name,
L
Len Brown 已提交
376
				       u32 line_number, u32 component_id);
L
Linus Torvalds 已提交
377

378 379
#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 已提交
380

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

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

385 386
union acpi_operand_object *acpi_ut_create_package_object(u32 count);

387 388
union acpi_operand_object *acpi_ut_create_integer_object(u64 value);

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

L
Len Brown 已提交
391
union acpi_operand_object *acpi_ut_create_string_object(acpi_size string_size);
L
Linus Torvalds 已提交
392 393

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

396 397 398 399 400 401 402 403 404 405 406 407 408 409 410
/*
 * utosi - Support for the _OSI predefined control method
 */
acpi_status acpi_ut_initialize_interfaces(void);

void acpi_ut_interface_terminate(void);

acpi_status acpi_ut_install_interface(acpi_string interface_name);

acpi_status acpi_ut_remove_interface(acpi_string interface_name);

struct acpi_interface_info *acpi_ut_get_interface(acpi_string interface_name);

acpi_status acpi_ut_osi_implementation(struct acpi_walk_state *walk_state);

L
Linus Torvalds 已提交
411
/*
R
Robert Moore 已提交
412
 * utstate - Generic state creation/cache routines
L
Linus Torvalds 已提交
413 414
 */
void
L
Len Brown 已提交
415 416
acpi_ut_push_generic_state(union acpi_generic_state **list_head,
			   union acpi_generic_state *state);
L
Linus Torvalds 已提交
417

L
Len Brown 已提交
418 419
union acpi_generic_state *acpi_ut_pop_generic_state(union acpi_generic_state
						    **list_head);
L
Linus Torvalds 已提交
420

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

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

L
Len Brown 已提交
425 426
union acpi_generic_state *acpi_ut_create_update_state(union acpi_operand_object
						      *object, u16 action);
L
Linus Torvalds 已提交
427

L
Len Brown 已提交
428 429 430
union acpi_generic_state *acpi_ut_create_pkg_state(void *internal_object,
						   void *external_object,
						   u16 index);
L
Linus Torvalds 已提交
431 432

acpi_status
L
Len Brown 已提交
433 434 435
acpi_ut_create_update_state_and_push(union acpi_operand_object *object,
				     u16 action,
				     union acpi_generic_state **state_list);
L
Linus Torvalds 已提交
436

R
Robert Moore 已提交
437
#ifdef	ACPI_FUTURE_USAGE
L
Linus Torvalds 已提交
438
acpi_status
L
Len Brown 已提交
439 440 441 442 443
acpi_ut_create_pkg_state_and_push(void *internal_object,
				  void *external_object,
				  u16 index,
				  union acpi_generic_state **state_list);
#endif				/* ACPI_FUTURE_USAGE */
L
Linus Torvalds 已提交
444

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

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

L
Linus Torvalds 已提交
449
/*
R
Robert Moore 已提交
450
 * utmath
L
Linus Torvalds 已提交
451 452
 */
acpi_status
453 454
acpi_ut_divide(u64 in_dividend,
	       u64 in_divisor, u64 *out_quotient, u64 *out_remainder);
L
Linus Torvalds 已提交
455 456

acpi_status
457 458
acpi_ut_short_divide(u64 in_dividend,
		     u32 divisor, u64 *out_quotient, u32 *out_remainder);
L
Linus Torvalds 已提交
459

R
Robert Moore 已提交
460 461 462
/*
 * utmisc
 */
463 464
const char *acpi_ut_validate_exception(acpi_status status);

465 466
u8 acpi_ut_is_pci_root_bridge(char *id);

B
Bob Moore 已提交
467 468
u8 acpi_ut_is_aml_table(struct acpi_table_header *table);

L
Len Brown 已提交
469
acpi_status acpi_ut_allocate_owner_id(acpi_owner_id * owner_id);
470

L
Len Brown 已提交
471
void acpi_ut_release_owner_id(acpi_owner_id * owner_id);
472 473

acpi_status
L
Len Brown 已提交
474 475 476
acpi_ut_walk_package_tree(union acpi_operand_object *source_object,
			  void *target_object,
			  acpi_pkg_callback walk_callback, void *context);
R
Robert Moore 已提交
477

L
Len Brown 已提交
478
void acpi_ut_strupr(char *src_string);
R
Robert Moore 已提交
479

L
Len Brown 已提交
480
void acpi_ut_print_string(char *string, u8 max_length);
R
Robert Moore 已提交
481

L
Len Brown 已提交
482
u8 acpi_ut_valid_acpi_name(u32 name);
L
Linus Torvalds 已提交
483

484
acpi_name acpi_ut_repair_name(char *name);
B
Bob Moore 已提交
485

486
u8 acpi_ut_valid_acpi_char(char character, u32 position);
L
Linus Torvalds 已提交
487

488
acpi_status acpi_ut_strtoul64(char *string, u32 base, u64 * ret_integer);
L
Linus Torvalds 已提交
489 490 491 492 493

/* Values for Base above (16=Hex, 10=Decimal) */

#define ACPI_ANY_BASE        0

B
Bob Moore 已提交
494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510
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

/*
 * utresrc
 */
acpi_status
acpi_ut_walk_aml_resources(u8 * aml,
			   acpi_size aml_length,
L
Len Brown 已提交
511 512
			   acpi_walk_aml_callback user_function,
			   void **context);
B
Bob Moore 已提交
513

B
Bob Moore 已提交
514 515
acpi_status acpi_ut_validate_resource(void *aml, u8 * return_index);

B
Bob Moore 已提交
516 517 518 519
u32 acpi_ut_get_descriptor_length(void *aml);

u16 acpi_ut_get_resource_length(void *aml);

B
Bob Moore 已提交
520 521
u8 acpi_ut_get_resource_header_length(void *aml);

B
Bob Moore 已提交
522 523
u8 acpi_ut_get_resource_type(void *aml);

B
Bob Moore 已提交
524 525 526
acpi_status
acpi_ut_get_resource_end_tag(union acpi_operand_object *obj_desc,
			     u8 ** end_tag);
L
Linus Torvalds 已提交
527 528

/*
529
 * utmutex - mutex support
L
Linus Torvalds 已提交
530
 */
L
Len Brown 已提交
531
acpi_status acpi_ut_mutex_initialize(void);
L
Linus Torvalds 已提交
532

L
Len Brown 已提交
533
void acpi_ut_mutex_terminate(void);
534

L
Len Brown 已提交
535
acpi_status acpi_ut_acquire_mutex(acpi_mutex_handle mutex_id);
536

L
Len Brown 已提交
537
acpi_status acpi_ut_release_mutex(acpi_mutex_handle mutex_id);
538 539 540 541

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

L
Len Brown 已提交
544
acpi_status acpi_ut_delete_caches(void);
L
Linus Torvalds 已提交
545

L
Len Brown 已提交
546
acpi_status acpi_ut_validate_buffer(struct acpi_buffer *buffer);
L
Linus Torvalds 已提交
547 548

acpi_status
L
Len Brown 已提交
549 550 551
acpi_ut_initialize_buffer(struct acpi_buffer *buffer,
			  acpi_size required_length);

552 553
void *acpi_ut_allocate(acpi_size size,
		       u32 component, const char *module, u32 line);
L
Len Brown 已提交
554

B
Bob Moore 已提交
555
void *acpi_ut_allocate_zeroed(acpi_size size,
556
			      u32 component, const char *module, u32 line);
L
Linus Torvalds 已提交
557 558

#ifdef ACPI_DBG_TRACK_ALLOCATIONS
L
Len Brown 已提交
559
void *acpi_ut_allocate_and_track(acpi_size size,
560
				 u32 component, const char *module, u32 line);
L
Len Brown 已提交
561

B
Bob Moore 已提交
562
void *acpi_ut_allocate_zeroed_and_track(acpi_size size,
563 564
					u32 component,
					const char *module, u32 line);
L
Linus Torvalds 已提交
565 566

void
567 568
acpi_ut_free_and_track(void *address,
		       u32 component, const char *module, u32 line);
L
Linus Torvalds 已提交
569

R
Robert Moore 已提交
570
#ifdef	ACPI_FUTURE_USAGE
L
Len Brown 已提交
571 572
void acpi_ut_dump_allocation_info(void);
#endif				/* ACPI_FUTURE_USAGE */
L
Linus Torvalds 已提交
573

574
void acpi_ut_dump_allocations(u32 component, const char *module);
B
Bob Moore 已提交
575 576 577 578 579

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

580 581
#endif				/* ACPI_DBG_TRACK_ALLOCATIONS */

582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599
/*
 * 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);

600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624
/*
 * 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, ...);

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 已提交
625

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