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