blob: 82f8c4e5b78e42b3f35fa87d8b958ed5719e28b8 [file] [log] [blame]
Jagan Tekid55af072017-09-12 17:15:47 +05301/*
2 * Copyright (C) 2017 Amarula Solutions
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
Jagan Teki5d94ebe2017-09-27 23:03:13 +05308
9#ifndef CONFIG_TPL_BUILD
10#include <spl.h>
11
Jagan Teki1e84e442018-02-14 21:26:22 +053012void board_boot_order(u32 *spl_boot_list)
13{
14 /* eMMC prior to sdcard. */
15 spl_boot_list[0] = BOOT_DEVICE_MMC2;
16 spl_boot_list[1] = BOOT_DEVICE_MMC1;
17}
18
Jagan Teki5d94ebe2017-09-27 23:03:13 +053019int spl_start_uboot(void)
20{
21 /* break into full u-boot on 'c' */
22 if (serial_tstc() && serial_getc() == 'c')
23 return 1;
24
25 return 0;
26}
27#endif