mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-31 20:18:18 +00:00
When bringing in the series 'arm: dts: am62-beagleplay: Fix Beagleplay Ethernet"' I failed to notice that b4 noticed it was based on next and so took that as the base commit and merged that part of next to master. This reverts commit c8ffd1356d42223cbb8c86280a083cc3c93e6426, reversing changes made to 2ee6f3a5f7550de3599faef9704e166e5dcace35. Reported-by: Jonas Karlman <jonas@kwiboo.se> Signed-off-by: Tom Rini <trini@konsulko.com>
48 lines
1.1 KiB
C
48 lines
1.1 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Keystone2: DDR3 initialization
|
|
*
|
|
* (C) Copyright 2014-2015
|
|
* Texas Instruments Incorporated, <www.ti.com>
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include "ddr3_cfg.h"
|
|
#include <asm/arch/ddr3.h>
|
|
|
|
static struct pll_init_data ddr3_400 = DDR3_PLL_400;
|
|
static struct pll_init_data ddr3_333 = DDR3_PLL_333;
|
|
|
|
u32 ddr3_init(void)
|
|
{
|
|
struct ddr3_spd_cb spd_cb;
|
|
|
|
if (ddr3_get_dimm_params_from_spd(&spd_cb)) {
|
|
printf("Sorry, I don't know how to configure DDR3A.\n"
|
|
"Bye :(\n");
|
|
for (;;)
|
|
;
|
|
}
|
|
|
|
printf("Detected SO-DIMM [%s]\n", spd_cb.dimm_name);
|
|
|
|
printf("DDR3 speed %d\n", spd_cb.ddrspdclock);
|
|
if (spd_cb.ddrspdclock == 1600)
|
|
init_pll(&ddr3_400);
|
|
else
|
|
init_pll(&ddr3_333);
|
|
|
|
/* Reset DDR3 PHY after PLL enabled */
|
|
ddr3_reset_ddrphy();
|
|
|
|
spd_cb.phy_cfg.zq0cr1 |= 0x10000;
|
|
spd_cb.phy_cfg.zq1cr1 |= 0x10000;
|
|
spd_cb.phy_cfg.zq2cr1 |= 0x10000;
|
|
ddr3_init_ddrphy(KS2_DDR3A_DDRPHYC, &spd_cb.phy_cfg);
|
|
ddr3_init_ddremif(KS2_DDR3A_EMIF_CTRL_BASE, &spd_cb.emif_cfg);
|
|
|
|
printf("DRAM: %d GiB\n", spd_cb.ddr_size_gbyte);
|
|
|
|
return (u32)spd_cb.ddr_size_gbyte;
|
|
}
|