mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 12:08:19 +00:00 
			
		
		
		
	We can remove common.h from most cases of the code here, and only a few places need an additional header instead. Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Rick Chen <rick@andestech.com>
		
			
				
	
	
		
			26 lines
		
	
	
		
			579 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			579 B
		
	
	
	
		
			C
		
	
	
	
	
	
| // 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 <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));
 | |
| #if !CONFIG_IS_ENABLED(XIP)
 | |
| #ifdef CONFIG_AVAILABLE_HARTS
 | |
| 	DEFINE(GD_AVAILABLE_HARTS, offsetof(gd_t, arch.available_harts));
 | |
| #endif
 | |
| #endif
 | |
| 
 | |
| 	return 0;
 | |
| }
 |