blob: 619cd6c6cd35db33f2aac33d6797c6cae1ed752a [file] [log] [blame]
Chris Packham67b7d502022-11-05 17:24:00 +13001// SPDX-License-Identifier: GPL-2.0+
2
3#include <common.h>
4#include <asm/global_data.h>
5
6DECLARE_GLOBAL_DATA_PTR;
7
8int board_init(void)
9{
10 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
11
12 return 0;
13}