]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/gaisler/gr_xc3s_1500/gr_xc3s_1500.c
Merge branch 'u-boot/master' into u-boot-arm/master
[karo-tx-uboot.git] / board / gaisler / gr_xc3s_1500 / gr_xc3s_1500.c
1 /*
2  * (C) Copyright 2007
3  * Daniel Hellstrom, daniel@gaisler.com.
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #include <common.h>
9 #include <config.h>
10 #include <asm/leon.h>
11
12 phys_size_t initdram(int board_type)
13 {
14         return 1;
15 }
16
17 int checkboard(void)
18 {
19         puts("Board: GR-XC3S-1500\n");
20         return 0;
21 }
22
23 int misc_init_r(void)
24 {
25         return 0;
26 }