diff options
author | Michal Simek <michal.simek@xilinx.com> | 2018-08-22 14:55:27 +0200 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2018-10-16 16:53:21 +0200 |
commit | ec48b6c991f400c8583ac2f875d65a8539f0b437 (patch) | |
tree | dd94b74d469d43e15c8db343ce78c96e6b73db1e /env/Kconfig | |
parent | e6149576e8dab0684e885b206b0fcde0c16402c1 (diff) | |
download | u-boot-ec48b6c991f400c8583ac2f875d65a8539f0b437.tar.gz u-boot-ec48b6c991f400c8583ac2f875d65a8539f0b437.tar.bz2 u-boot-ec48b6c991f400c8583ac2f875d65a8539f0b437.zip |
arm64: versal: Add support for new Xilinx Versal ACAPs
Xilinx is introducing Versal, an adaptive compute acceleration platform
(ACAP), built on 7nm FinFET process technology. Versal ACAPs combine
Scalar Processing Engines, Adaptable Hardware Engines, and Intelligent
Engines with leading-edge memory and interfacing technologies to deliver
powerful heterogeneous acceleration for any application. The Versal AI
Core series has five devices, offering 128 to 400 AI Engines. The series
includes dual-core Arm Cortex™-A72 application processors, dual-core Arm
Cortex-R5 real-time processors, 256KB of on-chip memory with ECC, more
than 1,900 DSP engines optimized for high-precision floating point with
low latency.
The patch is adding necessary infrastructure in place without enabling
platform which is done in separate patch.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'env/Kconfig')
-rw-r--r-- | env/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/env/Kconfig b/env/Kconfig index f23be00a54..9011109b47 100644 --- a/env/Kconfig +++ b/env/Kconfig @@ -431,7 +431,7 @@ config ENV_EXT4_FILE It's a string of the EXT4 file name. This file use to store the environment (explicit path to the file) -if ARCH_ROCKCHIP || ARCH_SUNXI || ARCH_ZYNQ || ARCH_ZYNQMP +if ARCH_ROCKCHIP || ARCH_SUNXI || ARCH_ZYNQ || ARCH_ZYNQMP || ARCH_VERSAL config ENV_OFFSET hex "Environment Offset" @@ -448,7 +448,7 @@ config ENV_SIZE hex "Environment Size" default 0x40000 if ENV_IS_IN_SPI_FLASH && ARCH_ZYNQMP default 0x20000 if ARCH_SUNXI || ARCH_ZYNQ - default 0x8000 if ARCH_ROCKCHIP || ARCH_ZYNQMP + default 0x8000 if ARCH_ROCKCHIP || ARCH_ZYNQMP || ARCH_VERSAL help Size of the environment storage area |