blob: 05ef504364391d4f8225fbc841d40ba216e1ffd0 [file] [log] [blame]
Ahmed Ghazy6dc7ebf2020-07-29 16:52:14 +02001AC_INIT([open_pdks], [1.0], [github.com/RTimothyEdwards/open_pdks])
2
Tim Edwards66e53e52021-01-24 21:21:36 -05003## REQUIRES: https://www.gnu.org/software/autoconf-archive/ax_python_module.html#ax_python_module
4AM_PATH_PYTHON([3.4])
5AX_PYTHON_MODULE([distutils],[])
6
7realpath() {
8 # Cross-platform, handles ~
9 python3 -c 'import os,sys;print(os.path.realpath(os.path.expanduser(sys.argv@<:@1@:>@)))' $1
10}
11
Ahmed Ghazy6dc7ebf2020-07-29 16:52:14 +020012# detect PDKs based on directories that include Makefile.in files
Tim Edwards8292c902020-12-24 16:25:25 -050013m4_define([M4_GET_TECHS], [m4_normalize(m4_esyscmd(cd .. && find * -mindepth 1 -maxdepth 1 -name "Makefile.in" -exec dirname {} \; | tr "\n" " "))])
Ahmed Ghazy6dc7ebf2020-07-29 16:52:14 +020014
Tim Edwards8292c902020-12-24 16:25:25 -050015# define tools
Tim Edwardsccaea722020-12-24 10:59:42 -050016# define tools to install setup files for. This does not imply that the tools are
17# available on the system; just that open_pdks will install the setup files for them.
18m4_define([M4_GET_TOOLS], [m4_normalize(m4_esyscmd(cat ./tools.txt | tr "\n" " "))])
19
Tim Edwards7cbaaba2020-08-05 12:19:18 -040020# check for the source and install paths for each PDK.
Tim Edwards8292c902020-12-24 16:25:25 -050021AC_DEFUN([M4_GEN_WITH_PDK_ARGS], [
22
23 # --enable-pdk-[pdk]=/path/to/pdk
Ahmed Ghazy6dc7ebf2020-07-29 16:52:14 +020024 m4_foreach_w(pdk, $1, [
Tim Edwards1168a8b2021-02-10 22:06:54 -050025 echo "Checking technology pdk..."
26 m4_define([pdkvar], [m4_normalize(m4_esyscmd(echo pdk | tr "a-z-" "A-Z_"))])
Tim Edwards8292c902020-12-24 16:25:25 -050027
28 pdkvar[]_SOURCE_PATH=""
29 pdkvar[]_LOCAL_PATH=""
30 pdkvar[]_DIST_PATH=""
31 pdkvar[]_LINK_TARGETS="none"
32
33 pdk_get() {
Tim Edwards1168a8b2021-02-10 22:06:54 -050034 AC_CHECK_FILE(../pdk/[pdk]_info.txt, [
35 AC_CHECK_FILE(../sources/pdk,[
Tim Edwards8292c902020-12-24 16:25:25 -050036 echo "Using pre-existing pdk download..."
37 ], [
Tim Edwards1168a8b2021-02-10 22:06:54 -050038 REPO=$(cat "../pdk/pdk_info.txt" | sed -n "1p")
39 POST_CLONE_COMMANDS=$(cat "../pdk/pdk_info.txt" | sed "1d")
40 mkdir -p ../sources
41 git clone "$REPO" ../sources/pdk;
42 (cd ../sources/pdk && sh -c "$POST_CLONE_COMMANDS")
Tim Edwards8292c902020-12-24 16:25:25 -050043 ])
Tim Edwards1168a8b2021-02-10 22:06:54 -050044 export pdkvar[]_SOURCE_PATH=../sources/pdk
Tim Edwards8292c902020-12-24 16:25:25 -050045 ], [
46 AC_MSG_ERROR([PDK pdk cannot be automatically downloaded and requires a path.])
47 ])
48 }
49
Tim Edwardsdebc0a42020-12-28 22:11:40 -050050 pdk_find() {
51 FOUND=0
52 for path in /opt/pdks/pdk /usr/share/pdks/pdk /usr/local/share/pdks/pdk; do
53 if @<:@ -d $path @:>@ ; then
54 echo "Found pdk in $path, using this installation..."
55 export pdkvar[]_SOURCE_PATH=$path
56 FOUND=1
57 fi
58 done
Tim Edwards1168a8b2021-02-10 22:06:54 -050059 if @<:@ "$FOUND" = "0" @:>@; then
60 echo "Could not find pdk in standard search paths, automatically fetching repository to ../sources/pdk ..."
61 pdk_get
Tim Edwardsdebc0a42020-12-28 22:11:40 -050062 fi
63 }
64
Tim Edwards8292c902020-12-24 16:25:25 -050065 AC_ARG_ENABLE(pdk-[pdk],
66 [AS_HELP_STRING([--enable-pdk-[pdk]=@<:@/path/to/pdk/@:>@ --disable-pdk-[pdk]], "location of the source files for the pdk (pdks with a [pdk]_url file can automatically download them if the path is omitted)")],
67 [
68 if test "$enableval" == "yes" -o "$enableval" == "YES"; then
Tim Edwards1168a8b2021-02-10 22:06:54 -050069 echo "Looking for pdk in usual places"
70 pdk_find
Tim Edwards8292c902020-12-24 16:25:25 -050071 elif test "$enableval" == "no" -o "$enableval" == "NO"; then
72 echo "Disabling pdk..."
73 else
Tim Edwardsbb8ab292021-01-22 10:19:40 -050074 pdkvar[]_SOURCE_PATH=$enableval
Tim Edwards8292c902020-12-24 16:25:25 -050075 fi
76 ], [
Tim Edwards8292c902020-12-24 16:25:25 -050077 ]
Ahmed Ghazy6dc7ebf2020-07-29 16:52:14 +020078 )
Tim Edwards8292c902020-12-24 16:25:25 -050079 # # Require this argument
Tim Edwards7cbaaba2020-08-05 12:19:18 -040080
Tim Edwards8292c902020-12-24 16:25:25 -050081 if @<:@ "$[]pdkvar[]_SOURCE_PATH" != "" @:>@; then
Tim Edwards66e53e52021-01-24 21:21:36 -050082 pdkvar[]_SOURCE_PATH=`realpath $[]pdkvar[]_SOURCE_PATH`
83 pdkvar[]_BASENAME=`basename $[]pdkvar[]_SOURCE_PATH`
84 if @<:@ "$[]pdkvar[]_BASENAME" = "libraries" @:>@; then
85 pdkvar[]_SOURCE_PATH=`dirname $[]pdkvar[]_SOURCE_PATH`
86 fi
Tim Edwards8292c902020-12-24 16:25:25 -050087 # basic check that the PDK exists there (the path must exist in any case)
Tim Edwardsbb8ab292021-01-22 10:19:40 -050088 AC_MSG_NOTICE([Checking specified path for 'pdk' at $[]pdkvar[]_SOURCE_PATH])
Tim Edwards8292c902020-12-24 16:25:25 -050089 AC_CHECK_FILE($pdkvar[]_SOURCE_PATH,[
90 AC_MSG_NOTICE(['pdk' source path found at $pdkvar[]_SOURCE_PATH])
91 ], [
92 AC_MSG_ERROR([Specified path for 'pdk' at $pdkvar[]_SOURCE_PATH not found])
93 ])
Tim Edwards7cbaaba2020-08-05 12:19:18 -040094
Tim Edwards8292c902020-12-24 16:25:25 -050095 # --with-pdk-local-path=PDK_LOCAL_PATH
96 AC_ARG_WITH(pdk-local-path,
97 [AS_HELP_STRING([--with-pdk-local-path=/path/to/install/pdk], "run-time location of the PDK")],
98 [pdkvar[]_LOCAL_PATH=$withval]
99 )
100
101 # Require this argument
102 AC_MSG_NOTICE([Checking whether local path is specified for 'pdk'])
103 if test "x$[]pdkvar[]_LOCAL_PATH" == "x" ; then
104 AC_MSG_ERROR([Option --with-pdk-local-path=<path> not specified!])
105 pdkvar[]_LOCAL_PATH=""
106 else
Tim Edwards66e53e52021-01-24 21:21:36 -0500107 pdkvar[]_LOCAL_PATH=`realpath $[]pdkvar[]_LOCAL_PATH`
Tim Edwards8292c902020-12-24 16:25:25 -0500108 fi
Tim Edwards7cbaaba2020-08-05 12:19:18 -0400109
Tim Edwards8292c902020-12-24 16:25:25 -0500110 # --with-pdk-dist-path=PDK_DIST_PATH
111 AC_ARG_WITH(pdk-dist-path,
112 [AS_HELP_STRING([--with-pdk-dist-path=/path/to/install/pdk], "staging location to install the PDK for distribution (optional)")],
113 [pdkvar[]_DIST_PATH=$withval]
114 )
Tim Edwards7cbaaba2020-08-05 12:19:18 -0400115
Tim Edwards8292c902020-12-24 16:25:25 -0500116
117 # "Require" this argument
118 AC_MSG_NOTICE([Checking whether distribution path is specified for 'pdk'])
119 if test "x$[]pdkvar[]_DIST_PATH" == "x" ; then
120 AC_MSG_NOTICE([Option --with-pdk-dist-path=<path> not specified. Local install only.])
121 pdkvar[]_DIST_PATH=""
122 else
Tim Edwards66e53e52021-01-24 21:21:36 -0500123 pdkvar[]_DIST_PATH=`realpath $[]pdkvar[]_DIST_PATH`
Tim Edwards8292c902020-12-24 16:25:25 -0500124 fi
Tim Edwards7cbaaba2020-08-05 12:19:18 -0400125
Tim Edwards8292c902020-12-24 16:25:25 -0500126 # --with-pdk-link-targets=PDK_LINK_TARGETS
127 AC_ARG_WITH(pdk-link-targets,
128 [AS_HELP_STRING([--with-pdk-link-targets=none|source], "make symbolic links to existing files @<:@default=none@:>@")],
129 [[]pdkvar[]_LINK_TARGETS=$with_[]pdk[]_link_targets]
130 )
131 AC_SUBST([]pdkvar[]_LINK_TARGETS)
132 AC_MSG_NOTICE([Link targets set to $pdkvar[]_LINK_TARGETS])
133 fi
Tim Edwards7cbaaba2020-08-05 12:19:18 -0400134
Tim Edwards8292c902020-12-24 16:25:25 -0500135 AC_SUBST(pdkvar[]_SOURCE_PATH)
136 AC_SUBST(pdkvar[]_LOCAL_PATH)
137 AC_SUBST(pdkvar[]_DIST_PATH)
138 AC_SUBST(pdkvar[]_LINK_TARGETS)
Ahmed Ghazy6dc7ebf2020-07-29 16:52:14 +0200139 ])
140])
141
142AC_MSG_NOTICE([Found technology directories: M4_GET_TECHS()])
143
Tim Edwards7cbaaba2020-08-05 12:19:18 -0400144M4_GEN_WITH_PDK_ARGS(M4_GET_TECHS())
Ahmed Ghazy6dc7ebf2020-07-29 16:52:14 +0200145
Tim Edwards8292c902020-12-24 16:25:25 -0500146# Set variables for tool setups
147AC_DEFUN([M4_GEN_WITH_TOOLS], [
148 m4_foreach_w(tool, $1, [
Tim Edwards1168a8b2021-02-10 22:06:54 -0500149 m4_define([toolvar], [m4_normalize(m4_esyscmd(echo tool | tr "a-z-" "A-Z_"))])
Tim Edwards8292c902020-12-24 16:25:25 -0500150
151 toolvar[]_DISABLED=0
152 AC_ARG_ENABLE(tool,
153 AS_HELP_STRING(
154 --enable-tool
Tim Edwards1168a8b2021-02-10 22:06:54 -0500155 Enable or disable tool setup @<:@default=enabled@:>@
Tim Edwards8292c902020-12-24 16:25:25 -0500156 ), [
157 if test "$enableval" == "no" -o "$enableval" == "NO"; then
158 toolvar[]_DISABLED=1
159 fi
160 ]
161 )
162 AC_SUBST(toolvar[]_DISABLED)
163 ])
164])
165
166AC_MSG_NOTICE([Found tools: M4_GET_TOOLS()])
167
168M4_GEN_WITH_TOOLS(M4_GET_TOOLS())
169
170# Magic
171AC_PATH_PROG(MAGIC, magic)
172if test -z "$MAGIC"; then
173 AC_MSG_ERROR([You need 'magic' to generate the needed various cell views.])
174fi
Ahmed Ghazy32385482021-01-19 20:38:14 +0200175AC_PATH_PROG(PATCH, patch)
176if test -z "$PATCH"; then
177 AC_MSG_ERROR([You need 'patch' to apply patches.])
178fi
Tim Edwards8292c902020-12-24 16:25:25 -0500179
180# Other installations (libraries or tools if applicable)
Tim Edwards8292c902020-12-24 16:25:25 -0500181AC_DEFUN([M4_GEN_INSTALLATION], [
182 m4_define([target], $1)
Tim Edwards1168a8b2021-02-10 22:06:54 -0500183 m4_define([targetvar], [m4_normalize(m4_esyscmd(echo target | tr "a-z-" "A-Z_"))])
Tim Edwards8292c902020-12-24 16:25:25 -0500184 m4_define([flag], $2)
185 m4_define([url], $3)
186 m4_define([location], $4)
187
188 # echo target targetvar flag url location
189
190 targetvar[]_PATH=""
191 targetvar[]_GET() {
192 AC_CHECK_FILE(
193 location/target,
194 [
195 echo "Using pre-existing target download..."
196 ], [
197 mkdir -p location/target
198 sh ./download.sh url location/target.tar.gz
Tim Edwards1168a8b2021-02-10 22:06:54 -0500199 (echo "Extracting target..." && cd location && tar -xf target.tar.gz --strip-components 1 -C location/target && rm target.tar.gz )
Tim Edwards8292c902020-12-24 16:25:25 -0500200 ]
201 )
202 export targetvar[]_PATH=location/target
203 }
204
205 AC_ARG_ENABLE(
206 flag,
207 AS_HELP_STRING(
208 [--enable-flag@<:@=path@:>@],
209 [Install target. If path is omitted, it'll be downloaded. @<:@default=disabled@:>@]
210 ), [
211 if test "$enableval" == "yes" -o "$enableval" == "YES"; then
212 targetvar[]_GET
213 XSCHEM_INST=1
214 elif test "$enableval" == "no" -o "$enableval" == "NO"; then
215 echo "Disabling target..."
216 XSCHEM_DISABLED=1
217 else
218 targetvar[]_PATH=$enableval
219 fi
Tim Edwards66e53e52021-01-24 21:21:36 -0500220 targetvar[]_PATH=`realpath $[]targetvar[]_PATH`
Tim Edwards8292c902020-12-24 16:25:25 -0500221 ],
222 []
223 )
224
225 $5
226
227 AC_SUBST(targetvar[]_PATH)
228])
229
Tim Edwards1168a8b2021-02-10 22:06:54 -0500230M4_GEN_INSTALLATION(sky130_ml_xx_hd, alpha-sky130, 'https://github.com/PaulSchulz/sky130_pschulz_xx_hd/archive/master.tar.gz', ../sources)
Tim Edwards8292c902020-12-24 16:25:25 -0500231
Tim Edwards1168a8b2021-02-10 22:06:54 -0500232M4_GEN_INSTALLATION(xschem_sky130, xschem-sky130, 'https://github.com/StefanSchippers/xschem_sky130/archive/main.tar.gz', ../sources)
Tim Edwards8292c902020-12-24 16:25:25 -0500233
Tim Edwardsccaea722020-12-24 10:59:42 -0500234AC_DEFUN([M4_GEN_WITH_TOOLS], [
235 m4_foreach_w(tool, $1, [
Tim Edwards1168a8b2021-02-10 22:06:54 -0500236 m4_define([toolvar], [m4_normalize(m4_esyscmd(echo tool | tr "a-z-" "A-Z_"))])
Tim Edwardsccaea722020-12-24 10:59:42 -0500237
238 toolvar[]_DISABLED=0
239 AC_ARG_ENABLE(tool,
240 AS_HELP_STRING(
241 --enable-tool --disable-tool,
Tim Edwards1168a8b2021-02-10 22:06:54 -0500242 Enable or disable tool setup @<:@default=enabled@:>@
Tim Edwardsccaea722020-12-24 10:59:42 -0500243 ),
244 [
245 if test "$enableval" == "no" -o "$enableval" == "NO"; then
246 toolvar[]_DISABLED=1
247 fi
248 ],
249 )
250 AC_SUBST(toolvar[]_DISABLED)
251 ])
252])
253
254AC_MSG_NOTICE([Tools enabled for PDK setup installation: M4_GET_TOOLS()])
255
Tim Edwards7cbaaba2020-08-05 12:19:18 -0400256# Check for "--with-ef-style"
257EF_STYLE=0
Tim Edwards8292c902020-12-24 16:25:25 -0500258AC_ARG_WITH(
259 [ef-style],
260 AS_HELP_STRING(
261 [--with-ef-style],
262 [Use efabless style file system structure @<:@default=no@:>@]
263 ), [
264 pdks_ef_style=$withval
265 if test "$withval" == "yes" -o "$withval" == "YES"; then
266 EF_STYLE=1
267 fi
268 ],
269)
Ahmed Ghazy6dc7ebf2020-07-29 16:52:14 +0200270
Tim Edwards7cbaaba2020-08-05 12:19:18 -0400271AC_SUBST(EF_STYLE)
Ahmed Ghazy6dc7ebf2020-07-29 16:52:14 +0200272
273MAKEFILES=$(find .. -name "Makefile.in" | sed 's/\(.*\)\.in/\1/g')
274AC_CONFIG_FILES($MAKEFILES)
275
276AC_OUTPUT
277
278AC_MSG_RESULT(Build configured successfully)