blob: 380d0998b9f010354e6e7e741a71f494935dcc58 [file] [log] [blame] [view]
Timothy Cheneca6bb52019-10-30 16:16:09 -07001{{% lowrisc-doc-hdr Top Generation Tool }}
2
3The 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).
4Currently, as part of this generation process, the following top specific modules are created
5* Overall top module
6* Platform level interrupt controller
7* Pinmux
8* Crossbar
9
10This document explains the overall generation process, the required inputs, the output locations, as well as how the tool should be invoked.
11
12{{% toc 3 }}
13
14## Generation Process
15
16### Overview
17The details of a particular OpenTitan variant is described in a top specific Hjson file.
18For example see [`top_earlgrey`](https://github.com/lowRISC/opentitan/tree/master/hw/top_earlgrey/doc/top_earlgrey.hjson).
19
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`
44* `hw/top_*/doc/xbar_*.hjson`
45
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.
47For example, see [`top_earlgrey`](https://github.com/lowRISC/opentitan/tree/master/hw/top_earlgrey/doc/autogen/top_earlgrey.gen.hjson).
48Note 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
57### Validation, Merge and Output
58
59As stated previously, each of the gathered component Hjson files is validated for correctness.
60For the peripherals, this is done by invoking `util/reggen/validate.py`, while the xbar components are validated through `util/tlgen/validate.py`.
61The peripheral and xbar components are then validated through `topgen/validate.py`, which checks for interrupt, pinmux, clock and reset consistency.
62
63Once all validation is passed, the final Hjson is created.
64This 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).
65The 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).
66
67As 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.
68
69## Usage
70
71The most generic use of topgen is to let it generate everything.
72This can be done through direct invocation, or the `${REPO_TOP}/hw` makefile.
73The example below shows the latter:
74```console
75$ cd ${REPO_TOP}
76$ make -C hw top
77
78```
79
80It is possible to restrict what the tool should generate.
81
82```console
83$ cd ${REPO_TOP}
84$ ./util/topgen.py -h
85usage: topgen [-h] --topcfg TOPCFG [--tpl TPL] [--outdir OUTDIR] [--verbose] [--no-top]
86 [--no-xbar] [--no-plic] [--no-gen-hjson] [--top-only] [--xbar-only]
87 [--plic-only] [--hjson-only] [--top_ral]
88
89optional arguments:
90 -h, --help show this help message and exit
91 --topcfg TOPCFG, -t TOPCFG
92 `top_{name}.hjson` file.
93 --tpl TPL, -c TPL The directory having top_{name}_core.sv.tpl and
94 top_{name}.tpl.sv.
95 --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
107 --plic-only If defined, the tool generates RV_PLIC RTL and hjson only
108 --hjson-only If defined, the tool generates complete hjson only
109 --top_ral, -r If set, the tool generates top level RAL model for DV
110
111```