1*e1bc64eeSSimon Glass /** 2*e1bc64eeSSimon Glass * Copyright (c) 2017 Google, Inc 3*e1bc64eeSSimon Glass * 4*e1bc64eeSSimon Glass * SPDX-License-Identifier: GPL-2.0+ 5*e1bc64eeSSimon Glass */ 6*e1bc64eeSSimon Glass 7*e1bc64eeSSimon Glass #include <common.h> 8*e1bc64eeSSimon Glass #include <asm/arch/bootrom.h> 9*e1bc64eeSSimon Glass 10*e1bc64eeSSimon Glass void back_to_bootrom(void) 11*e1bc64eeSSimon Glass { 12*e1bc64eeSSimon Glass #if defined(CONFIG_SPL_LIBGENERIC_SUPPORT) && !defined(CONFIG_TPL_BUILD) 13*e1bc64eeSSimon Glass printf("Returning to boot ROM..."); 14*e1bc64eeSSimon Glass #endif 15*e1bc64eeSSimon Glass _back_to_bootrom_s(); 16*e1bc64eeSSimon Glass } 17