mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 07:31:15 +00:00
armv7:ls1021a: Enable workaround for DDR erratum A-009942
Signed-off-by: Shengzhou Liu <Shengzhou.Liu@nxp.com> Reviewed-by: York Sun <york.sun@nxp.com>
This commit is contained in:
parent
214ffae02d
commit
93a6d3284c
2 changed files with 7 additions and 1 deletions
|
@ -131,6 +131,7 @@
|
|||
#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
|
||||
#define CONFIG_SYS_FSL_ERRATUM_A008378
|
||||
#define CONFIG_SYS_FSL_ERRATUM_A009663
|
||||
#define CONFIG_SYS_FSL_ERRATUM_A009942
|
||||
#define CONFIG_SYS_FSL_ERRATUM_A010315
|
||||
#define CONFIG_SYS_FSL_MAX_NUM_OF_SEC 1
|
||||
#else
|
||||
|
|
|
@ -142,7 +142,7 @@ int checkboard(void)
|
|||
void ddrmc_init(void)
|
||||
{
|
||||
struct ccsr_ddr *ddr = (struct ccsr_ddr *)CONFIG_SYS_FSL_DDR_ADDR;
|
||||
u32 temp_sdram_cfg;
|
||||
u32 temp_sdram_cfg, tmp;
|
||||
|
||||
out_be32(&ddr->sdram_cfg, DDR_SDRAM_CFG);
|
||||
|
||||
|
@ -189,6 +189,11 @@ void ddrmc_init(void)
|
|||
out_be32(&ddr->ddr_zq_cntl, DDR_DDR_ZQ_CNTL);
|
||||
|
||||
out_be32(&ddr->cs0_config_2, DDR_CS0_CONFIG_2);
|
||||
|
||||
/* DDR erratum A-009942 */
|
||||
tmp = in_be32(&ddr->debug[28]);
|
||||
out_be32(&ddr->debug[28], tmp | 0x0070006f);
|
||||
|
||||
udelay(1);
|
||||
|
||||
#ifdef CONFIG_DEEP_SLEEP
|
||||
|
|
Loading…
Reference in a new issue