/external/u-boot/arch/arm/mach-omap2/ |
D | boot-common.c | 34 u32 boot_device; in save_omap_boot_params() local 43 boot_device = omap_boot_params->boot_device; in save_omap_boot_params() 55 if (boot_device == BOOT_DEVICE_NAND_I2C) in save_omap_boot_params() 56 boot_device = BOOT_DEVICE_NAND; in save_omap_boot_params() 65 if (boot_device == BOOT_DEVICE_QSPI_4) in save_omap_boot_params() 66 boot_device = BOOT_DEVICE_SPI; in save_omap_boot_params() 75 if (boot_device == 0x05) { in save_omap_boot_params() 76 omap_boot_params->boot_device = BOOT_DEVICE_NAND; in save_omap_boot_params() 77 boot_device = BOOT_DEVICE_NAND; in save_omap_boot_params() 79 if (boot_device == 0x08) { in save_omap_boot_params() [all …]
|
/external/u-boot/arch/arm/mach-mvebu/ |
D | spl.c | 18 u32 boot_device; in get_boot_device() local 26 boot_device = (val & BOOTROM_ERR_MODE_MASK) >> BOOTROM_ERR_MODE_OFFS; in get_boot_device() 27 debug("BOOTROM_REG=0x%08x boot_device=0x%x\n", val, boot_device); in get_boot_device() 34 if (boot_device) in get_boot_device() 36 if (boot_device == BOOTROM_ERR_MODE_UART) in get_boot_device() 44 boot_device = (val & BOOT_DEV_SEL_MASK) >> BOOT_DEV_SEL_OFFS; in get_boot_device() 45 debug("SAR_REG=0x%08x boot_device=0x%x\n", val, boot_device); in get_boot_device() 46 switch (boot_device) { in get_boot_device()
|
/external/u-boot/include/ |
D | spl.h | 83 u32 spl_boot_mode(const u32 boot_device); 84 int spl_boot_partition(const u32 boot_device); 117 int spl_board_ubi_load_image(u32 boot_device); 162 uint boot_device; member 177 uint boot_device; member 202 .boot_device = _boot_device, \ 208 .boot_device = _boot_device, \
|
D | avb_verify.h | 44 AvbOps *avb_ops_alloc(int boot_device);
|
/external/u-boot/common/spl/ |
D | spl_mmc.c | 97 static int spl_mmc_get_device_index(u32 boot_device) in spl_mmc_get_device_index() argument 99 switch (boot_device) { in spl_mmc_get_device_index() 114 static int spl_mmc_find_device(struct mmc **mmcp, u32 boot_device) in spl_mmc_find_device() argument 121 mmc_dev = spl_mmc_get_device_index(boot_device); in spl_mmc_find_device() 281 u32 __weak spl_boot_mode(const u32 boot_device) in spl_boot_mode() argument 294 int spl_boot_partition(const u32 boot_device) in spl_boot_partition() argument 308 err = spl_mmc_find_device(&mmc, bootdev->boot_device); in spl_mmc_load_image() 320 boot_mode = spl_boot_mode(bootdev->boot_device); in spl_mmc_load_image() 355 err = spl_boot_partition(bootdev->boot_device); in spl_mmc_load_image()
|
D | spl.c | 397 static struct spl_image_loader *spl_ll_find_loader(uint boot_device) in spl_ll_find_loader() argument 406 if (boot_device == entry->boot_device) in spl_ll_find_loader() 419 bootdev.boot_device = loader->boot_device; in spl_load_image()
|
D | spl_ubi.c | 22 switch (bootdev->boot_device) { in spl_ubi_load_image() 74 if (bootdev->boot_device == BOOT_DEVICE_NAND) in spl_ubi_load_image()
|
D | spl_ram.c | 39 if (bootdev->boot_device == BOOT_DEVICE_DFU) in spl_ram_load_image()
|
/external/u-boot/arch/arm/mach-rockchip/ |
D | spl-boot-order.c | 102 int boot_device; in board_boot_order() local 139 boot_device = spl_node_to_boot_device(node); in board_boot_order() 140 if (boot_device < 0) { in board_boot_order() 146 spl_boot_list[idx++] = boot_device; in board_boot_order()
|
D | rk3399-board-spl.c | 52 u32 boot_device = BOOT_DEVICE_MMC1; in spl_boot_device() local 57 return boot_device; in spl_boot_device()
|
/external/u-boot/arch/arm/mach-stm32mp/ |
D | spl.c | 30 u32 spl_boot_mode(const u32 boot_device) in spl_boot_mode() argument 35 int spl_boot_partition(const u32 boot_device) in spl_boot_partition() argument 37 switch (boot_device) { in spl_boot_partition()
|
/external/u-boot/board/compulab/cl-som-imx7/ |
D | spl.c | 189 u32 boot_device = spl_boot_device(); in spl_board_init() local 191 if (boot_device == BOOT_DEVICE_SPI) in spl_board_init() 193 else if (boot_device == BOOT_DEVICE_MMC1) in spl_board_init()
|
/external/u-boot/board/siemens/corvus/ |
D | board.c | 120 u32 boot_device; in spl_board_init() local 123 boot_device = spl_boot_device(); in spl_board_init() 124 switch (boot_device) { in spl_board_init()
|
/external/u-boot/cmd/ |
D | nand.c | 934 char *boot_device = NULL; in do_nandboot() local 969 boot_device = env_get("bootdevice"); in do_nandboot() 973 boot_device = env_get("bootdevice"); in do_nandboot() 977 boot_device = argv[2]; in do_nandboot() 981 boot_device = argv[2]; in do_nandboot() 993 if (!boot_device) { in do_nandboot() 1000 idx = simple_strtoul(boot_device, NULL, 16); in do_nandboot()
|
/external/u-boot/arch/arm/mach-imx/ |
D | spl.c | 126 enum boot_device boot_device_spl = get_boot_device(); in spl_boot_device() 159 u32 spl_boot_mode(const u32 boot_device) in spl_boot_mode() argument
|
D | cpu.c | 413 enum boot_device get_boot_device(void) in get_boot_device() 418 enum boot_device boot_dev = SD1_BOOT; in get_boot_device()
|
/external/u-boot/board/eets/pdu001/ |
D | board.c | 72 u32 boot_device(void) in boot_device() function 80 switch (boot_device()) { in env_set_boot_device()
|
/external/u-boot/arch/arm/include/asm/arch-mx7/ |
D | sys_proto.h | 11 enum boot_device get_boot_device(void);
|
/external/u-boot/arch/arm/include/asm/arch-mx8m/ |
D | sys_proto.h | 15 enum boot_device get_boot_device(void);
|
/external/u-boot/arch/arm/mach-uniphier/ |
D | mmc-boot-mode.c | 11 u32 spl_boot_mode(const u32 boot_device) in spl_boot_mode() argument
|
/external/u-boot/arch/arm/include/asm/arch-am33xx/ |
D | omap.h | 40 unsigned char boot_device; member
|
/external/u-boot/arch/arm/mach-uniphier/boot-device/ |
D | boot-device.h | 11 unsigned int boot_device; member
|
/external/u-boot/arch/arm/include/asm/mach-imx/ |
D | boot_mode.h | 11 enum boot_device { enum
|
/external/u-boot/arch/arm/mach-stm32mp/include/mach/ |
D | stm32.h | 57 enum boot_device { enum
|
/external/u-boot/arch/arm/include/asm/arch-omap4/ |
D | omap.h | 133 unsigned char boot_device; member
|