bender

Bender is a dependency management tool for hardware design projects. It provides a way to define dependencies among IPs, execute unit tests, and verify that the source files are valid input for various simulation and synthesis tools.

Build Status Crates.io dependency status Crates.io

Table of Contents

Principles

Bender is built around the following core principles:

Installation

To use Bender for a single project, the simplest is to download and use a precompiled binary. We provide binaries for all current versions of Ubuntu and CentOS, as well as generic Linux, on each release. Open a terminal and enter the following command: sh curl --proto '=https' --tlsv1.2 https://fabianschuiki.github.io/bender/init -sSf | sh The command downloads and executes a script that detects your distribution and downloads the appropriate bender binary of the latest release to your current directory. If you need a specific version of Bender (e.g., 0.21.0), append -s -- 0.21.0 to that command. Alternatively, you can manually download a precompiled binary from our Releases on GitHub.

If you prefer building your own binary, you need to install Rust. You can then build and install Bender for the current user with the following command: sh cargo install bender If you need a specific version of Bender (e.g., 0.21.0), append --version 0.21.0 to that command.

To install Bender system-wide, you can simply copy the binary you have obtained from one of the above methods to one of the system directories on your PATH. Even better, some Linux distributions have Bender in their repositories. We are currently aware of: - ArchLinux: Bender (AUR)

Please extend this list through a PR if you know additional distributions.

Workflow

The workflow of bender is based on a configuration and a lock file. The configuration file lists the sources, dependencies, and tests of the package at hand. The lock file is used by the tool to track which exact version of a package is being used. Adding this file to version control, e.g. for chips that will be taped out, makes it easy to reconstruct the exact IPs that were used during a simulation, synthesis, or tapeout.

Upon executing any command, bender checks to see if dependencies have been added to the configuration file that are not in the lock file. It then tries to find a revision for each added dependency that is compatible with the other dependencies and add that to the lock file. In a second step, bender tries to ensure that the checked out revisions match the ones in the lock file. If not possible, appropriate errors are generated.

The update command reevaluates all dependencies in the configuration file and tries to find for each a revision that satisfies all recursive constraints. If semantic versioning is used, this will update the dependencies to newer versions within the bounds of the version requirement provided in the configuration file.

Package Structure

Bender looks for the following three files in a package:

Relevant code

Manifest Format (Bender.yml)

The package manifest describes the package, its metadata, its dependencies, and its source files. All paths in the manifest may be relative, in which case they are understood to be relative to the directory that contains the manifest.

```yaml

Package metadata. Required.

package: # The name of the package. Required. name: magic-chip

# The list of package authors and contributors. Optional. # By convention, authors should be listed in the form shown below. authors: ["John Doe john@doe.si"]

Other packages this package depends on. Optional.

dependencies: # Path dependency. axi: { path: "../axi" }

# Registry dependency. Not supported at the moment. # common_verification: "0.2"

# Git version dependency. commonverification: { git: "git@github.com:pulp-platform/commonverification.git", version: "0.1" }

# Git revision dependency. commoncells: { git: "git@github.com:pulp-platform/commoncells.git", rev: master }

Freeze any dependency updates. Optional. False if omitted.

Useful for chip packages. Once the chip is in final tapeout mode, and

dependency updates would require disastrous amounts of re-verification.

frozen: true

List of source files in this package. Optional.

sources: # Individual source files are simple string entries: - src/package.sv - src/file1.vhd - src/file2.vhd

# Source files can be grouped: - files: - src/stuff/pkg.sv - src/stuff/top.sv

# Grouped source files may have additional include dirs, defines, and target: - includedirs: - src/include - src/stuff/include defines: # Define without a value. EXCLUDEMAGIC: ~ # Define with a value. PREFIX_NAME: stuff target: all(asic, synthesis, freepdk45) files: - src/core/pkg.sv - src/core/alu.sv - src/core/top.sv

A list of include directories which should implicitly be added to source

file groups of packages that have the current package as a dependency.

Optional.

exportincludedirs: - include - uvm/magic/include

Additional workspace configuration. Optional.

workspace: # Create symlinks to dependencies. # A list of paths at which bender will create a symlink to the checked-out # version of the corresponding package. packagelinks: links/axi: axi common: commoncells

# A directory where the dependencies will be checked out. Optional. # If specified, bender will check out the dependencies once and leave them # for the user to modify and keep up to date. # CAUTION: Bender will not touch these after the initial checkout. # Useful for chip packages, if the intent is to commit all dependencies into # the chip's version control. checkout_dir: deps

Map of package-provided commands that can be called as bender <cmd>.

Optional. Only available in dependent packages.

plugins: hello: scripts/hello.sh ```

Relevant code

Dependencies

Dependencies are specified in the dependencies section of the package manifest, or the overrides section in the configuration file. There are different kinds of dependencies, as described in the following.

Path

mydep: { path: "../path/to/mydep" }

