2 * U-Boot - main board file
4 * Copyright (c) 2005-2008 Analog Devices Inc.
6 * (C) Copyright 2000-2004
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
9 * SPDX-License-Identifier: GPL-2.0+
15 #include "flash-defines.h"
17 DECLARE_GLOBAL_DATA_PTR;
21 printf("Board: ADI BF533 EZ-Kit Lite board\n");
22 printf(" Support: http://blackfin.uclinux.org/\n");
26 /* miscellaneous platform dependent initialisations */
29 /* Set direction bits for Video en/decoder reset as output */
30 *(volatile unsigned char *)(CONFIG_SYS_FLASH1_BASE + PSD_PORTA_DIR) =
31 PSDA_VDEC_RST | PSDA_VENC_RST;
32 /* Deactivate Video en/decoder reset lines */
33 *(volatile unsigned char *)(CONFIG_SYS_FLASH1_BASE + PSD_PORTA_DOUT) =
34 PSDA_VDEC_RST | PSDA_VENC_RST;
39 #ifdef CONFIG_SMC91111
40 int board_eth_init(bd_t *bis)
42 return smc91111_initialize(0, CONFIG_SMC91111_BASE);