diff options
| author | York Sun <yorksun@freescale.com> | 2011-05-27 13:44:28 +0800 | 
|---|---|---|
| committer | Kumar Gala <galak@kernel.crashing.org> | 2011-07-11 13:24:20 -0500 | 
| commit | 23f9670f1aee936ca468d2d0ddb0f025defde626 (patch) | |
| tree | e105961ef1dd750827d373bda9be7fd23fbafbb6 /arch/powerpc/include/asm/fsl_ddr_sdram.h | |
| parent | 86dda504847e6b05b01a4c37ebbafff4cbf78eac (diff) | |
| download | olio-uboot-2014.01-23f9670f1aee936ca468d2d0ddb0f025defde626.tar.xz olio-uboot-2014.01-23f9670f1aee936ca468d2d0ddb0f025defde626.zip | |
powerpc/mpc8xxx: Allow override DDR read-to-write turnaround time
Add this option to allow boards to override the default read-to-write
turnaround time for better performance.
Signed-off-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'arch/powerpc/include/asm/fsl_ddr_sdram.h')
| -rw-r--r-- | arch/powerpc/include/asm/fsl_ddr_sdram.h | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/arch/powerpc/include/asm/fsl_ddr_sdram.h b/arch/powerpc/include/asm/fsl_ddr_sdram.h index 1778cc56b..bc063ea89 100644 --- a/arch/powerpc/include/asm/fsl_ddr_sdram.h +++ b/arch/powerpc/include/asm/fsl_ddr_sdram.h @@ -271,6 +271,9 @@ typedef struct memctl_options_s {  	unsigned int rcw_2;  	/* control register 1 */  	unsigned int ddr_cdr1; + +	unsigned int trwt_override; +	unsigned int trwt;			/* read-to-write turnaround */  } memctl_options_t;  extern phys_size_t fsl_ddr_sdram(void); |