]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/stih410-b2260.h
board: STiH410-B2260: update environment variable
[people/ms/u-boot.git] / include / configs / stih410-b2260.h
CommitLineData
5cc16d88
PC
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
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
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
5cc16d88
PC
19#define CONFIG_SYS_HZ_CLOCK 1000000000 /* 1 GHz */
20
3ef751ed 21#include <config_distro_defaults.h>
5cc16d88 22/* Environment */
3ef751ed
PC
23
24#define CONFIG_LOADADDR CONFIG_SYS_LOAD_ADDR
25
26#define CONFIG_ENV_VARS_UBOOT_CONFIG
27
28#define BOOT_TARGET_DEVICES(func) \
29 func(MMC, mmc, 0) \
30 func(USB, usb, 0) \
31 func(DHCP, dhcp, na)
32#include <config_distro_bootcmd.h>
33#define CONFIG_BOOTFILE "uImage"
34#define CONFIG_EXTRA_ENV_SETTINGS \
35 "kernel_addr_r=0x40000000\0" \
36 "fdtfile=stih410-b2260.dtb\0" \
37 "fdt_addr_r=0x47000000\0" \
38 "scriptaddr=0x50000000\0" \
39 "fdt_high=0xffffffffffffffff\0" \
40 "initrd_high=0xffffffffffffffff\0" \
41 BOOTENV
42
5cc16d88 43
5cc16d88
PC
44#define CONFIG_ENV_SIZE 0x4000
45
46/* Extra Commands */
47#define CONFIG_CMD_ASKENV
48#define CONFIG_SYS_LONGHELP
49
50#define CONFIG_SETUP_MEMORY_TAGS
51
52/* Size of malloc() pool */
53#define CONFIG_SYS_MALLOC_LEN 0x1800000
54#define CONFIG_SYS_GBL_DATA_SIZE 1024 /* Global data structures */
55#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - \
56 CONFIG_SYS_MALLOC_LEN - \
57 CONFIG_SYS_GBL_DATA_SIZE)
58
59/* Monitor Command Prompt */
60#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
61
5cc16d88
PC
62#define CONFIG_SYS_MAX_FLASH_BANKS 1
63
64#define CONFIG_SKIP_LOWLEVEL_INIT
65
e9d12572
PC
66/* USB Configs */
67#define CONFIG_USB_OHCI_NEW
68#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2
69
70#define CONFIG_USB_HOST_ETHER
71#define CONFIG_USB_ETHER_ASIX
72#define CONFIG_USB_ETHER_MCS7830
73#define CONFIG_USB_ETHER_SMSC95XX
74
75/* NET Configs */
76#define CONFIG_BOOTP_SUBNETMASK
77#define CONFIG_BOOTP_GATEWAY
78#define CONFIG_BOOTP_HOSTNAME
79#define CONFIG_BOOTP_BOOTPATH
80
5cc16d88 81#endif /* __CONFIG_H */