diff options
author | LiGang <b41990@freescale.com> | 2012-08-09 11:04:03 +0800 |
---|---|---|
committer | LiGang <b41990@freescale.com> | 2012-08-09 11:04:03 +0800 |
commit | 526a3e74ad3e902212b80050aa76e212bafc1e1d (patch) | |
tree | 4e4ac557cc9c58cd72f4301c39ff924ed81ff86c /include/configs | |
parent | 7140562bb1bfeef8761c510f59eb7e31006e465e (diff) | |
download | u-boot-imx-526a3e74ad3e902212b80050aa76e212bafc1e1d.zip u-boot-imx-526a3e74ad3e902212b80050aa76e212bafc1e1d.tar.gz u-boot-imx-526a3e74ad3e902212b80050aa76e212bafc1e1d.tar.bz2 |
ENGR00219854-1 Enable fastboot feature on mx6q-arm2 board
1. enable fastboot feature on mx6q-arm2 board
2. enlarge fastboot buffer to 320MB
3. correct some usb descriptors
Signed-off-by: LiGang <b41990@freescale.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/mx6q_arm2.h | 2 | ||||
-rw-r--r-- | include/configs/mx6q_arm2_android.h | 10 | ||||
-rw-r--r-- | include/configs/mx6sl_arm2_android.h | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/include/configs/mx6q_arm2.h b/include/configs/mx6q_arm2.h index 45f97e5..39f49fc 100644 --- a/include/configs/mx6q_arm2.h +++ b/include/configs/mx6q_arm2.h @@ -57,7 +57,7 @@ #define CONFIG_REVISION_TAG #define CONFIG_SETUP_MEMORY_TAGS #define CONFIG_INITRD_TAG - +#define CONFIG_MXC_GPIO /* * Size of malloc() pool */ diff --git a/include/configs/mx6q_arm2_android.h b/include/configs/mx6q_arm2_android.h index 361a720..62bf740 100644 --- a/include/configs/mx6q_arm2_android.h +++ b/include/configs/mx6q_arm2_android.h @@ -36,7 +36,6 @@ recovery, please reference sabreSD board which mx6q_sabresd_android.h */ -#if 0 #define CONFIG_USB_DEVICE #define CONFIG_IMX_UDC 1 #define CONFIG_FASTBOOT 1 @@ -45,15 +44,16 @@ #define CONFIG_FASTBOOT_PRODUCT_ID 0x0d02 #define CONFIG_FASTBOOT_BCD_DEVICE 0x311 #define CONFIG_FASTBOOT_MANUFACTURER_STR "Freescale" -#define CONFIG_FASTBOOT_PRODUCT_NAME_STR "i.mx6q Sabre Smart Device" +#define CONFIG_FASTBOOT_PRODUCT_NAME_STR "i.mx6q ARM2 Smart Device" #define CONFIG_FASTBOOT_INTERFACE_STR "Android fastboot" #define CONFIG_FASTBOOT_CONFIGURATION_STR "Android fastboot" #define CONFIG_FASTBOOT_SERIAL_NUM "12345" #define CONFIG_FASTBOOT_SATA_NO 0 -#define CONFIG_FASTBOOT_TRANSFER_BUF 0x30000000 -#define CONFIG_FASTBOOT_TRANSFER_BUF_SIZE 0x10000000 /* 256M byte */ +/* For system.img growing up more than 256MB, more buffer needs +* to receive the system.img*/ +#define CONFIG_FASTBOOT_TRANSFER_BUF 0x2c000000 +#define CONFIG_FASTBOOT_TRANSFER_BUF_SIZE 0x14000000 /* 320M byte */ #define CONFIG_ANDROID_RECOVERY -#endif #define CONFIG_CMD_BOOTI /* which mmc bus is your main storage ? */ diff --git a/include/configs/mx6sl_arm2_android.h b/include/configs/mx6sl_arm2_android.h index 0e25277..d3d1971 100644 --- a/include/configs/mx6sl_arm2_android.h +++ b/include/configs/mx6sl_arm2_android.h @@ -32,7 +32,7 @@ #define CONFIG_FASTBOOT_PRODUCT_ID 0x0d02 #define CONFIG_FASTBOOT_BCD_DEVICE 0x311 #define CONFIG_FASTBOOT_MANUFACTURER_STR "Freescale" -#define CONFIG_FASTBOOT_PRODUCT_NAME_STR "i.mx6q Sabre Smart Device" +#define CONFIG_FASTBOOT_PRODUCT_NAME_STR "i.mx6sl ARM2 Smart Device" #define CONFIG_FASTBOOT_INTERFACE_STR "Android fastboot" #define CONFIG_FASTBOOT_CONFIGURATION_STR "Android fastboot" #define CONFIG_FASTBOOT_SERIAL_NUM "12345" |