All of lore.kernel.org
 help / color / mirror / Atom feed
* [v2] configs: ls1046aqds: support distro boot
@ 2020-04-17  9:20 Biwen Li
  2020-04-20  8:34 ` Priyanka Jain
  0 siblings, 1 reply; 4+ messages in thread
From: Biwen Li @ 2020-04-17  9:20 UTC (permalink / raw)
  To: u-boot

From: Biwen Li <biwen.li@nxp.com>

Add support of distro boot for ls1046aqds

Signed-off-by: Biwen Li <biwen.li@nxp.com>
---
Change in v2:
	- correct subject

 include/configs/ls1046a_common.h | 18 +++++++++++++++++-
 include/configs/ls1046aqds.h     | 30 +++++++++++++++++++-----------
 2 files changed, 36 insertions(+), 12 deletions(-)

diff --git a/include/configs/ls1046a_common.h b/include/configs/ls1046a_common.h
index e80c2996ef..91b79650f7 100644
--- a/include/configs/ls1046a_common.h
+++ b/include/configs/ls1046a_common.h
@@ -217,6 +217,10 @@
 #define LS1046A_BOOT_SRC_AND_HDR\
 	"boot_scripts=ls1046afrwy_boot.scr\0"	\
 	"boot_script_hdr=hdr_ls1046afrwy_bs.out\0"
+#elif defined(CONFIG_TARGET_LS1046AQDS)
+#define LS1046A_BOOT_SRC_AND_HDR\
+	"boot_scripts=ls1046aqds_boot.scr\0"	\
+	"boot_script_hdr=hdr_ls1046aqds_bs.out\0"
 #else
 #define LS1046A_BOOT_SRC_AND_HDR\
 	"boot_scripts=ls1046ardb_boot.scr\0"	\
@@ -230,7 +234,7 @@
 	"ramdisk_size=0x2000000\0"		\
 	"bootm_size=0x10000000\0"		\
 	"fdt_addr=0x64f00000\0"                 \
-	"kernel_addr=0x65000000\0"              \
+	"kernel_addr=0x61000000\0"              \
 	"scriptaddr=0x80000000\0"               \
 	"scripthdraddr=0x80080000\0"		\
 	"fdtheader_addr_r=0x80100000\0"         \
@@ -277,6 +281,18 @@
 		"&& sf read $kernelheader_addr_r $kernelheader_start "	\
 		"$kernelheader_size && esbc_validate ${kernelheader_addr_r}; " \
 		"bootm $load_addr#$board\0"		\
+	"nand_bootcmd=echo Trying load from nand..;"      \
+		"nand info; nand read $load_addr "         \
+		"$kernel_start $kernel_size; env exists secureboot "	\
+		"&& nand read $kernelheader_addr_r $kernelheader_start "	\
+		"$kernelheader_size && esbc_validate ${kernelheader_addr_r}; " \
+		"bootm $load_addr#$board\0"		\
+	"nor_bootcmd=echo Trying load from nor..;"	\
+		"cp.b $kernel_addr $load_addr "		\
+		"$kernel_size; env exists secureboot "	\
+		"&& cp.b $kernelheader_addr $kernelheader_addr_r "	\
+		"$kernelheader_size && esbc_validate ${kernelheader_addr_r}; " \
+		"bootm $load_addr#$board\0"	\
 	"sd_bootcmd=echo Trying load from SD ..;"	\
 		"mmcinfo; mmc read $load_addr "		\
 		"$kernel_addr_sd $kernel_size_sd && "	\
diff --git a/include/configs/ls1046aqds.h b/include/configs/ls1046aqds.h
index 0b17b1e994..d04ad00e76 100644
--- a/include/configs/ls1046aqds.h
+++ b/include/configs/ls1046aqds.h
@@ -440,19 +440,27 @@ unsigned long get_board_ddr_clk(void);
 
 #undef CONFIG_BOOTCOMMAND
 #ifdef CONFIG_TFABOOT
-#define QSPI_NOR_BOOTCOMMAND		"sf probe && sf read $kernel_load "    \
-					"e0000 f00000 && bootm $kernel_load"
-#define IFC_NOR_BOOTCOMMAND		"cp.b $kernel_start $kernel_load "     \
-					"$kernel_size && bootm $kernel_load"
-#define SD_BOOTCOMMAND		"mmc info; mmc read $kernel_load"     \
-					"$kernel_addr_sd $kernel_size_sd && bootm $kernel_load"
+#define IFC_NAND_BOOTCOMMAND "run distro_bootcmd; run nand_bootcmd; "	\
+			   "env exists secureboot && esbc_halt;;"
+#define QSPI_NOR_BOOTCOMMAND "run distro_bootcmd; run nor_bootcmd"	\
+			   "env exists secureboot && esbc_halt;;"
+#define IFC_NOR_BOOTCOMMAND "run distro_bootcmd; run nor_bootcmd; "	\
+			   "env exists secureboot && esbc_halt;;"
+#define SD_BOOTCOMMAND "run distro_bootcmd; run sd_bootcmd; "	\
+			   "env exists secureboot && esbc_halt;;"
 #else
-#if defined(CONFIG_QSPI_BOOT) || defined(CONFIG_SD_BOOT_QSPI)
-#define CONFIG_BOOTCOMMAND		"sf probe && sf read $kernel_load "    \
-					"e0000 f00000 && bootm $kernel_load"
+#if defined(CONFIG_QSPI_BOOT)
+#define CONFIG_BOOTCOMMAND "run distro_bootcmd; run nor_bootcmd; "	\
+			   "env exists secureboot && esbc_halt;;"
+#elif defined(CONFIG_NAND_BOOT)
+#define CONFIG_BOOTCOMMAND "run distro_bootcmd; run nand_bootcmd; "	\
+			   "env exists secureboot && esbc_halt;;"
+#elif defined(CONFIG_SD_BOOT)
+#define CONFIG_BOOTCOMMAND "run distro_bootcmd; run sd_bootcmd; "	\
+			   "env exists secureboot && esbc_halt;;"
 #else
-#define CONFIG_BOOTCOMMAND		"cp.b $kernel_start $kernel_load "     \
-					"$kernel_size && bootm $kernel_load"
+#define CONFIG_BOOTCOMMAND "run distro_bootcmd; run nor_bootcmd; "	\
+			   "env exists secureboot && esbc_halt;;"
 #endif
 #endif
 
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [v2] configs: ls1046aqds: support distro boot
  2020-04-17  9:20 [v2] configs: ls1046aqds: support distro boot Biwen Li
@ 2020-04-20  8:34 ` Priyanka Jain
  2020-04-20 10:34   ` Biwen Li
  0 siblings, 1 reply; 4+ messages in thread
From: Priyanka Jain @ 2020-04-20  8:34 UTC (permalink / raw)
  To: u-boot

>-----Original Message-----
>From: U-Boot <u-boot-bounces@lists.denx.de> On Behalf Of Biwen Li
>Sent: Friday, April 17, 2020 2:51 PM
>To: Jagdish Gediya <jagdish.gediya@nxp.com>; Priyanka Jain
><priyanka.jain@nxp.com>; Andy Tang <andy.tang@nxp.com>; Shengzhou Liu
><shengzhou.liu@nxp.com>
>Cc: Alison Wang <alison.wang@nxp.com>; u-boot at lists.denx.de; Jiafei Pan
><jiafei.pan@nxp.com>; Biwen Li <biwen.li@nxp.com>
>Subject: [v2] configs: ls1046aqds: support distro boot
>
>From: Biwen Li <biwen.li@nxp.com>
>
>Add support of distro boot for ls1046aqds
>
>Signed-off-by: Biwen Li <biwen.li@nxp.com>
>---
>Change in v2:
>	- correct subject
>
> include/configs/ls1046a_common.h | 18 +++++++++++++++++-
> include/configs/ls1046aqds.h     | 30 +++++++++++++++++++-----------
> 2 files changed, 36 insertions(+), 12 deletions(-)
>
>diff --git a/include/configs/ls1046a_common.h
>b/include/configs/ls1046a_common.h
>index e80c2996ef..91b79650f7 100644
>--- a/include/configs/ls1046a_common.h
>+++ b/include/configs/ls1046a_common.h
>@@ -217,6 +217,10 @@
> #define LS1046A_BOOT_SRC_AND_HDR\
> 	"boot_scripts=ls1046afrwy_boot.scr\0"	\
> 	"boot_script_hdr=hdr_ls1046afrwy_bs.out\0"
>+#elif defined(CONFIG_TARGET_LS1046AQDS) #define
>+LS1046A_BOOT_SRC_AND_HDR\
>+	"boot_scripts=ls1046aqds_boot.scr\0"	\
>+	"boot_script_hdr=hdr_ls1046aqds_bs.out\0"
> #else
> #define LS1046A_BOOT_SRC_AND_HDR\
> 	"boot_scripts=ls1046ardb_boot.scr\0"	\
>@@ -230,7 +234,7 @@
> 	"ramdisk_size=0x2000000\0"		\
> 	"bootm_size=0x10000000\0"		\
> 	"fdt_addr=0x64f00000\0"                 \
>-	"kernel_addr=0x65000000\0"              \
>+	"kernel_addr=0x61000000\0"              \
> 	"scriptaddr=0x80000000\0"               \
> 	"scripthdraddr=0x80080000\0"		\
> 	"fdtheader_addr_r=0x80100000\0"         \
>@@ -277,6 +281,18 @@
> 		"&& sf read $kernelheader_addr_r $kernelheader_start "
>	\
> 		"$kernelheader_size && esbc_validate
>${kernelheader_addr_r}; " \
> 		"bootm $load_addr#$board\0"		\
>+	"nand_bootcmd=echo Trying load from nand..;"      \
>+		"nand info; nand read $load_addr "         \
>+		"$kernel_start $kernel_size; env exists secureboot "	\
>+		"&& nand read $kernelheader_addr_r $kernelheader_start "
>	\
>+		"$kernelheader_size && esbc_validate
>${kernelheader_addr_r}; " \
>+		"bootm $load_addr#$board\0"		\
>+	"nor_bootcmd=echo Trying load from nor..;"	\
>+		"cp.b $kernel_addr $load_addr "		\
>+		"$kernel_size; env exists secureboot "	\
>+		"&& cp.b $kernelheader_addr $kernelheader_addr_r "	\
>+		"$kernelheader_size && esbc_validate
>${kernelheader_addr_r}; " \
>+		"bootm $load_addr#$board\0"	\
> 	"sd_bootcmd=echo Trying load from SD ..;"	\
> 		"mmcinfo; mmc read $load_addr "		\
> 		"$kernel_addr_sd $kernel_size_sd && "	\
>diff --git a/include/configs/ls1046aqds.h b/include/configs/ls1046aqds.h index
>0b17b1e994..d04ad00e76 100644
>--- a/include/configs/ls1046aqds.h
>+++ b/include/configs/ls1046aqds.h
>@@ -440,19 +440,27 @@ unsigned long get_board_ddr_clk(void);
>
> #undef CONFIG_BOOTCOMMAND
> #ifdef CONFIG_TFABOOT
>-#define QSPI_NOR_BOOTCOMMAND		"sf probe && sf read
>$kernel_load "    \
>-					"e0000 f00000 && bootm
>$kernel_load"
>-#define IFC_NOR_BOOTCOMMAND		"cp.b $kernel_start
>$kernel_load "     \
>-					"$kernel_size && bootm
>$kernel_load"
>-#define SD_BOOTCOMMAND		"mmc info; mmc read $kernel_load"
>\
>-					"$kernel_addr_sd $kernel_size_sd &&
>bootm $kernel_load"
>+#define IFC_NAND_BOOTCOMMAND "run distro_bootcmd; run
>nand_bootcmd; "	\
>+			   "env exists secureboot && esbc_halt;;"
>+#define QSPI_NOR_BOOTCOMMAND "run distro_bootcmd; run
>nor_bootcmd"	\
>+			   "env exists secureboot && esbc_halt;;"
>+#define IFC_NOR_BOOTCOMMAND "run distro_bootcmd; run nor_bootcmd;
>"	\
>+			   "env exists secureboot && esbc_halt;;"
>+#define SD_BOOTCOMMAND "run distro_bootcmd; run sd_bootcmd; "
>	\
>+			   "env exists secureboot && esbc_halt;;"
> #else
>-#if defined(CONFIG_QSPI_BOOT) || defined(CONFIG_SD_BOOT_QSPI)
>-#define CONFIG_BOOTCOMMAND		"sf probe && sf read
>$kernel_load "    \
>-					"e0000 f00000 && bootm
>$kernel_load"
>+#if defined(CONFIG_QSPI_BOOT)
>+#define CONFIG_BOOTCOMMAND "run distro_bootcmd; run nor_bootcmd;
>"	\
>+			   "env exists secureboot && esbc_halt;;"
>+#elif defined(CONFIG_NAND_BOOT)
>+#define CONFIG_BOOTCOMMAND "run distro_bootcmd; run
>nand_bootcmd; "	\
>+			   "env exists secureboot && esbc_halt;;"
>+#elif defined(CONFIG_SD_BOOT)
>+#define CONFIG_BOOTCOMMAND "run distro_bootcmd; run sd_bootcmd; "
>	\
>+			   "env exists secureboot && esbc_halt;;"
> #else
>-#define CONFIG_BOOTCOMMAND		"cp.b $kernel_start
>$kernel_load "     \
>-					"$kernel_size && bootm
>$kernel_load"
>+#define CONFIG_BOOTCOMMAND "run distro_bootcmd; run nor_bootcmd;
>"	\
>+			   "env exists secureboot && esbc_halt;;"
> #endif
> #endif
>
>--
>2.17.1
Kindly Fix checkpatch warning
 ---------------------------------------------------------
WARNING: line over 80 characters
#45: FILE: include/configs/ls1046a_common.h:287:
+               "&& nand read $kernelheader_addr_r $kernelheader_start "      \

total: 0 errors, 1 warnings, 0 checks, 74 lines checked

Regards
Priyanka

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [v2] configs: ls1046aqds: support distro boot
  2020-04-20  8:34 ` Priyanka Jain
