* [U-Boot] [PATCH] imximage: Add support for NOR boot
@ 2011-12-03 12:48 Fabio Estevam
2011-12-04 9:18 ` stefano babic
2011-12-05 22:26 ` Wolfgang Denk
0 siblings, 2 replies; 3+ messages in thread
From: Fabio Estevam @ 2011-12-03 12:48 UTC (permalink / raw)
To: u-boot
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
^ permalink raw reply related [flat|nested] 3+ messages in thread* [U-Boot] [PATCH] imximage: Add support for NOR boot
2011-12-03 12:48 [U-Boot] [PATCH] imximage: Add support for NOR boot Fabio Estevam
@ 2011-12-04 9:18 ` stefano babic
2011-12-05 22:26 ` Wolfgang Denk
1 sibling, 0 replies; 3+ messages in thread
From: stefano babic @ 2011-12-04 9:18 UTC (permalink / raw)
To: u-boot
Am 03/12/2011 13:48, schrieb Fabio Estevam:
> From: Fabio Estevam <fabio.estevam@freescale.com>
>
> Add support for NOR boot on imximage.
>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Hi Fabio,
> This command copies the u-boot image at the address 0x400, as required
> -by the processor.
> +by the processor when booting from SD/MMC.
This is incomplete: this offset is valid also for NAND/PATA/SPI.
Best regards,
Stefano Babic
--
=====================================================================
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80 Email: office at denx.de
=====================================================================
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot] [PATCH] imximage: Add support for NOR boot
2011-12-03 12:48 [U-Boot] [PATCH] imximage: Add support for NOR boot Fabio Estevam
2011-12-04 9:18 ` stefano babic
@ 2011-12-05 22:26 ` Wolfgang Denk
1 sibling, 0 replies; 3+ messages in thread
From: Wolfgang Denk @ 2011-12-05 22:26 UTC (permalink / raw)
To: u-boot
Dear Fabio Estevam,
In message <1322916517-9002-1-git-send-email-festevam@gmail.com> you wrote:
> From: Fabio Estevam <fabio.estevam@freescale.com>
>
> Add support for NOR boot on imximage.
>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
...
> --- 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", },
Can we please sort this list? Thanks.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Worlds may change, galaxies disintegrate, but a woman always remains
a woman.
-- Kirk, "The Conscience of the King", stardate 2818.9
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-12-05 22:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-03 12:48 [U-Boot] [PATCH] imximage: Add support for NOR boot Fabio Estevam
2011-12-04 9:18 ` stefano babic
2011-12-05 22:26 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox