Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Andreas Bießmann | 68145d4 | 2015-02-06 23:06:45 +0100 | [diff] [blame] | 2 | /* |
Andreas Bießmann | 09c2b8f | 2016-05-01 03:46:16 +0200 | [diff] [blame] | 3 | * Copyright (c) 2015 Andreas Bießmann <andreas@biessmann.org> |
Andreas Bießmann | 68145d4 | 2015-02-06 23:06:45 +0100 | [diff] [blame] | 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> |
Andreas Bießmann | 68145d4 | 2015-02-06 23:06:45 +0100 | [diff] [blame] | 12 | */ |
| 13 | #include <common.h> |
| 14 | |
| 15 | DECLARE_GLOBAL_DATA_PTR; |
| 16 | |
| 17 | int arch_reserve_stacks(void) |
| 18 | { |
| 19 | ulong *s; |
| 20 | |
| 21 | /* setup stack pointer for exceptions */ |
| 22 | gd->irq_sp = gd->start_addr_sp; |
| 23 | |
| 24 | /* Clear initial stack frame */ |
| 25 | s = (ulong *)gd->start_addr_sp; |
| 26 | *s = 0; /* Terminate back chain */ |
| 27 | *++s = 0; /* NULL return address */ |
| 28 | |
| 29 | return 0; |
| 30 | } |