Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Gabe Black | ef5a5b0 | 2011-11-29 18:05:07 +0000 | [diff] [blame] | 2 | /* |
| 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. |
Gabe Black | ef5a5b0 | 2011-11-29 18:05:07 +0000 | [diff] [blame] | 12 | */ |
| 13 | |
| 14 | #include <common.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 15 | #include <asm/global_data.h> |
Gabe Black | ef5a5b0 | 2011-11-29 18:05:07 +0000 | [diff] [blame] | 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)); |
Park, Aiden | 544293f | 2019-08-03 08:30:12 +0000 | [diff] [blame] | 21 | #ifdef CONFIG_USE_HOB |
Bin Meng | bceb9f0 | 2014-12-12 21:05:31 +0800 | [diff] [blame] | 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 | } |