Merge 'u-boot-imx/master' into 'u-boot-arm/master'

This commit is contained in:
Albert ARIBAUD
2014-01-14 11:50:54 +01:00
11 changed files with 45 additions and 53 deletions

View File

@@ -5,6 +5,7 @@
*/ */
#include <common.h> #include <common.h>
#include <div64.h>
#include <asm/io.h> #include <asm/io.h>
#include <asm/errno.h> #include <asm/errno.h>
#include <asm/arch/imx-regs.h> #include <asm/arch/imx-regs.h>
@@ -123,7 +124,7 @@ static u32 mxc_get_pll_pfd(enum pll_clocks pll, int pfd_num)
return 0; return 0;
} }
return (freq * 18) / ((div & ANATOP_PFD_FRAC_MASK(pfd_num)) >> return lldiv(freq * 18, (div & ANATOP_PFD_FRAC_MASK(pfd_num)) >>
ANATOP_PFD_FRAC_SHIFT(pfd_num)); ANATOP_PFD_FRAC_SHIFT(pfd_num));
} }

View File

@@ -264,15 +264,9 @@ int board_phy_config(struct phy_device *phydev)
int board_eth_init(bd_t *bis) int board_eth_init(bd_t *bis)
{ {
int ret;
setup_iomux_enet(); setup_iomux_enet();
ret = cpu_eth_init(bis); return cpu_eth_init(bis);
if (ret)
printf("FEC MXC: %s:failed\n", __func__);
return ret;
} }
int board_early_init_f(void) int board_early_init_f(void)

View File

