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