blob: 32045a9e47cb44651062a9041a6038d4a5c4aaca [file] [log] [blame]
Aubrey Li10ebdd92007-03-19 01:24:52 +08001/*
Mike Frysinger606ed322008-10-11 22:44:14 -04002 * U-boot - main board file
Aubrey Li10ebdd92007-03-19 01:24:52 +08003 *
Mike Frysinger606ed322008-10-11 22:44:14 -04004 * Copyright (c) 2005-2008 Analog Devices Inc.
Aubrey Li10ebdd92007-03-19 01:24:52 +08005 *
6 * (C) Copyright 2000-2004
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Aubrey Li10ebdd92007-03-19 01:24:52 +080010 */
11
12#include <common.h>
13#include <config.h>
14#include <command.h>
15#include <asm/blackfin.h>
Jean-Christophe PLAGNIOL-VILLARDb9d57872007-12-10 22:32:14 +010016#include <net.h>
Mike Frysinger66c4cf42008-02-04 19:26:55 -050017#include <asm/mach-common/bits/bootrom.h>
Ben Warren2f2b6b62008-08-31 22:22:04 -070018#include <netdev.h>
Aubrey Li10ebdd92007-03-19 01:24:52 +080019
Wolfgang Denkd112a2c2007-09-15 20:48:41 +020020DECLARE_GLOBAL_DATA_PTR;
21
Aubrey Li10ebdd92007-03-19 01:24:52 +080022int checkboard(void)
23{
Aubrey Li10ebdd92007-03-19 01:24:52 +080024 printf("Board: ADI BF537 stamp board\n");
25 printf(" Support: http://blackfin.uclinux.org/\n");
26 return 0;
27}
28
Mike Frysinger606ed322008-10-11 22:44:14 -040029#ifdef CONFIG_BFIN_MAC
30static void board_init_enetaddr(uchar *mac_addr)
31{
32#ifdef CONFIG_SYS_NO_FLASH
33# define USE_MAC_IN_FLASH 0
34#else
35# define USE_MAC_IN_FLASH 1
36#endif
37 bool valid_mac = false;
38
39 if (USE_MAC_IN_FLASH) {
40 /* we cram the MAC in the last flash sector */
41 uchar *board_mac_addr = (uchar *)0x203F0000;
42 if (is_valid_ether_addr(board_mac_addr)) {
43 memcpy(mac_addr, board_mac_addr, 6);
44 valid_mac = true;
45 }
46 }
47
48 if (!valid_mac) {
49 puts("Warning: Generating 'random' MAC address\n");
Masahiro Yamada56300392014-04-18 19:09:49 +090050 eth_random_addr(mac_addr);
Mike Frysinger606ed322008-10-11 22:44:14 -040051 }
52
53 eth_setenv_enetaddr("ethaddr", mac_addr);
54}
55
56int board_eth_init(bd_t *bis)
57{
58 return bfin_EMAC_initialize(bis);
59}
60#endif
61
Aubrey Li10ebdd92007-03-19 01:24:52 +080062/* miscellaneous platform dependent initialisations */
63int misc_init_r(void)
64{
Mike Frysinger606ed322008-10-11 22:44:14 -040065#ifdef CONFIG_BFIN_MAC
66 uchar enetaddr[6];
67 if (!eth_getenv_enetaddr("ethaddr", enetaddr))
68 board_init_enetaddr(enetaddr);
69#endif
Aubrey Li10ebdd92007-03-19 01:24:52 +080070
Mike Frysinger606ed322008-10-11 22:44:14 -040071#ifndef CONFIG_SYS_NO_FLASH
72 /* we use the last sector for the MAC address / POST LDR */
73 extern flash_info_t flash_info[];
74 flash_protect(FLAG_PROTECT_SET, 0x203F0000, 0x203FFFFF, &flash_info[0]);
Jon Loeligerd299abc2007-07-09 18:19:09 -050075#endif
Aubrey Li10ebdd92007-03-19 01:24:52 +080076
Mike Frysinger41d51612009-02-22 16:30:38 -050077#ifdef CONFIG_BFIN_IDE
78 cf_ide_init();
Aubrey Li10ebdd92007-03-19 01:24:52 +080079#endif
Mike Frysinger41d51612009-02-22 16:30:38 -050080
Aubrey Li10ebdd92007-03-19 01:24:52 +080081 return 0;
82}