blob: 970fca2d76c9266316cdc17651c30a9e22ae1825 [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 Venture002916a2018-11-15 10:38:07 -080035
Patrick Venture4306f682018-11-06 11:06:02 -080036# Enable P2A, and or LPC (block-transfer is always enabled).
Patrick Venture192d60f2018-11-06 11:11:59 -080037AC_ARG_ENABLE([pci-bridge],
38 AS_HELP_STRING([--enable-pci-bridge],
39 [Enable pci-bridge transport mechanism]))
40AS_IF([test "x$enable_pci_bridge" = "xyes"], [
41 AX_APPEND_COMPILE_FLAGS([-DENABLE_PCI_BRIDGE], [CXXFLAGS])
42])
43AC_ARG_ENABLE([lpc-bridge],
44 AS_HELP_STRING([--enable-lpc-bridge],
45 [Enable lpc-bridge transport mechanism]))
46AS_IF([test "x$enable_lpc_bridge" = "xyes"], [
47 AX_APPEND_COMPILE_FLAGS([-DENABLE_LPC_BRIDGE], [CXXFLAGS])
48])
Patrick Venturefa6c4d92018-11-02 18:34:53 -070049
Patrick Venture002916a2018-11-15 10:38:07 -080050# The address used for mapping P2A or LPC into the BMC's memory-space:
51# e.g. https://github.com/openbmc/linux/blob/1da2ce51886a3b2f5db2087f26c661e13ee13b84/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts#L26
52# or https://github.com/openbmc/linux/blob/1da2ce51886a3b2f5db2087f26c661e13ee13b84/arch/arm/boot/dts/aspeed-bmc-opp-zaius.dts#L166
53# for PCI, this address is passed back to the host and is used directly.
54AC_ARG_VAR(MAPPED_ADDRESS, [The base address of the memory region reserved for mapping.])
55AS_IF([test "x$MAPPED_ADDRESS" == "x"],
56 [AC_DEFINE(MAPPED_ADDRESS, [0], [Default address to 0.])],
57 [AC_DEFINE(MAPPED_ADDRESS, [$MAPPED_ADDRESS], [Value for memory region mapping.])]
58)
59
Patrick Venturee7728422018-11-14 20:16:33 -080060AC_ARG_ENABLE([aspeed-lpc],
61 AS_HELP_STRING([--enable-aspeed-lpc],
62 [Enable external transfers using Aspeed LPC]))
63AS_IF([test "x$enable_aspeed_lpc" = "xyes"], [
64 AC_CHECK_HEADER(linux/aspeed-lpc-ctrl.h,
65 [HAVE_UAPI_LINUX_LPC_CTRL_H=""],
66 [HAVE_UAPI_LINUX_LPC_CTRL_H="-I linux/aspeed-lpc-ctrl.h"])
67 AS_IF([test "$HAVE_UAPI_LINUX_LPC_CTRL_H" != ""],
68 AC_MSG_WARN([Could not find linux/aspeed-lpc-ctrl.h: Attempting to download locally for building from openbmc/linux/+dev-4.18])
69 AC_SUBST([BT_BMC_DL],
70 [`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`])
71 )
72 AX_APPEND_COMPILE_FLAGS([-DASPEED_LPC], [CXXFLAGS])
73])
74AC_ARG_ENABLE([nuvoton-lpc],
75 AS_HELP_STRING([--enable-nuvoton-lpc],
76 [Enable external transfers using Nuvoton LPC SHM]))
77AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [
78 AX_APPEND_COMPILE_FLAGS([-DNUVOTON_LPC], [CXXFLAGS])
79])
80
Patrick Venture35a82f32018-11-15 13:34:22 -080081AC_ARG_VAR(STATIC_HANDLER_STAGED_NAME, [The file to use for staging the firmware update.])
82AS_IF([test "x$STATIC_HANDLER_STAGED_NAME" == "x"], [STATIC_HANDLER_STAGED_NAME="/run/initramfs/bmc-image"])
83AC_DEFINE_UNQUOTED([STATIC_HANDLER_STAGED_NAME], ["$STATIC_HANDLER_STAGED_NAME"], [The file to use for staging the firmware update.])
84
85AC_ARG_VAR(HASH_FILENAME, [The file to use for the hash provided.])
86AS_IF([test "x$HASH_FILENAME" == "x"], [HASH_FILENAME="/tmp/bmc.sig"])
87AC_DEFINE_UNQUOTED([HASH_FILENAME], ["$HASH_FILENAME"], [The file to use for the hash provided.])
88
Patrick Venturec7ca2912018-11-02 11:38:33 -070089# Check/set gtest specific functions.
90PKG_CHECK_MODULES([GTEST], [gtest], [], [AC_MSG_NOTICE([gtest not found, tests will not build])])
91PKG_CHECK_MODULES([GMOCK], [gmock], [], [AC_MSG_NOTICE([gmock not found, tests will not build])])
92PKG_CHECK_MODULES([GTEST_MAIN], [gtest_main], [], [AC_MSG_NOTICE([gtest_main not found, tests will not build])])
93
94# Add --enable-oe-sdk flag to configure script
95AC_ARG_ENABLE([oe-sdk],
96 AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.])
97)
98
99# Check for OECORE_TARGET_SYSROOT in the environment.
100AC_ARG_VAR(OECORE_TARGET_SYSROOT,
101 [Path to the OE SDK SYSROOT])
102
103# Configure OESDK_TESTCASE_FLAGS environment variable, which will be later
104# used in test/Makefile.am
105AS_IF([test "x$enable_oe_sdk" == "xyes"],
106 AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"],
107 AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk])
108 )
109 AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT])
110 [
111 testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib"
112 testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib"
113 testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`"
114 ]
115 AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags])
116)
117
118# Create configured output
Patrick Venture21be45a2018-11-06 12:08:52 -0800119AC_CONFIG_FILES([Makefile test/Makefile])
Patrick Venturec7ca2912018-11-02 11:38:33 -0700120AC_OUTPUT