Build instructions

Source code

The source code for the reference designs is managed on this Github repository:

To get the code, you can follow the link and use the Download ZIP option, or you can clone it using this command:

git clone --recursive https://github.com/fpgadeveloper/fpga-drive-aximm-pcie.git

The --recursive flag pulls in submodules/avnet-bdf (the Avnet board definition files, required for the AUBoard target — these are not yet in the AMD Board Store). If you used Download ZIP, you’ll need to clone the submodule separately, or download it from the Avnet BDF repository and place it under submodules/avnet-bdf/.

License requirements

Some of the designs in this repository target dev boards for which a license is required to generate a bitstream. Others can be built with the Vivado ML Standard Edition without a license. The table of target designs in the following section contains a column specifying which designs require a license, and which can be built without a license.

Additionally, some designs use IP cores that are licensed separately from the Vivado edition itself (for example: TEMAC, XXV Ethernet, HDMI). The IP License column in the tables below indicates the designs that require such a license to generate a bitstream; evaluation licenses are generally available from AMD for testing.

Target designs

This repo contains several designs that target the various supported development boards and their FMC connectors. The table below lists the target design name, the M2 ports supported by the design and the FMC connector on which to connect the mezzanine card.

FPGA designs

Target board

Target design

M.2 Slot 1
PCIe Lanes

M.2 Slot 2
PCIe Lanes

FMC Slot

Vivado
Edition

IP
License

KC705

kc705_hpc

X4

-

HPC

Enterprise

-

KC705

kc705_lpc

X1

-

LPC

Enterprise

-

KCU105

kcu105_hpc

X4

X4

HPC

Enterprise

-

KCU105

kcu105_lpc

X1

-

LPC

Enterprise

-

VC707

vc707_hpc1

X4

-

HPC1

Enterprise

-

VC707

vc707_hpc2

X4

-

HPC2

Enterprise

-

VC709

vc709_hpc

X4

-

HPC

Enterprise

-

VCU118

vcu118

X4

X4

FMCP

Enterprise

-

Zynq-7000 designs

Target board

Target design

M.2 Slot 1
PCIe Lanes

M.2 Slot 2
PCIe Lanes

FMC Slot

Vivado
Edition

IP
License

PicoZed 7015

pz_7015

X1

-

LPC

Standard 🆓

-

PicoZed 7030

pz_7030

X1

-

LPC

Standard 🆓

-

ZC706

zc706_hpc

X4

-

HPC

Enterprise

-

ZC706

zc706_lpc

X1

-

LPC

Enterprise

-

Zynq UltraScale+ designs

Target board

Target design

M.2 Slot 1
PCIe Lanes

M.2 Slot 2
PCIe Lanes

FMC Slot

Vivado
Edition

IP
License

UltraZed-EV Carrier

uzev

X4

X4

HPC

Standard 🆓

-

ZCU104

zcu104

X1

-

LPC

Standard 🆓

-

ZCU106

zcu106_hpc0

X4

X4

HPC0

Standard 🆓

-

ZCU106

zcu106_hpc1

X1

-

HPC1

Standard 🆓

-

ZCU111

zcu111

X4

X4

FMCP

Enterprise

-

ZCU208

zcu208

X4

X4

FMCP

Enterprise

-

ZCU216

zcu216

X4

X4

FMCP

Enterprise

-

Versal designs

Target board

Target design

M.2 Slot 1
PCIe Lanes

M.2 Slot 2
PCIe Lanes

FMC Slot

Vivado
Edition

IP
License

VCK190

vck190_fmcp1

X4

X4

FMCP1

Enterprise

-

VCK190

vck190_fmcp2

X4

X4

FMCP2

Enterprise

-

VHK158

vhk158

X4

-

FMCP

Enterprise

-

VMK180

vmk180_fmcp1

X4

X4

FMCP1

Enterprise

-

VMK180

vmk180_fmcp2

X4

X4

FMCP2

Enterprise

-

VEK280

