mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
a86ac9540e
Since commit 0e7368c6c4
(kbuild: prepare for moving headers into
mach-*/include/mach), we can replace #include <asm/arch/*.h> with
<mach/*.h> so we do not need to create the symbolic link during the
build.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
32 lines
616 B
C
32 lines
616 B
C
/*
|
|
* Copyright (C) 2012-2014 Panasonic Corporation
|
|
* Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <mach/led.h>
|
|
|
|
/*
|
|
* Routine: board_init
|
|
* Description: Early hardware init.
|
|
*/
|
|
int board_init(void)
|
|
{
|
|
led_write(U, B, O, O);
|
|
|
|
return 0;
|
|
}
|
|
|
|
#if CONFIG_NR_DRAM_BANKS >= 2
|
|
void dram_init_banksize(void)
|
|
{
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
gd->bd->bi_dram[0].start = CONFIG_SDRAM0_BASE;
|
|
gd->bd->bi_dram[0].size = CONFIG_SDRAM0_SIZE;
|
|
gd->bd->bi_dram[1].start = CONFIG_SDRAM1_BASE;
|
|
gd->bd->bi_dram[1].size = CONFIG_SDRAM1_SIZE;
|
|
}
|
|
#endif
|