diff options
Diffstat (limited to 'board/pdm360ng/pdm360ng.c')
| -rw-r--r-- | board/pdm360ng/pdm360ng.c | 31 | 
1 files changed, 0 insertions, 31 deletions
| diff --git a/board/pdm360ng/pdm360ng.c b/board/pdm360ng/pdm360ng.c index 9a164eeff..a1f2d5e49 100644 --- a/board/pdm360ng/pdm360ng.c +++ b/board/pdm360ng/pdm360ng.c @@ -44,37 +44,6 @@ DECLARE_GLOBAL_DATA_PTR;  extern flash_info_t flash_info[];  ulong flash_get_size (phys_addr_t base, int banknum); -/* Clocks in use */ -#define SCCR1_CLOCKS_EN	(CLOCK_SCCR1_CFG_EN |				\ -			 CLOCK_SCCR1_LPC_EN |				\ -			 CLOCK_SCCR1_NFC_EN |				\ -			 CLOCK_SCCR1_PSC_EN(CONFIG_PSC_CONSOLE) |	\ -			 CLOCK_SCCR1_PSCFIFO_EN |			\ -			 CLOCK_SCCR1_DDR_EN |				\ -			 CLOCK_SCCR1_FEC_EN |				\ -			 CLOCK_SCCR1_TPR_EN) - -#define SCCR2_CLOCKS_EN	(CLOCK_SCCR2_MEM_EN |		\ -			 CLOCK_SCCR2_SPDIF_EN |		\ -			 CLOCK_SCCR2_DIU_EN |		\ -			 CLOCK_SCCR2_I2C_EN) - -int board_early_init_f(void) -{ -	volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR; - -	/* -	 * Enable clocks -	 */ -	out_be32(&im->clk.sccr[0], SCCR1_CLOCKS_EN); -	out_be32(&im->clk.sccr[1], SCCR2_CLOCKS_EN); -#if defined(CONFIG_IIM) || defined(CONFIG_CMD_FUSE) -	setbits_be32(&im->clk.sccr[1], CLOCK_SCCR2_IIM_EN); -#endif - -	return 0; -} -  sdram_conf_t mddrc_config[] = {  	{  		(512 << 20),	/* 512 MB RAM configuration */ |