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 /* ram memory-related information */ 12 #define CONFIG_NR_DRAM_BANKS 1 13 #define PHYS_SDRAM_1 0x40000000 14 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 15 #define PHYS_SDRAM_1_SIZE 0x3FE00000 16 #define CONFIG_SYS_TEXT_BASE 0x7D600000 17 #define CONFIG_SYS_LOAD_ADDR PHYS_SDRAM_1 /* default load addr */ 18 19 #define CONFIG_SYS_HZ_CLOCK 1000000000 /* 1 GHz */ 20 21 /* Environment */ 22 #define CONFIG_EXTRA_ENV_SETTINGS \ 23 "board= B2260" \ 24 "load_addr= #CONFIG_SYS_LOAD_ADDR \0" 25 26 #define CONFIG_ENV_SIZE 0x4000 27 28 /* Extra Commands */ 29 #define CONFIG_CMD_ASKENV 30 #define CONFIG_SYS_LONGHELP 31 32 #define CONFIG_SETUP_MEMORY_TAGS 33 34 /* Size of malloc() pool */ 35 #define CONFIG_SYS_MALLOC_LEN 0x1800000 36 #define CONFIG_SYS_GBL_DATA_SIZE 1024 /* Global data structures */ 37 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - \ 38 CONFIG_SYS_MALLOC_LEN - \ 39 CONFIG_SYS_GBL_DATA_SIZE) 40 41 /* Monitor Command Prompt */ 42 #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ 43 44 #define CONFIG_SYS_MAX_FLASH_BANKS 1 45 46 #define CONFIG_SKIP_LOWLEVEL_INIT 47 48 /* USB Configs */ 49 #define CONFIG_USB_OHCI_NEW 50 #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2 51 52 #define CONFIG_USB_HOST_ETHER 53 #define CONFIG_USB_ETHER_ASIX 54 #define CONFIG_USB_ETHER_MCS7830 55 #define CONFIG_USB_ETHER_SMSC95XX 56 57 /* NET Configs */ 58 #define CONFIG_BOOTP_SUBNETMASK 59 #define CONFIG_BOOTP_GATEWAY 60 #define CONFIG_BOOTP_HOSTNAME 61 #define CONFIG_BOOTP_BOOTPATH 62 63 #endif /* __CONFIG_H */ 64