Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 Altera Corporation <www.altera.com> |
| 3 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <asm/io.h> |
| 9 | #include <asm/u-boot.h> |
| 10 | #include <asm/utils.h> |
| 11 | #include <version.h> |
| 12 | #include <image.h> |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 13 | #include <asm/arch/reset_manager.h> |
| 14 | #include <spl.h> |
Chin Liang See | 70fa4e7 | 2013-09-11 11:24:48 -0500 | [diff] [blame] | 15 | #include <asm/arch/system_manager.h> |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 16 | |
| 17 | DECLARE_GLOBAL_DATA_PTR; |
| 18 | |
| 19 | u32 spl_boot_device(void) |
| 20 | { |
| 21 | return BOOT_DEVICE_RAM; |
| 22 | } |
| 23 | |
| 24 | /* |
| 25 | * Board initialization after bss clearance |
| 26 | */ |
| 27 | void spl_board_init(void) |
| 28 | { |
Chin Liang See | 70fa4e7 | 2013-09-11 11:24:48 -0500 | [diff] [blame] | 29 | #ifndef CONFIG_SOCFPGA_VIRTUAL_TARGET |
| 30 | /* configure the pin muxing through system manager */ |
| 31 | sysmgr_pinmux_init(); |
| 32 | #endif /* CONFIG_SOCFPGA_VIRTUAL_TARGET */ |
| 33 | |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 34 | /* de-assert reset for peripherals and bridges based on handoff */ |
| 35 | reset_deassert_peripherals_handoff(); |
| 36 | |
| 37 | /* enable console uart printing */ |
| 38 | preloader_console_init(); |
| 39 | } |