Embedded Hardware Accelerator with Xilinx Vitis: Part 2: Create a Linux-based Platform

Mohammad Hosseinabady
2 min readNov 15, 2019
Source: Wikipedia

In the previous blog in this series, I briefly explained the concept of platform-based design in the context of embedded FPGA. And the problems that it is going to address. In this blog, I go through different parts of the Xilinx Vitis system platform. The platform encapsulates the hardware details, the Linux operating system kernel. It also contains the Xilinx runtime system and related libraries.

A Vitis platform is used for two main reasons:

  • Developing applications and related libraries
  • Generating hardware and software configuration containing the developed applications

Hence, a platform consists of two types of files and configurations. The first group acts like templates that should be modified during the application development. And the second group is directly copied into the embedded system hardware.

Among the first group is a hardware design template that contains all the base components and interfaces. This base design should be prepared a priori using Xilinx Vivado. Os libraries and drivers fit into the second group.

Creating a platform consists of three main steps:

  • Preparing the basic underlying hardware and interfaces
  • OS and libraries configuration and preparation
  • Integrating

In the first step, the Xilinx Vivado toolset is used to generate the basic hardware template. This design should at least contain the Zynq processor, clock, and interrupt resources. It also should define the interfaces through which the final design communicates with the system. A zip file with .xsa extension encapsulates all the generated files, bitstream, and configurations.

In the second, the Xilinx PetaLinux toolset is used to configure and generate the Linux OS, device tree, and all the required drivers. For this purpose, the created PetaLinux project is configured using the generated .xsa file in the previous step. Then some of the Linux kernel parameters should be defined or modified. The proper device tree modification should also be added to the PetaLinux project.

The last step, which uses the Xilinx Vitis environment, integrates all files into a package to be used by designers.

For a step-by-step tutorial generating a Linux-based Platform for Ultra96v2 board, please visit here.

Originally published at http://highlevel-synthesis.com on November 15, 2019.

--

--

Mohammad Hosseinabady

Designing digital systems and accelerating functions with HLS for FPGAs are fun.