]> git.ipfire.org Git - thirdparty/u-boot.git/blame - board/gaisler/grsim_leon2/grsim_leon2.c
Add GPL-2.0+ SPDX-License-Identifier to source files
[thirdparty/u-boot.git] / board / gaisler / grsim_leon2 / grsim_leon2.c
CommitLineData
1a459660
WD
1/*
2 * GRSIM/TSIM board
ab68f921
DH
3 *
4 * (C) Copyright 2007
5 * Daniel Hellstrom, Gaisler Research, daniel@gaisler.com.
6 *
1a459660 7 * SPDX-License-Identifier: GPL-2.0+
ab68f921
DH
8 */
9
10#include <common.h>
11#include <asm/leon.h>
12
9973e3c6 13phys_size_t initdram(int board_type)
ab68f921
DH
14{
15 return 1;
16}
17
18int checkboard(void)
19{
20 puts("Board: GRSIM/TSIM LEON2\n");
21 return 0;
22}
23
24int misc_init_r(void)
25{
26 return 0;
27}