vek280

X4

X4

FMCP

Enterprise

-

VPK120

vpk120

X4

-

FMCP

Enterprise

-

VPK180

vpk180

X4

-

FMCP

Enterprise

-

Notes:

  1. The Vivado Edition column indicates which designs are supported by the Vivado Standard Edition, the FREE edition which can be used without a license. Vivado Enterprise Edition requires a license however a 30-day evaluation license is available from the AMD Xilinx Licensing site.

Cross-platform build runner

All builds are driven by the build.py runner at the root of the repository, on both Windows and Linux — the build instructions are the same for the two operating systems. Each command builds whatever it depends on automatically, skips anything that is already built, and locates the AMD tools itself, so there is no need to source the settings scripts beforehand.

On Linux and on Windows (git bash), commands are run with the build.sh shim, which finds a suitable Python 3 automatically (including the interpreter bundled with the AMD tools). Windows users who prefer not to use git bash can run the same commands from Command Prompt or PowerShell using build.bat instead — the commands and arguments are otherwise identical, for example build.bat xsa --target <target>.

This repository uses git submodules: clone it with --recurse-submodules, or run git submodule update --init in an existing clone, before building.

To see the available targets and the state of a build:

./build.sh list                       # list the targets and their attributes
./build.sh status --target <target>   # show the per-stage artifact state
./build.sh clean --target <target>    # delete a target's generated outputs

Note

The embedded Linux images (PetaLinux and Yocto) can only be built on a native Linux machine; everything else builds on Windows too. On Windows, the runner refuses the Linux-only stages up front and prints the exact command to run on the Linux machine. For Versal targets on Windows, the runner also verifies that the project path fits within the 260-character Windows path limit before building, and explains the subst workaround if it does not.

Attention

The legacy make interface described in previous versions of this documentation still works on Linux — each Makefile is now a thin wrapper around build.sh — but it is deprecated and will be removed at the next version update.

Build Vivado project

This single command creates the Vivado project, generates the bitstream and exports the hardware to an XSA file:

./build.sh xsa --target <target>

Valid targets are: kc705_hpc, kc705_lpc, kcu105_hpc, kcu105_lpc, pz_7015, pz_7030, uzev, vc707_hpc1, vc707_hpc2, vc709_hpc, vck190_fmcp1, vck190_fmcp2, vhk158, vmk180_fmcp1, vmk180_fmcp2, vek280, vpk120, vpk180, vcu118, zc706_hpc, zc706_lpc, zcu104, zcu106_hpc0, zcu106_hpc1, zcu111, zcu208, zcu216.

If you want the Vivado project and block design without generating a bitstream — for example, to explore or modify the design in the Vivado GUI — run ./build.sh project --target <target> instead, then open the project from Vivado/<target>/.

Build Vitis workspace

This creates the Vitis workspace and compiles the standalone application, producing the baremetal boot file (BOOT.BIN or bit file, depending on the device family). The Vivado XSA is built first if it does not already exist:

./build.sh standalone --target <target>

Valid targets for the standalone application are: kc705_hpc, kc705_lpc, kcu105_hpc, kcu105_lpc, pz_7015, pz_7030, uzev, vc707_hpc1, vc707_hpc2, vc709_hpc, vck190_fmcp1, vck190_fmcp2, vhk158, vmk180_fmcp1, vmk180_fmcp2, vek280, vpk120, vpk180, vcu118, zc706_hpc, zc706_lpc, zcu104, zcu106_hpc0, zcu106_hpc1, zcu111, zcu208, zcu216.

The workspace is created in Vitis/<target>_workspace and the boot files are gathered in Vitis/boot/<target>/.

Build PetaLinux

Attention

The PetaLinux flow for this repository is being retired. Version 2025.2 is the last tool release for which we will support PetaLinux; from the next tool version onward, Linux images will be built with the Yocto / EDF flow only. New work should use the Yocto flow.

