]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/manroland/common.h
common: bootdelay: move CONFIG_BOOTDELAY into a Kconfig option
[people/ms/u-boot.git] / include / configs / manroland / common.h
CommitLineData
7f625fc6
HS
1/*
2 * (C) Copyright 2009
3 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
4 *
3765b3e7 5 * SPDX-License-Identifier: GPL-2.0+
7f625fc6
HS
6 */
7
8#ifndef __MANROLAND_COMMON_H
9#define __MANROLAND_COMMON_H
10
11/*
12 * High Level Configuration Options
13 * (easy to change)
14 */
15
7f625fc6
HS
16#define CONFIG_BOARD_EARLY_INIT_R
17
18/* Partitions */
19#define CONFIG_DOS_PARTITION
20
21/*
22 * Command line configuration.
23 */
7f625fc6
HS
24#define CONFIG_CMD_DATE
25#define CONFIG_CMD_DISPLAY
7f625fc6 26#define CONFIG_CMD_EEPROM
7f625fc6
HS
27#define CONFIG_CMD_DTT
28#define CONFIG_CMD_IDE
7f625fc6 29
7f0d241d
IY
30/*
31 * 8-symbol LED display (can be accessed with 'display' command)
32 */
33#define CONFIG_PDSP188x
34
7f625fc6
HS
35#define CONFIG_TIMESTAMP 1 /* Print image info with timestamp */
36
37/*
38 * Autobooting
39 */
7f625fc6
HS
40
41#define CONFIG_PREBOOT "echo;" \
42 "echo Type \\\"run flash_nfs\\\" to mount root filesystem over NFS;" \
43 "echo"
44
45#undef CONFIG_BOOTARGS
46
7f625fc6
HS
47#define CONFIG_EXTRA_ENV_SETTINGS \
48 "netdev=eth0\0" \
49 "nfsargs=setenv bootargs root=/dev/nfs rw " \
50 "nfsroot=${serverip}:${rootpath}\0" \
51 "ramargs=setenv bootargs root=/dev/ram rw\0" \
52 "addwdt=setenv bootargs ${bootargs} wdt=off\0" \
53 "logval=4\0" \
54 "addlog=setenv bootargs ${bootargs} loglevel=${logval}\0" \
55 "addip=setenv bootargs ${bootargs} " \
56 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
57 ":${hostname}:${netdev}:off panic=1\0" \
58 "kernel_addr=ff810000\0" \
93ea89f0 59 "fdt_addr="__stringify(CONFIG_SYS_FLASH_BASE)"\0" \
7f625fc6
HS
60 "flash_nfs=run nfsargs addip addcon addwdt addlog;" \
61 "bootm ${kernel_addr} - ${fdt_addr}\0" \
62 "rootpath=/opt/eldk/ppc_82xx\0" \
63 "kernel_addr_r=300000\0" \
64 "fdt_addr_r=200000\0" \
93ea89f0
MV
65 "fdt_file=" __stringify(CONFIG_HOSTNAME) "/" \
66 __stringify(CONFIG_HOSTNAME) ".dtb\0" \
67 "kernel_file=" __stringify(CONFIG_HOSTNAME) "/uImage \0" \
7f625fc6
HS
68 "load_fdt=tftp ${fdt_addr_r} ${fdt_file};\0" \
69 "load_kernel=tftp ${kernel_addr_r} ${kernel_file};\0" \
70 "addcon=setenv bootargs ${bootargs} console=ttyPSC0,${baudrate}\0"\
71 "net_nfs=run load_fdt load_kernel; " \
72 "run nfsargs addip addcon addwdt addlog;" \
73 "bootm ${kernel_addr_r} - ${fdt_addr_r}\0" \
93ea89f0 74 "u-boot=" __stringify(CONFIG_HOSTNAME) "/u-boot.bin \0" \
7f625fc6
HS
75 "u-boot_addr_r=200000\0" \
76 "load=tftp ${u-boot_addr_r} ${u-boot}\0" \
93ea89f0
MV
77 "update=protect off " __stringify(CONFIG_SYS_TEXT_BASE) " +${filesize};"\
78 "erase " __stringify(CONFIG_SYS_TEXT_BASE) " +${filesize};"\
79 "cp.b ${u-boot_addr_r} " __stringify(CONFIG_SYS_TEXT_BASE) \
7f625fc6 80 " ${filesize};" \
93ea89f0 81 "protect on " __stringify(CONFIG_SYS_TEXT_BASE) " +${filesize}\0"\
7f625fc6
HS
82 ""
83
84#define CONFIG_BOOTCOMMAND "run net_nfs"
85
86#define CONFIG_MISC_INIT_R 1
87
88/*
89 * Miscellaneous configurable options
90 */
91#define CONFIG_SYS_LONGHELP /* undef to save memory */
7f625fc6
HS
92#if defined(CONFIG_CMD_KGDB)
93#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
94#else
95#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
96#endif
97#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
98#define CONFIG_SYS_MAXARGS 16 /* max number of command args*/
99#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
7cb5fc15 100#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
7cb5fc15 101#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
7f625fc6
HS
102
103/* Enable an alternate, more extensive memory test */
104#define CONFIG_SYS_ALT_MEMTEST
105
106/*
107 * Enable loopw command.
108 */
7f625fc6 109
7f625fc6 110#endif /* __MANROLAND_COMMON_H */