]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/chipspark/popmetal_rk3288/popmetal-rk3288.c
rockchip: add support for rk3288 PopMetal board
[people/ms/u-boot.git] / board / chipspark / popmetal_rk3288 / popmetal-rk3288.c
1 /*
2 * (C) Copyright 2016 Rockchip Electronics Co., Ltd
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7 #include <common.h>
8 #include <spl.h>
9
10 void board_boot_order(u32 *spl_boot_list)
11 {
12 /* eMMC prior to sdcard */
13 spl_boot_list[0] = BOOT_DEVICE_MMC2;
14 spl_boot_list[1] = BOOT_DEVICE_MMC1;
15 }