The PetaLinux build requires a native Linux machine (one of the supported Linux distributions) with PetaLinux Tools 2025.2 installed. The runner locates and sources the PetaLinux settings.sh itself, and builds the Vivado XSA first if it does not already exist:

./build.sh petalinux --target <target>

Valid targets for PetaLinux are: pz_7015, pz_7030, uzev, vck190_fmcp1, vck190_fmcp2, vhk158, vmk180_fmcp1, vmk180_fmcp2, vek280, vpk120, vpk180, zc706_hpc, zc706_lpc, zcu104, zcu106_hpc0, zcu106_hpc1, zcu111, zcu208, zcu216.

The output products are written to PetaLinux/<target>/images/linux/.

PetaLinux offline build

If you need to build the PetaLinux projects offline (without an internet connection), you can follow these instructions.

  1. Download the sstate-cache artefacts from the Xilinx downloads site (the same page where you downloaded PetaLinux tools). There are four of them:

    • aarch64 sstate-cache (for ZynqMP designs)

    • arm sstate-cache (for Zynq designs)

    • microblaze sstate-cache (for Microblaze designs)

    • Downloads (for all designs)

  2. Extract the contents of those files to a single location on your hard drive, for this example we’ll say /home/user/petalinux-sstate. That should leave you with the following directory structure:

    /home/user/petalinux-sstate
                              +---  aarch64
                              +---  arm
                              +---  downloads
                              +---  microblaze
    
  3. Create a text file called offline.txt in the PetaLinux directory of the project repository. The file should contain a single line of text specifying the path where you extracted the sstate-cache files. In this example, the contents of the file would be:

    /home/user/petalinux-sstate
    

    It is important that the file contain only one line and that the path is written with NO TRAILING FORWARD SLASH.

The PetaLinux builds will then be configured for offline build.

Build Yocto

This builds the Yocto / EDF image (AMD’s Embedded Development Framework, the announced successor to PetaLinux) using AMD’s recommended gen-machineconf / parse-sdt flow. It requires a native Linux machine with Google’s repo tool on the PATH; the xsct/sdtgen tools come from Vitis, which the runner locates and sources itself. The Vivado XSA is built first if it does not already exist:

./build.sh yocto --target <target>

Valid targets for Yocto are: pz_7015, pz_7030, uzev, vck190_fmcp1, vck190_fmcp2, vhk158, vmk180_fmcp1, vmk180_fmcp2, vek280, vpk120, vpk180, zc706_hpc, zc706_lpc, zcu104, zcu106_hpc0, zcu106_hpc1, zcu111, zcu208, zcu216.

The first build of a target runs repo sync (several GB of git history) and bitbake from scratch, so it takes a while; subsequent builds are incremental. The output products (BOOT.BIN, the kernel, boot.scr, system.dtb, rootfs.wic.xz) are gathered into Yocto/<target>/images/linux/.

Yocto offline build

To build the Yocto projects offline (or simply faster), point the build at a locally extracted AMD sstate-cache mirror.

  1. Download the sstate-cache artefacts from the Xilinx downloads site and extract them to a single location, for example /home/user/yocto-sstate, leaving the following directory structure:

    /home/user/yocto-sstate
                           +---  aarch64       (Zynq UltraScale+ and Versal)
                           +---  arm           (Zynq-7000)
                           +---  microblaze    (PMU/PLM firmware)
                           +---  downloads
    
  2. Create a text file called offline.txt in the Yocto directory of the repository containing a single line with that path, written with NO TRAILING FORWARD SLASH:

    /home/user/yocto-sstate
    

The Yocto build will then auto-detect which architecture sub-directories are present and configure the build to use the mirror.

Build everything

This builds everything that the target supports — the Vivado project and XSA, the standalone application, the PetaLinux image and the Yocto image — and gathers the boot images into bootimages/*.zip:

./build.sh all --target <target>
./build.sh all --target all      # every target in the repo

On Windows, all builds everything that the host can build and reports the Linux-only stages as BLOCKED rather than failing.