diff options
author | Ye Li <ye.li@nxp.com> | 2017-03-07 12:13:05 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2017-04-05 14:04:43 +0800 |
commit | 0912f86887a1138244d099a43fc49aa7cf931bf0 (patch) | |
tree | bf8058364d78261f17daad7d93897a04f61ef566 /include/configs/mx6sllevk.h | |
parent | b9c64d0ef3f10a07b6140555353a063c166f2f8f (diff) | |
download | u-boot-imx-0912f86887a1138244d099a43fc49aa7cf931bf0.zip u-boot-imx-0912f86887a1138244d099a43fc49aa7cf931bf0.tar.gz u-boot-imx-0912f86887a1138244d099a43fc49aa7cf931bf0.tar.bz2 |
MLK-14366 mx6sllevk: Update board codes to align with v2016.03
Update mx6sll EVK board codes for features:
1. Add SD/MMC dynamical device detect.
2. Add wdog set for kernel.
3. Add mfgtool environments.
4. Modify SD/MMC environment offset.
Signed-off-by: Ye Li <ye.li@nxp.com>
Diffstat (limited to 'include/configs/mx6sllevk.h')
-rw-r--r-- | include/configs/mx6sllevk.h | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/include/configs/mx6sllevk.h b/include/configs/mx6sllevk.h index 8003fa7..7e38a05 100644 --- a/include/configs/mx6sllevk.h +++ b/include/configs/mx6sllevk.h @@ -32,7 +32,20 @@ #define CONFIG_SYS_I2C_SPEED 100000 #endif +#define CONFIG_MFG_ENV_SETTINGS \ + "mfgtool_args=setenv bootargs console=${console},${baudrate} " \ + "rdinit=/linuxrc " \ + "g_mass_storage.stall=0 g_mass_storage.removable=1 " \ + "g_mass_storage.file=/fat g_mass_storage.ro=1 " \ + "g_mass_storage.idVendor=0x066F g_mass_storage.idProduct=0x37FF "\ + "g_mass_storage.iSerialNumber=\"\" "\ + "\0" \ + "initrd_addr=0x83800000\0" \ + "initrd_high=0xffffffff\0" \ + "bootcmd_mfg=run mfgtool_args;bootz ${loadaddr} ${initrd_addr} ${fdt_addr};\0" \ + #define CONFIG_EXTRA_ENV_SETTINGS \ + CONFIG_MFG_ENV_SETTINGS \ "epdc_waveform=epdc_splash.bin\0" \ "script=boot.scr\0" \ "image=zImage\0" \ @@ -134,7 +147,7 @@ #define CONFIG_SYS_MMC_ENV_PART 0 /* user partition */ #define CONFIG_MMCROOT "/dev/mmcblk0p2" /* USDHC1 */ -#define CONFIG_ENV_OFFSET (12 * SZ_64K) +#define CONFIG_ENV_OFFSET (13 * SZ_64K) #define CONFIG_ENV_IS_IN_MMC /* MMC Configs */ |