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] [RFC][PATCH 04/15] fdt: added the ability to set initrd start/end via chosen command
Date: Tue, 12 Aug 2008 16:17:26 -0500	[thread overview]
Message-ID: <1218575851-4404-5-git-send-email-galak@kernel.crashing.org> (raw)
In-Reply-To: <1218575851-4404-4-git-send-email-galak@kernel.crashing.org>

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
---
 common/cmd_fdt.c |   21 +++++++++++++++++----
 1 files changed, 17 insertions(+), 4 deletions(-)

diff --git a/common/cmd_fdt.c b/common/cmd_fdt.c
index d3b19dd..436fec9 100644
--- a/common/cmd_fdt.c
+++ b/common/cmd_fdt.c
@@ -417,9 +417,21 @@ int do_fdt (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
 		ft_board_setup(working_fdt, gd->bd);
 #endif
 	/* Create a chosen node */
-	else if (argv[1][0] == 'c')
-		fdt_chosen(working_fdt, 0, 0, 1);
-	else {
+	else if (argv[1][0] == 'c') {
+		unsigned long initrd_start = 0, initrd_end = 0;
+
+		if ((argc != 2) && (argc != 4)) {
+			printf ("Usage:\n%s\n", cmdtp->usage);
+			return 1;
+		}
+
+		if (argc == 4) {
+			initrd_start = simple_strtoul(argv[2], NULL, 16);
+			initrd_end = simple_strtoul(argv[3], NULL, 16);
+		}
+
+		fdt_chosen(working_fdt, initrd_start, initrd_end, 1);
+	} else {
 		/* Unrecognized command */
 		printf ("Usage:\n%s\n", cmdtp->usage);
 		return 1;
@@ -798,7 +810,8 @@ U_BOOT_CMD(
 	"fdt rsvmem print                    - Show current mem reserves\n"
 	"fdt rsvmem add <addr> <size>        - Add a mem reserve\n"
 	"fdt rsvmem delete <index>           - Delete a mem reserves\n"
-	"fdt chosen - Add/update the /chosen branch in the tree\n"
+	"fdt chosen [<start> <end>]          - Add/update the /chosen branch in the tree\n"
+	"                                        <start>/<end> - initrd start/end addr\n"
 	"NOTE: If the path or property you are setting/printing has a '#' character\n"
 	"     or spaces, you MUST escape it with a \\ character or quote it with \".\n"
 );
-- 
1.5.5.1

  reply	other threads:[~2008-08-12 21:17 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-08-12 21:17 [U-Boot] [RFC][PATCH 00/15] bootm refactoring Kumar Gala
2008-08-12 21:17 ` [U-Boot] [RFC][PATCH 01/15] Update linux bootm to support ePAPR client interface Kumar Gala
2008-08-12 21:17   ` [U-Boot] [RFC][PATCH 02/15] add ability to disable ft_board_setup as part of bootm Kumar Gala
2008-08-12 21:17     ` [U-Boot] [RFC][PATCH 03/15] Clean up usage of icache_disable/dcache_disable Kumar Gala
2008-08-12 21:17       ` Kumar Gala [this message]
2008-08-12 21:17         ` [U-Boot] [RFC][PATCH 05/15] fdt: fdt addr w/o any args reports back the current working address Kumar Gala
2008-08-12 21:17           ` [U-Boot] [RFC][PATCH 06/15] bootm: refactor entry point code Kumar Gala
2008-08-12 21:17             ` [U-Boot] [RFC][PATCH 07/15] bootm: refactor ramdisk locating code Kumar Gala
2008-08-12 21:17               ` [U-Boot] [RFC][PATCH 08/15] bootm: refactor fdt locating and relocation code Kumar Gala
2008-08-12 21:17                 ` [U-Boot] [RFC][PATCH 09/15] bootm: Set working fdt address as part of the bootm flow Kumar Gala
2008-08-13  5:31 ` [U-Boot] [RFC][PATCH 00/15] bootm refactoring Jerry Van Baren
2008-08-13 12:43   ` Kumar Gala
2008-08-13 13:32     ` Jerry Van Baren

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=1218575851-4404-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