aboutsummaryrefslogtreecommitdiff
path: root/board/Marvell/mvebu_alleycat-5/board.c
blob: c1b7cc3b613c4ad0a68ee2b2c88c6ce4fa979efa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: GPL-2.0+

#include <config.h>
#include <asm/global_data.h>

DECLARE_GLOBAL_DATA_PTR;

int board_init(void)
{
	gd->bd->bi_boot_params = CFG_SYS_SDRAM_BASE + 0x100;

	return 0;
}