1
2
3
4
5
6
7
8
9
10
11
12
13#include <common.h>
14#include <netdev.h>
15#include <asm/arch/cpu.h>
16#include <asm/arch/clk.h>
17#include <asm/arch/wdt.h>
18#include <asm/arch/emc.h>
19#include <asm/io.h>
20
21static struct clk_pm_regs *clk = (struct clk_pm_regs *)CLK_PM_BASE;
22static struct emc_regs *emc = (struct emc_regs *)EMC_BASE;
23
24void ddr_init(struct emc_dram_settings *dram)
25{
26 uint32_t ck;
27
28
29 writel(1, &emc->ctrl);
30 writel(0, &emc->config);
31
32 writel(0x7FF, &emc->refresh);
33
34 ck = get_sdram_clk_rate();
35
36 writel(dram->cmddelay, &clk->sdramclk_ctrl);
37 writel(dram->config0, &emc->config0);
38 writel(dram->rascas0, &emc->rascas0);
39 writel(dram->rdconfig, &emc->read_config);
40
41 writel((ck / dram->trp) & 0x0000000F, &emc->t_rp);
42 writel((ck / dram->tras) & 0x0000000F, &emc->t_ras);
43 writel((ck / dram->tsrex) & 0x0000007F, &emc->t_srex);
44 writel((ck / dram->twr) & 0x0000000F, &emc->t_wr);
45 writel((ck / dram->trc) & 0x0000001F, &emc->t_rc);
46 writel((ck / dram->trfc) & 0x0000001F, &emc->t_rfc);
47 writel((ck / dram->txsr) & 0x000000FF, &emc->t_xsr);
48 writel(dram->trrd, &emc->t_rrd);
49 writel(dram->tmrd, &emc->t_mrd);
50 writel(dram->tcdlr, &emc->t_cdlr);
51
52 writel((((ck / dram->refresh) >> 4) & 0x7FF), &emc->refresh);
53 udelay(10);
54
55 writel(0x00000193, &emc->control);
56 udelay(100);
57
58 writel(0x00000113, &emc->control);
59
60 writel((((128) >> 4) & 0x7FF), &emc->refresh);
61 udelay(10);
62
63 writel((((ck / dram->refresh) >> 4) & 0x7FF), &emc->refresh);
64 udelay(10);
65
66 writel(0x00000093, &emc->control);
67 readl(EMC_DYCS0_BASE | dram->mode);
68
69 writel(0x00000093, &emc->control);
70 readl(EMC_DYCS0_BASE | dram->emode);
71
72 writel(0x00000010, &emc->control);
73}
74