blob: 55f7696c51075cc8886a4ca9cc955d887fb31b4c [file] [log] [blame]
Ryder Leecbd2fba2018-11-15 10:07:52 +08001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2018 MediaTek Inc.
4 */
5
6#include <common.h>
Simon Glass401d1c42020-10-30 21:38:53 -06007#include <asm/global_data.h>
Ryder Leecbd2fba2018-11-15 10:07:52 +08008
9DECLARE_GLOBAL_DATA_PTR;
10
11int board_init(void)
12{
13 /* address of boot parameters */
Tom Riniaa6e94d2022-11-16 13:10:37 -050014 gd->bd->bi_boot_params = CFG_SYS_SDRAM_BASE + 0x100;
Ryder Leecbd2fba2018-11-15 10:07:52 +080015
16 return 0;
17}