diff options
Diffstat (limited to 'include/acpi/acmacros.h')
| -rw-r--r-- | include/acpi/acmacros.h | 201 |
1 files changed, 127 insertions, 74 deletions
diff --git a/include/acpi/acmacros.h b/include/acpi/acmacros.h index 702cc4e57f5f..f2be2a881730 100644 --- a/include/acpi/acmacros.h +++ b/include/acpi/acmacros.h | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | *****************************************************************************/ | 5 | *****************************************************************************/ |
| 6 | 6 | ||
| 7 | /* | 7 | /* |
| 8 | * Copyright (C) 2000 - 2005, R. Byron Moore | 8 | * Copyright (C) 2000 - 2006, R. Byron Moore |
| 9 | * All rights reserved. | 9 | * All rights reserved. |
| 10 | * | 10 | * |
| 11 | * Redistribution and use in source and binary forms, with or without | 11 | * Redistribution and use in source and binary forms, with or without |
| @@ -60,7 +60,7 @@ | |||
| 60 | 60 | ||
| 61 | /* | 61 | /* |
| 62 | * For 16-bit addresses, we have to assume that the upper 32 bits | 62 | * For 16-bit addresses, we have to assume that the upper 32 bits |
| 63 | * are zero. | 63 | * (out of 64) are zero. |
| 64 | */ | 64 | */ |
| 65 | #define ACPI_LODWORD(l) ((u32)(l)) | 65 | #define ACPI_LODWORD(l) ((u32)(l)) |
| 66 | #define ACPI_HIDWORD(l) ((u32)(0)) | 66 | #define ACPI_HIDWORD(l) ((u32)(0)) |
| @@ -104,30 +104,38 @@ | |||
| 104 | #define ACPI_FORMAT_UINT64(i) ACPI_HIDWORD(i),ACPI_LODWORD(i) | 104 | #define ACPI_FORMAT_UINT64(i) ACPI_HIDWORD(i),ACPI_LODWORD(i) |
| 105 | 105 | ||
| 106 | /* | 106 | /* |
| 107 | * Extract a byte of data using a pointer. Any more than a byte and we | 107 | * Extract data using a pointer. Any more than a byte and we |
| 108 | * get into potential aligment issues -- see the STORE macros below | 108 | * get into potential aligment issues -- see the STORE macros below. |
| 109 | * Use with care. | ||
| 109 | */ | 110 | */ |
| 110 | #define ACPI_GET8(addr) (*(u8*)(addr)) | 111 | #define ACPI_GET8(ptr) *ACPI_CAST_PTR (u8, ptr) |
| 112 | #define ACPI_GET16(ptr) *ACPI_CAST_PTR (u16, ptr) | ||
| 113 | #define ACPI_GET32(ptr) *ACPI_CAST_PTR (u32, ptr) | ||
| 114 | #define ACPI_GET64(ptr) *ACPI_CAST_PTR (u64, ptr) | ||
| 115 | #define ACPI_SET8(ptr) *ACPI_CAST_PTR (u8, ptr) | ||
| 116 | #define ACPI_SET16(ptr) *ACPI_CAST_PTR (u16, ptr) | ||
| 117 | #define ACPI_SET32(ptr) *ACPI_CAST_PTR (u32, ptr) | ||
| 118 | #define ACPI_SET64(ptr) *ACPI_CAST_PTR (u64, ptr) | ||
| 111 | 119 | ||
| 112 | /* Pointer arithmetic */ | 120 | /* |
| 113 | 121 | * Pointer manipulation | |
| 114 | #define ACPI_PTR_ADD(t,a,b) (t *) (void *)((char *)(a) + (acpi_native_uint)(b)) | 122 | */ |
| 115 | #define ACPI_PTR_DIFF(a,b) (acpi_native_uint) ((char *)(a) - (char *)(b)) | 123 | #define ACPI_CAST_PTR(t, p) ((t *) (acpi_uintptr_t) (p)) |
| 124 | #define ACPI_CAST_INDIRECT_PTR(t, p) ((t **) (acpi_uintptr_t) (p)) | ||
| 125 | #define ACPI_ADD_PTR(t,a,b) ACPI_CAST_PTR (t, (ACPI_CAST_PTR (u8,(a)) + (acpi_native_uint)(b))) | ||
| 126 | #define ACPI_PTR_DIFF(a,b) (acpi_native_uint) (ACPI_CAST_PTR (u8,(a)) - ACPI_CAST_PTR (u8,(b))) | ||
| 116 | 127 | ||
| 117 | /* Pointer/Integer type conversions */ | 128 | /* Pointer/Integer type conversions */ |
| 118 | 129 | ||
| 119 | #define ACPI_TO_POINTER(i) ACPI_PTR_ADD (void, (void *) NULL,(acpi_native_uint)i) | 130 | #define ACPI_TO_POINTER(i) ACPI_ADD_PTR (void,(void *) NULL,(acpi_native_uint) i) |
| 120 | #define ACPI_TO_INTEGER(p) ACPI_PTR_DIFF (p,(void *) NULL) | 131 | #define ACPI_TO_INTEGER(p) ACPI_PTR_DIFF (p,(void *) NULL) |
| 121 | #define ACPI_OFFSET(d,f) (acpi_size) ACPI_PTR_DIFF (&(((d *)0)->f),(void *) NULL) | 132 | #define ACPI_OFFSET(d,f) (acpi_size) ACPI_PTR_DIFF (&(((d *)0)->f),(void *) NULL) |
| 122 | #define ACPI_FADT_OFFSET(f) ACPI_OFFSET (FADT_DESCRIPTOR, f) | 133 | #define ACPI_FADT_OFFSET(f) ACPI_OFFSET (FADT_DESCRIPTOR, f) |
| 123 | 134 | ||
| 124 | #define ACPI_CAST_PTR(t, p) ((t *)(void *)(p)) | ||
| 125 | #define ACPI_CAST_INDIRECT_PTR(t, p) ((t **)(void *)(p)) | ||
| 126 | |||
| 127 | #if ACPI_MACHINE_WIDTH == 16 | 135 | #if ACPI_MACHINE_WIDTH == 16 |
| 128 | #define ACPI_STORE_POINTER(d,s) ACPI_MOVE_32_TO_32(d,s) | 136 | #define ACPI_STORE_POINTER(d,s) ACPI_MOVE_32_TO_32(d,s) |
| 129 | #define ACPI_PHYSADDR_TO_PTR(i) (void *)(i) | 137 | #define ACPI_PHYSADDR_TO_PTR(i) (void *)(i) |
| 130 | #define ACPI_PTR_TO_PHYSADDR(i) (u32) (char *)(i) | 138 | #define ACPI_PTR_TO_PHYSADDR(i) (u32) ACPI_CAST_PTR (u8,(i)) |
| 131 | #else | 139 | #else |
| 132 | #define ACPI_PHYSADDR_TO_PTR(i) ACPI_TO_POINTER(i) | 140 | #define ACPI_PHYSADDR_TO_PTR(i) ACPI_TO_POINTER(i) |
| 133 | #define ACPI_PTR_TO_PHYSADDR(i) ACPI_TO_INTEGER(i) | 141 | #define ACPI_PTR_TO_PHYSADDR(i) ACPI_TO_INTEGER(i) |
| @@ -202,7 +210,7 @@ | |||
| 202 | 210 | ||
| 203 | #define ACPI_BUFFER_INDEX(buf_len,buf_offset,byte_gran) (buf_offset) | 211 | #define ACPI_BUFFER_INDEX(buf_len,buf_offset,byte_gran) (buf_offset) |
| 204 | 212 | ||
| 205 | #ifdef ACPI_MISALIGNED_TRANSFERS | 213 | #ifndef ACPI_MISALIGNMENT_NOT_SUPPORTED |
| 206 | 214 | ||
| 207 | /* The hardware supports unaligned transfers, just do the little-endian move */ | 215 | /* The hardware supports unaligned transfers, just do the little-endian move */ |
| 208 | 216 | ||
| @@ -326,11 +334,19 @@ | |||
| 326 | #define ACPI_MUL_16(a) _ACPI_MUL(a,4) | 334 | #define ACPI_MUL_16(a) _ACPI_MUL(a,4) |
| 327 | #define ACPI_MOD_16(a) _ACPI_MOD(a,16) | 335 | #define ACPI_MOD_16(a) _ACPI_MOD(a,16) |
| 328 | 336 | ||
| 337 | #define ACPI_DIV_32(a) _ACPI_DIV(a,5) | ||
| 338 | #define ACPI_MUL_32(a) _ACPI_MUL(a,5) | ||
| 339 | #define ACPI_MOD_32(a) _ACPI_MOD(a,32) | ||
| 340 | |||
| 329 | /* | 341 | /* |
| 330 | * Rounding macros (Power of two boundaries only) | 342 | * Rounding macros (Power of two boundaries only) |
| 331 | */ | 343 | */ |
| 332 | #define ACPI_ROUND_DOWN(value,boundary) (((acpi_native_uint)(value)) & (~(((acpi_native_uint) boundary)-1))) | 344 | #define ACPI_ROUND_DOWN(value,boundary) (((acpi_native_uint)(value)) & \ |
| 333 | #define ACPI_ROUND_UP(value,boundary) ((((acpi_native_uint)(value)) + (((acpi_native_uint) boundary)-1)) & (~(((acpi_native_uint) boundary)-1))) | 345 | (~(((acpi_native_uint) boundary)-1))) |
| 346 | |||
| 347 | #define ACPI_ROUND_UP(value,boundary) ((((acpi_native_uint)(value)) + \ | ||
| 348 | (((acpi_native_uint) boundary)-1)) & \ | ||
| 349 | (~(((acpi_native_uint) boundary)-1))) | ||
| 334 | 350 | ||
| 335 | #define ACPI_ROUND_DOWN_TO_32_BITS(a) ACPI_ROUND_DOWN(a,4) | 351 | #define ACPI_ROUND_DOWN_TO_32_BITS(a) ACPI_ROUND_DOWN(a,4) |
| 336 | #define ACPI_ROUND_DOWN_TO_64_BITS(a) ACPI_ROUND_DOWN(a,8) | 352 | #define ACPI_ROUND_DOWN_TO_64_BITS(a) ACPI_ROUND_DOWN(a,8) |
| @@ -365,6 +381,14 @@ | |||
| 365 | #define ACPI_REGISTER_PREPARE_BITS(val, pos, mask) ((val << pos) & mask) | 381 | #define ACPI_REGISTER_PREPARE_BITS(val, pos, mask) ((val << pos) & mask) |
| 366 | #define ACPI_REGISTER_INSERT_VALUE(reg, pos, mask, val) reg = (reg & (~(mask))) | ACPI_REGISTER_PREPARE_BITS(val, pos, mask) | 382 | #define ACPI_REGISTER_INSERT_VALUE(reg, pos, mask, val) reg = (reg & (~(mask))) | ACPI_REGISTER_PREPARE_BITS(val, pos, mask) |
| 367 | 383 | ||
| 384 | /* Generate a UUID */ | ||
| 385 | |||
| 386 | #define ACPI_INIT_UUID(a,b,c,d0,d1,d2,d3,d4,d5,d6,d7) \ | ||
| 387 | (a) & 0xFF, ((a) >> 8) & 0xFF, ((a) >> 16) & 0xFF, ((a) >> 24) & 0xFF, \ | ||
| 388 | (b) & 0xFF, ((b) >> 8) & 0xFF, \ | ||
| 389 | (c) & 0xFF, ((c) >> 8) & 0xFF, \ | ||
| 390 | (d0), (d1), (d2), (d3), (d4), (d5), (d6), (d7) | ||
| 391 | |||
| 368 | /* | 392 | /* |
| 369 | * An struct acpi_namespace_node * can appear in some contexts, | 393 | * An struct acpi_namespace_node * can appear in some contexts, |
| 370 | * where a pointer to an union acpi_operand_object can also | 394 | * where a pointer to an union acpi_operand_object can also |
| @@ -423,57 +447,52 @@ | |||
| 423 | #define GET_CURRENT_ARG_TYPE(list) (list & ((u32) 0x1F)) | 447 | #define GET_CURRENT_ARG_TYPE(list) (list & ((u32) 0x1F)) |
| 424 | #define INCREMENT_ARG_LIST(list) (list >>= ((u32) ARG_TYPE_WIDTH)) | 448 | #define INCREMENT_ARG_LIST(list) (list >>= ((u32) ARG_TYPE_WIDTH)) |
| 425 | 449 | ||
| 450 | #if defined (ACPI_DEBUG_OUTPUT) || !defined (ACPI_NO_ERROR_MESSAGES) | ||
| 426 | /* | 451 | /* |
| 427 | * Reporting macros that are never compiled out | 452 | * Module name is include in both debug and non-debug versions primarily for |
| 453 | * error messages. The __FILE__ macro is not very useful for this, because it | ||
| 454 | * often includes the entire pathname to the module | ||
| 428 | */ | 455 | */ |
| 429 | #define ACPI_PARAM_LIST(pl) pl | 456 | #define ACPI_MODULE_NAME(name) static char ACPI_UNUSED_VAR *_acpi_module_name = name; |
| 457 | #else | ||
| 458 | #define ACPI_MODULE_NAME(name) | ||
| 459 | #endif | ||
| 430 | 460 | ||
| 431 | /* | 461 | /* |
| 432 | * Error reporting. These versions add callers module and line#. | 462 | * Ascii error messages can be configured out |
| 433 | * | ||
| 434 | * Since _acpi_module_name gets compiled out when ACPI_DEBUG_OUTPUT | ||
| 435 | * isn't defined, only use it in debug mode. | ||
| 436 | */ | 463 | */ |
| 437 | #ifdef ACPI_DEBUG_OUTPUT | 464 | #ifndef ACPI_NO_ERROR_MESSAGES |
| 465 | #define AE_INFO _acpi_module_name, __LINE__ | ||
| 438 | 466 | ||
| 439 | #define ACPI_REPORT_INFO(fp) {acpi_ut_report_info(_acpi_module_name,__LINE__,_COMPONENT); \ | 467 | /* |
| 440 | acpi_os_printf ACPI_PARAM_LIST(fp);} | 468 | * Error reporting. Callers module and line number are inserted by AE_INFO, |
| 441 | #define ACPI_REPORT_ERROR(fp) {acpi_ut_report_error(_acpi_module_name,__LINE__,_COMPONENT); \ | 469 | * the plist contains a set of parens to allow variable-length lists. |
| 442 | acpi_os_printf ACPI_PARAM_LIST(fp);} | 470 | * These macros are used for both the debug and non-debug versions of the code. |
| 443 | #define ACPI_REPORT_WARNING(fp) {acpi_ut_report_warning(_acpi_module_name,__LINE__,_COMPONENT); \ | 471 | */ |
| 444 | acpi_os_printf ACPI_PARAM_LIST(fp);} | 472 | #define ACPI_INFO(plist) acpi_ut_info plist |
| 445 | #define ACPI_REPORT_NSERROR(s,e) acpi_ns_report_error(_acpi_module_name,__LINE__,_COMPONENT, s, e); | 473 | #define ACPI_WARNING(plist) acpi_ut_warning plist |
| 446 | 474 | #define ACPI_EXCEPTION(plist) acpi_ut_exception plist | |
| 447 | #define ACPI_REPORT_METHOD_ERROR(s,n,p,e) acpi_ns_report_method_error(_acpi_module_name,__LINE__,_COMPONENT, s, n, p, e); | 475 | #define ACPI_ERROR(plist) acpi_ut_error plist |
| 476 | #define ACPI_ERROR_NAMESPACE(s,e) acpi_ns_report_error (AE_INFO, s, e); | ||
| 477 | #define ACPI_ERROR_METHOD(s,n,p,e) acpi_ns_report_method_error (AE_INFO, s, n, p, e); | ||
| 448 | 478 | ||
| 449 | #else | 479 | #else |
| 450 | 480 | ||
| 451 | #define ACPI_REPORT_INFO(fp) {acpi_ut_report_info("ACPI",__LINE__,_COMPONENT); \ | 481 | /* No error messages */ |
| 452 | acpi_os_printf ACPI_PARAM_LIST(fp);} | ||
| 453 | #define ACPI_REPORT_ERROR(fp) {acpi_ut_report_error("ACPI",__LINE__,_COMPONENT); \ | ||
| 454 | acpi_os_printf ACPI_PARAM_LIST(fp);} | ||
| 455 | #define ACPI_REPORT_WARNING(fp) {acpi_ut_report_warning("ACPI",__LINE__,_COMPONENT); \ | ||
| 456 | acpi_os_printf ACPI_PARAM_LIST(fp);} | ||
| 457 | #define ACPI_REPORT_NSERROR(s,e) acpi_ns_report_error("ACPI",__LINE__,_COMPONENT, s, e); | ||
| 458 | 482 | ||
| 459 | #define ACPI_REPORT_METHOD_ERROR(s,n,p,e) acpi_ns_report_method_error("ACPI",__LINE__,_COMPONENT, s, n, p, e); | 483 | #define ACPI_INFO(plist) |
| 484 | #define ACPI_WARNING(plist) | ||
| 485 | #define ACPI_EXCEPTION(plist) | ||
| 486 | #define ACPI_ERROR(plist) | ||
| 487 | #define ACPI_ERROR_NAMESPACE(s,e) | ||
| 488 | #define ACPI_ERROR_METHOD(s,n,p,e) | ||
| 460 | 489 | ||
| 461 | #endif | 490 | #endif |
| 462 | 491 | ||
| 463 | /* Error reporting. These versions pass thru the module and line# */ | ||
| 464 | |||
| 465 | #define _ACPI_REPORT_INFO(a,b,c,fp) {acpi_ut_report_info(a,b,c); \ | ||
| 466 | acpi_os_printf ACPI_PARAM_LIST(fp);} | ||
| 467 | #define _ACPI_REPORT_ERROR(a,b,c,fp) {acpi_ut_report_error(a,b,c); \ | ||
| 468 | acpi_os_printf ACPI_PARAM_LIST(fp);} | ||
| 469 | #define _ACPI_REPORT_WARNING(a,b,c,fp) {acpi_ut_report_warning(a,b,c); \ | ||
| 470 | acpi_os_printf ACPI_PARAM_LIST(fp);} | ||
| 471 | |||
| 472 | /* | 492 | /* |
| 473 | * Debug macros that are conditionally compiled | 493 | * Debug macros that are conditionally compiled |
| 474 | */ | 494 | */ |
| 475 | #ifdef ACPI_DEBUG_OUTPUT | 495 | #ifdef ACPI_DEBUG_OUTPUT |
| 476 | #define ACPI_MODULE_NAME(name) static char ACPI_UNUSED_VAR *_acpi_module_name = name; | ||
| 477 | 496 | ||
| 478 | /* | 497 | /* |
| 479 | * Common parameters used for debug output functions: | 498 | * Common parameters used for debug output functions: |
| @@ -509,7 +528,7 @@ | |||
| 509 | #endif | 528 | #endif |
| 510 | 529 | ||
| 511 | #define ACPI_FUNCTION_TRACE(a) ACPI_FUNCTION_NAME(a) \ | 530 | #define ACPI_FUNCTION_TRACE(a) ACPI_FUNCTION_NAME(a) \ |
| 512 | acpi_ut_trace(ACPI_DEBUG_PARAMETERS) | 531 | acpi_ut_trace(ACPI_DEBUG_PARAMETERS) |
| 513 | #define ACPI_FUNCTION_TRACE_PTR(a,b) ACPI_FUNCTION_NAME(a) \ | 532 | #define ACPI_FUNCTION_TRACE_PTR(a,b) ACPI_FUNCTION_NAME(a) \ |
| 514 | acpi_ut_trace_ptr(ACPI_DEBUG_PARAMETERS,(void *)b) | 533 | acpi_ut_trace_ptr(ACPI_DEBUG_PARAMETERS,(void *)b) |
| 515 | #define ACPI_FUNCTION_TRACE_U32(a,b) ACPI_FUNCTION_NAME(a) \ | 534 | #define ACPI_FUNCTION_TRACE_U32(a,b) ACPI_FUNCTION_NAME(a) \ |
| @@ -525,6 +544,9 @@ | |||
| 525 | * bad form, but having a separate exit macro is very ugly and difficult to maintain. | 544 | * bad form, but having a separate exit macro is very ugly and difficult to maintain. |
| 526 | * One of the FUNCTION_TRACE macros above must be used in conjunction with these macros | 545 | * One of the FUNCTION_TRACE macros above must be used in conjunction with these macros |
| 527 | * so that "_acpi_function_name" is defined. | 546 | * so that "_acpi_function_name" is defined. |
| 547 | * | ||
| 548 | * Note: the DO_WHILE0 macro is used to prevent some compilers from complaining | ||
| 549 | * about these constructs. | ||
| 528 | */ | 550 | */ |
| 529 | #ifdef ACPI_USE_DO_WHILE_0 | 551 | #ifdef ACPI_USE_DO_WHILE_0 |
| 530 | #define ACPI_DO_WHILE0(a) do a while(0) | 552 | #define ACPI_DO_WHILE0(a) do a while(0) |
| @@ -532,10 +554,55 @@ | |||
| 532 | #define ACPI_DO_WHILE0(a) a | 554 | #define ACPI_DO_WHILE0(a) a |
| 533 | #endif | 555 | #endif |
| 534 | 556 | ||
| 535 | #define return_VOID ACPI_DO_WHILE0 ({acpi_ut_exit(ACPI_DEBUG_PARAMETERS);return;}) | 557 | #define return_VOID ACPI_DO_WHILE0 ({ \ |
| 536 | #define return_ACPI_STATUS(s) ACPI_DO_WHILE0 ({acpi_ut_status_exit(ACPI_DEBUG_PARAMETERS,(s));return((s));}) | 558 | acpi_ut_exit (ACPI_DEBUG_PARAMETERS); \ |
| 537 | #define return_VALUE(s) ACPI_DO_WHILE0 ({acpi_ut_value_exit(ACPI_DEBUG_PARAMETERS,(acpi_integer)(s));return((s));}) | 559 | return;}) |
| 538 | #define return_PTR(s) ACPI_DO_WHILE0 ({acpi_ut_ptr_exit(ACPI_DEBUG_PARAMETERS,(u8 *)(s));return((s));}) | 560 | /* |
| 561 | * There are two versions of most of the return macros. The default version is | ||
| 562 | * safer, since it avoids side-effects by guaranteeing that the argument will | ||
| 563 | * not be evaluated twice. | ||
| 564 | * | ||
| 565 | * A less-safe version of the macros is provided for optional use if the | ||
| 566 | * compiler uses excessive CPU stack (for example, this may happen in the | ||
| 567 | * debug case if code optimzation is disabled.) | ||
| 568 | */ | ||
| 569 | #ifndef ACPI_SIMPLE_RETURN_MACROS | ||
| 570 | |||
| 571 | #define return_ACPI_STATUS(s) ACPI_DO_WHILE0 ({ \ | ||
| 572 | register acpi_status _s = (s); \ | ||
| 573 | acpi_ut_status_exit (ACPI_DEBUG_PARAMETERS, _s); \ | ||
| 574 | return (_s); }) | ||
| 575 | #define return_PTR(s) ACPI_DO_WHILE0 ({ \ | ||
| 576 | register void *_s = (void *) (s); \ | ||
| 577 | acpi_ut_ptr_exit (ACPI_DEBUG_PARAMETERS, (u8 *) _s); \ | ||
| 578 | return (_s); }) | ||
| 579 | #define return_VALUE(s) ACPI_DO_WHILE0 ({ \ | ||
| 580 | register acpi_integer _s = (s); \ | ||
| 581 | acpi_ut_value_exit (ACPI_DEBUG_PARAMETERS, _s); \ | ||
| 582 | return (_s); }) | ||
| 583 | #define return_UINT8(s) ACPI_DO_WHILE0 ({ \ | ||
| 584 | register u8 _s = (u8) (s); \ | ||
| 585 | acpi_ut_value_exit (ACPI_DEBUG_PARAMETERS, (acpi_integer) _s); \ | ||
| 586 | return (_s); }) | ||
| 587 | #define return_UINT32(s) ACPI_DO_WHILE0 ({ \ | ||
| 588 | register u32 _s = (u32) (s); \ | ||
| 589 | acpi_ut_value_exit (ACPI_DEBUG_PARAMETERS, (acpi_integer) _s); \ | ||
| 590 | return (_s); }) | ||
| 591 | #else /* Use original less-safe macros */ | ||
| 592 | |||
| 593 | #define return_ACPI_STATUS(s) ACPI_DO_WHILE0 ({ \ | ||
| 594 | acpi_ut_status_exit (ACPI_DEBUG_PARAMETERS, (s)); \ | ||
| 595 | return((s)); }) | ||
| 596 | #define return_PTR(s) ACPI_DO_WHILE0 ({ \ | ||
| 597 | acpi_ut_ptr_exit (ACPI_DEBUG_PARAMETERS, (u8 *) (s)); \ | ||
| 598 | return((s)); }) | ||
| 599 | #define return_VALUE(s) ACPI_DO_WHILE0 ({ \ | ||
| 600 | acpi_ut_value_exit (ACPI_DEBUG_PARAMETERS, (acpi_integer) (s)); \ | ||
| 601 | return((s)); }) | ||
| 602 | #define return_UINT8(s) return_VALUE(s) | ||
| 603 | #define return_UINT32(s) return_VALUE(s) | ||
| 604 | |||
| 605 | #endif /* ACPI_SIMPLE_RETURN_MACROS */ | ||
| 539 | 606 | ||
| 540 | /* Conditional execution */ | 607 | /* Conditional execution */ |
| 541 | 608 | ||
| @@ -555,18 +622,6 @@ | |||
| 555 | #define ACPI_DUMP_PATHNAME(a,b,c,d) acpi_ns_dump_pathname(a,b,c,d) | 622 | #define ACPI_DUMP_PATHNAME(a,b,c,d) acpi_ns_dump_pathname(a,b,c,d) |
| 556 | #define ACPI_DUMP_RESOURCE_LIST(a) acpi_rs_dump_resource_list(a) | 623 | #define ACPI_DUMP_RESOURCE_LIST(a) acpi_rs_dump_resource_list(a) |
| 557 | #define ACPI_DUMP_BUFFER(a,b) acpi_ut_dump_buffer((u8 *)a,b,DB_BYTE_DISPLAY,_COMPONENT) | 624 | #define ACPI_DUMP_BUFFER(a,b) acpi_ut_dump_buffer((u8 *)a,b,DB_BYTE_DISPLAY,_COMPONENT) |
| 558 | #define ACPI_BREAK_MSG(a) acpi_os_signal (ACPI_SIGNAL_BREAKPOINT,(a)) | ||
| 559 | |||
| 560 | /* | ||
| 561 | * Generate INT3 on ACPI_ERROR (Debug only!) | ||
| 562 | */ | ||
| 563 | #define ACPI_ERROR_BREAK | ||
| 564 | #ifdef ACPI_ERROR_BREAK | ||
| 565 | #define ACPI_BREAK_ON_ERROR(lvl) if ((lvl)&ACPI_ERROR) \ | ||
| 566 | acpi_os_signal(ACPI_SIGNAL_BREAKPOINT,"Fatal error encountered\n") | ||
| 567 | #else | ||
| 568 | #define ACPI_BREAK_ON_ERROR(lvl) | ||
| 569 | #endif | ||
| 570 | 625 | ||
| 571 | /* | 626 | /* |
| 572 | * Master debug print macros | 627 | * Master debug print macros |
| @@ -574,17 +629,14 @@ | |||
| 574 | * 1) Debug print for the current component is enabled | 629 | * 1) Debug print for the current component is enabled |
| 575 | * 2) Debug error level or trace level for the print statement is enabled | 630 | * 2) Debug error level or trace level for the print statement is enabled |
| 576 | */ | 631 | */ |
| 577 | #define ACPI_DEBUG_PRINT(pl) acpi_ut_debug_print ACPI_PARAM_LIST(pl) | 632 | #define ACPI_DEBUG_PRINT(plist) acpi_ut_debug_print plist |
| 578 | #define ACPI_DEBUG_PRINT_RAW(pl) acpi_ut_debug_print_raw ACPI_PARAM_LIST(pl) | 633 | #define ACPI_DEBUG_PRINT_RAW(plist) acpi_ut_debug_print_raw plist |
| 579 | 634 | ||
| 580 | #else | 635 | #else |
| 581 | /* | 636 | /* |
| 582 | * This is the non-debug case -- make everything go away, | 637 | * This is the non-debug case -- make everything go away, |
| 583 | * leaving no executable debug code! | 638 | * leaving no executable debug code! |
| 584 | */ | 639 | */ |
| 585 | #define ACPI_MODULE_NAME(name) | ||
| 586 | #define _acpi_module_name "" | ||
| 587 | |||
| 588 | #define ACPI_DEBUG_EXEC(a) | 640 | #define ACPI_DEBUG_EXEC(a) |
| 589 | #define ACPI_NORMAL_EXEC(a) a; | 641 | #define ACPI_NORMAL_EXEC(a) a; |
| 590 | 642 | ||
| @@ -607,11 +659,12 @@ | |||
| 607 | #define ACPI_DUMP_BUFFER(a,b) | 659 | #define ACPI_DUMP_BUFFER(a,b) |
| 608 | #define ACPI_DEBUG_PRINT(pl) | 660 | #define ACPI_DEBUG_PRINT(pl) |
| 609 | #define ACPI_DEBUG_PRINT_RAW(pl) | 661 | #define ACPI_DEBUG_PRINT_RAW(pl) |
| 610 | #define ACPI_BREAK_MSG(a) | ||
| 611 | 662 | ||
| 612 | #define return_VOID return | 663 | #define return_VOID return |
| 613 | #define return_ACPI_STATUS(s) return(s) | 664 | #define return_ACPI_STATUS(s) return(s) |
| 614 | #define return_VALUE(s) return(s) | 665 | #define return_VALUE(s) return(s) |
| 666 | #define return_UINT8(s) return(s) | ||
| 667 | #define return_UINT32(s) return(s) | ||
| 615 | #define return_PTR(s) return(s) | 668 | #define return_PTR(s) return(s) |
| 616 | 669 | ||
| 617 | #endif | 670 | #endif |
