mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
34 lines
532 B
C
34 lines
532 B
C
|
/*
|
||
|
* 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(void)
|
||
|
{
|
||
|
switch (spl_boot_device()) {
|
||
|
case BOOT_DEVICE_MMC1:
|
||
|
#ifdef CONFIG_SPL_FAT_SUPPORT
|
||
|
return MMCSD_MODE_FAT;
|
||
|
#else
|
||
|
return MMCSD_MODE_RAW;
|
||
|
#endif
|
||
|
case BOOT_DEVICE_NAND:
|
||
|
return 0;
|
||
|
default:
|
||
|
puts("spl: error: unsupported device\n");
|
||
|
hang();
|
||
|
}
|
||
|
}
|