All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot]  [PATCH 1/3] configs: am65x_evm_r5: Enable GPT support
@ 2019-02-01 21:04 Andrew F. Davis
  2019-02-01 21:04 ` [U-Boot] [PATCH 2/3] am65x_evm: Allow bootm to load larger kernels Andrew F. Davis
                   ` (4 more replies)
  0 siblings, 5 replies; 12+ messages in thread
From: Andrew F. Davis @ 2019-02-01 21:04 UTC (permalink / raw)
  To: u-boot

The second loader stages may be stored on GPT partitions,
enable support for this here.

Signed-off-by: Andrew F. Davis <afd@ti.com>
---
 configs/am65x_evm_r5_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/configs/am65x_evm_r5_defconfig b/configs/am65x_evm_r5_defconfig
index 237b9e8229..51406548d4 100644
--- a/configs/am65x_evm_r5_defconfig
+++ b/configs/am65x_evm_r5_defconfig
@@ -33,6 +33,7 @@ CONFIG_HUSH_PARSER=y
 CONFIG_CMD_BOOTZ=y
 CONFIG_CMD_ASKENV=y
 # CONFIG_CMD_FLASH is not set
+CONFIG_CMD_GPT=y
 CONFIG_CMD_MMC=y
 CONFIG_CMD_REMOTEPROC=y
 # CONFIG_CMD_SETEXPR is not set
-- 
2.19.1

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

* [U-Boot] [PATCH 2/3] am65x_evm: Allow bootm to load larger kernels
  2019-02-01 21:04 [U-Boot] [PATCH 1/3] configs: am65x_evm_r5: Enable GPT support Andrew F. Davis
@ 2019-02-01 21:04 ` Andrew F. Davis
  2019-02-03  1:10   ` Tom Rini
                     ` (2 more replies)
  2019-02-01 21:04 ` [U-Boot] [PATCH 3/3] armv7R: K3: am654: Fix order of debug elements in x509 template Andrew F. Davis
                   ` (3 subsequent siblings)
  4 siblings, 3 replies; 12+ messages in thread
From: Andrew F. Davis @ 2019-02-01 21:04 UTC (permalink / raw)
  To: u-boot

Bootm will fail to load kernels over 8MB, this is not enough
for our 64bit kernel images. Increase this to 64MB.

Signed-off-by: Andrew F. Davis <afd@ti.com>
---
 include/configs/am65x_evm.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/configs/am65x_evm.h b/include/configs/am65x_evm.h
index 31749c6d06..9ce5b6e824 100644
--- a/include/configs/am65x_evm.h
+++ b/include/configs/am65x_evm.h
@@ -37,6 +37,8 @@
 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SPL_TEXT_BASE +	\
 					CONFIG_SYS_K3_NON_SECURE_MSRAM_SIZE - 4)
 
+#define CONFIG_SYS_BOOTM_LEN		SZ_64M
+
 /* U-Boot general configuration */
 #define EXTRA_ENV_AM65X_BOARD_SETTINGS					\
 	"findfdt="							\
-- 
2.19.1

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

* [U-Boot] [PATCH 3/3] armv7R: K3: am654: Fix order of debug elements in x509 template
  2019-02-01 21:04 [U-Boot] [PATCH 1/3] configs: am65x_evm_r5: Enable GPT support Andrew F. Davis
  2019-02-01 21:04 ` [U-Boot] [PATCH 2/3] am65x_evm: Allow bootm to load larger kernels Andrew F. Davis
