2 * Copyright (C) 2012 Altera Corporation <www.altera.com>
4 * SPDX-License-Identifier: GPL-2.0+
9 #include <asm/u-boot.h>
10 #include <asm/utils.h>
13 #include <asm/arch/reset_manager.h>
16 DECLARE_GLOBAL_DATA_PTR;
18 u32 spl_boot_device(void)
20 return BOOT_DEVICE_RAM;
24 * Board initialization after bss clearance
26 void spl_board_init(void)
28 /* de-assert reset for peripherals and bridges based on handoff */
29 reset_deassert_peripherals_handoff();
31 /* enable console uart printing */
32 preloader_console_init();