blob: afd869e4ac30fb64e6483c3adf4c97da21a5f10b [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>
Ovidiu Panaitbbce5f32022-09-13 21:31:28 +030015#include <asm/mp.h>
Andreas Bießmann25429862015-02-06 23:06:45 +010016
17DECLARE_GLOBAL_DATA_PTR;
18
19int arch_reserve_stacks(void)
20{
21 ulong *s;
22
23 /* setup stack pointer for exceptions */
24 gd->irq_sp = gd->start_addr_sp;
25
26 /* Clear initial stack frame */
27 s = (ulong *)gd->start_addr_sp;
28 *s = 0; /* Terminate back chain */
29 *++s = 0; /* NULL return address */
30
31 return 0;
32}
Ovidiu Panaitbbce5f32022-09-13 21:31:28 +030033
34int arch_setup_dest_addr(void)
35{
36#if defined(CONFIG_MP) && (defined(CONFIG_MPC86xx) || defined(CONFIG_E500))
37 /*
38 * We need to make sure the location we intend to put secondary core
39 * boot code is reserved and not used by any part of u-boot
40 */
41 if (gd->relocaddr > determine_mp_bootpg(NULL)) {
42 gd->relocaddr = determine_mp_bootpg(NULL);
43 debug("Reserving MP boot page to %08lx\n", gd->relocaddr);
44 }
45#endif
46
47 return 0;
48}