blob: b17651ed63d81f87cf1e902d9a0a3aec3064a1b4 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Wolfgang Denk16a354f2010-10-26 00:08:35 +02002/*
3 * Adapted from Linux v2.6.36 kernel: arch/powerpc/kernel/asm-offsets.c
4 *
5 * This program is used to generate definitions needed by
6 * assembly language modules.
7 *
8 * We use the technique used in the OSF Mach kernel code:
9 * generate asm statements containing #defines,
10 * compile this file to assembler, and then extract the
11 * #defines from the assembly-language output.
Wolfgang Denk16a354f2010-10-26 00:08:35 +020012 */
13
14#include <common.h>
Simon Glass8ad92112020-05-10 11:40:07 -060015#include <asm-offsets.h>
Wolfgang Denk16a354f2010-10-26 00:08:35 +020016
17#include <linux/kbuild.h>
18
19int main(void)
20{
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +020021 /* Round up to make sure size gives nice stack alignment */
22 DEFINE(GENERATED_GBL_DATA_SIZE,
Stefan Roese0c51c242011-01-10 12:48:00 +010023 (sizeof(struct global_data) + 15) & ~15);
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +020024
Mike Frysinger89c95f02010-12-24 12:57:23 -050025 DEFINE(GENERATED_BD_INFO_SIZE,
Stefan Roese0c51c242011-01-10 12:48:00 +010026 (sizeof(struct bd_info) + 15) & ~15);
Mike Frysinger89c95f02010-12-24 12:57:23 -050027
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000028 DEFINE(GD_SIZE, sizeof(struct global_data));
29
30 DEFINE(GD_BD, offsetof(struct global_data, bd));
Andy Yanf1896c42017-07-24 17:43:34 +080031#if CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glassd59476b2014-07-10 22:23:28 -060032 DEFINE(GD_MALLOC_BASE, offsetof(struct global_data, malloc_base));
33#endif
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000034
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000035 DEFINE(GD_RELOCADDR, offsetof(struct global_data, relocaddr));
36
37 DEFINE(GD_RELOC_OFF, offsetof(struct global_data, reloc_off));
38
39 DEFINE(GD_START_ADDR_SP, offsetof(struct global_data, start_addr_sp));
40
zijun_hu01a83592017-09-22 14:39:13 +080041 DEFINE(GD_NEW_GD, offsetof(struct global_data, new_gd));
42
Wolfgang Denk16a354f2010-10-26 00:08:35 +020043 return 0;
44}