blob: 628d4046ad532892ca5cd1406519c5dfdce10f66 [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
17require conf/machine/include/machine-xilinx-board.inc
18require conf/machine/include/machine-xilinx-qemu.inc
19
20MACHINE_FEATURES = "rtc ext2 ext3 vfat usbhost usbgadget"
21
22# u-boot configuration
23UBOOT_MACHINE = "zynq_zc706_config"
24SPL_BINARY = "spl/boot.bin"
25
26EXTRA_IMAGEDEPENDS += " \
27 u-boot-zynq-uenv \
28 virtual/boot-bin \
29 "
30
31SERIAL_CONSOLE = "115200 ttyPS0"
32
33KERNEL_DEVICETREE = "zynq-zc706.dtb"
34
35IMAGE_BOOT_FILES += " \
36 boot.bin \
37 ${KERNEL_IMAGETYPE}-zynq-zc706.dtb \
38 uEnv.txt \
39 "
40
41# Although not fully supported you can run this machine on the mainline QEMU 'xilinx-zynq-a9' machine
42IMAGE_CLASSES += "qemuboot"
43QB_MEM = "-m 1024"
44QB_MACHINE = "-machine xilinx-zynq-a9"
45QB_OPT_APPEND = "-nographic -serial null -serial mon:stdio"
46QB_NETWORK_DEVICE = "-net nic,netdev=net0,macaddr=@MAC@"
47
48# Xilinx's fork of QEMU has much better results, so let's default to that
49# Use qemu-xilinx instead of mainline
50PREFERRED_PROVIDER_qemu-helper-native = "qemu-xilinx-helper-native"
51
52IMAGE_CLASSES += "qemuboot-xilinx"