mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
5894ca007d
These are used by Panasonic UniPhier SoC family. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
17 lines
305 B
C
17 lines
305 B
C
/*
|
|
* Copyright (C) 2013-2014 Panasonic Corporation
|
|
* Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <spl.h>
|
|
|
|
void spl_board_init(void)
|
|
{
|
|
#if defined(CONFIG_BOARD_POSTCLK_INIT)
|
|
board_postclk_init();
|
|
#endif
|
|
dram_init();
|
|
}
|