2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2017-06-22 21:38:36 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Theobroma Systems Design und Consulting GmH
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <spl.h>
|
|
|
|
|
2019-08-07 06:40:53 +00:00
|
|
|
__weak int board_return_to_bootrom(struct spl_image_info *spl_image,
|
|
|
|
struct spl_boot_device *bootdev)
|
2017-06-22 21:38:36 +00:00
|
|
|
{
|
2019-08-07 06:40:53 +00:00
|
|
|
return 0;
|
2017-06-22 21:38:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int spl_return_to_bootrom(struct spl_image_info *spl_image,
|
|
|
|
struct spl_boot_device *bootdev)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* If the board implements a way to return to its ROM (with
|
|
|
|
* the expectation that the next stage of will be booted by
|
|
|
|
* the ROM), it will implement board_return_to_bootrom() and
|
|
|
|
* should not return from it.
|
|
|
|
*/
|
2019-08-07 06:40:53 +00:00
|
|
|
return board_return_to_bootrom(spl_image, bootdev);
|
2017-06-22 21:38:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SPL_LOAD_IMAGE_METHOD("BOOTROM", 0, BOOT_DEVICE_BOOTROM, spl_return_to_bootrom);
|