if ARCH_ASPEED config SYS_ARCH default "arm" config SYS_SOC default "aspeed" config SYS_TEXT_BASE default 0x00000000 choice prompt "Aspeed SoC select" depends on ARCH_ASPEED default ASPEED_AST2500 config ASPEED_AST2500 bool "Support Aspeed AST2500 SoC" select CPU_ARM1176 select SUPPORT_SPL help The Aspeed AST2500 is a ARM-based SoC with arm1176 CPU. It is used as Board Management Controller on many server boards, which is enabled by support of LPC and eSPI peripherals. config ASPEED_AST2600 bool "Support Aspeed AST2600 SoC" select CPU_V7A select CPU_V7_HAS_NONSEC select ARCH_SUPPORT_PSCI select SYS_ARCH_TIMER select SUPPORT_SPL select ENABLE_ARM_SOC_BOOT0_HOOK help The Aspeed AST2600 is a ARM-based SoC with Cortex-A7 CPU. It is used as Board Management Controller on many server boards, which is enabled by support of LPC and eSPI peripherals. endchoice config ASPEED_PALLADIUM bool "Aspeed palladium for simulation" default n help Say Y here to enable palladium build for simulation. This is mainly for internal verification and investigation on HW design. If not sure, say N. config ASPEED_SECURE_BOOT bool "Support Aspeed secure boot feature" depends on SPL && ASPEED_AST2600 select ENABLE_ARM_SOC_BOOT0_HOOK select CMD_BOOTS help This option enables the support for secure boot. config ASPEED_SECURE_BOOT_DEBUG bool "Enable debug support with secure boot" default y depends on ASPEED_SECURE_BOOT help This option allows the bootm command use config ASPEED_UBOOT_SPI_BASE hex "U-Boot SPI base address" default 0x0 help The base address of the U-Boot image in the memory mapped SPI space config ASPEED_UBOOT_SPI_SIZE hex "U-Boot SPI size in bytes" default 0x0 help The size in bytes of the U-Boot image in the memory mapped SPI space config ASPEED_UBOOT_MMC_BASE hex "U-Boot eMMC base block" default 0x0 help The base block number of the U-Boot image in the eMMC device config ASPEED_UBOOT_MMC_SIZE hex "U-Boot eMMC size in blocks" default 0x0 help The size in block count of the U-Boot image in the eMMC device config ASPEED_UBOOT_UART_SIZE hex "U-Boot UART size in bytes" default 0x0 help The size of U-Boot image to be recevied from UART device config ASPEED_UBOOT_DRAM_BASE hex "U-Boot DRAM base address" default 0x0 help The DRAM address where the U-Boot image will be loaded if XIP is not supported config ASPEED_KERNEL_FIT_SPI_BASE hex "Kernel FIT SPI base address" default 0x0 help The base address of the kernel FIT image in the memory mapped SPI space config ASPEED_KERNEL_FIT_SPI_SIZE hex "Kernel FIT SPI size in bytes" default 0x0 help The size in bytes of the kernel FIT image in the memory mapped SPI space config ASPEED_KERNEL_FIT_MMC_BASE hex "Kernel FIT eMMC base block #" default 0x0 help The base block number of the kernel FIT image in the eMMC device config ASPEED_KERNEL_FIT_MMC_SIZE hex "Kernel FIT eMMC size in blocks" default 0x0 help The size in block count of the kernel FIT image in the eMMC device config ASPEED_KERNEL_FIT_DRAM_BASE hex "Kernel FIT DRAM base address" default 0x0 help The DRAM address where the Kernel FIT image will be loaded if XIP is not supported source "arch/arm/mach-aspeed/ast2500/Kconfig" source "arch/arm/mach-aspeed/ast2600/Kconfig" endif