1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2017, STMicroelectronics - All Rights Reserved
4 * Author(s): Patrice Chotard, <patrice.chotard@foss.st.com> for STMicroelectronics.
10 #include <linux/sizes.h>
12 /* ram memory-related information */
13 #define PHYS_SDRAM_1 0x40000000
14 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
15 #define PHYS_SDRAM_1_SIZE 0x3E000000
17 #define CONFIG_SYS_HZ_CLOCK 1000000000 /* 1 GHz */
22 * For booting Linux, use the first 256 MB of memory, since this is
23 * the maximum mapped by the Linux kernel during initialization.
25 #define CONFIG_SYS_BOOTMAPSZ SZ_256M
27 #define CONFIG_SYS_BOOTM_LEN SZ_16M
29 #define BOOT_TARGET_DEVICES(func) \
33 #include <config_distro_bootcmd.h>
34 #define CONFIG_BOOTFILE "uImage"
35 #define CONFIG_EXTRA_ENV_SETTINGS \
36 "kernel_addr_r=0x40000000\0" \
37 "fdtfile=stih410-b2260.dtb\0" \
38 "fdt_addr_r=0x47000000\0" \
39 "scriptaddr=0x50000000\0" \
40 "pxefile_addr_r=0x50100000\0" \
41 "ramdisk_addr_r=0x48000000\0" \
46 #define CONFIG_SYS_GBL_DATA_SIZE 1024 /* Global data structures */
47 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - \
48 CONFIG_SYS_MALLOC_LEN - \
49 CONFIG_SYS_GBL_DATA_SIZE)
51 /* Monitor Command Prompt */
52 #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
54 #define CONFIG_SYS_MAX_FLASH_BANKS 1
57 #define CONFIG_USB_OHCI_NEW
58 #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2
60 #define CONFIG_USB_HOST_ETHER
61 #define CONFIG_USB_ETHER_ASIX
62 #define CONFIG_USB_ETHER_MCS7830
63 #define CONFIG_USB_ETHER_SMSC95XX
67 #endif /* __CONFIG_H */