1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Copyright (C) 2018 MediaTek Inc. 4 */ 5 6 #include <common.h> 7 #include <asm/global_data.h> 8 9 DECLARE_GLOBAL_DATA_PTR; 10 board_init(void)11int board_init(void) 12 { 13 /* address of boot parameters */ 14 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; 15 16 return 0; 17 } 18