@ 2019-02-01 21:04 ` Andrew F. Davis
  2019-02-03  1:10   ` Tom Rini
                     ` (2 more replies)
  2019-02-03  1:09 ` [U-Boot] [PATCH 1/3] configs: am65x_evm_r5: Enable GPT support Tom Rini
                   ` (2 subsequent siblings)
  4 siblings, 3 replies; 12+ messages in thread
From: Andrew F. Davis @ 2019-02-01 21:04 UTC (permalink / raw)
  To: u-boot

The first element in the debug section is expected to be debugUID.
ROM will not parse this correctly when out of order, fix this here.

Signed-off-by: Andrew F. Davis <afd@ti.com>
---
 tools/k3_x509template.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/k3_x509template.txt b/tools/k3_x509template.txt
index bd3a9ab056..f176ff3ad2 100644
--- a/tools/k3_x509template.txt
+++ b/tools/k3_x509template.txt
@@ -42,7 +42,7 @@
 # salt = FORMAT:HEX,OCT:TEST_IMAGE_KEY_DERIVE_SALT
 
  [ debug ]
+ debugUID = FORMAT:HEX,OCT:0000000000000000000000000000000000000000000000000000000000000000
  debugType = INTEGER:4
  coreDbgEn = INTEGER:0
  coreDbgSecEn = INTEGER:0
- debugUID = FORMAT:HEX,OCT:0000000000000000000000000000000000000000000000000000000000000000
-- 
2.19.1

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

* [U-Boot] [PATCH 1/3] configs: am65x_evm_r5: Enable GPT support
  2019-02-01 21:04 [U-Boot] [PATCH 1/3] configs: am65x_evm_r5: Enable GPT support Andrew F. Davis
  2019-02-01 21:04 ` [U-Boot] [PATCH 2/3] am65x_evm: Allow bootm to load larger kernels Andrew F. Davis
  2019-02-01 21:04 ` [U-Boot] [PATCH 3/3] armv7R: K3: am654: Fix order of debug elements in x509 template Andrew F. Davis
@ 2019-02-03  1:09 ` Tom Rini
  2019-02-04  4:18 ` Lokesh Vutla
  2019-02-10 13:10 ` [U-Boot] [U-Boot, " Tom Rini
  4 siblings, 0 replies; 12+ messages in thread
From: Tom Rini @ 2019-02-03  1:09 UTC (permalink / raw)
  To: u-boot

On Fri, Feb 01, 2019 at 03:04:56PM -0600, Andrew F. Davis wrote:

> The second loader stages may be stored on GPT partitions,
> enable support for this here.
> 
> Signed-off-by: Andrew F. Davis <afd@ti.com>

Reviewed-by: Tom Rini <trini@konsulko.com>

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190202/cae2b7ac/attachment.sig>

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

* [U-Boot] [PATCH 2/3] am65x_evm: Allow bootm to load larger kernels
  2019-02-01 21:04 ` [U-Boot] [PATCH 2/3] am65x_evm: Allow bootm to load larger kernels Andrew F. Davis
@ 2019-02-03  1:10   ` Tom Rini
  2019-02-04  4:18   ` Lokesh Vutla
  2019-02-10 13:10   ` [U-Boot] [U-Boot, " Tom Rini
  2 siblings, 0 replies; 12+ messages in thread
From: Tom Rini @ 2019-02-03  1:10 UTC (permalink / raw)
  To: u-boot

On Fri, Feb 01, 2019 at 03:04:57PM -0600, Andrew F. Davis wrote:

> Bootm will fail to load kernels over 8MB, this is not enough
> for our 64bit kernel images. Increase this to 64MB.
> 
> Signed-off-by: Andrew F. Davis <afd@ti.com>

Reviewed-by: Tom Rini <trini@konsulko.com>

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190202/a6a3b8a1/attachment.sig>

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

* [U-Boot] [PATCH 3/3] armv7R: K3: am654: Fix order of debug elements in x509 template
  2019-02-01 21:04 ` [U-Boot] [PATCH 3/3] armv7R: K3: am654: Fix order of debug elements in x509 template Andrew F. Davis
@ 2019-02-03  1:10   ` Tom Rini
  2019-02-04  4:18   ` Lokesh Vutla
  2019-02-10 13:10   ` [U-Boot] [U-Boot, " Tom Rini
  2 siblings, 0 replies; 12+ messages in thread
From: Tom Rini @ 2019-02-03  1:10 UTC (permalink / raw)
  To: u-boot

On Fri, Feb 01, 2019 at 03:04:58PM -0600, Andrew F. Davis wrote:

> The first element in the debug section is expected to be debugUID.
> ROM will not parse this correctly when out of order, fix this here.
> 
> Signed-off-by: Andrew F. Davis <afd@ti.com>

Reviewed-by: Tom Rini <trini@konsulko.com>

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190202/2873e880/attachment.sig>

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

* [U-Boot] [PATCH 1/3] configs: am65x_evm_r5: Enable GPT support
  2019-02-01 21:04 [U-Boot] [PATCH 1/3] configs: am65x_evm_r5: Enable GPT support Andrew F. Davis
                   ` (2 preceding siblings ...)
  2019-02-03  1:09 ` [U-Boot] [PATCH 1/3] configs: am65x_evm_r5: Enable GPT support Tom Rini
@ 2019-02-04  4:18 ` Lokesh Vutla
  2019-02-10 13:10 ` [U-Boot] [U-Boot, " Tom Rini
  4 siblings, 0 replies; 12+ messages in thread
From: Lokesh Vutla @ 2019-02-04  4:18 UTC (permalink / raw)
  To: u-boot



On 02/02/19 2:34 AM, Andrew F. Davis wrote:
> The second loader stages may be stored on GPT partitions,
> enable support for this here.
> 
> Signed-off-by: Andrew F. Davis <afd@ti.com>

Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>

Thanks and regards,
Lokesh

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

* [U-Boot] [PATCH 2/3] am65x_evm: Allow bootm to load larger kernels
  2019-02-01 21:04 ` [U-Boot] [PATCH 2/3] am65x_evm: Allow bootm to load larger kernels Andrew F. Davis
  2019-02-03  1:10   ` Tom Rini
@ 2019-02-04  4:18   ` Lokesh Vutla
  2019-02-10 13:10   ` [U-Boot] [U-Boot, " Tom Rini
  2 siblings, 0 replies; 12+ messages in thread
From: Lokesh Vutla @ 2019-02-04  4:18 UTC (permalink / raw)
  To: u-boot



On 02/02/19 2:34 AM, Andrew F. Davis wrote:
> Bootm will fail to load kernels over 8MB, this is not enough
> for our 64bit kernel images. Increase this to 64MB.
> 
> Signed-off-by: Andrew F. Davis <afd@ti.com>

Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>

Thanks and regards,
Lokesh

> ---
>  include/configs/am65x_evm.h | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/include/configs/am65x_evm.h b/include/configs/am65x_evm.h
> index 31749c6d06..9ce5b6e824 100644
> --- a/include/configs/am65x_evm.h
> +++ b/include/configs/am65x_evm.h
> @@ -37,6 +37,8 @@
>  #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SPL_TEXT_BASE +	\
>  					CONFIG_SYS_K3_NON_SECURE_MSRAM_SIZE - 4)
>  
> +#define CONFIG_SYS_BOOTM_LEN		SZ_64M
> +
>  /* U-Boot general configuration */
>  #define EXTRA_ENV_AM65X_BOARD_SETTINGS					\
>  	"findfdt="							\
> 

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

* [U-Boot] [PATCH 3/3] armv7R: K3: am654: Fix order of debug elements in x509 template
  2019-02-01 21:04 ` [U-Boot] [PATCH 3/3] armv7R: K3: am654: Fix order of debug elements in x509 template Andrew F. Davis
  2019-02-03  1:10   ` Tom Rini
@ 2019-02-04  4:18   ` Lokesh Vutla
  2019-02-10 13:10   ` [U-Boot] [U-Boot, " Tom Rini
  2 siblings, 0 replies; 12+ messages in thread
From: Lokesh Vutla @ 2019-02-04  4:18 UTC (permalink / raw)
  To: u-boot



On 02/02/19 2:34 AM, Andrew F. Davis wrote:
> The first element in the debug section is expected to be debugUID.
> ROM will not parse this correctly when out of order, fix this here.
> 
> Signed-off-by: Andrew F. Davis <afd@ti.com>

Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>

Thanks and regards,
Lokesh

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

* [U-Boot] [U-Boot, 1/3] configs: am65x_evm_r5: Enable GPT support
  2019-02-01 21:04 [U-Boot] [PATCH 1/3] configs: am65x_evm_r5: Enable GPT support Andrew F. Davis
                   ` (3 preceding siblings ...)
  2019-02-04  4:18 ` Lokesh Vutla
@ 2019-02-10 13:10 ` Tom Rini
  4 siblings, 0 replies; 12+ messages in thread
From: Tom Rini @ 2019-02-10 13:10 UTC (permalink / raw)
  To: u-boot

On Fri, Feb 01, 2019 at 03:04:56PM -0600, Andrew F. Davis wrote:

> The second loader stages may be stored on GPT partitions,
> enable support for this here.
> 
> Signed-off-by: Andrew F. Davis <afd@ti.com>
> Reviewed-by: Tom Rini <trini@konsulko.com>
> Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190210/fad14649/attachment.sig>

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

* [U-Boot] [U-Boot, 2/3] am65x_evm: Allow bootm to load larger kernels
  2019-02-01 21:04 ` [U-Boot] [PATCH 2/3] am65x_evm: Allow bootm to load larger kernels Andrew F. Davis
  2019-02-03  1:10   ` Tom Rini
  2019-02-04  4:18   ` Lokesh Vutla
@ 2019-02-10 13:10   ` Tom Rini
  2 siblings, 0 replies; 12+ messages in thread
From: Tom Rini @ 2019-02-10 13:10 UTC (permalink / raw)
  To: u-boot

On Fri, Feb 01, 2019 at 03:04:57PM -0600, Andrew F. Davis wrote:

> Bootm will fail to load kernels over 8MB, this is not enough
> for our 64bit kernel images. Increase this to 64MB.
> 
> Signed-off-by: Andrew F. Davis <afd@ti.com>
> Reviewed-by: Tom Rini <trini@konsulko.com>
> Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190210/a1de11e1/attachment.sig>

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

* [U-Boot] [U-Boot, 3/3] armv7R: K3: am654: Fix order of debug elements in x509 template
  2019-02-01 21:04 ` [U-Boot] [PATCH 3/3] armv7R: K3: am654: Fix order of debug elements in x509 template Andrew F. Davis
  2019-02-03  1:10   ` Tom Rini
  2019-02-04  4:18   ` Lokesh Vutla
@ 2019-02-10 13:10   ` Tom Rini
  2 siblings, 0 replies; 12+ messages in thread
From: Tom Rini @ 2019-02-10 13:10 UTC (permalink / raw)
  To: u-boot

On Fri, Feb 01, 2019 at 03:04:58PM -0600, Andrew F. Davis wrote:

> The first element in the debug section is expected to be debugUID.
> ROM will not parse this correctly when out of order, fix this here.
> 
> Signed-off-by: Andrew F. Davis <afd@ti.com>
> Reviewed-by: Tom Rini <trini@konsulko.com>
> Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190210/28ffb8e2/attachment.sig>

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

end of thread, other threads:[~2019-02-10 13:10 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-01 21:04 [U-Boot] [PATCH 1/3] configs: am65x_evm_r5: Enable GPT support Andrew F. Davis
2019-02-01 21:04 ` [U-Boot] [PATCH 2/3] am65x_evm: Allow bootm to load larger kernels Andrew F. Davis
2019-02-03  1:10   ` Tom Rini
2019-02-04  4:18   ` Lokesh Vutla
2019-02-10 13:10   ` [U-Boot] [U-Boot, " Tom Rini
2019-02-01 21:04 ` [U-Boot] [PATCH 3/3] armv7R: K3: am654: Fix order of debug elements in x509 template Andrew F. Davis
2019-02-03  1:10   ` Tom Rini
2019-02-04  4:18   ` Lokesh Vutla
2019-02-10 13:10   ` [U-Boot] [U-Boot, " Tom Rini
2019-02-03  1:09 ` [U-Boot] [PATCH 1/3] configs: am65x_evm_r5: Enable GPT support Tom Rini
2019-02-04  4:18 ` Lokesh Vutla
2019-02-10 13:10 ` [U-Boot] [U-Boot, " Tom Rini

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.