upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
234 lines
7.1 KiB
234 lines
7.1 KiB
13 years ago
|
/*
|
||
|
* DDR3 mem setup file for SMDK5250 board based on EXYNOS5
|
||
|
*
|
||
|
* Copyright (C) 2012 Samsung Electronics
|
||
|
*
|
||
|
* See file CREDITS for list of people who contributed to this
|
||
|
* project.
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU General Public License as
|
||
|
* published by the Free Software Foundation; either version 2 of
|
||
|
* the License, or (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program; if not, write to the Free Software
|
||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||
|
* MA 02111-1307 USA
|
||
|
*/
|
||
|
|
||
|
#include <config.h>
|
||
|
#include <asm/io.h>
|
||
|
#include <asm/arch/clock.h>
|
||
|
#include <asm/arch/cpu.h>
|
||
|
#include <asm/arch/dmc.h>
|
||
12 years ago
|
#include "common_setup.h"
|
||
|
#include "exynos5_setup.h"
|
||
13 years ago
|
#include "clock_init.h"
|
||
|
|
||
|
#define RDLVL_COMPLETE_TIMEOUT 10000
|
||
|
|
||
|
static void reset_phy_ctrl(void)
|
||
|
{
|
||
12 years ago
|
struct exynos5_clock *clk =
|
||
|
(struct exynos5_clock *)samsung_get_base_clock();
|
||
13 years ago
|
|
||
|
writel(DDR3PHY_CTRL_PHY_RESET_OFF, &clk->lpddr3phy_ctrl);
|
||
|
writel(DDR3PHY_CTRL_PHY_RESET, &clk->lpddr3phy_ctrl);
|
||
|
}
|
||
|
|
||
12 years ago
|
int ddr3_mem_ctrl_init(struct mem_timings *mem, unsigned long mem_iv_size,
|
||
|
int reset)
|
||
13 years ago
|
{
|
||
|
unsigned int val;
|
||
|
struct exynos5_phy_control *phy0_ctrl, *phy1_ctrl;
|
||
|
struct exynos5_dmc *dmc;
|
||
|
int i;
|
||
|
|
||
12 years ago
|
phy0_ctrl = (struct exynos5_phy_control *)samsung_get_base_dmc_phy();
|
||
|
phy1_ctrl = (struct exynos5_phy_control *)(samsung_get_base_dmc_phy()
|
||
|
+ DMC_OFFSET);
|
||
|
dmc = (struct exynos5_dmc *)samsung_get_base_dmc_ctrl();
|
||
13 years ago
|
|
||
12 years ago
|
if (reset)
|
||
|
reset_phy_ctrl();
|
||
13 years ago
|
|
||
|
/* Set Impedance Output Driver */
|
||
|
val = (mem->impedance << CA_CK_DRVR_DS_OFFSET) |
|
||
|
(mem->impedance << CA_CKE_DRVR_DS_OFFSET) |
|
||
|
(mem->impedance << CA_CS_DRVR_DS_OFFSET) |
|
||
|
(mem->impedance << CA_ADR_DRVR_DS_OFFSET);
|
||
|
writel(val, &phy0_ctrl->phy_con39);
|
||
|
writel(val, &phy1_ctrl->phy_con39);
|
||
|
|
||
|
/* Set Read Latency and Burst Length for PHY0 and PHY1 */
|
||
|
val = (mem->ctrl_bstlen << PHY_CON42_CTRL_BSTLEN_SHIFT) |
|
||
|
(mem->ctrl_rdlat << PHY_CON42_CTRL_RDLAT_SHIFT);
|
||
|
writel(val, &phy0_ctrl->phy_con42);
|
||
|
writel(val, &phy1_ctrl->phy_con42);
|
||
|
|
||
|
/* ZQ Calibration */
|
||
|
if (dmc_config_zq(mem, phy0_ctrl, phy1_ctrl))
|
||
|
return SETUP_ERR_ZQ_CALIBRATION_FAILURE;
|
||
|
|
||
|
/* DQ Signal */
|
||
|
writel(mem->phy0_pulld_dqs, &phy0_ctrl->phy_con14);
|
||
|
writel(mem->phy1_pulld_dqs, &phy1_ctrl->phy_con14);
|
||
|
|
||
|
writel(mem->concontrol | (mem->rd_fetch << CONCONTROL_RD_FETCH_SHIFT)
|
||
|
| (mem->dfi_init_start << CONCONTROL_DFI_INIT_START_SHIFT),
|
||
|
&dmc->concontrol);
|
||
|
|
||
|
update_reset_dll(dmc, DDR_MODE_DDR3);
|
||
|
|
||
|
/* DQS Signal */
|
||
|
writel(mem->phy0_dqs, &phy0_ctrl->phy_con4);
|
||
|
writel(mem->phy1_dqs, &phy1_ctrl->phy_con4);
|
||
|
|
||
|
writel(mem->phy0_dq, &phy0_ctrl->phy_con6);
|
||
|
writel(mem->phy1_dq, &phy1_ctrl->phy_con6);
|
||
|
|
||
|
writel(mem->phy0_tFS, &phy0_ctrl->phy_con10);
|
||
|
writel(mem->phy1_tFS, &phy1_ctrl->phy_con10);
|
||
|
|
||
|
val = (mem->ctrl_start_point << PHY_CON12_CTRL_START_POINT_SHIFT) |
|
||
|
(mem->ctrl_inc << PHY_CON12_CTRL_INC_SHIFT) |
|
||
|
(mem->ctrl_dll_on << PHY_CON12_CTRL_DLL_ON_SHIFT) |
|
||
|
(mem->ctrl_ref << PHY_CON12_CTRL_REF_SHIFT);
|
||
|
writel(val, &phy0_ctrl->phy_con12);
|
||
|
writel(val, &phy1_ctrl->phy_con12);
|
||
|
|
||
|
/* Start DLL locking */
|
||
|
writel(val | (mem->ctrl_start << PHY_CON12_CTRL_START_SHIFT),
|
||
12 years ago
|
&phy0_ctrl->phy_con12);
|
||
13 years ago
|
writel(val | (mem->ctrl_start << PHY_CON12_CTRL_START_SHIFT),
|
||
12 years ago
|
&phy1_ctrl->phy_con12);
|
||
13 years ago
|
|
||
|
update_reset_dll(dmc, DDR_MODE_DDR3);
|
||
|
|
||
|
writel(mem->concontrol | (mem->rd_fetch << CONCONTROL_RD_FETCH_SHIFT),
|
||
12 years ago
|
&dmc->concontrol);
|
||
13 years ago
|
|
||
|
/* Memory Channel Inteleaving Size */
|
||
|
writel(mem->iv_size, &dmc->ivcontrol);
|
||
|
|
||
|
writel(mem->memconfig, &dmc->memconfig0);
|
||
|
writel(mem->memconfig, &dmc->memconfig1);
|
||
|
writel(mem->membaseconfig0, &dmc->membaseconfig0);
|
||
|
writel(mem->membaseconfig1, &dmc->membaseconfig1);
|
||
|
|
||
|
/* Precharge Configuration */
|
||
|
writel(mem->prechconfig_tp_cnt << PRECHCONFIG_TP_CNT_SHIFT,
|
||
12 years ago
|
&dmc->prechconfig);
|
||
13 years ago
|
|
||
|
/* Power Down mode Configuration */
|
||
|
writel(mem->dpwrdn_cyc << PWRDNCONFIG_DPWRDN_CYC_SHIFT |
|
||
|
mem->dsref_cyc << PWRDNCONFIG_DSREF_CYC_SHIFT,
|
||
|
&dmc->pwrdnconfig);
|
||
|
|
||
|
/* TimingRow, TimingData, TimingPower and Timingaref
|
||
|
* values as per Memory AC parameters
|
||
|
*/
|
||
|
writel(mem->timing_ref, &dmc->timingref);
|
||
|
writel(mem->timing_row, &dmc->timingrow);
|
||
|
writel(mem->timing_data, &dmc->timingdata);
|
||
|
writel(mem->timing_power, &dmc->timingpower);
|
||
|
|
||
|
/* Send PALL command */
|
||
|
dmc_config_prech(mem, dmc);
|
||
|
|
||
|
/* Send NOP, MRS and ZQINIT commands */
|
||
|
dmc_config_mrs(mem, dmc);
|
||
|
|
||
|
if (mem->gate_leveling_enable) {
|
||
|
val = PHY_CON0_RESET_VAL;
|
||
|
val |= P0_CMD_EN;
|
||
|
writel(val, &phy0_ctrl->phy_con0);
|
||
|
writel(val, &phy1_ctrl->phy_con0);
|
||
|
|
||
|
val = PHY_CON2_RESET_VAL;
|
||
|
val |= INIT_DESKEW_EN;
|
||
|
writel(val, &phy0_ctrl->phy_con2);
|
||
|
writel(val, &phy1_ctrl->phy_con2);
|
||
|
|
||
|
val = PHY_CON0_RESET_VAL;
|
||
|
val |= P0_CMD_EN;
|
||
|
val |= BYTE_RDLVL_EN;
|
||
|
writel(val, &phy0_ctrl->phy_con0);
|
||
|
writel(val, &phy1_ctrl->phy_con0);
|
||
|
|
||
|
val = (mem->ctrl_start_point <<
|
||
|
PHY_CON12_CTRL_START_POINT_SHIFT) |
|
||
|
(mem->ctrl_inc << PHY_CON12_CTRL_INC_SHIFT) |
|
||
|
(mem->ctrl_force << PHY_CON12_CTRL_FORCE_SHIFT) |
|
||
|
(mem->ctrl_start << PHY_CON12_CTRL_START_SHIFT) |
|
||
|
(mem->ctrl_ref << PHY_CON12_CTRL_REF_SHIFT);
|
||
|
writel(val, &phy0_ctrl->phy_con12);
|
||
|
writel(val, &phy1_ctrl->phy_con12);
|
||
|
|
||
|
val = PHY_CON2_RESET_VAL;
|
||
|
val |= INIT_DESKEW_EN;
|
||
|
val |= RDLVL_GATE_EN;
|
||
|
writel(val, &phy0_ctrl->phy_con2);
|
||
|
writel(val, &phy1_ctrl->phy_con2);
|
||
|
|
||
|
val = PHY_CON0_RESET_VAL;
|
||
|
val |= P0_CMD_EN;
|
||
|
val |= BYTE_RDLVL_EN;
|
||
|
val |= CTRL_SHGATE;
|
||
|
writel(val, &phy0_ctrl->phy_con0);
|
||
|
writel(val, &phy1_ctrl->phy_con0);
|
||
|
|
||
|
val = PHY_CON1_RESET_VAL;
|
||
|
val &= ~(CTRL_GATEDURADJ_MASK);
|
||
|
writel(val, &phy0_ctrl->phy_con1);
|
||
|
writel(val, &phy1_ctrl->phy_con1);
|
||
|
|
||
|
writel(CTRL_RDLVL_GATE_ENABLE, &dmc->rdlvl_config);
|
||
|
i = RDLVL_COMPLETE_TIMEOUT;
|
||
|
while ((readl(&dmc->phystatus) &
|
||
|
(RDLVL_COMPLETE_CHO | RDLVL_COMPLETE_CH1)) !=
|
||
|
(RDLVL_COMPLETE_CHO | RDLVL_COMPLETE_CH1) && i > 0) {
|
||
|
/*
|
||
|
* TODO(waihong): Comment on how long this take to
|
||
|
* timeout
|
||
|
*/
|
||
|
sdelay(100);
|
||
|
i--;
|
||
|
}
|
||
|
if (!i)
|
||
|
return SETUP_ERR_RDLV_COMPLETE_TIMEOUT;
|
||
|
writel(CTRL_RDLVL_GATE_DISABLE, &dmc->rdlvl_config);
|
||
|
|
||
|
writel(0, &phy0_ctrl->phy_con14);
|
||
|
writel(0, &phy1_ctrl->phy_con14);
|
||
|
|
||
|
val = (mem->ctrl_start_point <<
|
||
|
PHY_CON12_CTRL_START_POINT_SHIFT) |
|
||
|
(mem->ctrl_inc << PHY_CON12_CTRL_INC_SHIFT) |
|
||
|
(mem->ctrl_force << PHY_CON12_CTRL_FORCE_SHIFT) |
|
||
|
(mem->ctrl_start << PHY_CON12_CTRL_START_SHIFT) |
|
||
|
(mem->ctrl_dll_on << PHY_CON12_CTRL_DLL_ON_SHIFT) |
|
||
|
(mem->ctrl_ref << PHY_CON12_CTRL_REF_SHIFT);
|
||
|
writel(val, &phy0_ctrl->phy_con12);
|
||
|
writel(val, &phy1_ctrl->phy_con12);
|
||
|
|
||
|
update_reset_dll(dmc, DDR_MODE_DDR3);
|
||
|
}
|
||
|
|
||
|
/* Send PALL command */
|
||
|
dmc_config_prech(mem, dmc);
|
||
|
|
||
|
writel(mem->memcontrol, &dmc->memcontrol);
|
||
|
|
||
|
/* Set DMC Concontrol and enable auto-refresh counter */
|
||
|
writel(mem->concontrol | (mem->rd_fetch << CONCONTROL_RD_FETCH_SHIFT)
|
||
|
| (mem->aref_en << CONCONTROL_AREF_EN_SHIFT), &dmc->concontrol);
|
||
|
return 0;
|
||
|
}
|