blob: 1fb995098d01e63c77e8da2b4e6a73c558c20d66 [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
Simon Glass7cf5fe02019-05-02 10:52:12 -060010enum {
Simon Glass19da9c42019-09-25 08:11:39 -060011 BOOT_DEVICE_SPI_MMAP = 10,
Simon Glassec1a30c2019-12-06 21:41:43 -070012 BOOT_DEVICE_FAST_SPI,
Simon Glass7cf5fe02019-05-02 10:52:12 -060013 BOOT_DEVICE_CROS_VBOOT,
Naresh Solanki9f64d1d2025-03-12 14:31:15 +053014 BOOT_DEVICE_NVME,
Simon Glass7cf5fe02019-05-02 10:52:12 -060015};
16
17void jump_to_spl(ulong entry);
18
19#endif