blob: 60c8704b391063647f5d292303b5074f83398e27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) 2025 Altera Corporation <www.altera.com>
*/
#include <asm/arch/misc.h>
int board_early_init_f(void)
{
socfpga_get_sys_mgr_addr();
return 0;
}
|