mirror of
				https://github.com/riscv-software-src/opensbi
				synced 2025-11-04 05:50:22 +00:00 
			
		
		
		
	Instead of having separate early_init() and final_init() hooks for cold and warm boot, this patch updates struct sbi_platform to have just one early_init() and one final_init() hook. The type of boot (cold or warm) is now a boolean flag parameter for the updated early_init() and final_init() hooks. Signed-off-by: Anup Patel <anup.patel@wdc.com>
		
			
				
	
	
		
			42 lines
		
	
	
		
			978 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			978 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2018 Western Digital Corporation or its affiliates.
 | 
						|
 *
 | 
						|
 * Authors:
 | 
						|
 *   Anup Patel <anup.patel@wdc.com>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#include <sbi/sbi_hart.h>
 | 
						|
#include <sbi/sbi_platform.h>
 | 
						|
#include <sbi/sbi_system.h>
 | 
						|
 | 
						|
int sbi_system_early_init(struct sbi_scratch *scratch, u32 hartid,
 | 
						|
			  bool cold_boot)
 | 
						|
{
 | 
						|
	return sbi_platform_early_init(sbi_platform_ptr(scratch),
 | 
						|
					hartid, cold_boot);
 | 
						|
}
 | 
						|
 | 
						|
int sbi_system_final_init(struct sbi_scratch *scratch, u32 hartid,
 | 
						|
			  bool cold_boot)
 | 
						|
{
 | 
						|
	return sbi_platform_final_init(sbi_platform_ptr(scratch),
 | 
						|
					hartid, cold_boot);
 | 
						|
}
 | 
						|
 | 
						|
void __attribute__((noreturn)) sbi_system_reboot(struct sbi_scratch *scratch,
 | 
						|
						 u32 type)
 | 
						|
 | 
						|
{
 | 
						|
	sbi_platform_system_reboot(sbi_platform_ptr(scratch), type);
 | 
						|
	sbi_hart_hang();
 | 
						|
}
 | 
						|
 | 
						|
void __attribute__((noreturn)) sbi_system_shutdown(struct sbi_scratch *scratch,
 | 
						|
						   u32 type)
 | 
						|
{
 | 
						|
	sbi_platform_system_shutdown(sbi_platform_ptr(scratch), type);
 | 
						|
	sbi_hart_hang();
 | 
						|
}
 |