Convert CONFIG_USB_MAX_CONTROLLER_COUNT 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_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 BOOT_TARGET_DEVICES(func) \
22         func(MMC, mmc, 0) \
23         func(NVME, nvme, 0) \
24         func(SCSI, scsi, 0) \
25         func(USB, usb, 0) \
26         func(PXE, pxe, na) \
27         func(DHCP, dhcp, na)
28
29 #include <config_distro_bootcmd.h>
30
31 #define TURRIS_MOX_BOOTCMD_RESCUE                                       \
32         "setenv bootargs \"console=ttyMV0,115200 "                      \
33                           "earlycon=ar3700_uart,0xd0012000\" && "       \
34         "sf probe && "                                                  \
35         "sf read 0x5000000 0x190000 && "                                \
36         "lzmadec 0x5000000 0x5800000 && "                               \
37         "bootm 0x5800000"
38
39 #define CONFIG_EXTRA_ENV_SETTINGS                               \
40         "scriptaddr=0x4d00000\0"                                \
41         "pxefile_addr_r=0x4e00000\0"                            \
42         "fdt_addr_r=0x4f00000\0"                                \
43         "kernel_addr_r=0x5000000\0"                             \
44         "ramdisk_addr_r=0x8000000\0"                            \
45         "fdtfile=marvell/" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0"  \
46         "bootcmd_rescue=" TURRIS_MOX_BOOTCMD_RESCUE "\0"        \
47         BOOTENV
48
49 #endif /* _CONFIG_TURRIS_MOX_H */