mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	When U-Boot boots from flash, during the boot process, hart_lottery and available_harts_lock variable addresses point to flash which is not writable. This causes boot failures on AE350. Introduce a config option CONFIG_XIP to support such configuration. Signed-off-by: Rick Chen <rick@andestech.com> Cc: Greentime Hu <greentime@andestech.com> Reviewed-by: Lukas Auer <lukas.auer@aisec.fraunhofer.de> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
		
			
				
	
	
		
			23 lines
		
	
	
		
			453 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			453 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 <common.h>
 | 
						|
#include <linux/kbuild.h>
 | 
						|
 | 
						|
int main(void)
 | 
						|
{
 | 
						|
	DEFINE(GD_BOOT_HART, offsetof(gd_t, arch.boot_hart));
 | 
						|
#ifndef CONFIG_XIP
 | 
						|
	DEFINE(GD_AVAILABLE_HARTS, offsetof(gd_t, arch.available_harts));
 | 
						|
#endif
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 |