1
0
Fork 0

Merge branch 'master' of git://www.denx.de/git/u-boot-imx

utp
Tom Rini 2016-01-10 09:17:52 -05:00
commit e6c516a973
2 changed files with 7 additions and 6 deletions

View File

@ -25,11 +25,15 @@ host PC (/tftpboot , for example).
=> sf probe => sf probe
=> setenv serverip <server_ip_address>
=> setenv ipaddr <board_ip_address>
=> tftp 0x12000000 SPL => tftp 0x12000000 SPL
=> sf erase 0x0 0x10000 => sf erase 0x0 0x10000
=> sf write 0x12000000 0x400 0x100 => sf write 0x12000000 0x400 0x10000
=> tftp 0x12000000 u-boot.img => tftp 0x12000000 u-boot.img

View File

@ -143,8 +143,9 @@ static void setup_iomux_enet(void)
SETUP_IOMUX_PADS(enet_pads); SETUP_IOMUX_PADS(enet_pads);
gpio_direction_output(ETH_PHY_RESET, 0); gpio_direction_output(ETH_PHY_RESET, 0);
mdelay(2); mdelay(10);
gpio_set_value(ETH_PHY_RESET, 1); gpio_set_value(ETH_PHY_RESET, 1);
udelay(100);
} }
int board_phy_config(struct phy_device *phydev) int board_phy_config(struct phy_device *phydev)
@ -594,10 +595,6 @@ static void gpr_init(void)
writel(0x007F007F, &iomux->gpr[7]); writel(0x007F007F, &iomux->gpr[7]);
} }
/*
* This section requires the differentiation between Solidrun mx6 boards, but
* for now, it will configure only for the mx6dual hummingboard version.
*/
static void spl_dram_init(int width) static void spl_dram_init(int width)
{ {
struct mx6_ddr_sysinfo sysinfo = { struct mx6_ddr_sysinfo sysinfo = {