avionic design with actual uboot and tooling
submodule of avionic design uboot bootloader and with included tools to get you started , read readme.md and readme-tk1-loader.md
This commit is contained in:
9
u-boot/board/gaisler/gr_ep2s60/Kconfig
Normal file
9
u-boot/board/gaisler/gr_ep2s60/Kconfig
Normal file
@@ -0,0 +1,9 @@
|
||||
if TARGET_GR_EP2S60
|
||||
|
||||
config SYS_BOARD
|
||||
default "gr_ep2s60"
|
||||
|
||||
config SYS_CONFIG_NAME
|
||||
default "gr_ep2s60"
|
||||
|
||||
endif
|
||||
6
u-boot/board/gaisler/gr_ep2s60/MAINTAINERS
Normal file
6
u-boot/board/gaisler/gr_ep2s60/MAINTAINERS
Normal file
@@ -0,0 +1,6 @@
|
||||
GR_EP2S60 BOARD
|
||||
#M: -
|
||||
S: Maintained
|
||||
F: board/gaisler/gr_ep2s60/
|
||||
F: include/configs/gr_ep2s60.h
|
||||
F: configs/gr_ep2s60_defconfig
|
||||
8
u-boot/board/gaisler/gr_ep2s60/Makefile
Normal file
8
u-boot/board/gaisler/gr_ep2s60/Makefile
Normal file
@@ -0,0 +1,8 @@
|
||||
#
|
||||
# (C) Copyright 2003-2006
|
||||
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0+
|
||||
#
|
||||
|
||||
obj-y := gr_ep2s60.o
|
||||
38
u-boot/board/gaisler/gr_ep2s60/gr_ep2s60.c
Normal file
38
u-boot/board/gaisler/gr_ep2s60/gr_ep2s60.c
Normal file
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
* (C) Copyright 2008
|
||||
* Daniel Hellstrom, daniel@gaisler.com.
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <netdev.h>
|
||||
#include <config.h>
|
||||
#include <asm/leon.h>
|
||||
|
||||
phys_size_t initdram(int board_type)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
int checkboard(void)
|
||||
{
|
||||
puts("Board: EP2S60 GRLIB\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
int misc_init_r(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_CMD_NET
|
||||
int board_eth_init(bd_t *bis)
|
||||
{
|
||||
int rc = 0;
|
||||
#ifdef CONFIG_SMC91111
|
||||
rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);
|
||||
#endif
|
||||
return rc;
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user