blob: 8546a52f45f991f9357a908632aa794dbcd4d60d [file] [log] [blame]
Wolfgang Denk16a354f2010-10-26 00:08:35 +02001/*
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 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
16 */
17
18#include <common.h>
19
20#include <linux/kbuild.h>
21
22int main(void)
23{
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +020024 /* Round up to make sure size gives nice stack alignment */
25 DEFINE(GENERATED_GBL_DATA_SIZE,
Stefan Roese0c51c242011-01-10 12:48:00 +010026 (sizeof(struct global_data) + 15) & ~15);
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +020027
Mike Frysinger89c95f02010-12-24 12:57:23 -050028 DEFINE(GENERATED_BD_INFO_SIZE,
Stefan Roese0c51c242011-01-10 12:48:00 +010029 (sizeof(struct bd_info) + 15) & ~15);
Mike Frysinger89c95f02010-12-24 12:57:23 -050030
Albert ARIBAUDe05e5de2013-01-08 10:18:02 +000031 DEFINE(GD_SIZE, sizeof(struct global_data));
32
33 DEFINE(GD_BD, offsetof(struct global_data, bd));
34
35#if defined(CONFIG_ARM)
36
37 DEFINE(GD_RELOCADDR, offsetof(struct global_data, relocaddr));
38
39 DEFINE(GD_RELOC_OFF, offsetof(struct global_data, reloc_off));
40
41 DEFINE(GD_START_ADDR_SP, offsetof(struct global_data, start_addr_sp));
42
43#endif
44
Wolfgang Denk16a354f2010-10-26 00:08:35 +020045 return 0;
46}