public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH v2] board_f: Copy GD to new GD even if relocation disabled
@ 2021-10-15 15:48 marek.vasut
  2021-10-24 19:54 ` Simon Glass
  0 siblings, 1 reply; 2+ messages in thread
From: marek.vasut @ 2021-10-15 15:48 UTC (permalink / raw)
  To: u-boot; +Cc: Marek Vasut, Peng Fan, Simon Glass, Tom Rini

From: Marek Vasut <marek.vasut+renesas@gmail.com>

Even if U-Boot has relocation disabled via GD_FLG_SKIP_RELOC , the
relocated stage of U-Boot still picks GD from new_gd location. The
U-Boot itself is not relocated, but GD might be, so copy the GD to
new GD location even if relocation is disabled.

Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Peng Fan <peng.fan@oss.nxp.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Tom Rini <trini@konsulko.com>
---
V2: Deduplicate memcpy. The patch is better viewed with git show -w
---
 common/board_f.c | 34 +++++++++++++++++++---------------
 1 file changed, 19 insertions(+), 15 deletions(-)

diff --git a/common/board_f.c b/common/board_f.c
index 3dc0eaa59c..7595eaa5b1 100644
--- a/common/board_f.c
+++ b/common/board_f.c
@@ -674,29 +674,33 @@ static int reloc_bloblist(void)
 static int setup_reloc(void)
 {
 	if (gd->flags & GD_FLG_SKIP_RELOC) {
-		debug("Skipping relocation due to flag\n");
-		return 0;
-	}
-
+		gd->reloc_off = 0;
+	} else {
 #ifdef CONFIG_SYS_TEXT_BASE
 #ifdef ARM
-	gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
+		gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
 #elif defined(CONFIG_M68K)
-	/*
-	 * On all ColdFire arch cpu, monitor code starts always
-	 * just after the default vector table location, so at 0x400
-	 */
-	gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
+		/*
+		 * On all ColdFire arch cpu, monitor code starts always
+		 * just after the default vector table location, so at 0x400
+		 */
+		gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
 #elif !defined(CONFIG_SANDBOX)
-	gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
+		gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
 #endif
 #endif
+	}
+
 	memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
 
-	debug("Relocation Offset is: %08lx\n", gd->reloc_off);
-	debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
-	      gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
-	      gd->start_addr_sp);
+	if (gd->flags & GD_FLG_SKIP_RELOC) {
+		debug("Skipping relocation due to flag\n");
+	} else {
+		debug("Relocation Offset is: %08lx\n", gd->reloc_off);
+		debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
+		      gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
+		      gd->start_addr_sp);
+	}
 
 	return 0;
 }
-- 
2.33.0


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

* Re: [PATCH v2] board_f: Copy GD to new GD even if relocation disabled
  2021-10-15 15:48 [PATCH v2] board_f: Copy GD to new GD even if relocation disabled marek.vasut
@ 2021-10-24 19:54 ` Simon Glass
  0 siblings, 0 replies; 2+ messages in thread
From: Simon Glass @ 2021-10-24 19:54 UTC (permalink / raw)
  To: Marek Vasut; +Cc: U-Boot Mailing List, Marek Vasut, Peng Fan, Tom Rini

On Fri, 15 Oct 2021 at 09:48, <marek.vasut@gmail.com> wrote:
>
> From: Marek Vasut <marek.vasut+renesas@gmail.com>
>
> Even if U-Boot has relocation disabled via GD_FLG_SKIP_RELOC , the
> relocated stage of U-Boot still picks GD from new_gd location. The
> U-Boot itself is not relocated, but GD might be, so copy the GD to
> new GD location even if relocation is disabled.
>
> Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
> Cc: Peng Fan <peng.fan@oss.nxp.com>
> Cc: Simon Glass <sjg@chromium.org>
> Cc: Tom Rini <trini@konsulko.com>
> ---
> V2: Deduplicate memcpy. The patch is better viewed with git show -w
> ---
>  common/board_f.c | 34 +++++++++++++++++++---------------
>  1 file changed, 19 insertions(+), 15 deletions(-)

Reviewed-by: Simon Glass <sjg@chromium.org>

but see below

>
> diff --git a/common/board_f.c b/common/board_f.c
> index 3dc0eaa59c..7595eaa5b1 100644
> --- a/common/board_f.c
> +++ b/common/board_f.c
> @@ -674,29 +674,33 @@ static int reloc_bloblist(void)
>  static int setup_reloc(void)
>  {
>         if (gd->flags & GD_FLG_SKIP_RELOC) {
> -               debug("Skipping relocation due to flag\n");
> -               return 0;
> -       }
> -
> +               gd->reloc_off = 0;

Please drop this as it is not needed. *gd is zeroed on start.


> +       } else {
>  #ifdef CONFIG_SYS_TEXT_BASE
>  #ifdef ARM
> -       gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
> +               gd->reloc_off = gd->relocaddr - (unsigned long)__image_copy_start;
>  #elif defined(CONFIG_M68K)
> -       /*
> -        * On all ColdFire arch cpu, monitor code starts always
> -        * just after the default vector table location, so at 0x400
> -        */
> -       gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
> +               /*
> +                * On all ColdFire arch cpu, monitor code starts always
> +                * just after the default vector table location, so at 0x400
> +                */
> +               gd->reloc_off = gd->relocaddr - (CONFIG_SYS_TEXT_BASE + 0x400);
>  #elif !defined(CONFIG_SANDBOX)
> -       gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
> +               gd->reloc_off = gd->relocaddr - CONFIG_SYS_TEXT_BASE;
>  #endif
>  #endif
> +       }
> +
>         memcpy(gd->new_gd, (char *)gd, sizeof(gd_t));
>
> -       debug("Relocation Offset is: %08lx\n", gd->reloc_off);
> -       debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
> -             gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
> -             gd->start_addr_sp);
> +       if (gd->flags & GD_FLG_SKIP_RELOC) {
> +               debug("Skipping relocation due to flag\n");
> +       } else {
> +               debug("Relocation Offset is: %08lx\n", gd->reloc_off);
> +               debug("Relocating to %08lx, new gd at %08lx, sp at %08lx\n",
> +                     gd->relocaddr, (ulong)map_to_sysmem(gd->new_gd),
> +                     gd->start_addr_sp);
> +       }
>
>         return 0;
>  }
> --
> 2.33.0
>

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

end of thread, other threads:[~2021-10-24 19:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-15 15:48 [PATCH v2] board_f: Copy GD to new GD even if relocation disabled marek.vasut
2021-10-24 19:54 ` Simon Glass

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox