asm-offsets.c 675 B

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