public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Sami Mujawar" <sami.mujawar@arm.com>
To: <devel@edk2.groups.io>
Cc: Sami Mujawar <sami.mujawar@arm.com>, <Alexei.Fedorov@arm.com>,
	<pierre.gondois@arm.com>, <ard.biesheuvel@arm.com>,
	<Matteo.Carlini@arm.com>, <Ben.Adderson@arm.com>, <nd@arm.com>
Subject: [PATCH v1 07/30] DynamicTablesPkg: AML tree traversal
Date: Wed, 12 Aug 2020 16:22:13 +0100	[thread overview]
Message-ID: <20200812152236.31164-8-sami.mujawar@arm.com> (raw)
In-Reply-To: <20200812152236.31164-1-sami.mujawar@arm.com>

From: Pierre Gondois <pierre.gondois@arm.com>

The AML tree traversal provides interfaces to traverse the
nodes in the AML tree.

It provides interfaces to traverse the AML tree in the
following order:

  - Traverse sibling nodes.

    (Node)        /-i           # Child of fixed argument b
        \        /
         |- [a][b][c][d]        # Fixed Arguments
         |- {(e)->(f)->(g)}     # Variable Arguments
               \
                \-h             # Child of variable argument e

    Traversal Order:
      - AmlGetNextSibling() : a, b, c, d, e, f, g, NULL
      - AmlGetPreviousSibling(): g, f, e, d, c, b, a, NULL

  - Iterate depth-first path (follow AML byte stream).
    (Node)        /-i           # Child of fixed argument b
        \        /
         |- [a][b][c][d]        # Fixed Arguments
         |- {(e)->(f)->(g)}     # Variable Arguments
               \
                \-h             # Child of variable argument e

    Traversal Order:
      - AmlGetNextNode(): a, b, i, c, d, e, h, f, g, NULL
      - AmlGetPreviousNode() g, f, h, e, d, c, i, b, a, NULL
        Note: The branch i and h will be traversed if it has
              any children.

Signed-off-by: Pierre Gondois <pierre.gondois@arm.com>
Signed-off-by: Sami Mujawar <sami.mujawar@arm.com>
---
 DynamicTablesPkg/Library/Common/AmlLib/Tree/AmlTreeTraversal.c | 548 ++++++++++++++++++++
 DynamicTablesPkg/Library/Common/AmlLib/Tree/AmlTreeTraversal.h | 138 +++++
 2 files changed, 686 insertions(+)

