blob: fd893e6b10cfccf4fc894935d492317499a0f300 [file] [log] [blame]
Scott Brandenda1f5ac2014-08-11 13:58:25 -07001/*
2 * Copyright 2014 Broadcom Corporation.
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#ifndef __BCM_EP_BOARD_H
8#define __BCM_EP_BOARD_H
9
10#include <asm/arch/configs.h>
11
Scott Brandenda1f5ac2014-08-11 13:58:25 -070012#define CONFIG_SKIP_LOWLEVEL_INIT
13
Scott Brandenda1f5ac2014-08-11 13:58:25 -070014/*
15 * Memory configuration
16 * (these must be defined elsewhere)
17 */
18#ifndef CONFIG_SYS_TEXT_BASE
19#error CONFIG_SYS_TEXT_BASE must be defined!
20#endif
21#ifndef CONFIG_SYS_SDRAM_BASE
22#error CONFIG_SYS_SDRAM_BASE must be defined!
23#endif
24#ifndef CONFIG_SYS_SDRAM_SIZE
25#error CONFIG_SYS_SDRAM_SIZE must be defined!
26#endif
27
28#define CONFIG_NR_DRAM_BANKS 1
29
30#define CONFIG_SYS_MALLOC_LEN (4 * 1024 * 1024)
Scott Brandenda1f5ac2014-08-11 13:58:25 -070031
32/* Some commands use this as the default load address */
33#define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE
34
Scott Brandenda1f5ac2014-08-11 13:58:25 -070035/*
36 * This is the initial SP which is used only briefly for relocating the u-boot
37 * image to the top of SDRAM. After relocation u-boot moves the stack to the
38 * proper place.
39 */
40#define CONFIG_SYS_INIT_SP_ADDR CONFIG_SYS_TEXT_BASE
41
42/* allow to overwrite serial and ethaddr */
43#define CONFIG_ENV_OVERWRITE
44
45/* Serial Info */
Scott Brandenda1f5ac2014-08-11 13:58:25 -070046#define CONFIG_SYS_NS16550_SERIAL
47
Scott Brandenda1f5ac2014-08-11 13:58:25 -070048#define CONFIG_ENV_SIZE 0x2000
Scott Brandenda1f5ac2014-08-11 13:58:25 -070049
Scott Brandenda1f5ac2014-08-11 13:58:25 -070050/* console configuration */
51#define CONFIG_SYS_CBSIZE 1024 /* Console buffer size */
Scott Brandenda1f5ac2014-08-11 13:58:25 -070052#define CONFIG_SYS_MAXARGS 64
53#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
54
Scott Brandenda1f5ac2014-08-11 13:58:25 -070055/* version string, parser, etc */
Scott Brandenda1f5ac2014-08-11 13:58:25 -070056#define CONFIG_AUTO_COMPLETE
Scott Brandenda1f5ac2014-08-11 13:58:25 -070057#define CONFIG_CMDLINE_EDITING
Scott Brandenda1f5ac2014-08-11 13:58:25 -070058#define CONFIG_SYS_LONGHELP
59
Scott Brandenda1f5ac2014-08-11 13:58:25 -070060#define CONFIG_MX_CYCLIC
61
Scott Brandenda1f5ac2014-08-11 13:58:25 -070062/* Enable Time Command */
Scott Brandenda1f5ac2014-08-11 13:58:25 -070063
Scott Brandenda1f5ac2014-08-11 13:58:25 -070064/* Misc utility code */
65#define CONFIG_BOUNCE_BUFFER
Scott Brandenda1f5ac2014-08-11 13:58:25 -070066
67#endif /* __BCM_EP_BOARD_H */