mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-18 06:58:54 +00:00
Merge branch 'master' of git://www.denx.de/git/u-boot-imx
This commit is contained in:
commit
a538ae997a
20 changed files with 88 additions and 44 deletions
|
@ -21,7 +21,6 @@
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <asm/arch/mxc_hdmi.h>
|
#include <asm/arch/mxc_hdmi.h>
|
||||||
#include <asm/arch/crm_regs.h>
|
#include <asm/arch/crm_regs.h>
|
||||||
#include <asm/bootm.h>
|
|
||||||
#include <dm.h>
|
#include <dm.h>
|
||||||
#include <imx_thermal.h>
|
#include <imx_thermal.h>
|
||||||
|
|
||||||
|
@ -289,6 +288,22 @@ static void set_preclk_from_osc(void)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#define SRC_SCR_WARM_RESET_ENABLE 0
|
||||||
|
|
||||||
|
static void init_src(void)
|
||||||
|
{
|
||||||
|
struct src *src_regs = (struct src *)SRC_BASE_ADDR;
|
||||||
|
u32 val;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* force warm reset sources to generate cold reset
|
||||||
|
* for a more reliable restart
|
||||||
|
*/
|
||||||
|
val = readl(&src_regs->scr);
|
||||||
|
val &= ~(1 << SRC_SCR_WARM_RESET_ENABLE);
|
||||||
|
writel(val, &src_regs->scr);
|
||||||
|
}
|
||||||
|
|
||||||
int arch_cpu_init(void)
|
int arch_cpu_init(void)
|
||||||
{
|
{
|
||||||
init_aips();
|
init_aips();
|
||||||
|
@ -323,6 +338,8 @@ int arch_cpu_init(void)
|
||||||
mxs_dma_init();
|
mxs_dma_init();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
init_src();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
56
board/warp/README
Normal file
56
board/warp/README
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
How to Update U-boot on Warp board
|
||||||
|
----------------------------------
|
||||||
|
|
||||||
|
Required software on the host PC:
|
||||||
|
|
||||||
|
- imx_usb_loader: https://github.com/boundarydevices/imx_usb_loader
|
||||||
|
|
||||||
|
- dfu-util: http://dfu-util.sourceforge.net/releases/
|
||||||
|
|
||||||
|
Build U-boot for Warp:
|
||||||
|
|
||||||
|
$ make mrproper
|
||||||
|
$ make warp_config
|
||||||
|
$ make
|
||||||
|
|
||||||
|
This will generate the U-boot binary called u-boot.imx.
|
||||||
|
|
||||||
|
Put warp board in USB download mode
|
||||||
|
|
||||||
|
Connect a USB to serial adapter between the host PC and warp
|
||||||
|
|
||||||
|
Connect a USB cable between the OTG warp port and the host PC
|
||||||
|
|
||||||
|
Open a terminal program such as minicom
|
||||||
|
|
||||||
|
Copy u-boot.imx to the imx_usb_loader folder.
|
||||||
|
|
||||||
|
Load u-boot.imx via USB:
|
||||||
|
|
||||||
|
$ sudo ./imx_usb u-boot.imx
|
||||||
|
|
||||||
|
Then U-boot should start and its messages will appear in the console program.
|
||||||
|
|
||||||
|
Use the default environment variables:
|
||||||
|
|
||||||
|
=> env default -f -a
|
||||||
|
=> save
|
||||||
|
|
||||||
|
Run the DFU command:
|
||||||
|
=> dfu 0 mmc 0
|
||||||
|
|
||||||
|
Transfer u-boot.imx that will be flashed into the eMMC:
|
||||||
|
|
||||||
|
$ sudo dfu-util -D u-boot.imx -a boot
|
||||||
|
|
||||||
|
Then on the U-boot prompt the following message should be seen after a succesful
|
||||||
|
upgrade:
|
||||||
|
|
||||||
|
#DOWNLOAD ... OK
|
||||||
|
Ctrl+C to exit ...
|
||||||
|
|
||||||
|
Remove power from the warp board.
|
||||||
|
|
||||||
|
Put warp board into normal boot mode
|
||||||
|
|
||||||
|
Power up the board and the new updated U-boot should boot from eMMC
|
|
@ -111,7 +111,8 @@ static int init_func_watchdog_init(void)
|
||||||
{
|
{
|
||||||
# if defined(CONFIG_HW_WATCHDOG) && (defined(CONFIG_BLACKFIN) || \
|
# if defined(CONFIG_HW_WATCHDOG) && (defined(CONFIG_BLACKFIN) || \
|
||||||
defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
|
defined(CONFIG_M68K) || defined(CONFIG_MICROBLAZE) || \
|
||||||
defined(CONFIG_SH) || defined(CONFIG_AT91SAM9_WATCHDOG))
|
defined(CONFIG_SH) || defined(CONFIG_AT91SAM9_WATCHDOG) || \
|
||||||
|
defined(CONFIG_IMX_WATCHDOG))
|
||||||
hw_watchdog_init();
|
hw_watchdog_init();
|
||||||
# endif
|
# endif
|
||||||
puts(" Watchdog enabled\n");
|
puts(" Watchdog enabled\n");
|
||||||
|
|
|
@ -185,9 +185,6 @@
|
||||||
#define CONFIG_SYS_HUSH_PARSER
|
#define CONFIG_SYS_HUSH_PARSER
|
||||||
#define CONFIG_AUTO_COMPLETE
|
#define CONFIG_AUTO_COMPLETE
|
||||||
#define CONFIG_SYS_CBSIZE 1024
|
#define CONFIG_SYS_CBSIZE 1024
|
||||||
|
|
||||||
/* Print Buffer Size */
|
|
||||||
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
||||||
#define CONFIG_SYS_MAXARGS 16
|
#define CONFIG_SYS_MAXARGS 16
|
||||||
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
||||||
|
|
||||||
|
|
|
@ -229,8 +229,6 @@
|
||||||
#define CONFIG_SYS_HUSH_PARSER
|
#define CONFIG_SYS_HUSH_PARSER
|
||||||
#define CONFIG_AUTO_COMPLETE
|
#define CONFIG_AUTO_COMPLETE
|
||||||
|
|
||||||
/* Print Buffer Size */
|
|
||||||
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
||||||
#define CONFIG_SYS_MAXARGS 16
|
#define CONFIG_SYS_MAXARGS 16
|
||||||
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
||||||
|
|
||||||
|
|
|
@ -121,9 +121,6 @@
|
||||||
*/
|
*/
|
||||||
#define CONFIG_SYS_LONGHELP /* undef to save memory */
|
#define CONFIG_SYS_LONGHELP /* undef to save memory */
|
||||||
#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
|
#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
|
||||||
/* Print Buffer Size */
|
|
||||||
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
|
|
||||||
sizeof(CONFIG_SYS_PROMPT)+16)
|
|
||||||
/* max number of command args */
|
/* max number of command args */
|
||||||
#define CONFIG_SYS_MAXARGS 16
|
#define CONFIG_SYS_MAXARGS 16
|
||||||
/* Boot Argument Buffer Size */
|
/* Boot Argument Buffer Size */
|
||||||
|
|
|
@ -139,8 +139,6 @@
|
||||||
|
|
||||||
#define CONFIG_AUTO_COMPLETE
|
#define CONFIG_AUTO_COMPLETE
|
||||||
#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
|
#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
|
||||||
/* Print Buffer Size */
|
|
||||||
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
||||||
#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
|
#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
|
||||||
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
|
||||||
|
|
||||||
|
|
|
@ -222,8 +222,6 @@
|
||||||
#define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
|
#define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
|
||||||
#define CONFIG_AUTO_COMPLETE
|
#define CONFIG_AUTO_COMPLETE
|
||||||
#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
|
#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
|
||||||
/* Print Buffer Size */
|
|
||||||
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
||||||
#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
|
#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
|
||||||
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
|
||||||
|
|
||||||
|
|
|
@ -186,7 +186,6 @@
|
||||||
/* Miscellaneous configurable options */
|
/* Miscellaneous configurable options */
|
||||||
#define CONFIG_SYS_LONGHELP /* undef to save memory */
|
#define CONFIG_SYS_LONGHELP /* undef to save memory */
|
||||||
#define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
|
#define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
|
||||||
#define CONFIG_SYS_PROMPT "MX53ARD U-Boot > "
|
|
||||||
#define CONFIG_AUTO_COMPLETE
|
#define CONFIG_AUTO_COMPLETE
|
||||||
#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
|
#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
|
||||||
|
|
||||||
|
|
|
@ -184,8 +184,6 @@
|
||||||
#define CONFIG_AUTO_COMPLETE
|
#define CONFIG_AUTO_COMPLETE
|
||||||
#define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
|
#define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
|
||||||
|
|
||||||
/* Print Buffer Size */
|
|
||||||
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
||||||
#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
|
#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
|
||||||
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
|
||||||
|
|
||||||
|
|
|
@ -28,8 +28,6 @@
|
||||||
#define CONFIG_SYS_PL310_BASE L2_PL310_BASE
|
#define CONFIG_SYS_PL310_BASE L2_PL310_BASE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define CONFIG_SYS_FSL_ESDHC_HAS_DDR_MODE
|
|
||||||
|
|
||||||
#define CONFIG_MP
|
#define CONFIG_MP
|
||||||
#define CONFIG_MXC_GPT_HCLK
|
#define CONFIG_MXC_GPT_HCLK
|
||||||
|
|
||||||
|
|
|
@ -153,8 +153,6 @@
|
||||||
#define CONFIG_AUTO_COMPLETE
|
#define CONFIG_AUTO_COMPLETE
|
||||||
#define CONFIG_SYS_CBSIZE 256
|
#define CONFIG_SYS_CBSIZE 256
|
||||||
|
|
||||||
/* Print Buffer Size */
|
|
||||||
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
||||||
#define CONFIG_SYS_MAXARGS 16
|
#define CONFIG_SYS_MAXARGS 16
|
||||||
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
||||||
|
|
||||||
|
|
|
@ -111,12 +111,10 @@
|
||||||
"setenv get_cmd tftp; " \
|
"setenv get_cmd tftp; " \
|
||||||
"fi; " \
|
"fi; " \
|
||||||
"if ${get_cmd} ${update_sd_firmware_filename}; then " \
|
"if ${get_cmd} ${update_sd_firmware_filename}; then " \
|
||||||
"if mmc dev ${emmcdev} && " \
|
"if mmc dev ${emmcdev} 1; then " \
|
||||||
"mmc open ${emmcdev} 1; then " \
|
|
||||||
"setexpr fw_sz ${filesize} / 0x200; " \
|
"setexpr fw_sz ${filesize} / 0x200; " \
|
||||||
"setexpr fw_sz ${fw_sz} + 1; " \
|
"setexpr fw_sz ${fw_sz} + 1; " \
|
||||||
"mmc write ${loadaddr} 0x2 ${fw_sz}; " \
|
"mmc write ${loadaddr} 0x2 ${fw_sz}; " \
|
||||||
"mmc close ${emmcdev} 1; " \
|
|
||||||
"fi; " \
|
"fi; " \
|
||||||
"fi\0"
|
"fi\0"
|
||||||
#else
|
#else
|
||||||
|
@ -278,6 +276,7 @@
|
||||||
#define CONFIG_IMX_HDMI
|
#define CONFIG_IMX_HDMI
|
||||||
#define CONFIG_IMX_VIDEO_SKIP
|
#define CONFIG_IMX_VIDEO_SKIP
|
||||||
|
|
||||||
|
#ifndef CONFIG_SPL
|
||||||
#define CONFIG_CI_UDC
|
#define CONFIG_CI_UDC
|
||||||
#define CONFIG_USBD_HS
|
#define CONFIG_USBD_HS
|
||||||
#define CONFIG_USB_GADGET_DUALSPEED
|
#define CONFIG_USB_GADGET_DUALSPEED
|
||||||
|
@ -291,5 +290,6 @@
|
||||||
#define CONFIG_G_DNL_VENDOR_NUM 0x0525
|
#define CONFIG_G_DNL_VENDOR_NUM 0x0525
|
||||||
#define CONFIG_G_DNL_PRODUCT_NUM 0xa4a5
|
#define CONFIG_G_DNL_PRODUCT_NUM 0xa4a5
|
||||||
#define CONFIG_G_DNL_MANUFACTURER "FSL"
|
#define CONFIG_G_DNL_MANUFACTURER "FSL"
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* __MX6QSABRE_COMMON_CONFIG_H */
|
#endif /* __MX6QSABRE_COMMON_CONFIG_H */
|
||||||
|
|
|
@ -169,8 +169,6 @@
|
||||||
#define CONFIG_AUTO_COMPLETE
|
#define CONFIG_AUTO_COMPLETE
|
||||||
#define CONFIG_SYS_CBSIZE 256
|
#define CONFIG_SYS_CBSIZE 256
|
||||||
|
|
||||||
/* Print Buffer Size */
|
|
||||||
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
||||||
#define CONFIG_SYS_MAXARGS 16
|
#define CONFIG_SYS_MAXARGS 16
|
||||||
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
||||||
|
|
||||||
|
|
|
@ -134,8 +134,6 @@
|
||||||
#define CONFIG_AUTO_COMPLETE
|
#define CONFIG_AUTO_COMPLETE
|
||||||
#define CONFIG_SYS_CBSIZE 1024
|
#define CONFIG_SYS_CBSIZE 1024
|
||||||
|
|
||||||
/* Print Buffer Size */
|
|
||||||
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
||||||
#define CONFIG_SYS_MAXARGS 256
|
#define CONFIG_SYS_MAXARGS 256
|
||||||
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
||||||
|
|
||||||
|
|
|
@ -94,9 +94,6 @@
|
||||||
/* U-Boot general configuration */
|
/* U-Boot general configuration */
|
||||||
#define CONFIG_SYS_LONGHELP
|
#define CONFIG_SYS_LONGHELP
|
||||||
#define CONFIG_SYS_CBSIZE 1024 /* Console I/O buffer size */
|
#define CONFIG_SYS_CBSIZE 1024 /* Console I/O buffer size */
|
||||||
#define CONFIG_SYS_PBSIZE \
|
|
||||||
(CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
||||||
/* Print buffer size */
|
|
||||||
#define CONFIG_SYS_MAXARGS 32 /* Max number of command args */
|
#define CONFIG_SYS_MAXARGS 32 /* Max number of command args */
|
||||||
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
||||||
/* Boot argument buffer size */
|
/* Boot argument buffer size */
|
||||||
|
|
|
@ -325,9 +325,6 @@
|
||||||
#define CONFIG_SYS_PROMPT "U-Boot > "
|
#define CONFIG_SYS_PROMPT "U-Boot > "
|
||||||
#define CONFIG_AUTO_COMPLETE
|
#define CONFIG_AUTO_COMPLETE
|
||||||
#define CONFIG_SYS_CBSIZE 1024
|
#define CONFIG_SYS_CBSIZE 1024
|
||||||
|
|
||||||
/* Print Buffer Size */
|
|
||||||
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
||||||
#define CONFIG_SYS_MAXARGS 48
|
#define CONFIG_SYS_MAXARGS 48
|
||||||
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
||||||
|
|
||||||
|
|
|
@ -58,9 +58,6 @@
|
||||||
/* U-Boot general configurations */
|
/* U-Boot general configurations */
|
||||||
#define CONFIG_SYS_LONGHELP
|
#define CONFIG_SYS_LONGHELP
|
||||||
#define CONFIG_SYS_CBSIZE 1024 /* Console I/O buffer size */
|
#define CONFIG_SYS_CBSIZE 1024 /* Console I/O buffer size */
|
||||||
#define CONFIG_SYS_PBSIZE \
|
|
||||||
(CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
||||||
/* Print buffer size */
|
|
||||||
#define CONFIG_SYS_MAXARGS 32 /* Max number of command args */
|
#define CONFIG_SYS_MAXARGS 32 /* Max number of command args */
|
||||||
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
||||||
/* Boot argument buffer size */
|
/* Boot argument buffer size */
|
||||||
|
|
|
@ -249,9 +249,6 @@
|
||||||
#define CONFIG_SYS_HUSH_PARSER
|
#define CONFIG_SYS_HUSH_PARSER
|
||||||
#define CONFIG_AUTO_COMPLETE
|
#define CONFIG_AUTO_COMPLETE
|
||||||
#define CONFIG_SYS_CBSIZE 256
|
#define CONFIG_SYS_CBSIZE 256
|
||||||
|
|
||||||
/* Print Buffer Size */
|
|
||||||
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
||||||
#define CONFIG_SYS_MAXARGS 16
|
#define CONFIG_SYS_MAXARGS 16
|
||||||
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
#define CONFIG_REVISION_TAG
|
#define CONFIG_REVISION_TAG
|
||||||
|
|
||||||
/* Size of malloc() pool */
|
/* Size of malloc() pool */
|
||||||
#define CONFIG_SYS_MALLOC_LEN (3 * SZ_1M)
|
#define CONFIG_SYS_MALLOC_LEN (35 * SZ_1M) /* Increase due to DFU */
|
||||||
|
|
||||||
#define CONFIG_BOARD_EARLY_INIT_F
|
#define CONFIG_BOARD_EARLY_INIT_F
|
||||||
#define CONFIG_BOARD_LATE_INIT
|
#define CONFIG_BOARD_LATE_INIT
|
||||||
|
@ -42,6 +42,7 @@
|
||||||
#define CONFIG_FSL_USDHC
|
#define CONFIG_FSL_USDHC
|
||||||
#define CONFIG_SYS_FSL_ESDHC_ADDR 0
|
#define CONFIG_SYS_FSL_ESDHC_ADDR 0
|
||||||
#define CONFIG_SYS_FSL_ESDHC_FORCE_VSELECT
|
#define CONFIG_SYS_FSL_ESDHC_FORCE_VSELECT
|
||||||
|
#define CONFIG_SYS_FSL_ESDHC_HAS_DDR_MODE
|
||||||
|
|
||||||
#define CONFIG_MMC
|
#define CONFIG_MMC
|
||||||
#define CONFIG_CMD_MMC
|
#define CONFIG_CMD_MMC
|
||||||
|
@ -81,9 +82,6 @@
|
||||||
#define CONFIG_HW_WATCHDOG
|
#define CONFIG_HW_WATCHDOG
|
||||||
#define CONFIG_IMX_WATCHDOG
|
#define CONFIG_IMX_WATCHDOG
|
||||||
#define CONFIG_WATCHDOG_TIMEOUT_MSECS 30000 /* 30s */
|
#define CONFIG_WATCHDOG_TIMEOUT_MSECS 30000 /* 30s */
|
||||||
|
|
||||||
/* Print Buffer Size */
|
|
||||||
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
|
|
||||||
#define CONFIG_SYS_MAXARGS 16
|
#define CONFIG_SYS_MAXARGS 16
|
||||||
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
|
||||||
|
|
||||||
|
@ -150,6 +148,12 @@
|
||||||
#define CONFIG_G_DNL_PRODUCT_NUM 0xa4a5
|
#define CONFIG_G_DNL_PRODUCT_NUM 0xa4a5
|
||||||
#define CONFIG_G_DNL_MANUFACTURER "FSL"
|
#define CONFIG_G_DNL_MANUFACTURER "FSL"
|
||||||
|
|
||||||
|
#define CONFIG_CMD_DFU
|
||||||
|
#define CONFIG_DFU_FUNCTION
|
||||||
|
#define CONFIG_DFU_MMC
|
||||||
|
#define CONFIG_SYS_DFU_DATA_BUF_SIZE SZ_32M
|
||||||
|
#define DFU_DEFAULT_POLL_TIMEOUT 300
|
||||||
|
|
||||||
#define CONFIG_EXTRA_ENV_SETTINGS \
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
||||||
"script=boot.scr\0" \
|
"script=boot.scr\0" \
|
||||||
"image=zImage\0" \
|
"image=zImage\0" \
|
||||||
|
@ -164,6 +168,7 @@
|
||||||
"mmcdev=0\0" \
|
"mmcdev=0\0" \
|
||||||
"mmcpart=1\0" \
|
"mmcpart=1\0" \
|
||||||
"mmcroot=/dev/mmcblk0p2 rootwait rw\0" \
|
"mmcroot=/dev/mmcblk0p2 rootwait rw\0" \
|
||||||
|
"dfu_alt_info=boot raw 0x2 0x400 mmcpart 1\0" \
|
||||||
"mmcargs=setenv bootargs console=${console},${baudrate} " \
|
"mmcargs=setenv bootargs console=${console},${baudrate} " \
|
||||||
"root=${mmcroot}\0" \
|
"root=${mmcroot}\0" \
|
||||||
"loadbootscript=" \
|
"loadbootscript=" \
|
||||||
|
|
Loading…
Add table
Reference in a new issue