3 * Dirk Eibach, Guntermann & Drunck GmbH, eibach@gdsys.de
6 * SPDX-License-Identifier: GPL-2.0+
15 #define CONFIG_SYS_SDRAM_BASE 0x00000000 /* DDR is system memory */
16 /* TODO: Check: Can this be unified with CONFIG_SYS_SDRAM_BASE? */
17 #define CONFIG_SYS_DDR_SDRAM_BASE CONFIG_SYS_SDRAM_BASE
28 #define CONFIG_SYS_MONITOR_LEN (512 * 1024) /* Reserve 512 kB for Mon */
31 * Initial RAM Base Address Setup
33 #define CONFIG_SYS_INIT_RAM_LOCK
34 #define CONFIG_SYS_INIT_RAM_ADDR 0xE6000000 /* Initial RAM address */
35 #define CONFIG_SYS_INIT_RAM_SIZE 0x1000 /* Size of used area in RAM */
38 * FLASH on the Local Bus
40 #define CONFIG_SYS_FLASH_BASE 0xFE000000 /* FLASH base address */
41 #define CONFIG_SYS_FLASH_SIZE 8 /* FLASH size is up to 8M */
43 #define CONFIG_SYS_MAX_FLASH_SECT 135
45 #define CONFIG_SYS_BAUDRATE_TABLE \
46 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200}
52 #define CONFIG_LOADS_ECHO /* echo on for serial download */
53 #define CONFIG_SYS_LOADS_BAUD_CHANGE /* allow baudrate change */
56 * Miscellaneous configurable options
60 * For booting Linux, the board info and command line data
61 * have to be in the first 256 MB of memory, since this is
62 * the maximum mapped by the Linux kernel during initialization.
64 #define CONFIG_SYS_BOOTMAPSZ (256 << 20) /* Initial Memory map for Linux */
67 * Environment Configuration
70 /* TODO: Turn into string option and migrate to Kconfig */
71 #define CONFIG_HOSTNAME "gazerbeam"
72 #define CONFIG_ROOTPATH "/opt/nfsroot"
74 #define CONFIG_EXTRA_ENV_SETTINGS \
76 "consoledev=ttyS1\0" \
77 "u-boot=u-boot.bin\0" \
78 "kernel_addr=1000000\0" \
80 "fdtfile=hrcon.dtb\0" \
81 "load=tftp ${loadaddr} ${u-boot}\0" \
82 "update=protect off " __stringify(CONFIG_SYS_MONITOR_BASE) \
83 " +${filesize};era " __stringify(CONFIG_SYS_MONITOR_BASE)\
84 " +${filesize};cp.b ${fileaddr} " \
85 __stringify(CONFIG_SYS_MONITOR_BASE) " ${filesize}\0" \
86 "upd=run load update\0" \
88 #endif /* __CONFIG_H */