8a78ab3e15507433f3953657b22dc70049fc2f10
[platform/kernel/u-boot.git] / include / configs / ds414.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2014 Stefan Roese <sr@denx.de>
4  */
5
6 #ifndef _CONFIG_SYNOLOGY_DS414_H
7 #define _CONFIG_SYNOLOGY_DS414_H
8
9 /* Vendor kernel expects this MACH_TYPE */
10 #define CONFIG_MACH_TYPE        3036
11
12 /*
13  * High Level Configuration Options (easy to change)
14  */
15
16 /*
17  * TEXT_BASE needs to be below 16MiB, since this area is scrubbed
18  * for DDR ECC byte filling in the SPL before loading the main
19  * U-Boot into it.
20  */
21
22 /* I2C */
23 #define CONFIG_I2C_MVTWSI_BASE0         MVEBU_TWSI_BASE
24
25 /* PCIe support */
26 #ifndef CONFIG_SPL_BUILD
27 #define CONFIG_PCI_SCAN_SHOW
28 #endif
29
30 /* USB/EHCI/XHCI configuration */
31 #define CONFIG_EHCI_IS_TDI
32
33 /*
34  * mv-common.h should be defined after CMD configs since it used them
35  * to enable certain macros
36  */
37 #include "mv-common.h"
38
39 /*
40  * Memory layout while starting into the bin_hdr via the
41  * BootROM:
42  *
43  * 0x4000.4000 - 0x4003.4000    headers space (192KiB)
44  * 0x4000.4030                  bin_hdr start address
45  * 0x4003.4000 - 0x4004.7c00    BootROM memory allocations (15KiB)
46  * 0x4007.fffc                  BootROM stack top
47  *
48  * The address space between 0x4007.fffc and 0x400f.fff is not locked in
49  * L2 cache thus cannot be used.
50  */
51
52 /* SPL */
53 /* Defines for SPL */
54 #define CONFIG_SPL_MAX_SIZE             ((128 << 10) - 0x4030)
55
56 #define CONFIG_SPL_BSS_START_ADDR       (0x40000000 + (128 << 10))
57 #define CONFIG_SPL_BSS_MAX_SIZE         (16 << 10)
58
59 #ifdef CONFIG_SPL_BUILD
60 #define CONFIG_SYS_MALLOC_SIMPLE
61 #endif
62
63 #define CONFIG_SPL_STACK                (0x40000000 + ((192 - 16) << 10))
64 #define CONFIG_SPL_BOOTROM_SAVE         (CONFIG_SPL_STACK + 4)
65
66 /* Default Environment */
67 #define CONFIG_LOADADDR         0x80000
68 #define CONFIG_BOOTCOMMAND                                      \
69         "sf probe; "                                            \
70         "sf read ${loadaddr} 0xd0000 0x2d0000; "                \
71         "sf read ${ramdisk_addr_r} 0x3a0000 0x430000; "         \
72         "bootm ${loadaddr} ${ramdisk_addr_r}"
73
74 #define CONFIG_EXTRA_ENV_SETTINGS                               \
75         "initrd_high=0xffffffff\0"                              \
76         "ramdisk_addr_r=0x8000000\0"                            \
77         "usb0Mode=host\0usb1Mode=host\0usb2Mode=device\0"       \
78         "ethmtu=1500\0eth1mtu=1500\0"                           \
79         "update_uboot=sf probe; dhcp; "                         \
80                 "mw.b ${loadaddr} 0x0 0xd0000; "                \
81                 "tftpboot ${loadaddr} u-boot-spl.kwb; "         \
82                 "sf update ${loadaddr} 0x0 0xd0000\0"
83
84
85 /* increase autoneg timeout, my NIC sucks */
86 #define PHY_ANEG_TIMEOUT        16000
87
88 #endif /* _CONFIG_SYNOLOGY_DS414_H */