blob: 74d9814c6d399974d79e9c9e17454c7f26b4eeff [file] [log] [blame] [view]
Timothy Chenc5a7d982019-10-31 21:39:21 -07001---
2title: "Top Generation Tool"
3---
Timothy Cheneca6bb52019-10-30 16:16:09 -07004
5The top generation tool `topgen.py` is used to build top specific modules for a specific OpenTitan design - for example [`top_earlgrey`](https://github.com/lowRISC/opentitan/tree/master/hw/top_earlgrey).
6Currently, as part of this generation process, the following top specific modules are created
7* Overall top module
8* Platform level interrupt controller
9* Pinmux
10* Crossbar
11
12This document explains the overall generation process, the required inputs, the output locations, as well as how the tool should be invoked.
13
Timothy Cheneca6bb52019-10-30 16:16:09 -070014## Generation Process
15
16### Overview
17The details of a particular OpenTitan variant is described in a top specific Hjson file.
Michael Schaffner7f134962019-11-03 12:44:50 -080018For example see [`top_earlgrey`](https://github.com/lowRISC/opentitan/tree/master/hw/top_earlgrey/data/top_earlgrey.hjson).
Timothy Cheneca6bb52019-10-30 16:16:09 -070019
20The top specific Hjson describes how the design looks and how it should connect, for example:
21* Overall fabric data width
22* Clock sources
23* Reset sources
24* List of instantiated peripherals
25 * Module type of each peripheral (it is possible to have multiple instantitations of a particular module)
26 * Clock / reset connectivity of each peripheral
27 * Base address of each peripheral
28* System memories
29* Fabric construction
30 * Clock / reset connectivity of each fabric component
31* Interrupt sources
32* Pinmux construction
33 * List of dedicated or muxed pins
34
35The top level Hjson however, does not contain details such as:
36* Specific clock / reset port names for each peripheral
37* Number of interrupts in each peripheral
38* Number of input or output pins in each peripheral
39* Details of crossbar connection and which host can reach which device
40
41The topgen tool thus hierarchically gathers and generates the missing information from additional Hjson files that describe the detail of each component.
42These are primarily located in two places:
43* `hw/ip/data/*.hjson`
Michael Schaffner7f134962019-11-03 12:44:50 -080044* `hw/top_*/data/xbar_*.hjson`
Timothy Cheneca6bb52019-10-30 16:16:09 -070045
46In the process of gathering, each individual Hjson file is validated for input correctness and then merged into a final generated Hjson output that represents the complete information that makes up each OpenTitan design.
Michael Schaffner7f134962019-11-03 12:44:50 -080047For example, see [`top_earlgrey`](https://github.com/lowRISC/opentitan/tree/master/hw/top_earlgrey/data/autogen/top_earlgrey.gen.hjson).
Timothy Cheneca6bb52019-10-30 16:16:09 -070048Note specifically the generated interrupt list, the pinmux connections, and the port-to-net mapping of clocks and resets, all of which were not present in the original input.
49
50The purpose for this two step process, instead of describing the design completely inside one Hjson file, is to decouple the top and components development while allowing re-use of components by multiple tops.
51
52This process also clearly separates what information needs to be known by top vs what needs to be known by a specific component.
53For example, a component does not need to know how many clock sources a top has or how many muxed pins it contains.
54Likewise, the top does not need to know the details of why an interrupt is generated, just how many there are.
55The user supplied `top_*.hjson` thus acts like a integration specification while the remaining details are filled in through lower level inputs.
56
Timothy Chen4bdc6f72019-10-31 15:44:45 -070057In addition to design collateral, the tool also generates all the top level RAL (Register Abstraction Layer) models necessary for verification.
58
Timothy Cheneca6bb52019-10-30 16:16:09 -070059### Validation, Merge and Output
60
61As stated previously, each of the gathered component Hjson files is validated for correctness.
62For the peripherals, this is done by invoking `util/reggen/validate.py`, while the xbar components are validated through `util/tlgen/validate.py`.
63The peripheral and xbar components are then validated through `topgen/validate.py`, which checks for interrupt, pinmux, clock and reset consistency.
64
65Once all validation is passed, the final Hjson is created.
66This Hjson is then used to generate the final top rtl in the top-specific [autogen directory](https://github.com/lowRISC/opentitan/tree/master/hw/top_earlgrey/rtl/autogen).
67The other top specific modules are generated in the top ip-specific autogen directories, for example [plic](https://github.com/lowRISC/opentitan/tree/master/hw/top_earlgrey/ip/rv_plic), [xbar](https://github.com/lowRISC/opentitan/tree/master/hw/top_earlgrey/ip/xbar) and [pinmux](https://github.com/lowRISC/opentitan/tree/master/hw/top_earlgrey/ip/pinmux).
68
69As part of this process, topgen invokes other tools, please see the documentation for [`reggen`](register_tool.md) and [`tlgen`](crossbar_tool.md) for more tool specific details.
70
71## Usage
72
73The most generic use of topgen is to let it generate everything.
74This can be done through direct invocation, or the `${REPO_TOP}/hw` makefile.
75The example below shows the latter:
76```console
77$ cd ${REPO_TOP}
78$ make -C hw top
79
80```
81
82It is possible to restrict what the tool should generate.
83
84```console
85$ cd ${REPO_TOP}
86$ ./util/topgen.py -h
Philipp Wagnerfb443ab2021-03-05 11:10:28 +000087usage: topgen [-h] --topcfg TOPCFG [--outdir OUTDIR] [--verbose] [--no-top]
Timothy Cheneca6bb52019-10-30 16:16:09 -070088 [--no-xbar] [--no-plic] [--no-gen-hjson] [--top-only] [--xbar-only]
89 [--plic-only] [--hjson-only] [--top_ral]
90
91optional arguments:
92 -h, --help show this help message and exit
93 --topcfg TOPCFG, -t TOPCFG
94 `top_{name}.hjson` file.
Timothy Cheneca6bb52019-10-30 16:16:09 -070095 --outdir OUTDIR, -o OUTDIR
96 Target TOP directory. Module is created under rtl/. (default:
97 dir(topcfg)/..)
98 --verbose, -v Verbose
99 --no-top If defined, topgen doesn't generate top_{name} RTLs.
100 --no-xbar If defined, topgen doesn't generate crossbar RTLs.
101 --no-plic If defined, topgen doesn't generate the interrup controller RTLs.
102 --no-gen-hjson If defined, the tool assumes topcfg as a generated hjson. So it
103 bypasses the validation step and doesn't read ip and xbar
104 configurations
105 --top-only If defined, the tool generates top RTL only
106 --xbar-only If defined, the tool generates crossbar RTLs only
Philipp Wagner14a3fee2019-11-21 10:07:02 +0000107 --plic-only If defined, the tool generates RV_PLIC RTL and Hjson only
108 --hjson-only If defined, the tool generates complete Hjson only
Timothy Cheneca6bb52019-10-30 16:16:09 -0700109 --top_ral, -r If set, the tool generates top level RAL model for DV
110
111```