blob: 7747b7618805fbb12829bd47d3515146dacee104 [file] [log] [blame]
Patrick Venturec7ca2912018-11-02 11:38:33 -07001# Initialization
2AC_PREREQ([2.69])
Patrick Venturea29216e2019-06-27 11:06:36 -07003AC_INIT([phosphor-ipmi-flash], [1.0], [https://github.com/openbmc/phosphor-ipmi-flash/issues])
Patrick Venturec7ca2912018-11-02 11:38:33 -07004AC_LANG([C++])
5AC_CONFIG_HEADERS([config.h])
Patrick Venture30993b32018-11-28 14:52:00 -08006AC_CONFIG_MACRO_DIRS([m4])
Patrick Venture9dc342a2019-03-18 08:43:36 -07007AM_INIT_AUTOMAKE([subdir-objects -Wall -Wno-portability -Werror foreign dist-xz])
Patrick Venturec7ca2912018-11-02 11:38:33 -07008AM_SILENT_RULES([yes])
9
Patrick Venture2f3b4b62019-03-08 13:22:40 -080010# Make sure the default CFLAGS of `-O2 -g` don't override CODE_COVERAGE_CFLAGS
11# It is important that this comes before AC_PROG_C{C,XX}, as we are attempting
12# to stop them from populating default CFLAGS and CXXFLAGS.
13AS_IF([test "x$enable_tests" = "xno"], [enable_code_coverage=no])
14AS_IF([test "x$enable_code_coverage" != "xno"], [
15 AS_IF([test "x${CXXFLAGS+set}" != "xset"], [
16 AC_SUBST(CXXFLAGS, [""])
17 ])
18 AS_IF([test "x${CFLAGS+set}" != "xset"], [
19 AC_SUBST(CFLAGS, [""])
20 ])
21])
22
Patrick Ventureac570a12019-05-08 08:53:16 -070023# If building tests, enable both hardware options that are configuration controlled
24AS_IF([test "x$enable_tests" = "xyes"], [enable_static_layout=yes])
25AS_IF([test "x$enable_tests" = "xyes"], [enable_tarball_ubi=yes])
26
Patrick Ventureac570a12019-05-08 08:53:16 -070027AS_IF([test "x$enable_tests" = "xyes"], [enable_aspeed_p2a=yes])
28
29# You can only build main.o with one of the lpc implementations, however, specify both.
Patrick Ventureac570a12019-05-08 08:53:16 -070030AS_IF([test "x$enable_tests" = "xyes"], [enable_aspeed_lpc=yes])
31AS_IF([test "x$enable_tests" = "xyes"], [enable_nuvoton_lpc=yes])
32
Patrick Venturede04c772019-07-19 13:37:30 -070033AS_IF([test "x$enable_host_bios" = "xyes"], [enable_host_bios=yes])
34
Patrick Venture9efef5d2019-06-19 08:45:44 -070035# If building tests, enable building all cleanup handler options.
36AS_IF([test "x$enable_tests" = "xyes"], [enable_cleanup_delete=yes])
37
Patrick Venturec7ca2912018-11-02 11:38:33 -070038# Checks for programs.
39AC_PROG_CXX
40AM_PROG_AR
41AC_PROG_INSTALL
42AC_PROG_MAKE_SET
43
44# Checks for typedefs, structures, and compiler characteristics.
45AX_CXX_COMPILE_STDCXX_17([noext])
46AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS])
47
48# Checks for library functions.
Patrick Venturefd182162019-07-01 07:39:31 -070049LT_INIT
Patrick Venturec7ca2912018-11-02 11:38:33 -070050
Patrick Venturec2298de2019-06-26 19:12:12 -070051# Enable building the host tool (default: yes)
52AC_ARG_ENABLE([build-host-tool],
53 AC_HELP_STRING([--disable-build-host-tool], [Disable building the host tool])
Patrick Venture4b4ea212018-11-21 21:23:53 -080054)
Patrick Venturec2298de2019-06-26 19:12:12 -070055AM_CONDITIONAL([BUILD_HOST_TOOL], [test "x$enable_build_host_tool" != "xno"])
56
Patrick Venture0d3b8722019-06-27 07:04:06 -070057# Enable building the bmc (default: yes)
58AC_ARG_ENABLE([build-bmc-blob-handler],
59 AC_HELP_STRING([--disable-build-bmc-blob-handler], [Disable buliding the BMC BLOB handler])
60)
61AM_CONDITIONAL([BUILD_BMC_HANDLER], [test "x$enable_build_bmc_blob_handler" != "xno"])
62
Patrick Venture7c2a00e2019-07-01 17:33:03 -070063# Enable building host-bios support into the BMC (default: no)
64# This is only set if build-bmc-blob-handler is not "no."
65AC_ARG_ENABLE([host-bios],
66 AC_HELP_STRING([--enable-host-bios], [Enable supporting the host bios])
67)
68
Patrick Venturec37fe1e2019-06-27 07:49:12 -070069# Build the BMC by default, so check if set to no.
70AS_IF([test "x$enable_build_bmc_blob_handler" != "xno"], [
Patrick Venturefd182162019-07-01 07:39:31 -070071 PKG_CHECK_MODULES([SYSTEMD], [libsystemd >= 221])
72
Patrick Venturec2298de2019-06-26 19:12:12 -070073 PKG_CHECK_MODULES(
74 [SDBUSPLUS],
75 [sdbusplus],
76 [AC_DEFINE(HAVE_SDBUSPLUS, [1], [Found openbmc/sdbusplus package])],
77 [AC_MSG_ERROR([The openbmc/sdbusplus package is required])]
78 )
79
Patrick Venture84778b82019-06-26 20:11:09 -070080 AC_CHECK_HEADER(
81 [blobs-ipmid/blobs.hpp],
82 [],
83 [AC_MSG_ERROR(["phosphor-ipmi-blobs required and not found."])]
84 )
Patrick Venturefd182162019-07-01 07:39:31 -070085
Patrick Venture298930a2019-07-03 11:44:52 -070086 AC_CHECK_HEADER(
William A. Kennington III4175b4c2020-12-23 22:45:18 -080087 [function2/function2.hpp],
88 [],
89 [AC_MSG_ERROR([Could not find function2/function2.hpp])]
90 )
91
92 AC_CHECK_HEADER(
Patrick Venture298930a2019-07-03 11:44:52 -070093 [nlohmann/json.hpp],
94 [],
95 [AC_MSG_ERROR([Could not find nlohmann/json.hpp])]
96 )
97
Patrick Venturefd182162019-07-01 07:39:31 -070098 PKG_PROG_PKG_CONFIG
99 AC_ARG_WITH([systemdsystemunitdir],
100 [AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files])],
101 [],
102 [with_systemdsystemunitdir=auto]
103 )
William A. Kennington III22f8bf32021-01-29 03:15:25 -0800104 AS_IF([test "x$with_systemdsystemunitdir" = "xyes" -o "x$with_systemdsystemunitdir" = "xauto"], [
105 PKG_CHECK_VAR([SYSTEMUNITDIR], [systemd], [systemdsystemunitdir], [with_systemdsystemunitdir="$SYSTEMUNITDIR"], [])
106 ])
107 AS_IF([test "x$with_systemdsystemunitdir" = "xyes"], [
108 AC_MSG_ERROR([systemdsystemunitdir requested but pkg-config unable to query systemd package])
109 ])
110 AS_IF([test "x$with_systemdsystemunitdir" = "xno" -o "x$with_systemdsystemunitdir" = "xauto"], [
111 with_systemdsystemunitdir=''
112 ])
113 AC_SUBST([systemdsystemunitdir], ["$with_systemdsystemunitdir"])
114 AM_CONDITIONAL([HAVE_SYSTEMUNITDIR], [test "x$with_systemdsystemunitdir" != "x"])
Patrick Venture7c2a00e2019-07-01 17:33:03 -0700115
William A. Kennington III43344a12021-01-29 11:48:31 -0800116 PKG_PROG_PKG_CONFIG
117 AC_ARG_WITH([tmpfilesdir],
118 [AS_HELP_STRING([--with-tmpfiledir=DIR], [Directory for systemd tmpfile config])],
119 [],
120 [with_tmpfilesdir=auto]
121 )
122 AS_IF([test "x$with_tmpfilesdir" = "xyes" -o "x$with_tmpfilesdir" = "xauto"], [
123 PKG_CHECK_VAR([TMPFILESDIR], [systemd], [tmpfilesdir], [with_tmpfilesdir="$TMPFILESDIR"], [])
124 ])
125 AS_IF([test "x$with_tmpfilesdir" = "xyes"], [
126 AC_MSG_ERROR([tmpfilesdir requested but pkg-config unable to query systemd package])
127 ])
128 AS_IF([test "x$with_tmpfilesdir" = "xno" -o "x$with_tmpfilesdir" = "xauto"], [
129 with_tmpfilesdir=''
130 ])
131 AC_SUBST([tmpfilesdir], ["$with_tmpfilesdir"])
132 AM_CONDITIONAL([HAVE_TMPFILESDIR], [test "x$with_tmpfilesdir" != "x"])
133
Patrick Venture7c2a00e2019-07-01 17:33:03 -0700134 # Only set if build-bmc-blob-handler wasn't unset.
Patrick Venturede04c772019-07-19 13:37:30 -0700135 AM_CONDITIONAL([ENABLE_HOST_BIOS], [test "x$enable_host_bios" = "xyes"])
136 AS_IF([test "x$enable_host_bios" = "xyes"], [
137 AX_APPEND_COMPILE_FLAGS([-DENABLE_HOST_BIOS], [CXXFLAGS])
138 ])
Patrick Venture413c0d62019-07-19 09:04:50 -0700139], [
Patrick Venture413c0d62019-07-19 09:04:50 -0700140 AM_CONDITIONAL([ENABLE_HOST_BIOS], [0])
Patrick Venturec2298de2019-06-26 19:12:12 -0700141])
142
Patrick Venturec37fe1e2019-06-27 07:49:12 -0700143# If not building the host-tool, we're building the BMC.
144AS_IF([test "x$enable_build_host_tool" != "xno"], [
145 PKG_CHECK_MODULES(
Benjamin Fairc04c2c52020-06-05 09:14:44 -0700146 [PCIACCESS],
147 [pciaccess >= 0.8.0],
Patrick Venturec37fe1e2019-06-27 07:49:12 -0700148 [],
Benjamin Fairc04c2c52020-06-05 09:14:44 -0700149 [AC_MSG_ERROR([Could not find libpciaccess... pciaccess package required])]
Patrick Venturec37fe1e2019-06-27 07:49:12 -0700150 )
Benjamin Faire5aafa52020-06-05 21:04:24 -0700151 PKG_CHECK_MODULES(
152 [STDPLUS],
153 [stdplus],
154 [],
155 [AC_MSG_ERROR([Could not find stdplus... openbmc/stdplus package required])]
156 )
157 PKG_CHECK_MODULES(
158 [FMT],
159 [fmt],
160 [],
161 [AC_MSG_ERROR([Could not find fmt... fmtlib/fmt package required])]
162 )
Patrick Venturec37fe1e2019-06-27 07:49:12 -0700163])
164
Patrick Venturec2298de2019-06-26 19:12:12 -0700165# These packages are required for both the BMC and the host-tool.
Patrick Venture8b3b3252019-03-07 07:50:13 -0800166PKG_CHECK_MODULES(
167 [IPMIBLOB],
168 [ipmiblob],
169 [],
170 [AC_MSG_ERROR(
171 [Could not find ipmiblob...openbmc/ipmi-blob-tool package required])
172 ]
173)
Patrick Venturec7ca2912018-11-02 11:38:33 -0700174AX_PTHREAD([], [AC_MSG_ERROR(["pthread required and not found"])])
175
Patrick Venturefa6c4d92018-11-02 18:34:53 -0700176# Configurability
Patrick Venturecf10cda2019-05-15 10:35:10 -0700177
Rui Zhangd8515a62020-03-24 16:46:44 -0700178# Enable ppc host memory access
179AC_ARG_ENABLE([ppc],
180 AS_HELP_STRING([--enable-ppc],
181 [Enable ppc host memory access.]))
182AM_CONDITIONAL([ENABLE_PPC], [test "x$enable_ppc" = "xyes"])
183AS_IF([test "x$enable_ppc" = "xyes"], [
184 AX_APPEND_COMPILE_FLAGS([-DENABLE_PPC], [CXXFLAGS])
185])
186
Patrick Venture6f81b162019-05-20 14:02:59 -0700187# Enable the reboot update mechanism
188AC_ARG_ENABLE([reboot-update],
189 AS_HELP_STRING([--enable-reboot-update],
190 [Enable use of reboot update mechanism.]))
Patrick Venture298930a2019-07-03 11:44:52 -0700191AM_CONDITIONAL([ENABLE_REBOOT_UPDATE], [test "x$enable_reboot_update" = "xyes"])
Patrick Venture6f81b162019-05-20 14:02:59 -0700192AS_IF([test "x$enable_reboot_update" = "xyes"], [
193 AX_APPEND_COMPILE_FLAGS([-DENABLE_REBOOT_UPDATE], [CXXFLAGS])
194])
195
Brandon Kimcec91dd2019-09-16 17:24:40 -0700196# Enable the update with status file
197AC_ARG_ENABLE([update-status],
198 AS_HELP_STRING([--enable-update-status],
199 [Enable use of update status file.]))
200AM_CONDITIONAL([ENABLE_UPDATE_STATUS], [test "x$enable_update_status" = "xyes"])
201AS_IF([test "x$enable_update_status" = "xyes"], [
202 AX_APPEND_COMPILE_FLAGS([-DENABLE_UPDATE_STATUS], [CXXFLAGS])
203])
204
Patrick Venture0d3b8722019-06-27 07:04:06 -0700205# Enable the cleanup handle that deletes the temporary files. (default: no)
Patrick Venture9efef5d2019-06-19 08:45:44 -0700206AC_ARG_ENABLE([cleanup-delete],
207 AS_HELP_STRING([--enable-cleanup-delete],
208 [Enable use of the delete files cleanup mechanism.]))
209AM_CONDITIONAL([BUILD_CLEANUP_DELETE], [test "x$enable_cleanup_delete" = "xyes"])
210
Patrick Venturefa6c4d92018-11-02 18:34:53 -0700211# Enable static layout for firmware image staging.
212AC_ARG_ENABLE([static-layout],
213 AS_HELP_STRING([--enable-static-layout],
214 [Enable static layout firmware update via Blobs]))
Patrick Venture298930a2019-07-03 11:44:52 -0700215AM_CONDITIONAL([ENABLE_STATIC_LAYOUT], [test "x$enable_static_layout" = "xyes"])
Patrick Venturefa6c4d92018-11-02 18:34:53 -0700216AS_IF([test "x$enable_static_layout" = "xyes"], [
217 AX_APPEND_COMPILE_FLAGS([-DENABLE_STATIC_LAYOUT], [CXXFLAGS])
218])
Patrick Ventured46b8112018-11-15 13:38:55 -0800219# Enable tarball for firmware image staging.
220AC_ARG_ENABLE([tarball-ubi],
221 AS_HELP_STRING([--enable-tarball-ubi],
222 [Enable tarball firmware update via Blobs]))
Patrick Venture80bfa672019-05-08 15:24:48 -0700223AS_IF([test "x$enable_tarball_ubi" = "xyes"], [
Patrick Ventured46b8112018-11-15 13:38:55 -0800224 AX_APPEND_COMPILE_FLAGS([-DENABLE_TARBALL_UBI], [CXXFLAGS])
225])
Patrick Venture002916a2018-11-15 10:38:07 -0800226
Patrick Ventureb90cacd2019-07-01 11:53:57 -0700227AS_IF([test "x$enable_tarball_ubi" = "xyes"], [
228 AS_IF([test "x$enable_static_layout" = "xyes"], [
229 AS_IF([test "x$enable_tests" != "xyes"], [
230 AC_MSG_ERROR([Invalid configuration enabling both static and ubi tarball bmc image types.])
231 ])
232 ])
233])
234
Patrick Venture002916a2018-11-15 10:38:07 -0800235# The address used for mapping P2A or LPC into the BMC's memory-space:
236# e.g. https://github.com/openbmc/linux/blob/1da2ce51886a3b2f5db2087f26c661e13ee13b84/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts#L26
237# or https://github.com/openbmc/linux/blob/1da2ce51886a3b2f5db2087f26c661e13ee13b84/arch/arm/boot/dts/aspeed-bmc-opp-zaius.dts#L166
238# for PCI, this address is passed back to the host and is used directly.
239AC_ARG_VAR(MAPPED_ADDRESS, [The base address of the memory region reserved for mapping.])
240AS_IF([test "x$MAPPED_ADDRESS" == "x"],
Patrick Venturece6b8742019-01-15 12:11:02 -0800241 [AC_DEFINE_UNQUOTED(MAPPED_ADDRESS, [0], [Default address to 0.])],
242 [AC_DEFINE_UNQUOTED(MAPPED_ADDRESS, [$MAPPED_ADDRESS], [Value for memory region mapping.])]
Patrick Venture002916a2018-11-15 10:38:07 -0800243)
244
Patrick Venturee7728422018-11-14 20:16:33 -0800245AC_ARG_ENABLE([aspeed-lpc],
246 AS_HELP_STRING([--enable-aspeed-lpc],
247 [Enable external transfers using Aspeed LPC]))
Patrick Ventureac570a12019-05-08 08:53:16 -0700248AM_CONDITIONAL(ENABLE_ASPEED_LPC, [test "x$enable_aspeed_lpc" = "xyes"])
Patrick Venturee7728422018-11-14 20:16:33 -0800249AS_IF([test "x$enable_aspeed_lpc" = "xyes"], [
Patrick Venture39b13052019-05-01 13:23:52 -0700250 AC_CHECK_HEADER(
251 [linux/aspeed-lpc-ctrl.h],
252 [],
253 [AC_MSG_ERROR([Could not find linux/aspeed-lpc-ctrl.h])]
Patrick Venturee7728422018-11-14 20:16:33 -0800254 )
Patrick Venture39b13052019-05-01 13:23:52 -0700255
Patrick Venturee7728422018-11-14 20:16:33 -0800256 AX_APPEND_COMPILE_FLAGS([-DASPEED_LPC], [CXXFLAGS])
Patrick Venture33740b92019-06-28 19:22:21 -0700257 AX_APPEND_COMPILE_FLAGS([-DENABLE_LPC_BRIDGE], [CXXFLAGS])
Patrick Venturee7728422018-11-14 20:16:33 -0800258])
259AC_ARG_ENABLE([nuvoton-lpc],
260 AS_HELP_STRING([--enable-nuvoton-lpc],
261 [Enable external transfers using Nuvoton LPC SHM]))
Patrick Ventureac570a12019-05-08 08:53:16 -0700262AM_CONDITIONAL(ENABLE_NUVOTON_LPC, [test "x$enable_nuvoton_lpc" = "xyes"])
Patrick Venturee7728422018-11-14 20:16:33 -0800263AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [
264 AX_APPEND_COMPILE_FLAGS([-DNUVOTON_LPC], [CXXFLAGS])
Patrick Venture33740b92019-06-28 19:22:21 -0700265 AX_APPEND_COMPILE_FLAGS([-DENABLE_LPC_BRIDGE], [CXXFLAGS])
Patrick Venturee7728422018-11-14 20:16:33 -0800266])
267
Patrick Venturee1f6d7d2019-06-28 18:08:49 -0700268AS_IF([test "x$enable_aspeed_lpc" = "xyes"], [
269 AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [
270 AS_IF([test "x$enable_tests" != "xyes"], [
271 AC_MSG_ERROR([Invalid configuration enabling both ASPEED and Nuvoton.])
272 ])
273 ])
274])
275
Patrick Venturea68d3442019-04-30 12:51:07 -0700276AC_ARG_ENABLE([aspeed-p2a],
277 AS_HELP_STRING([--enable-aspeed-p2a],
278 [Enable external transfers using Aspeed PCI-to-AHB]))
Patrick Ventureac570a12019-05-08 08:53:16 -0700279AM_CONDITIONAL(ENABLE_ASPEED_P2A, [test "x$enable_aspeed_p2a" = "xyes"])
Patrick Venturea68d3442019-04-30 12:51:07 -0700280AS_IF([test "x$enable_aspeed_p2a" = "xyes"], [
281 AC_CHECK_HEADER(linux/aspeed-p2a-ctrl.h,
282 [HAVE_UAPI_LINUX_P2A_CTRL_H=""],
283 [HAVE_UAPI_LINUX_P2A_CTRL_H="-I linux/aspeed-p2a-ctrl.h"])
284 AS_IF([test "$HAVE_UAPI_LINUX_P2A_CTRL_H" != ""],
285 AC_MSG_WARN([Could not find linux/aspeed-p2a-ctrl.h: Attempting to download locally for building from openbmc/linux/+/dev-5.0])
286 AC_SUBST([PCI_BMC_DL],
287 [`mkdir -p linux;wget https://raw.githubusercontent.com/openbmc/linux/dev-5.0/include/uapi/linux/aspeed-p2a-ctrl.h -O linux/aspeed-p2a-ctrl.h`])
288 )
289 AX_APPEND_COMPILE_FLAGS([-DASPEED_P2A], [CXXFLAGS])
Patrick Venture89e97ba2019-06-28 19:07:59 -0700290 AX_APPEND_COMPILE_FLAGS([-DENABLE_PCI_BRIDGE], [CXXFLAGS])
Patrick Venturea68d3442019-04-30 12:51:07 -0700291])
292
Medad CChien874bdf92019-10-31 14:38:15 +0800293AC_ARG_ENABLE([nuvoton-p2a-vga],
294 AS_HELP_STRING([--enable-nuvoton-p2a-vga],
295 [Enable external transfers using Nuvoton PCI-to-AHB via VGA]))
296
297AM_CONDITIONAL(ENABLE_NUVOTON_P2A_VGA, [test "x$enable_nuvoton_p2a_vga" = "xyes"])
298AS_IF([test "x$enable_nuvoton_p2a_vga" = "xyes"], [
299 AX_APPEND_COMPILE_FLAGS([-DNUVOTON_P2A_VGA], [CXXFLAGS])
300 AX_APPEND_COMPILE_FLAGS([-DENABLE_PCI_BRIDGE], [CXXFLAGS])
301])
302
303AC_ARG_ENABLE([nuvoton-p2a-mbox],
304 AS_HELP_STRING([--enable-nuvoton-p2a-mbox],
305 [Enable external transfers using Nuvoton PCI-to-AHB via MBOX]))
306
307AM_CONDITIONAL(ENABLE_NUVOTON_P2A_MBOX, [test "x$enable_nuvoton_p2a_mbox" = "xyes"])
308AS_IF([test "x$enable_nuvoton_p2a_mbox" = "xyes"], [
309 AX_APPEND_COMPILE_FLAGS([-DNUVOTON_P2A_MBOX], [CXXFLAGS])
310 AX_APPEND_COMPILE_FLAGS([-DENABLE_PCI_BRIDGE], [CXXFLAGS])
311])
312
Patrick Venturee1f6d7d2019-06-28 18:08:49 -0700313AS_IF([test "x$enable_aspeed_p2a" = "xyes"], [
314 AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [
315 AS_IF([test "x$enable_tests" != "xyes"], [
316 AC_MSG_ERROR([Invalid configuration enabling both ASPEED and Nuvoton.])
317 ])
318 ])
319])
320
Medad CChien874bdf92019-10-31 14:38:15 +0800321AS_IF([test "x$enable_aspeed_p2a" = "xyes"], [
322 AS_IF([test "x$enable_nuvoton_p2a_vga" = "xyes" -o "x$enable_nuvoton_p2a_mbox" = "xyes"], [
323 AS_IF([test "x$enable_tests" != "xyes"], [
324 AC_MSG_ERROR([Invalid configuration enabling both ASPEED and Nuvoton.])
325 ])
326 ])
327])
328
329AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [
330 AS_IF([test "x$enable_nuvoton_p2a_vga" = "xyes" -o "x$enable_nuvoton_p2a_mbox" = "xyes"], [
331 AS_IF([test "x$enable_tests" != "xyes"], [
332 AC_MSG_ERROR([Invalid configuration enabling both PCI and LPC of Nuvoton.])
333 ])
334 ])
335])
336
337AS_IF([test "x$enable_nuvoton_p2a_vga" = "xyes"], [
338 AS_IF([test "x$enable_nuvoton_p2a_mbox" = "xyes"], [
339 AS_IF([test "x$enable_tests" != "xyes"], [
340 AC_MSG_ERROR([Invalid configuration enabling both PCI-VGA and PCI-MBOX of Nuvoton.])
341 ])
342 ])
343])
344
Benjamin Fair545f5652019-10-09 14:18:54 -0700345AC_ARG_ENABLE([net-bridge],
346 AS_HELP_STRING([--enable-net-bridge],
347 [Enable external transfers using a TCP connection]))
348AM_CONDITIONAL(ENABLE_NET_BRIDGE, [test "x$enable_net_bridge" = "xyes"])
349AS_IF([test "x$enable_net_bridge" = "xyes"], [
350 AX_APPEND_COMPILE_FLAGS([-DENABLE_NET_BRIDGE], [CXXFLAGS])
351])
352
Patrick Venture6264e692019-06-21 10:57:45 -0700353AC_ARG_VAR(
354 STATIC_HANDLER_STAGED_NAME,
355 [The file to use for staging the firmware update.]
356)
357AS_IF(
358 [test "x$STATIC_HANDLER_STAGED_NAME" == "x"],
359 [STATIC_HANDLER_STAGED_NAME="/run/initramfs/bmc-image"]
360)
361AC_DEFINE_UNQUOTED(
362 [STATIC_HANDLER_STAGED_NAME],
363 ["$STATIC_HANDLER_STAGED_NAME"],
364 [The file to use for staging the firmware update.]
365)
Patrick Venture35a82f32018-11-15 13:34:22 -0800366
Patrick Venture6264e692019-06-21 10:57:45 -0700367AC_ARG_VAR(
368 TARBALL_STAGED_NAME,
369 [The file to use for staging the firmware update.]
370)
371AS_IF(
372 [test "x$TARBALL_STAGED_NAME" == "x"],
373 [TARBALL_STAGED_NAME="/tmp/image-update.tar"]
374)
375AC_DEFINE_UNQUOTED(
376 [TARBALL_STAGED_NAME],
377 ["$TARBALL_STAGED_NAME"],
378 [The file to use for staging the firmware update.]
379)
Patrick Ventured46b8112018-11-15 13:38:55 -0800380
Patrick Venture6264e692019-06-21 10:57:45 -0700381AC_ARG_VAR(
Patrick Venture7c2a00e2019-07-01 17:33:03 -0700382 BIOS_STAGED_NAME,
383 [The file to use for staging the bios firmware update.]
384)
385AS_IF(
386 [test "x$BIOS_STAGED_NAME" == "x"],
387 [BIOS_STAGED_NAME="/tmp/bios-image"]
388)
389AC_DEFINE_UNQUOTED(
390 [BIOS_STAGED_NAME],
391 ["$BIOS_STAGED_NAME"],
392 [The file to use for staging the bios firmware update.]
393)
394
395AC_ARG_VAR(
Patrick Venture6264e692019-06-21 10:57:45 -0700396 HASH_FILENAME,
397 [The file to use for the hash provided.]
398)
399AS_IF(
400 [test "x$HASH_FILENAME" == "x"],
401 [HASH_FILENAME="/tmp/bmc.sig"]
402)
403AC_DEFINE_UNQUOTED(
404 [HASH_FILENAME],
405 ["$HASH_FILENAME"],
406 [The file to use for the hash provided.]
407)
Patrick Venture35a82f32018-11-15 13:34:22 -0800408
Patrick Venture6264e692019-06-21 10:57:45 -0700409AC_ARG_VAR(
410 PREPARATION_DBUS_SERVICE,
Patrick Venturefd182162019-07-01 07:39:31 -0700411 [The systemd target started when the host starts to send an update.]
Patrick Venture6264e692019-06-21 10:57:45 -0700412)
413AS_IF(
414 [test "x$PREPARATION_DBUS_SERVICE" == "x"],
Patrick Venturefd182162019-07-01 07:39:31 -0700415 [PREPARATION_DBUS_SERVICE="phosphor-ipmi-flash-bmc-prepare.target"]
Patrick Venture6264e692019-06-21 10:57:45 -0700416)
417AC_DEFINE_UNQUOTED(
418 [PREPARATION_DBUS_SERVICE],
419 ["$PREPARATION_DBUS_SERVICE"],
Patrick Venturefd182162019-07-01 07:39:31 -0700420 [The systemd target started when the host starts to send an update.]
Patrick Venture6264e692019-06-21 10:57:45 -0700421)
Patrick Venture6d7735d2019-06-21 10:03:19 -0700422
Patrick Venture6264e692019-06-21 10:57:45 -0700423AC_ARG_VAR(
424 VERIFY_STATUS_FILENAME,
425 [The file checked for the verification status.]
426)
427AS_IF(
428 [test "x$VERIFY_STATUS_FILENAME" == "x"],
429 [VERIFY_STATUS_FILENAME="/tmp/bmc.verify"]
430)
431AC_DEFINE_UNQUOTED(
432 [VERIFY_STATUS_FILENAME],
433 ["$VERIFY_STATUS_FILENAME"],
434 [The file checked for the verification status.]
435)
Patrick Venture74059d62019-05-17 10:40:26 -0700436
Patrick Venture6264e692019-06-21 10:57:45 -0700437AC_ARG_VAR(
Patrick Venture7c2a00e2019-07-01 17:33:03 -0700438 BIOS_VERIFY_STATUS_FILENAME,
439 [The file checked for the verification status.]
440)
441AS_IF(
442 [test "x$BIOS_VERIFY_STATUS_FILENAME" == "x"],
443 [BIOS_VERIFY_STATUS_FILENAME="/tmp/bios.verify"]
444)
445AC_DEFINE_UNQUOTED(
446 [BIOS_VERIFY_STATUS_FILENAME],
447 ["$BIOS_VERIFY_STATUS_FILENAME"],
448 [The file checked for the verification status.]
449)
450
451AC_ARG_VAR(
Patrick Venture6264e692019-06-21 10:57:45 -0700452 VERIFY_DBUS_SERVICE,
Patrick Venturefd182162019-07-01 07:39:31 -0700453 [The systemd target started for verification.]
Patrick Venture6264e692019-06-21 10:57:45 -0700454)
455AS_IF(
456 [test "x$VERIFY_DBUS_SERVICE" == "x"],
Patrick Venturefd182162019-07-01 07:39:31 -0700457 [VERIFY_DBUS_SERVICE="phosphor-ipmi-flash-bmc-verify.target"]
Patrick Venture6264e692019-06-21 10:57:45 -0700458)
459AC_DEFINE_UNQUOTED(
460 [VERIFY_DBUS_SERVICE],
461 ["$VERIFY_DBUS_SERVICE"],
Patrick Venturefd182162019-07-01 07:39:31 -0700462 [The systemd target started for verification.]
Patrick Venture6264e692019-06-21 10:57:45 -0700463)
Patrick Venture3ecb3502019-05-17 11:03:51 -0700464
Patrick Venture6264e692019-06-21 10:57:45 -0700465AC_ARG_VAR(
466 UPDATE_DBUS_SERVICE,
Patrick Venturefd182162019-07-01 07:39:31 -0700467 [The systemd target started for updating the BMC.]
Patrick Venture6264e692019-06-21 10:57:45 -0700468)
469AS_IF(
470 [test "x$UPDATE_DBUS_SERVICE" == "x"],
Patrick Venturefd182162019-07-01 07:39:31 -0700471 [UPDATE_DBUS_SERVICE="phosphor-ipmi-flash-bmc-update.target"]
Patrick Venture6264e692019-06-21 10:57:45 -0700472)
473AC_DEFINE_UNQUOTED(
474 [UPDATE_DBUS_SERVICE],
475 ["$UPDATE_DBUS_SERVICE"],
Patrick Venturefd182162019-07-01 07:39:31 -0700476 [The systemd target started for updating the BMC.]
Patrick Venture6264e692019-06-21 10:57:45 -0700477)
Patrick Venture6f81b162019-05-20 14:02:59 -0700478
Patrick Venture7c2a00e2019-07-01 17:33:03 -0700479AC_ARG_VAR(
Brandon Kimcec91dd2019-09-16 17:24:40 -0700480 UPDATE_STATUS_FILENAME,
481 [The file checked for the update status.]
482)
483AS_IF(
484 [test "x$UPDATE_STATUS_FILENAME" == "x"],
485 [UPDATE_STATUS_FILENAME="/tmp/bmc.update"]
486)
487AC_DEFINE_UNQUOTED(
488 [UPDATE_STATUS_FILENAME],
489 ["$UPDATE_STATUS_FILENAME"],
490 [The file checked for the update status.]
491)
492
493AC_ARG_VAR(
Patrick Venture7c2a00e2019-07-01 17:33:03 -0700494 PREPARATION_BIOS_TARGET,
495 [The systemd target started when the host starts to send an update.]
496)
497AS_IF(
498 [test "x$PREPARATION_BIOS_TARGET" == "x"],
499 [PREPARATION_BIOS_TARGET="phosphor-ipmi-flash-bios-prepare.target"]
500)
501AC_DEFINE_UNQUOTED(
502 [PREPARATION_BIOS_TARGET],
503 ["$PREPARATION_BIOS_TARGET"],
504 [The systemd target started when the host starts to send an update.]
505)
506AC_ARG_VAR(
507 VERIFY_BIOS_TARGET,
508 [The systemd target started for verifying the BIOS image.]
509)
510AS_IF(
511 [test "x$VERIFY_BIOS_TARGET" == "x"],
512 [VERIFY_BIOS_TARGET="phosphor-ipmi-flash-bios-verify.target"]
513)
514AC_DEFINE_UNQUOTED(
515 [VERIFY_BIOS_TARGET],
516 ["$VERIFY_BIOS_TARGET"],
517 [The systemd target started for verifying the BIOS image.]
518)
519AC_ARG_VAR(
520 UPDATE_BIOS_TARGET,
521 [The systemd target started for updating the BIOS.]
522)
523AS_IF(
524 [test "x$UPDATE_BIOS_TARGET" == "x"],
525 [UPDATE_BIOS_TARGET="phosphor-ipmi-flash-bios-update.target"]
526)
527AC_DEFINE_UNQUOTED(
528 [UPDATE_BIOS_TARGET],
529 ["$UPDATE_BIOS_TARGET"],
530 [The systemd target started for updating the BIOS.]
531)
532
Patrick Venture440bc382018-12-13 19:10:55 -0800533AC_CHECK_HEADER(linux/ipmi.h, [HAVE_LINUX_IPMI_H=""], [HAVE_LINUX_IPMI_H="-I linux/ipmi.h"])
534AS_IF([test "$HAVE_LINUX_IPMI_H" != ""],
535 AC_MSG_WARN([Could not find linux/ipmi.h: Attempting to download locally for building from openbmc/linux/+/dev-4.18])
536 AC_SUBST([IPMI_BMC_DL],
537 [`mkdir -p linux;wget https://raw.githubusercontent.com/openbmc/linux/dev-4.18/include/uapi/linux/ipmi.h -O linux/ipmi.h`])
538)
539
540AC_CHECK_HEADER(linux/ipmi_msgdefs.h, [HAVE_LINUX_IPMIMSGDEFS_H=""], [HAVE_LINUX_IPMIMSGDEFS_H="-I linux/ipmi_msgdefs.h"])
541AS_IF([test "$HAVE_LINUX_IPMIMSGDEFS_H" != ""],
542 AC_MSG_WARN([Could not find linux/ipmi_msgdefs.h: Attempting to download locally for building from openbmc/linux/+/dev-4.18])
543 AC_SUBST([IPMIMSG_BMC_DL],
544 [`mkdir -p linux;wget https://raw.githubusercontent.com/openbmc/linux/dev-4.18/include/uapi/linux/ipmi_msgdefs.h -O linux/ipmi_msgdefs.h`])
545)
546
Patrick Venture6bc04f92019-03-06 13:49:21 -0800547# Make it possible for users to choose if they want test support
548# explicitly or not at all
549AC_ARG_ENABLE([tests], AC_HELP_STRING([--disable-tests],
550 [Build test cases]))
551
Patrick Venturec7ca2912018-11-02 11:38:33 -0700552# Check/set gtest specific functions.
Patrick Venture6bc04f92019-03-06 13:49:21 -0800553AS_IF([test "x$enable_tests" != "xno"], [
554 PKG_CHECK_MODULES([GTEST], [gtest], [], [true])
555 PKG_CHECK_MODULES([GMOCK], [gmock], [], [true])
556 AX_PTHREAD
557
558 AX_SAVE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS])
559 AX_APPEND_COMPILE_FLAGS([$GTEST_CFLAGS], [CPPFLAGS])
560 AC_LANG_PUSH([C++])
561 AC_CHECK_HEADERS([gtest/gtest.h], [
562 AS_IF([test "x$GTEST_CFLAGS" = "x"], [
563 AS_IF([test "x$PTHREAD_CFLAGS" = "x"], [
564 AX_APPEND_COMPILE_FLAGS(["-DGTEST_HAS_PTHREAD=0"], [GTEST_CFLAGS])
565 ], [
566 AX_APPEND_COMPILE_FLAGS(["-DGTEST_HAS_PTHREAD=1"], [GTEST_CFLAGS])
567 AX_APPEND_COMPILE_FLAGS([$PTHREAD_CFLAGS], [GTEST_CFLAGS])
568 ])
569 ])
570 ], [
571 AS_IF([test "x$enable_tests" = "xyes"], [
572 AC_MSG_ERROR([Testing enabled but could not find gtest/gtest.h])
573 ])
574 ])
575 AC_LANG_POP([C++])
576 AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS])
577
578 AX_SAVE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS])
579 AX_APPEND_COMPILE_FLAGS([$GMOCK_CFLAGS], [CPPFLAGS])
580 AC_LANG_PUSH([C++])
581 AC_CHECK_HEADERS([gmock/gmock.h], [], [
582 AS_IF([test "x$enable_tests" = "xyes"], [
583 AC_MSG_ERROR([Testing enabled but could not find gmock/gmock.h])
584 ])
585 ])
586 AC_LANG_POP([C++])
587 AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS])
588
589 AX_SAVE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS])
590 AX_APPEND_COMPILE_FLAGS([$GTEST_LIBS], [LDFLAGS])
591 AC_CHECK_LIB([gtest], [main], [
592 AS_IF([test "x$GTEST_LIBS" = "x"], [
593 AX_APPEND_COMPILE_FLAGS([-lgtest], [GTEST_LIBS])
594 ])
595 ], [
596 AS_IF([test "x$enable_tests" = "xyes"], [
597 AC_MSG_ERROR([Testing enabled but couldn't find gtest libs])
598 ])
599 ])
600 AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS])
601
602 AX_SAVE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS])
603 AX_APPEND_COMPILE_FLAGS([$GMOCK_LIBS], [LDFLAGS])
604 AC_CHECK_LIB([gmock], [main], [
605 AS_IF([test "x$GMOCK_LIBS" = "x"], [
606 AX_APPEND_COMPILE_FLAGS([-lgmock], [GMOCK_LIBS])
607 ])
608 ], [
609 AS_IF([test "x$enable_tests" = "xyes"], [
610 AC_MSG_ERROR([Testing enabled but couldn't find gmock libs])
611 ])
612 ])
613 AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS])
614])
Patrick Venturec7ca2912018-11-02 11:38:33 -0700615
Patrick Venture4679e502019-03-19 11:27:00 -0700616# Check for valgrind
617AS_IF([test "x$enable_tests" = "xno"], [enable_valgrind=no])
618m4_foreach([vgtool], [valgrind_tool_list],
619 [AX_VALGRIND_DFLT(vgtool, [off])])
620AX_VALGRIND_DFLT([memcheck], [on])
621AX_VALGRIND_CHECK
622AM_EXTRA_RECURSIVE_TARGETS([check-valgrind])
623m4_foreach([vgtool], [valgrind_tool_list],
624 [AM_EXTRA_RECURSIVE_TARGETS([check-valgrind-]vgtool)])
625
Patrick Venture2f3b4b62019-03-08 13:22:40 -0800626# Code coverage
627AX_CODE_COVERAGE
Patrick Venture2f3b4b62019-03-08 13:22:40 -0800628AS_IF([test "x$CODE_COVERAGE_ENABLED" = "xyes"], [
629 AX_APPEND_COMPILE_FLAGS([-DHAVE_GCOV], [CODE_COVERAGE_CPPFLAGS])
630])
Patrick Venture9dc342a2019-03-18 08:43:36 -0700631m4_ifdef([_AX_CODE_COVERAGE_RULES],
632 [AM_CONDITIONAL(AUTOCONF_CODE_COVERAGE_2019_01_06, [true])],
633 [AM_CONDITIONAL(AUTOCONF_CODE_COVERAGE_2019_01_06, [false])])
634AX_ADD_AM_MACRO_STATIC([])
Patrick Venture2f3b4b62019-03-08 13:22:40 -0800635
Patrick Venturec7ca2912018-11-02 11:38:33 -0700636# Add --enable-oe-sdk flag to configure script
637AC_ARG_ENABLE([oe-sdk],
638 AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.])
639)
640
641# Check for OECORE_TARGET_SYSROOT in the environment.
642AC_ARG_VAR(OECORE_TARGET_SYSROOT,
643 [Path to the OE SDK SYSROOT])
644
645# Configure OESDK_TESTCASE_FLAGS environment variable, which will be later
646# used in test/Makefile.am
647AS_IF([test "x$enable_oe_sdk" == "xyes"],
648 AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"],
649 AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk])
650 )
651 AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT])
652 [
653 testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib"
654 testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib"
655 testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`"
656 ]
657 AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags])
658)
659
660# Create configured output
Patrick Venturef0c71df2019-06-26 19:39:36 -0700661AC_CONFIG_FILES([Makefile])
Jason Lingded66d02020-10-23 14:13:03 -0700662AC_CONFIG_FILES([bmc/Makefile])
663AC_CONFIG_FILES([bmc/firmware-handler/Makefile bmc/firmware-handler/test/Makefile])
Jason Ling85e54f12020-11-05 18:47:21 -0800664AC_CONFIG_FILES([bmc/version-handler/Makefile bmc/version-handler/test/Makefile])
Patrick Venture6264e692019-06-21 10:57:45 -0700665AC_CONFIG_FILES([tools/Makefile tools/test/Makefile])
666AC_CONFIG_FILES([cleanup/Makefile cleanup/test/Makefile])
Jason Lingded66d02020-10-23 14:13:03 -0700667AC_CONFIG_FILES([bmc/firmware-handler/phosphor-ipmi-flash-bmc-prepare.target])
668AC_CONFIG_FILES([bmc/firmware-handler/phosphor-ipmi-flash-bmc-verify.target])
669AC_CONFIG_FILES([bmc/firmware-handler/phosphor-ipmi-flash-bmc-update.target])
670AC_CONFIG_FILES([bmc/firmware-handler/phosphor-ipmi-flash-bios-prepare.target])
671AC_CONFIG_FILES([bmc/firmware-handler/phosphor-ipmi-flash-bios-verify.target])
672AC_CONFIG_FILES([bmc/firmware-handler/phosphor-ipmi-flash-bios-update.target])
673AC_CONFIG_FILES([bmc/firmware-handler/config-static-bmc-reboot.json])
674AC_CONFIG_FILES([bmc/firmware-handler/config-static-bmc.json])
675AC_CONFIG_FILES([bmc/firmware-handler/config-static-bmc-with-update-status.json])
676AC_CONFIG_FILES([bmc/firmware-handler/config-bios.json])
Patrick Venturec7ca2912018-11-02 11:38:33 -0700677AC_OUTPUT