nsparse.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /******************************************************************************
  2. *
  3. * Module Name: nsparse - namespace interface to AML parser
  4. *
  5. *****************************************************************************/
  6. /*
  7. * Copyright (C) 2000 - 2006, R. Byron Moore
  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. #include <acpi/acpi.h>
  43. #include <acpi/acnamesp.h>
  44. #include <acpi/acparser.h>
  45. #include <acpi/acdispat.h>
  46. #define _COMPONENT ACPI_NAMESPACE
  47. ACPI_MODULE_NAME("nsparse")
  48. /*******************************************************************************
  49. *
  50. * FUNCTION: ns_one_complete_parse
  51. *
  52. * PARAMETERS: pass_number - 1 or 2
  53. * table_desc - The table to be parsed.
  54. *
  55. * RETURN: Status
  56. *
  57. * DESCRIPTION: Perform one complete parse of an ACPI/AML table.
  58. *
  59. ******************************************************************************/
  60. acpi_status
  61. acpi_ns_one_complete_parse(u8 pass_number, struct acpi_table_desc * table_desc)
  62. {
  63. union acpi_parse_object *parse_root;
  64. acpi_status status;
  65. struct acpi_walk_state *walk_state;
  66. ACPI_FUNCTION_TRACE("ns_one_complete_parse");
  67. /* Create and init a Root Node */
  68. parse_root = acpi_ps_create_scope_op();
  69. if (!parse_root) {
  70. return_ACPI_STATUS(AE_NO_MEMORY);
  71. }
  72. /* Create and initialize a new walk state */
  73. walk_state = acpi_ds_create_walk_state(table_desc->owner_id,
  74. NULL, NULL, NULL);
  75. if (!walk_state) {
  76. acpi_ps_free_op(parse_root);
  77. return_ACPI_STATUS(AE_NO_MEMORY);
  78. }
  79. status = acpi_ds_init_aml_walk(walk_state, parse_root, NULL,
  80. table_desc->aml_start,
  81. table_desc->aml_length, NULL,
  82. pass_number);
  83. if (ACPI_FAILURE(status)) {
  84. acpi_ds_delete_walk_state(walk_state);
  85. return_ACPI_STATUS(status);
  86. }
  87. /* Parse the AML */
  88. ACPI_DEBUG_PRINT((ACPI_DB_PARSE, "*PARSE* pass %d parse\n",
  89. pass_number));
  90. status = acpi_ps_parse_aml(walk_state);
  91. acpi_ps_delete_parse_tree(parse_root);
  92. return_ACPI_STATUS(status);
  93. }
  94. /*******************************************************************************
  95. *
  96. * FUNCTION: acpi_ns_parse_table
  97. *
  98. * PARAMETERS: table_desc - An ACPI table descriptor for table to parse
  99. * start_node - Where to enter the table into the namespace
  100. *
  101. * RETURN: Status
  102. *
  103. * DESCRIPTION: Parse AML within an ACPI table and return a tree of ops
  104. *
  105. ******************************************************************************/
  106. acpi_status
  107. acpi_ns_parse_table(struct acpi_table_desc *table_desc,
  108. struct acpi_namespace_node *start_node)
  109. {
  110. acpi_status status;
  111. ACPI_FUNCTION_TRACE("ns_parse_table");
  112. /*
  113. * AML Parse, pass 1
  114. *
  115. * In this pass, we load most of the namespace. Control methods
  116. * are not parsed until later. A parse tree is not created. Instead,
  117. * each Parser Op subtree is deleted when it is finished. This saves
  118. * a great deal of memory, and allows a small cache of parse objects
  119. * to service the entire parse. The second pass of the parse then
  120. * performs another complete parse of the AML..
  121. */
  122. ACPI_DEBUG_PRINT((ACPI_DB_PARSE, "**** Start pass 1\n"));
  123. status = acpi_ns_one_complete_parse(1, table_desc);
  124. if (ACPI_FAILURE(status)) {
  125. return_ACPI_STATUS(status);
  126. }
  127. /*
  128. * AML Parse, pass 2
  129. *
  130. * In this pass, we resolve forward references and other things
  131. * that could not be completed during the first pass.
  132. * Another complete parse of the AML is performed, but the
  133. * overhead of this is compensated for by the fact that the
  134. * parse objects are all cached.
  135. */
  136. ACPI_DEBUG_PRINT((ACPI_DB_PARSE, "**** Start pass 2\n"));
  137. status = acpi_ns_one_complete_parse(2, table_desc);
  138. if (ACPI_FAILURE(status)) {
  139. return_ACPI_STATUS(status);
  140. }
  141. return_ACPI_STATUS(status);
  142. }