blob: 741ef5de6df5571a7a2f88f66f3074dfa51a0835 [file] [log] [blame]
Brad Bishop286d45c2018-10-02 15:21:57 -04001#@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
12SOC_VARIANT ?= "7z"
13
14require conf/machine/include/tune-zynq.inc
15require conf/machine/include/machine-xilinx-overrides.inc
16require conf/machine/include/machine-xilinx-default.inc
Brad Bishop286d45c2018-10-02 15:21:57 -040017require conf/machine/include/machine-xilinx-qemu.inc
18
19MACHINE_FEATURES = "rtc ext2 ext3 vfat usbhost usbgadget"
20
21# u-boot configuration
22UBOOT_MACHINE = "zynq_zc706_config"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080023SPL_BINARY ?= "spl/boot.bin"
Brad Bishop286d45c2018-10-02 15:21:57 -040024
25EXTRA_IMAGEDEPENDS += " \
26 u-boot-zynq-uenv \
27 virtual/boot-bin \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080028 virtual/bootloader \
Brad Bishop286d45c2018-10-02 15:21:57 -040029 "
30
31SERIAL_CONSOLE = "115200 ttyPS0"
32
33KERNEL_DEVICETREE = "zynq-zc706.dtb"
34
35IMAGE_BOOT_FILES += " \
36 boot.bin \
Brad Bishop286d45c2018-10-02 15:21:57 -040037 uEnv.txt \
38 "
39
40# Although not fully supported you can run this machine on the mainline QEMU 'xilinx-zynq-a9' machine
41IMAGE_CLASSES += "qemuboot"
42QB_MEM = "-m 1024"
43QB_MACHINE = "-machine xilinx-zynq-a9"
44QB_OPT_APPEND = "-nographic -serial null -serial mon:stdio"
45QB_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
49PREFERRED_PROVIDER_qemu-helper-native = "qemu-xilinx-helper-native"
50
51IMAGE_CLASSES += "qemuboot-xilinx"