linux_kernel
Last updated
Last updated
The U-Boot bootloader and Linux kernel are built from git repositories provided by altera-opensource on github. See RocketBoards.org for full details.
Directory | Target Development Board |
---|---|
The build instructions from Altera:
https://www.rocketboards.org/foswiki/Documentation/BuildingBootloaderCycloneVAndArria10
...involve quite a few manual steps. These steps have mostly been automated via a Makefile, with some additional changes to customize the kernel as needed for the NDI Advanced SDK (enable UIO devices and create custom device-tree nodes).
The Makefile will checkout the source directories, patch and configure as required, then build the files required to boot and create a uSD image. Warnings about watchdog and timer drivers are expected while building U-Boot from the Altera released sources can be ignored.
The configuration snippet uio.fragment
enables the required uio kernel modules.
The patch file 0001-NewTek-Altera-NDI-device-tree-entries.patch
adds the required device-tree nodes for logic in the FPGA fabric. See the instructions from Altera for full details:
https://www.rocketboards.org/foswiki/Documentation/HOWTOCreateADeviceTree
If you follow the RocketBoards instructions for generating the Cyclone-V boot files, the FPGA will not be programmed by default. The provided Makefile builds a u-boot.scr file which is executed by the default Altera U-Boot bootcmd. This script programs the FPGA prior to loading the Linux kernel and device-tree.
All steps below require you have an appropriate version of the Xilinx PetaLinux tools installed on your development machine. Refer to Xilinx UG1144 "PetaLinux tools Documentation: Reference Guide" for detailed instructions on installing PetaLinux and the required prerequisites.
Example Petalinux projects for the Digilent Zybo Z7-20 and Xilinx ZCU104 are provided as prebuilt Xilinx support archives (XSA files from Vivado), build scripts and a Makefile to allow end users to regenerate complete projects and boot images without being required to download large archives or binary files.
For example:
The following boards and NDI configurations are supported (see make help
for a list of available targets):
Building SD card images, containing a root filesystem, application software, and operating system, requires that Petalinux projects in these locations be created so that the kernel, device tree, and bootloaders can be found. See ../uSD_os/README.md
for details on how this should be performed.
Generating example designs for all supported platforms requires a significant amount of disk space (at least 150GB) so it is recommended that users only build example designs for their platform of choice. Additionally, PetaLinux 2022.1 must be installed per the instructions detailed in Xilinx UG1144, "PetaLinux Tools Documentation: Reference Guide". Among other things, the petalinux tools must be installed in a location that is writable by the current user. This location needs to be provided prior to running make
via the PETALINUX_ROOT
environment variable.
If you add or remove any Xilinx IP blocks with Linux kernel drivers, the PetaLinux project needs to be updated to incorporate the changes. The easiest way to do this is simply follow the directions for "Building a new project from scratch", below, skipping the petalinux-create command. This will complete much faster than the initial build, since most of the build artifacts are cached and can be reused.
The minimum process to update a project with new hardware definitions is:
Export the hardware platform
In Vivado, select the File -> Export -> Export Hardware
menu option and make sure that the bitstream is included in the exported Xilinx support archive.
Import the new hardware definition and reconfigure the project:
Reconfigure bootloader or kernel if desired
Rebuild the device tree and bootloader
Package the output products
This will yield updated files in projectdir/images/linux
, notably the BOOT.BIN and device tree, which can then be copied to the boot medium.
If you update the FPGA bit file with hardware changes that do not alter the automatically generated device-tree, the update process is much simpler. Simply rebuild the boot files using the updated bit file:
If you update the system-user.dtsi file, the system device tree needs to be updated and the changes need to be incorporated into the boot loader.
To modify an existing example design after it is generated, use the following general procedure:
Once new PetaLinux output products have been created in images/linux
, new boot images can be built from scripts in the ../uSD_os
directory.
If you are not using one of the supported development boards you may need to build a PetaLinux project from scratch. Full details for working with PetaLinux can be found in Xilinx UG1144 "PetaLinux Tools Documentation: Reference Guide". A brief summary of one possible work flow is provided below.
Create a Vivado project for your target board or component. Note that during project creation, the option of a Vitis extensible platform should not be selected. Vitis is not required at any point in this design flow.
Build the hardware project in Vivado
Export the hardware platform and include the bitstream in the exported support archive (i.e., the XSA file).
Create a new PetaLinux project for the target platform
If your design needs required a board support package (BSP) then project creation will need to reference this via the --source
argument.
Configure the Petalinux project and import the hardware definition, usually through a command of the form
Customize the PetaLinux project (optional)
Modify the system-user.dtsi to reflect the FPGA hardware or other device tree changes necessary
Xilinx IP cores should be automatically added to the device tree, but details for any custom FPGA logic must be added manually. Details will depend on the specifics of your FPGA project. Refer to the existing projects for examples:
Some additional information can be found by looking at the device tree source files that ship with the example design in the device-tree
directory
Build the PetaLinux project
If the build (or the configure) commands fail, attempt to run the build again and examine the log files.
Create boot files
Generally, a BOOT.BIN needs to be created that contains the FSBL, PMU firmware (for the US+), second stage bootloader (e.g., U-Boot) and a device tree. The specific command options needed will depend on the configuration options needed for the target platform. The following example is for a uSD image with the boot loader programming the FPGA prior to booting the Linux kernel:
The petalinux-build
step will occasionally fail when performing a full build from scratch. Simply re-run the petalinux-build
command and the build will continue. Sometimes it is necessary to re-run the petalinux-build
step several times.
If the petalinux-build
step repeatedly fails in the same place, examine the log files as there may be missing dependencies.
Output files will be in the projectdir/images/linux/
directory.
Changed
Reset version numbering to align with software SDK
Update Makefile to use new exported FPGA output file names
Changed
Migrated all PetaLinux projects from 2019.2 to 2022.1
Kernel version for Xilinx projects changed to 5.15.19
All Zynq-7000 and UltraScale+ projects are automatically generated via make and bash scripts.
Petalinux project configuration and device tree modifications automatically incorporated
Added
SoCKit updated to Quartus 22.1
Added
Initial support for Arria-10 SoC Development Kit
ndiname device-tree node for use as NDI machinename
Changed
Removed deprecated Petalinux 2018.1 projects
Move reserved memory regions in Zybo-Z7-20-Lite device-tree
Added
Initial support for Arty-Z7-20
Fixed
R5 remoteproc device-tree entries for ZCU104-Dec project were broken
Added
Added prebuilt boot files required to generate uSD images
Changed
Updates for NDI v4.5
Petalniux projects updated to 2019.2
NDI Decode support
Added
Petalinux 2019.2 project for ZCU104 ndi_encode
Changed
Modified Zybo boot arguments to support new partition layout
Updated pre-compiled files with latest FPGA bit files
Fixed
Added missing pre-comiled U-Boot files for ZCU104 projects
Fixed
Updated pre-compiled files to allow update of the various FPGA bit files (NDI Encode, Encode-Lite, and Decode) without rebuilding from scratch
Added
Updates for NDI v4.0
Changed
Updated system-user.dtsi files to support NDI Decode
Updated pre-compiled files
Fixed
Missing dash in --get-hw-description
petalinux command
Added
Added pre-compiled boot files, allowing update of the FPGA bit file without recompiling PetaLinux from scratch
Added tracking logic to system-user.dtsi
Changed
Tally LEDs default to on at boot instead of the heartbeat trigger
Unused LEDs set to cpu and uSD trigger
Changed
Update boot.sh scripts to reference bit file in src/fpga/<project>
directories
Removed
FPGA bit files (migrated to src/fpga/
)
Hardware export directories (migrated to src/fpga/
)
Added
Hardware export sdk directories from Vivado
Changed
Projects updated with latest FPGA hardware export
Device-tree entries added for tally LEDs
Initial version
Configuration | Contents |
---|---|
a10-socdk
Arria-10 SoC Development Kit
SoCKit
Arrow/Terasic SoCKit
Arty-Z7-20-Enc
NDI encoder for the Digilent Arty Z7-20
Zybo-Z7-20-Enc
NDI encoder for the Digilent Zybo Z7-20
Zybo-Z7-20-Enc-Lite
NDI encoder for the Digilent Zybo Z7-20 with 16-bit SDRAM
Zybo-Z7-20-Dec
NDI decoder for the Digilent Zybo Z7-20
ZCU104-Enc
NDI encoder for the Xilinx ZCU104
ZCU104-Dec
NDI decoder for the Xilinx ZCU104