asm-offsets.c 671 B

12345678910111213141516171819202122232425
  1. // SPDX-License-Identifier: GPL-2.0+
  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.
  12. */
  13. #include <common.h>
  14. #include <linux/kbuild.h>
  15. int main(void)
  16. {
  17. DEFINE(GD_BIST, offsetof(gd_t, arch.bist));
  18. #ifdef CONFIG_USE_HOB
  19. DEFINE(GD_HOB_LIST, offsetof(gd_t, arch.hob_list));
  20. #endif
  21. DEFINE(GD_TABLE, offsetof(gd_t, arch.table));
  22. return 0;
  23. }