diff options
author | Xinyu Chen <xinyu.chen@freescale.com> | 2012-10-30 14:07:43 +0800 |
---|---|---|
committer | Richard Liu <r66033@freescale.com> | 2013-06-05 13:15:43 +0800 |
commit | a4066ff9f9949ac084f53cfc54c7fbd97bec9f4d (patch) | |
tree | c0561216b3caf44433a31d2da2e9f8b241894504 | |
parent | cbb8de5fa490d3b5da8f117d1dcb84e8e9f3515d (diff) | |
download | u-boot-imx-a4066ff9f9949ac084f53cfc54c7fbd97bec9f4d.zip u-boot-imx-a4066ff9f9949ac084f53cfc54c7fbd97bec9f4d.tar.gz u-boot-imx-a4066ff9f9949ac084f53cfc54c7fbd97bec9f4d.tar.bz2 |
ENGR00231572 mx6solo: Add Android solo uboot configure
Add fastboot and recovery, add default
bootargs and bootcmd for Android.
Signed-off-by: Xinyu Chen <xinyu.chen@freescale.com>
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | include/configs/mx6solo_sabresd_android.h | 86 |
2 files changed, 87 insertions, 0 deletions
@@ -3325,6 +3325,7 @@ mx6q_arm2_iram_config : unconfig mx6solo_sabresd_config \ mx6solo_sabresd_mfg_config \ +mx6solo_sabresd_android_config \ mx6dl_sabresd_config \ mx6dl_sabresd_mfg_config \ mx6dl_sabresd_android_config \ diff --git a/include/configs/mx6solo_sabresd_android.h b/include/configs/mx6solo_sabresd_android.h new file mode 100644 index 0000000..b6993be --- /dev/null +++ b/include/configs/mx6solo_sabresd_android.h @@ -0,0 +1,86 @@ +/* + * Copyright (C) 2012-2013 Freescale Semiconductor, Inc. + * + * Configuration settings for the MX6SOLO SabreSD Freescale board. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of + * the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + */ + +#ifndef MX6SOLO_SABRESD_ANDROID_H +#define MX6SOLO_SABRESD_ANDROID_H + +#include <asm/arch/mx6.h> +#include "mx6solo_sabresd.h" + +#define CONFIG_USB_DEVICE +#define CONFIG_IMX_UDC 1 +#define CONFIG_FASTBOOT 1 +#define CONFIG_FASTBOOT_STORAGE_EMMC_SATA +#define CONFIG_FASTBOOT_VENDOR_ID 0x18d1 +#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.mx6solo Sabre SmartDevice" +#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 + +/* 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_CMD_BOOTI +#define CONFIG_ANDROID_RECOVERY +/* which mmc bus is your main storage ? */ +#define CONFIG_ANDROID_MAIN_MMC_BUS 3 + +#define CONFIG_ANDROID_BOOT_PARTITION_MMC 1 +#define CONFIG_ANDROID_SYSTEM_PARTITION_MMC 5 +#define CONFIG_ANDROID_RECOVERY_PARTITION_MMC 2 +#define CONFIG_ANDROID_CACHE_PARTITION_MMC 6 + + +#define CONFIG_ANDROID_RECOVERY_BOOTARGS_MMC NULL +#define CONFIG_ANDROID_RECOVERY_BOOTCMD_MMC \ + "booti mmc3 recovery" +#define CONFIG_ANDROID_RECOVERY_CMD_FILE "/recovery/command" +#define CONFIG_INITRD_TAG + +#undef CONFIG_LOADADDR +#undef CONFIG_RD_LOADADDR +#undef CONFIG_EXTRA_ENV_SETTINGS + + +#define CONFIG_LOADADDR 0x10800000 /* loadaddr env var */ +#define CONFIG_RD_LOADADDR 0x11000000 + +#define CONFIG_INITRD_TAG +#define CONFIG_EXTRA_ENV_SETTINGS \ + "netdev=eth0\0" \ + "ethprime=FEC0\0" \ + "fastboot_dev=mmc3\0" \ + "bootcmd=booti mmc3\0" \ + "bootargs=console=ttymxc0,115200 init=/init nosmp " \ + "video=mxcfb0:dev=ldb,bpp=32 video=mxcfb1:off video=mxcfb2:off gpumem=96M " \ + "fbmem=10M fb0base=0x17b00000 vmalloc=400M androidboot.console=ttymxc0 " \ + "androidboot.hardware=freescale\0" \ + "splashimage=0x1D000000\0" \ + "splashpos=m,m\0" \ + "lvds_num=1\0" +#endif |