blob: 7a01705496301cf4f15dd7200ec995b3dcde0bff [file] [log] [blame]
Heiko Schocher1e8f4e72008-11-20 09:59:09 +01001/*
Heiko Schocherb11f53f2011-03-15 16:52:29 +01002 * (C) Copyright 2008-2011
Heiko Schocher1e8f4e72008-11-20 09:59:09 +01003 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
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 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#ifndef __CONFIG_KEYMILE_H
25#define __CONFIG_KEYMILE_H
26
27/* Do boardspecific init for all boards */
Heiko Schocherb11f53f2011-03-15 16:52:29 +010028#define CONFIG_BOARD_EARLY_INIT_R
Heiko Schocherf1fef1d2010-04-26 13:07:28 +020029#define CONFIG_LAST_STAGE_INIT
30
31#define CONFIG_BOOTCOUNT_LIMIT
Heiko Schocher1e8f4e72008-11-20 09:59:09 +010032
Heiko Schocher1e8f4e72008-11-20 09:59:09 +010033/*
34 * Command line configuration.
35 */
36#include <config_cmd_default.h>
37
38#define CONFIG_CMD_ASKENV
39#define CONFIG_CMD_DHCP
Gerlando Falautob0e55d52011-09-22 05:06:12 +000040#define CONFIG_CMD_DEFAULTENV_VARS
Heiko Schocher1e8f4e72008-11-20 09:59:09 +010041#define CONFIG_CMD_ECHO
42#define CONFIG_CMD_IMMAP
43#define CONFIG_CMD_MII
44#define CONFIG_CMD_PING
Heiko Schocher1e8f4e72008-11-20 09:59:09 +010045#define CONFIG_CMD_EEPROM
46#define CONFIG_CMD_I2C
Heiko Schocher364123d2009-03-12 07:37:18 +010047#define CONFIG_CMD_JFFS2
Heiko Schocherdc71b242009-07-09 12:04:18 +020048#define CONFIG_CMD_MTDPARTS
Holger Brunckf41ee962011-03-14 15:49:05 +010049#define CONFIG_CMD_SETEXPR
Heiko Schocher1e8f4e72008-11-20 09:59:09 +010050
Heiko Schocherb11f53f2011-03-15 16:52:29 +010051#undef CONFIG_WATCHDOG /* disable platform specific watchdog */
Heiko Schocher1e8f4e72008-11-20 09:59:09 +010052
Holger Brunckf41ee962011-03-14 15:49:05 +010053#define CONFIG_BOOTDELAY 2 /* autoboot after 2 seconds */
Heiko Schocherb11f53f2011-03-15 16:52:29 +010054#undef CONFIG_BOOTARGS /* the boot command will set bootargs */
Heiko Schocher1e8f4e72008-11-20 09:59:09 +010055
56/*
57 * Miscellaneous configurable options
58 */
59#define CONFIG_SYS_HUSH_PARSER
60#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
Heiko Schocherb11f53f2011-03-15 16:52:29 +010061#define CONFIG_SYS_LONGHELP /* undef to save memory */
62#define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
Heiko Schocher1e8f4e72008-11-20 09:59:09 +010063#if defined(CONFIG_CMD_KGDB)
Heiko Schocherb11f53f2011-03-15 16:52:29 +010064#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
Heiko Schocher1e8f4e72008-11-20 09:59:09 +010065#else
Holger Brunckf41ee962011-03-14 15:49:05 +010066#define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
Heiko Schocher1e8f4e72008-11-20 09:59:09 +010067#endif
Heiko Schocherb11f53f2011-03-15 16:52:29 +010068#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
Holger Brunckf41ee962011-03-14 15:49:05 +010069#define CONFIG_SYS_MAXARGS 32 /* max number of command args */
Heiko Schocherb11f53f2011-03-15 16:52:29 +010070#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
71#define CONFIG_CMDLINE_EDITING
72#define CONFIG_AUTO_COMPLETE
Heiko Schocher1e8f4e72008-11-20 09:59:09 +010073
Heiko Schocherb11f53f2011-03-15 16:52:29 +010074#define CONFIG_HUSH_INIT_VAR
Heiko Schocher1e8f4e72008-11-20 09:59:09 +010075
76#define CONFIG_SYS_ALT_MEMTEST /* memory test, takes time */
Heiko Schocher1e8f4e72008-11-20 09:59:09 +010077
Heiko Schocherb11f53f2011-03-15 16:52:29 +010078#define CONFIG_SYS_HZ 1000 /* decr. freq: 1 ms ticks */
Heiko Schocher1e8f4e72008-11-20 09:59:09 +010079
Heiko Schocherb11f53f2011-03-15 16:52:29 +010080#define CONFIG_BAUDRATE 115200
Holger Brunck499b1a42011-04-08 02:47:46 +000081#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, 230400 }
Heiko Schocher1e8f4e72008-11-20 09:59:09 +010082
Heiko Schocherb11f53f2011-03-15 16:52:29 +010083#define CONFIG_LOADS_ECHO
84#define CONFIG_SYS_LOADS_BAUD_CHANGE
Prafulla Wadaskarbeeb2582010-09-30 19:33:19 +053085#define CONFIG_SYS_BOARD_DRAM_INIT /* Used board specific dram_init */
Heiko Schocher1e8f4e72008-11-20 09:59:09 +010086
Heiko Schocherb11f53f2011-03-15 16:52:29 +010087#define CONFIG_I2C_MULTI_BUS
Heiko Schocherdc71b242009-07-09 12:04:18 +020088#define CONFIG_SYS_MAX_I2C_BUS 1
Heiko Schocherb11f53f2011-03-15 16:52:29 +010089#define CONFIG_SYS_I2C_INIT_BOARD
90#define CONFIG_I2C_MUX
Heiko Schocher364123d2009-03-12 07:37:18 +010091
Heiko Schocher364123d2009-03-12 07:37:18 +010092/* Support the IVM EEprom */
93#define CONFIG_SYS_IVM_EEPROM_ADR 0x50
94#define CONFIG_SYS_IVM_EEPROM_MAX_LEN 0x400
95#define CONFIG_SYS_IVM_EEPROM_PAGE_LEN 0x100
96
Heiko Schocherb11f53f2011-03-15 16:52:29 +010097#define CONFIG_SYS_FLASH_PROTECTION
Heiko Schocher364123d2009-03-12 07:37:18 +010098
Heiko Schocher1e8f4e72008-11-20 09:59:09 +010099/*
100 * BOOTP options
101 */
102#define CONFIG_BOOTP_BOOTFILESIZE
103#define CONFIG_BOOTP_BOOTPATH
104#define CONFIG_BOOTP_GATEWAY
105#define CONFIG_BOOTP_HOSTNAME
106
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100107#define CONFIG_SYS_MALLOC_LEN (4 * 1024 * 1024)
Heiko Schocherdc71b242009-07-09 12:04:18 +0200108
Heiko Schocherdc71b242009-07-09 12:04:18 +0200109/* UBI Support for all Keymile boards */
110#define CONFIG_CMD_UBI
111#define CONFIG_RBTREE
112#define CONFIG_MTD_PARTITIONS
Heiko Schocherdc71b242009-07-09 12:04:18 +0200113#define CONFIG_MTD_DEVICE
114#define CONFIG_MTD_CONCAT
115
Holger Brunckf7fb46a2011-06-05 22:22:21 +0000116#define CONFIG_CMD_CRAMFS
117#define CONFIG_CRAMFS_CMDLINE
118
Holger Bruncka21b5d42011-03-04 14:56:27 +0100119#ifndef CONFIG_KM_DEF_ENV_BOOTPARAMS
120#define CONFIG_KM_DEF_ENV_BOOTPARAMS \
Holger Brunckdb0bb572011-07-04 21:27:16 +0000121 "actual_bank=0\0"
Heiko Schocher364123d2009-03-12 07:37:18 +0100122#endif
123
Holger Brunckde3ad132011-03-14 16:01:04 +0100124#ifndef CONFIG_KM_DEF_NETDEV
125#define CONFIG_KM_DEF_NETDEV \
126 "netdev=eth0\0"
127#endif
128
129#ifndef CONFIG_KM_UBI_PARTITION_NAME
130#define CONFIG_KM_UBI_PARTITION_NAME "ubi0"
131#endif
132#ifndef CONFIG_KM_UBI_LINUX_MTD_NAME
133#define CONFIG_KM_UBI_LINUX_MTD_NAME "ubi0"
134#endif
135
Heiko Schocher364123d2009-03-12 07:37:18 +0100136#define xstr(s) str(s)
137#define str(s) #s
138
Holger Brunckde3ad132011-03-14 16:01:04 +0100139/*
Holger Bruncka21b5d42011-03-04 14:56:27 +0100140 * boottargets
Holger Brunckdb0bb572011-07-04 21:27:16 +0000141 * - set 'subbootcmds'
Holger Bruncka21b5d42011-03-04 14:56:27 +0100142 * - set 'bootcmd' and 'altbootcmd'
143 * available targets:
144 * - 'release': for a standalone system kernel/rootfs from flash
Holger Bruncka21b5d42011-03-04 14:56:27 +0100145 */
146#define CONFIG_KM_DEF_ENV_BOOTTARGETS \
Holger Brunckdb0bb572011-07-04 21:27:16 +0000147 "subbootcmds=ubiattach ubicopy cramfsloadfdt cramfsloadkernel " \
148 "flashargs add_default addpanic boot\0" \
Holger Brunckb648bfc2011-07-04 21:52:52 +0000149 "develop=" \
150 "tftp 200000 scripts/develop-${arch}.txt && " \
Holger Brunck2d9528e2011-05-04 01:47:34 +0000151 "env import -t 200000 ${filesize} && " \
Holger Brunckb648bfc2011-07-04 21:52:52 +0000152 "run setup_debug_env\0" \
153 "ramfs=" \
154 "tftp 200000 scripts/ramfs-${arch}.txt && " \
155 "env import -t 200000 ${filesize} && " \
156 "run setup_debug_env\0" \
Holger Bruncka21b5d42011-03-04 14:56:27 +0100157 ""
158
159/*
Holger Brunckde3ad132011-03-14 16:01:04 +0100160 * bootargs
161 * - modify 'bootargs'
162 *
Holger Brunckdb0bb572011-07-04 21:27:16 +0000163 * - 'add_default': default bootargs common for all arm/ppc boards
Holger Brunckde3ad132011-03-14 16:01:04 +0100164 * - 'addpanic': add kernel panic options
Holger Brunckde3ad132011-03-14 16:01:04 +0100165 * - 'flashargs': defaults arguments for flash base boot
166 *
Holger Brunckde3ad132011-03-14 16:01:04 +0100167 */
168#define CONFIG_KM_DEF_ENV_BOOTARGS \
Holger Brunckdb0bb572011-07-04 21:27:16 +0000169 "add_default=" \
Holger Brunckde3ad132011-03-14 16:01:04 +0100170 "setenv bootargs ${bootargs} " \
171 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
Holger Brunckdb0bb572011-07-04 21:27:16 +0000172 ":${hostname}:${netdev}:off3" \
173 " console=" CONFIG_KM_CONSOLE_TTY ",${baudrate}" \
Andreas Huber2a7714c2011-09-13 23:06:11 +0000174 " mem=${kernelmem} init=${init}" \
Holger Brunckdb0bb572011-07-04 21:27:16 +0000175 " phram.phram=phvar,${varaddr}," xstr(CONFIG_KM_PHRAM) \
176 " ubi.mtd=" CONFIG_KM_UBI_LINUX_MTD_NAME " " \
177 CONFIG_KM_DEF_BOOT_ARGS_CPU \
178 "\0" \
Holger Brunckde3ad132011-03-14 16:01:04 +0100179 "addpanic=" \
Holger Brunck2d9528e2011-05-04 01:47:34 +0000180 "setenv bootargs ${bootargs} panic=1 panic_on_oops=1\0" \
Holger Brunckde3ad132011-03-14 16:01:04 +0100181 "flashargs=" \
182 "setenv bootargs " \
Thomas Herzmanne80ab3e2011-04-08 02:47:41 +0000183 "root=mtdblock:rootfs${boot_bank} " \
Holger Brunckde3ad132011-03-14 16:01:04 +0100184 "rootfstype=squashfs ro\0" \
185 ""
186
Holger Bruncka21b5d42011-03-04 14:56:27 +0100187/*
Holger Brunckde3ad132011-03-14 16:01:04 +0100188 * flash_boot
189 * - commands for booting from flash
190 *
Holger Brunckde3ad132011-03-14 16:01:04 +0100191 * - 'cramfsloadkernel': copy kernel from a cramfs to ram
192 * - 'ubiattach': attach ubi partition
193 * - 'ubicopy': copy ubi volume to ram
194 * - volume names: bootfs0, bootfs1, bootfs2, ...
Holger Brunckde3ad132011-03-14 16:01:04 +0100195 *
196 * processor specific settings
197 * - 'cramfsloadfdt': copy fdt from a cramfs to ram
198 */
199#define CONFIG_KM_DEF_ENV_FLASH_BOOT \
Holger Brunck2d9528e2011-05-04 01:47:34 +0000200 "cramfsaddr=" xstr(CONFIG_KM_CRAMFS_ADDR) "\0" \
Holger Brunckdb0bb572011-07-04 21:27:16 +0000201 "cramfsloadkernel=cramfsload ${load_addr_r} uImage\0" \
Holger Brunck2d9528e2011-05-04 01:47:34 +0000202 "ubiattach=ubi part " CONFIG_KM_UBI_PARTITION_NAME "\0" \
203 "ubicopy=ubi read "xstr(CONFIG_KM_CRAMFS_ADDR) \
204 " bootfs${boot_bank}\0" \
Holger Bruncka21b5d42011-03-04 14:56:27 +0100205 ""
Holger Brunckde3ad132011-03-14 16:01:04 +0100206
207/*
208 * constants
209 * - KM specific constants and commands
210 *
211 * - 'default': setup default environment
212 */
213#define CONFIG_KM_DEF_ENV_CONSTANTS \
Thomas Herzmanne80ab3e2011-04-08 02:47:41 +0000214 "backup_bank=0\0" \
Holger Brunckdb0bb572011-07-04 21:27:16 +0000215 "release=run newenv; reset\0" \
Holger Brunck638a48e2011-05-12 19:59:24 +0000216 "pnvramsize=" xstr(CONFIG_KM_PNVRAM) "\0" \
Thomas Herzmann0333cfe2011-06-05 22:22:13 +0000217 "testbootcmd=setenv boot_bank ${test_bank}; " \
218 "run ${subbootcmds}; reset\0" \
Holger Brunckde3ad132011-03-14 16:01:04 +0100219 ""
220
Heiko Schocher364123d2009-03-12 07:37:18 +0100221#ifndef CONFIG_KM_DEF_ENV
222#define CONFIG_KM_DEF_ENV \
Holger Bruncka21b5d42011-03-04 14:56:27 +0100223 CONFIG_KM_DEF_ENV_BOOTPARAMS \
Holger Brunckde3ad132011-03-14 16:01:04 +0100224 CONFIG_KM_DEF_NETDEV \
225 CONFIG_KM_DEF_ENV_CPU \
Holger Bruncka21b5d42011-03-04 14:56:27 +0100226 CONFIG_KM_DEF_ENV_BOOTTARGETS \
Holger Brunckde3ad132011-03-14 16:01:04 +0100227 CONFIG_KM_DEF_ENV_BOOTARGS \
Holger Brunckde3ad132011-03-14 16:01:04 +0100228 CONFIG_KM_DEF_ENV_FLASH_BOOT \
Holger Bruncka21b5d42011-03-04 14:56:27 +0100229 CONFIG_KM_DEF_ENV_CONSTANTS \
Holger Brunckde3ad132011-03-14 16:01:04 +0100230 "altbootcmd=run bootcmd\0" \
Holger Brunckdb0bb572011-07-04 21:27:16 +0000231 "bootcmd=km_checkbidhwk && " \
232 " setenv bootcmd \'setenv boot_bank ${actual_bank}; " \
233 "run ${subbootcmds}; reset\' && " \
234 "setenv altbootcmd \'setenv boot_bank ${backup_bank}; " \
235 "run ${subbootcmds}; reset\' && " \
236 "saveenv && saveenv && boot\0" \
Holger Brunckde3ad132011-03-14 16:01:04 +0100237 "bootlimit=2\0" \
238 "init=/sbin/init-overlay.sh\0" \
Holger Brunckdb0bb572011-07-04 21:27:16 +0000239 "load_addr_r="xstr(CONFIG_KM_KERNEL_ADDR) "\0" \
240 "load=tftpboot ${load_addr_r} ${u-boot}\0" \
Holger Brunckde3ad132011-03-14 16:01:04 +0100241 "mtdids=" MTDIDS_DEFAULT "\0" \
242 "mtdparts=" MTDPARTS_DEFAULT "\0" \
Holger Brunckec9a3742011-03-04 10:16:00 +0100243 "stderr=serial\0" \
244 "stdin=serial\0" \
245 "stdout=serial\0" \
Heiko Schocher364123d2009-03-12 07:37:18 +0100246 ""
247#endif /* CONFIG_KM_DEF_ENV */
248
Holger Brunck499b1a42011-04-08 02:47:46 +0000249#define CONFIG_VERSION_VARIABLE /* include version env variable */
Heiko Schocher364123d2009-03-12 07:37:18 +0100250
Heiko Schocher1e8f4e72008-11-20 09:59:09 +0100251#endif /* __CONFIG_KEYMILE_H */