HomeSort by relevance Sort by last modified time
    Searched refs:boot_device (Results 1 - 25 of 34) sorted by null

1 2

  /external/u-boot/arch/arm/mach-omap2/
boot-common.c 34 u32 boot_device; local
43 boot_device = omap_boot_params->boot_device;
55 if (boot_device == BOOT_DEVICE_NAND_I2C)
56 boot_device = BOOT_DEVICE_NAND;
65 if (boot_device == BOOT_DEVICE_QSPI_4)
66 boot_device = BOOT_DEVICE_SPI;
75 if (boot_device == 0x05) {
76 omap_boot_params->boot_device = BOOT_DEVICE_NAND;
77 boot_device = BOOT_DEVICE_NAND
    [all...]
  /external/u-boot/arch/arm/include/asm/arch-mx7/
sys_proto.h 11 enum boot_device get_boot_device(void);
  /external/u-boot/arch/arm/mach-mvebu/
spl.c 18 u32 boot_device; local
26 boot_device = (val & BOOTROM_ERR_MODE_MASK) >> BOOTROM_ERR_MODE_OFFS;
27 debug("BOOTROM_REG=0x%08x boot_device=0x%x\n", val, boot_device);
34 if (boot_device)
36 if (boot_device == BOOTROM_ERR_MODE_UART)
44 boot_device = (val & BOOT_DEV_SEL_MASK) >> BOOT_DEV_SEL_OFFS;
45 debug("SAR_REG=0x%08x boot_device=0x%x\n", val, boot_device);
46 switch (boot_device) {
    [all...]
  /external/u-boot/arch/arm/include/asm/arch-mx8m/
sys_proto.h 15 enum boot_device get_boot_device(void);
  /external/u-boot/arch/arm/mach-stm32mp/
spl.c 30 u32 spl_boot_mode(const u32 boot_device)
35 int spl_boot_partition(const u32 boot_device)
37 switch (boot_device) {
  /external/u-boot/arch/arm/mach-rockchip/
spl-boot-order.c 102 int boot_device; local
139 boot_device = spl_node_to_boot_device(node);
140 if (boot_device < 0) {
146 spl_boot_list[idx++] = boot_device;
rk3399-board-spl.c 52 u32 boot_device = BOOT_DEVICE_MMC1; local
57 return boot_device;
  /external/u-boot/arch/arm/mach-uniphier/
mmc-boot-mode.c 11 u32 spl_boot_mode(const u32 boot_device)
  /external/u-boot/include/
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);
151 * @boot_device: A number indicating the BOOT_DEVICE type. There are various
152 * BOOT_DEVICE... #defines and enums in U-Boot and they are not consistently
162 uint boot_device; member in struct:spl_boot_device
170 * @boot_device: Boot device that this loader supports
177 uint boot_device; member in struct:spl_image_loader
202 .boot_device = _boot_device,
    [all...]
avb_verify.h 44 AvbOps *avb_ops_alloc(int boot_device);
  /external/u-boot/arch/arm/mach-uniphier/boot-device/
boot-device.h 11 unsigned int boot_device; member in struct:uniphier_boot_device
  /external/u-boot/arch/arm/include/asm/arch-am33xx/
omap.h 40 unsigned char boot_device; member in struct:omap_boot_parameters
  /external/u-boot/arch/arm/include/asm/mach-imx/
boot_mode.h 11 enum boot_device { enum
  /external/u-boot/common/spl/
spl_mmc.c 97 static int spl_mmc_get_device_index(u32 boot_device)
99 switch (boot_device) {
114 static int spl_mmc_find_device(struct mmc **mmcp, u32 boot_device)
121 mmc_dev = spl_mmc_get_device_index(boot_device);
281 u32 __weak spl_boot_mode(const u32 boot_device)
294 int spl_boot_partition(const u32 boot_device)
308 err = spl_mmc_find_device(&mmc, bootdev->boot_device);
320 boot_mode = spl_boot_mode(bootdev->boot_device);
355 err = spl_boot_partition(bootdev->boot_device);
spl_ubi.c 22 switch (bootdev->boot_device) {
74 if (bootdev->boot_device == BOOT_DEVICE_NAND)
spl_ram.c 39 if (bootdev->boot_device == BOOT_DEVICE_DFU)
spl.c 397 static struct spl_image_loader *spl_ll_find_loader(uint boot_device)
406 if (boot_device == entry->boot_device)
419 bootdev.boot_device = loader->boot_device;
  /external/u-boot/board/compulab/cl-som-imx7/
spl.c 189 u32 boot_device = spl_boot_device(); local
191 if (boot_device == BOOT_DEVICE_SPI)
193 else if (boot_device == BOOT_DEVICE_MMC1)
  /external/u-boot/board/siemens/corvus/
board.c 120 u32 boot_device; local
123 boot_device = spl_boot_device();
124 switch (boot_device) {
  /external/u-boot/arch/arm/mach-imx/
spl.c 126 enum boot_device boot_device_spl = get_boot_device();
159 u32 spl_boot_mode(const u32 boot_device)
  /external/u-boot/arch/arm/mach-stm32mp/include/mach/
stm32.h 57 enum boot_device { enum
  /external/u-boot/board/eets/pdu001/
board.c 72 u32 boot_device(void) function
77 /* Store the boot device in the environment variable 'boot_device' */
80 switch (boot_device()) {
82 env_set("boot_device", "emmc");
86 env_set("boot_device", "sdcard");
90 env_set("boot_device", "unknown");
  /external/u-boot/arch/arm/include/asm/arch-omap4/
omap.h 133 unsigned char boot_device; member in struct:omap_boot_parameters
  /external/u-boot/cmd/
nand.c 934 char *boot_device = NULL; local
969 boot_device = env_get("bootdevice");
973 boot_device = env_get("bootdevice");
977 boot_device = argv[2];
981 boot_device = argv[2];
993 if (!boot_device) {
1000 idx = simple_strtoul(boot_device, NULL, 16);
  /external/u-boot/tools/
zynqmpimage.h 49 uint32_t boot_device; /* 0x14 */ member in struct:image_header_table

Completed in 2906 milliseconds

1 2