diff options
Diffstat (limited to 'roms/u-boot/arch/riscv/lib/asm-offsets.c')
-rw-r--r-- | roms/u-boot/arch/riscv/lib/asm-offsets.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/roms/u-boot/arch/riscv/lib/asm-offsets.c b/roms/u-boot/arch/riscv/lib/asm-offsets.c new file mode 100644 index 000000000..f1fe089b3 --- /dev/null +++ b/roms/u-boot/arch/riscv/lib/asm-offsets.c @@ -0,0 +1,24 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com> + * + * From arch/x86/lib/asm-offsets.c + * + * This program is used to generate definitions needed by + * assembly language modules. + */ + +#include <common.h> +#include <asm/global_data.h> +#include <linux/kbuild.h> + +int main(void) +{ + DEFINE(GD_BOOT_HART, offsetof(gd_t, arch.boot_hart)); + DEFINE(GD_FIRMWARE_FDT_ADDR, offsetof(gd_t, arch.firmware_fdt_addr)); +#ifndef CONFIG_XIP + DEFINE(GD_AVAILABLE_HARTS, offsetof(gd_t, arch.available_harts)); +#endif + + return 0; +} |