diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2008-10-12 05:05:42 -0400 | 
|---|---|---|
| committer | Mike Frysinger <vapier@gentoo.org> | 2009-04-02 06:41:29 -0400 | 
| commit | 76d21803ddd7dc4bcb81739ea2d3cd679e052f46 (patch) | |
| tree | 8b3400c79529542f4871f135cce8f61f885c2be4 /board/bf548-ezkit/bf548-ezkit.c | |
| parent | dfc91c33957c95da34e3888dc87912d5c15a7603 (diff) | |
| download | olio-uboot-2014.01-76d21803ddd7dc4bcb81739ea2d3cd679e052f46.tar.xz olio-uboot-2014.01-76d21803ddd7dc4bcb81739ea2d3cd679e052f46.zip | |
Blackfin: bf548-ezkit: new board port
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'board/bf548-ezkit/bf548-ezkit.c')
| -rw-r--r-- | board/bf548-ezkit/bf548-ezkit.c | 79 | 
1 files changed, 79 insertions, 0 deletions
| diff --git a/board/bf548-ezkit/bf548-ezkit.c b/board/bf548-ezkit/bf548-ezkit.c new file mode 100644 index 000000000..74f93ba27 --- /dev/null +++ b/board/bf548-ezkit/bf548-ezkit.c @@ -0,0 +1,79 @@ +/* + * U-boot - main board file + * + * Copyright (c) 2005-2008 Analog Devices Inc. + * + * Licensed under the GPL-2 or later. + */ + +#include <common.h> +#include <config.h> +#include <command.h> +#include <asm/blackfin.h> + +DECLARE_GLOBAL_DATA_PTR; + +int checkboard(void) +{ +	printf("Board: ADI BF548 EZ-Kit board\n"); +	printf("       Support: http://blackfin.uclinux.org/\n"); +	return 0; +} + +phys_size_t initdram(int board_type) +{ +	gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; +	gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE; +	return gd->bd->bi_memsize; +} + +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; +} |