Merge tag 'xilinx-for-v2022.10' of https://source.denx.de/u-boot/custodians/u-boot...
[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_BAUDRATE_TABLE       { 300, 600, 1200, 1800, 2400, 4800, \
14                                           9600, 19200, 38400, 57600, 115200, \
15                                           230400, 460800, 500000, 576000, \
16                                           921600, 1000000, 1152000, 1500000, \
17                                           2000000, 2500000, 3000000, 3500000, \
18                                           4000000, 4500000, 5000000, 5500000, \
19                                           6000000 }
20
21 #define CONFIG_USB_MAX_CONTROLLER_COUNT 6
22
23 #define BOOT_TARGET_DEVICES(func) \
24         func(MMC, mmc, 0) \
25         func(NVME, nvme, 0) \
26         func(SCSI, scsi, 0) \
27         func(USB, usb, 0) \
28         func(PXE, pxe, na) \
29         func(DHCP, dhcp, na)
30
31 #include <config_distro_bootcmd.h>
32
33 #define TURRIS_MOX_BOOTCMD_RESCUE                                       \
34         "setenv bootargs \"console=ttyMV0,115200 "                      \
35                           "earlycon=ar3700_uart,0xd0012000\" && "       \
36         "sf probe && "                                                  \
37         "sf read 0x5000000 0x190000 && "                                \
38         "lzmadec 0x5000000 0x5800000 && "                               \
39         "bootm 0x5800000"
40
41 #define CONFIG_EXTRA_ENV_SETTINGS                               \
42         "scriptaddr=0x4d00000\0"                                \
43         "pxefile_addr_r=0x4e00000\0"                            \
44         "fdt_addr_r=0x4f00000\0"                                \
45         "kernel_addr_r=0x5000000\0"                             \
46         "ramdisk_addr_r=0x8000000\0"                            \
47         "fdtfile=marvell/" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0"  \
48         "bootcmd_rescue=" TURRIS_MOX_BOOTCMD_RESCUE "\0"        \
49         BOOTENV
50
51 #endif /* _CONFIG_TURRIS_MOX_H */