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