diff options
Diffstat (limited to 'board/freescale/mx28evk')
| -rw-r--r-- | board/freescale/mx28evk/iomux.c | 4 | ||||
| -rw-r--r-- | board/freescale/mx28evk/mx28evk.c | 10 | ||||
| -rw-r--r-- | board/freescale/mx28evk/u-boot.bd | 14 | 
3 files changed, 7 insertions, 21 deletions
| diff --git a/board/freescale/mx28evk/iomux.c b/board/freescale/mx28evk/iomux.c index 40d8cf609..ae6eda343 100644 --- a/board/freescale/mx28evk/iomux.c +++ b/board/freescale/mx28evk/iomux.c @@ -173,12 +173,12 @@ const iomux_cfg_t iomux_setup[] = {  #define HW_DRAM_CTL29_CONFIG	(CS_MAP << 24 | COLUMN_SIZE << 16 | \  					ADDR_PINS << 8 | APREBIT) -void mx28_adjust_memory_params(uint32_t *dram_vals) +void mxs_adjust_memory_params(uint32_t *dram_vals)  {  	dram_vals[HW_DRAM_CTL29] = HW_DRAM_CTL29_CONFIG;  }  void board_init_ll(void)  { -	mx28_common_spl_init(iomux_setup, ARRAY_SIZE(iomux_setup)); +	mxs_common_spl_init(iomux_setup, ARRAY_SIZE(iomux_setup));  } diff --git a/board/freescale/mx28evk/mx28evk.c b/board/freescale/mx28evk/mx28evk.c index 1bc83e960..d782aea61 100644 --- a/board/freescale/mx28evk/mx28evk.c +++ b/board/freescale/mx28evk/mx28evk.c @@ -49,8 +49,8 @@ int board_early_init_f(void)  	/* SSP0 clock at 96MHz */  	mx28_set_sspclk(MXC_SSPCLK0, 96000, 0); -	/* SSP2 clock at 96MHz */ -	mx28_set_sspclk(MXC_SSPCLK2, 96000, 0); +	/* SSP2 clock at 160MHz */ +	mx28_set_sspclk(MXC_SSPCLK2, 160000, 0);  #ifdef	CONFIG_CMD_USB  	mxs_iomux_setup_pad(MX28_PAD_SSP2_SS1__USB1_OVERCURRENT); @@ -64,7 +64,7 @@ int board_early_init_f(void)  int dram_init(void)  { -	return mx28_dram_init(); +	return mxs_dram_init();  }  int board_init(void) @@ -115,8 +115,8 @@ int fecmxc_mii_postcall(int phy)  int board_eth_init(bd_t *bis)  { -	struct mx28_clkctrl_regs *clkctrl_regs = -		(struct mx28_clkctrl_regs *)MXS_CLKCTRL_BASE; +	struct mxs_clkctrl_regs *clkctrl_regs = +		(struct mxs_clkctrl_regs *)MXS_CLKCTRL_BASE;  	struct eth_device *dev;  	int ret; diff --git a/board/freescale/mx28evk/u-boot.bd b/board/freescale/mx28evk/u-boot.bd deleted file mode 100644 index c60615a45..000000000 --- a/board/freescale/mx28evk/u-boot.bd +++ /dev/null @@ -1,14 +0,0 @@ -sources { -	u_boot_spl="spl/u-boot-spl.bin"; -	u_boot="u-boot.bin"; -} - -section (0) { -	load u_boot_spl > 0x0000; -	load ivt (entry = 0x0014) > 0x8000; -	hab call 0x8000; - -	load u_boot > 0x40000100; -	load ivt (entry = 0x40000100) > 0x8000; -	hab call 0x8000; -} |