Merge tag 'xilinx-for-v2022.01-rc3' of https://source.denx.de/u-boot/custodians/u...
[platform/kernel/u-boot.git] / include / configs / turris_mox.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2018 Marek Behun <marek.behun@nic.cz>
4  *
5  * Based on mvebu_armada-37xx.h by Stefan Roese <sr@denx.de>
6  */
7
8 #ifndef _CONFIG_TURRIS_MOX_H
9 #define _CONFIG_TURRIS_MOX_H
10
11 #define CONFIG_SYS_BOOTM_LEN            (64 << 20)
12 #define CONFIG_SYS_SDRAM_BASE           0x00000000
13 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_TEXT_BASE + 0xFF0000)
14 #define CONFIG_SYS_CBSIZE               1024
15 #define CONFIG_SYS_MAXARGS              32
16 #define CONFIG_SYS_BAUDRATE_TABLE       { 300, 600, 1200, 1800, 2400, 4800, \
17                                           9600, 19200, 38400, 57600, 115200, \
18                                           230400, 460800, 500000, 576000, \
19                                           921600, 1000000, 1152000, 1500000, \
20                                           2000000, 2500000, 3000000, 3500000, \
21                                           4000000, 4500000, 5000000, 5500000, \
22                                           6000000 }
23
24 #define CONFIG_ARP_TIMEOUT              200
25 #define CONFIG_NET_RETRY_COUNT          50
26
27 #define CONFIG_USB_MAX_CONTROLLER_COUNT 6
28
29 #define BOOT_TARGET_DEVICES(func) \
30         func(MMC, mmc, 0) \
31         func(USB, usb, 0) \
32         func(PXE, pxe, na) \
33         func(DHCP, dhcp, na)
34
35 #include <config_distro_bootcmd.h>
36
37 #define TURRIS_MOX_BOOTCMD_RESCUE                                       \
38         "setenv bootargs \"console=ttyMV0,115200 "                      \
39                           "earlycon=ar3700_uart,0xd0012000\" && "       \
40         "sf probe && "                                                  \
41         "sf read 0x5000000 0x190000 && "                                \
42         "lzmadec 0x5000000 0x5800000 && "                               \
43         "bootm 0x5800000"
44
45 #define CONFIG_EXTRA_ENV_SETTINGS                               \
46         "scriptaddr=0x4d00000\0"                                \
47         "pxefile_addr_r=0x4e00000\0"                            \
48         "fdt_addr_r=0x4f00000\0"                                \
49         "kernel_addr_r=0x5000000\0"                             \
50         "ramdisk_addr_r=0x8000000\0"                            \
51         "fdtfile=marvell/" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0"  \
52         "bootcmd_rescue=" TURRIS_MOX_BOOTCMD_RESCUE "\0"        \
53         BOOTENV
54
55 #endif /* _CONFIG_TURRIS_MOX_H */