1 /* 2 * (C) Copyright 2017 3 * Patrice Chotard, <patrice.chotard@st.com> 4 * 5 * SPDX-License-Identifier: GPL-2.0+ 6 */ 7 8 #ifndef __CONFIG_H 9 #define __CONFIG_H 10 11 #include <config.h> 12 13 /* ram memory-related information */ 14 #define CONFIG_NR_DRAM_BANKS 1 15 #define PHYS_SDRAM_1 0x40000000 16 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 17 #define PHYS_SDRAM_1_SIZE 0x3FE00000 18 #define CONFIG_SYS_TEXT_BASE 0x7D600000 19 #define CONFIG_SYS_LOAD_ADDR PHYS_SDRAM_1 /* default load addr */ 20 21 #define CONFIG_BAUDRATE 115200 22 23 #define CONFIG_SYS_HZ_CLOCK 1000000000 /* 1 GHz */ 24 25 /* Libraries */ 26 #define CONFIG_MD5 27 28 #define CONFIG_BOOTARGS \ 29 "console=ttyS0,115200 earlyprintk consoleblank=0 ignore_loglevel" 30 31 /* Environment */ 32 #define CONFIG_EXTRA_ENV_SETTINGS \ 33 "board= B2260" \ 34 "load_addr= #CONFIG_SYS_LOAD_ADDR \0" 35 36 #define CONFIG_ENV_IS_NOWHERE 37 #define CONFIG_ENV_SIZE 0x4000 38 39 /* Extra Commands */ 40 #define CONFIG_CMD_ASKENV 41 #define CONFIG_SYS_LONGHELP 42 43 #define CONFIG_SETUP_MEMORY_TAGS 44 45 /* Size of malloc() pool */ 46 #define CONFIG_SYS_MALLOC_LEN 0x1800000 47 #define CONFIG_SYS_GBL_DATA_SIZE 1024 /* Global data structures */ 48 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - \ 49 CONFIG_SYS_MALLOC_LEN - \ 50 CONFIG_SYS_GBL_DATA_SIZE) 51 52 /* Monitor Command Prompt */ 53 #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ 54 55 #define CONFIG_SYS_MAXARGS 16 /* max number of command args */ 56 #define CONFIG_SYS_MAX_FLASH_BANKS 1 57 58 #define CONFIG_SKIP_LOWLEVEL_INIT 59 60 #endif /* __CONFIG_H */ 61