mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 12:08:19 +00:00 
			
		
		
		
	We have a few places here that the function declarations do not match their prototypes, correct them. Signed-off-by: Ying-Chun Liu (PaulLiu) <paulliu@debian.org> Cc: Tom Rini <trini@konsulko.com> Cc: Stefano Babic <sbabic@denx.de> Cc: Fabio Estevam <festevam@gmail.com> Cc: NXP i.MX U-Boot Team <uboot-imx@nxp.com> Reviewed-by: Tom Rini <trini@konsulko.com> Reported-by: Tom Rini <trini@konsulko.com> Reviewed-by: Fabio Estevam <festevam@gmail.com>
		
			
				
	
	
		
			32 lines
		
	
	
		
			681 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			681 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0+ */
 | |
| /*
 | |
|  * Copyright 2017 NXP
 | |
|  * Copyright 2020 Linaro
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #ifndef __COMPULAB_DDR_H__
 | |
| #define __COMPULAB_DDR_H__
 | |
| 
 | |
| extern struct dram_timing_info ucm_dram_timing_ff020008;
 | |
| extern struct dram_timing_info ucm_dram_timing_ff000110;
 | |
| extern struct dram_timing_info ucm_dram_timing_01061010;
 | |
| 
 | |
| void spl_dram_init_compulab(void);
 | |
| 
 | |
| #define TCM_DATA_CFG 0x7e0000
 | |
| 
 | |
| struct lpddr4_tcm_desc {
 | |
| 	unsigned int size;
 | |
| 	unsigned int sign;
 | |
| 	unsigned int index;
 | |
| 	unsigned int count;
 | |
| };
 | |
| 
 | |
| u32 cl_eeprom_get_ddrinfo(void);
 | |
| u32 cl_eeprom_set_ddrinfo(u32 ddrinfo);
 | |
| u8 cl_eeprom_get_subind(void);
 | |
| u8 cl_eeprom_set_subind(u8 subind);
 | |
| u32 cl_eeprom_get_osize(void);
 | |
| #endif
 |