X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=qemu%2Froms%2Fu-boot%2Fboard%2Fgaisler%2Fgrsim%2Fgrsim.c;fp=qemu%2Froms%2Fu-boot%2Fboard%2Fgaisler%2Fgrsim%2Fgrsim.c;h=fd73920b62d3ab51f33861df1711224c3d2b63e0;hb=e44e3482bdb4d0ebde2d8b41830ac2cdb07948fb;hp=0000000000000000000000000000000000000000;hpb=9ca8dbcc65cfc63d6f5ef3312a33184e1d726e00;p=kvmfornfv.git diff --git a/qemu/roms/u-boot/board/gaisler/grsim/grsim.c b/qemu/roms/u-boot/board/gaisler/grsim/grsim.c new file mode 100644 index 000000000..fd73920b6 --- /dev/null +++ b/qemu/roms/u-boot/board/gaisler/grsim/grsim.c @@ -0,0 +1,27 @@ +/* + * GRSIM/TSIM board + * + * (C) Copyright 2007 + * Daniel Hellstrom, Gaisler Research, daniel@gaisler.com. + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#include +#include + +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; +}