Brad Bishop | 286d45c | 2018-10-02 15:21:57 -0400 | [diff] [blame] | 1 | #@TYPE: Machine |
| 2 | #@NAME: zc706-zynq7 |
| 3 | #@DESCRIPTION: Machine support for ZC706 Evaluation Board. |
| 4 | # |
| 5 | # For details on the Evaluation board: |
| 6 | # http://www.xilinx.com/products/boards-and-kits/EK-Z7-ZC706-G.htm |
| 7 | # For documentation and design files for the ZC702: |
| 8 | # http://www.xilinx.com/support/index.html/content/xilinx/en/supportNav/boards_and_kits/zynq-7000_soc_boards_and_kits/zynq-7000_soc_zc706_evaluation_kit.html |
| 9 | # For the FSBL 'zynq_fsbl_0.elf' refer to UG873 and the associated design files. |
| 10 | # |
| 11 | |
| 12 | SOC_VARIANT ?= "7z" |
| 13 | |
| 14 | require conf/machine/include/tune-zynq.inc |
| 15 | require conf/machine/include/machine-xilinx-overrides.inc |
| 16 | require conf/machine/include/machine-xilinx-default.inc |
Brad Bishop | 286d45c | 2018-10-02 15:21:57 -0400 | [diff] [blame] | 17 | require conf/machine/include/machine-xilinx-qemu.inc |
| 18 | |
| 19 | MACHINE_FEATURES = "rtc ext2 ext3 vfat usbhost usbgadget" |
| 20 | |
| 21 | # u-boot configuration |
| 22 | UBOOT_MACHINE = "zynq_zc706_config" |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 23 | SPL_BINARY ?= "spl/boot.bin" |
Brad Bishop | 286d45c | 2018-10-02 15:21:57 -0400 | [diff] [blame] | 24 | |
| 25 | EXTRA_IMAGEDEPENDS += " \ |
| 26 | u-boot-zynq-uenv \ |
| 27 | virtual/boot-bin \ |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 28 | virtual/bootloader \ |
Brad Bishop | 286d45c | 2018-10-02 15:21:57 -0400 | [diff] [blame] | 29 | " |
| 30 | |
| 31 | SERIAL_CONSOLE = "115200 ttyPS0" |
| 32 | |
| 33 | KERNEL_DEVICETREE = "zynq-zc706.dtb" |
| 34 | |
| 35 | IMAGE_BOOT_FILES += " \ |
| 36 | boot.bin \ |
Brad Bishop | 286d45c | 2018-10-02 15:21:57 -0400 | [diff] [blame] | 37 | uEnv.txt \ |
| 38 | " |
| 39 | |
| 40 | # Although not fully supported you can run this machine on the mainline QEMU 'xilinx-zynq-a9' machine |
| 41 | IMAGE_CLASSES += "qemuboot" |
| 42 | QB_MEM = "-m 1024" |
| 43 | QB_MACHINE = "-machine xilinx-zynq-a9" |
| 44 | QB_OPT_APPEND = "-nographic -serial null -serial mon:stdio" |
| 45 | QB_NETWORK_DEVICE = "-net nic,netdev=net0,macaddr=@MAC@" |
| 46 | |
| 47 | # Xilinx's fork of QEMU has much better results, so let's default to that |
| 48 | # Use qemu-xilinx instead of mainline |
| 49 | PREFERRED_PROVIDER_qemu-helper-native = "qemu-xilinx-helper-native" |
| 50 | |
| 51 | IMAGE_CLASSES += "qemuboot-xilinx" |