blob: 27432b2897913daadc6c7bfb701b87eaa074a486 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass030777d2017-01-16 07:03:56 -07002/*
3 * Copyright (C) 2017 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glass030777d2017-01-16 07:03:56 -07005 */
Simon Glass7cf5fe02019-05-02 10:52:12 -06006
7#ifndef __asm_spl_h
8#define __asm_spl_h
9
10#define CONFIG_SPL_BOARD_LOAD_IMAGE
11
12enum {
13 BOOT_DEVICE_SPI = 10,
14 BOOT_DEVICE_BOARD,
15 BOOT_DEVICE_CROS_VBOOT,
16};
17
18void jump_to_spl(ulong entry);
19
20#endif