@ 2020-04-20 10:34   ` Biwen Li
  2020-04-30 12:24     ` Priyanka Jain
  0 siblings, 1 reply; 4+ messages in thread
From: Biwen Li @ 2020-04-20 10:34 UTC (permalink / raw)
  To: u-boot

> >-----Original Message-----
> >From: U-Boot <u-boot-bounces@lists.denx.de> On Behalf Of Biwen Li
> >Sent: Friday, April 17, 2020 2:51 PM
> >To: Jagdish Gediya <jagdish.gediya@nxp.com>; Priyanka Jain
> ><priyanka.jain@nxp.com>; Andy Tang <andy.tang@nxp.com>; Shengzhou Liu
> ><shengzhou.liu@nxp.com>
> >Cc: Alison Wang <alison.wang@nxp.com>; u-boot at lists.denx.de; Jiafei Pan
> ><jiafei.pan@nxp.com>; Biwen Li <biwen.li@nxp.com>
> >Subject: [v2] configs: ls1046aqds: support distro boot
> >
> >From: Biwen Li <biwen.li@nxp.com>
> >
> >Add support of distro boot for ls1046aqds
> >
> >Signed-off-by: Biwen Li <biwen.li@nxp.com>
> >---
> >Change in v2:
> >	- correct subject
> >
> > include/configs/ls1046a_common.h | 18 +++++++++++++++++-
> > include/configs/ls1046aqds.h     | 30 +++++++++++++++++++-----------
> > 2 files changed, 36 insertions(+), 12 deletions(-)
> >
> >diff --git a/include/configs/ls1046a_common.h
> >b/include/configs/ls1046a_common.h
> >index e80c2996ef..91b79650f7 100644
> >--- a/include/configs/ls1046a_common.h
> >+++ b/include/configs/ls1046a_common.h
> >@@ -217,6 +217,10 @@
> > #define LS1046A_BOOT_SRC_AND_HDR\
> > 	"boot_scripts=ls1046afrwy_boot.scr\0"	\
> > 	"boot_script_hdr=hdr_ls1046afrwy_bs.out\0"
> >+#elif defined(CONFIG_TARGET_LS1046AQDS) #define
> >+LS1046A_BOOT_SRC_AND_HDR\
> >+	"boot_scripts=ls1046aqds_boot.scr\0"	\
> >+	"boot_script_hdr=hdr_ls1046aqds_bs.out\0"
> > #else
> > #define LS1046A_BOOT_SRC_AND_HDR\
> > 	"boot_scripts=ls1046ardb_boot.scr\0"	\
> >@@ -230,7 +234,7 @@
> > 	"ramdisk_size=0x2000000\0"		\
> > 	"bootm_size=0x10000000\0"		\
> > 	"fdt_addr=0x64f00000\0"                 \
> >-	"kernel_addr=0x65000000\0"              \
> >+	"kernel_addr=0x61000000\0"              \
> > 	"scriptaddr=0x80000000\0"               \
> > 	"scripthdraddr=0x80080000\0"		\
> > 	"fdtheader_addr_r=0x80100000\0"         \
> >@@ -277,6 +281,18 @@
> > 		"&& sf read $kernelheader_addr_r $kernelheader_start "
> >	\
> > 		"$kernelheader_size && esbc_validate ${kernelheader_addr_r}; " \
> > 		"bootm $load_addr#$board\0"		\
> >+	"nand_bootcmd=echo Trying load from nand..;"      \
> >+		"nand info; nand read $load_addr "         \
> >+		"$kernel_start $kernel_size; env exists secureboot "	\
> >+		"&& nand read $kernelheader_addr_r $kernelheader_start "
> >	\
> >+		"$kernelheader_size && esbc_validate
> >${kernelheader_addr_r}; " \
> >+		"bootm $load_addr#$board\0"		\
> >+	"nor_bootcmd=echo Trying load from nor..;"	\
> >+		"cp.b $kernel_addr $load_addr "		\
> >+		"$kernel_size; env exists secureboot "	\
> >+		"&& cp.b $kernelheader_addr $kernelheader_addr_r "	\
> >+		"$kernelheader_size && esbc_validate
> >${kernelheader_addr_r}; " \
> >+		"bootm $load_addr#$board\0"	\
> > 	"sd_bootcmd=echo Trying load from SD ..;"	\
> > 		"mmcinfo; mmc read $load_addr "		\
> > 		"$kernel_addr_sd $kernel_size_sd && "	\
> >diff --git a/include/configs/ls1046aqds.h
> >b/include/configs/ls1046aqds.h index
> >0b17b1e994..d04ad00e76 100644
> >--- a/include/configs/ls1046aqds.h
> >+++ b/include/configs/ls1046aqds.h
> >@@ -440,19 +440,27 @@ unsigned long get_board_ddr_clk(void);
> >
> > #undef CONFIG_BOOTCOMMAND
> > #ifdef CONFIG_TFABOOT
> >-#define QSPI_NOR_BOOTCOMMAND		"sf probe && sf read
> >$kernel_load "    \
> >-					"e0000 f00000 && bootm
> >$kernel_load"
> >-#define IFC_NOR_BOOTCOMMAND		"cp.b $kernel_start
> >$kernel_load "     \
> >-					"$kernel_size && bootm
> >$kernel_load"
> >-#define SD_BOOTCOMMAND		"mmc info; mmc read $kernel_load"
> >\
> >-					"$kernel_addr_sd $kernel_size_sd &&
> >bootm $kernel_load"
> >+#define IFC_NAND_BOOTCOMMAND "run distro_bootcmd; run
> >nand_bootcmd; "	\
> >+			   "env exists secureboot && esbc_halt;;"
> >+#define QSPI_NOR_BOOTCOMMAND "run distro_bootcmd; run
> >nor_bootcmd"	\
> >+			   "env exists secureboot && esbc_halt;;"
> >+#define IFC_NOR_BOOTCOMMAND "run distro_bootcmd; run
> nor_bootcmd;
> >"	\
> >+			   "env exists secureboot && esbc_halt;;"
> >+#define SD_BOOTCOMMAND "run distro_bootcmd; run sd_bootcmd; "
> >	\
> >+			   "env exists secureboot && esbc_halt;;"
> > #else
> >-#if defined(CONFIG_QSPI_BOOT) || defined(CONFIG_SD_BOOT_QSPI)
> >-#define CONFIG_BOOTCOMMAND		"sf probe && sf read
> >$kernel_load "    \
> >-					"e0000 f00000 && bootm
> >$kernel_load"
> >+#if defined(CONFIG_QSPI_BOOT)
> >+#define CONFIG_BOOTCOMMAND "run distro_bootcmd; run nor_bootcmd;
> >"	\
> >+			   "env exists secureboot && esbc_halt;;"
> >+#elif defined(CONFIG_NAND_BOOT)
> >+#define CONFIG_BOOTCOMMAND "run distro_bootcmd; run
> >nand_bootcmd; "	\
> >+			   "env exists secureboot && esbc_halt;;"
> >+#elif defined(CONFIG_SD_BOOT)
> >+#define CONFIG_BOOTCOMMAND "run distro_bootcmd; run sd_bootcmd;
> "
> >	\
> >+			   "env exists secureboot && esbc_halt;;"
> > #else
> >-#define CONFIG_BOOTCOMMAND		"cp.b $kernel_start
> >$kernel_load "     \
> >-					"$kernel_size && bootm
> >$kernel_load"
> >+#define CONFIG_BOOTCOMMAND "run distro_bootcmd; run nor_bootcmd;
> >"	\
> >+			   "env exists secureboot && esbc_halt;;"
> > #endif
> > #endif
> >
> >--
> >2.17.1
> Kindly Fix checkpatch warning
>  ---------------------------------------------------------
> WARNING: line over 80 characters
> #45: FILE: include/configs/ls1046a_common.h:287:
> +               "&& nand read $kernelheader_addr_r $kernelheader_start "
> \
> 
> total: 0 errors, 1 warnings, 0 checks, 74 lines checked
Got it. It will be fixed in v3.
> 
> Regards
> Priyanka

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [v2] configs: ls1046aqds: support distro boot
  2020-04-20 10:34   ` Biwen Li
@ 2020-04-30 12:24     ` Priyanka Jain
  0 siblings, 0 replies; 4+ messages in thread
