blob: 7346876dc21a486b4ea2e07fbb603c1e5b57c115 [file] [log] [blame]
Philipp Tomsichc2448712017-03-15 12:08:44 +01001/*
2 * Copyright 2017 Theobroma Systems Design und Consulting GmbH
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7/*
8 * Execution starts on the instruction following this 4-byte header
9 * (containing the magic 'RK33').
10 *
11 * To make life easier for everyone, we build the SPL binary with
12 * space for this 4-byte header already included in the binary.
13 */
14
15#ifdef CONFIG_SPL_BUILD
16 .space 0x4 /* space for the 'RK33' */
17#endif
18 b reset
Kever Yange484f772017-04-20 17:03:46 +080019
20#if defined(CONFIG_ROCKCHIP_RK3399) && defined(CONFIG_SPL_BUILD)
21 .space CONFIG_ROCKCHIP_SPL_RESERVE_IRAM /* space for the ATF data */
22#endif