diff options
author | 2019-04-05 16:08:10 -0700 | |
---|---|---|
committer | 2019-08-15 17:05:47 -0700 | |
commit | 0554a5d1907d69e83c0756b6890c7467cf830675 (patch) | |
tree | f7d83adf271484d581cf12184a29f74ec88110c8 | |
parent | 1f5c9c1b1379c9661f947ef4d53970871d2a21d4 (diff) | |
download | meta-xilinx-0554a5d1907d69e83c0756b6890c7467cf830675.tar.gz meta-xilinx-0554a5d1907d69e83c0756b6890c7467cf830675.tar.bz2 meta-xilinx-0554a5d1907d69e83c0756b6890c7467cf830675.zip |
zcu1285-zynqmp.conf: Add support for zcu1285 board
Add initial support for zcu1285 evaluation board which has the
following main features:
* XCZU39DR-FFVF1760
* Samtec BullsEye cable access to:
* 16 GTY transceivers
* 4 GTR transceivers
* 16 ADCs
* 16 DACs
This patch adds machine configuration file for ZCU1285 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.
Signed-off-by: Swagath Gadde <swagathg@xilinx.com>
Signed-off-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/zcu1285-zynqmp.conf | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/meta-xilinx-bsp/conf/machine/zcu1285-zynqmp.conf b/meta-xilinx-bsp/conf/machine/zcu1285-zynqmp.conf new file mode 100644 index 00000000..04508540 --- /dev/null +++ b/meta-xilinx-bsp/conf/machine/zcu1285-zynqmp.conf @@ -0,0 +1,38 @@ +#@TYPE: Machine +#@NAME: zcu1285-zynqmp +#@DESCRIPTION: Machine support for ZCU1285 Evaluation Board. +# + +SOC_VARIANT ?= "dr" + +require conf/machine/include/tune-zynqmp.inc +require conf/machine/include/machine-xilinx-overrides.inc +require conf/machine/include/machine-xilinx-default.inc + +MACHINE_FEATURES = "rtc ext2 ext3 vfat usbhost" + +UBOOT_MACHINE = "xilinx_zynqmp_zc1275_revB_defconfig" +SPL_BINARY ?= "spl/boot.bin" + +SERIAL_CONSOLE ?= "115200 ttyPS0" + +SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}" + +KERNEL_DEVICETREE = "xilinx/zynqmp-zcu1285-revA.dtb" + +PREFERRED_PROVIDER_virtual/kernel ?= "linux-xlnx" +PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot-xlnx" + +PMU_FIRMWARE_IMAGE_NAME ?= "pmu-firmware-zynqmp-pmu" +PMU_FIRMWARE_DEPLOY_DIR ?= "${TOPDIR}/pmutmp/deploy/images/zynqmp-pmu" + +EXTRA_IMAGEDEPENDS += " \ + u-boot-zynq-uenv \ + arm-trusted-firmware \ + virtual/boot-bin \ + virtual/bootloader \ + " +IMAGE_BOOT_FILES += " \ + uEnv.txt \ + atf-uboot.ub \ + " |