2007-03-18 17:24:52 +00:00
|
|
|
/*
|
2016-02-06 03:30:11 +00:00
|
|
|
* U-Boot - main board file
|
2007-03-18 17:24:52 +00:00
|
|
|
*
|
2008-10-12 02:44:14 +00:00
|
|
|
* Copyright (c) 2005-2008 Analog Devices Inc.
|
2007-03-18 17:24:52 +00:00
|
|
|
*
|
|
|
|
* (C) Copyright 2000-2004
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2007-03-18 17:24:52 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <config.h>
|
|
|
|
#include <command.h>
|
|
|
|
#include <asm/blackfin.h>
|
2007-12-10 21:32:14 +00:00
|
|
|
#include <net.h>
|
2008-02-05 00:26:55 +00:00
|
|
|
#include <asm/mach-common/bits/bootrom.h>
|
2008-09-01 05:22:04 +00:00
|
|
|
#include <netdev.h>
|
2007-03-18 17:24:52 +00:00
|
|
|
|
2007-09-15 18:48:41 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2007-03-18 17:24:52 +00:00
|
|
|
int checkboard(void)
|
|
|
|
{
|
|
|
|
printf("Board: ADI BF537 stamp board\n");
|
|
|
|
printf(" Support: http://blackfin.uclinux.org/\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-10-12 02:44:14 +00:00
|
|
|
#ifdef CONFIG_BFIN_MAC
|
|
|
|
static void board_init_enetaddr(uchar *mac_addr)
|
|
|
|
{
|
2017-02-11 13:43:54 +00:00
|
|
|
#ifdef CONFIG_MTD_NOR_FLASH
|
2015-05-04 19:55:15 +00:00
|
|
|
/* we cram the MAC in the last flash sector */
|
|
|
|
uchar *board_mac_addr = (uchar *)0x203F0000;
|
|
|
|
if (is_valid_ethaddr(board_mac_addr)) {
|
|
|
|
memcpy(mac_addr, board_mac_addr, 6);
|
|
|
|
eth_setenv_enetaddr("ethaddr", mac_addr);
|
2008-10-12 02:44:14 +00:00
|
|
|
}
|
2015-05-04 19:55:15 +00:00
|
|
|
#endif
|
2008-10-12 02:44:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int board_eth_init(bd_t *bis)
|
|
|
|
{
|
|
|
|
return bfin_EMAC_initialize(bis);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-03-18 17:24:52 +00:00
|
|
|
/* miscellaneous platform dependent initialisations */
|
|
|
|
int misc_init_r(void)
|
|
|
|
{
|
2008-10-12 02:44:14 +00:00
|
|
|
#ifdef CONFIG_BFIN_MAC
|
|
|
|
uchar enetaddr[6];
|
|
|
|
if (!eth_getenv_enetaddr("ethaddr", enetaddr))
|
|
|
|
board_init_enetaddr(enetaddr);
|
|
|
|
#endif
|
|
|
|
|
2017-02-11 13:43:54 +00:00
|
|
|
#ifdef CONFIG_MTD_NOR_FLASH
|
2008-10-12 02:44:14 +00:00
|
|
|
/* we use the last sector for the MAC address / POST LDR */
|
|
|
|
extern flash_info_t flash_info[];
|
|
|
|
flash_protect(FLAG_PROTECT_SET, 0x203F0000, 0x203FFFFF, &flash_info[0]);
|
2007-07-09 23:19:09 +00:00
|
|
|
#endif
|
2007-03-18 17:24:52 +00:00
|
|
|
|
2009-02-22 21:30:38 +00:00
|
|
|
#ifdef CONFIG_BFIN_IDE
|
|
|
|
cf_ide_init();
|
2007-03-18 17:24:52 +00:00
|
|
|
#endif
|
2009-02-22 21:30:38 +00:00
|
|
|
|
2007-03-18 17:24:52 +00:00
|
|
|
return 0;
|
|
|
|
}
|