2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2017-01-16 14:03:56 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Google, Inc
|
|
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
|
|
*/
|
2019-05-02 16:52:12 +00:00
|
|
|
|
|
|
|
#ifndef __asm_spl_h
|
|
|
|
#define __asm_spl_h
|
|
|
|
|
|
|
|
#define CONFIG_SPL_BOARD_LOAD_IMAGE
|
|
|
|
|
|
|
|
enum {
|
2019-09-25 14:11:39 +00:00
|
|
|
BOOT_DEVICE_SPI_MMAP = 10,
|
2019-12-07 04:41:43 +00:00
|
|
|
BOOT_DEVICE_FAST_SPI,
|
2019-05-02 16:52:12 +00:00
|
|
|
BOOT_DEVICE_CROS_VBOOT,
|
|
|
|
};
|
|
|
|
|
|
|
|
void jump_to_spl(ulong entry);
|
|
|
|
|
|
|
|
#endif
|