designformat

A Cross-Language Interchange Format for Hardware Description Based on JSON


License
GPL-3.0
Install
pip install designformat==1.3

Documentation

BLADE


DesignFormat

DesignFormat is a file format for storing fully expanded, hiearchical design data. It is uses JSON as a storage format as many languages offer native and relatively performant JSON parsers - making it easy to share data between different environments. DesignFormat is intended to be used as the interchange format between different tools, eliminating the need for multiple tools to parse the source data - which can introduce inconsistencies and errors.

Types

  • DFBase: Base class, provides every other object with an ID, a description, and a map of arbitrary attributes (for passing options).
  • DFDefine: Defines a named constant value related to the design.
  • DFBlob: Can carry an arbitrary number of DesignFormat nodes of different types.
  • DFProject: The root node exported to file. Provides interconnect and constant definitions, and holds the root blocks defined in the project.
  • DFInterconnect & DFInterconnectComponent: Represents a connection type, comprised of components which can either be complex (other DFInterconnect instances) or simple (wire connections with a specified width and direction).
  • DFBlock: Represents a block in the design hierarchy with ports, connections, and child blocks. It can also hold a register interface definition.
  • DFPort: Represents a port on a block, with a specified direction (input or output) and a type (referencing a DFInterconnect type).
  • DFConstantTie: A point that can be connected to an input port to hold it at a constant value.
  • DFConnection: Defines a connection between two points (either two ports, or a contant tie and a port).
  • DFRegister: Represents a register with an address, access modes, and a set of fields.
  • DFRegisterField: Represents a single field within the register with a name, a width and a reset value.

Using the Javascript library

Loading a DFProject

const df_models = require('./javascript/df_models.js');
const fs        = require('fs');

let data    = JSON.parse(fs.readFileSync('./my_file.df_project').toString());
let project = (new df_models.DFProject()).loadObject(data);

Loading a DFBlob

const df_models = require('./javascript/df_models.js');
const fs        = require('fs');

let data    = JSON.parse(fs.readFileSync('./my_file.df_blob').toString());
let project = (new df_models.DFBlob()).loadObject(data);

Using the Python library

Loading a DFProject

from df_models import DFProject
import json

project = None
with open('./my_file.df_project', 'r') as fh:
    project = DFProject().loadObject(json.load(fh))

Loading a DFBlob

from df_models import DFBlob
import json

project = None
with open('./my_file.df_blob', 'r') as fh:
    project = DFBlob().loadObject(json.load(fh))

Generating Documentation

System Requirements

The following dependencies are not mandatory, but are required for building the documentation:

$> pip install sphinx recommonmark sphinx-markdown-tables sphinx-rtd-theme sphinx-js
$> npm install -g jsdoc

Building the Documentation

To build the documentation, open this directory in a terminal and execute:

$> make build

HTML documentation will be generated under documentation/build/html.