blob: 32c14ab848c15e522fe647f043d0d50bf1cdfd43 [file] [log] [blame]
Tim Edwards55f4d0e2020-07-05 15:41:02 -04001------------------------------------
2open_pdks
3----------------------------------------
4Master PDK generator for SkyWater Sky130
5Hybrid 180nm / 130nm foundry process
6for open source EDA tools
7----------------------------------------
8
9-------------------------------------------------------------------------------
Tim Edwards1168a8b2021-02-10 22:06:54 -050010Quick summary (TL;DR):
11
Tim Edwards1f331292021-02-11 12:37:37 -050012 Prerequisites:
13
14 sudo apt-get install python3
15
16 The Magic VLSI layout tool is used often by the installation. If you do
17 not have it, then obtain it and install with the following:
18
19 sudo apt-get install m4 tcsh tcl-dev tk-dev
Tim Edwards1168a8b2021-02-10 22:06:54 -050020
21 git clone https://github.com/RTimothyEdwards/magic
22 cd magic
23 ./configure
24 make
25 sudo make install
26
27 Open_PDKs SKY130 Installation: Most people will want to run the following
28 for PDK installation:
29
Tim Edwards7e0a6442021-02-11 15:37:42 -050030 ./configure --enable-sky130-pdk
Tim Edwards1168a8b2021-02-10 22:06:54 -050031 make
32 sudo make install
33
34 This will download and install the SkyWater SKY130 PDK, the SKY130 setup
35 files for xschem, and a third-party library containing alphanumeric layouts.
Tim Edwards7e0a6442021-02-11 15:37:42 -050036 If you prefer an installation in your user space, then use configure option
37 "--with-sky130-local-path=<path>" with <path> being some alternative like
38 ~/pdks, and "make install" does not need to be run sudo.
Tim Edwards1168a8b2021-02-10 22:06:54 -050039
Tim Edwards1f331292021-02-11 12:37:37 -050040 With he above configuration line, the PDK files will be installed into
41 the path
42 /usr/share/pdks/sky130A/
43
Tim Edwards1168a8b2021-02-10 22:06:54 -050044-------------------------------------------------------------------------------
45Detailed instructions for the patient reader:
46-------------------------------------------------------------------------------
Tim Edwards55f4d0e2020-07-05 15:41:02 -040047Prerequisites:
48
Tim Edwards1168a8b2021-02-10 22:06:54 -0500491. EDA tools:
Tim Edwards55f4d0e2020-07-05 15:41:02 -040050
Tim Edwards1168a8b2021-02-10 22:06:54 -050051 For installing files to use with the Magic layout tool, Magic must be installed.
52 Obtain Magic from:
53
54 https://github.com/RTimothyEdwards/magic
55
56 No other tools are required for installation, although open_pdks will
57 generate and install the setup files for a number of tools.
58
592. Foundry source files [optional]:
60
61 If you do not have the foundry source files, the latest version will
62 be downloaded from github, built, and installed locally in the
63 open_pdks/sources/ directory. If you have the foundry source files,
64 then you can pass the location to the open_pdks configure script. In
65 that case, the sources will need to be completely built. The
66 instructions below are needed ONLY if you intend to download and
67 install the PDK sources outside of open_pdks. Instructions below
68 are only valid for the SkyWater SKY130 process. If additional
69 open-source PDKs become available, instructions will be added as
70 needed.
71
72 Obtain sources for the SkyWater sky130 130nm process from the git repository
73 at the following location:
Tim Edwards55f4d0e2020-07-05 15:41:02 -040074
75 https://github.com/google/skywater-pdk
76
77 This repository may go in any convenient location. The Makefile suggests
78 the target location ~/projects/foundry/skywater-pdk but any location will
Tim Edwards1168a8b2021-02-10 22:06:54 -050079 do as long as the --enable-sky130-pdk= configuration option value is set
Tim Edwards55f4d0e2020-07-05 15:41:02 -040080 appropriately.
81
82 So cd to the target location parent directory (e.g., "cd ~/projects/foundry")
83 and run the following command:
84
85 git clone https://github.com/google/skywater-pdk
86
Tim Edwardsfd5136b2020-07-08 22:57:04 -040087 Note that many of the files in the PDK are too large for a single git
88 repository, and so each IP library in the PDK has been placed in a
89 submodule. There are multiple versions of each library, and it is
90 nearly certain that you will only want to deal with the "latest" version
91 of each. To make sure you have the submodules for the latest version of
92 each supported IP library, do:
93
94 cd skywater-pdk
Tim Edwardsc31a41f2020-11-11 10:40:03 -050095 git submodule init libraries/sky130_fd_io/latest
96 git submodule init libraries/sky130_fd_pr/latest
Tim Edwardsdf0e1de2020-07-11 17:34:56 -040097 git submodule init libraries/sky130_fd_sc_hd/latest
98 git submodule init libraries/sky130_fd_sc_hdll/latest
99 git submodule init libraries/sky130_fd_sc_hs/latest
100 git submodule init libraries/sky130_fd_sc_ms/latest
101 git submodule init libraries/sky130_fd_sc_ls/latest
102 git submodule init libraries/sky130_fd_sc_lp/latest
103 git submodule init libraries/sky130_fd_sc_hvl/latest
Tim Edwardsfd5136b2020-07-08 22:57:04 -0400104 git submodule update
105
106 The liberty (.lib) files are the largest of all and so individual files
107 are too large for the git repo and need to be assembled by script. To
108 do that, do:
109
110 make timing
111
112 That installs all of the Google/Skywater files.
113
114 Then follow the instructions below for generating the additional files
115 for supporting the open source EDA tool flows.
Tim Edwards55f4d0e2020-07-05 15:41:02 -0400116
Tim Edwards1168a8b2021-02-10 22:06:54 -0500117PDK Installation:
Tim Edwards55f4d0e2020-07-05 15:41:02 -0400118
119 There are two methods for installation: Local and Distribution. Use Local
120 installation if you are installing on a single host computer. Use Distribution
121 installation if you are installing into a respository (such as git) that will
122 be distributed to multiple hosts.
123
124Step 1:
125
Tim Edwards60b4f622020-08-02 10:49:17 -0400126 Run "configure" to set the paths to the Google/SkyWater source
127 repository and to set the path to the install location. Note that
128 the configure script is located in the open_pdks top level directory,
129 not in the foundry subdirctory, and must be run from the top level
Tim Edwards1168a8b2021-02-10 22:06:54 -0500130 directory. The mandatory configure options are as follows:
Tim Edwards60b4f622020-08-02 10:49:17 -0400131
Tim Edwards1168a8b2021-02-10 22:06:54 -0500132 --enable-sky130-pdk[=/path/to/sky130/pdk/source]
Tim Edwards1168a8b2021-02-10 22:06:54 -0500133
134 See below for details.
Tim Edwards60b4f622020-08-02 10:49:17 -0400135
136 NOTE: The intention of the configure file is to not have to hand-edit
137 the Makefile. However, the development of the configure script is
138 currently ongoing and unfinished, so for now the Makefile should be
139 checked and edited after running configure.
140
Tim Edwards1168a8b2021-02-10 22:06:54 -0500141 --enable-sky130-pdk[=/path/to/sky130/pdk/source]
142 This is mandatory for specifying that the installation
143 is for the SKY130 PDK. If the path is specified, then
144 the PDK is assumed to already be downloaded and installed.
145 If not, then the PDK will be downloaded automatically
146 from github and installed. Note that the PDK repository
147 is very large, contains submodules, and the submodules
148 need to compile the liberty timing files, which can
149 take a very long time. Be patient.
150
151 --with-ef-style
152 Select this for an efabless-style file structure.
153 The default is "no". There are some differences in
154 these two styles, the most important of which being
155 that the order of directories for the IP libraries
156 is <file_format>/<library_name> instead of
157 <library_name>/<file_format>. Other differences
158 include version tracking of the Magic setup files
159 and the location of the technology LEF file.
160
161 --with-sky130-link-targets=none|source
162 "none" copies files from the source directories to
163 the target. "source" makes symbolic links to the source
164 directories. Use "source" only if doing a local install,
165 and the source foundry data will not be deleted. For
166 distribution installations, the value must be set to
167 "none".
168
169 --with-sky130-local-path=<path>
170 The path to the target install directory. This is used
171 in both the local and distribution installations. For
172 a distribution installation, this is the local name of
173 the path to the PDK after it has been distributed to
174 the host computers (This should have been set by the
Tim Edwards7e0a6442021-02-11 15:37:42 -0500175 option --with-local-path= passed to configure). If not
176 specified, then the default <path> is /usr/share/pdks/,
177 so the PDK will be installed as /usr/share/pdks/sky130A/.
Tim Edwards1168a8b2021-02-10 22:06:54 -0500178
179 --with-sky130-dist-path=<path>
180 The path to the location of the installed files prior to
181 distribution. This will most likely be a git or similar
182 repo. This path should NOT be specified for a single-
183 machine installation.
184
185 --enable-alpha-sky130[=<path>]
186 The path to the sky130_ml_xx_hd library, a third-party
187 library containing layouts of alphanumeric characters
Tim Edwards7e0a6442021-02-11 15:37:42 -0500188 for adding text to layout. If the configuration option
189 or the path is not specified, then the library will be
190 downloaded from github automatically. To disable this
191 package, use "--disable-alpha-sky130".
Tim Edwards1168a8b2021-02-10 22:06:54 -0500192
193 --enable-xschem-sky130[=<path>]
194 The path to the SKY130 setup for the xschem schematic
Tim Edwards7e0a6442021-02-11 15:37:42 -0500195 entry/schematic capture tool. If the configuration
196 option or the path is not specified, then the library
197 will be downloaded from github automatically. To disable
198 this package, use "--disable-xschem-sky130".
Tim Edwards1168a8b2021-02-10 22:06:54 -0500199
Tim Edwards60b4f622020-08-02 10:49:17 -0400200Step 2:
Tim Edwards55f4d0e2020-07-05 15:41:02 -0400201 Run:
202
203 make
204
205 This will pre-process the setup files to create the PDK-specific files
206 for the SKY130A PDK, and process all vendor files, and place everything
207 in a local staging area.
208
Tim Edwards1168a8b2021-02-10 22:06:54 -0500209Step 3:
210 Run:
Tim Edwards55f4d0e2020-07-05 15:41:02 -0400211
Tim Edwards1168a8b2021-02-10 22:06:54 -0500212 make install
Tim Edwards55f4d0e2020-07-05 15:41:02 -0400213
Tim Edwards1168a8b2021-02-10 22:06:54 -0500214 The behavior of installation depends on whether or not
215 --with-<pdk>-dist-path=<path> has been set (e.g.,
216 --with-sky130-dist-path). If only the local path
217 (--with-<pdk>-local-path=<path>) has been set, then "make
218 install" copies all files from the staging area into the
219 destination. All pointers to absolute paths in the files
220 are changed to match the local path.
221
222 If --with-<pdk>-dist-path=<path> has been set, then "make
223 install" copies all files from the staging area into the
224 destination as specified by the value of <path>. All
Tim Edwards55f4d0e2020-07-05 15:41:02 -0400225 pointers to absolute paths in the files are changed to match
Tim Edwards1168a8b2021-02-10 22:06:54 -0500226 the local path value. The assumption is that the distribution
227 path is a repository (such as a git repo) that is cloned to
228 multiple hosts, and the destination on the hosts where it is
229 distributed is the local path.
Tim Edwards55f4d0e2020-07-05 15:41:02 -0400230
231-------------------------------------------------------------------------------
Tim Edwards1168a8b2021-02-10 22:06:54 -0500232Summary of the installation directories:
Tim Edwards55f4d0e2020-07-05 15:41:02 -0400233
234 The Makefile script takes the source files and generates files for local
235 PDK names "SKY130A", "SKY130B", etc. (Note there is currently only one
236 PDK variant "A".)
237
238 The definition of each PDK is made in the Makefile using defines; e.g.,
239 -DMETAL5, etc.
240
241 The make script makes use of the python script "preproc.py" (in the ../common
242 directory) to parse each source file for "#ifdef ..."-type macros. The syntax
243 is similar to that used by the C preprocessor (cpp) but does not assume C
244 language syntax in the input file, so is generally better to use than cpp
245 (has less unexpected/unintentional behavior). See comments in the preproc.py
246 script for a full list of macros that it accepts (short list: #ifdef, #ifndef,
247 #define, #include, and boolean operators ||, &&, and !).
248
249 Files generated:
250 .tech techfile for magic (full DRC, extract, GDS)
251 -GDS.tech techfile for magic, vendor mask layers
252 .tcl PDK script for magic
253 -BindKeys key binding script for magic partly matching Cadence defaults
254 .magicrc magic startup script (copy to local directory as .magicrc)
255 _setup.tcl netgen setup script for LVS
256 .sh qflow master setup script, standard 1.8V digital
257 .par graywolf setup file, standard 1.8V digital
258
259 The installation directory below LOCAL_PATH is the name of the PDK; e.g.,
260
261 sky130A/ 5-metal stack with MiM cap and redistribution layer
262
263 The installation directory hierarchy below the PDK name looks like the following:
264
265 libs.tech/ technology and setup files
266
267 magic/ magic techfiles, startup file, PDK script,
268 and key binding script.
269 netgen/ netgen setup file
270 qflow/ qflow scripts and graywolf setup files.
271 klayout/ setup files for klayout
Tim Edwards1168a8b2021-02-10 22:06:54 -0500272 openlane/ setup and supplementary files for openlane
Tim Edwardsf8c7eb82021-02-10 09:07:54 -0500273 ngspice/ base model files and libraries for ngspice
Tim Edwards1168a8b2021-02-10 22:06:54 -0500274 xschem/ setup files for xschem
275 irsim/ setup and parameter files for IRSIM
Tim Edwards55f4d0e2020-07-05 15:41:02 -0400276
277 libs.ref/ foundry data
278
279 cdl/ CDL netlists
280 doc/ Foundry documentation
281 gds/ GDS files
282 lef/ LEF macro files
283 lib/ Timing files
284 mag/ Magic files derived from GDS
285 maglef/ Magic files derived from LEF macros
286 spice/ SPICE netlists (ngspice compatible)
287 techlef/ LEF technology files
288 verilog/ verilog modules
289
290 Each subdirectory of libs.ref is further divided into sections based on the
291 IP type. The section names are largely foundry-dependent. For SkyWater Sky130,
292 these sections include one or more of:
293
294 sky130_fd_sc_hd/ 1.8V digital logic (high density)
295 sky130_fd_sc_hdll/ 1.8V digital logic (high density low leakage)
Tim Edwards5e28be32020-07-08 20:33:53 -0400296 sky130_fd_sc_hs/ 1.8V digital logic (high speed)
297 sky130_fd_sc_hvl/ 3.3V digital logic
298 sky130_fd_sc_lp/ 1.8V digital logic (low power)
299 sky130_fd_sc_ls/ 1.8V digital logic (low speed)
300 sky130_fd_sc_ms/ 3.3V digital logic (medium speed)
Tim Edwards55f4d0e2020-07-05 15:41:02 -0400301
302 sky130_fd_io/ Standard I/O
303
Tim Edwardsf8c7eb82021-02-10 09:07:54 -0500304 sky130_fd_pr/ Primitive devices w/fixed layout
Tim Edwards55f4d0e2020-07-05 15:41:02 -0400305
Tim Edwards1168a8b2021-02-10 22:06:54 -0500306 sky130_ml_xx_hd/ Library of alphanumeric layouts
307
Tim Edwards55f4d0e2020-07-05 15:41:02 -0400308 The target installation destinations assume the directory structure above. Changing
309 this requires editing the source files.
310