mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	Add arch_cpu_init(_dm) mainly to open the channel between ACore and SCU. Signed-off-by: Peng Fan <peng.fan@nxp.com> Reviewed-by: Anatolij Gustschin <agust@denx.de> Cc: Stefano Babic <sbabic@denx.de>
		
			
				
	
	
		
			20 lines
		
	
	
		
			337 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			337 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0+ */
 | 
						|
/*
 | 
						|
 * Copyright 2018 NXP
 | 
						|
 */
 | 
						|
 | 
						|
#include <asm/mach-imx/sys_proto.h>
 | 
						|
#include <linux/types.h>
 | 
						|
 | 
						|
struct pass_over_info_t {
 | 
						|
	u16 barker;
 | 
						|
	u16 len;
 | 
						|
	u32 g_bt_cfg_shadow;
 | 
						|
	u32 card_address_mode;
 | 
						|
	u32 bad_block_count_met;
 | 
						|
	u32 g_ap_mu;
 | 
						|
};
 | 
						|
 | 
						|
enum boot_device get_boot_device(void);
 | 
						|
int print_bootinfo(void);
 |