upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
568 B
30 lines
568 B
/*
|
|
* U-Boot - main board file
|
|
*
|
|
* Copyright (c) Switchfin Org. <dpn@switchfin.org>
|
|
*
|
|
* Copyright (c) 2005-2008 Analog Devices Inc.
|
|
*
|
|
* (C) Copyright 2000-2004
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
*
|
|
* Licensed under the GPL-2 or later.
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <net.h>
|
|
#include <netdev.h>
|
|
|
|
int checkboard(void)
|
|
{
|
|
printf("Board: Switchvoice PR1 Appliance\n");
|
|
printf(" Support: http://www.switchvoice.com/\n");
|
|
return 0;
|
|
}
|
|
|
|
#ifdef CONFIG_BFIN_MAC
|
|
int board_eth_init(bd_t *bis)
|
|
{
|
|
return bfin_EMAC_initialize(bis);
|
|
}
|
|
#endif
|
|
|