Aubrey Li | 26bf7de | 2007-03-19 01:24:52 +0800 | [diff] [blame] | 1 | /* |
Bin Meng | a187559 | 2016-02-05 19:30:11 -0800 | [diff] [blame] | 2 | * U-Boot - main board file |
Aubrey Li | 26bf7de | 2007-03-19 01:24:52 +0800 | [diff] [blame] | 3 | * |
Mike Frysinger | 751e54c | 2008-10-11 22:44:14 -0400 | [diff] [blame] | 4 | * Copyright (c) 2005-2008 Analog Devices Inc. |
Aubrey Li | 26bf7de | 2007-03-19 01:24:52 +0800 | [diff] [blame] | 5 | * |
| 6 | * (C) Copyright 2000-2004 |
| 7 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 8 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 9 | * SPDX-License-Identifier: GPL-2.0+ |
Aubrey Li | 26bf7de | 2007-03-19 01:24:52 +0800 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <common.h> |
| 13 | #include <config.h> |
| 14 | #include <command.h> |
| 15 | #include <asm/blackfin.h> |
Jean-Christophe PLAGNIOL-VILLARD | b8f4162 | 2007-12-10 22:32:14 +0100 | [diff] [blame] | 16 | #include <net.h> |
Mike Frysinger | d4d7730 | 2008-02-04 19:26:55 -0500 | [diff] [blame] | 17 | #include <asm/mach-common/bits/bootrom.h> |
Ben Warren | 89973f8 | 2008-08-31 22:22:04 -0700 | [diff] [blame] | 18 | #include <netdev.h> |
Aubrey Li | 26bf7de | 2007-03-19 01:24:52 +0800 | [diff] [blame] | 19 | |
Wolfgang Denk | 1218abf | 2007-09-15 20:48:41 +0200 | [diff] [blame] | 20 | DECLARE_GLOBAL_DATA_PTR; |
| 21 | |
Aubrey Li | 26bf7de | 2007-03-19 01:24:52 +0800 | [diff] [blame] | 22 | int checkboard(void) |
| 23 | { |
Aubrey Li | 26bf7de | 2007-03-19 01:24:52 +0800 | [diff] [blame] | 24 | printf("Board: ADI BF537 stamp board\n"); |
| 25 | printf(" Support: http://blackfin.uclinux.org/\n"); |
| 26 | return 0; |
| 27 | } |
| 28 | |
Mike Frysinger | 751e54c | 2008-10-11 22:44:14 -0400 | [diff] [blame] | 29 | #ifdef CONFIG_BFIN_MAC |
| 30 | static void board_init_enetaddr(uchar *mac_addr) |
| 31 | { |
Joe Hershberger | 76ec988 | 2015-05-04 14:55:15 -0500 | [diff] [blame] | 32 | #ifndef CONFIG_SYS_NO_FLASH |
| 33 | /* we cram the MAC in the last flash sector */ |
| 34 | uchar *board_mac_addr = (uchar *)0x203F0000; |
| 35 | if (is_valid_ethaddr(board_mac_addr)) { |
| 36 | memcpy(mac_addr, board_mac_addr, 6); |
| 37 | eth_setenv_enetaddr("ethaddr", mac_addr); |
| 38 | } |
Mike Frysinger | 751e54c | 2008-10-11 22:44:14 -0400 | [diff] [blame] | 39 | #endif |
Mike Frysinger | 751e54c | 2008-10-11 22:44:14 -0400 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | int board_eth_init(bd_t *bis) |
| 43 | { |
| 44 | return bfin_EMAC_initialize(bis); |
| 45 | } |
| 46 | #endif |
| 47 | |
Aubrey Li | 26bf7de | 2007-03-19 01:24:52 +0800 | [diff] [blame] | 48 | /* miscellaneous platform dependent initialisations */ |
| 49 | int misc_init_r(void) |
| 50 | { |
Mike Frysinger | 751e54c | 2008-10-11 22:44:14 -0400 | [diff] [blame] | 51 | #ifdef CONFIG_BFIN_MAC |
| 52 | uchar enetaddr[6]; |
| 53 | if (!eth_getenv_enetaddr("ethaddr", enetaddr)) |
| 54 | board_init_enetaddr(enetaddr); |
| 55 | #endif |
Aubrey Li | 26bf7de | 2007-03-19 01:24:52 +0800 | [diff] [blame] | 56 | |
Mike Frysinger | 751e54c | 2008-10-11 22:44:14 -0400 | [diff] [blame] | 57 | #ifndef CONFIG_SYS_NO_FLASH |
| 58 | /* we use the last sector for the MAC address / POST LDR */ |
| 59 | extern flash_info_t flash_info[]; |
| 60 | flash_protect(FLAG_PROTECT_SET, 0x203F0000, 0x203FFFFF, &flash_info[0]); |
Jon Loeliger | fcec2eb | 2007-07-09 18:19:09 -0500 | [diff] [blame] | 61 | #endif |
Aubrey Li | 26bf7de | 2007-03-19 01:24:52 +0800 | [diff] [blame] | 62 | |
Mike Frysinger | d248cfb | 2009-02-22 16:30:38 -0500 | [diff] [blame] | 63 | #ifdef CONFIG_BFIN_IDE |
| 64 | cf_ide_init(); |
Aubrey Li | 26bf7de | 2007-03-19 01:24:52 +0800 | [diff] [blame] | 65 | #endif |
Mike Frysinger | d248cfb | 2009-02-22 16:30:38 -0500 | [diff] [blame] | 66 | |
Aubrey Li | 26bf7de | 2007-03-19 01:24:52 +0800 | [diff] [blame] | 67 | return 0; |
| 68 | } |