summaryrefslogtreecommitdiffstats
path: root/arch/arm/cpu/armv7/uniphier/board_common.c
blob: 3fb26c6d84c7506bdaaef2e50536ad2fee74b6a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 * Copyright (C) 2012-2014 Panasonic Corporation
 *   Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include <common.h>
#include <asm/arch/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
OpenPOWER on IntegriCloud