diff --git a/DynamicTablesPkg/Library/Common/AmlLib/Tree/AmlTreeTraversal.c b/DynamicTablesPkg/Library/Common/AmlLib/Tree/AmlTreeTraversal.c
new file mode 100644
index 0000000000000000000000000000000000000000..9d0c794dbe773061233a4f88e18cb55431bfbf4c
--- /dev/null
+++ b/DynamicTablesPkg/Library/Common/AmlLib/Tree/AmlTreeTraversal.c
@@ -0,0 +1,548 @@
+/** @file
+  AML Tree Traversal.
+
+  Copyright (c) 2019 - 2020, Arm Limited. All rights reserved.<BR>
+
+  SPDX-License-Identifier: BSD-2-Clause-Patent
+**/
+
+#include <Tree/AmlTreeTraversal.h>
+
+#include <AmlCoreInterface.h>
+#include <Tree/AmlTree.h>
+
+/** Get the sibling node among the nodes being in
+    the same variable argument list.
+
+  (ParentNode)  /-i                 # Child of fixed argument b
+      \        /
+       |- [a][b][c][d]              # Fixed Arguments
+       |- {(VarArgNode)->(f)->(g)}  # Variable Arguments
+             \
+              \-h                   # Child of variable argument e
+
+  Node must be in a variable list of arguments.
+  Traversal Order: VarArgNode, f, g, NULL
+
+  @ingroup CoreNavigationApis
+
+  @param  [in]  VarArgNode  Pointer to a node.
+                            Must be in a variable list of arguments.
+
+  @return The next node after VarArgNode in the variable list of arguments.
+          Return NULL if
+          - VarArgNode is the last node of the list, or
+          - VarArgNode is not part of a variable list of arguments.
+**/
+AML_NODE_HEADER *
+EFIAPI
+AmlGetSiblingVariableArgument (
+  IN  AML_NODE_HEADER   * VarArgNode
+  )
+{
+  EAML_PARSE_INDEX    Index;
+  AML_NODE_HEADER   * ParentNode;
+
+  // VarArgNode must be an object node or a data node,
+  // and be in a variable list of arguments.
+  if ((!IS_AML_OBJECT_NODE (VarArgNode) &&
+       !IS_AML_DATA_NODE (VarArgNode))  ||
+      AmlIsNodeFixedArgument (VarArgNode, &Index)) {
+    ASSERT (0);
+    return NULL;
+  }
+
+  ParentNode = AmlGetParent (VarArgNode);
+  if (!IS_AML_NODE_VALID (ParentNode)) {
+    ASSERT (0);
+    return NULL;
+  }
+
+  return AmlGetNextVariableArgument (ParentNode, VarArgNode);
+}
+
+/** Get the next variable argument.
+
+  (Node)        /-i           # Child of fixed argument b
+      \        /
+       |- [a][b][c][d]        # Fixed Arguments
+       |- {(e)->(f)->(g)}     # Variable Arguments
+             \
+              \-h             # Child of variable argument e
+
+  Traversal Order: e, f, g, NULL
+
+  @param  [in]  Node        Pointer to a Root node or Object Node.
+  @param  [in]  CurrVarArg  Pointer to the Current Variable Argument.
+
+  @return The node after the CurrVarArg in the variable list of arguments.
+          If CurrVarArg is NULL, return the first node of the
+          variable argument list.
+          Return NULL if
+          - CurrVarArg is the last node of the list, or
+          - Node does not have a variable list of arguments.
+**/
+AML_NODE_HEADER *
+EFIAPI
+AmlGetNextVariableArgument (
+  IN  AML_NODE_HEADER  * Node,
+  IN  AML_NODE_HEADER  * CurrVarArg
+  )
+{
+  CONST LIST_ENTRY       * StartLink;
+  CONST LIST_ENTRY       * NextLink;
+
+  // Node must be a RootNode or an Object Node
+  // and the CurrVarArg must not be a Root Node.
+  if ((!IS_AML_ROOT_NODE (Node)           &&
+       !IS_AML_OBJECT_NODE (Node))        ||
+      ((CurrVarArg != NULL)               &&
+       (!IS_AML_OBJECT_NODE (CurrVarArg)  &&
+        !IS_AML_DATA_NODE (CurrVarArg)))) {
+    ASSERT (0);
+    return NULL;
+  }
+
+  StartLink = AmlNodeGetVariableArgList (Node);
+  if (StartLink == NULL) {
+    return NULL;
+  }
+
+  // Get the first child of the variable list of arguments.
+  if (CurrVarArg == NULL) {
+    NextLink = StartLink->ForwardLink;
+    if (NextLink != StartLink) {
+      return (AML_NODE_HEADER*)NextLink;
+    }
+    // List is empty.
+    return NULL;
+  }
+
+  // Check if CurrVarArg is in the VariableArgument List.
+  if (!IsNodeInList (StartLink, &CurrVarArg->Link)) {
+    ASSERT (0);
+    return NULL;
+  }
+
+  // Get the node following the CurrVarArg.
+  NextLink = CurrVarArg->Link.ForwardLink;
+  if (NextLink != StartLink) {
+    return (AML_NODE_HEADER*)NextLink;
+  }
+
+  // End of the list has been reached.
+  return NULL;
+}
+
+/** Get the previous variable argument.
+
+  (Node)        /-i           # Child of fixed argument b
+      \        /
+       |- [a][b][c][d]        # Fixed Arguments
+       |- {(e)->(f)->(g)}     # Variable Arguments
+             \
+              \-h             # Child of variable argument e
+
+  Traversal Order: g, f, e, NULL
+
+  @param  [in]  Node        Pointer to a root node or an object node.
+  @param  [in]  CurrVarArg  Pointer to the Current Variable Argument.
+
+  @return The node before the CurrVarArg in the variable list of
+          arguments.
+          If CurrVarArg is NULL, return the last node of the
+          variable list of arguments.
+          Return NULL if:
+          - CurrVarArg is the first node of the list, or
+          - Node doesn't have a variable list of arguments.
+**/
+AML_NODE_HEADER *
+EFIAPI
+AmlGetPreviousVariableArgument (
+  IN  AML_NODE_HEADER  * Node,
+  IN  AML_NODE_HEADER  * CurrVarArg
+  )
+{
+  CONST LIST_ENTRY       * StartLink;
+  CONST LIST_ENTRY       * PreviousLink;
+
+  // Node must be a RootNode or an Object Node
+  // and the CurrVarArg must not be a Root Node.
+  if ((!IS_AML_ROOT_NODE (Node)           &&
+       !IS_AML_OBJECT_NODE (Node))        ||
+      ((CurrVarArg != NULL)               &&
+       (!IS_AML_OBJECT_NODE (CurrVarArg)  &&
+        !IS_AML_DATA_NODE (CurrVarArg)))) {
+    ASSERT (0);
+    return NULL;
+  }
+
+  StartLink = AmlNodeGetVariableArgList (Node);
+  if (StartLink == NULL) {
+    return NULL;
+  }
+
+  // Get the last child of the variable list of arguments.
+  if (CurrVarArg == NULL) {
+    PreviousLink = StartLink->BackLink;
+    if (PreviousLink != StartLink) {
+      return (AML_NODE_HEADER*)PreviousLink;
+    }
+    // List is empty.
+    return NULL;
+  }
+
+  // Check if CurrVarArg is in the VariableArgument List.
+  if (!IsNodeInList (StartLink, &CurrVarArg->Link)) {
+    ASSERT (0);
+    return NULL;
+  }
+
+  // Get the node before the CurrVarArg.
+  PreviousLink = CurrVarArg->Link.BackLink;
+  if (PreviousLink != StartLink) {
+    return (AML_NODE_HEADER*)PreviousLink;
+  }
+
+  // We have reached the beginning of the list.
+  return NULL;
+}
+
+/** Get the next sibling node among the children of the input Node.
+
+  This function traverses the FixedArguments followed by the
+  VariableArguments at the same level in the hierarchy.
+
+  Fixed arguments are before variable arguments.
+
+  (Node)        /-i           # Child of fixed argument b
+      \        /
+       |- [a][b][c][d]        # Fixed Arguments
+       |- {(e)->(f)->(g)}     # Variable Arguments
+             \
+              \-h             # Child of variable argument e
+
+  Traversal Order: a, b, c, d, e, f, g, NULL
+
+
+  @param  [in]  Node        Pointer to a root node or an object node.
+  @param  [in]  ChildNode   Get the node after the ChildNode.
+
+  @return The node after the ChildNode among the children of the input Node.
+           - If ChildNode is NULL, return the first available node among
+             the fixed argument list then variable list of arguments;
+           - If ChildNode is the last node of the fixed argument list,
+             return the first argument of the variable list of arguments;
+           - If ChildNode is the last node of the variable list of arguments,
+             return NULL.
+
+**/
+AML_NODE_HEADER *
+EFIAPI
+AmlGetNextSibling (
+  IN  CONST AML_NODE_HEADER   * Node,
+  IN  CONST AML_NODE_HEADER   * ChildNode
+  )
+{
+  EAML_PARSE_INDEX    Index;
+  AML_NODE_HEADER   * CandidateNode;
+
+  // Node must be a RootNode or an Object Node
+  // and the CurrVarArg must not be a Root Node.
+  if ((!IS_AML_ROOT_NODE (Node)           &&
+       !IS_AML_OBJECT_NODE (Node))        ||
+      ((ChildNode != NULL)                &&
+       (!IS_AML_OBJECT_NODE (ChildNode)   &&
+        !IS_AML_DATA_NODE (ChildNode)))) {
+    ASSERT (0);
+    return NULL;
+  }
+
+  if (IS_AML_OBJECT_NODE (Node)) {
+    if (ChildNode == NULL) {
+      // Get the fixed argument at index 0 of the ChildNode.
+      CandidateNode = AmlGetFixedArgument (
+                        (AML_OBJECT_NODE*)Node,
+                        EAmlParseIndexTerm0
+                        );
+      if (CandidateNode != NULL) {
+        return CandidateNode;
+      }
+    } else {
+      // (ChildNode != NULL)
+      if (AmlIsNodeFixedArgument (ChildNode, &Index)) {
+        // Increment index to point to the next fixed argument.
+        Index++;
+        // The node is part of the list of fixed arguments.
+        if (Index == (EAML_PARSE_INDEX)AmlGetFixedArgumentCount (
+                                         (AML_OBJECT_NODE*)Node)
+                                         ) {
+        // It is at the last argument of the fixed argument list.
+        // Get the first argument of the variable list of arguments.
+          ChildNode = NULL;
+        } else {
+          // Else return the next node in the list of fixed arguments.
+          return AmlGetFixedArgument ((AML_OBJECT_NODE*)Node, Index);
+        }
+      }
+    }
+  } // IS_AML_OBJECT_NODE (Node)
+
+  // Else, get the next node in the variable list of arguments.
+  return AmlGetNextVariableArgument (
+           (AML_NODE_HEADER*)Node,
+           (AML_NODE_HEADER*)ChildNode
+           );
+}
+
+/** Get the previous sibling node among the children of the input Node.
+
+  This function traverses the FixedArguments followed by the
+  VariableArguments at the same level in the hierarchy.
+
+  Fixed arguments are before variable arguments.
+
+  (Node)        /-i           # Child of fixed argument b
+      \        /
+       |- [a][b][c][d]        # Fixed Arguments
+       |- {(e)->(f)->(g)}     # Variable Arguments
+             \
+              \-h             # Child of variable argument e
+
+  Traversal Order: g, f, e, d, c, b, a, NULL
+
+  @param  [in]  Node        The node to get the fixed argument from.
+  @param  [in]  ChildNode   Get the node before the ChildNode.
+
+  @return The node before the ChildNode among the children of the input Node.
+           - If ChildNode is NULL, return the last available node among
+             the variable list of arguments then fixed argument list;
+           - If ChildNode is the first node of the variable list of arguments,
+             return the last argument of the fixed argument list;
+           - If ChildNode is the first node of the fixed argument list,
+             return NULL.
+**/
+AML_NODE_HEADER *
+EFIAPI
+AmlGetPreviousSibling (
+  IN  CONST  AML_NODE_HEADER  * Node,
+  IN  CONST  AML_NODE_HEADER  * ChildNode
+  )
+{
+  EAML_PARSE_INDEX    Index;
+  EAML_PARSE_INDEX    MaxIndex;
+
+  AML_NODE_HEADER   * CandidateNode;
+
+  // Node must be a Root Node or an Object Node
+  // and the ChildNode must not be a Root Node.
+  if ((!IS_AML_ROOT_NODE (Node)           &&
+       !IS_AML_OBJECT_NODE (Node))        ||
+      ((ChildNode != NULL)                &&
+       (!IS_AML_OBJECT_NODE (ChildNode)   &&
+        !IS_AML_DATA_NODE (ChildNode)))) {
+    ASSERT (0);
+    return NULL;
+  }
+
+  MaxIndex = (EAML_PARSE_INDEX)AmlGetFixedArgumentCount (
+                                 (AML_OBJECT_NODE*)Node
+                                 );
+
+  // Get the last variable argument if no ChildNode.
+  // Otherwise the fixed argument list is checked first.
+  if ((ChildNode != NULL)         &&
+      IS_AML_OBJECT_NODE (Node)   &&
+      (MaxIndex != EAmlParseIndexTerm0)) {
+    if (AmlIsNodeFixedArgument (ChildNode, &Index)) {
+      // The node is part of the list of fixed arguments.
+      if (Index == EAmlParseIndexTerm0) {
+        // The node is the first fixed argument, return NULL.
+        return NULL;
+      } else {
+        // Return the previous node in the fixed argument list.
+        return AmlGetFixedArgument (
+                 (AML_OBJECT_NODE*)Node,
+                 (EAML_PARSE_INDEX)(Index - 1)
+                 );
+      }
+    }
+  }
+
+  // ChildNode is in the variable list of arguments.
+  CandidateNode = AmlGetPreviousVariableArgument (
+                    (AML_NODE_HEADER*)Node,
+                    (AML_NODE_HEADER*)ChildNode
+                    );
+  if (CandidateNode != NULL) {
+    if (!IS_AML_NODE_VALID (CandidateNode)) {
+      ASSERT (0);
+      return NULL;
+    }
+    // A Node has been found
+    return CandidateNode;
+  } else if (MaxIndex != EAmlParseIndexTerm0) {
+    // ChildNode was the first node of the variable list of arguments.
+    return AmlGetFixedArgument (
+             (AML_OBJECT_NODE*)Node,
+             (EAML_PARSE_INDEX)(MaxIndex - 1)
+             );
+  } else {
+    // No fixed arguments or variable arguments.
+    return NULL;
+  }
+}
+
+/** Iterate through the nodes in the same order as the AML bytestream.
+
+  The iteration is similar to a depth-first path.
+
+  (Node)        /-i           # Child of fixed argument b
+      \        /
+       |- [a][b][c][d]        # Fixed Arguments
+       |- {(e)->(f)->(g)}     # Variable Arguments
+             \
+              \-h             # Child of variable argument e
+
+  Traversal Order: a, b, i, c, d, e, h, f, g, NULL
+  Note: The branch i and h will be traversed if it has any children.
+
+  @param  [in]  Node  Pointer to a node.
+
+  @return The next node in the AML bytestream order.
+          Return NULL if Node is the Node corresponding to the last
+          bytecode of the tree.
+**/
+AML_NODE_HEADER *
+EFIAPI
+AmlGetNextNode (
+  IN  CONST AML_NODE_HEADER   * Node
+  )
+{
+  AML_NODE_HEADER   * ParentNode;
+  AML_NODE_HEADER   * CandidateNode;
+
+  if (!IS_AML_NODE_VALID (Node)) {
+    ASSERT (0);
+    return NULL;
+  }
+
+  if (IS_AML_ROOT_NODE (Node) || IS_AML_OBJECT_NODE (Node)) {
+    // The node has children. Get the first child.
+    CandidateNode = AmlGetNextSibling (Node, NULL);
+    if (CandidateNode != NULL) {
+      if (!IS_AML_NODE_VALID (CandidateNode)) {
+        ASSERT (0);
+        return NULL;
+      }
+      // A Node has been found
+      return CandidateNode;
+    } else if (IS_AML_ROOT_NODE (Node)) {
+      // The node is the root node and it doesn't have children.
+      return NULL;
+    }
+  }
+
+  // We have traversed the current branch, go to the parent node
+  // and start traversing the next branch.
+  // Keep going up the tree until you reach the root node.
+  while (1) {
+    if (IS_AML_ROOT_NODE (Node)) {
+      // This is the last node of the tree.
+      return NULL;
+    }
+
+    ParentNode = AmlGetParent ((AML_NODE_HEADER*)Node);
+    if (!IS_AML_NODE_VALID (ParentNode)) {
+      ASSERT (0);
+      return NULL;
+    }
+
+    CandidateNode = AmlGetNextSibling (ParentNode, Node);
+    if (CandidateNode != NULL) {
+      if (!IS_AML_NODE_VALID (CandidateNode)) {
+        ASSERT (0);
+        return NULL;
+      }
+      // A Node has been found
+      return CandidateNode;
+    }
+
+    Node = ParentNode;
+  } // while
+
+  return NULL;
+}
+
+/** Iterate through the nodes in the reverse order of the AML bytestream.
+
+  The iteration is similar to a depth-first path,
+  but done in a reverse order.
+
+  (Node)        /-i           # Child of fixed argument b
+      \        /
+       |- [a][b][c][d]        # Fixed Arguments
+       |- {(e)->(f)->(g)}     # Variable Arguments
+             \
+              \-h             # Child of variable argument e
+
+  Traversal Order: g, f, h, e, d, c, i, b, a, NULL
+  Note: The branch i and h will be traversed if it has any children.
+
+  @param  [in]  Node  Pointer to a node.
+
+  @return The previous node in the AML bytestream order.
+          Return NULL if Node is the Node corresponding to the last
+          bytecode of the tree.
+**/
+AML_NODE_HEADER *
+EFIAPI
+AmlGetPreviousNode (
+  IN  CONST  AML_NODE_HEADER * Node
+  )
+{
+  AML_NODE_HEADER  * ParentNode;
+  AML_NODE_HEADER  * CandidateNode;
+  AML_NODE_HEADER  * PreviousNode;
+
+  if (!IS_AML_NODE_VALID (Node)) {
+    ASSERT (0);
+    return NULL;
+  }
+
+  while (1) {
+
+    if (IS_AML_ROOT_NODE (Node)) {
+      // This is the root node.
+      return NULL;
+    }
+
+    ParentNode = AmlGetParent ((AML_NODE_HEADER*)Node);
+    CandidateNode = AmlGetPreviousSibling (ParentNode, Node);
+
+    if (CandidateNode == NULL) {
+      // Node is the first child of its parent.
+      return ParentNode;
+    } else if (IS_AML_DATA_NODE (CandidateNode)) {
+      // CandidateNode is a data node, thus it has no children.
+      return CandidateNode;
+    } else if (IS_AML_OBJECT_NODE (CandidateNode)) {
+      // Get the previous node in the list of children of ParentNode,
+      // then get the last child of this node.
+      // If this node has children, get its last child, etc.
+      while (1) {
+        PreviousNode = CandidateNode;
+        CandidateNode = AmlGetPreviousSibling (PreviousNode, NULL);
+        if (CandidateNode == NULL) {
+          return PreviousNode;
+        } else if (IS_AML_DATA_NODE (CandidateNode)) {
+          return CandidateNode;
+        }
+      } // while
+
+    } else {
+      ASSERT (0);
+      return NULL;
+    }
+  } // while
+}
diff --git a/DynamicTablesPkg/Library/Common/AmlLib/Tree/AmlTreeTraversal.h b/DynamicTablesPkg/Library/Common/AmlLib/Tree/AmlTreeTraversal.h
new file mode 100644
index 0000000000000000000000000000000000000000..a4980b716d7542cd64d39094327e21fa2f164a4c
--- /dev/null
+++ b/DynamicTablesPkg/Library/Common/AmlLib/Tree/AmlTreeTraversal.h
@@ -0,0 +1,138 @@
+/** @file
+  AML Tree Traversal.
+
+  Copyright (c) 2019 - 2020, Arm Limited. All rights reserved.<BR>
+
+  SPDX-License-Identifier: BSD-2-Clause-Patent
+**/
+
+#ifndef AML_TREE_TRAVERSAL_H_
+#define AML_TREE_TRAVERSAL_H_
+
+#include <AmlNodeDefines.h>
+
+/** Get the next sibling node among the children of the input Node.
+
+  This function traverses the FixedArguments followed by the
+  VariableArguments at the same level in the hierarchy.
+
+  Fixed arguments are before variable arguments.
+
+  (Node)        /-i           # Child of fixed argument b
+      \        /
+       |- [a][b][c][d]        # Fixed Arguments
+       |- {(e)->(f)->(g)}     # Variable Arguments
+             \
+              \-h             # Child of variable argument e
+
+  Traversal Order: a, b, c, d, e, f, g, NULL
+
+
+  @param  [in]  Node        Pointer to a root node or an object node.
+  @param  [in]  ChildNode   Get the node after the ChildNode.
+
+  @return The node after the ChildNode among the children of the input Node.
+           - If ChildNode is NULL, return the first available node among
+             the fixed argument list then variable list of arguments;
+           - If ChildNode is the last node of the fixed argument list,
+             return the first argument of the variable list of arguments;
+           - If ChildNode is the last node of the variable list of arguments,
+             return NULL.
+
+**/
+AML_NODE_HEADER *
+EFIAPI
+AmlGetNextSibling (
+  IN  CONST AML_NODE_HEADER   * Node,
+  IN  CONST AML_NODE_HEADER   * ChildNode
+  );
+
+/** Get the previous sibling node among the children of the input Node.
+
+  This function traverses the FixedArguments followed by the
+  VariableArguments at the same level in the hierarchy.
+
+  Fixed arguments are before variable arguments.
+
+  (Node)        /-i           # Child of fixed argument b
+      \        /
+       |- [a][b][c][d]        # Fixed Arguments
+       |- {(e)->(f)->(g)}     # Variable Arguments
+             \
+              \-h             # Child of variable argument e
+
+  Traversal Order: g, f, e, d, c, b, a, NULL
+
+  @param  [in]  Node        The node to get the fixed argument from.
+  @param  [in]  ChildNode   Get the node before the ChildNode.
+
+  @return The node before the ChildNode among the children of the input Node.
+           - If ChildNode is NULL, return the last available node among
+             the variable list of arguments then fixed argument list;
+           - If ChildNode is the first node of the variable list of arguments,
+             return the last argument of the fixed argument list;
+           - If ChildNode is the first node of the fixed argument list,
+             return NULL.
+**/
+AML_NODE_HEADER *
+EFIAPI
+AmlGetPreviousSibling (
+  IN  CONST  AML_NODE_HEADER  * Node,
+  IN  CONST  AML_NODE_HEADER  * ChildNode
+  );
+
+/** Iterate through the nodes in the same order as the AML bytestream.
+
+  The iteration is similar to a depth-first path.
+
+  (Node)        /-i           # Child of fixed argument b
+      \        /
+       |- [a][b][c][d]        # Fixed Arguments
+       |- {(e)->(f)->(g)}     # Variable Arguments
+             \
+              \-h             # Child of variable argument e
+
+  Traversal Order: a, b, i, c, d, e, h, f, g, NULL
+  Note: The branch i and h will be traversed if it has any children.
+
+  @param  [in]  Node  Pointer to a node.
+
+  @return The next node in the AML bytestream order.
+          Return NULL if Node is the Node corresponding to the last
+          bytecode of the tree.
+**/
+AML_NODE_HEADER *
+EFIAPI
+AmlGetNextNode (
+  IN  CONST AML_NODE_HEADER   * Node
+  );
+
+/** Iterate through the nodes in the reverse order of the AML bytestream.
+
+  The iteration is similar to a depth-first path,
+  but done in a reverse order.
+
+  (Node)        /-i           # Child of fixed argument b
+      \        /
+       |- [a][b][c][d]        # Fixed Arguments
+       |- {(e)->(f)->(g)}     # Variable Arguments
+             \
+              \-h             # Child of variable argument e
+
+  Traversal Order: g, f, h, e, d, c, i, b, a, NULL
+  Note: The branch i and h will be traversed if it has any children.
+
+  @param  [in]  Node  Pointer to a node.
+
+  @return The previous node in the AML bytestream order.
+          Return NULL if Node is the Node corresponding to the last
+          bytecode of the tree.
+**/
+AML_NODE_HEADER *
+EFIAPI
+AmlGetPreviousNode (
+  IN  CONST  AML_NODE_HEADER * Node
+  );
+
+#endif // AML_TREE_TRAVERSAL_H_
+
-- 
'Guid(CE165669-3EF3-493F-B85D-6190EE5B9759)'


  parent reply	other threads:[~2020-08-12 15:23 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-12 15:22 [PATCH v1 00/30] Add Dynamic AML generation support Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 01/30] DynamicTablesPkg: Introduction to Dynamic AML Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 02/30] DynamicTablesPkg: AmlLib definitions Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 03/30] DynamicTablesPkg: AML grammar definition Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 04/30] DynamicTablesPkg: AML node definitions Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 05/30] DynamicTablesPkg: AML tree interface Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 06/30] DynamicTablesPkg: AML tree enumerator Sami Mujawar
