1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2017 Marek Behun <marek.behun@nic.cz>
4 * Copyright (C) 2016 Tomas Hlavacek <tomas.hlavacek@nic.cz>
7 #ifndef _CONFIG_TURRIS_OMNIA_H
8 #define _CONFIG_TURRIS_OMNIA_H
11 * High Level Configuration Options (easy to change)
15 * TEXT_BASE needs to be below 16MiB, since this area is scrubbed
16 * for DDR ECC byte filling in the SPL before loading the main
20 /* Environment in SPI NOR flash */
22 #define PHY_ANEG_TIMEOUT 8000 /* PHY needs a longer aneg time */
24 /* Keep device tree and initrd in lower memory so the kernel can access them */
25 #define RELOCATION_LIMITS_ENV_SETTINGS \
26 "fdt_high=0x10000000\0" \
27 "initrd_high=0x10000000\0"
30 #define CONFIG_SPL_SIZE (140 << 10)
31 #define CONFIG_SPL_MAX_SIZE (CONFIG_SPL_SIZE - (CONFIG_SPL_TEXT_BASE - 0x40000000))
33 #define CONFIG_SPL_BSS_START_ADDR (0x40000000 + CONFIG_SPL_SIZE)
34 #define CONFIG_SPL_BSS_MAX_SIZE (16 << 10)
36 #define CONFIG_SPL_STACK (0x40000000 + ((192 - 16) << 10))
37 #define CONFIG_SPL_BOOTROM_SAVE (CONFIG_SPL_STACK + 4)
39 #ifdef CONFIG_MVEBU_SPL_BOOT_DEVICE_MMC
40 /* SPL related MMC defines */
41 # ifdef CONFIG_SPL_BUILD
42 # define CONFIG_FIXED_SDHCI_ALIGNED_BUFFER 0x00180000 /* in SDRAM */
47 * mv-common.h should be defined after CMD configs since it used them
48 * to enable certain macros
50 #include "mv-common.h"
52 /* Include the common distro boot environment */
53 #ifndef CONFIG_SPL_BUILD
55 #define BOOT_TARGET_DEVICES(func) \
63 #define KERNEL_ADDR_R __stringify(0x1000000)
64 #define FDT_ADDR_R __stringify(0x2000000)
65 #define RAMDISK_ADDR_R __stringify(0x2200000)
66 #define SCRIPT_ADDR_R __stringify(0x1800000)
67 #define PXEFILE_ADDR_R __stringify(0x1900000)
69 #define LOAD_ADDRESS_ENV_SETTINGS \
70 "kernel_addr_r=" KERNEL_ADDR_R "\0" \
71 "fdt_addr_r=" FDT_ADDR_R "\0" \
72 "ramdisk_addr_r=" RAMDISK_ADDR_R "\0" \
73 "scriptaddr=" SCRIPT_ADDR_R "\0" \
74 "pxefile_addr_r=" PXEFILE_ADDR_R "\0"
76 #include <config_distro_bootcmd.h>
79 * The factory reset bootcommand on Omnia first sets all the front LEDs to green
80 * and then tries to load the rescue image from SPI flash memory and boot it
82 #define TURRIS_OMNIA_BOOTCMD_RESCUE \
84 "i2c mw 0x2a.1 0x3 0x1c 1; " \
85 "i2c mw 0x2a.1 0x4 0x1c 1; " \
86 "mw.l 0x01000000 0x00ff000c; " \
87 "i2c write 0x01000000 0x2a.1 0x5 4 -s; " \
88 "setenv bootargs \"earlyprintk console=ttyS0,115200" \
89 " omniarescue=$omnia_reset rescue_mode=$omnia_reset\"; " \
91 "sf read 0x1000000 0x100000 0x700000; " \
92 "lzmadec 0x1000000 0x1700000; " \
93 "if gpio input gpio@71_4; then " \
94 "bootm 0x1700000#sfp; " \
100 #define CONFIG_EXTRA_ENV_SETTINGS \
101 RELOCATION_LIMITS_ENV_SETTINGS \
102 LOAD_ADDRESS_ENV_SETTINGS \
103 "fdtfile=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
104 "console=ttyS0,115200\0" \
105 "bootcmd_rescue=" TURRIS_OMNIA_BOOTCMD_RESCUE "\0" \
108 #endif /* CONFIG_SPL_BUILD */
110 #endif /* _CONFIG_TURRIS_OMNIA_H */