blob: 9628e0f949a0d8d2e1120ed0caa67585699ec0bd [file] [log] [blame]
Harald Krapfenbauer4640c2b2009-08-20 19:20:41 -04001/*
2 * U-boot - main board file
3 *
4 * Copyright (c) 2005-2009 Analog Devices Inc.
5 *
6 * Licensed under the GPL-2 or later.
7 */
8
9#include <common.h>
10#include <config.h>
11#include <command.h>
12#include <net.h>
13#include <netdev.h>
14#include <asm/blackfin.h>
15#include <asm/net.h>
16#include "gpio_cfi_flash.h"
17
18DECLARE_GLOBAL_DATA_PTR;
19
20int checkboard(void)
21{
22 printf("Board: Bluetechnix CM-BF537U board\n");
23 printf(" Support: http://www.bluetechnix.at/\n");
24 return 0;
25}
26
27phys_size_t initdram(int board_type)
28{
29 gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
30 gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
31 return gd->bd->bi_memsize;
32}
33
34#ifdef CONFIG_BFIN_MAC
35static void board_init_enetaddr(uchar *mac_addr)
36{
37 puts("Warning: Generating 'random' MAC address\n");
38 bfin_gen_rand_mac(mac_addr);
39 eth_setenv_enetaddr("ethaddr", mac_addr);
40}
41
42int board_eth_init(bd_t *bis)
43{
44 return bfin_EMAC_initialize(bis);
45}
46#endif
47
48#ifdef CONFIG_SMC911X
49int board_eth_init(bd_t *bis)
50{
51 return smc911x_initialize(0, CONFIG_SMC911X_BASE);
52}
53#endif
54
55int misc_init_r(void)
56{
57#ifdef CONFIG_BFIN_MAC
58 uchar enetaddr[6];
59 if (!eth_getenv_enetaddr("ethaddr", enetaddr))
60 board_init_enetaddr(enetaddr);
61#endif
62
63 gpio_cfi_flash_init();
64
65 return 0;
66}