public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Tom <Tom.Rix@windriver.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3] arm926ejs: 8-byte align stack to avoid LDRD/STRD problems
Date: Sat, 17 Oct 2009 21:15:04 -0500	[thread overview]
Message-ID: <4ADA7A28.1060707@windriver.com> (raw)
In-Reply-To: <20091006084422.3ba8b5c8@marrow.netinsight.se>

Simon Kagstrom wrote:
> U-boot for Marvell Kirkwood boards no longer work after the EABI changes
> introduced in commit f772acf8a584067033eff1e231fcd1fb3a00d3d9. This
> turns out to be caused by a stack alignment issue. The armv5te
> instructions ldrd/strd instructions require 8-byte alignment to work
> properly (otherwise undefined behavior).
> 
> Tested on an OpenRD base board, where both printouts and ubifs stuff now
> works.
> 
> Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>

I have committed this to arm/master-sync
Tom

> ---
> ChangeLog:
>  v2: Update after Andrews comments
>    * Mask away the low address bits to get 16-byte alignment
>  v3: Update after Andrews and M?ns comments
>    * Use bic instruction to clear low address bits (I'm a ARM asm newbie as
>      you can see)
>    * Update description to actually match the code
> 
> Thanks again for all the comments!
> 
>  cpu/arm926ejs/start.S |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/cpu/arm926ejs/start.S b/cpu/arm926ejs/start.S
> index 8043322..4421b6a 100644
> --- a/cpu/arm926ejs/start.S
> +++ b/cpu/arm926ejs/start.S
> @@ -172,6 +172,7 @@ stack_setup:
>  	sub	r0, r0, #(CONFIG_STACKSIZE_IRQ+CONFIG_STACKSIZE_FIQ)
>  #endif
>  	sub	sp, r0, #12		/* leave 3 words for abort-stack    */
> +	bic	sp, r0, #7		/* 8-byte align stack for ABI compliance */
>  
>  clear_bss:
>  	ldr	r0, _bss_start		/* find start of bss segment        */

  parent reply	other threads:[~2009-10-18  2:15 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-09-29 13:55 [U-Boot] kirkwood (openrd): saveenv will not work with environment in NAND Dieter Kiermaier
2009-09-29 15:16 ` Dieter Kiermaier
2009-09-30  6:21   ` Simon Kagstrom
2009-09-30  7:02     ` Dieter Kiermaier
2009-09-30  7:08       ` Simon Kagstrom
2009-09-30  7:40         ` Dieter Kiermaier
2009-09-30  7:57           ` Simon Kagstrom
2009-09-30  8:15             ` Dieter Kiermaier
2009-09-30  8:17               ` Simon Kagstrom
2009-09-30  8:25                 ` Dieter Kiermaier
2009-09-30  9:28                   ` [U-Boot] Flash sanity checks Prafulla Wadaskar
2009-09-30  9:58                     ` Dieter Kiermaier
2009-09-30 12:19                       ` Stefan Roese
2009-10-06 17:16                   ` [U-Boot] kirkwood (openrd): saveenv will not work with environment in NAND Prafulla Wadaskar
2009-09-30 20:32             ` Wolfgang Denk
2009-10-01  7:29               ` [U-Boot] [PATCH] Make arm926ejs use -mabi=apcs-gnu to avoid EABI problems Simon Kagstrom
2009-10-01  9:56                 ` Prafulla Wadaskar
2009-10-01 18:27                   ` Wolfgang Denk
2009-10-02 14:44                     ` Simon Kagstrom
2009-10-05 13:23                     ` [U-Boot] [PATCH] arm926ejs: 16-byte align stack to avoid LDRD/STRD problems Simon Kagstrom
2009-10-05 14:30                       ` Andrew Dyer
2009-10-05 14:35                         ` Stefan Roese
2009-10-05 14:53                           ` [U-Boot] [PATCH v2] " Simon Kagstrom
2009-10-05 15:44                             ` Dieter Kiermaier
2009-10-05 18:37                             ` Tom
2009-10-06  7:07                               ` Simon Kagstrom
2009-10-05 22:07                             ` Måns Rullgård
2009-10-06  4:13                             ` Prafulla Wadaskar
2009-10-06  6:44                             ` [U-Boot] [PATCH v3] arm926ejs: 8-byte " Simon Kagstrom
2009-10-06 16:50                               ` Tom
2009-10-18  2:15                               ` Tom [this message]
2009-10-05 14:40                         ` [U-Boot] [PATCH] arm926ejs: 16-byte " Simon Kagstrom

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4ADA7A28.1060707@windriver.com \
    --to=tom.rix@windriver.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox