1/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright (C) 2018 Marek Beh��n <kabel@kernel.org>
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 CFG_SYS_SDRAM_BASE		0x00000000
12#define CFG_SYS_BAUDRATE_TABLE	{ 300, 600, 1200, 1800, 2400, 4800, \
13					  9600, 19200, 38400, 57600, 115200, \
14					  230400, 460800, 500000, 576000, \
15					  921600, 1000000, 1152000, 1500000, \
16					  2000000, 2500000, 3000000, 3500000, \
17					  4000000, 4500000, 5000000, 5500000, \
18					  6000000 }
19
20#define BOOT_TARGET_DEVICES(func) \
21	func(MMC, mmc, 0) \
22	func(NVME, nvme, 0) \
23	func(SCSI, scsi, 0) \
24	func(USB, usb, 0) \
25	func(PXE, pxe, na) \
26	func(DHCP, dhcp, na)
27
28#include <config_distro_bootcmd.h>
29
30#define TURRIS_MOX_BOOTCMD_RESCUE					\
31	"setenv bootargs \"console=ttyMV0,115200 "			\
32			  "earlycon=ar3700_uart,0xd0012000\" && "	\
33	"sf probe && "							\
34	"sf read 0x5000000 0x190000 && "				\
35	"lzmadec 0x5000000 0x5800000 && "				\
36	"bootm 0x5800000"
37
38#define CFG_EXTRA_ENV_SETTINGS				\
39	"fdt_addr=0x4c00000\0"					\
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 */
50