mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 14:00:19 +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>
		
			
				
	
	
		
			40 lines
		
	
	
		
			907 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			907 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0+ */
 | 
						|
/*
 | 
						|
 * (C) Copyright 2002
 | 
						|
 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 | 
						|
 *
 | 
						|
 * Copyright (c) 2017 Microsemi Corporation.
 | 
						|
 * Padmarao Begari, Microsemi Corporation <padmarao.begari@microsemi.com>
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef	__ASM_GBL_DATA_H
 | 
						|
#define __ASM_GBL_DATA_H
 | 
						|
 | 
						|
#include <asm/smp.h>
 | 
						|
 | 
						|
/* Architecture-specific global data */
 | 
						|
struct arch_global_data {
 | 
						|
	long boot_hart;		/* boot hart id */
 | 
						|
#ifdef CONFIG_SIFIVE_CLINT
 | 
						|
	void __iomem *clint;	/* clint base address */
 | 
						|
#endif
 | 
						|
#ifdef CONFIG_ANDES_PLIC
 | 
						|
	void __iomem *plic;	/* plic base address */
 | 
						|
#endif
 | 
						|
#ifdef CONFIG_ANDES_PLMT
 | 
						|
	void __iomem *plmt;	/* plmt base address */
 | 
						|
#endif
 | 
						|
#ifdef CONFIG_SMP
 | 
						|
	struct ipi_data ipi[CONFIG_NR_CPUS];
 | 
						|
#endif
 | 
						|
#ifndef CONFIG_XIP
 | 
						|
	ulong available_harts;
 | 
						|
#endif
 | 
						|
};
 | 
						|
 | 
						|
#include <asm-generic/global_data.h>
 | 
						|
 | 
						|
#define DECLARE_GLOBAL_DATA_PTR register gd_t *gd asm ("gp")
 | 
						|
 | 
						|
#endif /* __ASM_GBL_DATA_H */
 |