2008-11-20 08:59:09 +00:00
|
|
|
/*
|
2011-03-15 15:52:29 +00:00
|
|
|
* (C) Copyright 2008-2011
|
2008-11-20 08:59:09 +00:00
|
|
|
* Heiko Schocher, DENX Software Engineering, hs@denx.de.
|
|
|
|
*
|
|
|
|
* See file CREDITS for list of people who contributed to this
|
|
|
|
* project.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_KEYMILE_H
|
|
|
|
#define __CONFIG_KEYMILE_H
|
|
|
|
|
|
|
|
/* Do boardspecific init for all boards */
|
2011-03-15 15:52:29 +00:00
|
|
|
#define CONFIG_BOARD_EARLY_INIT_R
|
2010-04-26 11:07:28 +00:00
|
|
|
#define CONFIG_LAST_STAGE_INIT
|
|
|
|
|
|
|
|
#define CONFIG_BOOTCOUNT_LIMIT
|
2008-11-20 08:59:09 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Command line configuration.
|
|
|
|
*/
|
|
|
|
#include <config_cmd_default.h>
|
|
|
|
|
|
|
|
#define CONFIG_CMD_ASKENV
|
|
|
|
#define CONFIG_CMD_DHCP
|
2011-09-22 05:06:12 +00:00
|
|
|
#define CONFIG_CMD_DEFAULTENV_VARS
|
2008-11-20 08:59:09 +00:00
|
|
|
#define CONFIG_CMD_ECHO
|
|
|
|
#define CONFIG_CMD_IMMAP
|
|
|
|
#define CONFIG_CMD_MII
|
|
|
|
#define CONFIG_CMD_PING
|
|
|
|
#define CONFIG_CMD_EEPROM
|
|
|
|
#define CONFIG_CMD_I2C
|
2009-03-12 06:37:18 +00:00
|
|
|
#define CONFIG_CMD_JFFS2
|
2009-07-09 10:04:18 +00:00
|
|
|
#define CONFIG_CMD_MTDPARTS
|
2011-03-14 14:49:05 +00:00
|
|
|
#define CONFIG_CMD_SETEXPR
|
2008-11-20 08:59:09 +00:00
|
|
|
|
2011-03-15 15:52:29 +00:00
|
|
|
#undef CONFIG_WATCHDOG /* disable platform specific watchdog */
|
2008-11-20 08:59:09 +00:00
|
|
|
|
2011-03-14 14:49:05 +00:00
|
|
|
#define CONFIG_BOOTDELAY 2 /* autoboot after 2 seconds */
|
2011-03-15 15:52:29 +00:00
|
|
|
#undef CONFIG_BOOTARGS /* the boot command will set bootargs */
|
2008-11-20 08:59:09 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Miscellaneous configurable options
|
|
|
|
*/
|
|
|
|
#define CONFIG_SYS_HUSH_PARSER
|
|
|
|
#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
|
2011-03-15 15:52:29 +00:00
|
|
|
#define CONFIG_SYS_LONGHELP /* undef to save memory */
|
|
|
|
#define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
|
2008-11-20 08:59:09 +00:00
|
|
|
#if defined(CONFIG_CMD_KGDB)
|
2011-03-15 15:52:29 +00:00
|
|
|
#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
|
2008-11-20 08:59:09 +00:00
|
|
|
#else
|
2011-03-14 14:49:05 +00:00
|
|
|
#define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
|
2008-11-20 08:59:09 +00:00
|
|
|
#endif
|
2011-03-15 15:52:29 +00:00
|
|
|
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
|
2011-03-14 14:49:05 +00:00
|
|
|
#define CONFIG_SYS_MAXARGS 32 /* max number of command args */
|
2011-03-15 15:52:29 +00:00
|
|
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
|
|
|
#define CONFIG_CMDLINE_EDITING
|
|
|
|
#define CONFIG_AUTO_COMPLETE
|
2008-11-20 08:59:09 +00:00
|
|
|
|
2011-03-15 15:52:29 +00:00
|
|
|
#define CONFIG_HUSH_INIT_VAR
|
2008-11-20 08:59:09 +00:00
|
|
|
|
|
|
|
#define CONFIG_SYS_ALT_MEMTEST /* memory test, takes time */
|
|
|
|
|
2011-03-15 15:52:29 +00:00
|
|
|
#define CONFIG_SYS_HZ 1000 /* decr. freq: 1 ms ticks */
|
2008-11-20 08:59:09 +00:00
|
|
|
|
2011-03-15 15:52:29 +00:00
|
|
|
#define CONFIG_BAUDRATE 115200
|
2011-04-08 02:47:46 +00:00
|
|
|
#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, 230400 }
|
2008-11-20 08:59:09 +00:00
|
|
|
|
2011-03-15 15:52:29 +00:00
|
|
|
#define CONFIG_LOADS_ECHO
|
|
|
|
#define CONFIG_SYS_LOADS_BAUD_CHANGE
|
2010-09-30 14:03:19 +00:00
|
|
|
#define CONFIG_SYS_BOARD_DRAM_INIT /* Used board specific dram_init */
|
2008-11-20 08:59:09 +00:00
|
|
|
|
2011-03-15 15:52:29 +00:00
|
|
|
#define CONFIG_I2C_MULTI_BUS
|
2009-07-09 10:04:18 +00:00
|
|
|
#define CONFIG_SYS_MAX_I2C_BUS 1
|
2011-03-15 15:52:29 +00:00
|
|
|
#define CONFIG_SYS_I2C_INIT_BOARD
|
|
|
|
#define CONFIG_I2C_MUX
|
2009-03-12 06:37:18 +00:00
|
|
|
|
|
|
|
/* Support the IVM EEprom */
|
|
|
|
#define CONFIG_SYS_IVM_EEPROM_ADR 0x50
|
|
|
|
#define CONFIG_SYS_IVM_EEPROM_MAX_LEN 0x400
|
|
|
|
#define CONFIG_SYS_IVM_EEPROM_PAGE_LEN 0x100
|
|
|
|
|
2011-03-15 15:52:29 +00:00
|
|
|
#define CONFIG_SYS_FLASH_PROTECTION
|
2009-03-12 06:37:18 +00:00
|
|
|
|
2008-11-20 08:59:09 +00:00
|
|
|
/*
|
|
|
|
* BOOTP options
|
|
|
|
*/
|
|
|
|
#define CONFIG_BOOTP_BOOTFILESIZE
|
|
|
|
#define CONFIG_BOOTP_BOOTPATH
|
|
|
|
#define CONFIG_BOOTP_GATEWAY
|
|
|
|
#define CONFIG_BOOTP_HOSTNAME
|
|
|
|
|
2011-03-15 15:52:29 +00:00
|
|
|
#define CONFIG_SYS_MALLOC_LEN (4 * 1024 * 1024)
|
2009-07-09 10:04:18 +00:00
|
|
|
|
|
|
|
/* UBI Support for all Keymile boards */
|
|
|
|
#define CONFIG_CMD_UBI
|
|
|
|
#define CONFIG_RBTREE
|
|
|
|
#define CONFIG_MTD_PARTITIONS
|
|
|
|
#define CONFIG_MTD_DEVICE
|
|
|
|
#define CONFIG_MTD_CONCAT
|
|
|
|
|
2011-06-05 22:22:21 +00:00
|
|
|
#define CONFIG_CMD_CRAMFS
|
|
|
|
#define CONFIG_CRAMFS_CMDLINE
|
|
|
|
|
2011-03-04 13:56:27 +00:00
|
|
|
#ifndef CONFIG_KM_DEF_ENV_BOOTPARAMS
|
|
|
|
#define CONFIG_KM_DEF_ENV_BOOTPARAMS \
|
2011-07-04 21:27:16 +00:00
|
|
|
"actual_bank=0\0"
|
2009-03-12 06:37:18 +00:00
|
|
|
#endif
|
|
|
|
|
2011-03-14 15:01:04 +00:00
|
|
|
#ifndef CONFIG_KM_DEF_NETDEV
|
|
|
|
#define CONFIG_KM_DEF_NETDEV \
|
|
|
|
"netdev=eth0\0"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CONFIG_KM_UBI_PARTITION_NAME
|
|
|
|
#define CONFIG_KM_UBI_PARTITION_NAME "ubi0"
|
|
|
|
#endif
|
|
|
|
#ifndef CONFIG_KM_UBI_LINUX_MTD_NAME
|
|
|
|
#define CONFIG_KM_UBI_LINUX_MTD_NAME "ubi0"
|
|
|
|
#endif
|
|
|
|
|
2009-03-12 06:37:18 +00:00
|
|
|
#define xstr(s) str(s)
|
|
|
|
#define str(s) #s
|
|
|
|
|
2011-03-04 13:56:27 +00:00
|
|
|
/*
|
|
|
|
* boottargets
|
2011-07-04 21:27:16 +00:00
|
|
|
* - set 'subbootcmds'
|
2011-03-04 13:56:27 +00:00
|
|
|
* - set 'bootcmd' and 'altbootcmd'
|
|
|
|
* available targets:
|
|
|
|
* - 'release': for a standalone system kernel/rootfs from flash
|
|
|
|
*/
|
|
|
|
#define CONFIG_KM_DEF_ENV_BOOTTARGETS \
|
2011-07-04 21:27:16 +00:00
|
|
|
"subbootcmds=ubiattach ubicopy cramfsloadfdt cramfsloadkernel " \
|
|
|
|
"flashargs add_default addpanic boot\0" \
|
2011-07-04 21:52:52 +00:00
|
|
|
"develop=" \
|
|
|
|
"tftp 200000 scripts/develop-${arch}.txt && " \
|
2011-05-04 01:47:34 +00:00
|
|
|
"env import -t 200000 ${filesize} && " \
|
2011-07-04 21:52:52 +00:00
|
|
|
"run setup_debug_env\0" \
|
|
|
|
"ramfs=" \
|
|
|
|
"tftp 200000 scripts/ramfs-${arch}.txt && " \
|
|
|
|
"env import -t 200000 ${filesize} && " \
|
|
|
|
"run setup_debug_env\0" \
|
2011-03-04 13:56:27 +00:00
|
|
|
""
|
|
|
|
|
2011-03-14 15:01:04 +00:00
|
|
|
/*
|
|
|
|
* bootargs
|
|
|
|
* - modify 'bootargs'
|
|
|
|
*
|
2011-07-04 21:27:16 +00:00
|
|
|
* - 'add_default': default bootargs common for all arm/ppc boards
|
2011-03-14 15:01:04 +00:00
|
|
|
* - 'addpanic': add kernel panic options
|
|
|
|
* - 'flashargs': defaults arguments for flash base boot
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#define CONFIG_KM_DEF_ENV_BOOTARGS \
|
2011-07-04 21:27:16 +00:00
|
|
|
"add_default=" \
|
2011-03-14 15:01:04 +00:00
|
|
|
"setenv bootargs ${bootargs} " \
|
|
|
|
"ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
|
2011-07-04 21:27:16 +00:00
|
|
|
":${hostname}:${netdev}:off3" \
|
|
|
|
" console=" CONFIG_KM_CONSOLE_TTY ",${baudrate}" \
|
2011-09-13 23:06:11 +00:00
|
|
|
" mem=${kernelmem} init=${init}" \
|
2011-07-04 21:27:16 +00:00
|
|
|
" phram.phram=phvar,${varaddr}," xstr(CONFIG_KM_PHRAM) \
|
|
|
|
" ubi.mtd=" CONFIG_KM_UBI_LINUX_MTD_NAME " " \
|
|
|
|
CONFIG_KM_DEF_BOOT_ARGS_CPU \
|
|
|
|
"\0" \
|
2011-03-14 15:01:04 +00:00
|
|
|
"addpanic=" \
|
2011-05-04 01:47:34 +00:00
|
|
|
"setenv bootargs ${bootargs} panic=1 panic_on_oops=1\0" \
|
2011-03-14 15:01:04 +00:00
|
|
|
"flashargs=" \
|
|
|
|
"setenv bootargs " \
|
2011-04-08 02:47:41 +00:00
|
|
|
"root=mtdblock:rootfs${boot_bank} " \
|
2011-03-14 15:01:04 +00:00
|
|
|
"rootfstype=squashfs ro\0" \
|
|
|
|
""
|
|
|
|
|
|
|
|
/*
|
|
|
|
* flash_boot
|
|
|
|
* - commands for booting from flash
|
|
|
|
*
|
|
|
|
* - 'cramfsloadkernel': copy kernel from a cramfs to ram
|
|
|
|
* - 'ubiattach': attach ubi partition
|
|
|
|
* - 'ubicopy': copy ubi volume to ram
|
|
|
|
* - volume names: bootfs0, bootfs1, bootfs2, ...
|
|
|
|
*
|
|
|
|
* processor specific settings
|
|
|
|
* - 'cramfsloadfdt': copy fdt from a cramfs to ram
|
|
|
|
*/
|
|
|
|
#define CONFIG_KM_DEF_ENV_FLASH_BOOT \
|
2011-05-04 01:47:34 +00:00
|
|
|
"cramfsaddr=" xstr(CONFIG_KM_CRAMFS_ADDR) "\0" \
|
2011-07-04 21:27:16 +00:00
|
|
|
"cramfsloadkernel=cramfsload ${load_addr_r} uImage\0" \
|
2011-05-04 01:47:34 +00:00
|
|
|
"ubiattach=ubi part " CONFIG_KM_UBI_PARTITION_NAME "\0" \
|
|
|
|
"ubicopy=ubi read "xstr(CONFIG_KM_CRAMFS_ADDR) \
|
|
|
|
" bootfs${boot_bank}\0" \
|
2011-03-04 13:56:27 +00:00
|
|
|
""
|
2011-03-14 15:01:04 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* constants
|
|
|
|
* - KM specific constants and commands
|
|
|
|
*
|
|
|
|
* - 'default': setup default environment
|
|
|
|
*/
|
|
|
|
#define CONFIG_KM_DEF_ENV_CONSTANTS \
|
2011-04-08 02:47:41 +00:00
|
|
|
"backup_bank=0\0" \
|
2011-07-04 21:27:16 +00:00
|
|
|
"release=run newenv; reset\0" \
|
2011-05-12 19:59:24 +00:00
|
|
|
"pnvramsize=" xstr(CONFIG_KM_PNVRAM) "\0" \
|
2011-06-05 22:22:13 +00:00
|
|
|
"testbootcmd=setenv boot_bank ${test_bank}; " \
|
|
|
|
"run ${subbootcmds}; reset\0" \
|
2011-03-14 15:01:04 +00:00
|
|
|
""
|
|
|
|
|
2009-03-12 06:37:18 +00:00
|
|
|
#ifndef CONFIG_KM_DEF_ENV
|
|
|
|
#define CONFIG_KM_DEF_ENV \
|
2011-03-04 13:56:27 +00:00
|
|
|
CONFIG_KM_DEF_ENV_BOOTPARAMS \
|
2011-03-14 15:01:04 +00:00
|
|
|
CONFIG_KM_DEF_NETDEV \
|
|
|
|
CONFIG_KM_DEF_ENV_CPU \
|
2011-03-04 13:56:27 +00:00
|
|
|
CONFIG_KM_DEF_ENV_BOOTTARGETS \
|
2011-03-14 15:01:04 +00:00
|
|
|
CONFIG_KM_DEF_ENV_BOOTARGS \
|
|
|
|
CONFIG_KM_DEF_ENV_FLASH_BOOT \
|
2011-03-04 13:56:27 +00:00
|
|
|
CONFIG_KM_DEF_ENV_CONSTANTS \
|
2011-03-14 15:01:04 +00:00
|
|
|
"altbootcmd=run bootcmd\0" \
|
2011-07-04 21:27:16 +00:00
|
|
|
"bootcmd=km_checkbidhwk && " \
|
|
|
|
" setenv bootcmd \'setenv boot_bank ${actual_bank}; " \
|
|
|
|
"run ${subbootcmds}; reset\' && " \
|
|
|
|
"setenv altbootcmd \'setenv boot_bank ${backup_bank}; " \
|
|
|
|
"run ${subbootcmds}; reset\' && " \
|
|
|
|
"saveenv && saveenv && boot\0" \
|
2011-03-14 15:01:04 +00:00
|
|
|
"bootlimit=2\0" \
|
|
|
|
"init=/sbin/init-overlay.sh\0" \
|
2011-07-04 21:27:16 +00:00
|
|
|
"load_addr_r="xstr(CONFIG_KM_KERNEL_ADDR) "\0" \
|
|
|
|
"load=tftpboot ${load_addr_r} ${u-boot}\0" \
|
2011-03-14 15:01:04 +00:00
|
|
|
"mtdids=" MTDIDS_DEFAULT "\0" \
|
|
|
|
"mtdparts=" MTDPARTS_DEFAULT "\0" \
|
2011-03-04 09:16:00 +00:00
|
|
|
"stderr=serial\0" \
|
|
|
|
"stdin=serial\0" \
|
|
|
|
"stdout=serial\0" \
|
2009-03-12 06:37:18 +00:00
|
|
|
""
|
|
|
|
#endif /* CONFIG_KM_DEF_ENV */
|
|
|
|
|
2011-04-08 02:47:46 +00:00
|
|
|
#define CONFIG_VERSION_VARIABLE /* include version env variable */
|
2009-03-12 06:37:18 +00:00
|
|
|
|
2008-11-20 08:59:09 +00:00
|
|
|
#endif /* __CONFIG_KEYMILE_H */
|