blob: 8f523fd6fb75223cef220a005aa3b79edceb4e26 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Daniel Schwierzeckbd602522016-01-09 18:34:14 +01002
3#include <common.h>
Simon Glass691d7192020-05-10 11:40:02 -06004#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06005#include <log.h>
Daniel Schwierzeckbd602522016-01-09 18:34:14 +01006
7DECLARE_GLOBAL_DATA_PTR;
8
9int arch_reserve_stacks(void)
10{
11 /* reserve space for exception vector table */
12 gd->start_addr_sp -= 0x500;
13 gd->start_addr_sp &= ~0xFFF;
14 gd->irq_sp = gd->start_addr_sp;
15 debug("Reserving %d Bytes for exception vector at: %08lx\n",
16 0x500, gd->start_addr_sp);
17
18 return 0;
19}