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