mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
21 lines
474 B
C
21 lines
474 B
C
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||
|
/*
|
||
|
* Copyright (C) 2016 BayLibre, SAS
|
||
|
* Author: Neil Armstrong <narmstrong@baylibre.com>
|
||
|
*/
|
||
|
|
||
|
#ifndef __MESON_BOOT_H__
|
||
|
#define __MESON_BOOT_H__
|
||
|
|
||
|
/* Boot device */
|
||
|
#define BOOT_DEVICE_RESERVED 0
|
||
|
#define BOOT_DEVICE_EMMC 1
|
||
|
#define BOOT_DEVICE_NAND 2
|
||
|
#define BOOT_DEVICE_SPI 3
|
||
|
#define BOOT_DEVICE_SD 4
|
||
|
#define BOOT_DEVICE_USB 5
|
||
|
|
||
|
int meson_get_boot_device(void);
|
||
|
|
||
|
#endif /* __MESON_BOOT_H__ */
|