diff options
Diffstat (limited to 'roms/u-boot/arch/arm/include/asm/arch-meson/boot.h')
-rw-r--r-- | roms/u-boot/arch/arm/include/asm/arch-meson/boot.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/roms/u-boot/arch/arm/include/asm/arch-meson/boot.h b/roms/u-boot/arch/arm/include/asm/arch-meson/boot.h new file mode 100644 index 000000000..c67d12d06 --- /dev/null +++ b/roms/u-boot/arch/arm/include/asm/arch-meson/boot.h @@ -0,0 +1,24 @@ +/* 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__ + +#include <linux/types.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); + +int meson_get_soc_rev(char *buff, size_t buff_len); + +#endif /* __MESON_BOOT_H__ */ |