28 lines
352 B
C
28 lines
352 B
C
|
/*
|
||
|
* GRSIM/TSIM board
|
||
|
*
|
||
|
* (C) Copyright 2007
|
||
|
* Daniel Hellstrom, Gaisler Research, daniel@gaisler.com.
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#include <common.h>
|
||
|
#include <asm/leon.h>
|
||
|
|
||
|
phys_size_t initdram(int board_type)
|
||
|
{
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
int checkboard(void)
|
||
|
{
|
||
|
puts("Board: GRSIM/TSIM\n");
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int misc_init_r(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|