mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 10:26:10 +01:00 
			
		
		
		
	Because KS2 u-boot works in 32 bit address space the existing ram_size global data field cannot be used. The maximum, which the get_ram_size() can detect is 2GB only. The ft_board_setup() needs the actual ddr3 size to fix up dtb. This commit introduces the ddr3_get_size() which uses SPD data to calculate the ddr3 size. This function replaces the "ddr3_size" environment variable, which was used to get the SODIMM size. For platforms, which don't have SODIMM with SPD and ddr3 is populated to a board a simple ddr3_get_size function that returns ddr3 size has to be implemented. See hardware-k2l.h Signed-off-by: Vitaly Andrianov <vitalya@ti.com> Signed-off-by: Nishanth Menon <nm@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
		
			
				
	
	
		
			72 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * DDR3
 | |
|  *
 | |
|  * (C) Copyright 2014
 | |
|  *     Texas Instruments Incorporated, <www.ti.com>
 | |
|  *
 | |
|  * SPDX-License-Identifier:     GPL-2.0+
 | |
|  */
 | |
| 
 | |
| #ifndef _DDR3_H_
 | |
| #define _DDR3_H_
 | |
| 
 | |
| #include <asm/arch/hardware.h>
 | |
| 
 | |
| struct ddr3_phy_config {
 | |
| 	unsigned int pllcr;
 | |
| 	unsigned int pgcr1_mask;
 | |
| 	unsigned int pgcr1_val;
 | |
| 	unsigned int ptr0;
 | |
| 	unsigned int ptr1;
 | |
| 	unsigned int ptr2;
 | |
| 	unsigned int ptr3;
 | |
| 	unsigned int ptr4;
 | |
| 	unsigned int dcr_mask;
 | |
| 	unsigned int dcr_val;
 | |
| 	unsigned int dtpr0;
 | |
| 	unsigned int dtpr1;
 | |
| 	unsigned int dtpr2;
 | |
| 	unsigned int mr0;
 | |
| 	unsigned int mr1;
 | |
| 	unsigned int mr2;
 | |
| 	unsigned int dtcr;
 | |
| 	unsigned int pgcr2;
 | |
| 	unsigned int zq0cr1;
 | |
| 	unsigned int zq1cr1;
 | |
| 	unsigned int zq2cr1;
 | |
| 	unsigned int pir_v1;
 | |
| 	unsigned int pir_v2;
 | |
| };
 | |
| 
 | |
| struct ddr3_emif_config {
 | |
| 	unsigned int sdcfg;
 | |
| 	unsigned int sdtim1;
 | |
| 	unsigned int sdtim2;
 | |
| 	unsigned int sdtim3;
 | |
| 	unsigned int sdtim4;
 | |
| 	unsigned int zqcfg;
 | |
| 	unsigned int sdrfc;
 | |
| };
 | |
| 
 | |
| struct ddr3_spd_cb {
 | |
| 	char   dimm_name[32];
 | |
| 	struct ddr3_phy_config phy_cfg;
 | |
| 	struct ddr3_emif_config emif_cfg;
 | |
| 	unsigned int ddrspdclock;
 | |
| 	int    ddr_size_gbyte;
 | |
| };
 | |
| 
 | |
| u32 ddr3_init(void);
 | |
| void ddr3_reset_ddrphy(void);
 | |
| void ddr3_init_ecc(u32 base, u32 ddr3_size);
 | |
| void ddr3_disable_ecc(u32 base);
 | |
| void ddr3_check_ecc_int(u32 base);
 | |
| int ddr3_ecc_support_rmw(u32 base);
 | |
| void ddr3_err_reset_workaround(void);
 | |
| void ddr3_enable_ecc(u32 base, int test);
 | |
| void ddr3_init_ddrphy(u32 base, struct ddr3_phy_config *phy_cfg);
 | |
| void ddr3_init_ddremif(u32 base, struct ddr3_emif_config *emif_cfg);
 | |
| int ddr3_get_size(void);
 | |
| 
 | |
| #endif
 |