1 // SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause 2 /* 3 * Copyright (C) 2018, STMicroelectronics - All Rights Reserved 4 */ 5 #include <config.h> 6 #include <common.h> 7 #include <asm/arch/stm32.h> 8 9 /* 10 * Get a global data pointer 11 */ 12 DECLARE_GLOBAL_DATA_PTR; 13 14 int board_late_init(void) 15 { 16 return 0; 17 } 18 19 /* board dependent setup after realloc */ 20 int board_init(void) 21 { 22 /* address of boot parameters */ 23 gd->bd->bi_boot_params = STM32_DDR_BASE + 0x100; 24 25 return 0; 26 } 27