Using Vitis Embedded Platforms
Writing Images to the SD Card
You can use the Vitis unified software platform
accelerated flow to target an embedded platform. This facilitates packaging and creating
an SD image with RootFS as an EXT4 partition, because initramfs
uses
Double Data Rate SDRAM (DDR SDRAM) for file system storage. It limits the real usable
DDR memory for Linux kernel and applications when the file system size increases. It
cannot retain RootFS changes after reboot.
- Prepare an SD card binary image file with FAT32 partition for boot and EXT4 partition for RootFS.
- Write SD card images to the SD card. You can use various tools to
do this, such asEtcher on Windows or
dd
command on Linux.Note: Refer to Xilinx Answer Record 73711 for detailed information about these tools.
There are various ways to prepare an SD card image. You can use the v++ package tool to generate it, or use an open source tool. A pre-built SD card image is also provided in the base platform packag, which you can download from the Vitis Embedded Platforms download page.
The pre-built SD card image (pre-built/sd_card.img) has two partitions:
- FAT32 partition
- 1 GB size, initialized with the kernel image provided by common Linux components.
- EXT4 partition
- 2GB size, initialized with RootFS provided by common Linux components.
- - pre-built/BOOT.BIN
- - boot.scr, system.dtb, init.sh and platform_desc.txt in the xrt/image directory
The pre-built SD card image can be used for evaluation usage and by Windows users. It does not require Vitis or PetaLinux to be installed.
v++ --package
with Ext4 partition is
not supported on Windows.XILINX_XRT
and copies the platform_desc.txt
file to /etc/xocl.txt. You must manually run this after Linux boots
up before running any acceleration applications.Packaging Images
A new packaging stage is added to the Vitis™ compiler (v++) in 2020.1.
In 2019.2, v++ had two stages:
-c
or--compile
to compile acceleration kernels-l
or--link
to link acceleration kernels with platform logic.
In the 2020.1 release, the new stage is -p
or
--package
. The command V++ --package
generates both
boot.bin and the sd_card image files.
The --package
command supports both initramfs and Ext4 rootfs images.
In the Vitis IDE, the package stage is automatically called during the build process. You can add additional package options in the system project detail page by double-clicking the .sprj file. Package log files, command configuration files, and output files are stored in the package directory under the Emulation-SW, Emulation-HW or Hardware directories.
In command line mode, you can pass in package options as v++ options or
configuration files. For more detailed information about the v++
--package
option, refer to the Vitis Compiler Command or the
v++ -help
command, and the Xilinx Vitis Acceleration Examples GitHub repository.
Packaging Images with Ext4 rootfs in the Vitis IDE
ext4
rootfs
is provided to the Vitis IDE,
the generated sd_card.img file includes the
following:- The
xclbin
file for PL kernel - The host application
- The Linux kernel image
- The device tree
- The u-boot configuration file: boot.scr
- The platform initialization script init.sh and platform name in platform_desc.txt. Note: init.sh sets up the environment variable
XILINX_XRT
and copies the platform_desc.txt file to /etc/xocl.txt. This must be executed manually. - The
ext4 rootfs
in the Ext4 partition
To package an image with Ext4 rootfs in the Vitis IDE:
- Select Vitis IDE. to create a new application project in the
- Select the platform (for example,
xilinx_zcu102_base_202010_1
), and click Next. - Provide a name for the application project (for example,
vadd
) - For the system project selection, select Create New.
- For the target processor, select the processor that can run the
Linux domain (for example,
psu_cortexa53 SMP
), and click Next. - In the domain page, select xrt and provide the following
application settings:
- Sysroot path: (for example, xilinx-zynqmp-common-v2020.1/sysroots/aarch64-xilinx-linux)
- Root FS (for example, xilinx-zynqmp-common-v2020.1/rootfs.ext4)
- Kernel Image (for example, xilinx-zynqmp-common-v2020.1/Image)
- Click Next.
- Select an application template (for example, Vector Addition).
- Select the system project and click the Build () button to build the project.
- Verify that the sd_card.img file was created in the package directory under the Emulation-SW, Emulation-HW or Hardware directory.
Packaging Images with initramfs rootfs in the Vitis IDE
initramfs rootfs
(rootfs.cpio) is provided to
the Vitis IDE, the generated sd_card.img
includes the following:- The xclbin file for PL kernel
- The host application
- The Linux kernel image
- The device tree
- The boot.scr
- The init.sh, platform_desc.txt, and
initramfs
rootfs in FAT32 partition
- In the Vitis IDE, select to create a new application project.
- Select the platform (for example,
xilinx_zcu102_base_202010_1
), and click Next. - Provide the application project name (for example, vadd).
- Select Create New.
- For the target processor, select the processor that can run the
Linux domain (for example,
psu_cortexa53 SMP
), and click Next. - In the Domain page, select the
xrt
domain and provide the application settings as follows:- Sysroot path (for example, your_linux_component_dir/sysroots/aarch64-xilinx-linux)
- Root FS (for example, your_linux_component_dir/rootfs.cpio.gz.u-boot)
- Kernel Image (for example, your_linux_component_dir/Image)
- Click Next.
- Select the application template (for example, Vector Addition).
- Select the system project and click the Build () button to build the project.
- Verify that the sd_card.img file was created in the package directory under the Emulation-SW, Emulation-HW or Hardware directory.
Configuring the PL Kernel in DFX Platforms and Non-DFX Platforms
The Xilinx Dynamic Function eXchange (DFX)
feature can change some blocks of PL function while keeping other areas of PL working,
allowing you to configure PL kernels on the fly. To use the DFX feature, when the
xclbin
file is generated, configure it with your
host application. The new kernels in the xclbin take effect immediately without
requiring a reboot.
For platforms without DFX features, PL kernel must be packed into boot.bin. Copy it to the FAT32 partition on your SD card
and reboot the system. Then, configure the xclbin
file
with your host application.
The xclbin
file contains both bit files for PL kernel and metadata to
describe these kernel features and connections. Programming the xclbin
file on DFX platforms loads the bit file and metadata; programming on non-DFX platforms
only loads the metadata.
Running an Acceleration Application on the Board
If you are using the common Linux components that are provided by Xilinx do the following to run an acceleration application on the platform:
- To the SD card, write the sd_card.img generated by the Vitis compiler command
v++ --package
. - Boot the board.
- Run the command
cd /mnt/sd-mmcblk0p1/
. - Run the command
source init.sh
. - Run acceleration application. For example, for vector addition, run
./vadd ./binary_container_1.xclbin
.
init.sh
. This command does the following:- It sets the environment variable
XILINX_XRT
to/usr
to allow the application to find the XRT environment. - It copies
platform_desc.txt
to/etc/xocl.txt
to inform XRT which platform it is running on.
init.sh
may introduce security breaches, common Linux rootfs
did no run init.sh
by default.Software Package Management in PetaLinux rootfs
The package management feature is new for the Vitis 2020.1 release. All PetaLinux rootfs software packages are hosted on https://petalinux.xilinx.com/sswreleases/rel-v2020/feeds. You can install these software packages to rootfs when running Linux on the target board as long as the board has Internet access.
To use this feature, you must enable package manager DNF in rootfs. The rootfs in Xilinx-provided pre-built Linux components provides the DNF package management features by default.
Here are some basic functions you can run with the DNF package manager.
- Listing available packages
- Use the command
dnf repoquery
. - Installing packages from a Xilinx repository
- Use the command
dnf install <pkg name>
. - Installing packages from a local package file
- Use the command
dnf install <pkg file name>
. - Installing packages to sysroot
-
When packages are installed on the rootfs of a running board, target has the latest binaries and libraries. When cross compiling on host is needed, these libraries must be added to host side sysroot.
A
sysroot_overlay
script is provided in XRT to extract RPM and update sysroot. This script will extract rpm libraries and include a file update in sysroot.Besides XRT, this script supports all RPMs for various software packages.
- Getting the sysroot_overlay.sh
- Use the command
wget https://github.com/Xilinx/XRT/blob/master/src/runtime_src/tools/scripts/sysroots_overlay.sh
.
sysroot
command description
is:./sysroots_overlay.sh --sysroot --rpms-file
--sysroot
is the sysroot to be overlaid.--rpms-file
is the rpms file that contains the RPM file paths to be overlaid.
Examples
The following example is a command to install updated XRT to the common sysroot:
./sysroots_overlay.sh -s sysroots/aarch64-xilinx-linux/ -r $PWD/rpm.txt
This example shows the contents of an rpm.txt file:
./xrt-dev-202010.2.6.0-r0.aarch64.rpm
./xrt-202010.2.6.0-r0.aarch64.rpm
This script works only for the local RPMs. You must download RPMs to your host machine to install them to the common sysroot.