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