2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-01-09 17:34:14 +00:00
|
|
|
|
|
|
|
#include <common.h>
|
2020-05-10 17:40:02 +00:00
|
|
|
#include <init.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <asm/global_data.h>
|
2016-01-09 17:34:14 +00:00
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
|
|
int arch_reserve_stacks(void)
|
|
|
|
{
|
|
|
|
/* reserve space for exception vector table */
|
|
|
|
gd->start_addr_sp -= 0x500;
|
|
|
|
gd->start_addr_sp &= ~0xFFF;
|
|
|
|
gd->irq_sp = gd->start_addr_sp;
|
|
|
|
debug("Reserving %d Bytes for exception vector at: %08lx\n",
|
|
|
|
0x500, gd->start_addr_sp);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|