blob: 96e759d99cabcd7e1a4f751d36053200aa1f364d [file] [log] [blame]
Stephan Gerhold3f1d3e42020-01-04 18:45:19 +01001/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 * Copyright (C) 2019 Stephan Gerhold <stephan@gerhold.net>
4 */
5#ifndef __CONFIGS_STEMMY_H
6#define __CONFIGS_STEMMY_H
7
8#include <linux/sizes.h>
9
Stephan Gerholdaee9df32021-07-07 12:58:54 +020010/*
11 * The "stemmy" U-Boot port is designed to be chainloaded by the Samsung
12 * bootloader on devices based on ST-Ericsson Ux500. Therefore, we skip most
13 * low-level initialization and rely on configuration provided by the Samsung
14 * bootloader. New images are loaded at the same address for compatibility.
15 */
Stephan Gerholdaee9df32021-07-07 12:58:54 +020016#define CONFIG_SYS_INIT_SP_ADDR CONFIG_SYS_TEXT_BASE
Linus Walleij82f5c542021-11-20 23:55:42 +010017#define CONFIG_SYS_BOOTM_LEN SZ_64M
Stephan Gerhold3f1d3e42020-01-04 18:45:19 +010018
Stephan Gerhold3f1d3e42020-01-04 18:45:19 +010019/* FIXME: This should be loaded from device tree... */
20#define CONFIG_SYS_L2_PL310
21#define CONFIG_SYS_PL310_BASE 0xa0412000
22
Stephan Gerhold8e4386c2021-08-07 15:07:22 +020023/* Linux does not boot if FDT / initrd is loaded to end of RAM */
24#define BOOT_ENV \
25 "fdt_high=0x6000000\0" \
26 "initrd_high=0x6000000\0"
27
28#define CONSOLE_ENV \
29 "stdin=serial\0" \
30 "stdout=serial,vidconsole\0" \
31 "stderr=serial,vidconsole\0"
32
33#define FASTBOOT_ENV \
34 "fastboot_partition_alias_boot=Kernel\0" \
35 "fastboot_partition_alias_recovery=Kernel2\0" \
36 "fastboot_partition_alias_system=SYSTEM\0" \
37 "fastboot_partition_alias_cache=CACHEFS\0" \
38 "fastboot_partition_alias_hidden=HIDDEN\0" \
39 "fastboot_partition_alias_userdata=DATAFS\0"
40
41#define BOOTCMD_ENV \
42 "fastbootcmd=echo '*** FASTBOOT MODE ***'; fastboot usb 0\0"
43
44#define CONFIG_EXTRA_ENV_SETTINGS \
45 BOOT_ENV \
46 CONSOLE_ENV \
47 FASTBOOT_ENV \
48 BOOTCMD_ENV
49
Stephan Gerhold3f1d3e42020-01-04 18:45:19 +010050#endif