2020-08-12 15:22 ` Sami Mujawar [this message]
2020-08-12 15:22 ` [PATCH v1 08/30] DynamicTablesPkg: AML tree iterator Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 09/30] DynamicTablesPkg: AML tree/node cloning Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 10/30] DynamicTablesPkg: AML utility interfaces Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 11/30] DynamicTablesPkg: AML and ASL string helper Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 12/30] DynamicTablesPkg: AML stream interface Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 13/30] DynamicTablesPkg: AML serialise interface Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 14/30] DynamicTablesPkg: AML debug logging Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 15/30] DynamicTablesPkg: AML ACPI Namespace interface Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 16/30] DynamicTablesPkg: AML Parser Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 17/30] DynamicTablesPkg: AML resource data helper Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 18/30] DynamicTablesPkg: AML resource data parser Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 19/30] DynamicTablesPkg: AML Method parser Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 20/30] DynamicTablesPkg: AML Field list parser Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 21/30] DynamicTablesPkg: AML Codegen Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 22/30] DynamicTablesPkg: AML Resource Data Codegen Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 23/30] DynamicTablesPkg: AML Core interface Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 24/30] DynamicTablesPkg: AmlLib APIs Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 25/30] DynamicTablesPkg: Dynamic AML: Add AmlLib library Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 26/30] DynamicTablesPkg: Add AsciiFromHex helper function Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 27/30] DynamicTablesPkg: SSDT Serial Port Fixup library Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 28/30] DynamicTablesPkg: SSDT Serial Port generator Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 29/30] DynamicTablesPkg: Add SSDT Serial port for SPCR Sami Mujawar
2020-08-12 15:22 ` [PATCH v1 30/30] DynamicTablesPkg: Add SSDT Serial port for DBG2 Sami Mujawar
2020-08-13 15:16 ` [edk2-devel] [PATCH v1 00/30] Add Dynamic AML generation support Alexei Fedorov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200812152236.31164-8-sami.mujawar@arm.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox