Gitiles
Code Review
Sign In
git01.mediatek.com
/
filogic
/
uboot
/
5c1b071308ecaec4e070d12f54fb5908a2e5f502
/
.
/
board
/
Marvell
/
mvebu_alleycat-5
/
board.c
blob: 619cd6c6cd35db33f2aac33d6797c6cae1ed752a [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0+
#include
<common.h>
#include
<asm/global_data.h>
DECLARE_GLOBAL_DATA_PTR
;
int
board_init
(
void
)
{
gd
->
bd
->
bi_boot_params
=
CONFIG_SYS_SDRAM_BASE
+
0x100
;
return
0
;
}