1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2017 Google, Inc
4  * Written by Simon Glass <sjg@chromium.org>
5  */
6 
7 #ifndef __asm_spl_h
8 #define __asm_spl_h
9 
10 enum {
11 	BOOT_DEVICE_SPI_MMAP	= 10,
12 	BOOT_DEVICE_FAST_SPI,
13 	BOOT_DEVICE_CROS_VBOOT,
14 };
15 
16 void jump_to_spl(ulong entry);
17 
18 #endif
19