blob: ed7eb089a87a16c19b37e88728b361892e3f78f1 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stefan Roese0299c902015-10-20 15:14:47 +02002/*
3 * Copyright (C) 2015 Stefan Roese <sr@denx.de>
Stefan Roese0299c902015-10-20 15:14:47 +02004 */
5
6#ifndef _CONFIG_CLEARFOG_H
7#define _CONFIG_CLEARFOG_H
8
Simon Glass1af3c7f2020-05-10 11:40:09 -06009#include <linux/stringify.h>
10
Stefan Roese0299c902015-10-20 15:14:47 +020011/*
12 * High Level Configuration Options (easy to change)
13 */
Stefan Roese0299c902015-10-20 15:14:47 +020014
Stefan Roese0299c902015-10-20 15:14:47 +020015/*
16 * TEXT_BASE needs to be below 16MiB, since this area is scrubbed
17 * for DDR ECC byte filling in the SPL before loading the main
18 * U-Boot into it.
19 */
Stefan Roese0299c902015-10-20 15:14:47 +020020
Stefan Roese0299c902015-10-20 15:14:47 +020021/* Environment in MMC */
Stefan Roese0299c902015-10-20 15:14:47 +020022/*
23 * For SD - reserve 1 LBA for MBR + 1M for u-boot image. The MMC/eMMC
24 * boot image starts @ LBA-0.
25 * As result in MMC/eMMC case it will be a 1 sector gap between u-boot
26 * image and environment
27 */
Stefan Roese0299c902015-10-20 15:14:47 +020028
Stefan Roese0299c902015-10-20 15:14:47 +020029/* Keep device tree and initrd in lower memory so the kernel can access them */
Patrick Wildtf3d9ec22017-05-10 15:12:34 +020030#define RELOCATION_LIMITS_ENV_SETTINGS \
Stefan Roese0299c902015-10-20 15:14:47 +020031 "fdt_high=0x10000000\0" \
32 "initrd_high=0x10000000\0"
33
Stefan Roese0299c902015-10-20 15:14:47 +020034/*
35 * mv-common.h should be defined after CMD configs since it used them
36 * to enable certain macros
37 */
38#include "mv-common.h"
39
Patrick Wildtf3d9ec22017-05-10 15:12:34 +020040/* Include the common distro boot environment */
Patrick Wildtf3d9ec22017-05-10 15:12:34 +020041#ifdef CONFIG_MMC
42#define BOOT_TARGET_DEVICES_MMC(func) func(MMC, mmc, 0)
43#else
44#define BOOT_TARGET_DEVICES_MMC(func)
45#endif
46
47#ifdef CONFIG_USB_STORAGE
48#define BOOT_TARGET_DEVICES_USB(func) func(USB, usb, 0)
49#else
50#define BOOT_TARGET_DEVICES_USB(func)
51#endif
52
Joel Johnsoncecf38a2020-03-23 11:26:32 -060053#ifndef CONFIG_SCSI
54#define BOOT_TARGET_DEVICES_SCSI_BUS0(func)
55#define BOOT_TARGET_DEVICES_SCSI_BUS1(func)
56#define BOOT_TARGET_DEVICES_SCSI_BUS2(func)
Joel Johnsonbd02fd22020-03-23 11:26:31 -060057#else
Joel Johnsoncecf38a2020-03-23 11:26:32 -060058/*
59 * With SCSI enabled, M.2 SATA is always located on bus 0
60 */
61#define BOOT_TARGET_DEVICES_SCSI_BUS0(func) func(SCSI, scsi, 0)
62
63/*
64 * Either one or both mPCIe slots may be configured as mSATA interfaces. The
65 * SCSI bus ids are assigned based on sequence of hardware present, not always
66 * tied to hardware slot ids. As such, use second SCSI bus if either slot is
67 * set for SATA, and only use third SCSI bus if both slots are SATA enabled.
68 */
69#if defined (CONFIG_CLEARFOG_CON2_SATA) || defined (CONFIG_CLEARFOG_CON3_SATA)
70#define BOOT_TARGET_DEVICES_SCSI_BUS1(func) func(SCSI, scsi, 1)
71#else
72#define BOOT_TARGET_DEVICES_SCSI_BUS1(func)
Joel Johnsonbd02fd22020-03-23 11:26:31 -060073#endif
74
Joel Johnsoncecf38a2020-03-23 11:26:32 -060075#if defined (CONFIG_CLEARFOG_CON2_SATA) && defined (CONFIG_CLEARFOG_CON3_SATA)
76#define BOOT_TARGET_DEVICES_SCSI_BUS2(func) func(SCSI, scsi, 2)
77#else
78#define BOOT_TARGET_DEVICES_SCSI_BUS2(func)
79#endif
80
81#endif /* CONFIG_SCSI */
82
83/*
84 * The SCSI buses are attempted in increasing bus order, there is no current
85 * mechanism to alter the default bus priority order for booting.
86 */
Patrick Wildtf3d9ec22017-05-10 15:12:34 +020087#define BOOT_TARGET_DEVICES(func) \
88 BOOT_TARGET_DEVICES_MMC(func) \
89 BOOT_TARGET_DEVICES_USB(func) \
Joel Johnsoncecf38a2020-03-23 11:26:32 -060090 BOOT_TARGET_DEVICES_SCSI_BUS0(func) \
91 BOOT_TARGET_DEVICES_SCSI_BUS1(func) \
92 BOOT_TARGET_DEVICES_SCSI_BUS2(func) \
Patrick Wildtf3d9ec22017-05-10 15:12:34 +020093 func(PXE, pxe, na) \
94 func(DHCP, dhcp, na)
95
96#define KERNEL_ADDR_R __stringify(0x800000)
97#define FDT_ADDR_R __stringify(0x100000)
98#define RAMDISK_ADDR_R __stringify(0x1800000)
99#define SCRIPT_ADDR_R __stringify(0x200000)
100#define PXEFILE_ADDR_R __stringify(0x300000)
101
102#define LOAD_ADDRESS_ENV_SETTINGS \
103 "kernel_addr_r=" KERNEL_ADDR_R "\0" \
104 "fdt_addr_r=" FDT_ADDR_R "\0" \
105 "ramdisk_addr_r=" RAMDISK_ADDR_R "\0" \
106 "scriptaddr=" SCRIPT_ADDR_R "\0" \
107 "pxefile_addr_r=" PXEFILE_ADDR_R "\0"
108
Tom Rini0613c362022-12-04 10:03:50 -0500109#define CFG_EXTRA_ENV_SETTINGS \
Patrick Wildtf3d9ec22017-05-10 15:12:34 +0200110 RELOCATION_LIMITS_ENV_SETTINGS \
111 LOAD_ADDRESS_ENV_SETTINGS \
Patrick Wildtf3d9ec22017-05-10 15:12:34 +0200112 "console=ttyS0,115200\0" \
Jan Kundrát082f86a2017-10-11 11:51:14 +0200113 "usbboot=usb start; fatload usb 0:1 ${scriptaddr} boot.scr; source ${scriptaddr}\0" \
114 "bootcmd=test -n \"${BOOT_A_LEFT}\" || setenv BOOT_A_LEFT 3;" \
115 "test -n \"${BOOT_B_LEFT}\" || setenv BOOT_B_LEFT 3;" \
116 "test -n \"${BOOT_ORDER}\" || setenv BOOT_ORDER \"A B\";" \
117 "for BOOT_SLOT in \"${BOOT_ORDER}\"; do" \
118 " if test \"x${rauc_part}\" != \"x\"; then" \
119 " ;" \
120 " elif test \"x${BOOT_SLOT}\" = \"xA\"; then" \
121 " if test ${BOOT_A_LEFT} -gt 0; then" \
122 " setexpr BOOT_A_LEFT ${BOOT_A_LEFT} - 1;" \
123 " echo \"Found valid slot A, ${BOOT_A_LEFT} attempts remaining\";" \
124 " rauc_part=1;" \
125 " rauc_slot=A;" \
126 " fi;" \
127 " elif test \"x${BOOT_SLOT}\" = \"xB\"; then" \
128 " if test ${BOOT_B_LEFT} -gt 0; then" \
129 " setexpr BOOT_B_LEFT ${BOOT_B_LEFT} - 1;" \
130 " echo \"Found valid slot B, ${BOOT_B_LEFT} attempts remaining\";" \
131 " rauc_part=3;" \
132 " rauc_slot=B;" \
133 " fi;" \
134 " fi;" \
135 "done;" \
136 "if test -n \"${rauc_part}\"; then" \
137 " saveenv ;" \
138 "else" \
139 " echo \"No valid slot found, resetting tries to 3\";" \
140 " setenv BOOT_A_LEFT 3;" \
141 " setenv BOOT_B_LEFT 3;" \
142 " saveenv;" \
143 " reset;" \
144 "fi;" \
145 "load mmc 0:${rauc_part} ${scriptaddr} /boot/boot.scr || reset;" \
146 "source ${scriptaddr} || reset\0"
Patrick Wildtf3d9ec22017-05-10 15:12:34 +0200147
Stefan Roese0299c902015-10-20 15:14:47 +0200148#endif /* _CONFIG_CLEARFOG_H */