]> Git Repo - u-boot.git/blame - board/st/stm32mp1/stm32mp1.c
dm: led: move default state support in led uclass
[u-boot.git] / board / st / stm32mp1 / stm32mp1.c
CommitLineData
4549e789 1// SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
f8598d98
PD
2/*
3 * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
f8598d98
PD
4 */
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}
This page took 0.071676 seconds and 4 git commands to generate.