]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - cpu/arm_cortexa8/omap3/mem.c
Merge branch 'master' of git://git.denx.de/u-boot-arm
[karo-tx-uboot.git] / cpu / arm_cortexa8 / omap3 / mem.c
1 /*
2  * (C) Copyright 2008
3  * Texas Instruments, <www.ti.com>
4  *
5  * Author :
6  *     Manikandan Pillai <mani.pillai@ti.com>
7  *
8  * Initial Code from:
9  *     Richard Woodruff <r-woodruff2@ti.com>
10  *     Syed Mohammed Khasim <khasim@ti.com>
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License as
14  * published by the Free Software Foundation; either version 2 of
15  * the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25  * MA 02111-1307 USA
26  */
27
28 #include <common.h>
29 #include <asm/io.h>
30 #include <asm/arch/mem.h>
31 #include <asm/arch/sys_proto.h>
32 #include <command.h>
33
34 /*
35  * Only One NAND allowed on board at a time.
36  * The GPMC CS Base for the same
37  */
38 unsigned int boot_flash_base;
39 unsigned int boot_flash_off;
40 unsigned int boot_flash_sec;
41 unsigned int boot_flash_type;
42 volatile unsigned int boot_flash_env_addr;
43
44 struct gpmc *gpmc_cfg;
45
46 #if defined(CONFIG_CMD_NAND)
47 static const u32 gpmc_m_nand[GPMC_MAX_REG] = {
48         M_NAND_GPMC_CONFIG1,
49         M_NAND_GPMC_CONFIG2,
50         M_NAND_GPMC_CONFIG3,
51         M_NAND_GPMC_CONFIG4,
52         M_NAND_GPMC_CONFIG5,
53         M_NAND_GPMC_CONFIG6, 0
54 };
55
56 #if defined(CONFIG_ENV_IS_IN_NAND)
57 #define GPMC_CS 0
58 #else
59 #define GPMC_CS 1
60 #endif
61
62 #endif
63
64 #if defined(CONFIG_CMD_ONENAND)
65 static const u32 gpmc_onenand[GPMC_MAX_REG] = {
66         ONENAND_GPMC_CONFIG1,
67         ONENAND_GPMC_CONFIG2,
68         ONENAND_GPMC_CONFIG3,
69         ONENAND_GPMC_CONFIG4,
70         ONENAND_GPMC_CONFIG5,
71         ONENAND_GPMC_CONFIG6, 0
72 };
73
74 #if defined(CONFIG_ENV_IS_IN_ONENAND)
75 #define GPMC_CS 0
76 #else
77 #define GPMC_CS 1
78 #endif
79
80 #endif
81
82 static struct sdrc *sdrc_base = (struct sdrc *)OMAP34XX_SDRC_BASE;
83
84 /**************************************************************************
85  * make_cs1_contiguous() - for es2 and above remap cs1 behind cs0 to allow
86  *  command line mem=xyz use all memory with out discontinuous support
87  *  compiled in.  Could do it at the ATAG, but there really is two banks...
88  * Called as part of 2nd phase DDR init.
89  **************************************************************************/
90 void make_cs1_contiguous(void)
91 {
92         u32 size, a_add_low, a_add_high;
93
94         size = get_sdr_cs_size(CS0);
95         size >>= 25;    /* divide by 32 MiB to find size to offset CS1 */
96         a_add_high = (size & 3) << 8;   /* set up low field */
97         a_add_low = (size & 0x3C) >> 2; /* set up high field */
98         writel((a_add_high | a_add_low), &sdrc_base->cs_cfg);
99
100 }
101
102 /********************************************************
103  *  mem_ok() - test used to see if timings are correct
104  *             for a part. Helps in guessing which part
105  *             we are currently using.
106  *******************************************************/
107 u32 mem_ok(u32 cs)
108 {
109         u32 val1, val2, addr;
110         u32 pattern = 0x12345678;
111
112         addr = OMAP34XX_SDRC_CS0 + get_sdr_cs_offset(cs);
113
114         writel(0x0, addr + 0x400);      /* clear pos A */
115         writel(pattern, addr);          /* pattern to pos B */
116         writel(0x0, addr + 4);          /* remove pattern off the bus */
117         val1 = readl(addr + 0x400);     /* get pos A value */
118         val2 = readl(addr);             /* get val2 */
119
120         if ((val1 != 0) || (val2 != pattern))   /* see if pos A val changed */
121                 return 0;
122         else
123                 return 1;
124 }
125
126 /********************************************************
127  *  sdrc_init() - init the sdrc chip selects CS0 and CS1
128  *  - early init routines, called from flash or
129  *  SRAM.
130  *******************************************************/
131 void sdrc_init(void)
132 {
133         /* only init up first bank here */
134         do_sdrc_init(CS0, EARLY_INIT);
135 }
136
137 /*************************************************************************
138  * do_sdrc_init(): initialize the SDRAM for use.
139  *  -code sets up SDRAM basic SDRC timings for CS0
140  *  -optimal settings can be placed here, or redone after i2c
141  *      inspection of board info
142  *
143  *  - code called once in C-Stack only context for CS0 and a possible 2nd
144  *      time depending on memory configuration from stack+global context
145  **************************************************************************/
146
147 void do_sdrc_init(u32 cs, u32 early)
148 {
149         struct sdrc_actim *sdrc_actim_base;
150
151         if(cs)
152                 sdrc_actim_base = (struct sdrc_actim *)SDRC_ACTIM_CTRL1_BASE;
153         else
154                 sdrc_actim_base = (struct sdrc_actim *)SDRC_ACTIM_CTRL0_BASE;
155
156         if (early) {
157                 /* reset sdrc controller */
158                 writel(SOFTRESET, &sdrc_base->sysconfig);
159                 wait_on_value(RESETDONE, RESETDONE, &sdrc_base->status,
160                               12000000);
161                 writel(0, &sdrc_base->sysconfig);
162
163                 /* setup sdrc to ball mux */
164                 writel(SDP_SDRC_SHARING, &sdrc_base->sharing);
165
166                 /* Disable Power Down of CKE cuz of 1 CKE on combo part */
167                 writel(SRFRONRESET | PAGEPOLICY_HIGH, &sdrc_base->power);
168
169                 writel(ENADLL | DLLPHASE_90, &sdrc_base->dlla_ctrl);
170                 sdelay(0x20000);
171         }
172
173         writel(RASWIDTH_13BITS | CASWIDTH_10BITS | ADDRMUXLEGACY |
174                 RAMSIZE_128 | BANKALLOCATION | B32NOT16 | B32NOT16 |
175                 DEEPPD | DDR_SDRAM, &sdrc_base->cs[cs].mcfg);
176         writel(ARCV | ARE_ARCV_1, &sdrc_base->cs[cs].rfr_ctrl);
177         writel(V_ACTIMA_165, &sdrc_actim_base->ctrla);
178         writel(V_ACTIMB_165, &sdrc_actim_base->ctrlb);
179
180         writel(CMD_NOP, &sdrc_base ->cs[cs].manual);
181         writel(CMD_PRECHARGE, &sdrc_base->cs[cs].manual);
182         writel(CMD_AUTOREFRESH, &sdrc_base->cs[cs].manual);
183         writel(CMD_AUTOREFRESH, &sdrc_base->cs[cs].manual);
184
185         /*
186          * CAS latency 3, Write Burst = Read Burst, Serial Mode,
187          * Burst length = 4
188          */
189         writel(CASL3 | BURSTLENGTH4, &sdrc_base->cs[cs].mr);
190
191         if (!mem_ok(cs))
192                 writel(0, &sdrc_base->cs[cs].mcfg);
193 }
194
195 void enable_gpmc_cs_config(const u32 *gpmc_config, struct gpmc_cs *cs, u32 base,
196                         u32 size)
197 {
198         writel(0, &cs->config7);
199         sdelay(1000);
200         /* Delay for settling */
201         writel(gpmc_config[0], &cs->config1);
202         writel(gpmc_config[1], &cs->config2);
203         writel(gpmc_config[2], &cs->config3);
204         writel(gpmc_config[3], &cs->config4);
205         writel(gpmc_config[4], &cs->config5);
206         writel(gpmc_config[5], &cs->config6);
207         /* Enable the config */
208         writel((((size & 0xF) << 8) | ((base >> 24) & 0x3F) |
209                 (1 << 6)), &cs->config7);
210         sdelay(2000);
211 }
212
213 /*****************************************************
214  * gpmc_init(): init gpmc bus
215  * Init GPMC for x16, MuxMode (SDRAM in x32).
216  * This code can only be executed from SRAM or SDRAM.
217  *****************************************************/
218 void gpmc_init(void)
219 {
220         /* putting a blanket check on GPMC based on ZeBu for now */
221         gpmc_cfg = (struct gpmc *)GPMC_BASE;
222 #if defined(CONFIG_CMD_NAND) || defined(CONFIG_CMD_ONENAND)
223         const u32 *gpmc_config = NULL;
224         u32 base = 0;
225         u32 size = 0;
226 #if defined(CONFIG_ENV_IS_IN_NAND) || defined(CONFIG_ENV_IS_IN_ONENAND)
227         u32 f_off = CONFIG_SYS_MONITOR_LEN;
228         u32 f_sec = 0;
229 #endif
230 #endif
231         u32 config = 0;
232
233         /* global settings */
234         writel(0, &gpmc_cfg->irqenable); /* isr's sources masked */
235         writel(0, &gpmc_cfg->timeout_control);/* timeout disable */
236
237         config = readl(&gpmc_cfg->config);
238         config &= (~0xf00);
239         writel(config, &gpmc_cfg->config);
240
241         /*
242          * Disable the GPMC0 config set by ROM code
243          * It conflicts with our MPDB (both at 0x08000000)
244          */
245         writel(0, &gpmc_cfg->cs[0].config7);
246         sdelay(1000);
247
248 #if defined(CONFIG_CMD_NAND)    /* CS 0 */
249         gpmc_config = gpmc_m_nand;
250
251         base = PISMO1_NAND_BASE;
252         size = PISMO1_NAND_SIZE;
253         enable_gpmc_cs_config(gpmc_config, &gpmc_cfg->cs[0], base, size);
254 #if defined(CONFIG_ENV_IS_IN_NAND)
255         f_off = SMNAND_ENV_OFFSET;
256         f_sec = (128 << 10);    /* 128 KiB */
257         /* env setup */
258         boot_flash_base = base;
259         boot_flash_off = f_off;
260         boot_flash_sec = f_sec;
261         boot_flash_env_addr = f_off;
262 #endif
263 #endif
264
265 #if defined(CONFIG_CMD_ONENAND)
266         gpmc_config = gpmc_onenand;
267         base = PISMO1_ONEN_BASE;
268         size = PISMO1_ONEN_SIZE;
269         enable_gpmc_cs_config(gpmc_config, &gpmc_cfg->cs[0], base, size);
270 #if defined(CONFIG_ENV_IS_IN_ONENAND)
271         f_off = ONENAND_ENV_OFFSET;
272         f_sec = (128 << 10);    /* 128 KiB */
273         /* env setup */
274         boot_flash_base = base;
275         boot_flash_off = f_off;
276         boot_flash_sec = f_sec;
277         boot_flash_env_addr = f_off;
278 #endif
279 #endif
280 }