2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2010-10-25 22:08:35 +00:00
|
|
|
/*
|
|
|
|
* Adapted from Linux v2.6.36 kernel: arch/powerpc/kernel/asm-offsets.c
|
|
|
|
*
|
|
|
|
* This program is used to generate definitions needed by
|
|
|
|
* assembly language modules.
|
|
|
|
*
|
|
|
|
* We use the technique used in the OSF Mach kernel code:
|
|
|
|
* generate asm statements containing #defines,
|
|
|
|
* compile this file to assembler, and then extract the
|
|
|
|
* #defines from the assembly-language output.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2020-05-10 17:40:07 +00:00
|
|
|
#include <asm-offsets.h>
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <asm/global_data.h>
|
2010-10-25 22:08:35 +00:00
|
|
|
|
|
|
|
#include <linux/kbuild.h>
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
2010-10-26 12:34:52 +00:00
|
|
|
/* Round up to make sure size gives nice stack alignment */
|
|
|
|
DEFINE(GENERATED_GBL_DATA_SIZE,
|
2011-01-10 11:48:00 +00:00
|
|
|
(sizeof(struct global_data) + 15) & ~15);
|
2010-10-26 12:34:52 +00:00
|
|
|
|
2010-12-24 17:57:23 +00:00
|
|
|
DEFINE(GENERATED_BD_INFO_SIZE,
|
2011-01-10 11:48:00 +00:00
|
|
|
(sizeof(struct bd_info) + 15) & ~15);
|
2010-12-24 17:57:23 +00:00
|
|
|
|
2013-01-08 10:18:02 +00:00
|
|
|
DEFINE(GD_SIZE, sizeof(struct global_data));
|
|
|
|
|
|
|
|
DEFINE(GD_BD, offsetof(struct global_data, bd));
|
2017-07-24 09:43:34 +00:00
|
|
|
#if CONFIG_VAL(SYS_MALLOC_F_LEN)
|
2014-07-11 04:23:28 +00:00
|
|
|
DEFINE(GD_MALLOC_BASE, offsetof(struct global_data, malloc_base));
|
|
|
|
#endif
|
2013-01-08 10:18:02 +00:00
|
|
|
|
|
|
|
DEFINE(GD_RELOCADDR, offsetof(struct global_data, relocaddr));
|
|
|
|
|
|
|
|
DEFINE(GD_RELOC_OFF, offsetof(struct global_data, reloc_off));
|
|
|
|
|
|
|
|
DEFINE(GD_START_ADDR_SP, offsetof(struct global_data, start_addr_sp));
|
|
|
|
|
2017-09-22 06:39:13 +00:00
|
|
|
DEFINE(GD_NEW_GD, offsetof(struct global_data, new_gd));
|
|
|
|
|
2010-10-25 22:08:35 +00:00
|
|
|
return 0;
|
|
|
|
}
|