Ahmed Ghazy | 6dc7ebf | 2020-07-29 16:52:14 +0200 | [diff] [blame] | 1 | AC_INIT([open_pdks], [1.0], [github.com/RTimothyEdwards/open_pdks]) |
| 2 | |
Tim Edwards | 66e53e5 | 2021-01-24 21:21:36 -0500 | [diff] [blame] | 3 | ## REQUIRES: https://www.gnu.org/software/autoconf-archive/ax_python_module.html#ax_python_module |
| 4 | AM_PATH_PYTHON([3.4]) |
| 5 | AX_PYTHON_MODULE([distutils],[]) |
| 6 | |
| 7 | realpath() { |
| 8 | # Cross-platform, handles ~ |
| 9 | python3 -c 'import os,sys;print(os.path.realpath(os.path.expanduser(sys.argv@<:@1@:>@)))' $1 |
| 10 | } |
| 11 | |
Ahmed Ghazy | 6dc7ebf | 2020-07-29 16:52:14 +0200 | [diff] [blame] | 12 | # detect PDKs based on directories that include Makefile.in files |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 13 | m4_define([M4_GET_TECHS], [m4_normalize(m4_esyscmd(cd .. && find * -mindepth 1 -maxdepth 1 -name "Makefile.in" -exec dirname {} \; | tr "\n" " "))]) |
Ahmed Ghazy | 6dc7ebf | 2020-07-29 16:52:14 +0200 | [diff] [blame] | 14 | |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 15 | # define tools |
Tim Edwards | ccaea72 | 2020-12-24 10:59:42 -0500 | [diff] [blame] | 16 | # 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. |
| 18 | m4_define([M4_GET_TOOLS], [m4_normalize(m4_esyscmd(cat ./tools.txt | tr "\n" " "))]) |
| 19 | |
Tim Edwards | 7cbaaba | 2020-08-05 12:19:18 -0400 | [diff] [blame] | 20 | # check for the source and install paths for each PDK. |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 21 | AC_DEFUN([M4_GEN_WITH_PDK_ARGS], [ |
| 22 | |
| 23 | # --enable-pdk-[pdk]=/path/to/pdk |
Ahmed Ghazy | 6dc7ebf | 2020-07-29 16:52:14 +0200 | [diff] [blame] | 24 | m4_foreach_w(pdk, $1, [ |
Tim Edwards | 1168a8b | 2021-02-10 22:06:54 -0500 | [diff] [blame^] | 25 | echo "Checking technology pdk..." |
| 26 | m4_define([pdkvar], [m4_normalize(m4_esyscmd(echo pdk | tr "a-z-" "A-Z_"))]) |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 27 | |
| 28 | pdkvar[]_SOURCE_PATH="" |
| 29 | pdkvar[]_LOCAL_PATH="" |
| 30 | pdkvar[]_DIST_PATH="" |
| 31 | pdkvar[]_LINK_TARGETS="none" |
| 32 | |
| 33 | pdk_get() { |
Tim Edwards | 1168a8b | 2021-02-10 22:06:54 -0500 | [diff] [blame^] | 34 | AC_CHECK_FILE(../pdk/[pdk]_info.txt, [ |
| 35 | AC_CHECK_FILE(../sources/pdk,[ |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 36 | echo "Using pre-existing pdk download..." |
| 37 | ], [ |
Tim Edwards | 1168a8b | 2021-02-10 22:06:54 -0500 | [diff] [blame^] | 38 | 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 Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 43 | ]) |
Tim Edwards | 1168a8b | 2021-02-10 22:06:54 -0500 | [diff] [blame^] | 44 | export pdkvar[]_SOURCE_PATH=../sources/pdk |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 45 | ], [ |
| 46 | AC_MSG_ERROR([PDK pdk cannot be automatically downloaded and requires a path.]) |
| 47 | ]) |
| 48 | } |
| 49 | |
Tim Edwards | debc0a4 | 2020-12-28 22:11:40 -0500 | [diff] [blame] | 50 | 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 Edwards | 1168a8b | 2021-02-10 22:06:54 -0500 | [diff] [blame^] | 59 | if @<:@ "$FOUND" = "0" @:>@; then |
| 60 | echo "Could not find pdk in standard search paths, automatically fetching repository to ../sources/pdk ..." |
| 61 | pdk_get |
Tim Edwards | debc0a4 | 2020-12-28 22:11:40 -0500 | [diff] [blame] | 62 | fi |
| 63 | } |
| 64 | |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 65 | 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 Edwards | 1168a8b | 2021-02-10 22:06:54 -0500 | [diff] [blame^] | 69 | echo "Looking for pdk in usual places" |
| 70 | pdk_find |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 71 | elif test "$enableval" == "no" -o "$enableval" == "NO"; then |
| 72 | echo "Disabling pdk..." |
| 73 | else |
Tim Edwards | bb8ab29 | 2021-01-22 10:19:40 -0500 | [diff] [blame] | 74 | pdkvar[]_SOURCE_PATH=$enableval |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 75 | fi |
| 76 | ], [ |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 77 | ] |
Ahmed Ghazy | 6dc7ebf | 2020-07-29 16:52:14 +0200 | [diff] [blame] | 78 | ) |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 79 | # # Require this argument |
Tim Edwards | 7cbaaba | 2020-08-05 12:19:18 -0400 | [diff] [blame] | 80 | |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 81 | if @<:@ "$[]pdkvar[]_SOURCE_PATH" != "" @:>@; then |
Tim Edwards | 66e53e5 | 2021-01-24 21:21:36 -0500 | [diff] [blame] | 82 | 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 Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 87 | # basic check that the PDK exists there (the path must exist in any case) |
Tim Edwards | bb8ab29 | 2021-01-22 10:19:40 -0500 | [diff] [blame] | 88 | AC_MSG_NOTICE([Checking specified path for 'pdk' at $[]pdkvar[]_SOURCE_PATH]) |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 89 | 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 Edwards | 7cbaaba | 2020-08-05 12:19:18 -0400 | [diff] [blame] | 94 | |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 95 | # --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 Edwards | 66e53e5 | 2021-01-24 21:21:36 -0500 | [diff] [blame] | 107 | pdkvar[]_LOCAL_PATH=`realpath $[]pdkvar[]_LOCAL_PATH` |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 108 | fi |
Tim Edwards | 7cbaaba | 2020-08-05 12:19:18 -0400 | [diff] [blame] | 109 | |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 110 | # --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 Edwards | 7cbaaba | 2020-08-05 12:19:18 -0400 | [diff] [blame] | 115 | |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 116 | |
| 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 Edwards | 66e53e5 | 2021-01-24 21:21:36 -0500 | [diff] [blame] | 123 | pdkvar[]_DIST_PATH=`realpath $[]pdkvar[]_DIST_PATH` |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 124 | fi |
Tim Edwards | 7cbaaba | 2020-08-05 12:19:18 -0400 | [diff] [blame] | 125 | |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 126 | # --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 Edwards | 7cbaaba | 2020-08-05 12:19:18 -0400 | [diff] [blame] | 134 | |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 135 | AC_SUBST(pdkvar[]_SOURCE_PATH) |
| 136 | AC_SUBST(pdkvar[]_LOCAL_PATH) |
| 137 | AC_SUBST(pdkvar[]_DIST_PATH) |
| 138 | AC_SUBST(pdkvar[]_LINK_TARGETS) |
Ahmed Ghazy | 6dc7ebf | 2020-07-29 16:52:14 +0200 | [diff] [blame] | 139 | ]) |
| 140 | ]) |
| 141 | |
| 142 | AC_MSG_NOTICE([Found technology directories: M4_GET_TECHS()]) |
| 143 | |
Tim Edwards | 7cbaaba | 2020-08-05 12:19:18 -0400 | [diff] [blame] | 144 | M4_GEN_WITH_PDK_ARGS(M4_GET_TECHS()) |
Ahmed Ghazy | 6dc7ebf | 2020-07-29 16:52:14 +0200 | [diff] [blame] | 145 | |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 146 | # Set variables for tool setups |
| 147 | AC_DEFUN([M4_GEN_WITH_TOOLS], [ |
| 148 | m4_foreach_w(tool, $1, [ |
Tim Edwards | 1168a8b | 2021-02-10 22:06:54 -0500 | [diff] [blame^] | 149 | m4_define([toolvar], [m4_normalize(m4_esyscmd(echo tool | tr "a-z-" "A-Z_"))]) |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 150 | |
| 151 | toolvar[]_DISABLED=0 |
| 152 | AC_ARG_ENABLE(tool, |
| 153 | AS_HELP_STRING( |
| 154 | --enable-tool |
Tim Edwards | 1168a8b | 2021-02-10 22:06:54 -0500 | [diff] [blame^] | 155 | Enable or disable tool setup @<:@default=enabled@:>@ |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 156 | ), [ |
| 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 | |
| 166 | AC_MSG_NOTICE([Found tools: M4_GET_TOOLS()]) |
| 167 | |
| 168 | M4_GEN_WITH_TOOLS(M4_GET_TOOLS()) |
| 169 | |
| 170 | # Magic |
| 171 | AC_PATH_PROG(MAGIC, magic) |
| 172 | if test -z "$MAGIC"; then |
| 173 | AC_MSG_ERROR([You need 'magic' to generate the needed various cell views.]) |
| 174 | fi |
Ahmed Ghazy | 3238548 | 2021-01-19 20:38:14 +0200 | [diff] [blame] | 175 | AC_PATH_PROG(PATCH, patch) |
| 176 | if test -z "$PATCH"; then |
| 177 | AC_MSG_ERROR([You need 'patch' to apply patches.]) |
| 178 | fi |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 179 | |
| 180 | # Other installations (libraries or tools if applicable) |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 181 | AC_DEFUN([M4_GEN_INSTALLATION], [ |
| 182 | m4_define([target], $1) |
Tim Edwards | 1168a8b | 2021-02-10 22:06:54 -0500 | [diff] [blame^] | 183 | m4_define([targetvar], [m4_normalize(m4_esyscmd(echo target | tr "a-z-" "A-Z_"))]) |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 184 | 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 Edwards | 1168a8b | 2021-02-10 22:06:54 -0500 | [diff] [blame^] | 199 | (echo "Extracting target..." && cd location && tar -xf target.tar.gz --strip-components 1 -C location/target && rm target.tar.gz ) |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 200 | ] |
| 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 Edwards | 66e53e5 | 2021-01-24 21:21:36 -0500 | [diff] [blame] | 220 | targetvar[]_PATH=`realpath $[]targetvar[]_PATH` |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 221 | ], |
| 222 | [] |
| 223 | ) |
| 224 | |
| 225 | $5 |
| 226 | |
| 227 | AC_SUBST(targetvar[]_PATH) |
| 228 | ]) |
| 229 | |
Tim Edwards | 1168a8b | 2021-02-10 22:06:54 -0500 | [diff] [blame^] | 230 | M4_GEN_INSTALLATION(sky130_ml_xx_hd, alpha-sky130, 'https://github.com/PaulSchulz/sky130_pschulz_xx_hd/archive/master.tar.gz', ../sources) |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 231 | |
Tim Edwards | 1168a8b | 2021-02-10 22:06:54 -0500 | [diff] [blame^] | 232 | M4_GEN_INSTALLATION(xschem_sky130, xschem-sky130, 'https://github.com/StefanSchippers/xschem_sky130/archive/main.tar.gz', ../sources) |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 233 | |
Tim Edwards | ccaea72 | 2020-12-24 10:59:42 -0500 | [diff] [blame] | 234 | AC_DEFUN([M4_GEN_WITH_TOOLS], [ |
| 235 | m4_foreach_w(tool, $1, [ |
Tim Edwards | 1168a8b | 2021-02-10 22:06:54 -0500 | [diff] [blame^] | 236 | m4_define([toolvar], [m4_normalize(m4_esyscmd(echo tool | tr "a-z-" "A-Z_"))]) |
Tim Edwards | ccaea72 | 2020-12-24 10:59:42 -0500 | [diff] [blame] | 237 | |
| 238 | toolvar[]_DISABLED=0 |
| 239 | AC_ARG_ENABLE(tool, |
| 240 | AS_HELP_STRING( |
| 241 | --enable-tool --disable-tool, |
Tim Edwards | 1168a8b | 2021-02-10 22:06:54 -0500 | [diff] [blame^] | 242 | Enable or disable tool setup @<:@default=enabled@:>@ |
Tim Edwards | ccaea72 | 2020-12-24 10:59:42 -0500 | [diff] [blame] | 243 | ), |
| 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 | |
| 254 | AC_MSG_NOTICE([Tools enabled for PDK setup installation: M4_GET_TOOLS()]) |
| 255 | |
Tim Edwards | 7cbaaba | 2020-08-05 12:19:18 -0400 | [diff] [blame] | 256 | # Check for "--with-ef-style" |
| 257 | EF_STYLE=0 |
Tim Edwards | 8292c90 | 2020-12-24 16:25:25 -0500 | [diff] [blame] | 258 | AC_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 Ghazy | 6dc7ebf | 2020-07-29 16:52:14 +0200 | [diff] [blame] | 270 | |
Tim Edwards | 7cbaaba | 2020-08-05 12:19:18 -0400 | [diff] [blame] | 271 | AC_SUBST(EF_STYLE) |
Ahmed Ghazy | 6dc7ebf | 2020-07-29 16:52:14 +0200 | [diff] [blame] | 272 | |
| 273 | MAKEFILES=$(find .. -name "Makefile.in" | sed 's/\(.*\)\.in/\1/g') |
| 274 | AC_CONFIG_FILES($MAKEFILES) |
| 275 | |
| 276 | AC_OUTPUT |
| 277 | |
| 278 | AC_MSG_RESULT(Build configured successfully) |