All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] configs: stm32mp1: remove splashimage and add fdtoverlay_addr_r
@ 2021-06-28 12:42 Patrick Delaunay
  2021-07-01  7:37 ` Patrice CHOTARD
  2021-07-16  8:25 ` Patrick DELAUNAY
  0 siblings, 2 replies; 4+ messages in thread
From: Patrick Delaunay @ 2021-06-28 12:42 UTC (permalink / raw)
  To: u-boot
  Cc: Patrick Delaunay, Marek Vasut, Patrice Chotard, U-Boot STM32, u-boot

Add the variable used by PXE command for fdtoverlays support
since the commit 69076dff2284 ("cmd: pxe: add support for FDT overlays").

Reused the unused "splashimage" address as CONFIG_SPLASH_SOURCE and
CONFIG_VIDEO_LOGO are not activated and U-Boot display the "BACKGROUND"
image found in extlinux.conf to manage splashscreen on stm32mp1 boards.

Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
---

 include/configs/stm32mp1.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/configs/stm32mp1.h b/include/configs/stm32mp1.h
index 440efa1a55..2e7f49e7bb 100644
--- a/include/configs/stm32mp1.h
+++ b/include/configs/stm32mp1.h
@@ -155,7 +155,7 @@
 
 /*
  * memory layout for 32M uncompressed/compressed kernel,
- * 1M fdt, 1M script, 1M pxe and 1M for splashimage
+ * 1M fdt, 1M script, 1M pxe and 1M for overlay
  * and the ramdisk at the end.
  */
 #define CONFIG_EXTRA_ENV_SETTINGS \
@@ -163,7 +163,7 @@
 	"fdt_addr_r=0xc4000000\0" \
 	"scriptaddr=0xc4100000\0" \
 	"pxefile_addr_r=0xc4200000\0" \
-	"splashimage=0xc4300000\0"  \
+	"fdtoverlay_addr_r=0xc4300000\0" \
 	"ramdisk_addr_r=0xc4400000\0" \
 	"altbootcmd=run bootcmd\0" \
 	"env_check=if env info -p -d -q; then env save; fi\0" \
-- 
2.25.1


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

* Re: [PATCH] configs: stm32mp1: remove splashimage and add fdtoverlay_addr_r
  2021-06-28 12:42 [PATCH] configs: stm32mp1: remove splashimage and add fdtoverlay_addr_r Patrick Delaunay
@ 2021-07-01  7:37 ` Patrice CHOTARD
  2021-07-16  8:25 ` Patrick DELAUNAY
  1 sibling, 0 replies; 4+ messages in thread
From: Patrice CHOTARD @ 2021-07-01  7:37 UTC (permalink / raw)
  To: Patrick Delaunay, u-boot; +Cc: Marek Vasut, U-Boot STM32, u-boot

Hi Patrick

On 6/28/21 2:42 PM, Patrick Delaunay wrote:
> Add the variable used by PXE command for fdtoverlays support
> since the commit 69076dff2284 ("cmd: pxe: add support for FDT overlays").
> 
> Reused the unused "splashimage" address as CONFIG_SPLASH_SOURCE and
> CONFIG_VIDEO_LOGO are not activated and U-Boot display the "BACKGROUND"
> image found in extlinux.conf to manage splashscreen on stm32mp1 boards.
> 
> Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
> ---
> 
>  include/configs/stm32mp1.h | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/include/configs/stm32mp1.h b/include/configs/stm32mp1.h
> index 440efa1a55..2e7f49e7bb 100644
> --- a/include/configs/stm32mp1.h
> +++ b/include/configs/stm32mp1.h
> @@ -155,7 +155,7 @@
>  
>  /*
>   * memory layout for 32M uncompressed/compressed kernel,
> - * 1M fdt, 1M script, 1M pxe and 1M for splashimage
> + * 1M fdt, 1M script, 1M pxe and 1M for overlay
>   * and the ramdisk at the end.
>   */
>  #define CONFIG_EXTRA_ENV_SETTINGS \
> @@ -163,7 +163,7 @@
>  	"fdt_addr_r=0xc4000000\0" \
>  	"scriptaddr=0xc4100000\0" \
>  	"pxefile_addr_r=0xc4200000\0" \
> -	"splashimage=0xc4300000\0"  \
> +	"fdtoverlay_addr_r=0xc4300000\0" \
>  	"ramdisk_addr_r=0xc4400000\0" \
>  	"altbootcmd=run bootcmd\0" \
>  	"env_check=if env info -p -d -q; then env save; fi\0" \
> 
Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>

