Merge tag 'u-boot-atmel-fixes-2020.07-a' of https://gitlab.denx.de/u-boot/custodians...
[oweals/u-boot.git] / arch / powerpc / lib / stack.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (c) 2015 Andreas Bießmann <andreas@biessmann.org>
4  *
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>
12  */
13 #include <common.h>
14 #include <init.h>
15
16 DECLARE_GLOBAL_DATA_PTR;
17
18 int arch_reserve_stacks(void)
19 {
20         ulong *s;
21
22         /* setup stack pointer for exceptions */
23         gd->irq_sp = gd->start_addr_sp;
24
25         /* Clear initial stack frame */
26         s = (ulong *)gd->start_addr_sp;
27         *s = 0; /* Terminate back chain */
28         *++s = 0; /* NULL return address */
29
30         return 0;
31 }