summaryrefslogtreecommitdiffstats
path: root/board/gaisler/gr_xc3s_1500/gr_xc3s_1500.c
blob: 32fbbe2d7555ca22b17216d01622079075a39e80 (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
/*
 * (C) Copyright 2007
 * Daniel Hellstrom, daniel@gaisler.com.
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include <common.h>
#include <config.h>
#include <asm/leon.h>

phys_size_t initdram(int board_type)
{
	return 1;
}

int checkboard(void)
{
	puts("Board: GR-XC3S-1500\n");
	return 0;
}

int misc_init_r(void)
{
	return 0;
}
OpenPOWER on IntegriCloud