diff options
Diffstat (limited to 'qemu/roms/u-boot/board/tcm-bf537')
-rw-r--r-- | qemu/roms/u-boot/board/tcm-bf537/Makefile | 12 | ||||
-rw-r--r-- | qemu/roms/u-boot/board/tcm-bf537/config.mk | 11 | ||||
-rw-r--r-- | qemu/roms/u-boot/board/tcm-bf537/gpio_cfi_flash.c | 3 | ||||
-rw-r--r-- | qemu/roms/u-boot/board/tcm-bf537/tcm-bf537.c | 59 |
4 files changed, 85 insertions, 0 deletions
diff --git a/qemu/roms/u-boot/board/tcm-bf537/Makefile b/qemu/roms/u-boot/board/tcm-bf537/Makefile new file mode 100644 index 000000000..93a01e4a3 --- /dev/null +++ b/qemu/roms/u-boot/board/tcm-bf537/Makefile @@ -0,0 +1,12 @@ +# +# U-boot - Makefile +# +# Copyright (c) 2005-2008 Analog Device Inc. +# +# (C) Copyright 2000-2006 +# Wolfgang Denk, DENX Software Engineering, wd@denx.de. +# +# SPDX-License-Identifier: GPL-2.0+ +# + +obj-y := tcm-bf537.o gpio_cfi_flash.o diff --git a/qemu/roms/u-boot/board/tcm-bf537/config.mk b/qemu/roms/u-boot/board/tcm-bf537/config.mk new file mode 100644 index 000000000..7f9138b09 --- /dev/null +++ b/qemu/roms/u-boot/board/tcm-bf537/config.mk @@ -0,0 +1,11 @@ +# +# Copyright (c) 2005-2008 Analog Device Inc. +# +# (C) Copyright 2001 +# Wolfgang Denk, DENX Software Engineering, wd@denx.de. +# +# SPDX-License-Identifier: GPL-2.0+ +# + +# Set some default LDR flags based on boot mode. +LDR_FLAGS-BFIN_BOOT_PARA := --bits 16 --dma 8 diff --git a/qemu/roms/u-boot/board/tcm-bf537/gpio_cfi_flash.c b/qemu/roms/u-boot/board/tcm-bf537/gpio_cfi_flash.c new file mode 100644 index 000000000..c4fef9f5e --- /dev/null +++ b/qemu/roms/u-boot/board/tcm-bf537/gpio_cfi_flash.c @@ -0,0 +1,3 @@ +#define GPIO_PIN_1 GPIO_PF4 +#define GPIO_PIN_2 GPIO_PF5 +#include "../cm-bf537e/gpio_cfi_flash.c" diff --git a/qemu/roms/u-boot/board/tcm-bf537/tcm-bf537.c b/qemu/roms/u-boot/board/tcm-bf537/tcm-bf537.c new file mode 100644 index 000000000..a4f0f7121 --- /dev/null +++ b/qemu/roms/u-boot/board/tcm-bf537/tcm-bf537.c @@ -0,0 +1,59 @@ +/* + * U-boot - main board file + * + * Copyright (c) 2005-2009 Analog Devices Inc. + * + * Licensed under the GPL-2 or later. + */ + +#include <common.h> +#include <config.h> +#include <command.h> +#include <net.h> +#include <netdev.h> +#include <asm/blackfin.h> +#include "../cm-bf537e/gpio_cfi_flash.h" + +DECLARE_GLOBAL_DATA_PTR; + +int checkboard(void) +{ + printf("Board: Bluetechnix TCM-BF537 board\n"); + printf(" Support: http://www.bluetechnix.at/\n"); + return 0; +} + +static void board_init_enetaddr(char *var) +{ + uchar enetaddr[6]; + + if (eth_getenv_enetaddr(var, enetaddr)) + return; + + printf("Warning: %s: generating 'random' MAC address\n", var); + eth_random_addr(enetaddr); + eth_setenv_enetaddr(var, enetaddr); +} + +#ifndef CONFIG_BFIN_MAC +# define bfin_EMAC_initialize(x) 1 +#endif +#ifndef CONFIG_SMC911X +# define smc911x_initialize(n, x) 1 +#endif +int board_eth_init(bd_t *bis) +{ + /* return ok if at least 1 eth device works */ + return bfin_EMAC_initialize(bis) & + smc911x_initialize(0, CONFIG_SMC911X_BASE); +} + +int misc_init_r(void) +{ + board_init_enetaddr("ethaddr"); + board_init_enetaddr("eth1addr"); + + gpio_cfi_flash_init(); + + return 0; +} |