From 3f2546b2ef55b661fd8dd69682b38992225e86f6 Mon Sep 17 00:00:00 2001 From: fishsoupisgood Date: Mon, 29 Apr 2019 01:17:54 +0100 Subject: Initial import of qemu-2.4.1 --- roms/u-boot/board/tcm-bf537/Makefile | 12 ++++++ roms/u-boot/board/tcm-bf537/config.mk | 11 ++++++ roms/u-boot/board/tcm-bf537/gpio_cfi_flash.c | 3 ++ roms/u-boot/board/tcm-bf537/tcm-bf537.c | 59 ++++++++++++++++++++++++++++ 4 files changed, 85 insertions(+) create mode 100644 roms/u-boot/board/tcm-bf537/Makefile create mode 100644 roms/u-boot/board/tcm-bf537/config.mk create mode 100644 roms/u-boot/board/tcm-bf537/gpio_cfi_flash.c create mode 100644 roms/u-boot/board/tcm-bf537/tcm-bf537.c (limited to 'roms/u-boot/board/tcm-bf537') diff --git a/roms/u-boot/board/tcm-bf537/Makefile b/roms/u-boot/board/tcm-bf537/Makefile new file mode 100644 index 00000000..93a01e4a --- /dev/null +++ b/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/roms/u-boot/board/tcm-bf537/config.mk b/roms/u-boot/board/tcm-bf537/config.mk new file mode 100644 index 00000000..7f9138b0 --- /dev/null +++ b/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/roms/u-boot/board/tcm-bf537/gpio_cfi_flash.c b/roms/u-boot/board/tcm-bf537/gpio_cfi_flash.c new file mode 100644 index 00000000..c4fef9f5 --- /dev/null +++ b/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/roms/u-boot/board/tcm-bf537/tcm-bf537.c b/roms/u-boot/board/tcm-bf537/tcm-bf537.c new file mode 100644 index 00000000..a4f0f712 --- /dev/null +++ b/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 +#include +#include +#include +#include +#include +#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; +} -- cgit v1.2.3