hc
2023-05-26 a23f51ed7a39e452c1037343a84d7db1ca2c5bd7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 * Copyright 2014 Freescale Semiconductor, Inc.
 *
 * SPDX-License-Identifier:    GPL-2.0+
 */
 
#include <common.h>
#include <spl.h>
 
u32 spl_boot_device(void)
{
#ifdef CONFIG_SPL_MMC_SUPPORT
   return BOOT_DEVICE_MMC1;
#endif
   return BOOT_DEVICE_NAND;
}
 
u32 spl_boot_mode(const u32 boot_device)
{
   switch (spl_boot_device()) {
   case BOOT_DEVICE_MMC1:
#ifdef CONFIG_SPL_FAT_SUPPORT
       return MMCSD_MODE_FS;
#else
       return MMCSD_MODE_RAW;
#endif
   case BOOT_DEVICE_NAND:
       return 0;
   default:
       puts("spl: error: unsupported device\n");
       hang();
   }
}