xref: /OK3568_Linux_fs/u-boot/arch/arm/lib/stack.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 /*
2  * Copyright (c) 2015 Andreas Bießmann <andreas@biessmann.org>
3  *
4  * Copyright (c) 2011 The Chromium OS Authors.
5  * (C) Copyright 2002-2006
6  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7  *
8  * (C) Copyright 2002
9  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
10  * Marius Groeger <mgroeger@sysgo.de>
11  *
12  * SPDX-License-Identifier:	GPL-2.0+
13  */
14 #include <common.h>
15 
16 DECLARE_GLOBAL_DATA_PTR;
17 
arch_reserve_stacks(void)18 int arch_reserve_stacks(void)
19 {
20 #ifdef CONFIG_SPL_BUILD
21 	gd->start_addr_sp -= 128;	/* leave 32 words for abort-stack */
22 	gd->irq_sp = gd->start_addr_sp;
23 #else
24 	/* setup stack pointer for exceptions */
25 	gd->irq_sp = gd->start_addr_sp;
26 
27 # if !defined(CONFIG_ARM64)
28 #if CONFIG_IS_ENABLED(IRQ)
29 #ifndef CONFIG_IRQ_STACK_SIZE
30 #define CONFIG_IRQ_STACK_SIZE	8192
31 #endif
32 	gd->start_addr_sp -= CONFIG_IRQ_STACK_SIZE;
33 
34 #else
35 	/* leave 3 words for abort-stack, plus 1 for alignment */
36 	gd->start_addr_sp -= 16;
37 #endif
38 # endif
39 #endif
40 
41 	return 0;
42 }
43