blob: d6992a26caf4dd7c15f09b4d7c6432e4109832c6 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Xu Ziyuan3da09a82016-07-05 18:06:30 +08002/*
3 * (C) Copyright 2016 Rockchip Electronics Co., Ltd
Xu Ziyuan3da09a82016-07-05 18:06:30 +08004 */
5
6#include <common.h>
7#include <spl.h>
8
9void board_boot_order(u32 *spl_boot_list)
10{
11 /* eMMC prior to sdcard. */
12 spl_boot_list[0] = BOOT_DEVICE_MMC2;
13 spl_boot_list[1] = BOOT_DEVICE_MMC1;
14}