Tom Rini | 8b0c8a1 | 2018-05-06 18:27:01 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause |
Patrick Delaunay | 8eb3b1e | 2018-03-12 10:46:18 +0100 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2018, STMicroelectronics - All Rights Reserved |
Patrick Delaunay | 8eb3b1e | 2018-03-12 10:46:18 +0100 | [diff] [blame] | 4 | */ |
| 5 | #include <config.h> |
| 6 | #include <common.h> |
Patrick Delaunay | 36e3d11 | 2018-07-27 16:37:08 +0200 | [diff] [blame] | 7 | #include <led.h> |
Patrick Delaunay | 8eb3b1e | 2018-03-12 10:46:18 +0100 | [diff] [blame] | 8 | #include <asm/arch/stm32.h> |
| 9 | |
| 10 | /* |
| 11 | * Get a global data pointer |
| 12 | */ |
| 13 | DECLARE_GLOBAL_DATA_PTR; |
| 14 | |
| 15 | int board_late_init(void) |
| 16 | { |
| 17 | return 0; |
| 18 | } |
| 19 | |
| 20 | /* board dependent setup after realloc */ |
| 21 | int board_init(void) |
| 22 | { |
| 23 | /* address of boot parameters */ |
| 24 | gd->bd->bi_boot_params = STM32_DDR_BASE + 0x100; |
| 25 | |
Patrick Delaunay | 36e3d11 | 2018-07-27 16:37:08 +0200 | [diff] [blame] | 26 | if (IS_ENABLED(CONFIG_LED)) |
| 27 | led_default_state(); |
| 28 | |
Patrick Delaunay | 8eb3b1e | 2018-03-12 10:46:18 +0100 | [diff] [blame] | 29 | return 0; |
| 30 | } |