blob: 5fdf8379c08f02818e5356608fd145d5c4f36340 [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 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Aubrey Li26bf7de2007-03-19 01:24:52 +080010 */
11
12#include <common.h>
13#include <config.h>
14#include <command.h>
15#include <asm/blackfin.h>
Mike Frysinger751e54c2008-10-11 22:44:14 -040016#include <asm/net.h>
Jean-Christophe PLAGNIOL-VILLARDb8f41622007-12-10 22:32:14 +010017#include <net.h>
Mike Frysingerd4d77302008-02-04 19:26:55 -050018#include <asm/mach-common/bits/bootrom.h>
Ben Warren89973f82008-08-31 22:22:04 -070019#include <netdev.h>
Aubrey Li26bf7de2007-03-19 01:24:52 +080020
Wolfgang Denk1218abf2007-09-15 20:48:41 +020021DECLARE_GLOBAL_DATA_PTR;
22
Aubrey Li26bf7de2007-03-19 01:24:52 +080023int checkboard(void)
24{
Aubrey Li26bf7de2007-03-19 01:24:52 +080025 printf("Board: ADI BF537 stamp board\n");
26 printf(" Support: http://blackfin.uclinux.org/\n");
27 return 0;
28}
29
Mike Frysinger751e54c2008-10-11 22:44:14 -040030#ifdef CONFIG_BFIN_MAC
31static void board_init_enetaddr(uchar *mac_addr)
32{
33#ifdef CONFIG_SYS_NO_FLASH
34# define USE_MAC_IN_FLASH 0
35#else
36# define USE_MAC_IN_FLASH 1
37#endif
38 bool valid_mac = false;
39
40 if (USE_MAC_IN_FLASH) {
41 /* we cram the MAC in the last flash sector */
42 uchar *board_mac_addr = (uchar *)0x203F0000;
43 if (is_valid_ether_addr(board_mac_addr)) {
44 memcpy(mac_addr, board_mac_addr, 6);
45 valid_mac = true;
46 }
47 }
48
49 if (!valid_mac) {
50 puts("Warning: Generating 'random' MAC address\n");
51 bfin_gen_rand_mac(mac_addr);
52 }
53
54 eth_setenv_enetaddr("ethaddr", mac_addr);
55}
56
57int board_eth_init(bd_t *bis)
58{
59 return bfin_EMAC_initialize(bis);
60}
61#endif
62
Aubrey Li26bf7de2007-03-19 01:24:52 +080063/* miscellaneous platform dependent initialisations */
64int misc_init_r(void)
65{
Mike Frysinger751e54c2008-10-11 22:44:14 -040066#ifdef CONFIG_BFIN_MAC
67 uchar enetaddr[6];
68 if (!eth_getenv_enetaddr("ethaddr", enetaddr))
69 board_init_enetaddr(enetaddr);
70#endif
Aubrey Li26bf7de2007-03-19 01:24:52 +080071
Mike Frysinger751e54c2008-10-11 22:44:14 -040072#ifndef CONFIG_SYS_NO_FLASH
73 /* we use the last sector for the MAC address / POST LDR */
74 extern flash_info_t flash_info[];
75 flash_protect(FLAG_PROTECT_SET, 0x203F0000, 0x203FFFFF, &flash_info[0]);
Jon Loeligerfcec2eb2007-07-09 18:19:09 -050076#endif
Aubrey Li26bf7de2007-03-19 01:24:52 +080077
Mike Frysingerd248cfb2009-02-22 16:30:38 -050078#ifdef CONFIG_BFIN_IDE
79 cf_ide_init();
Aubrey Li26bf7de2007-03-19 01:24:52 +080080#endif
Mike Frysingerd248cfb2009-02-22 16:30:38 -050081
Aubrey Li26bf7de2007-03-19 01:24:52 +080082 return 0;
83}