21 lines
		
	
	
		
			310 B
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			310 B
		
	
	
	
		
			C
		
	
	
	
| // SPDX-License-Identifier: GPL-2.0+
 | |
| /*
 | |
|  * Copyright 2018 NXP
 | |
|  */
 | |
| 
 | |
| #include <common.h>
 | |
| #include <fsl_ddr_sdram.h>
 | |
| #include <fsl_ddr_dimm_params.h>
 | |
| 
 | |
| DECLARE_GLOBAL_DATA_PTR;
 | |
| 
 | |
| int fsl_initdram(void)
 | |
| {
 | |
| 	gd->ram_size = tfa_get_dram_size();
 | |
| 
 | |
| 	if (!gd->ram_size)
 | |
| 		gd->ram_size = fsl_ddr_sdram_size();
 | |
| 
 | |
| 	return 0;
 | |
| }
 |