mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] ARM: Fix a bug in stack's "top" initialization
@ 2016-12-19  6:05 Andrey Smirnov
  2017-01-09 10:29 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Andrey Smirnov @ 2016-12-19  6:05 UTC (permalink / raw)
  To: barebox; +Cc: Andrey Smirnov

Code-paths responsible for initializing CPU's stack pointer and variable
used in stack memory resource reservation got out of sync which resulted
in actual stack being 64K off from what "stack" struct resource
registered by arm_request_stack() thought it was.

At least one issue resulting from that can be easily triggered by
running:

memtest -t

This commit unifies the aforementioned code to a certain degree which
solves the problem and hopefuly makes it less likely to become an issue
again.

Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
---
 arch/arm/cpu/entry.c               | 2 +-
 arch/arm/cpu/start.c               | 2 +-
 arch/arm/include/asm/barebox-arm.h | 8 +++++++-
 3 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/arch/arm/cpu/entry.c b/arch/arm/cpu/entry.c
index 0cdcfec..33b1429 100644
--- a/arch/arm/cpu/entry.c
+++ b/arch/arm/cpu/entry.c
@@ -27,7 +27,7 @@
 void __naked __noreturn barebox_arm_entry(unsigned long membase,
 					  unsigned long memsize, void *boarddata)
 {
-	arm_setup_stack(arm_mem_stack(membase, membase + memsize) + STACK_SIZE - 16);
+	arm_setup_stack(arm_mem_stack_top(membase, membase + memsize) - 16);
 	arm_early_mmu_cache_invalidate();
 
 	if (IS_ENABLED(CONFIG_PBL_MULTI_IMAGES))
diff --git a/arch/arm/cpu/start.c b/arch/arm/cpu/start.c
index 0120117..a62b0d5 100644
--- a/arch/arm/cpu/start.c
+++ b/arch/arm/cpu/start.c
@@ -158,7 +158,7 @@ __noreturn void barebox_non_pbl_start(unsigned long membase,
 
 	pr_debug("memory at 0x%08lx, size 0x%08lx\n", membase, memsize);
 
-	arm_stack_top = endmem;
+	arm_stack_top = arm_mem_stack_top(membase, endmem);
 	arm_barebox_size = barebox_size;
 	malloc_end = arm_mem_barebox_image(membase, endmem,
 						arm_barebox_size);
diff --git a/arch/arm/include/asm/barebox-arm.h b/arch/arm/include/asm/barebox-arm.h
index 061296a..e8dfd02 100644
--- a/arch/arm/include/asm/barebox-arm.h
+++ b/arch/arm/include/asm/barebox-arm.h
@@ -94,10 +94,16 @@ static inline void arm_fixup_vectors(void)
 
 void *barebox_arm_boot_dtb(void);
 
+static inline unsigned long arm_mem_stack_top(unsigned long membase,
+					      unsigned long endmem)
+{
+	return endmem - SZ_64K;
+}
+
 static inline unsigned long arm_mem_stack(unsigned long membase,
 					  unsigned long endmem)
 {
-	return endmem - SZ_64K - STACK_SIZE;
+	return arm_mem_stack_top(membase, endmem) - STACK_SIZE;
 }
 
 static inline unsigned long arm_mem_ttb(unsigned long membase,
-- 
2.5.5


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: [PATCH] ARM: Fix a bug in stack's "top" initialization
  2016-12-19  6:05 [PATCH] ARM: Fix a bug in stack's "top" initialization Andrey Smirnov
@ 2017-01-09 10:29 ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2017-01-09 10:29 UTC (permalink / raw)
  To: Andrey Smirnov; +Cc: barebox

On Sun, Dec 18, 2016 at 10:05:52PM -0800, Andrey Smirnov wrote:
> Code-paths responsible for initializing CPU's stack pointer and variable
> used in stack memory resource reservation got out of sync which resulted
> in actual stack being 64K off from what "stack" struct resource
> registered by arm_request_stack() thought it was.
> 
> At least one issue resulting from that can be easily triggered by
> running:
> 
> memtest -t
> 
> This commit unifies the aforementioned code to a certain degree which
> solves the problem and hopefuly makes it less likely to become an issue
> again.
> 
> Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
> ---

Applied, thanks

Sascha

>  arch/arm/cpu/entry.c               | 2 +-
>  arch/arm/cpu/start.c               | 2 +-
>  arch/arm/include/asm/barebox-arm.h | 8 +++++++-
>  3 files changed, 9 insertions(+), 3 deletions(-)
> 
> diff --git a/arch/arm/cpu/entry.c b/arch/arm/cpu/entry.c
> index 0cdcfec..33b1429 100644
> --- a/arch/arm/cpu/entry.c
> +++ b/arch/arm/cpu/entry.c
> @@ -27,7 +27,7 @@
>  void __naked __noreturn barebox_arm_entry(unsigned long membase,
>  					  unsigned long memsize, void *boarddata)
>  {
> -	arm_setup_stack(arm_mem_stack(membase, membase + memsize) + STACK_SIZE - 16);
> +	arm_setup_stack(arm_mem_stack_top(membase, membase + memsize) - 16);
>  	arm_early_mmu_cache_invalidate();
>  
>  	if (IS_ENABLED(CONFIG_PBL_MULTI_IMAGES))
> diff --git a/arch/arm/cpu/start.c b/arch/arm/cpu/start.c
> index 0120117..a62b0d5 100644
> --- a/arch/arm/cpu/start.c
> +++ b/arch/arm/cpu/start.c
> @@ -158,7 +158,7 @@ __noreturn void barebox_non_pbl_start(unsigned long membase,
>  
>  	pr_debug("memory at 0x%08lx, size 0x%08lx\n", membase, memsize);
>  
> -	arm_stack_top = endmem;
> +	arm_stack_top = arm_mem_stack_top(membase, endmem);
>  	arm_barebox_size = barebox_size;
>  	malloc_end = arm_mem_barebox_image(membase, endmem,
>  						arm_barebox_size);
> diff --git a/arch/arm/include/asm/barebox-arm.h b/arch/arm/include/asm/barebox-arm.h
> index 061296a..e8dfd02 100644
> --- a/arch/arm/include/asm/barebox-arm.h
> +++ b/arch/arm/include/asm/barebox-arm.h
> @@ -94,10 +94,16 @@ static inline void arm_fixup_vectors(void)
>  
>  void *barebox_arm_boot_dtb(void);
>  
> +static inline unsigned long arm_mem_stack_top(unsigned long membase,
> +					      unsigned long endmem)
> +{
> +	return endmem - SZ_64K;
> +}
> +
>  static inline unsigned long arm_mem_stack(unsigned long membase,
>  					  unsigned long endmem)
>  {
> -	return endmem - SZ_64K - STACK_SIZE;
> +	return arm_mem_stack_top(membase, endmem) - STACK_SIZE;
>  }
>  
>  static inline unsigned long arm_mem_ttb(unsigned long membase,
> -- 
> 2.5.5
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2017-01-09 10:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-19  6:05 [PATCH] ARM: Fix a bug in stack's "top" initialization Andrey Smirnov
2017-01-09 10:29 ` Sascha Hauer

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