Convert CONFIG_SYS_I2C_MVTWSI to Kconfig
[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_SYS_I2C_LEGACY
24 #define CONFIG_I2C_MVTWSI_BASE0         MVEBU_TWSI_BASE
25 #define CONFIG_SYS_I2C_SLAVE            0x0
26 #define CONFIG_SYS_I2C_SPEED            100000
27
28 /* PCIe support */
29 #ifndef CONFIG_SPL_BUILD
30 #define CONFIG_PCI_SCAN_SHOW
31 #endif
32
33 /* USB/EHCI/XHCI configuration */
34 #define CONFIG_EHCI_IS_TDI
35
36 /*
37  * mv-common.h should be defined after CMD configs since it used them
38  * to enable certain macros
39  */
40 #include "mv-common.h"
41
42 /*
43  * Memory layout while starting into the bin_hdr via the
44  * BootROM:
45  *
46  * 0x4000.4000 - 0x4003.4000    headers space (192KiB)
47  * 0x4000.4030                  bin_hdr start address
48  * 0x4003.4000 - 0x4004.7c00    BootROM memory allocations (15KiB)
49  * 0x4007.fffc                  BootROM stack top
50  *
51  * The address space between 0x4007.fffc and 0x400f.fff is not locked in
52  * L2 cache thus cannot be used.
53  */
54
55 /* SPL */
56 /* Defines for SPL */
57 #define CONFIG_SPL_MAX_SIZE             ((128 << 10) - 0x4030)
58
59 #define CONFIG_SPL_BSS_START_ADDR       (0x40000000 + (128 << 10))
60 #define CONFIG_SPL_BSS_MAX_SIZE         (16 << 10)
61
62 #ifdef CONFIG_SPL_BUILD
63 #define CONFIG_SYS_MALLOC_SIMPLE
64 #endif
65
66 #define CONFIG_SPL_STACK                (0x40000000 + ((192 - 16) << 10))
67 #define CONFIG_SPL_BOOTROM_SAVE         (CONFIG_SPL_STACK + 4)
68
69 /* DS414 bus width is 32bits */
70 #define CONFIG_DDR_32BIT
71
72 /* Default Environment */
73 #define CONFIG_LOADADDR         0x80000
74 #define CONFIG_BOOTCOMMAND                                      \
75         "sf probe; "                                            \
76         "sf read ${loadaddr} 0xd0000 0x2d0000; "                \
77         "sf read ${ramdisk_addr_r} 0x3a0000 0x430000; "         \
78         "bootm ${loadaddr} ${ramdisk_addr_r}"
79
80 #define CONFIG_EXTRA_ENV_SETTINGS                               \
81         "initrd_high=0xffffffff\0"                              \
82         "ramdisk_addr_r=0x8000000\0"                            \
83         "usb0Mode=host\0usb1Mode=host\0usb2Mode=device\0"       \
84         "ethmtu=1500\0eth1mtu=1500\0"                           \
85         "update_uboot=sf probe; dhcp; "                         \
86                 "mw.b ${loadaddr} 0x0 0xd0000; "                \
87                 "tftpboot ${loadaddr} u-boot-spl.kwb; "         \
88                 "sf update ${loadaddr} 0x0 0xd0000\0"
89
90
91 /* increase autoneg timeout, my NIC sucks */
92 #define PHY_ANEG_TIMEOUT        16000
93
94 #endif /* _CONFIG_SYNOLOGY_DS414_H */