summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-uniphier/board_early_init_f.c
blob: 71087404084ae75fdf85d3177d845e54cdd1be92 (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
/*
 * Copyright (C) 2012-2015 Panasonic Corporation
 *   Author: Masahiro Yamada <yamada.m@jp.panasonic.com>
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include <mach/led.h>
#include <mach/board.h>

void pin_init(void);
void clkrst_init(void);

int board_early_init_f(void)
{
	led_write(U, 0, , );

	pin_init();

	led_write(U, 1, , );

	clkrst_init();

	led_write(U, 2, , );

	return 0;
}
OpenPOWER on IntegriCloud