Table of Contents
Table of contents generated with markdown-toc
This Google Document is a draft for development and review. Once reviewed, the doc will be made available on Phabricator on the trustedfirmware.org website where additional content will be added and reviewed.
This guide briefly explains how to use and contribute to the Trusted Firmware project https://www.trustedfirmware.org/, in particular the Trusted Firmware A https://www.trustedfirmware.org/projects/tf-a/ and Trusted Firmware M https://www.trustedfirmware.org/projects/tf-m/.
As a community project, help in all areas is greatly appreciated. If while using this document, issues are found or content can be improved, please follow the steps in this section to add your improvements to this document:
Note the steps were validated using Ubuntu 20.4. Other versions/OS's may need to be adjusted for.
ci/tf-ci-users-guide
repository and click on it. You will land on the admin page for the TF CI Users Guidessh-keygen
command in your ~/.ssh directory to create a new keypair. Note you can use an existing key if you already have one.id_rsa.pub
key.New SSH Key
field, paste the id_rsa.pub
key into the entry, give it a name and save it.You are now ready to set up your local environment
sudo apt-get update sudo apt install git sudo apt install git-review
(This may install any required dependencies automatically.)
git config
to get your user.name, user.email, etc.SSH
tab.Clone with commit-msg hook
field. This will be used on your local machine to clone the document that you can edit.git add docs/index.md
to prep the modified file for the Gerrit review / PR.git commit -s
that will take you to an editor for sign-off. Add your comment, save, and exit.git review
to submit the pull request for the review to Gerrit.The Trusted Firmware core projects, TF-M and TF-A, are both open source projects and both share the same way to accept user contributions. Code changes, commonly known as patches or patchsets, are git-tracked so once the corresponding project is cloned, all content (history of previous patches which now are commits) is available at the user's machine.
TF projects use Gerrit https://review.trustedfirmware.org/ as a centralized system to push, update, review and review patches. Contributors must push their patches to gerrit, so CI and reviewers can see the proposed change. One can see the open ones at https://review.trustedfirmware.org/q/status:open.
Once a patch is approved, one of the core maintainers merges it to the main branch (master) through Gerrit. The same cycle is repeated for every patch, where a patch series may be merged in one step.
Mailing lists https://lists.trustedfirmware.org/mailman/listinfo/tf-a https://lists.trustedfirmware.org/mailman/listinfo/tf-m are used to communicate latest news and also it is the main channel for users to post questions or issues, so it is a good idea to subscribe to these. Note, the mailing lists are not intended for patch reviews, so patches should go into Gerrit and news/questions/issues through the mailing lists.
Once the project is cloned, there are some two extra steps to setup gerrit properly: 1. setting up the gerrit remote repository and 2. Git-review package installation
For example, under the TF-A project, use the following command to add the remote
$ git remote add gerrit ssh://<gerrit user>@review.trustedfirmware.org:29418/TF-A/trusted-firmware-a
For TF-M, the same command applies except that remote’s url is a bit different
$ git remote add gerrit ssh://<gerrit user>@review.trustedfirmware.org:29418/TF-M/trusted-firmware-m
As a safety check, run the command git remote -v and make sure gerrit remote is present. The next step is to install the git-review package in your corresponding Linux distribution. For example, on Ubuntu this would be
$ sudo apt install git-review
and finally define the gerrit remote to be used with the following command
$ git review -r
If no issues are found at this point, you should be ready to start contributing to the project!
No matter what change you want to make in any repository, one needs to create one or more commits into a local branch before submission. All commits must have ‘Signed-off-by’ and ‘Change-id’ strings in the commit description otherwise submission fails. The ‘Signed-off-by’ is introduced explicitly by the user (git commit -s) and the ‘Change-id’ automatically created by the git-review plugin. Patches should be atomic, just targeting one task. A commit’s subject should answer the question ‘what changed’ and the commit’s description answers the question ‘why it changed’. Be clear and always use present verbs, i.e use Add instead of Adding.
Once your commits are ready, type
git review
This command takes care of all the internal commands needed to send the patch to Gerrit, as seen below:
Once a patch is submitted, you must include one or more reviewers. The question then raises: who should I add as a reviewer? One simple approach would be to look at the git history of the files you are modifying, and look for authors who have committed recently.
git log <path to file>
Once reviewers are included, you would probably get some feedback pretty soon. TF projects are quite active but in case you do not get any activity in a couple of days, reply from Gerrit indicating that you would like some feedback. Take the time to understand and review every comment and response properly, do corrections and update the patch promptly if required. Keep polishing the patch until all feedback/observations are resolved. A good practice is to create a new branch for each patch update (suffix a version number on the branch name) so one can switch back and forth between patch versions. CI output and reviewers’ comments are reflected in gerrit and email (the one that appears in your patch metadata), so be sure to check any of these after submission.
More details about Gerrit can be found in the upstream documentation: https://gerrit-documentation.storage.googleapis.com/Documentation/3.3.1/index.html
All CI is done with Jenkins at https://ci.trustedfirmware.org/. There are lots of jobs, so as a first impression, it may seem difficult to follow the CI flow. The Pipeline Description section describes each project’s CI in detail.
Each project have different CI jobs and scripts hosted in the following repos. For example, TF-A and TF-M are in the list below:
To see the full list of CI jobs and scripts repos for all projects in Open CI, navigate here: https://git.trustedfirmware.org/ci/
The job config repositories contain Jenkins Job Definitions, called JJB (Jenkins Job Builders) files. The CI scripts repositories host scripts that are required for the CI, i.e build scripts, static checks, etc.
For patches that arrive at gerrit, the CI is explicitly triggered by a core maintainer. However there are cases where a particular job needs to be rebuilt. Jobs can be rebuilt at any level, from the trigger job to the job that builds or launches the LAVA execution. For example, the below picture shows a trigger job with the ‘Build with Parameters’ and ‘Rebuild last’ options. Both options allow the maintainer to change any job parameter before actually executing it.
Most probably, you may want to go to a specific failed job and ‘Rebuild’
There may be many reasons to rebuild but perhaps the most trivial one is to make sure the error is valid and not a transient one. Look at the job’s console for errors.
LAVA(Linaro Automation and Validation Architecture) provides detailed documentation that can be found here.
TF project support the following platforms in LAVA https://tf.validation.linaro.org/scheduler/device_types
Until recently, the only supported platform was the Juno board but now it also supports FVP models:
FVP models are virtual platforms that are able to emulate specific Arm reference designs or platforms. See the Arm documentation for more details: https://developer.arm.com/tools-and-software/simulation-models/fixed-virtual-platforms
These models are present on several docker images and LAVA uses these to boot and test a particular model. The specific docker image and model type are defined in the (LAVA) job definition. Docker images (containing the models) are available in a private docker registry (987685672616.dkr.ecr.us-east-1.amazonaws.com) that LAVA has access to. At the time of this writing, these are the docker image names
Tag name, i.e. fvp_base_revc-2xaemv8a_11.12_38, corresponds to the particular model download from https://developer.arm.com/tools-and-software/simulation-models/fixed-virtual-platforms.
TF-M LAVA devices are:
All LAVA jobs triggered by Jenkins are executed at the TF LAVA lab https://tf.validation.linaro.org/ instance. The Jenkins jobs that launch LAVA jobs are: tf-a-builder
https://ci.trustedfirmware.org/job/tf-a-builder/ and tf-m-lava-submit
https://ci.trustedfirmware.org/job/tf-m-lava-submit/. The Jenkins jobs contain the corresponding LAVA id which can be used to find the corresponding job at https://tf.validation.linaro.org/. In case of tf-a-builder
job, the LAVA log itself is fetched from LAVA lab and attached to the job as seen below:
At the https://tf.validation.linaro.org/scheduler/alljobs link, one can go to a particular job to check results directly from LAVA:
One useful feature is the possibility to resubmit jobs: this enables the user to quickly modify a job definition and test it without the need to retrigger the full build from Jenkins:
The entrypoint to investigate a job failure is looking at the job’s landing page, i.e. https://tf.validation.linaro.org/scheduler/job/74086
Depending on the device type and job definition, the output can vary considerably. One can filter out relevant logs by clicking the different log levels. As in any system, failures can occur at any time and for different reasons, i.e introduced by a user's patch or scripts/infrastructure. In any case, a core maintainer should monitor and report or fix it accordingly.
The TF Open CI is divided into two separate pipelines, each handling the respective project (TF-A vs TF-M). Each is different in design so we describe each separately.
The TF-A CI pipeline https://git.trustedfirmware.org/ci/tf-a-job-configs.git/ underwent refactoring based on requirements in https://developer.trustedfirmware.org/w/collaboration/openci/, going from testing a single test configuration to hundreds of them. Besides improving considerably the QA, it added some complexity as we will see below.
At the time of this writing, there are two (mostly) identical CIs, one running inside Arm https://jenkins.oss.arm.com/ (Internal CI) and one at https://ci.trustedfirmware.org/ (Open CI). These are two CI instances running in parallel but in different environments: the internal CI runs in a single node (master node) while the Open CI in multiple nodes (docker nodes). In the near future, only the Open CI will be running once all the internal CI features are fully migrated.
Below is a general picture of the Trusted firmware A CI flow. Top boxes are Jenkins jobs, except those with .sh extensions.
The first job, the trigger-job, can be any job defined below, each covering a set of platforms and build/run configurations through test groups (TEST_GROUPS), ultimately split as test descriptions (TEST_DESC). A test description is tested by tf-a-builder
job and a LAVA job is launched once artifacts are ready to be consumed.
In terms of the trigger source, jobs can be classified by either gerrit or scheduled:
Gerrit:
Scheduled: daily triggered:
All the above jobs rely on downstream jobs:
Any job can be triggered manually by authorized users. Gerrit jobs are those triggered on behalf of gerrit actions, either ‘Allow +1’ or ‘Allow +2’, and track a particular project, either TF-A https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/ or TF-A tests https://git.trustedfirmware.org/TF-A/tf-a-tests.git/. The following screenshot shows an example of the tf-gerrit-tforg-l1
job at the Jenkins instance:
The tf-gerrit-tforg-l1 indicates the tracking project, tf-gerrit-tforg-l1, and the level, tf-gerrit-tforg-l1. Levels indicate testing depth (test descriptions coverage) and are used in different phases in the development phase as seen below:
The job tf-daily runs daily, uses the latest code (the HEAD commit) and triggers two jobs: tf-main and tf-coverity. The job tf-main is the one covering most platforms so it takes longer to complete (approximately 1.5 hours)
Notice that the tf-main job also triggers tf-static-checks, the job that launches project-related static checks (copyright presence, headers in alphabetical order, line endings, coding style and banned APIs) and execute Clang static analyzer (scan-build). The job tf-coverity runs the Coverity static code check and reports metrics (defects) at https://scan.coverity.com/projects/arm-software-arm-trusted-firmware?tab=overview
The job tf-a-builder is the builder job and its execution is containerized inside docker-amd64-tf-a-bionic defined at https://git.trustedfirmware.org/ci/dockerfiles.git/ repository. Anyone can fetch it with the following command and use it for local compilation
docker pull trustedfirmware/ci-amd64-ubuntu:bionic
The result of tf-a-builder is a set of artifacts: binaries, build log, environment files, etc.
In particular, if build produces a LAVA definition file, job.yaml, a LAVA job is launched through SQUAD https://qa-reports.linaro.org/tf/. Once the LAVA job finishes, jenkins fetches the log from LAVA and stores it in the corresponding jenkins job. It is worth mentioning that not all tf-a-builder jobs produce a LAVA job, i.e fvp model not supported, ‘nil’ run configuration provided in the test description, static check, etc. however most FVP and Juno produce one. One can see all executed LAVA jobs at https://tf.validation.linaro.org/scheduler/alljobs.
Finally, depending on the CI execution outcome, this is reflected in Gerrit as ‘TrustedFirmware Code Review’ comments:
Results from those LAVA executed jobs on behalf of the corresponding gerrit patch are also reflected in Gerrit:
In case of a job failure, it is more likely that you want to investigate the issue starting at the Gerrit job, then following the CI job chain starting from the trigger job (top-bottom approach): 1. analyze results from the Gerrit job, 2. use the report table produced by each tf-a-ci-gateway job, 3. the tf-a-builder job and finally 4. the tf-a-builder’s console log. Looking at the following screenshots should help clarifying this concept.
TF-M jobs are found at https://ci.trustedfirmware.org/ and can be classified depending on the code coverage
Below is a diagram that shows their relationship and the amount of code coverage targeted.
Jobs can also be classified depending on their specific task:
When a patch arrives at https://review.trustedfirmware.org/ and reviewed, a maintainer may allow the CI to be executed, which in turn triggers the tf-m-static
job. This is exactly the same CI workflow as for TF-A. In case of failure, the patch cannot be merged into the stable branch. The tf-m-static triggers many more jobs as seen in the picture below
The job tf-m-nigthly is a more extensive job, triggered everyday and tests the latest code (HEAD) at the project
In case the nightly job fails, an email notification is sent through the mailing list https://lists.trustedfirmware.org/mailman/listinfo/tf-m-ci-notifications . The maintainer is responsible for looking at the failed errors and identifying the (commit) culprit then reporting it to the developer.
Both TF-A and TF-M jobs support performing code coverage analysis. Mechanisms for requesting this analysis are different:
tf-l3-code-coverage
.CODE_COVERAGE_EN
parameter of a job to TRUE
.There is a following path to produce a code coverage report:
lcov
code-coverage tool.lcov
is used to generate a code coverage report in the HTML format, which is published as an artifact together with other deliverables of a build.Individual job builds oftentimes cover only a particular configuration (hardware platform, testsuite, etc.). Thus, code coverage produced from a single build is partial, exercising only a subset of the project code. To address this limitation, there is also a support to overlap multiple individual code coverage reports to produce a "collective" or "merged" report, better representing coverage of the entire project. An "umbrella" CI job (tf-a-ci-gateway
for TF-A, tf-m-build-and-test
for TF-M) automatically produces a merged report if code coverage is enabled and there are 2 or more configurations are built by its sub-jobs.
The TF project uses YAML files to define Jenkins jobs using Jenkins Job Builder (JJB): https://docs.openstack.org/infra/jenkins-job-builder/definition.html. Jobs currently defined for both projects are at https://git.trustedfirmware.org/ci/tf-m-job-configs.git/ and https://git.trustedfirmware.org/ci/tf-a-job-configs.git/. Job triggers are special types of jobs that listen to certain gerrit events. For example the job https://git.trustedfirmware.org/ci/tf-a-job-configs.git/tree/tf-a-gerrit-tforg-l1.yaml triggers every time a TF-A maintainer ‘Allows +1’ the CI to execute as defined the job’s trigger section:
... triggers: - gerrit: server-name: review.trustedfirmware.org trigger-on: - comment-added-event: approval-category: "Allow-CI" approval-value: 1 projects: - project-compare-type: PLAIN project-pattern: TF-A/trusted-firmware-a branches: - branch-compare-type: PLAIN branch-pattern: integration ...
JJB defines the behaviour of a Job through a YAML file, where Jenkins use these to create jobs (it is similar to Class and Object concepts in Object Oriented Programming). For example this is JJB of TF-A Level1 trigger: https://git.trustedfirmware.org/ci/tf-a-job-configs.git/tree/tf-gerrit-tforg-l1.yaml which is instanciated at https://ci.trustedfirmware.org/job/tf-gerrit-tforg-l1/. Similar pattern applies for the rest of the JJB files.
JJB files themselves do not do much unless they execute something useful. CI scripts are kept in separate repositories depending on the project. Below is the relationship between jobs and scripts repositories per project
In general, Jenkins jobs call scripts, the latter do the corresponding task. For example, below is shown again CI flow for the TF-A project
Where builders.sh is just a setup script (located at TF-A jobs repo) that finally calls run_local_ci.sh script located CI scripts repo, which is the entrypoint of the script execution. The run_local_ci.sh in turn calls others scripts that finally build the package.
The TF-A CI repository https://git.trustedfirmware.org/ci/tf-a-ci-scripts.git/ contains several folders and scripts for different purposes but we will not describe each one. Instead we will overview build package operation. Building a package means building (compiling) a specific platform with certain build parameters and post-build setup tasks, both indicated in a single test configuration (string or filename). The operation is depicted in the following diagram:
The test configuration concisely specifies a single test: what set of images to build, how to build them, and finally, how to run a test using the aforementioned images. A test configuration is a specially-named plain text file whose name comprises two parts: the build configuration and the run configuration.
The test configuration file is named in the following format:
{tf-build-config | nil}[,tftf-build-config]: { run-config | nil}
That is, it contains:
The TF and TFTF build configs are separated by a comma; the build and run configs are separated by a colon. The test configuration is consumed by the build script , and produces a build package. For example, the test configuration fvp-default,fvp-default:fvp-tftf-fip.tftf-aemv8a-debug chooses:
Build configurations are plain text files containing build parameters for a component; either TF or TFTF. The build parameters are sorted and listed one per line, and would appear on the component's build command line verbatim. Up to two build configurations can be specified – one for TF (mandatory), and another one for TFTF (optional). If the test doesn't require Trusted Firmware to be built (for example, for a TFTF build-only configuration), it must be specified as nil.
For example, the TF build config fvp-aarch32-tbb-mbedtls-rsa-ecdsa-with-ecdsa-rotpk-rsa-cert has the following contents as of this writing:
AARCH32_SP=sp_min ARCH=aarch32 ARM_ROTPK_LOCATION=devel_ecdsa CROSS_COMPILE=arm-none-eabi- GENERATE_COT=1 KEY_ALG=rsa PLAT=fvp ROT_KEY=plat/arm/board/common/rotpk/arm_rotprivk_ecdsa.pem TF_MBEDTLS_KEY_ALG=rsa+ecdsa TRUSTED_BOARD_BOOT=1
Build configs are located under tf_config and tftf_config subdirectories in the CI repository.
As described above, the build configuration describes what components to build, and how to build them. Before a set of images can be exercised through the test, the CI usually needs to execute a sequence of steps that are necessary to set up the test environment. These steps largely depend on the specific nature of the test at hand, the platform to be run on, etc. These steps are related to but decoupled from the build configs and are defined in run configurations. Almost all tests run in the CI mandatorily require a certain combination of steps above, some others optional. Because of the variability in applying the steps, and to avoid duplication, common steps are made available as standalone script snippets, called fragments. Individual fragments can be strung together to form a Run Configuration. Run config fragments are located under run_config subdirectory in the CI repository.
For example, the following test configuration
tftf-l2-extensive-tests-fvp/fvp-tspd,fvp-extensive:fvp-tftf-fip.tftf-cortexa57x4a53x4-tspd
Produces the following build configs
Trusted Firmware config: CROSS_COMPILE=aarch64-none-elf- PLAT=fvp SPD=tspd Trusted Firmware TF config: CROSS_COMPILE=aarch64-none-elf- PLAT=fvp TESTS=extensive
And the following run config fragments
fvp-tftf fvp-fip.tftf fvp-cortexa57x4a53x4 fvp-tspd
Producing the following (release) build package
. ├── artefacts │ ├── build.log │ ├── debug │ │ ├── bl1.bin │ │ ├── bl1.elf │ │ ├── bl2.bin │ │ ├── bl2.elf │ │ ├── bl2u.bin │ │ ├── bl2u.elf │ │ ├── bl31.bin │ │ ├── bl31.elf │ │ ├── bl32.bin │ │ ├── bl32.elf │ │ ├── cactus.bin │ │ ├── cactus.dtb │ │ ├── cactus.elf │ │ ├── cactus_mm.bin │ │ ├── cactus_mm.elf │ │ ├── el3_payload.bin │ │ ├── fip.bin │ │ ├── fvp-base-gicv3-psci.dtb │ │ ├── fvp_fw_config.dtb │ │ ├── fvp_nt_fw_config.dtb │ │ ├── fvp_soc_fw_config.dtb │ │ ├── fvp_tb_fw_config.dtb │ │ ├── fvp_template.yaml │ │ ├── fvp_tsp_fw_config.dtb │ │ ├── fvp.yaml │ │ ├── ivy.bin │ │ ├── ivy.dtb │ │ ├── ivy.elf │ │ ├── job.yaml │ │ ├── model_params │ │ ├── ns_bl1u.bin │ │ ├── ns_bl1u.elf │ │ ├── ns_bl2u.bin │ │ ├── ns_bl2u.elf │ │ ├── quark.bin │ │ ├── quark.dtb │ │ ├── quark.elf │ │ ├── run │ │ ├── tftf.bin │ │ └── tftf.elf │ ├── env │ └── release . . ├── fvp_template.yaml ├── fvp.yaml ├── job.yaml ├── lava_model_params ├── tmp.FlNca0PGGF ├── tmp.KMJFcZ0Zr6 ├── tmp.ku5nXd85b4 ├── tmp.mCaqKgvgfT └── tmp.Sv3zjKIWz7
Ultimately, the job.yaml file above is the LAVA job definition, which contains the information required by LAVA (artefacts’ URL, model params, container containing the model, etc.) for a correct job execution.
**TODO - This section is missing**
The LAVA instance for the Trusted Firmware project is set up in Linaro Harston LAB. It consists of lava-master running on a hosted bare metal server, lava-dispatcher running on the same server. Additional dispatchers are deployed using Raspberry Pi 4 hardware. Note that this is required by certain classes of hardware not being differentiable before the OS boots, therefore a single device per dispatcher allows addressing these devices via an unique dispatcher (per device).
TF LAVA instance settings are stored in salt and ansible repositories:
TF instance partially relies on Linaro infrastructure. Linaro’s login service (based on LDAP) is used for users authentication and logging into the TF LAVA instance. Therefore it’s not possible to replicate identical LAVA instance accounts outside of Linaro’s infrastructure. Apart from that, all configurations are stored in Salt or Ansible repositories. Replicating the remaining part of the instance can be done using Salt and Ansible tools with a new set of inventory variables.
Before an instance is ready various Ansible playbooks need to be run and, for LAVA setups, Salt needs to be run.
For Ansible, you need to go on deb-ansible host (ssh root@192.168.128.15
). As root:
# (cd /srv/lava-lab; git pull) # cd /etc/ansible/playbooks # ansible-playbook -i ../inventory/tf lava-lab.yml
The following playbooks are used to configure all the relevant parts:
lab_sssd_auth.yml
: enable LDAP authenticationlab_snmp_enable.yml
: enable SNMP, and non-free/contrib apt sources (needed for working SNMP set up with APC PDUs)lab_docker.yml
: install docker apt repository and docker service itselflab_aws_client.yml
: enable AWS authentication with AWS to preload docker imageslab_lava_repo.yml
: add LAVA apt repositorydhcp_tf.yml
: for the static leases and general DHCP server configurationInstalling LAVA (worker and master) is a manual process. After that, the lava-lab.yml
file takes care of setting up the correct device dictionaries, device types and health checks as configured in the separate lava-lab repository.
Until the Salt migration to Ansible is complete you will need to go on tf-master.tflab
host (ssh root@10.88.16.10
). As root:
# (cd /srv/lava-lab; git pull) # salt ‘*’ state.highstate
Note: on a brand new installation, you will need to run the salt
command twice. It’s due to an ordering problem in the Salt state configuration. It will be fixed by the Ansible migration.
LAVA Master and dispatchers run the Debian distribution (at the time of writing, Debian 10 Buster). LAVA packages are installed from apt.lavasoftware.org
repository. On top of the basic installation, LAB specific configuration is applied with Ansible. Note: the installation of lava-server is a manual process (and still a work in progress), while other configurations are automated and described in the Ansible playbooks above.
TF instance uses 2 types of dispatchers:
LAVA dispatchers setup is described in the LAVA documentation: https://lava.readthedocs.io/en/latest/admin/advanced-tutorials/deploying-rpi4b-as-worker/.
Upgrades of LAVA software are performed after each LAVA release. All dispatchers and master have to run the same version of LAVA software.
All the changes are done by the Linaro Lab staff. They should be requested as Jira tickets with the following fields:
Most common cases where ticket is required include:
Up-to-date list of devices is available from the LAVA web UI. A simplified view shows only the device types. Currently, TF LAVA instance has Juno, MPS2, Musca B1 and QEMU devices.
Setting up a local LAVA instance that can be used for debugging or improving LAVA code, as well as new device enablement can be done in a few ways. The easiest is to use the official LAVA’s docker-compose repository and follow the README instructions.
Enabling new devices in LAVA is described in the LAVA documentation.
More details on Collaborate page: https://collaborate.linaro.org/display/CTT/Juno
After various iterations of deployment methods, the current method is loading a master image on SD card or USB stick, and booting a known good image from that. The known good image can be found here.
The most common issue with Juno is broken PDU ports. The ports get stuck in ON mode so the board never reboots and can thus not interrupt the boot loader. Another common issue is "Failed to erase old recovery image" which is generally an issue with the SD card. It is solved as follows:
parted /dev/DISK_ID
mkfs.fat16 /dev/DISK_ID -n JUNO<details>
umount
issues on the first try. If so, try again.More details in Collaborate page: https://collaborate.linaro.org/display/CTT/MPS2
The technical reference manual can be found here.
An example health check with an image to use for deployment on MPS2 devices.
There is also access to a device dictionary which describes the process of using SDMux with the board.
In order to use SDMux, the host must have sd-mux-ctrl installed.
We found that the SD card containing the boot image easily got corrupted and that would take the board offline until manual intervention is made.
This is mitigated with use of the SDMux and there have been few known issues since.
SD Mux can be bought from https://shop.linux-automation.com/.
More details in Collaborate page: https://collaborate.linaro.org/display/CTT/MuscaB1
Flashing instructions are available on ARM community pages. It's only possible to run the Windows version of the instructions. Currently the Lab uses QSPI firmware version 3.4.
Firmware: DAPLink_QSPI_V34.bin
After initial flashing is done, the rest of the setup can be done with a Linux host. Some commands for DAPLink can be found in DAPLink docs.
Boards need to have the "automation" feature enabled in DAPLink. This is done by writing the auto_on.cfg
file to the USB mass storage 'MUSCA_B' while pressing nSRST button. See DAPLink docs above for more information.
There is a hidden command in the v3.4 firmware: Auto power can be turned on by writing auto_pwr.cfg
to the USB mass storage 'MUSCA_B' while pressing nSRST button. Turning auto power off can be done by writing hard_pwr.cfg
to the USB mass storage 'MUSCA_B' while pressing the nSRST button.
An overview of this board, as well as a Programming and Debugging guide can be found on the zyphyrproject documentation page.
The NXP Getting Started Guide can be used to build and run software.
The board specification can be found here.
For Programming and Debugging, the onboard KitProg3 can be used. It is a programmer/debugger with USB-UART and USB-I2C funcionality. For details on the KitProg3 functionality see the KitProg3 User Guide.
To Program/Debug connect the board to thh PC using the USB cable. It will enumerate as a USB Composite Device if you are connecting to your PC for the first time.
KitProg3 operates in either CMSIS-DAP Bulk mode, or DAPLink mode (default). In SMSIS-DAP Bulk mode, two UART interfaces are supported. The status LED (Yellow) is always ON in CMSIS-DAP Bulk mode and ramping at a rate of 2 Hz in DAPLink mode. Press and release the Mode select button (SW3) to switch between these modes.
See the KitProg3 User Guide for more troubleshooting instructions.
The Asurada Chromebook should work out of the box; however there are Chromium OS docs for devoloper mode, as well as Closed Case Debug docs.
If you wish to flash a debug image you can use the following steps.
For CCD UART and flashing access, download the contents of this repository which contains scripts that automatically download and build required pieces.
servod -b asurada
. Ensure that the SusyQable is in the correct orientation described in the trouble shooting section.dut-control cr50_uart_pty
which should display the PTY number (such as cr50_uart_pty:/dev/pts/17
)minicom -w -D /dev/pts/17
)ccd open
ccd reset factory
dut-control cpu_uart_pty
to find out the PTY numberflashrom -n -w <image file> -p raiden_debug_spi:target=AP
to flash an image file to the devicemake
cbfstool <image file> remove -n fallback/bl31
cbfstool <image file> add-payload -n fallback/bl31 -f <new bl31.elf file>
When connecting to the Asurada Chromebook via the SusyQable, the DBG symbol should be in a upward position in the left USB-C port.
For more Chromebook devices you can look here. Currently the Asurada Chromebook is not on this list.
The Lazor Chromebook should work out of the box; however there are Chromium OS docs for devoloper mode, as well as Closed Case Debug docs.
If you wish to flash a debug image you can use the following steps.
For CCD UART and flashing access, download the contents of this repository which contains scripts that automatically download and build required pieces.
servod -b trogdor
. Ensure that the SusyQable is in the correct orientation described in the trouble shooting section.dut-control cr50_uart_pty
which should display the PTY number (such as cr50_uart_pty:/dev/pts/17
)minicom -w -D /dev/pts/17
)ccd open
ccd reset factory
dut-control cpu_uart_pty
to find out the PTY numberflashrom -n -w <image file> -p raiden_debug_spi:target=AP
to flash an image file to the devicemake
cbfstool <image file> remove -n fallback/bl31
cbfstool <image file> add-payload -n fallback/bl31 -f <new bl31.elf file>
When connecting to the Lazor Chromebook via the SusyQable, the DBG symbol should be in a downward position in the left USB-C port.
More board info can be found here.
"Adding a board to LAVA" can mean more than one thing, for example:
Once your device type is supported in LAVA, and the needed LAVA version is deployed to the Lab, you are ready to request that physical boards be installed in the Lab.
The Lab has some basic Hardware Requirements for boards being installed in the lab. It's advisable to read the "Automation and hardware design" and "LAB Device Deployment Guide" pages for more detailed information:
Basic requirements:
Once your board is supported in the LAVA software, and your board meets the Hardware Requirements, you can raise an LSS ticket to get your board installed in the Lab.
SQUAD is a frontend to LAVA, featuring a proxy for job submission, a database storing test results from LAVA jobs, and a dashboard where results can be compared across CI jobs and metrics generated.
The top level SQUAD project for TrustedFirmware is here:
https://qa-reports.linaro.org/tf/
TF-A has several SQUAD projects, the most interesting is tf-main
:
https://qa-reports.linaro.org/tf/tf-main/
There are other project, but the details
https://qa-reports.linaro.org/tf/tf-gerrit-tforg-l1/ https://qa-reports.linaro.org/tf/tf-gerrit-tforg-l2/ https://qa-reports.linaro.org/tf/tf-tftf-gerrit-tforg-l1/ https://qa-reports.linaro.org/tf/tf-tftf-gerrit-tforg-l2/
https://qa-reports.linaro.org/tf/tf-m/
This was documented here, but has been copied here as we approach wider review: https://docs.google.com/document/d/1qYEdhrYldBcnpVPNIYXG30n0CP8KUrF3DMq_EfAI43I/edit#heading=h.5y1mh3kp9xzw
This document does not go into detail about each project, and is meant to be used as guidelines and rules for accessing the next environment.
Servers:
The staging setup or “next” is meant to be used for developers to be able to test the CI infrastructure. The setup has been set up exactly the same as the production environment, the major difference between them is developers use a staging Jenkins server instead of the production server.
Staging environments have been set up in the next/* namespace location: https://git.trustedfirmware.org/next.
The next/* namespace is mirrored from production. The only repository that is not mirrored is the tf-*-job-configs
repos. All other repositories are mirrored and as such the user should branch out from master.
Users need to be placed in the trusted-firmware-staging-approvers
Gerrit group. Since we use the role-based authorization on both the Production
and the Staging
Jenkins, beside the trusted-firmware-staging-approvers Gerrit group, user need to be a member of the trusted-firmware-a-openci-users
GitHub team for the TF-A project, the trusted-firmware-m-openci-users
GitHub team for the TF-M project, the trusted-firmware-hafnium-openci-users
GitHub team, or trusted-firmware-mbed-tls-openci-users
Github team for the Mbed-TLS project in order to gain the permission to access the job. This is done by creating a ticket, please see instructions at the bottom of the Open CI wiki page. The trusted-firmware-staging-approvers Gerrit group allows users to have submit and merge (+2) writes to all repositories under the next/* namespace, without needing any approval from a peer.
Due to the nature of allowing users to self approve their submit/merge changes into Gerrit, it is important that users understand that it triggers Jenkins jobs and as such care has to be taken when deploying those changes.
Basic rules all developers should follow:
You have two options:
It might be easier to just add a /next/ remote to the user's existing repo clone and work from that. However, the /next/ has had the “basic rules” applied, and as such it is important that the user does not break these rules.
tf-m-job-configs and tf-a-job-configs are not mirrored from production. However the other repos are, and as such the user can branch out from master and develop from there.
To add a remote, it is simply necessary to add /next/ the url. So
ssh://bhcopeland@review.trustedfirmware.org:29418/ci/tf-m-job-configs becomes
ssh://bhcopeland@review.trustedfirmware.org:29418/next/ci/tf-m-job-configs. This then can be added with ‘git remote add gerrit-next
ssh://bhcopeland@review.trustedfirmware.org:29418/next/ci/tf-m-job-configs’ or cloned via git clone <url>.
Once a remote has been added, the user can then do git fetch gerrit-next
and then checkout to that branch.
Sample script to clone the repositories:
#!/bin/sh set -e username=bhcopeland for project in tf-a-ci-scripts tf-a-job-configs tf-m-ci-scripts tf-m-job-configs; do git clone "ssh://${username}@review.trustedfirmware.org:29418/ci/${project}" cd ${project} git remote add gerrit-next ssh://${username}@review.trustedfirmware.org:29418/next/ci/${project} git fetch gerrit-next cd .. done
It's recommended that the user read https://jigarius.com/blog/multiple-git-remote-repositories for understanding two remotes.
Once in this environment, it is recommended the user then checkouts a new dev location and works from that. then copy the <job_name>.yaml file. This should be the same for the <scripts> location too. Once set up it is recommended that the user appends these changes to the job config.
- authorization: anonymous: - job-read - job-extended-read bhcopeland: - job-read - job-extended-read - job-build - job-cancel
It is important to note here, the user needs to replace bhcopeland with your own GitHub username. From this, it allows you to manually trigger and canel the job.
Please ensure any triggers (timed based etc) are disabled. And please ensure silent: true is set inside the gerrit trigger so no gerrit comments get triggered.
This is the workflow for creating ‘per-user’ jenkins jobs in staging instance. next/ci/tf-a-job-configs.git repository should be used in this case.
Other repositories, that are used inside the jobs, can be copied to other server (for example git.linaro.org). This should be added as a new remote to the existing repository. After changes are made and work well, they should be sent for review. Example below:
Similar workflow should be used when migrating changes to ci/tf-a-scripts and ci/tf-a-job-configs repositories. Changes in the next/*
should be sent for review against repositories in the ci/*
path.
As noted above, changes in next/tf-a-job-configs
can be self approved and merged. Changes in user repositories can be pushed without reviews.
For those files that are prerequisites for CI execution, i.e. SCP RAM
, Code Coverage FVP plugin, etc. are shared through https://downloads.trustedfirmware.org and tuxput is the service which allows users to directly upload to S3 without having AWS credentials into the latter site.
The tpcli
command is distributed as part of the tuxput
python package. To install the latest version, run:
$ pip install -U tuxput
Example:
$ tpcli -t <token> -b trustedfirmware-prod-storage https://publish.trustedfirmware.org/upload/path/on/server file
where tuxput instance's endpoint is at https://publish.trustedfirmware.org/upload/.*
Anything specified after the upload/
is interpreted as a folder to use for the file that has been uploaded. If you have permission to write to that path and the folder doesn't exist then it is created. If the upload target is a directory instead of a file, tpcli
recurses through the directory and add it to the folder prefix. When tuxput
has finished attempting to upload, it prints out a list of the results for each file. Successful uploads reports as HTTP 204
, and if it was unsuccessful the error message will be displayed.
$ touch sample.txt $ tpcli -t <token> -b trustedfirmware-prod-storage https://publish.trustedfirmware.org/upload/demo sample.txt
produces:
https://downloads.trustedfirmware.org/demo/sample.txt
$ mkdir demo2 $ mkdir demo2/sub $ touch demo2/sample1.txt $ touch demo2/sub/sample2.txt $ tpcli -t <token> -b trustedfirmware-prod-storage https://publish.trustedfirmware.org/upload demo2
produces:
https://downloads.trustedfirmware.org/demo2/sample1.txt https://downloads.trustedfirmware.org/demo2/sub/sample2.txt
$ mkdir demo2 $ mkdir demo2/sub $ touch demo2/sample1.txt $ touch demo2/sub/sample2.txt $ tpcli -t <token> -b trustedfirmware-prod-storage https://publish.trustedfirmware.org/upload/builds/202105 demo2
produces:
https://downloads.trustedfirmware.org/builds/202105/demo2/sample1.txt https://downloads.trustedfirmware.org/builds/202105/demo2/sub/sample2.txt
In order to obtain a token, please open an LSS ticket.
The ability to overwrite previous uploads has been enabled on this instance of tuxput.
Tuxput does not currently offer a way to delete a file. If you need a file or folder deleted, please submit an LSS ticket so that we can manually remove it.
The project is being hosted at https://gitlab.com/Linaro/tuxput .If you run into a bug or have a feature request, please submit it there.
LAVA is used to launch FVP (Fast Models) based on CI artifacts. In turn, models are launched inside a containerized environment. In other words, models are not run from a bare metal host system, but inside containers on a LAVA dispatcher, where these are launched by LAVA using CI artifacts and configured model parameters. In case a new FVP Docker Image is required at the CI, a contributor needs to download the corresponding FVP model tarball, the installer, and upload it to a CI private repository, then a CI job would automatically generate the docker image.
FVP model are commonly available at these sites:
Download the required model, e.g. FVP_Base_RevC-2xAEMvA_11.15_14.tgz
. Once download is completed, install tuxput package and run the following command using your personal token
tpcli -t <token> -b trustedfirmware-fvp https://publish.trustedfirmware.org/upload <fvp model>
for the case of the FVP_Base_RevC-2xAEMvA_11.15_14.tgz
, command becomes
tpcli -t <token> -b trustedfirmware-fvp https://publish.trustedfirmware.org/upload FVP_Base_RevC-2xAEMvA_11.15_14.tgz
If no errors are seen, the corresponding CI job would detect this new model in the repository and automatically creates the corresponding docker image. This is a cron job executed in a daily basis but can be also triggered manually: go to the CI job landing page and just click the 'Build now' icon.
This section documents the high-level guidelines and expectations when a TrustedFirmware Member wishes to put a board into the OpenCI board farm. This board farm is located in the Linaro facility near Cambridge, UK. A section of the Linaro lab has been allocated to trustedfirmware.org. All trustedfirmware boards are collocated on racks dedicated to the project.
The general steps/guidelines for getting hardware placed into the lab is as follows: