public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Guo, Gua" <gua.guo@intel.com>
To: "Wang, BruceX" <brucex.wang@intel.com>,
	"devel@edk2.groups.io" <devel@edk2.groups.io>
Cc: "Lin, Benny" <benny.lin@intel.com>,
	"Chiu, Chasel" <chasel.chiu@intel.com>,
	"Lu, James" <james.lu@intel.com>
Subject: Re: [edk2-devel] [PATCH v5 1/2] MdePkg/BaseFdtLib: Add Fdt function.
Date: Mon, 25 Sep 2023 03:09:13 +0000	[thread overview]
Message-ID: <BL1PR11MB54784B2AD973CB1C7EFE5F2DEFFCA@BL1PR11MB5478.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20230925021517.1444-2-brucex.wang@intel.com>

Reviewed-by: Gua Guo <gua.guo@intel.com>

-----Original Message-----
From: Wang, BruceX <brucex.wang@intel.com> 
Sent: Monday, September 25, 2023 10:15 AM
To: devel@edk2.groups.io
Cc: Wang, BruceX <brucex.wang@intel.com>; Lin, Benny <benny.lin@intel.com>; Guo, Gua <gua.guo@intel.com>; Chiu, Chasel <chasel.chiu@intel.com>; Lu, James <james.lu@intel.com>
Subject: [PATCH v5 1/2] MdePkg/BaseFdtLib: Add Fdt function.

From: "Brucex.Wang" <brucex.wang@intel.com>

Add FdtGetName() and FdtNodeDepth() function.

Cc: Benny Lin <benny.lin@intel.com>
Cc: Gua Guo <gua.guo@intel.com>
Cc: Chasel Chiu <chasel.chiu@intel.com>
Cc: James Lu <james.lu@intel.com>

Signed-off-by: BruceX Wang <brucex.wang@intel.com>
---
 MdePkg/Include/Library/FdtLib.h    | 34 +++++++++++++++++++++++++
 MdePkg/Library/BaseFdtLib/FdtLib.c | 40 ++++++++++++++++++++++++++++++
 2 files changed, 74 insertions(+)

diff --git a/MdePkg/Include/Library/FdtLib.h b/MdePkg/Include/Library/FdtLib.h index cf5ceba9e9..d9300a18e3 100644
--- a/MdePkg/Include/Library/FdtLib.h
+++ b/MdePkg/Include/Library/FdtLib.h
@@ -398,4 +398,38 @@ FdtSetProp (
   IN UINT32       Length   ); +/**+  Returns the name of a given node.++  @param[in] Fdt            The pointer to FDT blob.+  @param[in] NodeOffse      Offset of node to check.+  @param[in] Length         The pointer to an integer variable (will be overwritten) or NULL.++  @return The pointer to the node's name.++**/+CONST CHAR8 *+EFIAPI+FdtGetName (+  IN VOID    *Fdt,+  IN INT32   NodeOffset,+  IN UINT32  *Length+  );++/**+  FdtNodeDepth() finds the depth of a given node.  The root node+  has depth 0, its immediate subnodes depth 1 and so forth.++  @param[in] Fdt            The pointer to FDT blob.+  @param[in] NodeOffset     Offset of node to check.++  @return Depth of the node at NodeOffset.+**/+INT32+EFIAPI+FdtNodeDepth (+  IN CONST VOID  *Fdt,+  IN INT32       NodeOffset+  );+ #endif /* FDT_LIB_H_ */diff --git a/MdePkg/Library/BaseFdtLib/FdtLib.c b/MdePkg/Library/BaseFdtLib/FdtLib.c
index 090b0b3fd4..1ef99ea882 100644
--- a/MdePkg/Library/BaseFdtLib/FdtLib.c
+++ b/MdePkg/Library/BaseFdtLib/FdtLib.c
@@ -402,3 +402,43 @@ FdtSetProp (
 {   return fdt_setprop (Fdt, NodeOffset, Name, Value, (int)Length); }++/**+  Returns the name of a given node.++  @param[in] Fdt            The pointer to FDT blob.+  @param[in] NodeOffset     Offset of node to check.+  @param[in] Length         The pointer to an integer variable (will be overwritten) or NULL.++  @return The pointer to the node's name.++**/+CONST CHAR8 *+EFIAPI+FdtGetName (+  IN VOID    *Fdt,+  IN INT32   NodeOffset,+  IN UINT32  *Length+  )+{+  return fdt_get_name (Fdt, NodeOffset, (int *)Length);+}++/**+  FdtNodeDepth() finds the depth of a given node.  The root node+  has depth 0, its immediate subnodes depth 1 and so forth.++  @param[in] Fdt            The pointer to FDT blob.+  @param[in] NodeOffset     Offset of node to check.++  @returns Depth of the node at NodeOffset.+**/+INT32+EFIAPI+FdtNodeDepth (+  IN CONST VOID  *Fdt,+  IN INT32       NodeOffset+  )+{+  return fdt_node_depth (Fdt, NodeOffset);+}-- 
2.39.1.windows.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#109033): https://edk2.groups.io/g/devel/message/109033
Mute This Topic: https://groups.io/mt/101568108/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



  reply	other threads:[~2023-09-25  3:09 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-25  2:15 [edk2-devel] [PATCH v5 0/2] Add FIT support brucex.wang
2023-09-25  2:15 ` [edk2-devel] [PATCH v5 1/2] MdePkg/BaseFdtLib: Add Fdt function brucex.wang
2023-09-25  3:09   ` Guo, Gua [this message]
2023-09-25  3:12   ` Benny Lin
2023-09-25  2:15 ` [edk2-devel] [PATCH v5 2/2] UefiPayloadPkg: Add FIT support brucex.wang
2023-09-25  3:09   ` Guo, Gua
2023-09-25 23:28 ` [edk2-devel] [PATCH v5 0/2] " Guo, Gua

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=BL1PR11MB54784B2AD973CB1C7EFE5F2DEFFCA@BL1PR11MB5478.namprd11.prod.outlook.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