]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/am33xx/emif4.c
am33xx: Correct and clean up ddr_regs struct
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / am33xx / emif4.c
1 /*
2  * emif4.c
3  *
4  * AM33XX emif4 configuration file
5  *
6  * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR /PURPOSE.  See the
16  * GNU General Public License for more details.
17  */
18
19 #include <common.h>
20 #include <asm/arch/cpu.h>
21 #include <asm/arch/ddr_defs.h>
22 #include <asm/arch/hardware.h>
23 #include <asm/arch/clock.h>
24 #include <asm/arch/sys_proto.h>
25 #include <asm/io.h>
26 #include <asm/emif.h>
27
28 DECLARE_GLOBAL_DATA_PTR;
29
30 struct ddr_regs *ddrregs = (struct ddr_regs *)DDR_PHY_BASE_ADDR;
31 struct vtp_reg *vtpreg = (struct vtp_reg *)VTP0_CTRL_ADDR;
32 struct ddr_ctrl *ddrctrl = (struct ddr_ctrl *)DDR_CTRL_ADDR;
33
34 int dram_init(void)
35 {
36         /* dram_init must store complete ramsize in gd->ram_size */
37         gd->ram_size = get_ram_size(
38                         (void *)CONFIG_SYS_SDRAM_BASE,
39                         CONFIG_MAX_RAM_BANK_SIZE);
40         return 0;
41 }
42
43 void dram_init_banksize(void)
44 {
45         gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
46         gd->bd->bi_dram[0].size = gd->ram_size;
47 }
48
49
50 #ifdef CONFIG_SPL_BUILD
51 static const struct ddr_data ddr2_data = {
52         .datardsratio0 = ((DDR2_RD_DQS<<30)|(DDR2_RD_DQS<<20)
53                                 |(DDR2_RD_DQS<<10)|(DDR2_RD_DQS<<0)),
54         .datawdsratio0 = ((DDR2_WR_DQS<<30)|(DDR2_WR_DQS<<20)
55                                 |(DDR2_WR_DQS<<10)|(DDR2_WR_DQS<<0)),
56         .datawiratio0 = ((DDR2_PHY_WRLVL<<30)|(DDR2_PHY_WRLVL<<20)
57                                 |(DDR2_PHY_WRLVL<<10)|(DDR2_PHY_WRLVL<<0)),
58         .datagiratio0 = ((DDR2_PHY_GATELVL<<30)|(DDR2_PHY_GATELVL<<20)
59                                 |(DDR2_PHY_GATELVL<<10)|(DDR2_PHY_GATELVL<<0)),
60         .datafwsratio0 = ((DDR2_PHY_FIFO_WE<<30)|(DDR2_PHY_FIFO_WE<<20)
61                                 |(DDR2_PHY_FIFO_WE<<10)|(DDR2_PHY_FIFO_WE<<0)),
62         .datawrsratio0 = ((DDR2_PHY_WR_DATA<<30)|(DDR2_PHY_WR_DATA<<20)
63                                 |(DDR2_PHY_WR_DATA<<10)|(DDR2_PHY_WR_DATA<<0)),
64         .datauserank0delay = DDR2_PHY_RANK0_DELAY,
65         .datadldiff0 = PHY_DLL_LOCK_DIFF,
66 };
67
68 static const struct cmd_control ddr2_cmd_ctrl_data = {
69         .cmd0csratio = DDR2_RATIO,
70         .cmd0dldiff = DDR2_DLL_LOCK_DIFF,
71         .cmd0iclkout = DDR2_INVERT_CLKOUT,
72
73         .cmd1csratio = DDR2_RATIO,
74         .cmd1dldiff = DDR2_DLL_LOCK_DIFF,
75         .cmd1iclkout = DDR2_INVERT_CLKOUT,
76
77         .cmd2csratio = DDR2_RATIO,
78         .cmd2dldiff = DDR2_DLL_LOCK_DIFF,
79         .cmd2iclkout = DDR2_INVERT_CLKOUT,
80 };
81
82 static const struct emif_regs ddr2_emif_reg_data = {
83         .sdram_config = DDR2_EMIF_SDCFG,
84         .ref_ctrl = DDR2_EMIF_SDREF,
85         .sdram_tim1 = DDR2_EMIF_TIM1,
86         .sdram_tim2 = DDR2_EMIF_TIM2,
87         .sdram_tim3 = DDR2_EMIF_TIM3,
88         .emif_ddr_phy_ctlr_1 = DDR2_EMIF_READ_LATENCY,
89 };
90
91 static void config_vtp(void)
92 {
93         writel(readl(&vtpreg->vtp0ctrlreg) | VTP_CTRL_ENABLE,
94                         &vtpreg->vtp0ctrlreg);
95         writel(readl(&vtpreg->vtp0ctrlreg) & (~VTP_CTRL_START_EN),
96                         &vtpreg->vtp0ctrlreg);
97         writel(readl(&vtpreg->vtp0ctrlreg) | VTP_CTRL_START_EN,
98                         &vtpreg->vtp0ctrlreg);
99
100         /* Poll for READY */
101         while ((readl(&vtpreg->vtp0ctrlreg) & VTP_CTRL_READY) !=
102                         VTP_CTRL_READY)
103                 ;
104 }
105
106 void config_ddr(short ddr_type)
107 {
108         enable_emif_clocks();
109
110         if (ddr_type == EMIF_REG_SDRAM_TYPE_DDR2) {
111                 ddr_pll_config(266);
112                 config_vtp();
113
114                 config_cmd_ctrl(&ddr2_cmd_ctrl_data);
115
116                 config_ddr_data(0, &ddr2_data);
117                 config_ddr_data(1, &ddr2_data);
118
119                 config_io_ctrl(DDR2_IOCTRL_VALUE);
120
121                 /* Set CKE to be controlled by EMIF/DDR PHY */
122                 writel(DDR_CKE_CTRL_NORMAL, &ddrctrl->ddrckectrl);
123
124                 /* Program EMIF instance */
125                 config_ddr_phy(&ddr2_emif_reg_data);
126                 set_sdram_timings(&ddr2_emif_reg_data);
127                 config_sdram(&ddr2_emif_reg_data);
128         }
129 }
130 #endif