blob: b03e1cfc80c9eabaf3712fce3ddaad693cd81fcf [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Andreas Bießmann68145d42015-02-06 23:06:45 +01002/*
Andreas Bießmann09c2b8f2016-05-01 03:46:16 +02003 * Copyright (c) 2015 Andreas Bießmann <andreas@biessmann.org>
Andreas Bießmann68145d42015-02-06 23:06:45 +01004 *
5 * Copyright (c) 2011 The Chromium OS Authors.
6 * (C) Copyright 2002-2006
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 *
9 * (C) Copyright 2002
10 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
11 * Marius Groeger <mgroeger@sysgo.de>
Andreas Bießmann68145d42015-02-06 23:06:45 +010012 */
13#include <common.h>
Simon Glass691d7192020-05-10 11:40:02 -060014#include <init.h>
Simon Glass401d1c42020-10-30 21:38:53 -060015#include <asm/global_data.h>
Andreas Bießmann68145d42015-02-06 23:06:45 +010016
17DECLARE_GLOBAL_DATA_PTR;
18
19int arch_reserve_stacks(void)
20{
21#ifdef CONFIG_SPL_BUILD
22 gd->start_addr_sp -= 128; /* leave 32 words for abort-stack */
23 gd->irq_sp = gd->start_addr_sp;
24#else
25 /* setup stack pointer for exceptions */
26 gd->irq_sp = gd->start_addr_sp;
27
28# if !defined(CONFIG_ARM64)
Andreas Bießmann68145d42015-02-06 23:06:45 +010029 /* leave 3 words for abort-stack, plus 1 for alignment */
30 gd->start_addr_sp -= 16;
31# endif
32#endif
33
34 return 0;
35}