summaryrefslogtreecommitdiff
path: root/arch/x86/include/asm/spl.h
blob: 1fb995098d01e63c77e8da2b4e6a73c558c20d66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: GPL-2.0+ */
/*
 * Copyright (C) 2017 Google, Inc
 * Written by Simon Glass <sjg@chromium.org>
 */

#ifndef __asm_spl_h
#define __asm_spl_h

enum {
	BOOT_DEVICE_SPI_MMAP	= 10,
	BOOT_DEVICE_FAST_SPI,
	BOOT_DEVICE_CROS_VBOOT,
	BOOT_DEVICE_NVME,
};

void jump_to_spl(ulong entry);

#endif