Masahiro Yamada | 5894ca0 | 2014-10-03 19:21:06 +0900 | [diff] [blame] | 1 | /* |
2 | * Copyright (C) 2013-2014 Panasonic Corporation | ||||
3 | * Author: Masahiro Yamada <yamada.m@jp.panasonic.com> | ||||
4 | * | ||||
5 | * SPDX-License-Identifier: GPL-2.0+ | ||||
6 | */ | ||||
7 | |||||
8 | #include <common.h> | ||||
9 | #include <spl.h> | ||||
10 | |||||
11 | void spl_board_init(void) | ||||
12 | { | ||||
13 | #if defined(CONFIG_BOARD_POSTCLK_INIT) | ||||
14 | board_postclk_init(); | ||||
15 | #endif | ||||
16 | dram_init(); | ||||
17 | } |