nsparse.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. /******************************************************************************
  2. *
  3. * Module Name: nsparse - namespace interface to AML parser
  4. *
  5. *****************************************************************************/
  6. /*
  7. * Copyright (C) 2000 - 2005, 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 (
  62. u32 pass_number,
  63. struct acpi_table_desc *table_desc)
  64. {
  65. union acpi_parse_object *parse_root;
  66. acpi_status status;
  67. struct acpi_walk_state *walk_state;
  68. ACPI_FUNCTION_TRACE ("ns_one_complete_parse");
  69. /* Create and init a Root Node */
  70. parse_root = acpi_ps_create_scope_op ();
  71. if (!parse_root) {
  72. return_ACPI_STATUS (AE_NO_MEMORY);
  73. }
  74. /* Create and initialize a new walk state */
  75. walk_state = acpi_ds_create_walk_state (table_desc->table_id,
  76. NULL, NULL, NULL);
  77. if (!walk_state) {
  78. acpi_ps_free_op (parse_root);
  79. return_ACPI_STATUS (AE_NO_MEMORY);
  80. }
  81. status = acpi_ds_init_aml_walk (walk_state, parse_root, NULL,
  82. table_desc->aml_start, table_desc->aml_length,
  83. NULL, pass_number);
  84. if (ACPI_FAILURE (status)) {
  85. acpi_ds_delete_walk_state (walk_state);
  86. return_ACPI_STATUS (status);
  87. }
  88. /* Parse the AML */
  89. ACPI_DEBUG_PRINT ((ACPI_DB_PARSE, "*PARSE* pass %d parse\n", 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 (
  108. struct acpi_table_desc *table_desc,
  109. struct acpi_namespace_node *start_node)
  110. {
  111. acpi_status status;
  112. ACPI_FUNCTION_TRACE ("ns_parse_table");
  113. /*
  114. * AML Parse, pass 1
  115. *
  116. * In this pass, we load most of the namespace. Control methods
  117. * are not parsed until later. A parse tree is not created. Instead,
  118. * each Parser Op subtree is deleted when it is finished. This saves
  119. * a great deal of memory, and allows a small cache of parse objects
  120. * to service the entire parse. The second pass of the parse then
  121. * performs another complete parse of the AML..
  122. */
  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. status = acpi_ns_one_complete_parse (2, table_desc);
  137. if (ACPI_FAILURE (status)) {
  138. return_ACPI_STATUS (status);
  139. }
  140. return_ACPI_STATUS (status);
  141. }