* [U-Boot] [PATCH 3/6] arm: socfpga: de0-nano-soc: Enabling U-Boot environment in QSPI
@ 2015-12-11 9:19 Chin Liang See
2015-12-11 9:19 ` [U-Boot] [PATCH 4/6] arm: socfpga: mcvevk: " Chin Liang See
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Chin Liang See @ 2015-12-11 9:19 UTC (permalink / raw)
To: u-boot
Enabling the support of storing U-Boot environment
within serial NOR flash. By default, its still
store into SDMMC
Signed-off-by: Chin Liang See <clsee@altera.com>
Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
Cc: Dinh Nguyen <dinh.linux@gmail.com>
Cc: Pavel Machek <pavel@denx.de>
Cc: Marek Vasut <marex@denx.de>
Cc: Stefan Roese <sr@denx.de>
---
include/configs/socfpga_de0_nano_soc.h | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/include/configs/socfpga_de0_nano_soc.h b/include/configs/socfpga_de0_nano_soc.h
index c42175d..cfa75b8 100644
--- a/include/configs/socfpga_de0_nano_soc.h
+++ b/include/configs/socfpga_de0_nano_soc.h
@@ -54,9 +54,17 @@
#endif
+/* U-Boot environment */
#define CONFIG_ENV_IS_IN_MMC
+#undef CONFIG_ENV_IS_IN_SPI_FLASH
+
+#ifdef CONFIG_ENV_IS_IN_MMC
#define CONFIG_SYS_MMC_ENV_DEV 0 /* device 0 */
#define CONFIG_ENV_OFFSET 512 /* just after the MBR */
+#elif CONFIG_ENV_IS_IN_SPI_FLASH
+#define CONFIG_ENV_SECT_SIZE (64 * 1024)
+#define CONFIG_ENV_OFFSET 0x400000
+#endif
/* USB */
#ifdef CONFIG_CMD_USB
--
1.9.2.468.g3f0c02a
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [U-Boot] [PATCH 4/6] arm: socfpga: mcvevk: Enabling U-Boot environment in QSPI
2015-12-11 9:19 [U-Boot] [PATCH 3/6] arm: socfpga: de0-nano-soc: Enabling U-Boot environment in QSPI Chin Liang See
@ 2015-12-11 9:19 ` Chin Liang See
2015-12-11 14:25 ` Marek Vasut
2015-12-11 9:19 ` [U-Boot] [PATCH 5/6] arm: socfpga: sockit: " Chin Liang See
` (2 subsequent siblings)
3 siblings, 1 reply; 9+ messages in thread
From: Chin Liang See @ 2015-12-11 9:19 UTC (permalink / raw)
To: u-boot
Enabling the support of storing U-Boot environment
within serial NOR flash. By default, its still
store into SDMMC
Signed-off-by: Chin Liang See <clsee@altera.com>
Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
Cc: Dinh Nguyen <dinh.linux@gmail.com>
Cc: Pavel Machek <pavel@denx.de>
Cc: Marek Vasut <marex@denx.de>
Cc: Stefan Roese <sr@denx.de>
---
include/configs/socfpga_mcvevk.h | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/include/configs/socfpga_mcvevk.h b/include/configs/socfpga_mcvevk.h
index a176a21..3bcbaaa 100644
--- a/include/configs/socfpga_mcvevk.h
+++ b/include/configs/socfpga_mcvevk.h
@@ -45,8 +45,15 @@
/* Environment is in MMC */
#define CONFIG_ENV_OVERWRITE
#define CONFIG_ENV_IS_IN_MMC
+#undef CONFIG_ENV_IS_IN_SPI_FLASH
+
+#ifdef CONFIG_ENV_IS_IN_MMC
#define CONFIG_SYS_MMC_ENV_DEV 0 /* device 0 */
#define CONFIG_ENV_OFFSET 512 /* just after the MBR */
+#elif CONFIG_ENV_IS_IN_SPI_FLASH
+#define CONFIG_ENV_SECT_SIZE (64 * 1024)
+#define CONFIG_ENV_OFFSET 0x400000
+#endif
/* USB */
#ifdef CONFIG_CMD_USB
--
1.9.2.468.g3f0c02a
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [U-Boot] [PATCH 5/6] arm: socfpga: sockit: Enabling U-Boot environment in QSPI
2015-12-11 9:19 [U-Boot] [PATCH 3/6] arm: socfpga: de0-nano-soc: Enabling U-Boot environment in QSPI Chin Liang See
2015-12-11 9:19 ` [U-Boot] [PATCH 4/6] arm: socfpga: mcvevk: " Chin Liang See
@ 2015-12-11 9:19 ` Chin Liang See
2015-12-11 14:25 ` Marek Vasut
2015-12-11 9:19 ` [U-Boot] [PATCH 6/6] arm: socfpga: socrates: " Chin Liang See
2015-12-11 14:24 ` [U-Boot] [PATCH 3/6] arm: socfpga: de0-nano-soc: " Marek Vasut
3 siblings, 1 reply; 9+ messages in thread
From: Chin Liang See @ 2015-12-11 9:19 UTC (permalink / raw)
To: u-boot
Enabling the support of storing U-Boot environment
within serial NOR flash. By default, its still
store into SDMMC
Signed-off-by: Chin Liang See <clsee@altera.com>
Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
Cc: Dinh Nguyen <dinh.linux@gmail.com>
Cc: Pavel Machek <pavel@denx.de>
Cc: Marek Vasut <marex@denx.de>
Cc: Stefan Roese <sr@denx.de>
---
include/configs/socfpga_sockit.h | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/include/configs/socfpga_sockit.h b/include/configs/socfpga_sockit.h
index a516e5d..ade0ba6 100644
--- a/include/configs/socfpga_sockit.h
+++ b/include/configs/socfpga_sockit.h
@@ -58,9 +58,17 @@
#endif
+/* U-Boot environment */
#define CONFIG_ENV_IS_IN_MMC
+#undef CONFIG_ENV_IS_IN_SPI_FLASH
+
+#ifdef CONFIG_ENV_IS_IN_MMC
#define CONFIG_SYS_MMC_ENV_DEV 0 /* device 0 */
#define CONFIG_ENV_OFFSET 512 /* just after the MBR */
+#elif CONFIG_ENV_IS_IN_SPI_FLASH
+#define CONFIG_ENV_SECT_SIZE (64 * 1024)
+#define CONFIG_ENV_OFFSET 0x400000
+#endif
/* USB */
#ifdef CONFIG_CMD_USB
--
1.9.2.468.g3f0c02a
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [U-Boot] [PATCH 6/6] arm: socfpga: socrates: Enabling U-Boot environment in QSPI
2015-12-11 9:19 [U-Boot] [PATCH 3/6] arm: socfpga: de0-nano-soc: Enabling U-Boot environment in QSPI Chin Liang See
2015-12-11 9:19 ` [U-Boot] [PATCH 4/6] arm: socfpga: mcvevk: " Chin Liang See
2015-12-11 9:19 ` [U-Boot] [PATCH 5/6] arm: socfpga: sockit: " Chin Liang See
@ 2015-12-11 9:19 ` Chin Liang See
2015-12-11 14:25 ` Marek Vasut
2015-12-11 14:24 ` [U-Boot] [PATCH 3/6] arm: socfpga: de0-nano-soc: " Marek Vasut
3 siblings, 1 reply; 9+ messages in thread
From: Chin Liang See @ 2015-12-11 9:19 UTC (permalink / raw)
To: u-boot
Enabling the support of storing U-Boot environment
within serial NOR flash. By default, its still
store into SDMMC
Signed-off-by: Chin Liang See <clsee@altera.com>
Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
Cc: Dinh Nguyen <dinh.linux@gmail.com>
Cc: Pavel Machek <pavel@denx.de>
Cc: Marek Vasut <marex@denx.de>
Cc: Stefan Roese <sr@denx.de>
---
include/configs/socfpga_socrates.h | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/include/configs/socfpga_socrates.h b/include/configs/socfpga_socrates.h
index 7b48afa..0e4c1dc 100644
--- a/include/configs/socfpga_socrates.h
+++ b/include/configs/socfpga_socrates.h
@@ -54,9 +54,17 @@
#endif
+/* U-Boot environment */
#define CONFIG_ENV_IS_IN_MMC
+#undef CONFIG_ENV_IS_IN_SPI_FLASH
+
+#ifdef CONFIG_ENV_IS_IN_MMC
#define CONFIG_SYS_MMC_ENV_DEV 0 /* device 0 */
#define CONFIG_ENV_OFFSET 512 /* just after the MBR */
+#elif CONFIG_ENV_IS_IN_SPI_FLASH
+#define CONFIG_ENV_SECT_SIZE (64 * 1024)
+#define CONFIG_ENV_OFFSET 0x400000
+#endif
/* USB */
#ifdef CONFIG_CMD_USB
--
1.9.2.468.g3f0c02a
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [U-Boot] [PATCH 3/6] arm: socfpga: de0-nano-soc: Enabling U-Boot environment in QSPI
2015-12-11 9:19 [U-Boot] [PATCH 3/6] arm: socfpga: de0-nano-soc: Enabling U-Boot environment in QSPI Chin Liang See
` (2 preceding siblings ...)
2015-12-11 9:19 ` [U-Boot] [PATCH 6/6] arm: socfpga: socrates: " Chin Liang See
@ 2015-12-11 14:24 ` Marek Vasut
2015-12-11 15:46 ` Dinh Nguyen
3 siblings, 1 reply; 9+ messages in thread
From: Marek Vasut @ 2015-12-11 14:24 UTC (permalink / raw)
To: u-boot
On Friday, December 11, 2015 at 10:19:06 AM, Chin Liang See wrote:
> Enabling the support of storing U-Boot environment
> within serial NOR flash. By default, its still
> store into SDMMC
>
> Signed-off-by: Chin Liang See <clsee@altera.com>
> Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
> Cc: Dinh Nguyen <dinh.linux@gmail.com>
> Cc: Pavel Machek <pavel@denx.de>
> Cc: Marek Vasut <marex@denx.de>
> Cc: Stefan Roese <sr@denx.de>
Atlas has no dedicated QSPI NOR, or does it ? I think it only has EPCQ.
Best regards,
Marek Vasut
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot] [PATCH 4/6] arm: socfpga: mcvevk: Enabling U-Boot environment in QSPI
2015-12-11 9:19 ` [U-Boot] [PATCH 4/6] arm: socfpga: mcvevk: " Chin Liang See
@ 2015-12-11 14:25 ` Marek Vasut
0 siblings, 0 replies; 9+ messages in thread
From: Marek Vasut @ 2015-12-11 14:25 UTC (permalink / raw)
To: u-boot
On Friday, December 11, 2015 at 10:19:07 AM, Chin Liang See wrote:
> Enabling the support of storing U-Boot environment
> within serial NOR flash. By default, its still
> store into SDMMC
>
> Signed-off-by: Chin Liang See <clsee@altera.com>
> Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
> Cc: Dinh Nguyen <dinh.linux@gmail.com>
> Cc: Pavel Machek <pavel@denx.de>
> Cc: Marek Vasut <marex@denx.de>
> Cc: Stefan Roese <sr@denx.de>
NAK, MCV SoM has no QSPI NOR.
Best regards,
Marek Vasut
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot] [PATCH 5/6] arm: socfpga: sockit: Enabling U-Boot environment in QSPI
2015-12-11 9:19 ` [U-Boot] [PATCH 5/6] arm: socfpga: sockit: " Chin Liang See
@ 2015-12-11 14:25 ` Marek Vasut
0 siblings, 0 replies; 9+ messages in thread
From: Marek Vasut @ 2015-12-11 14:25 UTC (permalink / raw)
To: u-boot
On Friday, December 11, 2015 at 10:19:08 AM, Chin Liang See wrote:
> Enabling the support of storing U-Boot environment
> within serial NOR flash. By default, its still
> store into SDMMC
>
> Signed-off-by: Chin Liang See <clsee@altera.com>
> Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
> Cc: Dinh Nguyen <dinh.linux@gmail.com>
> Cc: Pavel Machek <pavel@denx.de>
> Cc: Marek Vasut <marex@denx.de>
> Cc: Stefan Roese <sr@denx.de>
> ---
> include/configs/socfpga_sockit.h | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/include/configs/socfpga_sockit.h
> b/include/configs/socfpga_sockit.h index a516e5d..ade0ba6 100644
> --- a/include/configs/socfpga_sockit.h
> +++ b/include/configs/socfpga_sockit.h
> @@ -58,9 +58,17 @@
>
> #endif
>
> +/* U-Boot environment */
> #define CONFIG_ENV_IS_IN_MMC
> +#undef CONFIG_ENV_IS_IN_SPI_FLASH
Drop the undef please.
Best regards,
Marek Vasut
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot] [PATCH 6/6] arm: socfpga: socrates: Enabling U-Boot environment in QSPI
2015-12-11 9:19 ` [U-Boot] [PATCH 6/6] arm: socfpga: socrates: " Chin Liang See
@ 2015-12-11 14:25 ` Marek Vasut
0 siblings, 0 replies; 9+ messages in thread
From: Marek Vasut @ 2015-12-11 14:25 UTC (permalink / raw)
To: u-boot
On Friday, December 11, 2015 at 10:19:09 AM, Chin Liang See wrote:
> Enabling the support of storing U-Boot environment
> within serial NOR flash. By default, its still
> store into SDMMC
>
> Signed-off-by: Chin Liang See <clsee@altera.com>
> Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
> Cc: Dinh Nguyen <dinh.linux@gmail.com>
> Cc: Pavel Machek <pavel@denx.de>
> Cc: Marek Vasut <marex@denx.de>
> Cc: Stefan Roese <sr@denx.de>
> ---
> include/configs/socfpga_socrates.h | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/include/configs/socfpga_socrates.h
> b/include/configs/socfpga_socrates.h index 7b48afa..0e4c1dc 100644
> --- a/include/configs/socfpga_socrates.h
> +++ b/include/configs/socfpga_socrates.h
> @@ -54,9 +54,17 @@
>
> #endif
>
> +/* U-Boot environment */
> #define CONFIG_ENV_IS_IN_MMC
> +#undef CONFIG_ENV_IS_IN_SPI_FLASH
Drop the undef please.
Best regards,
Marek Vasut
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot] [PATCH 3/6] arm: socfpga: de0-nano-soc: Enabling U-Boot environment in QSPI
2015-12-11 14:24 ` [U-Boot] [PATCH 3/6] arm: socfpga: de0-nano-soc: " Marek Vasut
@ 2015-12-11 15:46 ` Dinh Nguyen
0 siblings, 0 replies; 9+ messages in thread
From: Dinh Nguyen @ 2015-12-11 15:46 UTC (permalink / raw)
To: u-boot
On 12/11/2015 08:24 AM, Marek Vasut wrote:
> On Friday, December 11, 2015 at 10:19:06 AM, Chin Liang See wrote:
>> Enabling the support of storing U-Boot environment
>> within serial NOR flash. By default, its still
>> store into SDMMC
>>
>> Signed-off-by: Chin Liang See <clsee@altera.com>
>> Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
>> Cc: Dinh Nguyen <dinh.linux@gmail.com>
>> Cc: Pavel Machek <pavel@denx.de>
>> Cc: Marek Vasut <marex@denx.de>
>> Cc: Stefan Roese <sr@denx.de>
>
> Atlas has no dedicated QSPI NOR, or does it ? I think it only has EPCQ.
>
That's correct, Atlas does not have QSPI NOR.
Dinh
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2015-12-11 15:46 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-11 9:19 [U-Boot] [PATCH 3/6] arm: socfpga: de0-nano-soc: Enabling U-Boot environment in QSPI Chin Liang See
2015-12-11 9:19 ` [U-Boot] [PATCH 4/6] arm: socfpga: mcvevk: " Chin Liang See
2015-12-11 14:25 ` Marek Vasut
2015-12-11 9:19 ` [U-Boot] [PATCH 5/6] arm: socfpga: sockit: " Chin Liang See
2015-12-11 14:25 ` Marek Vasut
2015-12-11 9:19 ` [U-Boot] [PATCH 6/6] arm: socfpga: socrates: " Chin Liang See
2015-12-11 14:25 ` Marek Vasut
2015-12-11 14:24 ` [U-Boot] [PATCH 3/6] arm: socfpga: de0-nano-soc: " Marek Vasut
2015-12-11 15:46 ` Dinh Nguyen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox