blob: a19496862359aa1a1d8b8209e02a268ccdec5037 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Alison Wang9da51782014-12-03 15:00:47 +08002/*
3 * Copyright 2014 Freescale Semiconductor, Inc.
Alison Wang9da51782014-12-03 15:00:47 +08004 */
5
6#include <common.h>
7#include <spl.h>
8
9u32 spl_boot_device(void)
10{
Simon Glassb58bfe02021-08-08 12:20:09 -060011#ifdef CONFIG_SPL_MMC
Alison Wang9da51782014-12-03 15:00:47 +080012 return BOOT_DEVICE_MMC1;
13#endif
14 return BOOT_DEVICE_NAND;
15}