Path dependencies are not considered versioned. Either all versions of dependency mydep point to the same path, or otherwise the resolution will fail.

Git

mydep: { git: "git@github.com:pulp-platform/common_verification.git", rev: "<commit-ish>" }
mydep: { git: "git@github.com:pulp-platform/common_verification.git", version: "1.1" }

Git dependencies are automatically checked out and cloned, and are considered for version resolution. The version field can be any of the semver predicates. The rev field can be a git "commit-ish", which essentially is a commit hash, a tag name, or a branch name.

All git tags of the form vX.Y.Z are considered a version of the package.

Relevant dependency resolution code

Sources

The source files listed in the sources section of the package manifest are a recursive structure. Each entry in the list can either be a single source file, or a group of source files:

```yaml

Format of the sources section in the manifest:

sources: - - - ...

# A source file is formatted as follows: - src/top.sv

# A source group is formatted as follows. # Be careful about the -, which may appear on the same line as the first # field of the source group. - # List of include directories. Optional. include_dirs: - - - ... # List of defines. Optional. defines: # Defines without value: : ~ : ~ # Defines with value: : : ... # Target specifier. Optional. target: # Recursive list of source files and groups: files: - - - ... ```

The target specification configures a source group to be included or excluded under certain circumstances. See below for details. The include_dirs field specifies the +incdir+... statements to be added to any compilation command for the group. The defines field specifies the +define+... statements to be added add to any compilation command for this group.

Targets

Targets are flags that can be used to filter source files and dependencies. They are used to differentiate the steps in the ASIC/FPGA design flow, the EDA tools, technology targets, and more. They can also be used to have different versions of an IP optimized for different chips or technologies.

Targets specify a simple expression language, as follows:

The following targets are automatically set by various bender subcommands:

Individual commands may also set tool-specific targets:

Individual commands may also set vendor-specific targets:

Individual commands may also set technology-specific targets:

Additionally, we suggest to use the following targets to identify source code and netlists at different stages in the design process:

Relevant code

Configuration Format (bender.yml, Bender.local)

Bender looks for a configuration file in the following places:

It will also look recursively upwards from the current working directory for the following:

The contents of these files are merged as they are encountered, such that a configuration in foo/bar/.bender.yml will overwrite a configuration in foo/.bender.yml.

The configuration file generally looks as follows:

```yaml

Location of the cloned and checked-out dependencies. Optional.

Default: ".bender" in the current package's root directory.

database: some/directory

The command to use to invoke git. Optional.

Default: "git"

git: git-wrapper.sh

Overrides for dependencies. Optional.

Forces a dependencies to use specific versions or local paths. Useful for

locally resolving dependency conflicts in a package's own Bender.local file.

Format is the same as dependencies in a package manifest.

overrides: commoncells: { path: "/var/magic/commoncells" }

Auxiliary plugin dependencies. Optional.

Additional dependencies that will be loaded for every package in order to

provide the plugins listed in their manifests.

Format is the same as dependencies in a package manifest.

DEPRECATED: This will be removed at some point.

plugins: additional-tools: { path: "/usr/local/additional-tools" } ```

Relevant code

Commands

bender is the entry point to the dependency management system. Bender always operates within a package; starting at the current working directory, search upwards the file hierarchy until a Bender.yml is found, which marks the package.

path --- Get the path of a checked-out package

The bender path <PKG> prints the path of the checked-out version of package PKG.

Useful in scripts:

#!/bin/bash
cat `bender path mydep`/src/hello.txt

packages --- Display the dependency graph

sources --- List source files

Code

Produces a sources manifest, a JSON description of all files needed to build the project.

The manifest is recursive by default; meaning that dependencies and groups are nested. Use the -f/--flatten switch to produce a simple flat listing.

To enable specific targets, use the -t/--target option.

config --- Emit the current configuration

The bender config command prints the currently active configuration as JSON to standard output.

script --- Generate tool-specific scripts

The bender script <format> command can generate scripts to feed the source code of a package and its dependencies into a vendor tool.

Supported formats:

update --- Re-resolve dependencies

Whenever you update the list of dependencies, you likely have to run bender update to re-resolve the dependency versions, and recreate the Bender.lock file.

Note: Actually this should be done automatically if you add a new dependency. But due to the lack of coding time, this has to be done manually as of now.

clone --- Checkout dependency to make modifications

The bender clone <PKG> command checks out the package PKG into a directory (default working_dir, can be overridden with -p / --path <DIR>). To ensure the package is correctly linked in bender, the Bender.local file is modified to include a path dependency override, linking to the corresponding package.

This can be used for development of dependent packages within the parent repository, allowing to test uncommitted and committed changes, without the worry that bender would update the dependency.

To clean up once the changes are added, ensure the correct version is referenced by the calling packages and remove the path dependency in Bender.local.

Note: The location of the override may be updated in the future to prevent modifying the human-editable Bender.local file.

parents --- Lists packages calling the specified package

The bender parents <PKG> command lists all packages calling the PKG package.