blob: 384db3d84bcf07daf14ecce57e136c046299ef3f [file] [log] [blame]
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02001/*
2 * GRSIM/TSIM board
Daniel Hellstrom73caf572008-03-28 10:20:43 +01003 *
4 * (C) Copyright 2007
5 * Daniel Hellstrom, Gaisler Research, daniel@gaisler.com.
6 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Daniel Hellstrom73caf572008-03-28 10:20:43 +01008 */
9
10#include <common.h>
11#include <asm/leon.h>
12
Simon Glass39f90ba2017-03-31 08:40:25 -060013int initdram(void)
Daniel Hellstrom73caf572008-03-28 10:20:43 +010014{
Simon Glass39f90ba2017-03-31 08:40:25 -060015 /* Does not set gd->ram_size here */
16
17 return 0;
Daniel Hellstrom73caf572008-03-28 10:20:43 +010018}
19
20int checkboard(void)
21{
22 puts("Board: GRSIM/TSIM LEON2\n");
23 return 0;
24}
25
26int misc_init_r(void)
27{
28 return 0;
29}