blob: 959bdd4358e97339844b142513bcd31daeef8ef5 [file] [log] [blame]
Lokesh Vutla6edde292019-06-13 10:29:43 +05301/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright (C) 2018-2019 Texas Instruments Incorporated - http://www.ti.com/
4 * Lokesh Vutla <lokeshvutla@ti.com>
5 */
6#ifndef _ASM_ARCH_J721E_SPL_H_
7#define _ASM_ARCH_J721E_SPL_H_
8
9/* With BootMode B = 0 */
Simon Glass4dcacfc2020-05-10 11:40:13 -060010#include <linux/bitops.h>
Lokesh Vutla6edde292019-06-13 10:29:43 +053011#define BOOT_DEVICE_HYPERFLASH 0x00
12#define BOOT_DEVICE_OSPI 0x01
13#define BOOT_DEVICE_QSPI 0x02
14#define BOOT_DEVICE_SPI 0x03
15#define BOOT_DEVICE_ETHERNET 0x04
16#define BOOT_DEVICE_I2C 0x06
17#define BOOT_DEVICE_UART 0x07
18
19/* With BootMode B = 1 */
20#define BOOT_DEVICE_MMC2 0x10
21#define BOOT_DEVICE_MMC1 0x11
Vignesh Raghavendrac626d622020-01-27 17:59:23 +053022#define BOOT_DEVICE_DFU 0x12
Lokesh Vutla6edde292019-06-13 10:29:43 +053023#define BOOT_DEVICE_UFS 0x13
24#define BOOT_DEVIE_GPMC 0x14
25#define BOOT_DEVICE_PCIE 0x15
26#define BOOT_DEVICE_MMC2_2 0x16
27#define BOOT_DEVICE_RAM 0x17
28
29#define BOOT_MODE_B_SHIFT 4
30#define BOOT_MODE_B_MASK BIT(4)
31
32#endif