blob: 448cc4015766215ca9aeee645db332aacb668cde [file] [log] [blame]
Chandan Nath98b036e2011-10-14 02:58:24 +00001/*
2 * DDR Configuration for AM33xx devices.
3 *
4 * Copyright (C) 2011 Texas Instruments Incorporated -
5http://www.ti.com/
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed .as is. WITHOUT ANY WARRANTY of any
13 * kind, whether express or implied; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 */
17
18#include <asm/arch/cpu.h>
19#include <asm/arch/ddr_defs.h>
Satyanarayana, Sandhya11784752012-08-09 18:29:57 +000020#include <asm/arch/sys_proto.h>
Chandan Nath98b036e2011-10-14 02:58:24 +000021#include <asm/io.h>
Tom Rini0d654712012-05-29 09:02:15 -070022#include <asm/emif.h>
Chandan Nath98b036e2011-10-14 02:58:24 +000023
24/**
25 * Base address for EMIF instances
26 */
Tom Rini0d654712012-05-29 09:02:15 -070027static struct emif_reg_struct *emif_reg = {
28 (struct emif_reg_struct *)EMIF4_0_CFG_BASE};
Chandan Nath98b036e2011-10-14 02:58:24 +000029
30/**
31 * Base address for DDR instance
32 */
33static struct ddr_regs *ddr_reg[2] = {
34 (struct ddr_regs *)DDR_PHY_BASE_ADDR,
35 (struct ddr_regs *)DDR_PHY_BASE_ADDR2};
36
37/**
38 * Base address for ddr io control instances
39 */
40static struct ddr_cmdtctrl *ioctrl_reg = {
41 (struct ddr_cmdtctrl *)DDR_CONTROL_BASE_ADDR};
42
43/**
Chandan Nath98b036e2011-10-14 02:58:24 +000044 * Configure SDRAM
45 */
Tom Rinib668ae42012-07-24 14:55:38 -070046void config_sdram(const struct emif_regs *regs)
Chandan Nath98b036e2011-10-14 02:58:24 +000047{
Tom Rini1b669fd2013-02-26 16:35:33 -050048 if (regs->zq_config) {
49 /*
50 * A value of 0x2800 for the REF CTRL will give us
51 * about 570us for a delay, which will be long enough
52 * to configure things.
53 */
54 writel(0x2800, &emif_reg->emif_sdram_ref_ctrl);
Tom Rini323315a2012-07-30 14:49:50 -070055 writel(regs->zq_config, &emif_reg->emif_zq_config);
Satyanarayana, Sandhya11784752012-08-09 18:29:57 +000056 writel(regs->sdram_config, &cstat->secure_emif_sdram_config);
57 }
Tom Rinib668ae42012-07-24 14:55:38 -070058 writel(regs->sdram_config, &emif_reg->emif_sdram_config);
Tom Rini1b669fd2013-02-26 16:35:33 -050059 writel(regs->ref_ctrl, &emif_reg->emif_sdram_ref_ctrl);
60 writel(regs->ref_ctrl, &emif_reg->emif_sdram_ref_ctrl_shdw);
Chandan Nath98b036e2011-10-14 02:58:24 +000061}
62
63/**
64 * Set SDRAM timings
65 */
Tom Rinib668ae42012-07-24 14:55:38 -070066void set_sdram_timings(const struct emif_regs *regs)
Chandan Nath98b036e2011-10-14 02:58:24 +000067{
Tom Rinib668ae42012-07-24 14:55:38 -070068 writel(regs->sdram_tim1, &emif_reg->emif_sdram_tim_1);
69 writel(regs->sdram_tim1, &emif_reg->emif_sdram_tim_1_shdw);
70 writel(regs->sdram_tim2, &emif_reg->emif_sdram_tim_2);
71 writel(regs->sdram_tim2, &emif_reg->emif_sdram_tim_2_shdw);
72 writel(regs->sdram_tim3, &emif_reg->emif_sdram_tim_3);
73 writel(regs->sdram_tim3, &emif_reg->emif_sdram_tim_3_shdw);
Chandan Nath98b036e2011-10-14 02:58:24 +000074}
75
76/**
77 * Configure DDR PHY
78 */
Tom Rinib668ae42012-07-24 14:55:38 -070079void config_ddr_phy(const struct emif_regs *regs)
Chandan Nath98b036e2011-10-14 02:58:24 +000080{
Tom Rinib668ae42012-07-24 14:55:38 -070081 writel(regs->emif_ddr_phy_ctlr_1, &emif_reg->emif_ddr_phy_ctrl_1);
82 writel(regs->emif_ddr_phy_ctlr_1, &emif_reg->emif_ddr_phy_ctrl_1_shdw);
Chandan Nath98b036e2011-10-14 02:58:24 +000083}
84
85/**
86 * Configure DDR CMD control registers
87 */
Tom Rini6f868cf2012-07-24 14:54:41 -070088void config_cmd_ctrl(const struct cmd_control *cmd)
Chandan Nath98b036e2011-10-14 02:58:24 +000089{
90 writel(cmd->cmd0csratio, &ddr_reg[0]->cm0csratio);
Chandan Nath98b036e2011-10-14 02:58:24 +000091 writel(cmd->cmd0dldiff, &ddr_reg[0]->cm0dldiff);
92 writel(cmd->cmd0iclkout, &ddr_reg[0]->cm0iclkout);
93
94 writel(cmd->cmd1csratio, &ddr_reg[0]->cm1csratio);
Chandan Nath98b036e2011-10-14 02:58:24 +000095 writel(cmd->cmd1dldiff, &ddr_reg[0]->cm1dldiff);
96 writel(cmd->cmd1iclkout, &ddr_reg[0]->cm1iclkout);
97
98 writel(cmd->cmd2csratio, &ddr_reg[0]->cm2csratio);
Chandan Nath98b036e2011-10-14 02:58:24 +000099 writel(cmd->cmd2dldiff, &ddr_reg[0]->cm2dldiff);
100 writel(cmd->cmd2iclkout, &ddr_reg[0]->cm2iclkout);
Chandan Nath98b036e2011-10-14 02:58:24 +0000101}
102
103/**
104 * Configure DDR DATA registers
105 */
Tom Rini6f868cf2012-07-24 14:54:41 -0700106void config_ddr_data(int macrono, const struct ddr_data *data)
Chandan Nath98b036e2011-10-14 02:58:24 +0000107{
108 writel(data->datardsratio0, &ddr_reg[macrono]->dt0rdsratio0);
Chandan Nath98b036e2011-10-14 02:58:24 +0000109 writel(data->datawdsratio0, &ddr_reg[macrono]->dt0wdsratio0);
Chandan Nath98b036e2011-10-14 02:58:24 +0000110 writel(data->datawiratio0, &ddr_reg[macrono]->dt0wiratio0);
Chandan Nath98b036e2011-10-14 02:58:24 +0000111 writel(data->datagiratio0, &ddr_reg[macrono]->dt0giratio0);
Chandan Nath98b036e2011-10-14 02:58:24 +0000112 writel(data->datafwsratio0, &ddr_reg[macrono]->dt0fwsratio0);
Chandan Nath98b036e2011-10-14 02:58:24 +0000113 writel(data->datawrsratio0, &ddr_reg[macrono]->dt0wrsratio0);
Tom Rini3e444582012-07-30 11:49:47 -0700114 writel(data->datauserank0delay, &ddr_reg[macrono]->dt0rdelays0);
Chandan Nath98b036e2011-10-14 02:58:24 +0000115 writel(data->datadldiff0, &ddr_reg[macrono]->dt0dldiff0);
Chandan Nath98b036e2011-10-14 02:58:24 +0000116}
117
Tom Rinib239b3b2012-07-24 16:31:26 -0700118void config_io_ctrl(unsigned long val)
Chandan Nath98b036e2011-10-14 02:58:24 +0000119{
Tom Rinib239b3b2012-07-24 16:31:26 -0700120 writel(val, &ioctrl_reg->cm0ioctl);
121 writel(val, &ioctrl_reg->cm1ioctl);
122 writel(val, &ioctrl_reg->cm2ioctl);
123 writel(val, &ioctrl_reg->dt0ioctl);
124 writel(val, &ioctrl_reg->dt1ioctl);
Chandan Nath98b036e2011-10-14 02:58:24 +0000125}