blob: b4e4619266a46e6da9b0ee2915e91781904bca6c [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Patrice Chotard2f329792017-02-21 13:37:12 +01002/*
Patrice Chotard9e216242017-10-23 09:53:57 +02003 * Copyright (C) 2017, STMicroelectronics - All Rights Reserved
4 * Author(s): Patrice Chotard, <patrice.chotard@st.com> for STMicroelectronics.
Patrice Chotard2f329792017-02-21 13:37:12 +01005 */
6
7#ifndef __CONFIG_H
8#define __CONFIG_H
9
Patrice Chotard2f329792017-02-21 13:37:12 +010010/* ram memory-related information */
11#define CONFIG_NR_DRAM_BANKS 1
12#define PHYS_SDRAM_1 0x40000000
13#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
Nicolas Le Bayone2db71e2017-09-25 09:14:19 +020014#define PHYS_SDRAM_1_SIZE 0x3E000000
Patrice Chotard2f329792017-02-21 13:37:12 +010015#define CONFIG_SYS_LOAD_ADDR PHYS_SDRAM_1 /* default load addr */
16
Patrice Chotard2f329792017-02-21 13:37:12 +010017#define CONFIG_SYS_HZ_CLOCK 1000000000 /* 1 GHz */
18
Patrice Chotard2f329792017-02-21 13:37:12 +010019/* Environment */
Patrice Chotard78b4e042017-09-25 09:14:18 +020020
21#define CONFIG_LOADADDR CONFIG_SYS_LOAD_ADDR
22
Patrice Chotard78b4e042017-09-25 09:14:18 +020023#define BOOT_TARGET_DEVICES(func) \
24 func(MMC, mmc, 0) \
25 func(USB, usb, 0) \
26 func(DHCP, dhcp, na)
27#include <config_distro_bootcmd.h>
28#define CONFIG_BOOTFILE "uImage"
29#define CONFIG_EXTRA_ENV_SETTINGS \
30 "kernel_addr_r=0x40000000\0" \
31 "fdtfile=stih410-b2260.dtb\0" \
32 "fdt_addr_r=0x47000000\0" \
33 "scriptaddr=0x50000000\0" \
34 "fdt_high=0xffffffffffffffff\0" \
35 "initrd_high=0xffffffffffffffff\0" \
Lee Jones2b1760f2017-09-25 09:14:20 +020036 "ramdisk_addr_r=0x48000000\0" \
Patrice Chotard78b4e042017-09-25 09:14:18 +020037 BOOTENV
38
Patrice Chotard2f329792017-02-21 13:37:12 +010039
Patrice Chotard2f329792017-02-21 13:37:12 +010040#define CONFIG_ENV_SIZE 0x4000
41
42/* Extra Commands */
43#define CONFIG_CMD_ASKENV
Patrice Chotard2f329792017-02-21 13:37:12 +010044
45#define CONFIG_SETUP_MEMORY_TAGS
46
47/* Size of malloc() pool */
48#define CONFIG_SYS_MALLOC_LEN 0x1800000
49#define CONFIG_SYS_GBL_DATA_SIZE 1024 /* Global data structures */
50#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - \
51 CONFIG_SYS_MALLOC_LEN - \
52 CONFIG_SYS_GBL_DATA_SIZE)
53
54/* Monitor Command Prompt */
55#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
56
Patrice Chotard2f329792017-02-21 13:37:12 +010057#define CONFIG_SYS_MAX_FLASH_BANKS 1
58
59#define CONFIG_SKIP_LOWLEVEL_INIT
60
Patrice Chotard2b0e6982017-09-05 11:04:22 +020061/* USB Configs */
62#define CONFIG_USB_OHCI_NEW
63#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2
64
65#define CONFIG_USB_HOST_ETHER
66#define CONFIG_USB_ETHER_ASIX
67#define CONFIG_USB_ETHER_MCS7830
68#define CONFIG_USB_ETHER_SMSC95XX
69
70/* NET Configs */
Patrice Chotard2b0e6982017-09-05 11:04:22 +020071
Patrice Chotard2f329792017-02-21 13:37:12 +010072#endif /* __CONFIG_H */