blob: e82aa6699b10d761cc38070234d5bcbd54d8d132 [file] [log] [blame]
Hao Zhanga9068472014-07-16 00:59:27 +03001/*
2 * Keystone2: DDR3 initialization
3 *
Vitaly Andrianovd9a76e72016-03-04 10:36:42 -06004 * (C) Copyright 2014-2015
Hao Zhanga9068472014-07-16 00:59:27 +03005 * Texas Instruments Incorporated, <www.ti.com>
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9
10#include <common.h>
11#include "ddr3_cfg.h"
12#include <asm/arch/ddr3.h>
13
Hao Zhanga9068472014-07-16 00:59:27 +030014static struct pll_init_data ddr3_400 = DDR3_PLL_400;
Vitaly Andrianovd9a76e72016-03-04 10:36:42 -060015static struct pll_init_data ddr3_333 = DDR3_PLL_333;
Hao Zhanga9068472014-07-16 00:59:27 +030016
Vitaly Andrianov66c98a02015-02-11 14:07:58 -050017u32 ddr3_init(void)
Hao Zhanga9068472014-07-16 00:59:27 +030018{
Vitaly Andrianovd9a76e72016-03-04 10:36:42 -060019 struct ddr3_spd_cb spd_cb;
Hao Zhanga9068472014-07-16 00:59:27 +030020
Vitaly Andrianovd9a76e72016-03-04 10:36:42 -060021 if (ddr3_get_dimm_params_from_spd(&spd_cb)) {
22 printf("Sorry, I don't know how to configure DDR3A.\n"
23 "Bye :(\n");
24 for (;;)
25 ;
26 }
27
28 printf("Detected SO-DIMM [%s]\n", spd_cb.dimm_name);
29
30 printf("DDR3 speed %d\n", spd_cb.ddrspdclock);
31 if (spd_cb.ddrspdclock == 1600)
Hao Zhanga9068472014-07-16 00:59:27 +030032 init_pll(&ddr3_400);
Vitaly Andrianovd9a76e72016-03-04 10:36:42 -060033 else
34 init_pll(&ddr3_333);
Hao Zhanga9068472014-07-16 00:59:27 +030035
36 /* Reset DDR3 PHY after PLL enabled */
37 ddr3_reset_ddrphy();
38
Vitaly Andrianovd9a76e72016-03-04 10:36:42 -060039 spd_cb.phy_cfg.zq0cr1 |= 0x10000;
40 spd_cb.phy_cfg.zq1cr1 |= 0x10000;
41 spd_cb.phy_cfg.zq2cr1 |= 0x10000;
42 ddr3_init_ddrphy(KS2_DDR3A_DDRPHYC, &spd_cb.phy_cfg);
43 ddr3_init_ddremif(KS2_DDR3A_EMIF_CTRL_BASE, &spd_cb.emif_cfg);
Hao Zhanga9068472014-07-16 00:59:27 +030044
Vitaly Andrianovd9a76e72016-03-04 10:36:42 -060045 printf("DRAM: %d GiB\n", spd_cb.ddr_size_gbyte);
46
47 return (u32)spd_cb.ddr_size_gbyte;
Hao Zhanga9068472014-07-16 00:59:27 +030048}