Thanks
Patrice

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

* Re: [PATCH] configs: stm32mp1: remove splashimage and add fdtoverlay_addr_r
  2021-06-28 12:42 [PATCH] configs: stm32mp1: remove splashimage and add fdtoverlay_addr_r Patrick Delaunay
  2021-07-01  7:37 ` Patrice CHOTARD
@ 2021-07-16  8:25 ` Patrick DELAUNAY
  1 sibling, 0 replies; 4+ messages in thread
From: Patrick DELAUNAY @ 2021-07-16  8:25 UTC (permalink / raw)
  To: u-boot; +Cc: Marek Vasut, Patrice Chotard, U-Boot STM32, u-boot

Hi,

On 6/28/21 2:42 PM, Patrick Delaunay wrote:
> Add the variable used by PXE command for fdtoverlays support
> since the commit 69076dff2284 ("cmd: pxe: add support for FDT overlays").
>
> Reused the unused "splashimage" address as CONFIG_SPLASH_SOURCE and
> CONFIG_VIDEO_LOGO are not activated and U-Boot display the "BACKGROUND"
> image found in extlinux.conf to manage splashscreen on stm32mp1 boards.
>
> Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
> ---
>
>   include/configs/stm32mp1.h | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>

Applied to u-boot-stm/master, thanks!

Regards
Patrick


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

* [PATCH] configs: stm32mp1: remove splashimage and add fdtoverlay_addr_r
@ 2021-07-01 14:41 Hexagon Email Recovery
  0 siblings, 0 replies; 4+ messages in thread
From: Hexagon Email Recovery @ 2021-07-01 14:41 UTC (permalink / raw)
  To: u-boot; +Cc: patrick.delaunay, marex, patrice.chotard, uboot-stm32, u-boot

This message could not be delivered immediately due to an internal mail routing issue.
The mail routing error has been resolved in the meantime.
We apologize for the delay in delivery and any inconvenience this may have caused.
In case of any questions please contact us via it@hexagon.com.

Original sender: patrick.delaunay@foss.st.com
Original delivery time: 28-Jun-2021 01:09 PM (UTC)
-----------------------------------------------------------------------------------------------------------------------
This email is not from Hexagon’s Office 365 instance. Please be careful while clicking links, opening attachments, or replying to this email. Add the variable used by PXE command for fdtoverlays support since the commit 69076dff2284 ("cmd: pxe: add support for FDT overlays"). Reused the unused "splashimage" address as CONFIG_SPLASH_SOURCE and CONFIG_VIDEO_LOGO are not activated and U-Boot display the "BACKGROUND" image found in extlinux.conf to manage splashscreen on stm32mp1 boards. Signed-off-by: Patrick Delaunay --- include/configs/stm32mp1.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/stm32mp1.h b/include/configs/stm32mp1.h index 440efa1a55..2e7f49e7bb 100644 --- a/include/configs/stm32mp1.h +++ b/include/configs/stm32mp1.h @@ -155,7 +155,7 @@ /* * memory layout for 32M uncompressed/compressed kernel, - * 1M fdt, 1M script, 1M pxe and 1M for splashimage + * 1M fdt, 1M script, 1M pxe and 1M for overlay * and the ramdisk at the end. */ #define CONFIG_EXTRA_ENV_SETTINGS \ @@ -163,7 +163,7 @@ "fdt_addr_r=0xc4000000\0" \ "scriptaddr=0xc4100000\0" \ "pxefile_addr_r=0xc4200000\0" \ - "splashimage=0xc4300000\0" \ + "fdtoverlay_addr_r=0xc4300000\0" \ "ramdisk_addr_r=0xc4400000\0" \ "altbootcmd=run bootcmd\0" \ "env_check=if env info -p -d -q; then env save; fi\0" \ -- 2.25.1

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

end of thread, other threads:[~2021-07-16  8:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-28 12:42 [PATCH] configs: stm32mp1: remove splashimage and add fdtoverlay_addr_r Patrick Delaunay
2021-07-01  7:37 ` Patrice CHOTARD
2021-07-16  8:25 ` Patrick DELAUNAY
2021-07-01 14:41 Hexagon Email Recovery

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.