blob: 2b21ec0734ef961cc28d0fbcda543b7642a00290 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Andreas Bießmann25429862015-02-06 23:06:45 +01002/*
Andreas Bießmann07dafdb2016-05-01 03:46:16 +02003 * Copyright (c) 2015 Andreas Bießmann <andreas@biessmann.org>
Andreas Bießmann25429862015-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ßmann25429862015-02-06 23:06:45 +010012 */
Simon Glass97589732020-05-10 11:40:02 -060013#include <init.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060014#include <asm/global_data.h>
Andreas Bießmann25429862015-02-06 23:06:45 +010015
16DECLARE_GLOBAL_DATA_PTR;
17
18int 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)
Andreas Bießmann25429862015-02-06 23:06:45 +010028 /* leave 3 words for abort-stack, plus 1 for alignment */
29 gd->start_addr_sp -= 16;
30# endif
31#endif
32
33 return 0;
34}