public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Albert ARIBAUD <albert.u.boot@aribaud.net>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 1/2] ARMv8: enable pre-allocation malloc
Date: Fri, 27 Mar 2015 16:35:56 +0100	[thread overview]
Message-ID: <20150327163556.508dee51@lilith> (raw)
In-Reply-To: <1422676529-34859-2-git-send-email-fenghua@phytium.com.cn>

Hello fenghua at phytium.com.cn,

On Sat, 31 Jan 2015 11:55:28 +0800, fenghua at phytium.com.cn <fenghua@phytium.com.cn> wrote:
> From: David Feng <fenghua@phytium.com.cn>
> 
> Allocate memory space for pre-allocation malloc and zero global data.
> This code is partly from crt0.S.
> 
> Signed-off-by: David Feng <fenghua@phytium.com.cn>
> ---
>  arch/arm/include/asm/config.h |    4 ----
>  arch/arm/lib/crt0_64.S        |   13 +++++++++++--
>  2 files changed, 11 insertions(+), 6 deletions(-)
> 
> diff --git a/arch/arm/include/asm/config.h b/arch/arm/include/asm/config.h
> index be80434..7a34a01 100644
> --- a/arch/arm/include/asm/config.h
> +++ b/arch/arm/include/asm/config.h
> @@ -7,10 +7,6 @@
>  #ifndef _ASM_CONFIG_H_
>  #define _ASM_CONFIG_H_
>  
> -#ifdef __aarch64__
> -#define CONFIG_SYS_GENERIC_GLOBAL_DATA
> -#endif
> -
>  #define CONFIG_LMB
>  #define CONFIG_SYS_BOOT_RAMDISK_HIGH
>  
> diff --git a/arch/arm/lib/crt0_64.S b/arch/arm/lib/crt0_64.S
> index 7756396..1654011 100644
> --- a/arch/arm/lib/crt0_64.S
> +++ b/arch/arm/lib/crt0_64.S
> @@ -62,9 +62,18 @@ ENTRY(_main)
>   * Set up initial C runtime environment and call board_init_f(0).
>   */
>  	ldr	x0, =(CONFIG_SYS_INIT_SP_ADDR)
> -	sub	x0, x0, #GD_SIZE	/* allocate one GD above SP */
> +	sub	x18, x0, #GD_SIZE	/* allocate one GD above SP */
> +	bic	x18, x18, #0x7		/* 8-byte alignment for GD */
> +zero_gd:
> +	sub	x0, x0, #0x8
> +	str	xzr, [x0]
> +	cmp	x0, x18
> +	b.gt	zero_gd
> +#if defined(CONFIG_SYS_MALLOC_F_LEN)
> +	sub	x0, x18, #CONFIG_SYS_MALLOC_F_LEN
> +	str	x0, [x18, #GD_MALLOC_BASE]
> +#endif
>  	bic	sp, x0, #0xf	/* 16-byte alignment for ABI compliance */
> -	mov	x18, sp			/* GD is above SP */
>  	mov	x0, #0
>  	bl	board_init_f
>  
> -- 
> 1.7.9.5
> 
> 

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

Amicalement,
-- 
Albert.

      parent reply	other threads:[~2015-03-27 15:35 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-31  3:55 [U-Boot] [PATCH 0/2] ARMv8: driver model enable fenghua at phytium.com.cn
2015-01-31  3:55 ` [U-Boot] [PATCH 1/2] ARMv8: enable pre-allocation malloc fenghua at phytium.com.cn
2015-01-31  3:55   ` [U-Boot] [PATCH 2/2] ARMv8: enable DM in vexpress64 board fenghua at phytium.com.cn
2015-03-27 15:36     ` Albert ARIBAUD
2015-04-13 14:50     ` Linus Walleij
2015-04-13 15:15       ` Tom Rini
2015-04-13 20:58         ` Linus Walleij
2015-04-13 22:26           ` Simon Glass
2015-04-15  8:08             ` Linus Walleij
2015-03-27 15:35   ` Albert ARIBAUD [this message]

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=20150327163556.508dee51@lilith \
    --to=albert.u.boot@aribaud.net \
    --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