acapps.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /******************************************************************************
  2. *
  3. * Module Name: acapps - common include for ACPI applications/tools
  4. *
  5. *****************************************************************************/
  6. /*
  7. * Copyright (C) 2000 - 2014, Intel Corp.
  8. * All rights reserved.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions, and the following disclaimer,
  15. * without modification.
  16. * 2. Redistributions in binary form must reproduce at minimum a disclaimer
  17. * substantially similar to the "NO WARRANTY" disclaimer below
  18. * ("Disclaimer") and any redistribution must be conditioned upon
  19. * including a substantially similar Disclaimer requirement for further
  20. * binary redistribution.
  21. * 3. Neither the names of the above-listed copyright holders nor the names
  22. * of any contributors may be used to endorse or promote products derived
  23. * from this software without specific prior written permission.
  24. *
  25. * Alternatively, this software may be distributed under the terms of the
  26. * GNU General Public License ("GPL") version 2 as published by the Free
  27. * Software Foundation.
  28. *
  29. * NO WARRANTY
  30. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  31. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  32. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
  33. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  34. * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  35. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  36. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  37. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  38. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  39. * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  40. * POSSIBILITY OF SUCH DAMAGES.
  41. */
  42. #ifndef _ACAPPS
  43. #define _ACAPPS
  44. /* Common info for tool signons */
  45. #define ACPICA_NAME "Intel ACPI Component Architecture"
  46. #define ACPICA_COPYRIGHT "Copyright (c) 2000 - 2014 Intel Corporation"
  47. #if ACPI_MACHINE_WIDTH == 64
  48. #define ACPI_WIDTH "-64"
  49. #elif ACPI_MACHINE_WIDTH == 32
  50. #define ACPI_WIDTH "-32"
  51. #else
  52. #error unknown ACPI_MACHINE_WIDTH
  53. #define ACPI_WIDTH "-??"
  54. #endif
  55. /* Macros for signons and file headers */
  56. #define ACPI_COMMON_SIGNON(utility_name) \
  57. "\n%s\n%s version %8.8X%s [%s]\n%s\n\n", \
  58. ACPICA_NAME, \
  59. utility_name, ((u32) ACPI_CA_VERSION), ACPI_WIDTH, __DATE__, \
  60. ACPICA_COPYRIGHT
  61. #define ACPI_COMMON_HEADER(utility_name, prefix) \
  62. "%s%s\n%s%s version %8.8X%s [%s]\n%s%s\n%s\n", \
  63. prefix, ACPICA_NAME, \
  64. prefix, utility_name, ((u32) ACPI_CA_VERSION), ACPI_WIDTH, __DATE__, \
  65. prefix, ACPICA_COPYRIGHT, \
  66. prefix
  67. /* Macros for usage messages */
  68. #define ACPI_USAGE_HEADER(usage) \
  69. printf ("Usage: %s\nOptions:\n", usage);
  70. #define ACPI_OPTION(name, description) \
  71. printf (" %-18s%s\n", name, description);
  72. #define FILE_SUFFIX_DISASSEMBLY "dsl"
  73. #define ACPI_TABLE_FILE_SUFFIX ".dat"
  74. /*
  75. * getopt
  76. */
  77. int acpi_getopt(int argc, char **argv, char *opts);
  78. int acpi_getopt_argument(int argc, char **argv);
  79. extern int acpi_gbl_optind;
  80. extern int acpi_gbl_opterr;
  81. extern int acpi_gbl_sub_opt_char;
  82. extern char *acpi_gbl_optarg;
  83. /*
  84. * cmfsize - Common get file size function
  85. */
  86. u32 cm_get_file_size(FILE * file);
  87. #ifndef ACPI_DUMP_APP
  88. /*
  89. * adisasm
  90. */
  91. acpi_status
  92. ad_aml_disassemble(u8 out_to_file,
  93. char *filename, char *prefix, char **out_filename);
  94. void ad_print_statistics(void);
  95. acpi_status ad_find_dsdt(u8 **dsdt_ptr, u32 *dsdt_length);
  96. void ad_dump_tables(void);
  97. acpi_status ad_get_local_tables(void);
  98. acpi_status
  99. ad_parse_table(struct acpi_table_header *table,
  100. acpi_owner_id * owner_id, u8 load_table, u8 external);
  101. acpi_status ad_display_tables(char *filename, struct acpi_table_header *table);
  102. acpi_status ad_display_statistics(void);
  103. /*
  104. * adwalk
  105. */
  106. void
  107. acpi_dm_cross_reference_namespace(union acpi_parse_object *parse_tree_root,
  108. struct acpi_namespace_node *namespace_root,
  109. acpi_owner_id owner_id);
  110. void acpi_dm_dump_tree(union acpi_parse_object *origin);
  111. void acpi_dm_find_orphan_methods(union acpi_parse_object *origin);
  112. void
  113. acpi_dm_finish_namespace_load(union acpi_parse_object *parse_tree_root,
  114. struct acpi_namespace_node *namespace_root,
  115. acpi_owner_id owner_id);
  116. void
  117. acpi_dm_convert_resource_indexes(union acpi_parse_object *parse_tree_root,
  118. struct acpi_namespace_node *namespace_root);
  119. /*
  120. * adfile
  121. */
  122. acpi_status ad_initialize(void);
  123. char *fl_generate_filename(char *input_filename, char *suffix);
  124. acpi_status
  125. fl_split_input_pathname(char *input_path,
  126. char **out_directory_path, char **out_filename);
  127. char *ad_generate_filename(char *prefix, char *table_id);
  128. void
  129. ad_write_table(struct acpi_table_header *table,
  130. u32 length, char *table_name, char *oem_table_id);
  131. #endif
  132. #endif /* _ACAPPS */