2 * (C) Copyright 2007-2012
3 * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
4 * Tom Cubie <tangliang@allwinnertech.com>
6 * SPDX-License-Identifier: GPL-2.0+
12 #include <linux/types.h>
14 void sdelay(unsigned long);
16 /* return_to_fel() - Return to BROM from SPL
18 * This returns back into the BROM after U-Boot SPL has performed its initial
19 * init. It uses the provided lr and sp to do so.
21 * @lr: BROM link register value (return address)
22 * @sp: BROM stack pointer
24 void return_to_fel(uint32_t lr, uint32_t sp);
26 /* Board / SoC level designware gmac init */
27 #if !defined CONFIG_SPL_BUILD && defined CONFIG_SUNXI_GMAC
28 void eth_init_board(void);
30 static inline void eth_init_board(void) {}