blob: 92dfffa8ca12a6be6a1c447d6b5ebee7027c9bce [file] [log] [blame]
Aubrey Li26bf7de2007-03-19 01:24:52 +08001/*
Mike Frysinger751e54c2008-10-11 22:44:14 -04002 * U-boot - main board file
Aubrey Li26bf7de2007-03-19 01:24:52 +08003 *
Mike Frysinger751e54c2008-10-11 22:44:14 -04004 * Copyright (c) 2005-2008 Analog Devices Inc.
Aubrey Li26bf7de2007-03-19 01:24:52 +08005 *
6 * (C) Copyright 2000-2004
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
Aubrey Li155fd762007-04-05 18:31:18 +080024 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
25 * MA 02110-1301 USA
Aubrey Li26bf7de2007-03-19 01:24:52 +080026 */
27
28#include <common.h>
29#include <config.h>
30#include <command.h>
31#include <asm/blackfin.h>
Mike Frysinger751e54c2008-10-11 22:44:14 -040032#include <asm/net.h>
Jean-Christophe PLAGNIOL-VILLARDb8f41622007-12-10 22:32:14 +010033#include <net.h>
Mike Frysingerd4d77302008-02-04 19:26:55 -050034#include <asm/mach-common/bits/bootrom.h>
Ben Warren89973f82008-08-31 22:22:04 -070035#include <netdev.h>
Aubrey Li26bf7de2007-03-19 01:24:52 +080036
Wolfgang Denk1218abf2007-09-15 20:48:41 +020037DECLARE_GLOBAL_DATA_PTR;
38
Aubrey Li26bf7de2007-03-19 01:24:52 +080039int checkboard(void)
40{
Aubrey Li26bf7de2007-03-19 01:24:52 +080041 printf("Board: ADI BF537 stamp board\n");
42 printf(" Support: http://blackfin.uclinux.org/\n");
43 return 0;
44}
45
Mike Frysinger751e54c2008-10-11 22:44:14 -040046#ifdef CONFIG_BFIN_MAC
47static void board_init_enetaddr(uchar *mac_addr)
48{
49#ifdef CONFIG_SYS_NO_FLASH
50# define USE_MAC_IN_FLASH 0
51#else
52# define USE_MAC_IN_FLASH 1
53#endif
54 bool valid_mac = false;
55
56 if (USE_MAC_IN_FLASH) {
57 /* we cram the MAC in the last flash sector */
58 uchar *board_mac_addr = (uchar *)0x203F0000;
59 if (is_valid_ether_addr(board_mac_addr)) {
60 memcpy(mac_addr, board_mac_addr, 6);
61 valid_mac = true;
62 }
63 }
64
65 if (!valid_mac) {
66 puts("Warning: Generating 'random' MAC address\n");
67 bfin_gen_rand_mac(mac_addr);
68 }
69
70 eth_setenv_enetaddr("ethaddr", mac_addr);
71}
72
73int board_eth_init(bd_t *bis)
74{
75 return bfin_EMAC_initialize(bis);
76}
77#endif
78
Aubrey Li26bf7de2007-03-19 01:24:52 +080079/* miscellaneous platform dependent initialisations */
80int misc_init_r(void)
81{
Mike Frysinger751e54c2008-10-11 22:44:14 -040082#ifdef CONFIG_BFIN_MAC
83 uchar enetaddr[6];
84 if (!eth_getenv_enetaddr("ethaddr", enetaddr))
85 board_init_enetaddr(enetaddr);
86#endif
Aubrey Li26bf7de2007-03-19 01:24:52 +080087
Mike Frysinger751e54c2008-10-11 22:44:14 -040088#ifndef CONFIG_SYS_NO_FLASH
89 /* we use the last sector for the MAC address / POST LDR */
90 extern flash_info_t flash_info[];
91 flash_protect(FLAG_PROTECT_SET, 0x203F0000, 0x203FFFFF, &flash_info[0]);
Jon Loeligerfcec2eb2007-07-09 18:19:09 -050092#endif
Aubrey Li26bf7de2007-03-19 01:24:52 +080093
Mike Frysingerd248cfb2009-02-22 16:30:38 -050094#ifdef CONFIG_BFIN_IDE
95 cf_ide_init();
Aubrey Li26bf7de2007-03-19 01:24:52 +080096#endif
Mike Frysingerd248cfb2009-02-22 16:30:38 -050097
Aubrey Li26bf7de2007-03-19 01:24:52 +080098 return 0;
99}