summaryrefslogtreecommitdiff
path: root/board/Marvell/mvebu_alleycat-5/board.c
blob: 619cd6c6cd35db33f2aac33d6797c6cae1ed752a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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;
}