Bin Meng | 51ab457 | 2018-12-12 06:12:45 -0800 | [diff] [blame] | 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 | |
| 14 | int main(void) |
| 15 | { |
| 16 | DEFINE(GD_BOOT_HART, offsetof(gd_t, arch.boot_hart)); |
Atish Patra | d4ea649 | 2020-04-21 11:15:01 -0700 | [diff] [blame] | 17 | DEFINE(GD_FIRMWARE_FDT_ADDR, offsetof(gd_t, arch.firmware_fdt_addr)); |
Rick Chen | bdce389 | 2019-04-30 13:49:33 +0800 | [diff] [blame] | 18 | #ifndef CONFIG_XIP |
Lukas Auer | 3dea63c | 2019-03-17 19:28:37 +0100 | [diff] [blame] | 19 | DEFINE(GD_AVAILABLE_HARTS, offsetof(gd_t, arch.available_harts)); |
Rick Chen | bdce389 | 2019-04-30 13:49:33 +0800 | [diff] [blame] | 20 | #endif |
Bin Meng | 51ab457 | 2018-12-12 06:12:45 -0800 | [diff] [blame] | 21 | |
| 22 | return 0; |
| 23 | } |