blob: c19c858f0e5a6abaab7447d2deca70877c043f2f [file] [log] [blame]
Patrick Venturec7ca2912018-11-02 11:38:33 -07001# Initialization
2AC_PREREQ([2.69])
3AC_INIT([phosphor-ipmi-flash], [0.1], [https://github.com/openbmc/phosphor-ipmi-flash/issues])
4AC_LANG([C++])
5AC_CONFIG_HEADERS([config.h])
6AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror foreign dist-xz])
7AM_SILENT_RULES([yes])
8
9# Checks for programs.
10AC_PROG_CXX
11AM_PROG_AR
12AC_PROG_INSTALL
13AC_PROG_MAKE_SET
14
15# Checks for typedefs, structures, and compiler characteristics.
16AX_CXX_COMPILE_STDCXX_17([noext])
17AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS])
18
19# Checks for library functions.
20LT_INIT # Required for systemd linking
21
22# Checks for libraries.
23PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging],, [AC_MSG_ERROR([Could not find phosphor-logging...openbmc/phosphor-logging package required])])
24AC_CHECK_HEADER([blobs-ipmid], [AC_MSG_ERROR(["phosphor-ipmi-blobs required and not found."])])
25AX_PTHREAD([], [AC_MSG_ERROR(["pthread required and not found"])])
26
Patrick Venturefa6c4d92018-11-02 18:34:53 -070027# Configurability
28# Enable static layout for firmware image staging.
29AC_ARG_ENABLE([static-layout],
30 AS_HELP_STRING([--enable-static-layout],
31 [Enable static layout firmware update via Blobs]))
32AS_IF([test "x$enable_static_layout" = "xyes"], [
33 AX_APPEND_COMPILE_FLAGS([-DENABLE_STATIC_LAYOUT], [CXXFLAGS])
34])
Patrick Ventured46b8112018-11-15 13:38:55 -080035# Enable tarball for firmware image staging.
36AC_ARG_ENABLE([tarball-ubi],
37 AS_HELP_STRING([--enable-tarball-ubi],
38 [Enable tarball firmware update via Blobs]))
39AS_IF([test "x$enanble_tarball_ubi" = "xyes"], [
40 AX_APPEND_COMPILE_FLAGS([-DENABLE_TARBALL_UBI], [CXXFLAGS])
41])
Patrick Venture002916a2018-11-15 10:38:07 -080042
Patrick Venture4306f682018-11-06 11:06:02 -080043# Enable P2A, and or LPC (block-transfer is always enabled).
Patrick Venture192d60f2018-11-06 11:11:59 -080044AC_ARG_ENABLE([pci-bridge],
45 AS_HELP_STRING([--enable-pci-bridge],
46 [Enable pci-bridge transport mechanism]))
47AS_IF([test "x$enable_pci_bridge" = "xyes"], [
48 AX_APPEND_COMPILE_FLAGS([-DENABLE_PCI_BRIDGE], [CXXFLAGS])
49])
50AC_ARG_ENABLE([lpc-bridge],
51 AS_HELP_STRING([--enable-lpc-bridge],
52 [Enable lpc-bridge transport mechanism]))
53AS_IF([test "x$enable_lpc_bridge" = "xyes"], [
54 AX_APPEND_COMPILE_FLAGS([-DENABLE_LPC_BRIDGE], [CXXFLAGS])
55])
Patrick Venturefa6c4d92018-11-02 18:34:53 -070056
Patrick Venture002916a2018-11-15 10:38:07 -080057# The address used for mapping P2A or LPC into the BMC's memory-space:
58# e.g. https://github.com/openbmc/linux/blob/1da2ce51886a3b2f5db2087f26c661e13ee13b84/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts#L26
59# or https://github.com/openbmc/linux/blob/1da2ce51886a3b2f5db2087f26c661e13ee13b84/arch/arm/boot/dts/aspeed-bmc-opp-zaius.dts#L166
60# for PCI, this address is passed back to the host and is used directly.
61AC_ARG_VAR(MAPPED_ADDRESS, [The base address of the memory region reserved for mapping.])
62AS_IF([test "x$MAPPED_ADDRESS" == "x"],
63 [AC_DEFINE(MAPPED_ADDRESS, [0], [Default address to 0.])],
64 [AC_DEFINE(MAPPED_ADDRESS, [$MAPPED_ADDRESS], [Value for memory region mapping.])]
65)
66
Patrick Venturee7728422018-11-14 20:16:33 -080067AC_ARG_ENABLE([aspeed-lpc],
68 AS_HELP_STRING([--enable-aspeed-lpc],
69 [Enable external transfers using Aspeed LPC]))
70AS_IF([test "x$enable_aspeed_lpc" = "xyes"], [
71 AC_CHECK_HEADER(linux/aspeed-lpc-ctrl.h,
72 [HAVE_UAPI_LINUX_LPC_CTRL_H=""],
73 [HAVE_UAPI_LINUX_LPC_CTRL_H="-I linux/aspeed-lpc-ctrl.h"])
74 AS_IF([test "$HAVE_UAPI_LINUX_LPC_CTRL_H" != ""],
75 AC_MSG_WARN([Could not find linux/aspeed-lpc-ctrl.h: Attempting to download locally for building from openbmc/linux/+dev-4.18])
76 AC_SUBST([BT_BMC_DL],
77 [`mkdir -p linux;wget https://raw.githubusercontent.com/openbmc/linux/dev-4.18/include/uapi/linux/aspeed-lpc-ctrl.h -O linux/aspeed-lpc-ctrl.h`])
78 )
79 AX_APPEND_COMPILE_FLAGS([-DASPEED_LPC], [CXXFLAGS])
80])
81AC_ARG_ENABLE([nuvoton-lpc],
82 AS_HELP_STRING([--enable-nuvoton-lpc],
83 [Enable external transfers using Nuvoton LPC SHM]))
84AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [
85 AX_APPEND_COMPILE_FLAGS([-DNUVOTON_LPC], [CXXFLAGS])
86])
87
Patrick Venture35a82f32018-11-15 13:34:22 -080088AC_ARG_VAR(STATIC_HANDLER_STAGED_NAME, [The file to use for staging the firmware update.])
89AS_IF([test "x$STATIC_HANDLER_STAGED_NAME" == "x"], [STATIC_HANDLER_STAGED_NAME="/run/initramfs/bmc-image"])
90AC_DEFINE_UNQUOTED([STATIC_HANDLER_STAGED_NAME], ["$STATIC_HANDLER_STAGED_NAME"], [The file to use for staging the firmware update.])
91
Patrick Ventured46b8112018-11-15 13:38:55 -080092AC_ARG_VAR(TARBALL_STAGED_NAME, [The file to use for staging the firmware update.])
93AS_IF([test "x$TARBALL_STAGED_NAME" == "x"], [TARBALL_STAGED_NAME="/tmp/image-update.tar"])
94AC_DEFINE_UNQUOTED([TARBALL_STAGED_NAME], ["$TARBALL_STAGED_NAME"], [The file to use for staging the firmware update.])
95
Patrick Venture35a82f32018-11-15 13:34:22 -080096AC_ARG_VAR(HASH_FILENAME, [The file to use for the hash provided.])
97AS_IF([test "x$HASH_FILENAME" == "x"], [HASH_FILENAME="/tmp/bmc.sig"])
98AC_DEFINE_UNQUOTED([HASH_FILENAME], ["$HASH_FILENAME"], [The file to use for the hash provided.])
99
Patrick Venturec7ca2912018-11-02 11:38:33 -0700100# Check/set gtest specific functions.
101PKG_CHECK_MODULES([GTEST], [gtest], [], [AC_MSG_NOTICE([gtest not found, tests will not build])])
102PKG_CHECK_MODULES([GMOCK], [gmock], [], [AC_MSG_NOTICE([gmock not found, tests will not build])])
103PKG_CHECK_MODULES([GTEST_MAIN], [gtest_main], [], [AC_MSG_NOTICE([gtest_main not found, tests will not build])])
104
105# Add --enable-oe-sdk flag to configure script
106AC_ARG_ENABLE([oe-sdk],
107 AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.])
108)
109
110# Check for OECORE_TARGET_SYSROOT in the environment.
111AC_ARG_VAR(OECORE_TARGET_SYSROOT,
112 [Path to the OE SDK SYSROOT])
113
114# Configure OESDK_TESTCASE_FLAGS environment variable, which will be later
115# used in test/Makefile.am
116AS_IF([test "x$enable_oe_sdk" == "xyes"],
117 AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"],
118 AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk])
119 )
120 AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT])
121 [
122 testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib"
123 testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib"
124 testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`"
125 ]
126 AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags])
127)
128
129# Create configured output
Patrick Venture21be45a2018-11-06 12:08:52 -0800130AC_CONFIG_FILES([Makefile test/Makefile])
Patrick Venturec7ca2912018-11-02 11:38:33 -0700131AC_OUTPUT