Skip to content

Yocto project layer for custom socfpga hardware bits

License

Notifications You must be signed in to change notification settings

VCTLabs/meta-user-aa1

Repository files navigation

Meta-user-aa1

This repository contains a Yocto layer to generate the Linux reference design for the following Enclustra SoC module family:

The reference design is compatible with following base board:

The HW reference design files for Mercury+ AA1 ST1 module and baseboard live here:

Dependencies

This layer depends on meta-enclustra-socfpga and OE core:

  • URI: https://github.com/enclustra/meta-enclustra-socfpga/tree/v2023.1
  • branch: v2023.1
  • layer: meta-enclustra-module
  • URI: git://git.openembedded.org/openembedded-core
  • branch: [same one as checked out for this layer]
  • URI: git://git.openembedded.org/meta-openembedded/meta-oe
  • branch: [same one as checked out for this layer]

The primary indirect dependency is Quartus XX Std/Pro, where XX and type depends on the SoC and u-boot version. Other versions may work with a given project, but vendor support will most likely expect their published reqs, eg, the versions mentioned here require the following:

Processor                 SOCFPGA Device   Intel Quartus Pro   Intel Quartus Std
--------------------------------------------------------------------------------
Dual-core ARM Cortex-A9          Cyclone V        N/A                 22.1
                                 Arria 10         23.1                N/A

All arm64 devices require Intel Quartus Pro.

Custom exported binaries

Each enclustra (socfpga) reference design gets a Yocto machine definition, however, user projects should select one of the base machines provided by the enclustra module layer => meta-enclustra-module (one of the layers provided in meta-enclustra-socfpga). Given the current AA1/ST1 hardware, the correct (yocto) machine is me-aa1-270-2i2-d11e-nfx3.

The user project must provide a zipfile containing the build files from the desired Quartus project, ie, 1) the bitstream .sof must be converted to the split .rbf files expected by Arria10 devices, and 2) the handoff directory must contain the hps.xml project definitions. Each of the reference design projects contains three file trees, one for each boot mode, and the corresponding user built projects should mimic this layout by providing at least one of these file trees.

For example, a user project using the QSPI boot mode would use the following layout:

$ tree -l 3 qspi/
qspi/                         # directory name matches boot mode: qspi, emmc, sdmmc
├── bitstream.core.rbf        # split bitsream required for Arria10
├── bitstream.periph.rbf      # second part
├── hps_isw_handoff           # required handoff directory
│   ├── emif.xml
│   ├── hps.xml
│   └── id
├── Mercury_AA1_pd.sopcinfo   # additional files are okay
└── Mercury_AA1_ST1.sof

2 directories, 7 files

To produce the "source" zipfile for the exported_binaries recipe, zip the above directory tree using the machine name in upper case prepended with the bootmode in lower case:

$ zip -r qspi_ME-AA1-270-2I2-D11E-NFX3.zip qspi/

Adding this layer to your build

In order to use this layer, you need to make the build system aware of it.

Assuming the layer exists at the top-level of your build tree, you can add it to the build system by adding the location of this layer to bblayers.conf, along with any other layers needed. e.g.:

BBLAYERS ?= " \
  /path/to/oe-core/meta \
  /path/to/meta-openembedded/meta-oe \
  /path/to/layer/meta-user-aa1 "

Arria10 yocto and handoff references

Note that handoff process and tooling has changed several times in recent versions of quartus and u-boot-socfpga. The handoff names are different for different SoCs but this is primarily about Arria10 only. User configuration bits have mainly been moved to u-boot and the linux kernel configs. Each vendor has slightly different usage depending on specific hardware, where enclustra requires specific filenames for the user DTS files and combines the split FPGA bitstream files via FIT image.

Minimal user layer

For Arria10 the inputs are the following:

  • hps.xml - system definition from quartus project
  • <prj_name>.sof - FPGA bitstream from quartus project
  • enclustra-user.dts - user-defined kernel and u-boot devicetree files
  • user-defined kernel and u-boot configs
  • uses machine definition from the module layer

Prepare inputs for u-boot

The first input is converted to a u-boot header file using a script from the u-boot source, whereas the second file must be converted to the .rbf bitstream format. For Arria10 the latter is split into 2 files for core and peripheral setup.

To achieve the latter, run the quartus command shell and then something like the following to generate both .rbf files:

$ quartus_cpf -c --hps -o bitstream_compression=on output_files/<prj_name>.sof output_files/<prj_name>.rbf

The above should create two files named <prj_name>.core.rbf and <prj_name>.periph.rbf

Boot mode switches

Note this is condensed from the reference design doc:

assets/st1_base.png

The boot mode switches are shown in the above image as CFG (where only the first 2 affect boot mode directly). Confirm the ON direction on your board; use a magnifier if necessary. The following boot mode options are extracted from the reference design documant link.

sdmmc:CFG = [1: OFF, 2: OFF, 3: ON, 4: ON] (factory default)
emmc:CFG = [1: ON, 2: ON, 3: ON, 4: ON]
qspi:CFG = [1: ON, 2: OFF, 3: ON, 4: ON]

Also note boot mode is used as a configuration variable for both the HW design build and the bootloader images, thus the project must be (re)built for each boot mode in order to generate the full zipfile for the "exported_binaries" Yocto recipe.

License

All metadata is MIT licensed unless otherwise stated. Source code included in tree for individual recipes is under the LICENSE stated in each recipe (.bb file) unless otherwise stated.

Releases

No releases published

Packages

No packages published