Convert CONFIG_SYS_MONITOR_LEN to Kconfig
This converts the following to Kconfig: CONFIG_SYS_MONITOR_LEN To do this, we set a default of 0 for everyone because there are a number of cases where we define CONFIG_SYS_MONITOR_LEN but the only impact is that we set TOTAL_MALLOC_LEN to be CONFIG_SYS_MALLOC_LEN + CONFIG_ENV_SIZE, so we must continue to allow all boards to set this value. Update the SPL code to use 200 KB as the default raw U-Boot size directly, if we don't have a real CONFIG_SYS_MONITOR_LEN value. Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
9ba938e744
commit
08574ed339
11
Kconfig
11
Kconfig
@ -583,6 +583,17 @@ config SYS_SRAM_SIZE
|
|||||||
default 0x10000 if TARGET_TRICORDER
|
default 0x10000 if TARGET_TRICORDER
|
||||||
default 0x0
|
default 0x0
|
||||||
|
|
||||||
|
config SYS_MONITOR_LEN
|
||||||
|
int "Maximum size in bytes reserved for U-Boot in memory"
|
||||||
|
default 1048576 if X86
|
||||||
|
default 0
|
||||||
|
help
|
||||||
|
Size of memory reserved for monitor code, used to determine
|
||||||
|
_at_compile_time_ (!) if the environment is embedded within the
|
||||||
|
U-Boot image, or in a separate flash sector, among other uses where
|
||||||
|
we need to set a maximum size of the U-Boot binary itself that will
|
||||||
|
be loaded.
|
||||||
|
|
||||||
config MP
|
config MP
|
||||||
bool "Support for multiprocessor"
|
bool "Support for multiprocessor"
|
||||||
help
|
help
|
||||||
|
6
README
6
README
@ -1452,12 +1452,6 @@ Configuration Settings:
|
|||||||
- CONFIG_SYS_FLASH_BASE:
|
- CONFIG_SYS_FLASH_BASE:
|
||||||
Physical start address of Flash memory.
|
Physical start address of Flash memory.
|
||||||
|
|
||||||
- CONFIG_SYS_MONITOR_LEN:
|
|
||||||
Size of memory reserved for monitor code, used to
|
|
||||||
determine _at_compile_time_ (!) if the environment is
|
|
||||||
embedded within the U-Boot image, or in a separate
|
|
||||||
flash sector.
|
|
||||||
|
|
||||||
- CONFIG_SYS_MALLOC_LEN:
|
- CONFIG_SYS_MALLOC_LEN:
|
||||||
Size of DRAM reserved for malloc() use.
|
Size of DRAM reserved for malloc() use.
|
||||||
|
|
||||||
|
@ -46,10 +46,6 @@ DECLARE_BINMAN_MAGIC_SYM;
|
|||||||
#ifndef CONFIG_SYS_UBOOT_START
|
#ifndef CONFIG_SYS_UBOOT_START
|
||||||
#define CONFIG_SYS_UBOOT_START CONFIG_TEXT_BASE
|
#define CONFIG_SYS_UBOOT_START CONFIG_TEXT_BASE
|
||||||
#endif
|
#endif
|
||||||
#ifndef CONFIG_SYS_MONITOR_LEN
|
|
||||||
/* Unknown U-Boot size, let's assume it will not be more than 200 KB */
|
|
||||||
#define CONFIG_SYS_MONITOR_LEN (200 * 1024)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
u32 *boot_params_ptr = NULL;
|
u32 *boot_params_ptr = NULL;
|
||||||
|
|
||||||
@ -232,11 +228,17 @@ __weak struct legacy_img_hdr *spl_get_load_buffer(ssize_t offset, size_t size)
|
|||||||
return map_sysmem(CONFIG_TEXT_BASE + offset, 0);
|
return map_sysmem(CONFIG_TEXT_BASE + offset, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_SPL_RAW_IMAGE_SUPPORT
|
||||||
void spl_set_header_raw_uboot(struct spl_image_info *spl_image)
|
void spl_set_header_raw_uboot(struct spl_image_info *spl_image)
|
||||||
{
|
{
|
||||||
ulong u_boot_pos = spl_get_image_pos();
|
ulong u_boot_pos = spl_get_image_pos();
|
||||||
|
|
||||||
|
#if CONFIG_SYS_MONITOR_LEN != 0
|
||||||
spl_image->size = CONFIG_SYS_MONITOR_LEN;
|
spl_image->size = CONFIG_SYS_MONITOR_LEN;
|
||||||
|
#else
|
||||||
|
/* Unknown U-Boot size, let's assume it will not be more than 200 KB */
|
||||||
|
spl_image->size = 200 * 1024;
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Binman error cases: address of the end of the previous region or the
|
* Binman error cases: address of the end of the previous region or the
|
||||||
@ -254,6 +256,7 @@ void spl_set_header_raw_uboot(struct spl_image_info *spl_image)
|
|||||||
spl_image->os = IH_OS_U_BOOT;
|
spl_image->os = IH_OS_U_BOOT;
|
||||||
spl_image->name = "U-Boot";
|
spl_image->name = "U-Boot";
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#if CONFIG_IS_ENABLED(LOAD_FIT_FULL)
|
#if CONFIG_IS_ENABLED(LOAD_FIT_FULL)
|
||||||
/* Parse and load full fitImage in SPL */
|
/* Parse and load full fitImage in SPL */
|
||||||
|
@ -9,6 +9,7 @@ CONFIG_DM_GPIO=y
|
|||||||
CONFIG_DEFAULT_DEVICE_TREE="10m50_devboard"
|
CONFIG_DEFAULT_DEVICE_TREE="10m50_devboard"
|
||||||
CONFIG_SYS_LOAD_ADDR=0xcc000000
|
CONFIG_SYS_LOAD_ADDR=0xcc000000
|
||||||
CONFIG_ENV_ADDR=0xF4080000
|
CONFIG_ENV_ADDR=0xF4080000
|
||||||
|
CONFIG_SYS_MONITOR_LEN=524288
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_SYS_MONITOR_BASE=0xCFF80000
|
CONFIG_SYS_MONITOR_BASE=0xCFF80000
|
||||||
# CONFIG_AUTOBOOT is not set
|
# CONFIG_AUTOBOOT is not set
|
||||||
|
@ -9,6 +9,7 @@ CONFIG_DM_GPIO=y
|
|||||||
CONFIG_DEFAULT_DEVICE_TREE="3c120_devboard"
|
CONFIG_DEFAULT_DEVICE_TREE="3c120_devboard"
|
||||||
CONFIG_SYS_LOAD_ADDR=0xd4000000
|
CONFIG_SYS_LOAD_ADDR=0xd4000000
|
||||||
CONFIG_ENV_ADDR=0xE2880000
|
CONFIG_ENV_ADDR=0xE2880000
|
||||||
|
CONFIG_SYS_MONITOR_LEN=524288
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_SYS_MONITOR_BASE=0xD7F80000
|
CONFIG_SYS_MONITOR_BASE=0xD7F80000
|
||||||
# CONFIG_AUTOBOOT is not set
|
# CONFIG_AUTOBOOT is not set
|
||||||
|
@ -11,6 +11,7 @@ CONFIG_I2C1_ENABLE=y
|
|||||||
CONFIG_SATAPWR="PC3"
|
CONFIG_SATAPWR="PC3"
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
CONFIG_SYS_64BIT_LBA=y
|
CONFIG_SYS_64BIT_LBA=y
|
||||||
|
@ -9,6 +9,7 @@ CONFIG_MMC1_CD_PIN="PG13"
|
|||||||
CONFIG_MMC_SUNXI_SLOT_EXTRA=1
|
CONFIG_MMC_SUNXI_SLOT_EXTRA=1
|
||||||
CONFIG_USB1_VBUS_PIN="PB10"
|
CONFIG_USB1_VBUS_PIN="PB10"
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SYS_I2C_MVTWSI=y
|
CONFIG_SYS_I2C_MVTWSI=y
|
||||||
CONFIG_SYS_I2C_SLAVE=0x7f
|
CONFIG_SYS_I2C_SLAVE=0x7f
|
||||||
|
@ -13,6 +13,7 @@ CONFIG_VIDEO_VGA_VIA_LCD_FORCE_SYNC_ACTIVE_HIGH=y
|
|||||||
CONFIG_VIDEO_LCD_POWER="PB10"
|
CONFIG_VIDEO_LCD_POWER="PB10"
|
||||||
CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SYS_I2C_MVTWSI=y
|
CONFIG_SYS_I2C_MVTWSI=y
|
||||||
CONFIG_SYS_I2C_SLAVE=0x7f
|
CONFIG_SYS_I2C_SLAVE=0x7f
|
||||||
CONFIG_SYS_I2C_SPEED=400000
|
CONFIG_SYS_I2C_SPEED=400000
|
||||||
|
@ -15,6 +15,7 @@ CONFIG_VIDEO_VGA_VIA_LCD_FORCE_SYNC_ACTIVE_HIGH=y
|
|||||||
CONFIG_VIDEO_LCD_POWER="AXP0-0"
|
CONFIG_VIDEO_LCD_POWER="AXP0-0"
|
||||||
CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_CMD_DFU=y
|
CONFIG_CMD_DFU=y
|
||||||
CONFIG_CMD_USB_MASS_STORAGE=y
|
CONFIG_CMD_USB_MASS_STORAGE=y
|
||||||
|
@ -13,6 +13,7 @@ CONFIG_SATAPWR="PC3"
|
|||||||
CONFIG_SPL_SPI_SUNXI=y
|
CONFIG_SPL_SPI_SUNXI=y
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_CMD_DFU=y
|
CONFIG_CMD_DFU=y
|
||||||
CONFIG_CMD_USB_MASS_STORAGE=y
|
CONFIG_CMD_USB_MASS_STORAGE=y
|
||||||
|
@ -11,6 +11,7 @@ CONFIG_I2C1_ENABLE=y
|
|||||||
CONFIG_SATAPWR="PC3"
|
CONFIG_SATAPWR="PC3"
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_CMD_DFU=y
|
CONFIG_CMD_DFU=y
|
||||||
CONFIG_CMD_USB_MASS_STORAGE=y
|
CONFIG_CMD_USB_MASS_STORAGE=y
|
||||||
|
@ -9,6 +9,7 @@ CONFIG_I2C1_ENABLE=y
|
|||||||
CONFIG_SATAPWR="PC3"
|
CONFIG_SATAPWR="PC3"
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
CONFIG_SYS_64BIT_LBA=y
|
CONFIG_SYS_64BIT_LBA=y
|
||||||
|
@ -11,6 +11,7 @@ CONFIG_VIDEO_VGA=y
|
|||||||
CONFIG_SATAPWR="PB8"
|
CONFIG_SATAPWR="PB8"
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
CONFIG_SYS_64BIT_LBA=y
|
CONFIG_SYS_64BIT_LBA=y
|
||||||
|
@ -12,6 +12,7 @@ CONFIG_VIDEO_VGA=y
|
|||||||
CONFIG_SATAPWR="PB8"
|
CONFIG_SATAPWR="PB8"
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
CONFIG_SYS_64BIT_LBA=y
|
CONFIG_SYS_64BIT_LBA=y
|
||||||
|
@ -12,6 +12,7 @@ CONFIG_USB0_VBUS_DET="PH5"
|
|||||||
CONFIG_SATAPWR="PC3"
|
CONFIG_SATAPWR="PC3"
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
CONFIG_SYS_64BIT_LBA=y
|
CONFIG_SYS_64BIT_LBA=y
|
||||||
|
@ -13,6 +13,7 @@ CONFIG_SATAPWR="PC3"
|
|||||||
CONFIG_GMAC_TX_DELAY=4
|
CONFIG_GMAC_TX_DELAY=4
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
CONFIG_SYS_64BIT_LBA=y
|
CONFIG_SYS_64BIT_LBA=y
|
||||||
|
@ -12,6 +12,7 @@ CONFIG_SATAPWR="PC3"
|
|||||||
CONFIG_GMAC_TX_DELAY=4
|
CONFIG_GMAC_TX_DELAY=4
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
CONFIG_SYS_64BIT_LBA=y
|
CONFIG_SYS_64BIT_LBA=y
|
||||||
|
@ -16,5 +16,6 @@ CONFIG_VIDEO_LCD_DCLK_PHASE=0
|
|||||||
CONFIG_VIDEO_LCD_BL_EN="PB2"
|
CONFIG_VIDEO_LCD_BL_EN="PB2"
|
||||||
CONFIG_VIDEO_LCD_BL_PWM="PH0"
|
CONFIG_VIDEO_LCD_BL_PWM="PH0"
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_AXP_DCDC1_VOLT=3300
|
CONFIG_AXP_DCDC1_VOLT=3300
|
||||||
CONFIG_USB_MUSB_HOST=y
|
CONFIG_USB_MUSB_HOST=y
|
||||||
|
@ -14,6 +14,7 @@ CONFIG_VIDEO_LCD_POWER="PH8"
|
|||||||
CONFIG_VIDEO_LCD_BL_EN="PH7"
|
CONFIG_VIDEO_LCD_BL_EN="PH7"
|
||||||
CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SYS_I2C_MVTWSI=y
|
CONFIG_SYS_I2C_MVTWSI=y
|
||||||
CONFIG_SYS_I2C_SLAVE=0x7f
|
CONFIG_SYS_I2C_SLAVE=0x7f
|
||||||
|
@ -15,6 +15,7 @@ CONFIG_VIDEO_LCD_POWER="AXP0-0"
|
|||||||
CONFIG_VIDEO_LCD_BL_EN="AXP0-1"
|
CONFIG_VIDEO_LCD_BL_EN="AXP0-1"
|
||||||
CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SYS_I2C_MVTWSI=y
|
CONFIG_SYS_I2C_MVTWSI=y
|
||||||
CONFIG_SYS_I2C_SLAVE=0x7f
|
CONFIG_SYS_I2C_SLAVE=0x7f
|
||||||
|
@ -8,6 +8,7 @@ CONFIG_DRAM_EMR1=0
|
|||||||
CONFIG_USB1_VBUS_PIN="PB10"
|
CONFIG_USB1_VBUS_PIN="PB10"
|
||||||
CONFIG_VIDEO_COMPOSITE=y
|
CONFIG_VIDEO_COMPOSITE=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SYS_I2C_MVTWSI=y
|
CONFIG_SYS_I2C_MVTWSI=y
|
||||||
CONFIG_SYS_I2C_SLAVE=0x7f
|
CONFIG_SYS_I2C_SLAVE=0x7f
|
||||||
|
@ -6,6 +6,7 @@ CONFIG_MACH_SUN5I=y
|
|||||||
CONFIG_DRAM_CLK=432
|
CONFIG_DRAM_CLK=432
|
||||||
CONFIG_USB1_VBUS_PIN="PG13"
|
CONFIG_USB1_VBUS_PIN="PG13"
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SYS_I2C_MVTWSI=y
|
CONFIG_SYS_I2C_MVTWSI=y
|
||||||
CONFIG_SYS_I2C_SLAVE=0x7f
|
CONFIG_SYS_I2C_SLAVE=0x7f
|
||||||
|
@ -12,6 +12,7 @@ CONFIG_USB2_VBUS_PIN="PH23"
|
|||||||
# CONFIG_HAS_ARMV7_SECURE_BASE is not set
|
# CONFIG_HAS_ARMV7_SECURE_BASE is not set
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
CONFIG_SYS_64BIT_LBA=y
|
CONFIG_SYS_64BIT_LBA=y
|
||||||
|
@ -9,6 +9,7 @@ CONFIG_VIDEO_COMPOSITE=y
|
|||||||
CONFIG_GMAC_TX_DELAY=3
|
CONFIG_GMAC_TX_DELAY=3
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_NETCONSOLE=y
|
CONFIG_NETCONSOLE=y
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
|
@ -10,6 +10,7 @@ CONFIG_MMC0_CD_PIN="PB4"
|
|||||||
CONFIG_MMC_SUNXI_SLOT_EXTRA=2
|
CONFIG_MMC_SUNXI_SLOT_EXTRA=2
|
||||||
CONFIG_USB0_ID_DET="PH8"
|
CONFIG_USB0_ID_DET="PH8"
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_FASTBOOT_CMD_OEM_FORMAT=y
|
CONFIG_FASTBOOT_CMD_OEM_FORMAT=y
|
||||||
CONFIG_USB_EHCI_HCD=y
|
CONFIG_USB_EHCI_HCD=y
|
||||||
CONFIG_USB_OHCI_HCD=y
|
CONFIG_USB_OHCI_HCD=y
|
||||||
|
@ -11,6 +11,7 @@ CONFIG_VIDEO_COMPOSITE=y
|
|||||||
CONFIG_GMAC_TX_DELAY=3
|
CONFIG_GMAC_TX_DELAY=3
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_NETCONSOLE=y
|
CONFIG_NETCONSOLE=y
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
|
@ -7,6 +7,7 @@ CONFIG_DRAM_TIMINGS_DDR3_800E_1066G_1333J=y
|
|||||||
CONFIG_USB0_VBUS_PIN="PB10"
|
CONFIG_USB0_VBUS_PIN="PB10"
|
||||||
CONFIG_VIDEO_COMPOSITE=y
|
CONFIG_VIDEO_COMPOSITE=y
|
||||||
CONFIG_CHIP_DIP_SCAN=y
|
CONFIG_CHIP_DIP_SCAN=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_CMD_DFU=y
|
CONFIG_CMD_DFU=y
|
||||||
CONFIG_DFU_RAM=y
|
CONFIG_DFU_RAM=y
|
||||||
|
@ -5,6 +5,7 @@ CONFIG_SPL=y
|
|||||||
CONFIG_MACH_SUN5I=y
|
CONFIG_MACH_SUN5I=y
|
||||||
CONFIG_DRAM_TIMINGS_DDR3_800E_1066G_1333J=y
|
CONFIG_DRAM_TIMINGS_DDR3_800E_1066G_1333J=y
|
||||||
CONFIG_USB0_VBUS_PIN="PB10"
|
CONFIG_USB0_VBUS_PIN="PB10"
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
# CONFIG_CMD_FLASH is not set
|
# CONFIG_CMD_FLASH is not set
|
||||||
CONFIG_CMD_MTDPARTS=y
|
CONFIG_CMD_MTDPARTS=y
|
||||||
|
@ -7,6 +7,7 @@ CONFIG_DRAM_CLK=432
|
|||||||
CONFIG_USB1_VBUS_PIN=""
|
CONFIG_USB1_VBUS_PIN=""
|
||||||
CONFIG_USB2_VBUS_PIN=""
|
CONFIG_USB2_VBUS_PIN=""
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_PHY_REALTEK=y
|
CONFIG_PHY_REALTEK=y
|
||||||
CONFIG_ETH_DESIGNWARE=y
|
CONFIG_ETH_DESIGNWARE=y
|
||||||
CONFIG_MII=y
|
CONFIG_MII=y
|
||||||
|
@ -14,6 +14,7 @@ CONFIG_VIDEO_LCD_BL_EN="PH7"
|
|||||||
CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
||||||
CONFIG_VIDEO_LCD_PANEL_HITACHI_TX18D42VM=y
|
CONFIG_VIDEO_LCD_PANEL_HITACHI_TX18D42VM=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SYS_I2C_MVTWSI=y
|
CONFIG_SYS_I2C_MVTWSI=y
|
||||||
CONFIG_SYS_I2C_SLAVE=0x7f
|
CONFIG_SYS_I2C_SLAVE=0x7f
|
||||||
|
@ -15,6 +15,7 @@ CONFIG_VIDEO_LCD_BL_EN="PM1"
|
|||||||
CONFIG_VIDEO_LCD_BL_PWM="PH13"
|
CONFIG_VIDEO_LCD_BL_PWM="PH13"
|
||||||
CONFIG_VIDEO_LCD_PANEL_EDP_4_LANE_1620M_VIA_ANX9804=y
|
CONFIG_VIDEO_LCD_PANEL_EDP_4_LANE_1620M_VIA_ANX9804=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_SYS_I2C_LEGACY=y
|
CONFIG_SPL_SYS_I2C_LEGACY=y
|
||||||
CONFIG_SYS_I2C_MVTWSI=y
|
CONFIG_SYS_I2C_MVTWSI=y
|
||||||
CONFIG_SYS_I2C_SLAVE=0x7f
|
CONFIG_SYS_I2C_SLAVE=0x7f
|
||||||
|
@ -8,6 +8,7 @@ CONFIG_MMC0_CD_PIN="PH1"
|
|||||||
CONFIG_SATAPWR="PB8"
|
CONFIG_SATAPWR="PB8"
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
CONFIG_SYS_64BIT_LBA=y
|
CONFIG_SYS_64BIT_LBA=y
|
||||||
|
@ -12,5 +12,6 @@ CONFIG_USB0_ID_DET="PH16"
|
|||||||
CONFIG_USB1_VBUS_PIN="PH14"
|
CONFIG_USB1_VBUS_PIN="PH14"
|
||||||
CONFIG_USB3_VBUS_PIN="PH15"
|
CONFIG_USB3_VBUS_PIN="PH15"
|
||||||
CONFIG_AXP_GPIO=y
|
CONFIG_AXP_GPIO=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SYS_I2C_SUN8I_RSB=y
|
CONFIG_SYS_I2C_SUN8I_RSB=y
|
||||||
CONFIG_AXP809_POWER=y
|
CONFIG_AXP809_POWER=y
|
||||||
|
@ -8,6 +8,7 @@ CONFIG_MMC0_CD_PIN="PH1"
|
|||||||
CONFIG_SATAPWR="PB8"
|
CONFIG_SATAPWR="PB8"
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
CONFIG_SYS_64BIT_LBA=y
|
CONFIG_SYS_64BIT_LBA=y
|
||||||
|
@ -13,6 +13,7 @@ CONFIG_SATAPWR="PH12"
|
|||||||
CONFIG_GMAC_TX_DELAY=1
|
CONFIG_GMAC_TX_DELAY=1
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_CMD_DFU=y
|
CONFIG_CMD_DFU=y
|
||||||
CONFIG_CMD_USB_MASS_STORAGE=y
|
CONFIG_CMD_USB_MASS_STORAGE=y
|
||||||
|
@ -15,6 +15,7 @@ CONFIG_USB2_VBUS_PIN="PL6"
|
|||||||
CONFIG_I2C0_ENABLE=y
|
CONFIG_I2C0_ENABLE=y
|
||||||
CONFIG_AXP_GPIO=y
|
CONFIG_AXP_GPIO=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_CONSOLE_MUX=y
|
CONFIG_CONSOLE_MUX=y
|
||||||
CONFIG_SPL_SYS_I2C_LEGACY=y
|
CONFIG_SPL_SYS_I2C_LEGACY=y
|
||||||
CONFIG_SYS_I2C_MVTWSI=y
|
CONFIG_SYS_I2C_MVTWSI=y
|
||||||
|
@ -16,6 +16,7 @@ CONFIG_VIDEO_LCD_POWER="AXP0-0"
|
|||||||
CONFIG_VIDEO_LCD_BL_EN="AXP0-1"
|
CONFIG_VIDEO_LCD_BL_EN="AXP0-1"
|
||||||
CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SYS_I2C_MVTWSI=y
|
CONFIG_SYS_I2C_MVTWSI=y
|
||||||
CONFIG_SYS_I2C_SLAVE=0x7f
|
CONFIG_SYS_I2C_SLAVE=0x7f
|
||||||
|
@ -15,6 +15,7 @@ CONFIG_VIDEO_LCD_POWER="AXP0-0"
|
|||||||
CONFIG_VIDEO_LCD_BL_EN="AXP0-1"
|
CONFIG_VIDEO_LCD_BL_EN="AXP0-1"
|
||||||
CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SYS_I2C_MVTWSI=y
|
CONFIG_SYS_I2C_MVTWSI=y
|
||||||
CONFIG_SYS_I2C_SLAVE=0x7f
|
CONFIG_SYS_I2C_SLAVE=0x7f
|
||||||
|
@ -9,6 +9,7 @@ CONFIG_USB2_VBUS_PIN=""
|
|||||||
CONFIG_VIDEO_VGA_VIA_LCD=y
|
CONFIG_VIDEO_VGA_VIA_LCD=y
|
||||||
CONFIG_VIDEO_VGA_EXTERNAL_DAC_EN="PH25"
|
CONFIG_VIDEO_VGA_EXTERNAL_DAC_EN="PH25"
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_PHY_REALTEK=y
|
CONFIG_PHY_REALTEK=y
|
||||||
CONFIG_ETH_DESIGNWARE=y
|
CONFIG_ETH_DESIGNWARE=y
|
||||||
CONFIG_RGMII=y
|
CONFIG_RGMII=y
|
||||||
|
@ -15,6 +15,7 @@ CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
|||||||
# CONFIG_VIDEO_LCD_BL_PWM_ACTIVE_LOW is not set
|
# CONFIG_VIDEO_LCD_BL_PWM_ACTIVE_LOW is not set
|
||||||
CONFIG_VIDEO_LCD_PANEL_LVDS=y
|
CONFIG_VIDEO_LCD_PANEL_LVDS=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SYS_I2C_MVTWSI=y
|
CONFIG_SYS_I2C_MVTWSI=y
|
||||||
CONFIG_SYS_I2C_SLAVE=0x7f
|
CONFIG_SYS_I2C_SLAVE=0x7f
|
||||||
|
@ -8,6 +8,7 @@ CONFIG_MMC0_CD_PIN="PH1"
|
|||||||
CONFIG_SATAPWR="PB8"
|
CONFIG_SATAPWR="PB8"
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
CONFIG_SYS_64BIT_LBA=y
|
CONFIG_SYS_64BIT_LBA=y
|
||||||
|
@ -10,6 +10,7 @@ CONFIG_SATAPWR="PB3"
|
|||||||
CONFIG_GMAC_TX_DELAY=4
|
CONFIG_GMAC_TX_DELAY=4
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
CONFIG_SYS_64BIT_LBA=y
|
CONFIG_SYS_64BIT_LBA=y
|
||||||
|
@ -5,4 +5,5 @@ CONFIG_SPL=y
|
|||||||
CONFIG_MACH_SUN8I_V3S=y
|
CONFIG_MACH_SUN8I_V3S=y
|
||||||
CONFIG_DRAM_CLK=360
|
CONFIG_DRAM_CLK=360
|
||||||
# CONFIG_HAS_ARMV7_SECURE_BASE is not set
|
# CONFIG_HAS_ARMV7_SECURE_BASE is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
# CONFIG_NETDEVICES is not set
|
# CONFIG_NETDEVICES is not set
|
||||||
|
@ -10,6 +10,7 @@ CONFIG_SATAPWR="PH2"
|
|||||||
CONFIG_GMAC_TX_DELAY=3
|
CONFIG_GMAC_TX_DELAY=3
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
CONFIG_SYS_64BIT_LBA=y
|
CONFIG_SYS_64BIT_LBA=y
|
||||||
|
@ -8,6 +8,7 @@ CONFIG_DRAM_ZQ=122
|
|||||||
CONFIG_SATAPWR="PH2"
|
CONFIG_SATAPWR="PH2"
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
CONFIG_SYS_64BIT_LBA=y
|
CONFIG_SYS_64BIT_LBA=y
|
||||||
|
@ -6,6 +6,7 @@ CONFIG_MACH_SUN4I=y
|
|||||||
CONFIG_USB1_VBUS_PIN=""
|
CONFIG_USB1_VBUS_PIN=""
|
||||||
CONFIG_USB2_VBUS_PIN=""
|
CONFIG_USB2_VBUS_PIN=""
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SYS_I2C_MVTWSI=y
|
CONFIG_SYS_I2C_MVTWSI=y
|
||||||
CONFIG_SYS_I2C_SLAVE=0x7f
|
CONFIG_SYS_I2C_SLAVE=0x7f
|
||||||
|
@ -9,6 +9,7 @@ CONFIG_SYS_LOAD_ADDR=0x40010000
|
|||||||
CONFIG_ENV_ADDR=0x2000
|
CONFIG_ENV_ADDR=0x2000
|
||||||
CONFIG_TARGET_M5208EVBE=y
|
CONFIG_TARGET_M5208EVBE=y
|
||||||
CONFIG_MCFTMR=y
|
CONFIG_MCFTMR=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=262144
|
||||||
CONFIG_SYS_MONITOR_BASE=0x00000400
|
CONFIG_SYS_MONITOR_BASE=0x00000400
|
||||||
CONFIG_BOOTDELAY=1
|
CONFIG_BOOTDELAY=1
|
||||||
# CONFIG_DISPLAY_BOARDINFO is not set
|
# CONFIG_DISPLAY_BOARDINFO is not set
|
||||||
|
@ -9,6 +9,7 @@ CONFIG_ENV_ADDR=0xFFE04000
|
|||||||
CONFIG_TARGET_M5235EVB=y
|
CONFIG_TARGET_M5235EVB=y
|
||||||
CONFIG_NORFLASH_PS32BIT=y
|
CONFIG_NORFLASH_PS32BIT=y
|
||||||
CONFIG_MCFTMR=y
|
CONFIG_MCFTMR=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=262144
|
||||||
CONFIG_SYS_MONITOR_BASE=0xFFC00400
|
CONFIG_SYS_MONITOR_BASE=0xFFC00400
|
||||||
CONFIG_BOOTDELAY=1
|
CONFIG_BOOTDELAY=1
|
||||||
# CONFIG_DISPLAY_BOARDINFO is not set
|
# CONFIG_DISPLAY_BOARDINFO is not set
|
||||||
|
@ -9,6 +9,7 @@ CONFIG_SYS_LOAD_ADDR=0x20000
|
|||||||
CONFIG_ENV_ADDR=0xFFE04000
|
CONFIG_ENV_ADDR=0xFFE04000
|
||||||
CONFIG_TARGET_M5235EVB=y
|
CONFIG_TARGET_M5235EVB=y
|
||||||
CONFIG_MCFTMR=y
|
CONFIG_MCFTMR=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=262144
|
||||||
CONFIG_SYS_MONITOR_BASE=0xFFE00400
|
CONFIG_SYS_MONITOR_BASE=0xFFE00400
|
||||||
CONFIG_BOOTDELAY=1
|
CONFIG_BOOTDELAY=1
|
||||||
# CONFIG_DISPLAY_BOARDINFO is not set
|
# CONFIG_DISPLAY_BOARDINFO is not set
|
||||||
|
@ -8,6 +8,7 @@ CONFIG_SYS_LOAD_ADDR=0x200000
|
|||||||
CONFIG_ENV_ADDR=0xFFE04000
|
CONFIG_ENV_ADDR=0xFFE04000
|
||||||
CONFIG_TARGET_M5249EVB=y
|
CONFIG_TARGET_M5249EVB=y
|
||||||
CONFIG_MCFTMR=y
|
CONFIG_MCFTMR=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=131072
|
||||||
CONFIG_SYS_MONITOR_BASE=0xFFE00400
|
CONFIG_SYS_MONITOR_BASE=0xFFE00400
|
||||||
# CONFIG_AUTOBOOT is not set
|
# CONFIG_AUTOBOOT is not set
|
||||||
CONFIG_SYS_CONSOLE_INFO_QUIET=y
|
CONFIG_SYS_CONSOLE_INFO_QUIET=y
|
||||||
|
@ -8,6 +8,7 @@ CONFIG_SYS_LOAD_ADDR=0x100000
|
|||||||
CONFIG_ENV_ADDR=0xFF804000
|
CONFIG_ENV_ADDR=0xFF804000
|
||||||
CONFIG_TARGET_M5253DEMO=y
|
CONFIG_TARGET_M5253DEMO=y
|
||||||
CONFIG_MCFTMR=y
|
CONFIG_MCFTMR=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=262144
|
||||||
CONFIG_SYS_MONITOR_BASE=0xFF800400
|
CONFIG_SYS_MONITOR_BASE=0xFF800400
|
||||||
CONFIG_BOOTDELAY=5
|
CONFIG_BOOTDELAY=5
|
||||||
# CONFIG_DISPLAY_BOARDINFO is not set
|
# CONFIG_DISPLAY_BOARDINFO is not set
|
||||||
|
@ -9,6 +9,7 @@ CONFIG_SYS_LOAD_ADDR=0x20000
|
|||||||
CONFIG_ENV_ADDR=0xFFE04000
|
CONFIG_ENV_ADDR=0xFFE04000
|
||||||
CONFIG_TARGET_M5272C3=y
|
CONFIG_TARGET_M5272C3=y
|
||||||
CONFIG_MCFTMR=y
|
CONFIG_MCFTMR=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=131072
|
||||||
CONFIG_SYS_MONITOR_BASE=0xFFE00400
|
CONFIG_SYS_MONITOR_BASE=0xFFE00400
|
||||||
CONFIG_BOOTDELAY=5
|
CONFIG_BOOTDELAY=5
|
||||||
# CONFIG_DISPLAY_BOARDINFO is not set
|
# CONFIG_DISPLAY_BOARDINFO is not set
|
||||||
|
@ -9,6 +9,7 @@ CONFIG_SYS_LOAD_ADDR=0x800000
|
|||||||
CONFIG_ENV_ADDR=0xFFE04000
|
CONFIG_ENV_ADDR=0xFFE04000
|
||||||
CONFIG_TARGET_M5275EVB=y
|
CONFIG_TARGET_M5275EVB=y
|
||||||
CONFIG_MCFTMR=y
|
CONFIG_MCFTMR=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=131072
|
||||||
CONFIG_SYS_MONITOR_BASE=0xFFE00400
|
CONFIG_SYS_MONITOR_BASE=0xFFE00400
|
||||||
CONFIG_BOOTDELAY=5
|
CONFIG_BOOTDELAY=5
|
||||||
CONFIG_USE_BOOTCOMMAND=y
|
CONFIG_USE_BOOTCOMMAND=y
|
||||||
|
@ -9,6 +9,7 @@ CONFIG_SYS_LOAD_ADDR=0x20000
|
|||||||
CONFIG_ENV_ADDR=0xFFE04000
|
CONFIG_ENV_ADDR=0xFFE04000
|
||||||
CONFIG_TARGET_M5282EVB=y
|
CONFIG_TARGET_M5282EVB=y
|
||||||
CONFIG_MCFTMR=y
|
CONFIG_MCFTMR=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=131072
|
||||||
CONFIG_SYS_MONITOR_BASE=0xFFE00400
|
CONFIG_SYS_MONITOR_BASE=0xFFE00400
|
||||||
CONFIG_BOOTDELAY=5
|
CONFIG_BOOTDELAY=5
|
||||||
# CONFIG_DISPLAY_BOARDINFO is not set
|
# CONFIG_DISPLAY_BOARDINFO is not set
|
||||||
|
@ -9,6 +9,7 @@ CONFIG_SYS_LOAD_ADDR=0x40010000
|
|||||||
CONFIG_ENV_ADDR=0x40000
|
CONFIG_ENV_ADDR=0x40000
|
||||||
CONFIG_TARGET_M53017EVB=y
|
CONFIG_TARGET_M53017EVB=y
|
||||||
CONFIG_MCFTMR=y
|
CONFIG_MCFTMR=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=262144
|
||||||
CONFIG_SYS_MONITOR_BASE=0x00000400
|
CONFIG_SYS_MONITOR_BASE=0x00000400
|
||||||
CONFIG_BOOTDELAY=1
|
CONFIG_BOOTDELAY=1
|
||||||
CONFIG_USE_BOOTARGS=y
|
CONFIG_USE_BOOTARGS=y
|
||||||
|
@ -9,6 +9,7 @@ CONFIG_SYS_LOAD_ADDR=0x40010000
|
|||||||
CONFIG_ENV_ADDR=0x4000
|
CONFIG_ENV_ADDR=0x4000
|
||||||
CONFIG_TARGET_M5329EVB=y
|
CONFIG_TARGET_M5329EVB=y
|
||||||
CONFIG_MCFTMR=y
|
CONFIG_MCFTMR=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=262144
|
||||||
CONFIG_SYS_MONITOR_BASE=0x00000400
|
CONFIG_SYS_MONITOR_BASE=0x00000400
|
||||||
CONFIG_BOOTDELAY=1
|
CONFIG_BOOTDELAY=1
|
||||||
# CONFIG_DISPLAY_BOARDINFO is not set
|
# CONFIG_DISPLAY_BOARDINFO is not set
|
||||||
|
@ -9,6 +9,7 @@ CONFIG_SYS_LOAD_ADDR=0x40010000
|
|||||||
CONFIG_ENV_ADDR=0x4000
|
CONFIG_ENV_ADDR=0x4000
|
||||||
CONFIG_TARGET_M5329EVB=y
|
CONFIG_TARGET_M5329EVB=y
|
||||||
CONFIG_MCFTMR=y
|
CONFIG_MCFTMR=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=262144
|
||||||
CONFIG_SYS_MONITOR_BASE=0x00000400
|
CONFIG_SYS_MONITOR_BASE=0x00000400
|
||||||
CONFIG_BOOTDELAY=1
|
CONFIG_BOOTDELAY=1
|
||||||
# CONFIG_DISPLAY_BOARDINFO is not set
|
# CONFIG_DISPLAY_BOARDINFO is not set
|
||||||
|
@ -9,6 +9,7 @@ CONFIG_SYS_LOAD_ADDR=0x40010000
|
|||||||
CONFIG_ENV_ADDR=0x4000
|
CONFIG_ENV_ADDR=0x4000
|
||||||
CONFIG_TARGET_M5373EVB=y
|
CONFIG_TARGET_M5373EVB=y
|
||||||
CONFIG_MCFTMR=y
|
CONFIG_MCFTMR=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=262144
|
||||||
CONFIG_SYS_MONITOR_BASE=0x00000400
|
CONFIG_SYS_MONITOR_BASE=0x00000400
|
||||||
CONFIG_BOOTDELAY=1
|
CONFIG_BOOTDELAY=1
|
||||||
# CONFIG_DISPLAY_BOARDINFO is not set
|
# CONFIG_DISPLAY_BOARDINFO is not set
|
||||||
|
@ -19,6 +19,7 @@ CONFIG_SYS_PLPRCR=0x00460004
|
|||||||
CONFIG_SYS_SCCR=0x00C20000
|
CONFIG_SYS_SCCR=0x00C20000
|
||||||
CONFIG_SYS_SCCR_MASK=0x60000000
|
CONFIG_SYS_SCCR_MASK=0x60000000
|
||||||
CONFIG_SYS_DER=0x2002000F
|
CONFIG_SYS_DER=0x2002000F
|
||||||
|
CONFIG_SYS_MONITOR_LEN=327680
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
CONFIG_SYS_MONITOR_BASE=0x04000000
|
CONFIG_SYS_MONITOR_BASE=0x04000000
|
||||||
CONFIG_BOOTDELAY=5
|
CONFIG_BOOTDELAY=5
|
||||||
|
@ -5,6 +5,7 @@ CONFIG_SPL=y
|
|||||||
CONFIG_MACH_SUN7I=y
|
CONFIG_MACH_SUN7I=y
|
||||||
CONFIG_DRAM_CLK=384
|
CONFIG_DRAM_CLK=384
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SYS_I2C_MVTWSI=y
|
CONFIG_SYS_I2C_MVTWSI=y
|
||||||
CONFIG_SYS_I2C_SLAVE=0x7f
|
CONFIG_SYS_I2C_SLAVE=0x7f
|
||||||
|
@ -147,6 +147,7 @@ CONFIG_ACR_RPTCNT_4=y
|
|||||||
CONFIG_SPCR_TSECEP_3=y
|
CONFIG_SPCR_TSECEP_3=y
|
||||||
CONFIG_LCRR_DBYP_PLL_BYPASSED=y
|
CONFIG_LCRR_DBYP_PLL_BYPASSED=y
|
||||||
CONFIG_LCRR_CLKDIV_8=y
|
CONFIG_LCRR_CLKDIV_8=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=524288
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
CONFIG_OF_STDOUT_VIA_ALIAS=y
|
CONFIG_OF_STDOUT_VIA_ALIAS=y
|
||||||
CONFIG_BOOTDELAY=6
|
CONFIG_BOOTDELAY=6
|
||||||
|
@ -14,6 +14,7 @@ CONFIG_MPC85XX_HAVE_RESET_VECTOR=y
|
|||||||
CONFIG_ENABLE_36BIT_PHYS=y
|
CONFIG_ENABLE_36BIT_PHYS=y
|
||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PHYS_64BIT=y
|
CONFIG_PHYS_64BIT=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=524288
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
CONFIG_OF_STDOUT_VIA_ALIAS=y
|
CONFIG_OF_STDOUT_VIA_ALIAS=y
|
||||||
CONFIG_DYNAMIC_SYS_CLK_FREQ=y
|
CONFIG_DYNAMIC_SYS_CLK_FREQ=y
|
||||||
|
@ -13,6 +13,7 @@ CONFIG_TARGET_MPC8548CDS=y
|
|||||||
CONFIG_MPC85XX_HAVE_RESET_VECTOR=y
|
CONFIG_MPC85XX_HAVE_RESET_VECTOR=y
|
||||||
CONFIG_ENABLE_36BIT_PHYS=y
|
CONFIG_ENABLE_36BIT_PHYS=y
|
||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=524288
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
CONFIG_OF_STDOUT_VIA_ALIAS=y
|
CONFIG_OF_STDOUT_VIA_ALIAS=y
|
||||||
CONFIG_DYNAMIC_SYS_CLK_FREQ=y
|
CONFIG_DYNAMIC_SYS_CLK_FREQ=y
|
||||||
|
@ -14,6 +14,7 @@ CONFIG_MPC85XX_HAVE_RESET_VECTOR=y
|
|||||||
CONFIG_ENABLE_36BIT_PHYS=y
|
CONFIG_ENABLE_36BIT_PHYS=y
|
||||||
CONFIG_TARGET_MPC8548CDS_LEGACY=y
|
CONFIG_TARGET_MPC8548CDS_LEGACY=y
|
||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=524288
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
CONFIG_OF_STDOUT_VIA_ALIAS=y
|
CONFIG_OF_STDOUT_VIA_ALIAS=y
|
||||||
CONFIG_DYNAMIC_SYS_CLK_FREQ=y
|
CONFIG_DYNAMIC_SYS_CLK_FREQ=y
|
||||||
|
@ -10,6 +10,7 @@ CONFIG_VIDEO_LCD_POWER="PH8"
|
|||||||
CONFIG_VIDEO_LCD_BL_EN="PH7"
|
CONFIG_VIDEO_LCD_BL_EN="PH7"
|
||||||
CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SYS_I2C_MVTWSI=y
|
CONFIG_SYS_I2C_MVTWSI=y
|
||||||
CONFIG_SYS_I2C_SLAVE=0x7f
|
CONFIG_SYS_I2C_SLAVE=0x7f
|
||||||
|
@ -13,6 +13,7 @@ CONFIG_VIDEO_LCD_BL_EN="PA25"
|
|||||||
CONFIG_VIDEO_LCD_BL_PWM="PH13"
|
CONFIG_VIDEO_LCD_BL_PWM="PH13"
|
||||||
CONFIG_VIDEO_LCD_PANEL_MIPI_4_LANE_513_MBPS_VIA_SSD2828=y
|
CONFIG_VIDEO_LCD_PANEL_MIPI_4_LANE_513_MBPS_VIA_SSD2828=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_AXP_DLDO1_VOLT=3300
|
CONFIG_AXP_DLDO1_VOLT=3300
|
||||||
# CONFIG_REQUIRE_SERIAL_CONSOLE is not set
|
# CONFIG_REQUIRE_SERIAL_CONSOLE is not set
|
||||||
CONFIG_USB_MUSB_HOST=y
|
CONFIG_USB_MUSB_HOST=y
|
||||||
|
@ -5,6 +5,7 @@ CONFIG_SPL=y
|
|||||||
CONFIG_MACH_SUN4I=y
|
CONFIG_MACH_SUN4I=y
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
CONFIG_SYS_64BIT_LBA=y
|
CONFIG_SYS_64BIT_LBA=y
|
||||||
CONFIG_SYS_I2C_MVTWSI=y
|
CONFIG_SYS_I2C_MVTWSI=y
|
||||||
|
@ -7,6 +7,7 @@ CONFIG_DRAM_ZQ=120
|
|||||||
CONFIG_USB1_VBUS_PIN="PC27"
|
CONFIG_USB1_VBUS_PIN="PC27"
|
||||||
CONFIG_USB2_VBUS_PIN=""
|
CONFIG_USB2_VBUS_PIN=""
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_PHY_REALTEK=y
|
CONFIG_PHY_REALTEK=y
|
||||||
CONFIG_ETH_DESIGNWARE=y
|
CONFIG_ETH_DESIGNWARE=y
|
||||||
CONFIG_MII=y
|
CONFIG_MII=y
|
||||||
|
@ -8,6 +8,7 @@ CONFIG_VIDEO_VGA=y
|
|||||||
CONFIG_VIDEO_COMPOSITE=y
|
CONFIG_VIDEO_COMPOSITE=y
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
CONFIG_SYS_64BIT_LBA=y
|
CONFIG_SYS_64BIT_LBA=y
|
||||||
|
@ -7,6 +7,7 @@ CONFIG_DRAM_ZQ=120
|
|||||||
CONFIG_USB1_VBUS_PIN="PC27"
|
CONFIG_USB1_VBUS_PIN="PC27"
|
||||||
CONFIG_USB2_VBUS_PIN=""
|
CONFIG_USB2_VBUS_PIN=""
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_PHY_REALTEK=y
|
CONFIG_PHY_REALTEK=y
|
||||||
CONFIG_ETH_DESIGNWARE=y
|
CONFIG_ETH_DESIGNWARE=y
|
||||||
CONFIG_MII=y
|
CONFIG_MII=y
|
||||||
|
@ -9,6 +9,7 @@ CONFIG_MMC_SUNXI_SLOT_EXTRA=2
|
|||||||
CONFIG_VIDEO_VGA=y
|
CONFIG_VIDEO_VGA=y
|
||||||
CONFIG_VIDEO_COMPOSITE=y
|
CONFIG_VIDEO_COMPOSITE=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SYS_I2C_MVTWSI=y
|
CONFIG_SYS_I2C_MVTWSI=y
|
||||||
CONFIG_SYS_I2C_SLAVE=0x7f
|
CONFIG_SYS_I2C_SLAVE=0x7f
|
||||||
|
@ -9,6 +9,7 @@ CONFIG_MMC0_CD_PIN="PH1"
|
|||||||
CONFIG_VIDEO_COMPOSITE=y
|
CONFIG_VIDEO_COMPOSITE=y
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
CONFIG_SYS_64BIT_LBA=y
|
CONFIG_SYS_64BIT_LBA=y
|
||||||
|
@ -7,6 +7,7 @@ CONFIG_DRAM_ZQ=120
|
|||||||
CONFIG_USB1_VBUS_PIN="PC27"
|
CONFIG_USB1_VBUS_PIN="PC27"
|
||||||
CONFIG_USB2_VBUS_PIN=""
|
CONFIG_USB2_VBUS_PIN=""
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_PHY_REALTEK=y
|
CONFIG_PHY_REALTEK=y
|
||||||
CONFIG_ETH_DESIGNWARE=y
|
CONFIG_ETH_DESIGNWARE=y
|
||||||
CONFIG_MII=y
|
CONFIG_MII=y
|
||||||
|
@ -12,5 +12,6 @@ CONFIG_USB0_ID_DET="PH3"
|
|||||||
CONFIG_USB1_VBUS_PIN="PH4"
|
CONFIG_USB1_VBUS_PIN="PH4"
|
||||||
CONFIG_USB3_VBUS_PIN="PH5"
|
CONFIG_USB3_VBUS_PIN="PH5"
|
||||||
CONFIG_AXP_GPIO=y
|
CONFIG_AXP_GPIO=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SYS_I2C_SUN8I_RSB=y
|
CONFIG_SYS_I2C_SUN8I_RSB=y
|
||||||
CONFIG_AXP809_POWER=y
|
CONFIG_AXP809_POWER=y
|
||||||
|
@ -6,6 +6,7 @@ CONFIG_MACH_SUN4I=y
|
|||||||
CONFIG_USB0_VBUS_PIN="PB9"
|
CONFIG_USB0_VBUS_PIN="PB9"
|
||||||
CONFIG_VIDEO_COMPOSITE=y
|
CONFIG_VIDEO_COMPOSITE=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SYS_I2C_MVTWSI=y
|
CONFIG_SYS_I2C_MVTWSI=y
|
||||||
CONFIG_SYS_I2C_SLAVE=0x7f
|
CONFIG_SYS_I2C_SLAVE=0x7f
|
||||||
|
@ -9,6 +9,7 @@ CONFIG_DRAM_ODT_EN=y
|
|||||||
CONFIG_USB0_VBUS_DET="AXP0-VBUS-DETECT"
|
CONFIG_USB0_VBUS_DET="AXP0-VBUS-DETECT"
|
||||||
CONFIG_AXP_GPIO=y
|
CONFIG_AXP_GPIO=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
# CONFIG_CMD_FLASH is not set
|
# CONFIG_CMD_FLASH is not set
|
||||||
CONFIG_CMD_MTDPARTS=y
|
CONFIG_CMD_MTDPARTS=y
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
|
@ -12,6 +12,7 @@ CONFIG_VIDEO_COMPOSITE=y
|
|||||||
CONFIG_GMAC_TX_DELAY=3
|
CONFIG_GMAC_TX_DELAY=3
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
CONFIG_SYS_64BIT_LBA=y
|
CONFIG_SYS_64BIT_LBA=y
|
||||||
|
@ -14,6 +14,7 @@ CONFIG_VIDEO_COMPOSITE=y
|
|||||||
CONFIG_GMAC_TX_DELAY=3
|
CONFIG_GMAC_TX_DELAY=3
|
||||||
CONFIG_AHCI=y
|
CONFIG_AHCI=y
|
||||||
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_SPL_I2C=y
|
CONFIG_SPL_I2C=y
|
||||||
CONFIG_SCSI_AHCI=y
|
CONFIG_SCSI_AHCI=y
|
||||||
CONFIG_SYS_64BIT_LBA=y
|
CONFIG_SYS_64BIT_LBA=y
|
||||||
|
@ -22,6 +22,7 @@ CONFIG_TPL_SYS_MPC85XX_NO_RESETVEC=y
|
|||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
CONFIG_PHYS_64BIT=y
|
CONFIG_PHYS_64BIT=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
@ -14,6 +14,7 @@ CONFIG_SYS_MPC85XX_NO_RESETVEC=y
|
|||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
CONFIG_PHYS_64BIT=y
|
CONFIG_PHYS_64BIT=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
@ -20,6 +20,7 @@ CONFIG_SPL_SYS_MPC85XX_NO_RESETVEC=y
|
|||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
CONFIG_PHYS_64BIT=y
|
CONFIG_PHYS_64BIT=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
@ -22,6 +22,7 @@ CONFIG_SPL_SYS_MPC85XX_NO_RESETVEC=y
|
|||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
CONFIG_PHYS_64BIT=y
|
CONFIG_PHYS_64BIT=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
@ -21,6 +21,7 @@ CONFIG_SYS_MPC85XX_NO_RESETVEC=y
|
|||||||
CONFIG_TPL_SYS_MPC85XX_NO_RESETVEC=y
|
CONFIG_TPL_SYS_MPC85XX_NO_RESETVEC=y
|
||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
@ -13,6 +13,7 @@ CONFIG_ENABLE_36BIT_PHYS=y
|
|||||||
CONFIG_SYS_MPC85XX_NO_RESETVEC=y
|
CONFIG_SYS_MPC85XX_NO_RESETVEC=y
|
||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
@ -19,6 +19,7 @@ CONFIG_SYS_MPC85XX_NO_RESETVEC=y
|
|||||||
CONFIG_SPL_SYS_MPC85XX_NO_RESETVEC=y
|
CONFIG_SPL_SYS_MPC85XX_NO_RESETVEC=y
|
||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
@ -21,6 +21,7 @@ CONFIG_SYS_MPC85XX_NO_RESETVEC=y
|
|||||||
CONFIG_SPL_SYS_MPC85XX_NO_RESETVEC=y
|
CONFIG_SPL_SYS_MPC85XX_NO_RESETVEC=y
|
||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
@ -22,6 +22,7 @@ CONFIG_TPL_SYS_MPC85XX_NO_RESETVEC=y
|
|||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
CONFIG_PHYS_64BIT=y
|
CONFIG_PHYS_64BIT=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
@ -14,6 +14,7 @@ CONFIG_SYS_MPC85XX_NO_RESETVEC=y
|
|||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
CONFIG_PHYS_64BIT=y
|
CONFIG_PHYS_64BIT=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
@ -20,6 +20,7 @@ CONFIG_SPL_SYS_MPC85XX_NO_RESETVEC=y
|
|||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
CONFIG_PHYS_64BIT=y
|
CONFIG_PHYS_64BIT=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
@ -22,6 +22,7 @@ CONFIG_SPL_SYS_MPC85XX_NO_RESETVEC=y
|
|||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
CONFIG_PHYS_64BIT=y
|
CONFIG_PHYS_64BIT=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
@ -21,6 +21,7 @@ CONFIG_SYS_MPC85XX_NO_RESETVEC=y
|
|||||||
CONFIG_TPL_SYS_MPC85XX_NO_RESETVEC=y
|
CONFIG_TPL_SYS_MPC85XX_NO_RESETVEC=y
|
||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
@ -13,6 +13,7 @@ CONFIG_ENABLE_36BIT_PHYS=y
|
|||||||
CONFIG_SYS_MPC85XX_NO_RESETVEC=y
|
CONFIG_SYS_MPC85XX_NO_RESETVEC=y
|
||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
@ -19,6 +19,7 @@ CONFIG_SYS_MPC85XX_NO_RESETVEC=y
|
|||||||
CONFIG_SPL_SYS_MPC85XX_NO_RESETVEC=y
|
CONFIG_SPL_SYS_MPC85XX_NO_RESETVEC=y
|
||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
@ -21,6 +21,7 @@ CONFIG_SYS_MPC85XX_NO_RESETVEC=y
|
|||||||
CONFIG_SPL_SYS_MPC85XX_NO_RESETVEC=y
|
CONFIG_SPL_SYS_MPC85XX_NO_RESETVEC=y
|
||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
@ -22,6 +22,7 @@ CONFIG_TPL_SYS_MPC85XX_NO_RESETVEC=y
|
|||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
CONFIG_PHYS_64BIT=y
|
CONFIG_PHYS_64BIT=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_MP=y
|
CONFIG_MP=y
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
|
@ -20,6 +20,7 @@ CONFIG_SPL_SYS_MPC85XX_NO_RESETVEC=y
|
|||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
CONFIG_PHYS_64BIT=y
|
CONFIG_PHYS_64BIT=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_MP=y
|
CONFIG_MP=y
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
|
@ -22,6 +22,7 @@ CONFIG_SPL_SYS_MPC85XX_NO_RESETVEC=y
|
|||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
CONFIG_PHYS_64BIT=y
|
CONFIG_PHYS_64BIT=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_MP=y
|
CONFIG_MP=y
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
|
@ -15,6 +15,7 @@ CONFIG_SYS_MPC85XX_NO_RESETVEC=y
|
|||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
CONFIG_PHYS_64BIT=y
|
CONFIG_PHYS_64BIT=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_MP=y
|
CONFIG_MP=y
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
|
@ -21,6 +21,7 @@ CONFIG_SYS_MPC85XX_NO_RESETVEC=y
|
|||||||
CONFIG_TPL_SYS_MPC85XX_NO_RESETVEC=y
|
CONFIG_TPL_SYS_MPC85XX_NO_RESETVEC=y
|
||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_MP=y
|
CONFIG_MP=y
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
|
@ -19,6 +19,7 @@ CONFIG_SYS_MPC85XX_NO_RESETVEC=y
|
|||||||
CONFIG_SPL_SYS_MPC85XX_NO_RESETVEC=y
|
CONFIG_SPL_SYS_MPC85XX_NO_RESETVEC=y
|
||||||
CONFIG_PCIE1=y
|
CONFIG_PCIE1=y
|
||||||
CONFIG_PCIE2=y
|
CONFIG_PCIE2=y
|
||||||
|
CONFIG_SYS_MONITOR_LEN=786432
|
||||||
CONFIG_MP=y
|
CONFIG_MP=y
|
||||||
CONFIG_FIT=y
|
CONFIG_FIT=y
|
||||||
CONFIG_FIT_VERBOSE=y
|
CONFIG_FIT_VERBOSE=y
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user