Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Scott Branden | da1f5ac | 2014-08-11 13:58:25 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2014 Broadcom Corporation. |
Scott Branden | da1f5ac | 2014-08-11 13:58:25 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __BCM_EP_BOARD_H |
| 7 | #define __BCM_EP_BOARD_H |
| 8 | |
| 9 | #include <asm/arch/configs.h> |
| 10 | |
Scott Branden | da1f5ac | 2014-08-11 13:58:25 -0700 | [diff] [blame] | 11 | #define CONFIG_SKIP_LOWLEVEL_INIT |
| 12 | |
Scott Branden | da1f5ac | 2014-08-11 13:58:25 -0700 | [diff] [blame] | 13 | /* |
| 14 | * Memory configuration |
| 15 | * (these must be defined elsewhere) |
| 16 | */ |
| 17 | #ifndef CONFIG_SYS_TEXT_BASE |
| 18 | #error CONFIG_SYS_TEXT_BASE must be defined! |
| 19 | #endif |
| 20 | #ifndef CONFIG_SYS_SDRAM_BASE |
| 21 | #error CONFIG_SYS_SDRAM_BASE must be defined! |
| 22 | #endif |
| 23 | #ifndef CONFIG_SYS_SDRAM_SIZE |
| 24 | #error CONFIG_SYS_SDRAM_SIZE must be defined! |
| 25 | #endif |
| 26 | |
Scott Branden | da1f5ac | 2014-08-11 13:58:25 -0700 | [diff] [blame] | 27 | #define CONFIG_SYS_MALLOC_LEN (4 * 1024 * 1024) |
Scott Branden | da1f5ac | 2014-08-11 13:58:25 -0700 | [diff] [blame] | 28 | |
| 29 | /* Some commands use this as the default load address */ |
| 30 | #define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE |
| 31 | |
Scott Branden | da1f5ac | 2014-08-11 13:58:25 -0700 | [diff] [blame] | 32 | /* |
| 33 | * This is the initial SP which is used only briefly for relocating the u-boot |
| 34 | * image to the top of SDRAM. After relocation u-boot moves the stack to the |
| 35 | * proper place. |
| 36 | */ |
| 37 | #define CONFIG_SYS_INIT_SP_ADDR CONFIG_SYS_TEXT_BASE |
| 38 | |
| 39 | /* allow to overwrite serial and ethaddr */ |
| 40 | #define CONFIG_ENV_OVERWRITE |
| 41 | |
| 42 | /* Serial Info */ |
Scott Branden | da1f5ac | 2014-08-11 13:58:25 -0700 | [diff] [blame] | 43 | #define CONFIG_SYS_NS16550_SERIAL |
| 44 | |
Scott Branden | da1f5ac | 2014-08-11 13:58:25 -0700 | [diff] [blame] | 45 | #define CONFIG_ENV_SIZE 0x2000 |
Scott Branden | da1f5ac | 2014-08-11 13:58:25 -0700 | [diff] [blame] | 46 | |
Scott Branden | da1f5ac | 2014-08-11 13:58:25 -0700 | [diff] [blame] | 47 | /* console configuration */ |
| 48 | #define CONFIG_SYS_CBSIZE 1024 /* Console buffer size */ |
Scott Branden | da1f5ac | 2014-08-11 13:58:25 -0700 | [diff] [blame] | 49 | #define CONFIG_SYS_MAXARGS 64 |
| 50 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE |
| 51 | |
Scott Branden | da1f5ac | 2014-08-11 13:58:25 -0700 | [diff] [blame] | 52 | /* version string, parser, etc */ |
Scott Branden | da1f5ac | 2014-08-11 13:58:25 -0700 | [diff] [blame] | 53 | |
Scott Branden | da1f5ac | 2014-08-11 13:58:25 -0700 | [diff] [blame] | 54 | #define CONFIG_MX_CYCLIC |
| 55 | |
Scott Branden | da1f5ac | 2014-08-11 13:58:25 -0700 | [diff] [blame] | 56 | /* Enable Time Command */ |
Scott Branden | da1f5ac | 2014-08-11 13:58:25 -0700 | [diff] [blame] | 57 | |
Scott Branden | da1f5ac | 2014-08-11 13:58:25 -0700 | [diff] [blame] | 58 | #endif /* __BCM_EP_BOARD_H */ |