2008-10-12 09:05:42 +00:00
|
|
|
/*
|
|
|
|
* U-boot - main board file
|
|
|
|
*
|
|
|
|
* Copyright (c) 2005-2008 Analog Devices Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the GPL-2 or later.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2009-07-21 05:01:11 +00:00
|
|
|
#include <netdev.h>
|
2008-10-12 09:05:42 +00:00
|
|
|
#include <config.h>
|
|
|
|
#include <command.h>
|
|
|
|
#include <asm/blackfin.h>
|
2009-11-20 08:24:43 +00:00
|
|
|
#include <asm/sdh.h>
|
2008-10-12 09:05:42 +00:00
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
|
|
int checkboard(void)
|
|
|
|
{
|
|
|
|
printf("Board: ADI BF548 EZ-Kit board\n");
|
|
|
|
printf(" Support: http://blackfin.uclinux.org/\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int board_early_init_f(void)
|
|
|
|
{
|
|
|
|
/* Port H: PH8 - PH13 == A4 - A9
|
|
|
|
* address lines of the parallel asynchronous memory interface
|
|
|
|
*/
|
|
|
|
|
|
|
|
/************************************************
|
|
|
|
* configure GPIO *
|
|
|
|
* set port H function enable register *
|
|
|
|
* configure PH8-PH13 as peripheral (not GPIO) *
|
|
|
|
*************************************************/
|
|
|
|
bfin_write_PORTH_FER(0x3F03);
|
|
|
|
|
|
|
|
/************************************************
|
|
|
|
* set port H MUX to configure PH8-PH13 *
|
|
|
|
* 1st Function (MUX = 00) (bits 16-27 == 0) *
|
|
|
|
* Set to address signals A4-A9 *
|
|
|
|
*************************************************/
|
|
|
|
bfin_write_PORTH_MUX(0);
|
|
|
|
|
|
|
|
/************************************************
|
|
|
|
* set port H direction register *
|
|
|
|
* enable PH8-PH13 as outputs *
|
|
|
|
*************************************************/
|
|
|
|
bfin_write_PORTH_DIR_SET(0x3F00);
|
|
|
|
|
|
|
|
/* Port I: PI0 - PH14 == A10 - A24
|
|
|
|
* address lines of the parallel asynchronous memory interface
|
|
|
|
*/
|
|
|
|
|
|
|
|
/************************************************
|
|
|
|
* set port I function enable register *
|
|
|
|
* configure PI0-PI14 as peripheral (not GPIO) *
|
|
|
|
*************************************************/
|
|
|
|
bfin_write_PORTI_FER(0x7fff);
|
|
|
|
|
|
|
|
/**************************************************
|
|
|
|
* set PORT I MUX to configure PI14-PI0 as *
|
|
|
|
* 1st Function (MUX=00) - address signals A10-A24 *
|
|
|
|
***************************************************/
|
|
|
|
bfin_write_PORTI_MUX(0);
|
|
|
|
|
|
|
|
/****************************************
|
|
|
|
* set PORT I direction register *
|
|
|
|
* enable PI0 - PI14 as outputs *
|
|
|
|
*****************************************/
|
|
|
|
bfin_write_PORTI_DIR_SET(0x7fff);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2009-07-21 05:01:11 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_SMC911X
|
|
|
|
int board_eth_init(bd_t *bis)
|
|
|
|
{
|
|
|
|
return smc911x_initialize(0, CONFIG_SMC911X_BASE);
|
|
|
|
}
|
|
|
|
#endif
|
2009-11-20 08:24:43 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_BFIN_SDH
|
|
|
|
int board_mmc_init(bd_t *bis)
|
|
|
|
{
|
|
|
|
return bfin_mmc_init(bis);
|
|
|
|
}
|
|
|
|
#endif
|