Gabe Black | ef5a5b0 | 2011-11-29 18:05:07 +0000 | [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+ |
Gabe Black | ef5a5b0 | 2011-11-29 18:05:07 +0000 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #include <common.h> |
| 16 | #include <linux/kbuild.h> |
| 17 | |
| 18 | int main(void) |
| 19 | { |
Bin Meng | fe0c33a | 2014-12-12 21:05:22 +0800 | [diff] [blame] | 20 | DEFINE(GD_BIST, offsetof(gd_t, arch.bist)); |
Bin Meng | bceb9f0 | 2014-12-12 21:05:31 +0800 | [diff] [blame] | 21 | #ifdef CONFIG_HAVE_FSP |
| 22 | DEFINE(GD_HOB_LIST, offsetof(gd_t, arch.hob_list)); |
| 23 | #endif |
Simon Glass | 42fde305 | 2015-08-04 12:33:57 -0600 | [diff] [blame] | 24 | DEFINE(GD_TABLE, offsetof(gd_t, arch.table)); |
Gabe Black | ef5a5b0 | 2011-11-29 18:05:07 +0000 | [diff] [blame] | 25 | return 0; |
| 26 | } |