All of lore.kernel.org
 help / color / mirror / Atom feed
From: Fabio Estevam <festevam@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] imximage: Add support for NOR boot
Date: Sat,  3 Dec 2011 10:48:37 -0200	[thread overview]
Message-ID: <1322916517-9002-1-git-send-email-festevam@gmail.com> (raw)

From: Fabio Estevam <fabio.estevam@freescale.com>

Add support for NOR boot on imximage.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 doc/README.imximage |    7 +++++--
 tools/imximage.c    |    1 +
 tools/imximage.h    |    1 +
 3 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/doc/README.imximage b/doc/README.imximage
index c74239d..21bf897 100644
--- a/doc/README.imximage
+++ b/doc/README.imximage
@@ -64,7 +64,7 @@ Configuration command line syntax:
 				This command need appear the fist before
 				other valid commands in configuration file.
 
-	BOOT_FROM		nand/spi/sd/onenand
+	BOOT_FROM		nand/spi/sd/onenand/nor
 				Example:
 				BOOT_FROM spi
 	DATA			type address value
@@ -187,7 +187,10 @@ I use dd:
 dd if=u-boot.imx of=/dev/mmcblk0 bs=512 seek=2
 
 This command copies the u-boot image at the address 0x400, as required
-by the processor.
+by the processor when booting from SD/MMC.
+
+Note: if copying u-boot.imx to NOR flash the offset should be
+0x1000. For onenand the offset is 0x100.
 
 Now remove your card from the PC and go to the target. If evrything went right,
 the u-boot prompt should come after power on.
diff --git a/tools/imximage.c b/tools/imximage.c
index 8e81bdb..c4fa135 100644
--- a/tools/imximage.c
+++ b/tools/imximage.c
@@ -51,6 +51,7 @@ static table_entry_t imximage_bootops[] = {
 	{FLASH_OFFSET_NAND,	"nand",		"NAND Flash",	},
 	{FLASH_OFFSET_SD,	"sd",		"SD Card",	},
 	{FLASH_OFFSET_ONENAND,	"onenand",	"OneNAND Flash",},
+	{FLASH_OFFSET_NOR,	"nor",		"NOR Flash",	},
 	{-1,			"",		"Invalid",	},
 };
 
diff --git a/tools/imximage.h b/tools/imximage.h
index d126a46..da1447f 100644
--- a/tools/imximage.h
+++ b/tools/imximage.h
@@ -37,6 +37,7 @@
 #define FLASH_OFFSET_SD		FLASH_OFFSET_STANDARD
 #define FLASH_OFFSET_SPI	FLASH_OFFSET_STANDARD
 #define FLASH_OFFSET_ONENAND	0x100
+#define FLASH_OFFSET_NOR	0x1000
 
 #define IVT_HEADER_TAG 0xD1
 #define IVT_VERSION 0x40
-- 
1.7.1

             reply	other threads:[~2011-12-03 12:48 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-12-03 12:48 Fabio Estevam [this message]
2011-12-04  9:18 ` [U-Boot] [PATCH] imximage: Add support for NOR boot stefano babic
2011-12-05 22:26 ` Wolfgang Denk

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=1322916517-9002-1-git-send-email-festevam@gmail.com \
    --to=festevam@gmail.com \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.