From: Priyanka Jain @ 2020-04-30 12:24 UTC (permalink / raw)
  To: u-boot


>-----Original Message-----
>From: Biwen Li <biwen.li@nxp.com>
>Sent: Monday, April 20, 2020 4:05 PM
>To: Priyanka Jain (OSS) <priyanka.jain@oss.nxp.com>; Biwen Li (OSS)
><biwen.li@oss.nxp.com>; Jagdish Gediya <jagdish.gediya@nxp.com>; Andy
>Tang <andy.tang@nxp.com>; Shengzhou Liu <shengzhou.liu@nxp.com>
>Cc: Alison Wang <alison.wang@nxp.com>; u-boot at lists.denx.de; Jiafei Pan
><jiafei.pan@nxp.com>
>Subject: RE: [v2] configs: ls1046aqds: support distro boot
>
>> >-----Original Message-----
>> >From: U-Boot <u-boot-bounces@lists.denx.de> On Behalf Of Biwen Li
>> >Sent: Friday, April 17, 2020 2:51 PM
>> >To: Jagdish Gediya <jagdish.gediya@nxp.com>; Priyanka Jain
>> ><priyanka.jain@nxp.com>; Andy Tang <andy.tang@nxp.com>; Shengzhou
>Liu
>> ><shengzhou.liu@nxp.com>
>> >Cc: Alison Wang <alison.wang@nxp.com>; u-boot at lists.denx.de; Jiafei
>> >Pan <jiafei.pan@nxp.com>; Biwen Li <biwen.li@nxp.com>
>> >Subject: [v2] configs: ls1046aqds: support distro boot
>> >
>> >From: Biwen Li <biwen.li@nxp.com>
>> >
>> >Add support of distro boot for ls1046aqds
>> >
>> >Signed-off-by: Biwen Li <biwen.li@nxp.com>
>> >---
Applied to fsl-qoriq. Awaiting upstream

Thanks
Priyanka

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-04-30 12:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-17  9:20 [v2] configs: ls1046aqds: support distro boot Biwen Li
2020-04-20  8:34 ` Priyanka Jain
2020-04-20 10:34   ` Biwen Li
2020-04-30 12:24     ` Priyanka Jain

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.