diff options
author | RajithaY <rajithax.yerrumsetty@intel.com> | 2017-04-25 03:31:15 -0700 |
---|---|---|
committer | Rajitha Yerrumchetty <rajithax.yerrumsetty@intel.com> | 2017-05-22 06:48:08 +0000 |
commit | bb756eebdac6fd24e8919e2c43f7d2c8c4091f59 (patch) | |
tree | ca11e03542edf2d8f631efeca5e1626d211107e3 /qemu/roms/u-boot/include/spl.h | |
parent | a14b48d18a9ed03ec191cf16b162206998a895ce (diff) |
Adding qemu as a submodule of KVMFORNFV
This Patch includes the changes to add qemu as a submodule to
kvmfornfv repo and make use of the updated latest qemu for the
execution of all testcase
Change-Id: I1280af507a857675c7f81d30c95255635667bdd7
Signed-off-by:RajithaY<rajithax.yerrumsetty@intel.com>
Diffstat (limited to 'qemu/roms/u-boot/include/spl.h')
-rw-r--r-- | qemu/roms/u-boot/include/spl.h | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/qemu/roms/u-boot/include/spl.h b/qemu/roms/u-boot/include/spl.h deleted file mode 100644 index a7e41da7f..000000000 --- a/qemu/roms/u-boot/include/spl.h +++ /dev/null @@ -1,78 +0,0 @@ -/* - * (C) Copyright 2012 - * Texas Instruments, <www.ti.com> - * - * SPDX-License-Identifier: GPL-2.0+ - */ -#ifndef _SPL_H_ -#define _SPL_H_ - -/* Platform-specific defines */ -#include <linux/compiler.h> -#include <asm/spl.h> - - -/* Boot type */ -#define MMCSD_MODE_UNDEFINED 0 -#define MMCSD_MODE_RAW 1 -#define MMCSD_MODE_FAT 2 -#define MMCSD_MODE_EMMCBOOT 3 - -struct spl_image_info { - const char *name; - u8 os; - u32 load_addr; - u32 entry_point; - u32 size; - u32 flags; -}; - -#define SPL_COPY_PAYLOAD_ONLY 1 - -extern struct spl_image_info spl_image; - -/* SPL common functions */ -void preloader_console_init(void); -u32 spl_boot_device(void); -u32 spl_boot_mode(void); -void spl_parse_image_header(const struct image_header *header); -void spl_board_prepare_for_linux(void); -void __noreturn jump_to_image_linux(void *arg); -int spl_start_uboot(void); -void spl_display_print(void); - -/* NAND SPL functions */ -void spl_nand_load_image(void); - -/* OneNAND SPL functions */ -void spl_onenand_load_image(void); - -/* NOR SPL functions */ -void spl_nor_load_image(void); - -/* MMC SPL functions */ -void spl_mmc_load_image(void); - -/* YMODEM SPL functions */ -void spl_ymodem_load_image(void); - -/* SPI SPL functions */ -void spl_spi_load_image(void); - -/* Ethernet SPL functions */ -void spl_net_load_image(const char *device); - -/* USB SPL functions */ -void spl_usb_load_image(void); - -/* SATA SPL functions */ -void spl_sata_load_image(void); - -/* SPL FAT image functions */ -int spl_load_image_fat(block_dev_desc_t *block_dev, int partition, const char *filename); -int spl_load_image_fat_os(block_dev_desc_t *block_dev, int partition); - -#ifdef CONFIG_SPL_BOARD_INIT -void spl_board_init(void); -#endif -#endif |