@@ -186,13 +186,10 @@ int fecmxc_mii_postcall(int phy)
int board_eth_init(bd_t *bis) int board_eth_init(bd_t *bis)
{ {
struct eth_device *dev; struct eth_device *dev;
int ret; int ret = cpu_eth_init(bis);
ret = cpu_eth_init(bis); if (ret)
if (ret) {
printf("FEC MXC: %s:failed\n", __func__);
return ret; return ret;
}
dev = eth_get_dev_by_name("FEC"); dev = eth_get_dev_by_name("FEC");
if (!dev) { if (!dev) {

View File

@@ -192,15 +192,9 @@ int board_phy_config(struct phy_device *phydev)
int board_eth_init(bd_t *bis) int board_eth_init(bd_t *bis)
{ {
int ret;
setup_iomux_enet(); setup_iomux_enet();
ret = cpu_eth_init(bis); return cpu_eth_init(bis);
if (ret)
printf("FEC MXC: %s:failed\n", __func__);
return ret;
} }
#define BOARD_REV_B 0x200 #define BOARD_REV_B 0x200

View File

@@ -453,15 +453,9 @@ int overwrite_console(void)
int board_eth_init(bd_t *bis) int board_eth_init(bd_t *bis)
{ {
int ret;
setup_iomux_enet(); setup_iomux_enet();
ret = cpu_eth_init(bis); return cpu_eth_init(bis);
if (ret)
printf("FEC MXC: %s:failed\n", __func__);
return ret;
} }
int board_early_init_f(void) int board_early_init_f(void)

View File

@@ -106,17 +106,9 @@ int board_mmc_init(bd_t *bis)
#ifdef CONFIG_FEC_MXC #ifdef CONFIG_FEC_MXC
int board_eth_init(bd_t *bis) int board_eth_init(bd_t *bis)
{ {
int ret;
setup_iomux_fec(); setup_iomux_fec();
ret = cpu_eth_init(bis); return cpu_eth_init(bis);
if (ret) {
printf("FEC MXC: %s:failed\n", __func__);
return ret;
}
return 0;
} }
static int setup_fec(void) static int setup_fec(void)

View File

@@ -257,15 +257,9 @@ static void setup_display(void)
int board_eth_init(bd_t *bis) int board_eth_init(bd_t *bis)
{ {
int ret;
setup_iomux_enet(); setup_iomux_enet();
ret = cpu_eth_init(bis); return cpu_eth_init(bis);
if (ret)
printf("FEC MXC: %s:failed\n", __func__);
return ret;
} }
int board_early_init_f(void) int board_early_init_f(void)

View File

@@ -95,6 +95,28 @@
#define CONFIG_LOADADDR 0x12000000 #define CONFIG_LOADADDR 0x12000000
#define CONFIG_SYS_TEXT_BASE 0x17800000 #define CONFIG_SYS_TEXT_BASE 0x17800000
#ifdef CONFIG_SUPPORT_EMMC_BOOT
#define EMMC_ENV \
"emmcdev=2\0" \
"update_emmc_firmware=" \
"if test ${ip_dyn} = yes; then " \
"setenv get_cmd dhcp; " \
"else " \
"setenv get_cmd tftp; " \
"fi; " \
"if ${get_cmd} ${update_sd_firmware_filename}; then " \
"if mmc dev ${emmcdev} && " \
"mmc open ${emmcdev} 1; then " \
"setexpr fw_sz ${filesize} / 0x200; " \
"setexpr fw_sz ${fw_sz} + 1; " \
"mmc write ${loadaddr} 0x2 ${fw_sz}; " \
"mmc close ${emmcdev} 1; " \
"fi; " \
"fi\0"
#else
#define EMMC_ENV ""
#endif
#define CONFIG_EXTRA_ENV_SETTINGS \ #define CONFIG_EXTRA_ENV_SETTINGS \
"script=boot.scr\0" \ "script=boot.scr\0" \
"uimage=uImage\0" \ "uimage=uImage\0" \
@@ -121,6 +143,7 @@
"mmc write ${loadaddr} 0x2 ${fw_sz}; " \ "mmc write ${loadaddr} 0x2 ${fw_sz}; " \
"fi; " \ "fi; " \
"fi\0" \ "fi\0" \
EMMC_ENV \
"mmcargs=setenv bootargs console=${console},${baudrate} " \ "mmcargs=setenv bootargs console=${console},${baudrate} " \
"root=${mmcroot}\0" \ "root=${mmcroot}\0" \
"loadbootscript=" \ "loadbootscript=" \

View File

@@ -23,6 +23,8 @@
#endif #endif
#define PHYS_SDRAM_SIZE (1u * 1024 * 1024 * 1024) #define PHYS_SDRAM_SIZE (1u * 1024 * 1024 * 1024)
#define CONFIG_SUPPORT_EMMC_BOOT /* eMMC specific */
#include "mx6sabre_common.h" #include "mx6sabre_common.h"
#define CONFIG_SYS_FSL_USDHC_NUM 3 #define CONFIG_SYS_FSL_USDHC_NUM 3

View File

@@ -11,6 +11,7 @@
#include <asm/arch/imx-regs.h> #include <asm/arch/imx-regs.h>
#include <asm/sizes.h> #include <asm/sizes.h>
#include "mx6_common.h"
#define CONFIG_MX6 #define CONFIG_MX6
#define CONFIG_DISPLAY_CPUINFO #define CONFIG_DISPLAY_CPUINFO

View File

@@ -108,7 +108,7 @@
#define CONFIG_EXTRA_ENV_SETTINGS \ #define CONFIG_EXTRA_ENV_SETTINGS \
"script=boot.scr\0" \ "script=boot.scr\0" \
"uimage=uImage\0" \ "image=zImage\0" \
"console=ttymxc0\0" \ "console=ttymxc0\0" \
"splashpos=m,m\0" \ "splashpos=m,m\0" \
"fdt_high=0xffffffff\0" \ "fdt_high=0xffffffff\0" \
@@ -140,22 +140,22 @@
"fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \ "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \
"bootscript=echo Running bootscript from mmc ...; " \ "bootscript=echo Running bootscript from mmc ...; " \
"source\0" \ "source\0" \
"loaduimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${uimage}\0" \ "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \
"loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \ "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdt_addr} ${fdt_file}\0" \
"mmcboot=echo Booting from mmc ...; " \ "mmcboot=echo Booting from mmc ...; " \
"run mmcargs; " \ "run mmcargs; " \
"if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \ "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
"if run loadfdt; then " \ "if run loadfdt; then " \
"bootm ${loadaddr} - ${fdt_addr}; " \ "bootz ${loadaddr} - ${fdt_addr}; " \
"else " \ "else " \
"if test ${boot_fdt} = try; then " \ "if test ${boot_fdt} = try; then " \
"bootm; " \ "bootz; " \
"else " \ "else " \
"echo WARN: Cannot load the DT; " \ "echo WARN: Cannot load the DT; " \
"fi; " \ "fi; " \
"fi; " \ "fi; " \
"else " \ "else " \
"bootm; " \ "bootz; " \
"fi;\0" \ "fi;\0" \
"netargs=setenv bootargs console=${console},${baudrate} " \ "netargs=setenv bootargs console=${console},${baudrate} " \
"root=/dev/nfs " \ "root=/dev/nfs " \
@@ -167,19 +167,19 @@
"else " \ "else " \
"setenv get_cmd tftp; " \ "setenv get_cmd tftp; " \
"fi; " \ "fi; " \
"${get_cmd} ${uimage}; " \ "${get_cmd} ${image}; " \
"if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \ "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
"if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \ "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
"bootm ${loadaddr} - ${fdt_addr}; " \ "bootz ${loadaddr} - ${fdt_addr}; " \
"else " \ "else " \
"if test ${boot_fdt} = try; then " \ "if test ${boot_fdt} = try; then " \
"bootm; " \ "bootz; " \
"else " \ "else " \
"echo WARN: Cannot load the DT; " \ "echo WARN: Cannot load the DT; " \
"fi; " \ "fi; " \
"fi; " \ "fi; " \
"else " \ "else " \
"bootm; " \ "bootz; " \
"fi;\0" "fi;\0"
#define CONFIG_BOOTCOMMAND \ #define CONFIG_BOOTCOMMAND \
@@ -187,7 +187,7 @@
"if run loadbootscript; then " \ "if run loadbootscript; then " \
"run bootscript; " \ "run bootscript; " \
"else " \ "else " \
"if run loaduimage; then " \ "if run loadimage; then " \
"run mmcboot; " \ "run mmcboot; " \
"else run netboot; " \ "else run netboot; " \
"fi; " \ "fi; " \