diff options
author | Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> | 2018-12-19 17:24:41 -0800 |
---|---|---|
committer | Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com> | 2019-06-28 13:30:26 -0700 |
commit | 092608220442b2ca86ef802cb9599c825f27216b (patch) | |
tree | de5a03fde9bb146d16e11ce52203ad4ba7cbaf1b | |
parent | 7e1a71d031265964e28e1d6b4b80b88aab9d5c58 (diff) | |
download | meta-xilinx-092608220442b2ca86ef802cb9599c825f27216b.tar.gz |
zcu111-zynqmp.conf: Add support for ZCU111 evaluation board
The Zynq® UltraScale+™ RFSoC ZCU111 Evaluation Kit enables designers to
jumpstart RF-Class analog designs for wireless, cable access,
early-warning(EW)/radar and other high-performance RF applications.
This kit features a Zynq Ultrascale+ RFSoC supporting 8x 4GSPS 12-bit
ADCs, 8x 6.5GSPS 14-bit DAC, and 8 soft-decision forward error
correction (SD-FECs). Complete with ARM Cortex A53 and ARM Cortex-R5
subsystems, UltraScale+ programmable logic, and the highest signal
processing bandwith in a Zynq UltraScale+ device, this kit provides a
rapid, comprehensive RF Analog-to-Digital signal chain protoyping
platform.
This patch adds machine configuration file for ZCU111 Evaluation Kit
with required setting of board specific yocto variables needed for
compilation of bootloader, kernel and device-tree.
- linux-xlnx is the kernel provider
- u-boot-xlnx is the u-boot provider which will also generate SPL
boot.bin
While using SPL flow, you may need to provide additional hack to pass
the PMU config object. This is similar to all ZU+ boards, due to gap in
SPL flow unable to load PMU config object.
Tested-by: Jaewon Lee <jaewon.lee@xilinx.com>
Signed-off-by: Manjukumar Matha <manjukumar.harthikote-matha@xilinx.com>
-rw-r--r-- | meta-xilinx-bsp/conf/machine/zcu111-zynqmp.conf | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/meta-xilinx-bsp/conf/machine/zcu111-zynqmp.conf b/meta-xilinx-bsp/conf/machine/zcu111-zynqmp.conf new file mode 100644 index 00000000..068e4890 --- /dev/null +++ b/meta-xilinx-bsp/conf/machine/zcu111-zynqmp.conf | |||
@@ -0,0 +1,38 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: zcu111-zynqmp | ||
3 | #@DESCRIPTION: Machine support for ZCU111 Evaluation Board. | ||
4 | # | ||
5 | |||
6 | SOC_VARIANT ?= "dr" | ||
7 | |||
8 | require conf/machine/include/tune-zynqmp.inc | ||
9 | require conf/machine/include/machine-xilinx-overrides.inc | ||
10 | require conf/machine/include/machine-xilinx-default.inc | ||
11 | |||
12 | MACHINE_FEATURES = "rtc ext2 ext3 vfat usbhost" | ||
13 | |||
14 | UBOOT_MACHINE = "xilinx_zynqmp_zcu111_revA_defconfig" | ||
15 | SPL_BINARY ?= "spl/boot.bin" | ||
16 | |||
17 | SERIAL_CONSOLE ?= "115200 ttyPS0" | ||
18 | |||
19 | SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}" | ||
20 | |||
21 | KERNEL_DEVICETREE = "xilinx/zynqmp-zcu111-revA.dtb" | ||
22 | |||
23 | PREFERRED_PROVIDER_virtual/kernel ?= "linux-xlnx" | ||
24 | PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot-xlnx" | ||
25 | |||
26 | PMU_FIRMWARE_IMAGE_NAME ?= "pmu-firmware-zynqmp-pmu" | ||
27 | PMU_FIRMWARE_DEPLOY_DIR ?= "${TOPDIR}/pmutmp/deploy/images/zynqmp-pmu" | ||
28 | |||
29 | EXTRA_IMAGEDEPENDS += " \ | ||
30 | u-boot-zynq-uenv \ | ||
31 | arm-trusted-firmware \ | ||
32 | virtual/boot-bin \ | ||
33 | virtual/bootloader \ | ||
34 | " | ||
35 | IMAGE_BOOT_FILES += " \ | ||
36 | uEnv.txt \ | ||
37 | atf-uboot.ub \ | ||
38 | " | ||