blob: b6bbcbf76caccd3c540c5659577a81eb9bd4ff3e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Wolfgang Denk81aa2eb2010-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 Denk81aa2eb2010-10-26 00:08:35 +020012 */
13
Simon Glass40d9b242020-05-10 11:40:07 -060014#include <asm-offsets.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060015#include <asm/global_data.h>
Tom Rinia877ce12023-12-14 13:16:58 -050016#include <asm/u-boot.h>
Wolfgang Denk81aa2eb2010-10-26 00:08:35 +020017
18#include <linux/kbuild.h>
19
20int main(void)
21{
Wolfgang Denk0191e472010-10-26 14:34:52 +020022 /* Round up to make sure size gives nice stack alignment */
23 DEFINE(GENERATED_GBL_DATA_SIZE,
Stefan Roese1d798c32011-01-10 12:48:00 +010024 (sizeof(struct global_data) + 15) & ~15);
Wolfgang Denk0191e472010-10-26 14:34:52 +020025
Mike Frysinger860e2cc2010-12-24 12:57:23 -050026 DEFINE(GENERATED_BD_INFO_SIZE,
Stefan Roese1d798c32011-01-10 12:48:00 +010027 (sizeof(struct bd_info) + 15) & ~15);
Mike Frysinger860e2cc2010-12-24 12:57:23 -050028
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000029 DEFINE(GD_SIZE, sizeof(struct global_data));
30
31 DEFINE(GD_BD, offsetof(struct global_data, bd));
Marek Vasut9ecb2662021-11-13 18:34:59 +010032
33 DEFINE(GD_FLAGS, offsetof(struct global_data, flags));
34
Simon Glassadad2d02023-09-26 08:14:27 -060035#if CONFIG_IS_ENABLED(SYS_MALLOC_F)
Simon Glass863e4042014-07-10 22:23:28 -060036 DEFINE(GD_MALLOC_BASE, offsetof(struct global_data, malloc_base));
37#endif
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000038
Albert ARIBAUDfacdae52013-01-08 10:18:02 +000039 DEFINE(GD_RELOCADDR, offsetof(struct global_data, relocaddr));
40
41 DEFINE(GD_RELOC_OFF, offsetof(struct global_data, reloc_off));
42
43 DEFINE(GD_START_ADDR_SP, offsetof(struct global_data, start_addr_sp));
44
zijun_hufc4741f2017-09-22 14:39:13 +080045 DEFINE(GD_NEW_GD, offsetof(struct global_data, new_gd));
46
Simon Glassee8e6a62024-08-21 10:19:25 -060047#if CONFIG_IS_ENABLED(ENV_SUPPORT)
Kunihiko Hayashia11ee782021-06-15 15:33:02 +090048 DEFINE(GD_ENV_ADDR, offsetof(struct global_data, env_addr));
Simon Glassee8e6a62024-08-21 10:19:25 -060049#endif
Kunihiko Hayashia11ee782021-06-15 15:33:02 +090050
Wolfgang Denk81aa2eb2010-10-26 00:08:35 +020051 return 0;
52}