blob: 87f524a1b8aa6988a585ab76642784c6f2b6c41f [file] [log] [blame]
Heiko Schocher67fa8c22010-02-22 16:43:02 +05301/*
2 * (C) Copyright 2009
3 * Marvell Semiconductor <www.marvell.com>
4 * Prafulla Wadaskar <prafulla@marvell.com>
5 *
6 * (C) Copyright 2009
7 * Stefan Roese, DENX Software Engineering, sr@denx.de.
8 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
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., 51 Franklin Street, Fifth Floor, Boston,
25 * MA 02110-1301 USA
26 */
27
28/*
29 * for linking errors see
30 * http://lists.denx.de/pipermail/u-boot/2009-July/057350.html
31 */
32
33#ifndef _CONFIG_SUEN3_H
34#define _CONFIG_SUEN3_H
35
36/* include common defines/options for all arm based Keymile boards */
37#include "km_arm.h"
38
39/*
40 * Version number information
41 */
42#define CONFIG_IDENT_STRING "\nKeymile SUEN3"
43
44#define CONFIG_HOSTNAME suen3
45
46/*
Heiko Schocher67fa8c22010-02-22 16:43:02 +053047 * Default environment variables
48 */
49#define CONFIG_EXTRA_ENV_SETTINGS \
50 CONFIG_KM_DEF_ENV \
51 "memsize=0x8000000\0" \
52 "newenv=setenv addr 0x100000 && " \
53 "i2c dev 1; mw.b ${addr} 0 4 && " \
54 "eeprom write " xstr(CONFIG_SYS_DEF_EEPROM_ADDR) \
55 " ${addr} " xstr(CONFIG_ENV_OFFSET) " 4 && " \
56 "eeprom write " xstr(CONFIG_SYS_DEF_EEPROM_ADDR) \
57 " ${addr} " xstr(CONFIG_ENV_OFFSET_REDUND) " 4\0" \
58 "rootpath=/opt/eldk/arm\0" \
59 "EEprom_ivm=pca9544a:70:9\0" \
60 ""
61
62#endif /* _CONFIG_SUEN3_H */