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