Advanced: project structure and customization
This section is intended for users who want to modify the reference designs — adding IP to the block design, changing constraints, modifying the standalone application, or adding packages or drivers to the PetaLinux project. It describes how the repository is laid out, how the Make-driven build flow works, how the Vitis and PetaLinux sides are organised, and what modifications have been added on top of the stock AMD BSPs.
The actual build instructions are in build_instructions; this section is about understanding the project well enough to modify it.
Repository layout
.
├── Makefile <- Top-level build entry point
├── README.md
├── config/ <- Source-of-truth design metadata and auto-generation
│ ├── data.json
│ └── update.py
├── docs/ <- This documentation (Sphinx + Read the Docs)
├── PetaLinux/
│ ├── Makefile <- PetaLinux build orchestration
│ └── bsp/ <- Per-board (and optional per-target) BSP fragments
│ └── pynqzu/, uzev/, zcu102/, zcu102_hpc1/, zcu104/, zcu106/
├── submodules/ <- Vendor board definition files (BDFs)
├── Vivado/
│ ├── Makefile <- Vivado build orchestration
│ ├── scripts/
│ │ ├── build.tcl <- Project creation + block design assembly
│ │ └── xsa.tcl <- Synthesis, implementation, XSA export
│ └── src/
│ ├── bd/
│ │ ├── bd_mb.tcl <- Block design for MicroBlaze targets
│ │ ├── bd_zynqmp.tcl <- Block design for Zynq UltraScale+ targets
│ │ └── mipi_locs.tcl <- Per-target MIPI lane placement constants
│ └── constraints/
│ └── <target>.xdc <- One XDC per target (pin assignments, timing)
└── Vitis/
├── Makefile <- Vitis workspace + boot-image orchestration
├── py/
│ ├── args.json <- Repo-specific Vitis flow configuration
│ ├── build-vitis.py <- Universal Vitis Python build driver
│ └── make-boot.py <- BOOT.BIN packaging
├── common/
│ └── src/ <- Standalone application source (camera bring-up)
└── <target>_workspace/ <- Per-target Vitis workspace (generated)
Per-target build outputs are written to Vivado/<target>/,
Vitis/<target>_workspace/, and PetaLinux/<target>/; packaged
boot-image zips are written to bootimages/. None of these are
committed.
There is no port-config overlay in this repository — there is at most one Raspberry Pi camera array per design, and per-target customisation is done via per-target BSP overlays where needed (see PetaLinux side below).
Target naming
A TARGET is the canonical handle for a single design and is the only
parameter passed through the build flow. It encodes the board and, for
boards with multiple FMC connectors, the connector:
<board>[_<connector>]
Examples: uzev, zcu102_hpc0, zcu102_hpc1, zcu104, pynqzu,
auboard, genesyszu. The first underscore-delimited token is taken
as the target board and is what PetaLinux/Makefile uses to select
the BSP under PetaLinux/bsp/<board>/.
The complete list of valid targets is in the UPDATER START block of
each Makefile and is generated from config/data.json (see below).
config/data.json and config/update.py
config/data.json is the canonical source of truth for the set of
supported designs and their per-target metadata (board name, processor
family, FMC connector, baremetal-vs-PetaLinux support, etc.).
config/update.py reads data.json and regenerates the auto-managed
sections of the four Makefiles, the top-level README.md, and
.gitignore — the sections delimited by UPDATER START /
UPDATER END comment markers.
When adding or modifying a target, edit data.json and re-run
update.py. Do not hand-edit content between the UPDATER START /
UPDATER END markers; it will be overwritten on the next regeneration.
Make-driven build flow
There are four Makefiles in the repository, each scoped to a stage of the build:
Makefile |
Scope |
|---|---|
|
Top-level orchestration; assembles boot-image zips for one or all targets. |
|
Creates the Vivado project, runs synthesis and implementation, exports the XSA. |
|
Creates the Vitis workspace and platform from the XSA, builds the standalone application, packages BOOT.BIN/.mcs. |
|
Creates the PetaLinux project from the XSA, applies BSP overlays, builds, packages. |
Each target is flagged in the top-level Makefile as either
petalinux_only, baremetal_only, or both. Most ZynqMP targets are
petalinux_only; auboard (MicroBlaze) and genesyszu are
baremetal_only. A make bootimage TARGET=<t> invocation at the top
level cascades:
make bootimage TARGET=t
-> Vitis side (if applicable):
Vitis/Makefile workspace TARGET=t -> bootfile TARGET=t
-> ensures Vivado XSA exists
Vivado/Makefile xsa TARGET=t
-> vivado -mode batch -source scripts/build.tcl (creates project)
-> vivado -mode batch -source scripts/xsa.tcl (synth, impl, XSA export)
-> vitis -source py/build-vitis.py ... (creates platform + app, builds)
-> python3 py/make-boot.py ... (packages BOOT.BIN / .mcs)
-> PetaLinux side (if applicable):
PetaLinux/Makefile petalinux TARGET=t
-> petalinux-create --template <zynqMP> --name t
-> petalinux-config --get-hw-description <XSA>
-> copy bsp/<board>/project-spec/* into the project
-> copy bsp/<target>/project-spec/* into the project (optional, if it exists)
-> petalinux-config --silentconfig
-> petalinux-build
-> petalinux-package boot ...
-> zip the resulting boot files into bootimages/
Per-target lock files (.<target>.lock in each Makefile’s directory)
prevent two concurrent builds of the same target from clobbering each
other.
Vivado side
Block design
The block-design scripts live under Vivado/src/bd/:
bd_mb.tcl— MicroBlaze targets (auboard).bd_zynqmp.tcl— Zynq UltraScale+ targets.mipi_locs.tcl— Tcl dictionary mapping each target to its MIPI lane placement, sourced by the family scripts.
Each family script contains per-board conditional blocks where a target needs to deviate from the family defaults — typically for clock routing, PS configuration, or PL pinout.
After sourcing the BD script, scripts/build.tcl runs
validate_bd_design -force, which triggers parameter propagation and
fills in connection-automation rules. As a result the final
implemented design may contain nets that aren’t visible in the BD TCL
source — to see the actual netlist as built, inspect the saved .bd
file under Vivado/<target>/<target>.srcs/sources_1/bd/<bd_name>/ or
use write_bd_tcl to export a complete script from an open project.
Constraints
Vivado/src/constraints/<target>.xdc contains pin assignments and any
target-specific timing constraints. Constraints common to all targets
of a given family are not factored out — each target’s XDC is
self-contained.
Build scripts
Vivado/scripts/build.tclcreates the Vivado project, adds the target’s XDC, sources the appropriatebd_*.tcl, and validates the block design. Invoked viamake project TARGET=<t>.Vivado/scripts/xsa.tclopens the existing project, runs synthesis and implementation, exports the XSA, and writes the bitstream into the implementation run directory. Invoked viamake xsa TARGET=<t>.
Both scripts check XILINX_VIVADO to confirm the installed Vivado
version matches the version_required constant at the top of the
file.
Modifying the block design
Edit the block-design script for the appropriate processor family directly. If the change applies only to some targets in the family, wrap the additions in the appropriate per-board conditional block.
Once the script is edited, delete any existing per-target Vivado
project directory (rm -rf Vivado/<target>) and re-run the Vivado
build through the Makefile:
make -C Vivado xsa TARGET=<target>
This re-creates the project, sources the modified BD script, runs
validate_bd_design, synthesises, implements, and re-exports the XSA.
Downstream Vitis / PetaLinux / boot-image steps will pick up the new
XSA on the next make at the top level.
Adding or modifying constraints
Edit Vivado/src/constraints/<target>.xdc directly. If a constraint
applies to all targets in a family, it still needs to be replicated to
each target’s XDC.
Vitis side
The standalone (baremetal) build is a camera bring-up application —
it programmes the on-FMC clock generator (IDT 8T49N24x), the HDMI-out
re-driver (DP159), the camera sensor (IMX219 / OV5640), the
frame-buffer IP, and the HDMI pipeline. The source files in
Vitis/common/src/ are grouped by device:
File pair |
Purpose |
|---|---|
|
Generic I²C helpers |
|
Clock-generator programming |
|
HDMI re-driver programming |
|
Raspberry Pi v2 camera sensor |
|
OmniVision sensor variant |
|
High-level camera initialisation |
|
Video-pipeline setup |
|
Frame-buffer IP control |
|
HDMI EDID handling |
|
HDMI PHY register definitions |
|
GPIO reset macros |
|
Platform glue and entry point |
|
Build-time configuration switches |
Layout
Vitis/
├── Makefile
├── py/
│ ├── args.json
│ ├── build-vitis.py <- Universal Vitis Python build driver
│ └── make-boot.py <- BOOT.BIN / .mcs packaging
├── common/
│ └── src/ <- Application source (see table above)
├── boot/<target>/ <- Per-target packaged boot files
└── <target>_workspace/ <- Generated Vitis workspace per target
args.json
Key fields:
bd_name— block-design name (rpi).app_name— name of the Vitis application (test_app).app_template—"None": the build driver creates an empty application project and adds source files explicitly rather than scaffolding from a Vitis template.src—"all": "common/src".combine_bit_elf—false.stack_size/heap_size—0x10000each, raised from the defaults so the camera-bring-up code has room.
Modifying the standalone application
Edit Vitis/common/src/*.c (or .h) directly. The next make -C Vitis bootfile TARGET=<t> rebuilds the application against the
existing platform; if you’ve changed the hardware (XSA) you’ll need a
fresh workspace (make -C Vitis clean TARGET=<t> first).
PetaLinux side
BSP composition
The PetaLinux project for a given target is composed at build time from up to two BSP fragments copied into the target’s project directory:
A board BSP at
PetaLinux/bsp/<board>/— always applied. Provides board-specific kernel and U-Boot configuration, the system device-tree fragment for the board, theinitcamsstartup scripts (recipes-apps/initcams/), and any board-specific patches.An optional per-target BSP overlay at
PetaLinux/bsp/<target>/— applied only if the directory exists (thecpis prefixed with-in the Makefile so a missing directory is not an error). Currentlyzcu102_hpc1/is the only such overlay, used to override the basezcu102/BSP for thezcu102_hpc1target.
There is no port-config overlay here; the structure of the imaging pipeline doesn’t vary per port the way the Ethernet-FMC ports do.
Layout of a board BSP
PetaLinux/bsp/<board>/project-spec/
├── configs/
│ ├── config <- petalinux-config: bootargs, rootfs, hostname
│ ├── rootfs_config <- petalinux-config -c rootfs: included packages
│ ├── init-ifupdown/
│ │ └── interfaces <- /etc/network/interfaces
│ └── busybox/
│ └── inetd.conf
└── meta-user/
├── conf/
│ ├── user-rootfsconfig <- declares additional rootfs config options
│ ├── petalinuxbsp.conf
│ └── layer.conf
├── recipes-apps/
│ └── initcams/ <- Camera-init / display-camera shell scripts
│ ├── initcams.bb
│ └── files/
│ ├── init_cams.sh
│ └── displaycams.sh
├── recipes-bsp/
│ ├── device-tree/
│ │ ├── device-tree.bbappend
│ │ └── files/
│ │ └── system-user.dtsi <- board-specific DT additions
│ ├── u-boot/
│ │ ├── u-boot-xlnx_%.bbappend
│ │ └── files/
│ │ ├── bsp.cfg
│ │ ├── platform-top.h
│ │ └── *.patch
│ └── embeddedsw/ <- (zcu104 only)
│ ├── fsbl-firmware_%.bbappend
│ └── files/
│ └── zcu104_vadj_fsbl.patch
├── recipes-kernel/
│ └── linux/
│ ├── linux-xlnx_%.bbappend
│ └── linux-xlnx/
│ └── bsp.cfg <- kernel Kconfig additions
└── recipes-modules/ <- (pynqzu only)
└── wilc/ <- WiFi driver source patches
Adding a package to the root filesystem
Append the new option to
bsp/<board>/project-spec/configs/rootfs_config.If the package is not in the default
petalinux-config -c rootfsmenu, also append a declaration line tobsp/<board>/project-spec/meta-user/conf/user-rootfsconfig.If the package is not provided by an existing meta-layer, add a recipe under
bsp/<board>/project-spec/meta-user/recipes-apps/<package>/<package>.bb.
Adding a kernel config option
Append the option to
bsp/<board>/project-spec/meta-user/recipes-kernel/linux/linux-xlnx/bsp.cfg.
Adding a device-tree fragment
Edit
bsp/<board>/project-spec/meta-user/recipes-bsp/device-tree/files/system-user.dtsi.
If you add new files, ensure they are listed in SRC_URI:append in
device-tree.bbappend.
Adding a kernel patch or out-of-tree driver
Drop the patch file into
bsp/<board>/project-spec/meta-user/recipes-kernel/linux/linux-xlnx/.Add
SRC_URI:append = " file://<your-patch>.patch"torecipes-kernel/linux/linux-xlnx_%.bbappend.
For full out-of-tree modules, add a recipe under
recipes-modules/<modname>/ (see bsp/pynqzu/.../recipes-modules/wilc/
as a working example — it builds the WILC WiFi driver and applies a
PYNQ-ZU-specific patch).
Modifying U-Boot
The same pattern as the kernel, under
bsp/<board>/project-spec/meta-user/recipes-bsp/u-boot/. bsp.cfg
adds U-Boot Kconfig options; platform-top.h overrides the U-Boot
platform header; patches are listed in SRC_URI:append in
u-boot-xlnx_%.bbappend.
Modifications layered on the stock BSPs
The board BSPs in this repository started as the corresponding stock AMD reference BSPs and have been modified in the following ways. This list is the answer to “what would I lose if I overwrote the BSP with the stock one?” — it is what to re-apply if you ever do that.
All BSPs
Camera / userspace
Hostname / product name set in
configs/configviaCONFIG_SUBSYSTEM_HOSTNAMEandCONFIG_SUBSYSTEM_PRODUCT.SD-card root filesystem configured in
configs/config:CONFIG_SUBSYSTEM_ROOTFS_EXT4,CONFIG_SUBSYSTEM_SDROOT_DEV,CONFIG_SUBSYSTEM_USER_CMDLINE(withcma=raised for the video frame buffers, andxlnx_mixer.connect_drm_bridge=1to select the DRM-bridge code path in the Video Mixer driver — see kernel patches below).Custom
system-user.dtsiwith device-tree nodes for the RPi-camera I²C bus, the camera sensors, the clock generator, and the frame-buffer / video pipeline.recipes-apps/initcams/providing theinit_cams.shanddisplaycams.shstartup scripts (init the cameras, bring up the display pipeline).v4l-utilsandyavtapackages added torootfs_configunder the project customizations marker.U-Boot patch
0001-ubifs-distroboot-support.patch.
2025.2 DP / Video Mixer pipeline fixes
In Vitis/PetaLinux 2025.2, the kernel DRM stack and the SDT BSP
generator both got stricter in ways that break the v_mix → dpsub
“live video” pipeline used by displaycams.sh. The following
modifications are layered on every ZynqMP BSP in this repo to keep
DP working. They are all gated to the v_mix DRM-bridge code path,
so they are no-ops on any board that doesn’t use it.
Device-tree additions to
system-user.dtsi:Remove the auto-generated
dp_port: port@0block from inside&zynqmp_dpsub— the 2025.2 dpsub driver expects port endpoints inside the generatedports { … }subnode, not as a strayport@0at the dpsub root.Wire
&live_video(port@0 of dpsub’sports) endpoint to the v_mix CRTC port.Wire
&out_dp(port@5 of dpsub’sports) endpoint to a new top-leveldp-connectornode — the driver requires some sink on the DP output side or it fails probe withDP output port not connected.xlnx,bridge = <&display_pipeline_v_tc_0>;andxlnx,video-format = <2>;added to&display_pipeline_v_mix_0— the 2025.2 xlnx-mixer driver requires both (otherwise probe fails withvtc bridge property not present/'xlnx,video-format' property missing). The value2selects YUV422, which matches the NV16 primary layer.
Kernel patches in
recipes-kernel/linux/linux-xlnx/, registered inlinux-xlnx_%.bbappend:0001-drm-xlnx-mixer-fix-NULL-deref-in-connector_init.patch— fixes a kernel NULL deref at probe time inxlnx_mix_connector_init()and fixes shutdown-time use-after-free ordering by switching the encoder allocation fromdevm_kzalloc(&mixer->master->dev, …)(wheremixer->masteris NULL during bind) todrmm_kzalloc(mixer->drm, …), and fromdrm_simple_encoder_init()todrmm_encoder_init()(so the encoder cleanup is registered as a drm_managed action and runs in the right LIFO order during teardown).0002-drm-xlnx-drv-drop-mode_config_cleanup-on-unbind.patch— removes the manualdrm_mode_config_cleanup(drm)call fromxlnx_unbind(). The 2025.2drm_bridge_connector_init()registers the connector via drm_managed, and callingdrm_mode_config_cleanupmanually beforedrm_dev_putcauses a double cleanup of the connector (ida_free called for id=0 which is not allocated, then NULL deref indrm_connector_cleanup_action).0003-drm-xlnx-drv-disable-vblank-before-cleanup-on-shutdown.patch— addsdrm_atomic_helper_shutdown(drm)at the start ofxlnx_unbind()so vblank is disabled before drm_managed teardown runs. Without this, shutdown emits a non-fatal but noisydrm_WARN_ON(vblank->enabled && …)indrm_vblank_init_release.
xlnx_mixer.connect_drm_bridge=1added toCONFIG_SUBSYSTEM_USER_CMDLINE. This kernel module parameter selects the new DRM-bridge code path inxlnx_mixer.c(the legacy path tries to look up the dpsub viaxlnx,disp-bridge, but the 2025.2 dpsub no longer registers as anxlnx_bridge— so that lookup fails, the mixer’s encoder/connector never get set up, andmodetestreports zero connectors).
ZCU104 BSP
FSBL patch
zcu104_vadj_fsbl.patchinrecipes-bsp/embeddedsw/files/, registered viafsbl-firmware_%.bbappend. The ZCU104 does not expose VADJ control to user logic, so the FSBL is patched to program the on-board IRPS5401 PMBus regulator to 1.8V before the FMC PHYs come out of reset.27 MHz
dp_phy_refclkfixed-clock declared insystem-user.dtsi, with&psgtr { clocks = <&dp_phy_refclk>; clock-names = "ref3"; };overriding the auto-generated psgtr node. See ZCU106 BSP below for the rationale — this is the same fix.
ZCU106 BSP
27 MHz
dp_phy_refclkfixed-clock insystem-user.dtsi, wired to&psgtr { clocks = <&dp_phy_refclk>; clock-names = "ref3"; };. The auto-generatedpcw.dtsienables&psgtrand tells the dpsub to consume refclk index 3 (xlnx,phys = <&psgtr X 6 X 3>), but does not declare any clocks on the psgtr node itself. As a result the 2025.2 psgtr driver’sxpsgtr_xlate()rejects refclk 3 atdevm_phy_gettime withInvalid reference clock number 3, and the dpsub fails to probe (failed to get PHY lane 0). Declaring a fixed-clock at the rate FSBL programs the on-board Si5341 to emit on the DP ref-clock pin (27 MHz) makes the psgtr driver’s SSC lookup succeed.
ZCU102 BSP
Used as the base BSP for both the
zcu102_hpc0target and (overlaid bybsp/zcu102_hpc1/) thezcu102_hpc1target.27 MHz
dp_phy_refclkfixed-clock insystem-user.dtsi, same fix as documented under ZCU106 BSP. The ZCU102 has the same auto-generated psgtr-without-clocks problem and needs the same workaround.
UltraZed-EV (uzev) BSP
CONFIG_YOCTO_MACHINE_NAME="zynqmp-generic"inconfigs/config(the UZ-EV is not a stock Xilinx eval board).SD-card device set to
/dev/mmcblk1p2rather than the ZynqMP defaultmmcblk0p2.PRIMARY_SD_PSU_SD_1_SELECT=yto route the boot SD interface through PSU SD1 instead of SD0.Custom
system-user.dtsiwith UZ-EV-specific peripheral configuration. Note: uzev already declaresgtr_clk3as a 27 MHz fixed-clock and assigns it to&psgtrclock-names = "ref3", so it does not need thedp_phy_refclkworkaround that ZCU104 / ZCU106 / ZCU102 use — the dpsub probe succeeds on uzev out of the box.
PYNQ-ZU BSP
WILC WiFi driver overlay under
recipes-modules/wilc/with patch0001-wilc-pynqzu.patch, adding support for the WILC1000 module fitted on the PYNQ-ZU carrier.Like uzev, pynqzu already declares its DP refclk (
dp_clkat “ref1”) in its own&psgtr { … }block, so it does not need thedp_phy_refclkfixed-clock workaround.
zcu102_hpc1 per-target overlay
Per-target BSP at
bsp/zcu102_hpc1/(in addition to the basebsp/zcu102/) that overrides device-tree nodes to wire the camera pipeline through the HPC1 connector instead of HPC0. All other modifications (kernel patches, cmdline, dpsub/v_mix dtsi fixes) come frombsp/zcu102/unchanged via the Makefile’s two-stagecp -R bsp/$(TARGET_BOARD)/project-spec+cp -R bsp/$(TARGET)/project-spec.
Where build outputs land
Path |
Contents |
|---|---|
|
Vivado project. |
|
Bitstream. |
|
Per-target Vivado build logs. |
|
Per-target Vitis workspace. |
|
Packaged Vitis boot files ( |
|
PetaLinux project. All Yocto build state lives here. |
|
|
|
PetaLinux build log. |
|
Per-target zipped boot files. |
None of these directories are committed to the repository.