1 /*
2  * Copyright (C) 2017, STMicroelectronics - All Rights Reserved
3  * Author(s): Patrice Chotard, <patrice.chotard@st.com> for STMicroelectronics.
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		0x3E000000
16 #define CONFIG_SYS_LOAD_ADDR		PHYS_SDRAM_1	/* default load addr */
17 
18 #define CONFIG_SYS_HZ_CLOCK		1000000000	/* 1 GHz */
19 
20 /* Environment */
21 
22 #define CONFIG_LOADADDR			CONFIG_SYS_LOAD_ADDR
23 
24 #define BOOT_TARGET_DEVICES(func) \
25 	func(MMC, mmc, 0) \
26 	func(USB, usb, 0) \
27 	func(DHCP, dhcp, na)
28 #include <config_distro_bootcmd.h>
29 #define CONFIG_BOOTFILE			"uImage"
30 #define CONFIG_EXTRA_ENV_SETTINGS				\
31 			"kernel_addr_r=0x40000000\0"		\
32 			"fdtfile=stih410-b2260.dtb\0"		\
33 			"fdt_addr_r=0x47000000\0"		\
34 			"scriptaddr=0x50000000\0"		\
35 			"fdt_high=0xffffffffffffffff\0"		\
36 			"initrd_high=0xffffffffffffffff\0"	\
37 			"ramdisk_addr_r=0x48000000\0"		\
38 			BOOTENV
39 
40 
41 #define CONFIG_ENV_SIZE 0x4000
42 
43 /* Extra Commands */
44 #define CONFIG_CMD_ASKENV
45 
46 #define CONFIG_SETUP_MEMORY_TAGS
47 
48 /* Size of malloc() pool */
49 #define CONFIG_SYS_MALLOC_LEN		0x1800000
50 #define CONFIG_SYS_GBL_DATA_SIZE	1024	/* Global data structures */
51 #define CONFIG_SYS_INIT_SP_ADDR		(CONFIG_SYS_TEXT_BASE - \
52 					 CONFIG_SYS_MALLOC_LEN - \
53 					 CONFIG_SYS_GBL_DATA_SIZE)
54 
55 /* Monitor Command Prompt */
56 #define CONFIG_SYS_CBSIZE		1024	/* Console I/O Buffer Size */
57 
58 #define CONFIG_SYS_MAX_FLASH_BANKS	1
59 
60 #define CONFIG_SKIP_LOWLEVEL_INIT
61 
62 /* USB Configs */
63 #define CONFIG_USB_OHCI_NEW
64 #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS	2
65 
66 #define CONFIG_USB_HOST_ETHER
67 #define CONFIG_USB_ETHER_ASIX
68 #define CONFIG_USB_ETHER_MCS7830
69 #define CONFIG_USB_ETHER_SMSC95XX
70 
71 /* NET Configs */
72 
73 #endif /* __CONFIG_H */
74