]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/cm5200/cm5200.c
Merge with git://www.denx.de/git/u-boot.git
[people/ms/u-boot.git] / board / cm5200 / cm5200.c
1 /*
2 * (C) Copyright 2003-2007
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * (C) Copyright 2004
6 * Mark Jonas, Freescale Semiconductor, mark.jonas@motorola.com.
7 *
8 * (C) Copyright 2004-2005
9 * Martin Krause, TQ-Systems GmbH, martin.krause@tqs.de
10 *
11 * Adapted to U-Boot 1.2 by:
12 * Bartlomiej Sieka <tur@semihalf.com>:
13 * - HW ID readout from EEPROM
14 * - module detection
15 * Grzegorz Bernacki <gjb@semihalf.com>:
16 * - run-time SDRAM controller configuration
17 * - LIBFDT support
18 *
19 * See file CREDITS for list of people who contributed to this
20 * project.
21 *
22 * This program is free software; you can redistribute it and/or
23 * modify it under the terms of the GNU General Public License as
24 * published by the Free Software Foundation; either version 2 of
25 * the License, or (at your option) any later version.
26 *
27 * This program is distributed in the hope that it will be useful,
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30 * GNU General Public License for more details.
31 *
32 * You should have received a copy of the GNU General Public License
33 * along with this program; if not, write to the Free Software
34 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
35 * MA 02111-1307 USA
36 */
37
38 #include <common.h>
39 #include <mpc5xxx.h>
40 #include <pci.h>
41 #include <asm/processor.h>
42 #include <i2c.h>
43 #include <linux/ctype.h>
44
45 #ifdef CONFIG_OF_LIBFDT
46 #include <libfdt.h>
47 #include <libfdt_env.h>
48 #include <fdt_support.h>
49 #endif /* CONFIG_OF_LIBFDT */
50
51
52 #include "cm5200.h"
53 #include "fwupdate.h"
54
55 DECLARE_GLOBAL_DATA_PTR;
56
57 static hw_id_t hw_id;
58
59
60 #ifndef CFG_RAMBOOT
61 /*
62 * Helper function to initialize SDRAM controller.
63 */
64 static void sdram_start(int hi_addr, mem_conf_t *mem_conf)
65 {
66 long hi_addr_bit = hi_addr ? 0x01000000 : 0;
67
68 /* unlock mode register */
69 *(vu_long *)MPC5XXX_SDRAM_CTRL = mem_conf->control | 0x80000000 |
70 hi_addr_bit;
71
72 /* precharge all banks */
73 *(vu_long *)MPC5XXX_SDRAM_CTRL = mem_conf->control | 0x80000002 |
74 hi_addr_bit;
75
76 /* auto refresh */
77 *(vu_long *)MPC5XXX_SDRAM_CTRL = mem_conf->control | 0x80000004 |
78 hi_addr_bit;
79
80 /* auto refresh, second time */
81 *(vu_long *)MPC5XXX_SDRAM_CTRL = mem_conf->control | 0x80000004 |
82 hi_addr_bit;
83
84 /* set mode register */
85 *(vu_long *)MPC5XXX_SDRAM_MODE = mem_conf->mode;
86
87 /* normal operation */
88 *(vu_long *)MPC5XXX_SDRAM_CTRL = mem_conf->control | hi_addr_bit;
89 }
90 #endif /* CFG_RAMBOOT */
91
92
93 /*
94 * Retrieve memory configuration for a given module. board_type is the index
95 * in hw_id_list[] corresponding to the module we are executing on; we return
96 * SDRAM controller settings approprate for this module.
97 */
98 static mem_conf_t* get_mem_config(int board_type)
99 {
100 switch(board_type){
101 case CM1_QA:
102 return memory_config[0];
103 case CM11_QA:
104 case CMU1_QA:
105 return memory_config[1];
106 default:
107 printf("ERROR: Unknown module, using a default SDRAM "
108 "configuration - things may not work!!!.\n");
109 return memory_config[0];
110 }
111 }
112
113
114 /*
115 * Initalize SDRAM - configure SDRAM controller, detect memory size.
116 */
117 long int initdram(int board_type)
118 {
119 ulong dramsize = 0;
120 #ifndef CFG_RAMBOOT
121 ulong test1, test2;
122 mem_conf_t *mem_conf;
123
124 mem_conf = get_mem_config(board_type);
125
126 /* configure SDRAM start/end for detection */
127 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x0000001e; /* 2G at 0x0 */
128
129 /* setup config registers */
130 *(vu_long *)MPC5XXX_SDRAM_CONFIG1 = mem_conf->config1;
131 *(vu_long *)MPC5XXX_SDRAM_CONFIG2 = mem_conf->config2;
132
133 sdram_start(0, mem_conf);
134 test1 = get_ram_size((long *)CFG_SDRAM_BASE, 0x80000000);
135 sdram_start(1, mem_conf);
136 test2 = get_ram_size((long *)CFG_SDRAM_BASE, 0x80000000);
137 if (test1 > test2) {
138 sdram_start(0, mem_conf);
139 dramsize = test1;
140 } else
141 dramsize = test2;
142
143 /* memory smaller than 1MB is impossible */
144 if (dramsize < (1 << 20))
145 dramsize = 0;
146
147 /* set SDRAM CS0 size according to the amount of RAM found */
148 if (dramsize > 0) {
149 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x13 +
150 __builtin_ffs(dramsize >> 20) - 1;
151 } else
152 *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0; /* disabled */
153 #else /* CFG_RAMBOOT */
154 /* retrieve size of memory connected to SDRAM CS0 */
155 dramsize = *(vu_long *)MPC5XXX_SDRAM_CS0CFG & 0xFF;
156 if (dramsize >= 0x13)
157 dramsize = (1 << (dramsize - 0x13)) << 20;
158 else
159 dramsize = 0;
160 #endif /* !CFG_RAMBOOT */
161
162 /*
163 * On MPC5200B we need to set the special configuration delay in the
164 * DDR controller. Refer to chapter 8.7.5 SDelay--MBAR + 0x0190 of
165 * the MPC5200B User's Manual.
166 */
167 *(vu_long *)MPC5XXX_SDRAM_SDELAY = 0x04;
168 __asm__ volatile ("sync");
169
170 return dramsize;
171 }
172
173
174 /*
175 * Read module hardware identification data from the I2C EEPROM.
176 */
177 static void read_hw_id(hw_id_t hw_id)
178 {
179 int i;
180 for (i = 0; i < HW_ID_ELEM_COUNT; ++i)
181 if (i2c_read(CFG_I2C_EEPROM,
182 hw_id_format[i].offset,
183 2,
184 (uchar *)&hw_id[i][0],
185 hw_id_format[i].length) != 0)
186 printf("ERROR: can't read HW ID from EEPROM\n");
187 }
188
189
190 /*
191 * Identify module we are running on, set gd->board_type to the index in
192 * hw_id_list[] corresponding to the module identifed, or to
193 * CM5200_UNKNOWN_MODULE if we can't identify the module.
194 */
195 static void identify_module(hw_id_t hw_id)
196 {
197 int i, j, element;
198 char match;
199 gd->board_type = CM5200_UNKNOWN_MODULE;
200 for (i = 0; i < sizeof (hw_id_list) / sizeof (char **); ++i) {
201 match = 1;
202 for (j = 0; j < sizeof (hw_id_identify) / sizeof (int); ++j) {
203 element = hw_id_identify[j];
204 if (strncmp(hw_id_list[i][element],
205 &hw_id[element][0],
206 hw_id_format[element].length) != 0) {
207 match = 0;
208 break;
209 }
210 }
211 if (match) {
212 gd->board_type = i;
213 break;
214 }
215 }
216 }
217
218
219 /*
220 * Compose string with module name.
221 * buf is assumed to have enough space, and be null-terminated.
222 */
223 static void compose_module_name(hw_id_t hw_id, char *buf)
224 {
225 char tmp[MODULE_NAME_MAXLEN];
226 strncat(buf, &hw_id[PCB_NAME][0], hw_id_format[PCB_NAME].length);
227 strncat(buf, ".", 1);
228 strncat(buf, &hw_id[FORM][0], hw_id_format[FORM].length);
229 strncat(buf, &hw_id[VERSION][0], hw_id_format[VERSION].length);
230 strncat(buf, " (", 2);
231 strncat(buf, &hw_id[IDENTIFICATION_NUMBER][0],
232 hw_id_format[IDENTIFICATION_NUMBER].length);
233 sprintf(tmp, " / %u.%u)",
234 hw_id[MAJOR_SW_VERSION][0],
235 hw_id[MINOR_SW_VERSION][0]);
236 strcat(buf, tmp);
237 }
238
239
240 /*
241 * Compose string with hostname.
242 * buf is assumed to have enough space, and be null-terminated.
243 */
244 static void compose_hostname(hw_id_t hw_id, char *buf)
245 {
246 char *p;
247 strncat(buf, &hw_id[PCB_NAME][0], hw_id_format[PCB_NAME].length);
248 strncat(buf, "_", 1);
249 strncat(buf, &hw_id[FORM][0], hw_id_format[FORM].length);
250 strncat(buf, &hw_id[VERSION][0], hw_id_format[VERSION].length);
251 for (p = buf; *p; ++p)
252 *p = tolower(*p);
253
254 }
255
256
257 #if defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_OF_LIBFDT)
258 /*
259 * Update 'model' and 'memory' properties in the blob according to the module
260 * that we are running on.
261 */
262 static void ft_blob_update(void *blob, bd_t *bd)
263 {
264 int len, ret, nodeoffset = 0;
265 char module_name[MODULE_NAME_MAXLEN] = {0};
266 ulong memory_data[2] = {0};
267
268 compose_module_name(hw_id, module_name);
269 len = strlen(module_name) + 1;
270
271 ret = fdt_setprop(blob, nodeoffset, "model", module_name, len);
272 if (ret < 0)
273 printf("ft_blob_update(): cannot set /model property err:%s\n",
274 fdt_strerror(ret));
275
276 memory_data[0] = cpu_to_be32(bd->bi_memstart);
277 memory_data[1] = cpu_to_be32(bd->bi_memsize);
278
279 nodeoffset = fdt_find_node_by_path (blob, "/memory");
280 if (nodeoffset >= 0) {
281 ret = fdt_setprop(blob, nodeoffset, "reg", memory_data,
282 sizeof(memory_data));
283 if (ret < 0)
284 printf("ft_blob_update): cannot set /memory/reg "
285 "property err:%s\n", fdt_strerror(ret));
286 }
287 else {
288 /* memory node is required in dts */
289 printf("ft_blob_update(): cannot find /memory node "
290 "err:%s\n", fdt_strerror(nodeoffset));
291 }
292 }
293 #endif /* defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_OF_LIBFDT) */
294
295
296 /*
297 * Read HW ID from I2C EEPROM and detect the modue we are running on. Note
298 * that we need to use local variable for readout, because global data is not
299 * writable yet (and we'll have to redo the readout later on).
300 */
301 int checkboard(void)
302 {
303 hw_id_t hw_id_tmp;
304 char module_name_tmp[MODULE_NAME_MAXLEN] = "";
305
306 /*
307 * We need I2C to access HW ID data from EEPROM, so we call i2c_init()
308 * here despite the fact that it will be called again later on. We
309 * also use a little trick to silence I2C-related output.
310 */
311 gd->flags |= GD_FLG_SILENT;
312 i2c_init (CFG_I2C_SPEED, CFG_I2C_SLAVE);
313 gd->flags &= ~GD_FLG_SILENT;
314
315 read_hw_id(hw_id_tmp);
316 identify_module(hw_id_tmp); /* this sets gd->board_type */
317 compose_module_name(hw_id_tmp, module_name_tmp);
318
319 if (gd->board_type != CM5200_UNKNOWN_MODULE)
320 printf("Board: %s\n", module_name_tmp);
321 else
322 printf("Board: unrecognized cm5200 module (%s)\n",
323 module_name_tmp);
324
325 return 0;
326 }
327
328
329 int board_early_init_r(void)
330 {
331 /*
332 * Now, when we are in RAM, enable flash write access for detection
333 * process. Note that CS_BOOT cannot be cleared when executing in
334 * flash.
335 */
336 *(vu_long *)MPC5XXX_BOOTCS_CFG &= ~0x1; /* clear RO */
337
338 /* Now that we can write to global data, read HW ID again. */
339 read_hw_id(hw_id);
340 return 0;
341 }
342
343
344 #ifdef CONFIG_POST
345 int post_hotkeys_pressed(void)
346 {
347 return 0;
348 }
349 #endif /* CONFIG_POST */
350
351
352 #if defined(CONFIG_POST) || defined(CONFIG_LOGBUFFER)
353 void post_word_store(ulong a)
354 {
355 vu_long *save_addr = (vu_long *)(MPC5XXX_SRAM + MPC5XXX_SRAM_POST_SIZE);
356 *save_addr = a;
357 }
358
359
360 ulong post_word_load(void)
361 {
362 vu_long *save_addr = (vu_long *)(MPC5XXX_SRAM + MPC5XXX_SRAM_POST_SIZE);
363 return *save_addr;
364 }
365 #endif /* CONFIG_POST || CONFIG_LOGBUFFER */
366
367
368 #ifdef CONFIG_MISC_INIT_R
369 int misc_init_r(void)
370 {
371 #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
372 uchar buf[6];
373 char str[18];
374 char hostname[MODULE_NAME_MAXLEN];
375
376 /* Read ethaddr from EEPROM */
377 if (i2c_read(CFG_I2C_EEPROM, CONFIG_MAC_OFFSET, 2, buf, 6) == 0) {
378 sprintf(str, "%02X:%02X:%02X:%02X:%02X:%02X",
379 buf[0], buf[1], buf[2], buf[3], buf[4], buf[5]);
380 /* Check if MAC addr is owned by Schindler */
381 if (strstr(str, "00:06:C3") != str)
382 printf(LOG_PREFIX "Warning - Illegal MAC address (%s)"
383 " in EEPROM.\n", str);
384 else {
385 printf(LOG_PREFIX "Using MAC (%s) from I2C EEPROM\n",
386 str);
387 setenv("ethaddr", str);
388 }
389 } else {
390 printf(LOG_PREFIX "Warning - Unable to read MAC from I2C"
391 " device at address %02X:%04X\n", CFG_I2C_EEPROM,
392 CONFIG_MAC_OFFSET);
393 }
394 #endif /* defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C) */
395 if (!getenv("ethaddr"))
396 printf(LOG_PREFIX "MAC address not set, networking is not "
397 "operational\n");
398
399 /* set the hostname appropriate to the module we're running on */
400 compose_hostname(hw_id, hostname);
401 setenv("hostname", hostname);
402
403 return 0;
404 }
405 #endif /* CONFIG_MISC_INIT_R */
406
407
408 #ifdef CONFIG_LAST_STAGE_INIT
409 int last_stage_init(void)
410 {
411 #ifdef CONFIG_USB_STORAGE
412 cm5200_fwupdate();
413 #endif /* CONFIG_USB_STORAGE */
414 return 0;
415 }
416 #endif /* CONFIG_LAST_STAGE_INIT */
417
418
419 #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
420 void ft_board_setup(void *blob, bd_t *bd)
421 {
422 ft_cpu_setup(blob, bd);
423 ft_blob_update(blob, bd);
424 }
425 #endif /* defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) */