* [U-Boot] [PATCH 1/3] imximage: Add MX53 to the documentation
@ 2012-01-12 9:28 Dirk Behme
2012-01-12 9:28 ` [U-Boot] [PATCH 2/3] imximage: Add support for i.MX6 Dirk Behme
` (3 more replies)
0 siblings, 4 replies; 11+ messages in thread
From: Dirk Behme @ 2012-01-12 9:28 UTC (permalink / raw)
To: u-boot
i.MX53 is supported, too. Add this to the introduction of the
documentation.
Signed-off-by: Dirk Behme <dirk.behme@de.bosch.com>
CC: Fabio Estevam <festevam@gmail.com>
CC: Stefano Babic <sbabic@denx.de>
CC: Jason Liu <jason.hui@linaro.org>
---
doc/README.imximage | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/doc/README.imximage b/doc/README.imximage
index c74239d..c3704a4 100644
--- a/doc/README.imximage
+++ b/doc/README.imximage
@@ -3,7 +3,7 @@ Imximage Boot Image generation using mkimage
---------------------------------------------
This document describes how to set up a U-Boot image
-that can be booted by Freescale MX25, MX35 and MX51
+that can be booted by Freescale MX25, MX35, MX51 and MX53
processors via internal boot mode.
These processors can boot directly from NAND, SPI flash and SD card flash
--
1.7.0.4
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [U-Boot] [PATCH 2/3] imximage: Add support for i.MX6
2012-01-12 9:28 [U-Boot] [PATCH 1/3] imximage: Add MX53 to the documentation Dirk Behme
@ 2012-01-12 9:28 ` Dirk Behme
2012-01-16 13:54 ` Jason Hui
2012-01-17 9:32 ` Stefano Babic
2012-01-12 9:28 ` [U-Boot] [PATCH 3/3] imximage: Sort bootops alphabetically Dirk Behme
` (2 subsequent siblings)
3 siblings, 2 replies; 11+ messages in thread
From: Dirk Behme @ 2012-01-12 9:28 UTC (permalink / raw)
To: u-boot
The i.MX6 processor can boot from NOR flash and SATA disks,
additionally. Add the flash offsets for these additional
boot modes.
Signed-off-by: Dirk Behme <dirk.behme@de.bosch.com>
Signed-off-by: Fabio Estevam <festevam@gmail.com>
CC: Stefano Babic <sbabic@denx.de>
CC: Jason Liu <jason.hui@linaro.org>
---
doc/README.imximage | 13 +++++++------
tools/imximage.c | 4 +++-
tools/imximage.h | 2 ++
3 files changed, 12 insertions(+), 7 deletions(-)
diff --git a/doc/README.imximage b/doc/README.imximage
index c3704a4..073e3fc 100644
--- a/doc/README.imximage
+++ b/doc/README.imximage
@@ -2,12 +2,13 @@
Imximage Boot Image generation using mkimage
---------------------------------------------
-This document describes how to set up a U-Boot image
-that can be booted by Freescale MX25, MX35, MX51 and MX53
-processors via internal boot mode.
+This document describes how to set up a U-Boot image that can be booted
+by Freescale MX25, MX35, MX51, MX53 and MX6 processors via internal boot
+mode.
These processors can boot directly from NAND, SPI flash and SD card flash
-using its internal boot ROM support. They can boot from an internal
+using its internal boot ROM support. MX6 processors additionally support
+boot from NOR flash and SATA disks. All processors can boot from an internal
UART, if booting from device media fails.
Booting from NOR flash does not require to use this image type.
@@ -59,12 +60,12 @@ Configuration command line syntax:
-------------- -----------
IMXIMAGE_VERSION 1/2
1 is for mx25/mx35/mx51 compatible,
- 2 is for mx53 compatible,
+ 2 is for mx53/mx6 compatible,
others is invalid and error is generated.
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/sata
Example:
BOOT_FROM spi
DATA type address value
diff --git a/tools/imximage.c b/tools/imximage.c
index 8e81bdb..f3da139 100644
--- a/tools/imximage.c
+++ b/tools/imximage.c
@@ -51,6 +51,8 @@ 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", },
+ {FLASH_OFFSET_SATA, "sata", "SATA Disk", },
{-1, "", "Invalid", },
};
@@ -59,7 +61,7 @@ static table_entry_t imximage_bootops[] = {
*/
static table_entry_t imximage_versions[] = {
{IMXIMAGE_V1, "", " (i.MX25/35/51 compatible)", },
- {IMXIMAGE_V2, "", " (i.MX53 compatible)", },
+ {IMXIMAGE_V2, "", " (i.MX53/6 compatible)", },
{-1, "", " (Invalid)", },
};
diff --git a/tools/imximage.h b/tools/imximage.h
index d126a46..d784a8d 100644
--- a/tools/imximage.h
+++ b/tools/imximage.h
@@ -37,6 +37,8 @@
#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 FLASH_OFFSET_SATA FLASH_OFFSET_STANDARD
#define IVT_HEADER_TAG 0xD1
#define IVT_VERSION 0x40
--
1.7.0.4
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [U-Boot] [PATCH 3/3] imximage: Sort bootops alphabetically
2012-01-12 9:28 [U-Boot] [PATCH 1/3] imximage: Add MX53 to the documentation Dirk Behme
2012-01-12 9:28 ` [U-Boot] [PATCH 2/3] imximage: Add support for i.MX6 Dirk Behme
@ 2012-01-12 9:28 ` Dirk Behme
2012-01-16 13:55 ` Jason Hui
2012-01-17 9:32 ` Stefano Babic
2012-01-16 13:58 ` [U-Boot] [PATCH 1/3] imximage: Add MX53 to the documentation Jason Hui
2012-01-17 9:32 ` Stefano Babic
3 siblings, 2 replies; 11+ messages in thread
From: Dirk Behme @ 2012-01-12 9:28 UTC (permalink / raw)
To: u-boot
Signed-off-by: Dirk Behme <dirk.behme@de.bosch.com>
CC: Fabio Estevam <festevam@gmail.com>
CC: Stefano Babic <sbabic@denx.de>
CC: Jason Liu <jason.hui@linaro.org>
---
Note: This was requested by Wolfgang in
http://www.mail-archive.com/u-boot at lists.denx.de/msg71842.html
tools/imximage.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/tools/imximage.c b/tools/imximage.c
index f3da139..1e0f5d4 100644
--- a/tools/imximage.c
+++ b/tools/imximage.c
@@ -47,12 +47,12 @@ static table_entry_t imximage_cmds[] = {
* this is needed to set the correct flash offset
*/
static table_entry_t imximage_bootops[] = {
- {FLASH_OFFSET_SPI, "spi", "SPI Flash", },
- {FLASH_OFFSET_NAND, "nand", "NAND Flash", },
- {FLASH_OFFSET_SD, "sd", "SD Card", },
{FLASH_OFFSET_ONENAND, "onenand", "OneNAND Flash",},
+ {FLASH_OFFSET_NAND, "nand", "NAND Flash", },
{FLASH_OFFSET_NOR, "nor", "NOR Flash", },
{FLASH_OFFSET_SATA, "sata", "SATA Disk", },
+ {FLASH_OFFSET_SD, "sd", "SD Card", },
+ {FLASH_OFFSET_SPI, "spi", "SPI Flash", },
{-1, "", "Invalid", },
};
--
1.7.0.4
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [U-Boot] [PATCH 2/3] imximage: Add support for i.MX6
2012-01-12 9:28 ` [U-Boot] [PATCH 2/3] imximage: Add support for i.MX6 Dirk Behme
@ 2012-01-16 13:54 ` Jason Hui
2012-01-17 9:32 ` Stefano Babic
1 sibling, 0 replies; 11+ messages in thread
From: Jason Hui @ 2012-01-16 13:54 UTC (permalink / raw)
To: u-boot
On Thu, Jan 12, 2012 at 5:28 PM, Dirk Behme <dirk.behme@de.bosch.com> wrote:
> The i.MX6 processor can boot from NOR flash and SATA disks,
> additionally. Add the flash offsets for these additional
> boot modes.
>
> Signed-off-by: Dirk Behme <dirk.behme@de.bosch.com>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> CC: Stefano Babic <sbabic@denx.de>
> CC: Jason Liu <jason.hui@linaro.org>
> ---
> ?doc/README.imximage | ? 13 +++++++------
> ?tools/imximage.c ? ?| ? ?4 +++-
> ?tools/imximage.h ? ?| ? ?2 ++
> ?3 files changed, 12 insertions(+), 7 deletions(-)
>
> diff --git a/doc/README.imximage b/doc/README.imximage
> index c3704a4..073e3fc 100644
> --- a/doc/README.imximage
> +++ b/doc/README.imximage
> @@ -2,12 +2,13 @@
> ?Imximage Boot Image generation using mkimage
> ?---------------------------------------------
>
> -This document describes how to set up a U-Boot image
> -that can be booted by Freescale MX25, MX35, MX51 and MX53
> -processors via internal boot mode.
> +This document describes how to set up a U-Boot image that can be booted
> +by Freescale MX25, MX35, MX51, MX53 and MX6 processors via internal boot
> +mode.
>
> ?These processors can boot directly from NAND, SPI flash and SD card flash
> -using its internal boot ROM support. They can boot from an internal
> +using its internal boot ROM support. MX6 processors additionally support
> +boot from NOR flash and SATA disks. All processors can boot from an internal
> ?UART, if booting from device media fails.
> ?Booting from NOR flash does not require to use this image type.
>
> @@ -59,12 +60,12 @@ Configuration command line syntax:
> ? ? ? ?-------------- ? ? ? ? ?-----------
> ? ? ? ?IMXIMAGE_VERSION ? ? ? ?1/2
> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?1 is for mx25/mx35/mx51 compatible,
> - ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 2 is for mx53 compatible,
> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 2 is for mx53/mx6 compatible,
> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?others is invalid and error is generated.
> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?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/sata
> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?Example:
> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?BOOT_FROM spi
> ? ? ? ?DATA ? ? ? ? ? ? ? ? ? ?type address value
> diff --git a/tools/imximage.c b/tools/imximage.c
> index 8e81bdb..f3da139 100644
> --- a/tools/imximage.c
> +++ b/tools/imximage.c
> @@ -51,6 +51,8 @@ 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", ? ?},
> + ? ? ? {FLASH_OFFSET_SATA, ? ? "sata", ? ? ? ? "SATA Disk", ? ?},
> ? ? ? ?{-1, ? ? ? ? ? ? ? ? ? ?"", ? ? ? ? ? ? "Invalid", ? ? ?},
> ?};
>
> @@ -59,7 +61,7 @@ static table_entry_t imximage_bootops[] = {
> ?*/
> ?static table_entry_t imximage_versions[] = {
> ? ? ? ?{IMXIMAGE_V1, ? "", ? ? " (i.MX25/35/51 compatible)", },
> - ? ? ? {IMXIMAGE_V2, ? "", ? ? " (i.MX53 compatible)", ? ? ? },
> + ? ? ? {IMXIMAGE_V2, ? "", ? ? " (i.MX53/6 compatible)", ? ? },
> ? ? ? ?{-1, ? ? ? ? ? ?"", ? ? " (Invalid)", ? ? ? ? ? ? ? ? },
> ?};
>
> diff --git a/tools/imximage.h b/tools/imximage.h
> index d126a46..d784a8d 100644
> --- a/tools/imximage.h
> +++ b/tools/imximage.h
> @@ -37,6 +37,8 @@
> ?#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 FLASH_OFFSET_SATA ? ? ?FLASH_OFFSET_STANDARD
>
> ?#define IVT_HEADER_TAG 0xD1
> ?#define IVT_VERSION 0x40
Acked-by: Jason Liu <jason.hui@linaro.org>
> --
> 1.7.0.4
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot] [PATCH 3/3] imximage: Sort bootops alphabetically
2012-01-12 9:28 ` [U-Boot] [PATCH 3/3] imximage: Sort bootops alphabetically Dirk Behme
@ 2012-01-16 13:55 ` Jason Hui
2012-01-17 9:32 ` Stefano Babic
1 sibling, 0 replies; 11+ messages in thread
From: Jason Hui @ 2012-01-16 13:55 UTC (permalink / raw)
To: u-boot
On Thu, Jan 12, 2012 at 5:28 PM, Dirk Behme <dirk.behme@de.bosch.com> wrote:
> Signed-off-by: Dirk Behme <dirk.behme@de.bosch.com>
> CC: Fabio Estevam <festevam@gmail.com>
> CC: Stefano Babic <sbabic@denx.de>
> CC: Jason Liu <jason.hui@linaro.org>
> ---
> Note: This was requested by Wolfgang in
> ? ? ?http://www.mail-archive.com/u-boot at lists.denx.de/msg71842.html
>
> ?tools/imximage.c | ? ?6 +++---
> ?1 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/tools/imximage.c b/tools/imximage.c
> index f3da139..1e0f5d4 100644
> --- a/tools/imximage.c
> +++ b/tools/imximage.c
> @@ -47,12 +47,12 @@ static table_entry_t imximage_cmds[] = {
> ?* this is needed to set the correct flash offset
> ?*/
> ?static table_entry_t imximage_bootops[] = {
> - ? ? ? {FLASH_OFFSET_SPI, ? ? ?"spi", ? ? ? ? ?"SPI Flash", ? ?},
> - ? ? ? {FLASH_OFFSET_NAND, ? ? "nand", ? ? ? ? "NAND Flash", ? },
> - ? ? ? {FLASH_OFFSET_SD, ? ? ? "sd", ? ? ? ? ? "SD Card", ? ? ?},
> ? ? ? ?{FLASH_OFFSET_ONENAND, ?"onenand", ? ? ?"OneNAND Flash",},
> + ? ? ? {FLASH_OFFSET_NAND, ? ? "nand", ? ? ? ? "NAND Flash", ? },
> ? ? ? ?{FLASH_OFFSET_NOR, ? ? ?"nor", ? ? ? ? ?"NOR Flash", ? ?},
> ? ? ? ?{FLASH_OFFSET_SATA, ? ? "sata", ? ? ? ? "SATA Disk", ? ?},
> + ? ? ? {FLASH_OFFSET_SD, ? ? ? "sd", ? ? ? ? ? "SD Card", ? ? ?},
> + ? ? ? {FLASH_OFFSET_SPI, ? ? ?"spi", ? ? ? ? ?"SPI Flash", ? ?},
> ? ? ? ?{-1, ? ? ? ? ? ? ? ? ? ?"", ? ? ? ? ? ? "Invalid", ? ? ?},
> ?};
Yes, this looks better.
Acked-by: Jason Liu <jason.hui@linaro.org>
>
> --
> 1.7.0.4
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot] [PATCH 1/3] imximage: Add MX53 to the documentation
2012-01-12 9:28 [U-Boot] [PATCH 1/3] imximage: Add MX53 to the documentation Dirk Behme
2012-01-12 9:28 ` [U-Boot] [PATCH 2/3] imximage: Add support for i.MX6 Dirk Behme
2012-01-12 9:28 ` [U-Boot] [PATCH 3/3] imximage: Sort bootops alphabetically Dirk Behme
@ 2012-01-16 13:58 ` Jason Hui
2012-01-16 14:05 ` Dirk Behme
2012-01-17 9:32 ` Stefano Babic
3 siblings, 1 reply; 11+ messages in thread
From: Jason Hui @ 2012-01-16 13:58 UTC (permalink / raw)
To: u-boot
On Thu, Jan 12, 2012 at 5:28 PM, Dirk Behme <dirk.behme@de.bosch.com> wrote:
> i.MX53 is supported, too. Add this to the introduction of the
> documentation.
>
> Signed-off-by: Dirk Behme <dirk.behme@de.bosch.com>
> CC: Fabio Estevam <festevam@gmail.com>
> CC: Stefano Babic <sbabic@denx.de>
> CC: Jason Liu <jason.hui@linaro.org>
> ---
> ?doc/README.imximage | ? ?2 +-
> ?1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/doc/README.imximage b/doc/README.imximage
> index c74239d..c3704a4 100644
> --- a/doc/README.imximage
> +++ b/doc/README.imximage
> @@ -3,7 +3,7 @@ Imximage Boot Image generation using mkimage
> ?---------------------------------------------
>
> ?This document describes how to set up a U-Boot image
> -that can be booted by Freescale MX25, MX35 and MX51
> +that can be booted by Freescale MX25, MX35, MX51 and MX53
> ?processors via internal boot mode.
>
> ?These processors can boot directly from NAND, SPI flash and SD card flash
This change is too trivial. I wonder whether it can be squashed with pach 2/3?
Jason
> --
> 1.7.0.4
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot] [PATCH 1/3] imximage: Add MX53 to the documentation
2012-01-16 13:58 ` [U-Boot] [PATCH 1/3] imximage: Add MX53 to the documentation Jason Hui
@ 2012-01-16 14:05 ` Dirk Behme
2012-01-16 15:05 ` Stefano Babic
0 siblings, 1 reply; 11+ messages in thread
From: Dirk Behme @ 2012-01-16 14:05 UTC (permalink / raw)
To: u-boot
On 16.01.2012 14:58, Jason Hui wrote:
> On Thu, Jan 12, 2012 at 5:28 PM, Dirk Behme <dirk.behme@de.bosch.com> wrote:
>> i.MX53 is supported, too. Add this to the introduction of the
>> documentation.
>>
>> Signed-off-by: Dirk Behme <dirk.behme@de.bosch.com>
>> CC: Fabio Estevam <festevam@gmail.com>
>> CC: Stefano Babic <sbabic@denx.de>
>> CC: Jason Liu <jason.hui@linaro.org>
>> ---
>> doc/README.imximage | 2 +-
>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/doc/README.imximage b/doc/README.imximage
>> index c74239d..c3704a4 100644
>> --- a/doc/README.imximage
>> +++ b/doc/README.imximage
>> @@ -3,7 +3,7 @@ Imximage Boot Image generation using mkimage
>> ---------------------------------------------
>>
>> This document describes how to set up a U-Boot image
>> -that can be booted by Freescale MX25, MX35 and MX51
>> +that can be booted by Freescale MX25, MX35, MX51 and MX53
>> processors via internal boot mode.
>>
>> These processors can boot directly from NAND, SPI flash and SD card flash
>
> This change is too trivial. I wonder whether it can be squashed with pach 2/3?
Sure, it could. But from logical point of view I've done two patches to
separate
1/3: Correct existing stuff
2/3: Add new stuff (mx6)
Best regards
Dirk
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot] [PATCH 1/3] imximage: Add MX53 to the documentation
2012-01-16 14:05 ` Dirk Behme
@ 2012-01-16 15:05 ` Stefano Babic
0 siblings, 0 replies; 11+ messages in thread
From: Stefano Babic @ 2012-01-16 15:05 UTC (permalink / raw)
To: u-boot
On 16/01/2012 15:05, Dirk Behme wrote:
>>>
>>> This document describes how to set up a U-Boot image
>>> -that can be booted by Freescale MX25, MX35 and MX51
>>> +that can be booted by Freescale MX25, MX35, MX51 and MX53
>>> processors via internal boot mode.
>>>
>>> These processors can boot directly from NAND, SPI flash and SD card
>>> flash
>>
>> This change is too trivial. I wonder whether it can be squashed with
>> pach 2/3?
>
> Sure, it could. But from logical point of view I've done two patches to
> separate
>
> 1/3: Correct existing stuff
> 2/3: Add new stuff (mx6)
Well, another way to see (as I can understand Jason's point of view) was
to set them as:
1/2 Update documentation
2/2 Add new feature (mx6)
By the way, even if I agree that the first patch could be squashed
together with the second one, there is no open issues and the substance
is not changed at all ;-)
I will merge the current three patches into u-boot-imx.
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] 11+ messages in thread
* [U-Boot] [PATCH 3/3] imximage: Sort bootops alphabetically
2012-01-12 9:28 ` [U-Boot] [PATCH 3/3] imximage: Sort bootops alphabetically Dirk Behme
2012-01-16 13:55 ` Jason Hui
@ 2012-01-17 9:32 ` Stefano Babic
1 sibling, 0 replies; 11+ messages in thread
From: Stefano Babic @ 2012-01-17 9:32 UTC (permalink / raw)
To: u-boot
On 12/01/2012 10:28, Dirk Behme wrote:
> Signed-off-by: Dirk Behme <dirk.behme@de.bosch.com>
> CC: Fabio Estevam <festevam@gmail.com>
> CC: Stefano Babic <sbabic@denx.de>
> CC: Jason Liu <jason.hui@linaro.org>
> ---
Applied to u-boot-imx, thanks.
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] 11+ messages in thread
* [U-Boot] [PATCH 1/3] imximage: Add MX53 to the documentation
2012-01-12 9:28 [U-Boot] [PATCH 1/3] imximage: Add MX53 to the documentation Dirk Behme
` (2 preceding siblings ...)
2012-01-16 13:58 ` [U-Boot] [PATCH 1/3] imximage: Add MX53 to the documentation Jason Hui
@ 2012-01-17 9:32 ` Stefano Babic
3 siblings, 0 replies; 11+ messages in thread
From: Stefano Babic @ 2012-01-17 9:32 UTC (permalink / raw)
To: u-boot
On 12/01/2012 10:28, Dirk Behme wrote:
> i.MX53 is supported, too. Add this to the introduction of the
> documentation.
>
> Signed-off-by: Dirk Behme <dirk.behme@de.bosch.com>
> CC: Fabio Estevam <festevam@gmail.com>
> CC: Stefano Babic <sbabic@denx.de>
> CC: Jason Liu <jason.hui@linaro.org>
> ---
Applied to u-boot-imx, thanks.
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] 11+ messages in thread
* [U-Boot] [PATCH 2/3] imximage: Add support for i.MX6
2012-01-12 9:28 ` [U-Boot] [PATCH 2/3] imximage: Add support for i.MX6 Dirk Behme
2012-01-16 13:54 ` Jason Hui
@ 2012-01-17 9:32 ` Stefano Babic
1 sibling, 0 replies; 11+ messages in thread
From: Stefano Babic @ 2012-01-17 9:32 UTC (permalink / raw)
To: u-boot
On 12/01/2012 10:28, Dirk Behme wrote:
> The i.MX6 processor can boot from NOR flash and SATA disks,
> additionally. Add the flash offsets for these additional
> boot modes.
>
> Signed-off-by: Dirk Behme <dirk.behme@de.bosch.com>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
> CC: Stefano Babic <sbabic@denx.de>
> CC: Jason Liu <jason.hui@linaro.org>
> ---
Applied to u-boot-imx, thanks.
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] 11+ messages in thread
end of thread, other threads:[~2012-01-17 9:32 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-12 9:28 [U-Boot] [PATCH 1/3] imximage: Add MX53 to the documentation Dirk Behme
2012-01-12 9:28 ` [U-Boot] [PATCH 2/3] imximage: Add support for i.MX6 Dirk Behme
2012-01-16 13:54 ` Jason Hui
2012-01-17 9:32 ` Stefano Babic
2012-01-12 9:28 ` [U-Boot] [PATCH 3/3] imximage: Sort bootops alphabetically Dirk Behme
2012-01-16 13:55 ` Jason Hui
2012-01-17 9:32 ` Stefano Babic
2012-01-16 13:58 ` [U-Boot] [PATCH 1/3] imximage: Add MX53 to the documentation Jason Hui
2012-01-16 14:05 ` Dirk Behme
2012-01-16 15:05 ` Stefano Babic
2012-01-17 9:32 ` Stefano Babic
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox