mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 10:26:10 +01:00 
			
		
		
		
	This syncs drivers/ddr/marvell/a38x/ with the mv_ddr-armada-18.09 branch of https://github.com/MarvellEmbeddedProcessors/mv-ddr-marvell.git. Specifically this syncs with commit 99d772547314 ("Bump mv_ddr to release armada-18.09.2"). The complete log of changes is best obtained from the mv-ddr-marvell.git repository but some relevant highlights are: ddr3: add missing txsdll parameter ddr3: fix tfaw timimg parameter ddr3: fix trrd timimg parameter merge ddr3 topology header file with mv_ddr_topology one mv_ddr: a38x: fix zero memory size scrubbing issue The upstream code is incorporated omitting the portions not relevant to Armada-38x and DDR3. After that a semi-automated step is used to drop unused features with unifdef find drivers/ddr/marvell/a38x/ -name '*.[ch]' | \ xargs unifdef -m -UMV_DDR -UMV_DDR_ATF -UCONFIG_DDR4 \ -UCONFIG_APN806 -UCONFIG_MC_STATIC \ -UCONFIG_MC_STATIC_PRINT -UCONFIG_PHY_STATIC \ -UCONFIG_64BIT -UCONFIG_A3700 -UA3900 -UA80X0 \ -UA70X0 Signed-off-by: Chris Packham <judge.packham@gmail.com> Reviewed-by: Stefan Roese <sr@denx.de> Tested-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Stefan Roese <sr@denx.de>
		
			
				
	
	
		
			121 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			121 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0 */
 | |
| /*
 | |
|  * Copyright (C) Marvell International Ltd. and its affiliates
 | |
|  */
 | |
| 
 | |
| #ifndef _DDR3_TRAINING_IP_FLOW_H_
 | |
| #define _DDR3_TRAINING_IP_FLOW_H_
 | |
| 
 | |
| #include "ddr3_training_ip.h"
 | |
| #include "ddr3_training_ip_db.h"
 | |
| 
 | |
| #define KILLER_PATTERN_LENGTH		32
 | |
| #define EXT_ACCESS_BURST_LENGTH		8
 | |
| 
 | |
| #define ECC_READ_BUS_0			0
 | |
| #define ECC_PHY_ACCESS_3		3
 | |
| #define ECC_PHY_ACCESS_4		4
 | |
| #define ECC_PHY_ACCESS_8		8
 | |
| #define BUS_WIDTH_IN_BITS		8
 | |
| #define MAX_POLLING_ITERATIONS		1000000
 | |
| #define ADLL_LENGTH			32
 | |
| 
 | |
| #define GP_RSVD0_REG			0x182e0
 | |
| 
 | |
| /*
 | |
|  * DFX address Space
 | |
|  * Table 2: DFX address space
 | |
|  * Address Bits   Value   Description
 | |
|  * [31 : 20]   0x? DFX base address bases PCIe mapping
 | |
|  * [19 : 15]   0...Number_of_client-1   Client Index inside pipe.
 | |
|  *             See also Table 1 Multi_cast = 29 Broadcast = 28
 | |
|  * [14 : 13]   2'b01   Access to Client Internal Register
 | |
|  * [12 : 0]   Client Internal Register offset   See related Client Registers
 | |
|  * [14 : 13]   2'b00   Access to Ram Wrappers Internal Register
 | |
|  * [12 : 6]   0 Number_of_rams-1   Ram Index inside Client
 | |
|  * [5 : 0]   Ram Wrapper Internal Register offset   See related Ram Wrappers
 | |
|  * Registers
 | |
|  */
 | |
| 
 | |
| /* nsec */
 | |
| #define AUTO_ZQC_TIMING				15384
 | |
| 
 | |
| enum mr_number {
 | |
| 	MR_CMD0,
 | |
| 	MR_CMD1,
 | |
| 	MR_CMD2,
 | |
| 	MR_CMD3,
 | |
| 	MR_LAST
 | |
| };
 | |
| 
 | |
| struct mv_ddr_mr_data {
 | |
| 	u32 cmd;
 | |
| 	u32 reg_addr;
 | |
| };
 | |
| 
 | |
| struct write_supp_result {
 | |
| 	enum hws_wl_supp stage;
 | |
| 	int is_pup_fail;
 | |
| };
 | |
| 
 | |
| int ddr3_tip_write_leveling_static_config(u32 dev_num, u32 if_id,
 | |
| 					  enum mv_ddr_freq frequency,
 | |
| 					  u32 *round_trip_delay_arr);
 | |
| int ddr3_tip_read_leveling_static_config(u32 dev_num, u32 if_id,
 | |
| 					 enum mv_ddr_freq frequency,
 | |
| 					 u32 *total_round_trip_delay_arr);
 | |
| int ddr3_tip_if_write(u32 dev_num, enum hws_access_type interface_access,
 | |
| 		      u32 if_id, u32 reg_addr, u32 data_value, u32 mask);
 | |
| int ddr3_tip_if_polling(u32 dev_num, enum hws_access_type access_type,
 | |
| 			u32 if_id, u32 exp_value, u32 mask, u32 offset,
 | |
| 			u32 poll_tries);
 | |
| int ddr3_tip_if_read(u32 dev_num, enum hws_access_type interface_access,
 | |
| 		     u32 if_id, u32 reg_addr, u32 *data, u32 mask);
 | |
| int ddr3_tip_bus_read_modify_write(u32 dev_num,
 | |
| 				   enum hws_access_type access_type,
 | |
| 				   u32 if_id, u32 phy_id,
 | |
| 				   enum hws_ddr_phy phy_type,
 | |
| 				   u32 reg_addr, u32 data_value, u32 reg_mask);
 | |
| int ddr3_tip_bus_read(u32 dev_num, u32 if_id, enum hws_access_type phy_access,
 | |
| 		      u32 phy_id, enum hws_ddr_phy phy_type, u32 reg_addr,
 | |
| 		      u32 *data);
 | |
| int ddr3_tip_bus_write(u32 dev_num, enum hws_access_type e_interface_access,
 | |
| 		       u32 if_id, enum hws_access_type e_phy_access, u32 phy_id,
 | |
| 		       enum hws_ddr_phy e_phy_type, u32 reg_addr,
 | |
| 		       u32 data_value);
 | |
| int ddr3_tip_freq_set(u32 dev_num, enum hws_access_type e_access, u32 if_id,
 | |
| 		      enum mv_ddr_freq memory_freq);
 | |
| int ddr3_tip_adjust_dqs(u32 dev_num);
 | |
| int ddr3_tip_init_controller(u32 dev_num);
 | |
| int ddr3_tip_ext_read(u32 dev_num, u32 if_id, u32 reg_addr,
 | |
| 		      u32 num_of_bursts, u32 *addr);
 | |
| int ddr3_tip_ext_write(u32 dev_num, u32 if_id, u32 reg_addr,
 | |
| 		       u32 num_of_bursts, u32 *addr);
 | |
| int ddr3_tip_dynamic_read_leveling(u32 dev_num, u32 ui_freq);
 | |
| int mv_ddr_rl_dqs_burst(u32 dev_num, u32 if_id, u32 freq);
 | |
| int ddr3_tip_legacy_dynamic_read_leveling(u32 dev_num);
 | |
| int ddr3_tip_dynamic_per_bit_read_leveling(u32 dev_num, u32 ui_freq);
 | |
| int ddr3_tip_legacy_dynamic_write_leveling(u32 dev_num);
 | |
| int ddr3_tip_dynamic_write_leveling(u32 dev_num, int phase_remove);
 | |
| int ddr3_tip_dynamic_write_leveling_supp(u32 dev_num);
 | |
| int ddr3_tip_static_init_controller(u32 dev_num);
 | |
| int ddr3_tip_configure_phy(u32 dev_num);
 | |
| int ddr3_tip_load_pattern_to_odpg(u32 dev_num, enum hws_access_type access_type,
 | |
| 				  u32 if_id, enum hws_pattern pattern,
 | |
| 				  u32 load_addr);
 | |
| int ddr3_tip_load_pattern_to_mem(u32 dev_num, enum hws_pattern e_pattern);
 | |
| int ddr3_tip_configure_odpg(u32 dev_num, enum hws_access_type access_type,
 | |
| 			    u32 if_id, enum hws_dir direction, u32 tx_phases,
 | |
| 			    u32 tx_burst_size, u32 rx_phases,
 | |
| 			    u32 delay_between_burst, u32 rd_mode, u32 cs_num,
 | |
| 			    u32 addr_stress_jump, u32 single_pattern);
 | |
| int ddr3_tip_write_mrs_cmd(u32 dev_num, u32 *cs_mask_arr, enum mr_number mr_num, u32 data, u32 mask);
 | |
| int ddr3_tip_write_cs_result(u32 dev_num, u32 offset);
 | |
| int ddr3_tip_reset_fifo_ptr(u32 dev_num);
 | |
| int ddr3_tip_read_pup_value(u32 dev_num, u32 pup_values[], int reg_addr, u32 mask);
 | |
| int ddr3_tip_read_adll_value(u32 dev_num, u32 pup_values[], u32 reg_addr, u32 mask);
 | |
| int ddr3_tip_write_adll_value(u32 dev_num, u32 pup_values[], u32 reg_addr);
 | |
| int ddr3_tip_tune_training_params(u32 dev_num, struct tune_train_params *params);
 | |
| 
 | |
| #endif /* _DDR3_TRAINING_IP_FLOW_H_ */
 |