Wolfgang Denk | 16a354f | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Adapted from Linux v2.6.36 kernel: arch/powerpc/kernel/asm-offsets.c |
| 3 | * |
| 4 | * This program is used to generate definitions needed by |
| 5 | * assembly language modules. |
| 6 | * |
| 7 | * We use the technique used in the OSF Mach kernel code: |
| 8 | * generate asm statements containing #defines, |
| 9 | * compile this file to assembler, and then extract the |
| 10 | * #defines from the assembly-language output. |
| 11 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 12 | * SPDX-License-Identifier: GPL-2.0+ |
Wolfgang Denk | 16a354f | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #include <common.h> |
| 16 | |
| 17 | #include <linux/kbuild.h> |
| 18 | |
| 19 | int main(void) |
| 20 | { |
Wolfgang Denk | 25ddd1f | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 21 | /* Round up to make sure size gives nice stack alignment */ |
| 22 | DEFINE(GENERATED_GBL_DATA_SIZE, |
Stefan Roese | 0c51c24 | 2011-01-10 12:48:00 +0100 | [diff] [blame] | 23 | (sizeof(struct global_data) + 15) & ~15); |
Wolfgang Denk | 25ddd1f | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 24 | |
Mike Frysinger | 89c95f0 | 2010-12-24 12:57:23 -0500 | [diff] [blame] | 25 | DEFINE(GENERATED_BD_INFO_SIZE, |
Stefan Roese | 0c51c24 | 2011-01-10 12:48:00 +0100 | [diff] [blame] | 26 | (sizeof(struct bd_info) + 15) & ~15); |
Mike Frysinger | 89c95f0 | 2010-12-24 12:57:23 -0500 | [diff] [blame] | 27 | |
Albert ARIBAUD | e05e5de | 2013-01-08 10:18:02 +0000 | [diff] [blame] | 28 | DEFINE(GD_SIZE, sizeof(struct global_data)); |
| 29 | |
| 30 | DEFINE(GD_BD, offsetof(struct global_data, bd)); |
Simon Glass | d59476b | 2014-07-10 22:23:28 -0600 | [diff] [blame] | 31 | #ifdef CONFIG_SYS_MALLOC_F_LEN |
| 32 | DEFINE(GD_MALLOC_BASE, offsetof(struct global_data, malloc_base)); |
| 33 | #endif |
Albert ARIBAUD | e05e5de | 2013-01-08 10:18:02 +0000 | [diff] [blame] | 34 | |
Albert ARIBAUD | e05e5de | 2013-01-08 10:18:02 +0000 | [diff] [blame] | 35 | 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 | |
Wolfgang Denk | 16a354f | 2010-10-26 00:08:35 +0200 | [diff] [blame] | 41 | return 0; |
| 42 | } |