public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Kumar Gala <galak@kernel.crashing.org>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 04/10] fdt: Add fdt_sizecell & fdt_addrcell helpers
Date: Thu, 23 Oct 2008 01:26:42 -0500	[thread overview]
Message-ID: <1224743208-11160-5-git-send-email-galak@kernel.crashing.org> (raw)
In-Reply-To: <1224743208-11160-4-git-send-email-galak@kernel.crashing.org>

Add helper functions to return top level #size-cell and #address-cell info

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
---
 include/fdt_support.h |   18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)

diff --git a/include/fdt_support.h b/include/fdt_support.h
index ceaadc2..aa9d86b 100644
--- a/include/fdt_support.h
+++ b/include/fdt_support.h
@@ -28,6 +28,24 @@
 
 #include <fdt.h>
 
+static inline int fdt_addrcell(void *blob) {
+	const u32 *addrcell = fdt_getprop(blob, 0, "#address-cells", NULL);
+
+	if (addrcell)
+		return *addrcell;
+	else
+		return 1;
+}
+
+static inline int fdt_sizecell(void *blob) {
+	const u32 *sizecell = fdt_getprop(blob, 0, "#size-cells", NULL);
+
+	if (sizecell)
+		return *sizecell;
+	else
+		return 1;
+}
+
 int fdt_chosen(void *fdt, int force);
 int fdt_initrd(void *fdt, ulong initrd_start, ulong initrd_end, int force);
 void do_fixup_by_path(void *fdt, const char *path, const char *prop,
-- 
1.5.5.1

  reply	other threads:[~2008-10-23  6:26 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-10-23  6:26 [U-Boot] [PATCH 00/10] 85xx/85xx pci cleanup Kumar Gala
2008-10-23  6:26 ` [U-Boot] [PATCH 01/10] pci: Allow for PCI addresses to be 64-bit Kumar Gala
2008-10-23  6:26   ` [U-Boot] [PATCH 02/10] 85xx: Enable 64-bit PCI resources on all Freescale boards Kumar Gala
2008-10-23  6:26     ` [U-Boot] [PATCH 03/10] 86xx: " Kumar Gala
2008-10-23  6:26       ` Kumar Gala [this message]
2008-10-23  6:26         ` [U-Boot] [PATCH 05/10] fdt: Added helper to set PCI dma-ranges property Kumar Gala
2008-10-23  6:26           ` [U-Boot] [PATCH 06/10] pci/fsl_pci_init: Enable larger address and setting inbound windows properly Kumar Gala
2008-10-23  6:26             ` [U-Boot] [PATCH 07/10] pci/fsl_pci_init: Add a common PCI inbound setup function Kumar Gala
2008-10-23  6:26               ` [U-Boot] [PATCH 08/10] pci/fsl_pci_init: Added fdt helper for setting up bus-ranges & dma-ranges Kumar Gala
2008-10-23  6:26                 ` [U-Boot] [PATCH 09/10] 85xx: Convert all fsl_pci_init users to new APIs Kumar Gala
2008-10-23  6:26                   ` [U-Boot] [PATCH 10/10] 86xx: " Kumar Gala
2008-10-24  0:41                     ` Jon Loeliger
2008-10-23 11:55         ` [U-Boot] [PATCH 04/10] fdt: Add fdt_sizecell & fdt_addrcell helpers Jerry Van Baren
2008-10-23 12:04           ` Kumar Gala
2008-10-23 12:26             ` Jerry Van Baren
2008-10-23 12:59               ` Kumar Gala
2008-10-24 13:12   ` [U-Boot] [PATCH 01/10] pci: Allow for PCI addresses to be 64-bit Wolfgang Denk
2008-10-23  8:35 ` [U-Boot] [PATCH 00/10] 85xx/85xx pci cleanup Wolfgang Denk
2008-10-23 11:58   ` Kumar Gala
2008-10-24 22:48     ` Andy Fleming

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-all 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=1224743208-11160-5-git-send-email-galak@kernel.crashing.org \
    --to=galak@kernel.crashing.org \
    --cc=u-boot@lists.denx.de \
    /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