blob: 8f432049d6c742a92c4a74244b5aa640f7b1b5cd [file] [log] [blame]
Caleb Connollye6c284b2023-11-20 20:48:00 +00001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Configuration file for Qualcomm Snapdragon boards
4 *
5 * (C) Copyright 2021 Dzmitry Sankouski <dsankouski@gmail.com>
6 * (C) Copyright 2023 Linaro Ltd.
7 */
8
9#ifndef __CONFIGS_SNAPDRAGON_H
10#define __CONFIGS_SNAPDRAGON_H
11
12#define CFG_SYS_BAUDRATE_TABLE { 115200, 230400, 460800, 921600 }
13
Caleb Connollyb55c0f82023-12-07 00:13:07 +000014// 2a5aa852-b856-4d97-baa9-5c5f4421551f
15#define QUALCOMM_UBOOT_BOOT_IMAGE_GUID \
16 EFI_GUID(0x2a5aa852, 0xb856, 0x4d97, 0xba, 0xa9, \
17 0x5c, 0x5f, 0x44, 0x21, 0x55, 0x1f)
18
Caleb Connollye6c284b2023-11-20 20:48:00 +000019/* Load addressed are calculated during board_late_init(). See arm/mach-snapdragon/board.c */
20#define CFG_EXTRA_ENV_SETTINGS \
Caleb Connollydcca2dd2023-12-04 15:00:37 +000021 "bootdelay=1\0" \
Caleb Connollye6c284b2023-11-20 20:48:00 +000022 "stdin=serial,button-kbd\0" \
23 "stdout=serial,vidconsole\0" \
24 "stderr=serial,vidconsole\0" \
Caleb Connollydcca2dd2023-12-04 15:00:37 +000025 "preboot=bootflow scan -l\0" \
26 "fastboot=fastboot -l $fastboot_addr_r usb 0\0" \
Caleb Connollyda550902023-10-17 16:58:30 +010027 "bootmenu_0=Boot first available device=bootflow scan -b\0" \
28 "bootmenu_1=Enable USB mass storage=ums 0 scsi 0,1,2,3,4,5\0" \
Caleb Connollydcca2dd2023-12-04 15:00:37 +000029 "bootmenu_2=Enable fastboot mode=run fastboot\0" \
Caleb Connollyda550902023-10-17 16:58:30 +010030 "bootmenu_3=Reset device=reset\0" \
31 "menucmd=bootmenu\0" \
32 "bootcmd=bootflow scan -b\0" /* first entry is default */
Caleb Connollye6c284b2023-11-20 20:48:00 +000033
34#endif