mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 14:00:19 +00:00 
			
		
		
		
	Pull common.c into common subdirectory of the board file, since this code can be reused by other Data Modul SBCs. Drop the include of lpddr4_timing.h, which is unneeded. Signed-off-by: Marek Vasut <marex@denx.de>
		
			
				
	
	
		
			19 lines
		
	
	
		
			451 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			451 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0+ */
 | 
						|
/*
 | 
						|
 * Copyright 2022 Marek Vasut <marex@denx.de>
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __EDM_SBC_COMMON_H__
 | 
						|
#define __EDM_SBC_COMMON_H__
 | 
						|
 | 
						|
#include <asm/arch/ddr.h>
 | 
						|
#include <asm/mach-imx/iomux-v3.h>
 | 
						|
 | 
						|
u8 dmo_get_memcfg(void);
 | 
						|
void dmo_board_init_f(const iomux_v3_cfg_t wdog_pad,
 | 
						|
		      struct dram_timing_info *dram_timing_info[8]);
 | 
						|
void dmo_setup_boot_device(void);
 | 
						|
void dmo_setup_mac_address(void);
 | 
						|
 | 
						|
#endif /* __EDM_SBC_COMMON_H__ */
 |