• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
4  *
5  * From arch/x86/lib/asm-offsets.c
6  *
7  * This program is used to generate definitions needed by
8  * assembly language modules.
9  */
10 
11 #include <common.h>
12 #include <linux/kbuild.h>
13 
main(void)14 int main(void)
15 {
16 	DEFINE(GD_BOOT_HART, offsetof(gd_t, arch.boot_hart));
17 #ifndef CONFIG_XIP
18 	DEFINE(GD_AVAILABLE_HARTS, offsetof(gd_t, arch.available_harts));
19 #endif
20 
21 	return 0;
22 }
23