Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 1 | # |
Uwe Hermann | f78cff1 | 2009-06-12 14:05:25 +0000 | [diff] [blame] | 2 | # This file is part of the flashrom project. |
| 3 | # |
| 4 | # Copyright (C) 2005 coresystems GmbH <stepan@coresystems.de> |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 5 | # Copyright (C) 2009,2010,2012 Carl-Daniel Hailfinger |
Uwe Hermann | f78cff1 | 2009-06-12 14:05:25 +0000 | [diff] [blame] | 6 | # |
| 7 | # This program is free software; you can redistribute it and/or modify |
| 8 | # it under the terms of the GNU General Public License as published by |
| 9 | # the Free Software Foundation; version 2 of the License. |
| 10 | # |
| 11 | # This program is distributed in the hope that it will be useful, |
| 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | # GNU General Public License for more details. |
| 15 | # |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 16 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 17 | PROGRAM = flashrom |
Ronald G. Minnich | eaab50b | 2003-09-12 22:41:53 +0000 | [diff] [blame] | 18 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 19 | ############################################################################### |
| 20 | # Defaults for the toolchain. |
| 21 | |
| 22 | # If you want to cross-compile, just run e.g. |
| 23 | # make CC=i586-pc-msdosdjgpp-gcc |
| 24 | # You may have to specify STRIP/AR/RANLIB as well. |
Carl-Daniel Hailfinger | b7bce8a | 2012-08-14 21:36:11 +0000 | [diff] [blame] | 25 | # |
| 26 | # Note for anyone editing this Makefile: gnumake will happily ignore any |
| 27 | # changes in this Makefile to variables set on the command line. |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 28 | STRIP ?= strip |
Thomas Heijligen | f579bba | 2021-10-12 12:48:01 +0200 | [diff] [blame] | 29 | STRIP_ARGS = -s |
Christian Ruppert | db9d9f4 | 2009-05-14 14:17:07 +0000 | [diff] [blame] | 30 | INSTALL = install |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 31 | DIFF = diff |
Christian Ruppert | db9d9f4 | 2009-05-14 14:17:07 +0000 | [diff] [blame] | 32 | PREFIX ?= /usr/local |
Uwe Hermann | 56b2cb0 | 2009-05-21 15:59:58 +0000 | [diff] [blame] | 33 | MANDIR ?= $(PREFIX)/share/man |
Nico Huber | 9e2dc2f | 2018-12-23 22:00:47 +0100 | [diff] [blame] | 34 | CFLAGS ?= -Os -Wall -Wextra -Wno-unused-parameter -Wshadow -Wmissing-prototypes -Wwrite-strings |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 35 | EXPORTDIR ?= . |
Patrick Georgi | 97bc95c | 2011-03-08 07:17:44 +0000 | [diff] [blame] | 36 | RANLIB ?= ranlib |
Stefan Tauner | 3f73ffe | 2016-01-07 17:45:59 +0000 | [diff] [blame] | 37 | PKG_CONFIG ?= pkg-config |
| 38 | BUILD_DETAILS_FILE ?= build_details.txt |
Stefan Tauner | be62d3f | 2015-01-10 09:32:44 +0000 | [diff] [blame] | 39 | |
Stefan Tauner | fd0d413 | 2012-09-25 21:24:55 +0000 | [diff] [blame] | 40 | # The following parameter changes the default programmer that will be used if there is no -p/--programmer |
| 41 | # argument given when running flashrom. The predefined setting does not enable any default so that every |
| 42 | # user has to declare the programmer he wants to use on every run. The rationale for this to be not set |
| 43 | # (to e.g. the internal programmer) is that forgetting to specify this when working with another programmer |
| 44 | # easily puts the system attached to the default programmer at risk (e.g. you want to flash coreboot to another |
| 45 | # system attached to an external programmer while the default programmer is set to the internal programmer, and |
| 46 | # you forget to use the -p parameter. This would (try to) overwrite the existing firmware of the computer |
| 47 | # running flashrom). Please do not enable this without thinking about the possible consequences. Possible |
Thomas Heijligen | 84e9c91 | 2021-06-01 16:22:14 +0200 | [diff] [blame] | 48 | # values can be found when running 'flashrom --list-supported' under the 'Supported programmers' section. |
| 49 | CONFIG_DEFAULT_PROGRAMMER_NAME ?= |
Stefan Tauner | 265fcac | 2014-06-02 00:12:23 +0000 | [diff] [blame] | 50 | # The following adds a default parameter for the default programmer set above (only). |
Thomas Heijligen | 84e9c91 | 2021-06-01 16:22:14 +0200 | [diff] [blame] | 51 | CONFIG_DEFAULT_PROGRAMMER_ARGS ?= |
Stefan Tauner | 265fcac | 2014-06-02 00:12:23 +0000 | [diff] [blame] | 52 | # Example: compiling with |
Thomas Heijligen | 84e9c91 | 2021-06-01 16:22:14 +0200 | [diff] [blame] | 53 | # make CONFIG_DEFAULT_PROGRAMMER_NAME=serprog CONFIG_DEFAULT_PROGRAMMER_ARGS="dev=/dev/ttyUSB0:1500000" |
Stefan Tauner | 265fcac | 2014-06-02 00:12:23 +0000 | [diff] [blame] | 54 | # would make executing './flashrom' (almost) equivialent to './flashrom -p serprog:dev=/dev/ttyUSB0:1500000'. |
Christian Ruppert | db9d9f4 | 2009-05-14 14:17:07 +0000 | [diff] [blame] | 55 | |
Thomas Heijligen | 121a5b8 | 2021-10-21 12:58:07 +0200 | [diff] [blame] | 56 | # The user can provide CPP, C and LDFLAGS and the Makefile will extend these |
| 57 | override CPPFLAGS := $(CPPFLAGS) |
| 58 | override CFLAGS := $(CFLAGS) |
| 59 | override LDFLAGS := $(LDFLAGS) |
| 60 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 61 | # If your compiler spits out excessive warnings, run make WARNERROR=no |
| 62 | # You shouldn't have to change this flag. |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 63 | WARNERROR ?= yes |
| 64 | |
| 65 | ifeq ($(WARNERROR), yes) |
Thomas Heijligen | 121a5b8 | 2021-10-21 12:58:07 +0200 | [diff] [blame] | 66 | override CFLAGS += -Werror |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 67 | endif |
| 68 | |
Stefan Tauner | e37735a | 2015-01-26 22:03:35 +0000 | [diff] [blame] | 69 | ifdef LIBS_BASE |
Stefan Tauner | e37735a | 2015-01-26 22:03:35 +0000 | [diff] [blame] | 70 | PKG_CONFIG_LIBDIR ?= $(LIBS_BASE)/lib/pkgconfig |
Stefan Tauner | 4520706 | 2016-02-19 08:17:24 +0000 | [diff] [blame] | 71 | override CPPFLAGS += -I$(LIBS_BASE)/include |
| 72 | override LDFLAGS += -L$(LIBS_BASE)/lib -Wl,-rpath -Wl,$(LIBS_BASE)/lib |
Stefan Tauner | e37735a | 2015-01-26 22:03:35 +0000 | [diff] [blame] | 73 | endif |
Stefan Tauner | be62d3f | 2015-01-10 09:32:44 +0000 | [diff] [blame] | 74 | |
Stefan Tauner | bfb067b | 2016-01-07 18:13:07 +0000 | [diff] [blame] | 75 | ifeq ($(CONFIG_STATIC),yes) |
Stefan Tauner | 4520706 | 2016-02-19 08:17:24 +0000 | [diff] [blame] | 76 | override PKG_CONFIG += --static |
| 77 | override LDFLAGS += -static |
Stefan Tauner | bfb067b | 2016-01-07 18:13:07 +0000 | [diff] [blame] | 78 | endif |
| 79 | |
Stefan Tauner | 1ca7c7f | 2016-01-14 23:05:55 +0000 | [diff] [blame] | 80 | # Set LC_ALL=C to minimize influences of the locale. |
| 81 | # However, this won't work for the majority of relevant commands because they use the $(shell) function and |
Martin Roth | f6c1cb1 | 2022-03-15 10:55:25 -0600 | [diff] [blame] | 82 | # GNU make does not relay variables exported within the makefile to their environment. |
Stefan Tauner | 1ca7c7f | 2016-01-14 23:05:55 +0000 | [diff] [blame] | 83 | LC_ALL=C |
| 84 | export LC_ALL |
| 85 | |
Stefan Tauner | 3f73ffe | 2016-01-07 17:45:59 +0000 | [diff] [blame] | 86 | dummy_for_make_3_80:=$(shell printf "Build started on %s\n\n" "$$(date)" >$(BUILD_DETAILS_FILE)) |
Stefan Tauner | 1ca7c7f | 2016-01-14 23:05:55 +0000 | [diff] [blame] | 87 | |
| 88 | # Provide an easy way to execute a command, print its output to stdout and capture any error message on stderr |
| 89 | # in the build details file together with the original stdout output. |
Pyry Kontio | 89cc73b | 2020-07-06 12:57:35 +0900 | [diff] [blame] | 90 | debug_shell = $(shell export LC_ALL=C ; { echo 'exec: export LC_ALL=C ; { $(subst ','\'',$(1)) ; }' >&2; \ |
| 91 | { $(1) ; } | tee -a $(BUILD_DETAILS_FILE) ; echo >&2 ; } 2>>$(BUILD_DETAILS_FILE)) |
Stefan Tauner | 1ca7c7f | 2016-01-14 23:05:55 +0000 | [diff] [blame] | 92 | |
Thomas Heijligen | 121a5b8 | 2021-10-21 12:58:07 +0200 | [diff] [blame] | 93 | include Makefile.include |
| 94 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 95 | ############################################################################### |
Nico Huber | 7f89897 | 2021-06-27 13:30:50 +0200 | [diff] [blame] | 96 | # Dependency handling. |
| 97 | |
| 98 | DEPENDS_ON_SERIAL := \ |
| 99 | CONFIG_BUSPIRATE_SPI \ |
| 100 | CONFIG_PONY_SPI \ |
| 101 | CONFIG_SERPROG \ |
| 102 | |
| 103 | DEPENDS_ON_BITBANG_SPI := \ |
Nico Huber | 29c6834 | 2021-06-27 14:34:16 +0200 | [diff] [blame] | 104 | CONFIG_DEVELOPERBOX_SPI \ |
Nico Huber | 7f89897 | 2021-06-27 13:30:50 +0200 | [diff] [blame] | 105 | CONFIG_INTERNAL \ |
| 106 | CONFIG_NICINTEL_SPI \ |
| 107 | CONFIG_OGP_SPI \ |
| 108 | CONFIG_PONY_SPI \ |
| 109 | CONFIG_RAYER_SPI \ |
| 110 | |
| 111 | DEPENDS_ON_LIBPCI := \ |
| 112 | CONFIG_ATAHPT \ |
| 113 | CONFIG_ATAPROMISE \ |
| 114 | CONFIG_ATAVIA \ |
| 115 | CONFIG_DRKAISER \ |
| 116 | CONFIG_GFXNVIDIA \ |
| 117 | CONFIG_INTERNAL \ |
| 118 | CONFIG_IT8212 \ |
| 119 | CONFIG_NIC3COM \ |
| 120 | CONFIG_NICINTEL \ |
| 121 | CONFIG_NICINTEL_EEPROM \ |
| 122 | CONFIG_NICINTEL_SPI \ |
| 123 | CONFIG_NICNATSEMI \ |
| 124 | CONFIG_NICREALTEK \ |
| 125 | CONFIG_OGP_SPI \ |
| 126 | CONFIG_SATAMV \ |
| 127 | CONFIG_SATASII \ |
| 128 | |
| 129 | DEPENDS_ON_LIBUSB1 := \ |
| 130 | CONFIG_CH341A_SPI \ |
| 131 | CONFIG_DEDIPROG \ |
| 132 | CONFIG_DEVELOPERBOX_SPI \ |
| 133 | CONFIG_DIGILENT_SPI \ |
| 134 | CONFIG_PICKIT2_SPI \ |
| 135 | CONFIG_RAIDEN_DEBUG_SPI \ |
| 136 | CONFIG_STLINKV3_SPI \ |
Jean THOMAS | e28d8e4 | 2022-10-11 17:54:30 +0200 | [diff] [blame] | 137 | CONFIG_DIRTYJTAG_SPI \ |
Nico Huber | 7f89897 | 2021-06-27 13:30:50 +0200 | [diff] [blame] | 138 | |
Thomas Heijligen | 121a5b8 | 2021-10-21 12:58:07 +0200 | [diff] [blame] | 139 | DEPENDS_ON_LIBFTDI1 := \ |
Nico Huber | 7f89897 | 2021-06-27 13:30:50 +0200 | [diff] [blame] | 140 | CONFIG_FT2232_SPI \ |
| 141 | CONFIG_USBBLASTER_SPI \ |
| 142 | |
| 143 | DEPENDS_ON_LIBJAYLINK := \ |
| 144 | CONFIG_JLINK_SPI \ |
| 145 | |
Thomas Heijligen | ff63acd | 2021-11-05 10:19:42 +0100 | [diff] [blame] | 146 | DEPENDS_ON_LIB_NI845X := \ |
| 147 | CONFIG_NI845X_SPI \ |
| 148 | |
Nico Huber | a54f5a4 | 2021-06-27 14:27:41 +0200 | [diff] [blame] | 149 | |
| 150 | ifeq ($(CONFIG_ENABLE_LIBUSB1_PROGRAMMERS), no) |
| 151 | $(call disable_all,$(DEPENDS_ON_LIBUSB1)) |
| 152 | endif |
| 153 | |
| 154 | ifeq ($(CONFIG_ENABLE_LIBPCI_PROGRAMMERS), no) |
| 155 | $(call disable_all,$(DEPENDS_ON_LIBPCI)) |
| 156 | endif |
| 157 | |
Nico Huber | 7f89897 | 2021-06-27 13:30:50 +0200 | [diff] [blame] | 158 | ############################################################################### |
Stefan Tauner | 037cd84 | 2013-08-25 00:10:56 +0000 | [diff] [blame] | 159 | # General OS-specific settings. |
| 160 | # 1. Prepare for later by gathering information about host and target OS |
| 161 | # 2. Set compiler flags and parameters according to OSes |
| 162 | # 3. Likewise verify user-supplied CONFIG_* variables. |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 163 | |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 164 | # HOST_OS is only used to work around local toolchain issues. |
Stefan Tauner | 037cd84 | 2013-08-25 00:10:56 +0000 | [diff] [blame] | 165 | HOST_OS ?= $(shell uname) |
Miklós Márton | a75a2ed | 2018-01-30 20:25:00 +0100 | [diff] [blame] | 166 | ifeq ($(findstring MINGW, $(HOST_OS)), MINGW) |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 167 | # Explicitly set CC = gcc on MinGW, otherwise: "cc: command not found". |
| 168 | CC = gcc |
| 169 | endif |
Miklós Márton | a75a2ed | 2018-01-30 20:25:00 +0100 | [diff] [blame] | 170 | |
Thomas Heijligen | 323ad35 | 2021-10-26 11:26:32 +0200 | [diff] [blame] | 171 | CC_WORKING := $(call c_compile_test, Makefile.d/cc_test.c) |
| 172 | |
Thomas Heijligen | 121a5b8 | 2021-10-21 12:58:07 +0200 | [diff] [blame] | 173 | # Configs for dependencies. Can be overwritten by commandline |
Thomas Heijligen | ff63acd | 2021-11-05 10:19:42 +0100 | [diff] [blame] | 174 | CONFIG_LIBFTDI1_CFLAGS := $(call dependency_cflags, libftdi1) |
| 175 | CONFIG_LIBFTDI1_LDFLAGS := $(call dependency_ldflags, libftdi1) |
| 176 | |
| 177 | # Hack to keep legacy auto detection of Program Files (x86), Only active if none of the CONFIG_ variables for ni845x are set. |
| 178 | ifeq ($(CONFIG_NI845X_LIBRARY_PATH)$(CONFIG_LIB_NI845X_CFLAGS)$(CONFIG_LIB_NI845X_LDFLAGS),) |
| 179 | PROGRAMFILES_X86 = $(shell env | sed -n "s/^PROGRAMFILES(X86)=//p") |
| 180 | ifneq ($(PROGRAMFILES_X86),) |
| 181 | ifneq ($(PROGRAMFILES_X86), ${PROGRAMFILES}) |
| 182 | NI854_X86_LIBRARY_PATH := '${PROGRAMFILES_X86}\National Instruments\NI-845x\MS Visual C' |
| 183 | endif |
| 184 | endif |
| 185 | endif |
| 186 | |
| 187 | CONFIG_NI845X_LIBRARY_PATH := '${PROGRAMFILES}\National Instruments\NI-845x\MS Visual C' |
| 188 | CONFIG_LIB_NI845X_CFLAGS := -I$(CONFIG_NI845X_LIBRARY_PATH) $(if NI854_X86_LIBRARY_PATH, -I${NI854_X86_LIBRARY_PATH}) |
| 189 | CONFIG_LIB_NI845X_LDFLAGS := -L$(CONFIG_NI845X_LIBRARY_PATH) $(if NI854_X86_LIBRARY_PATH, -L${NI854_X86_LIBRARY_PATH}) -lni845x |
Thomas Heijligen | 121a5b8 | 2021-10-21 12:58:07 +0200 | [diff] [blame] | 190 | |
Thomas Heijligen | 4dca899 | 2021-11-05 10:34:31 +0100 | [diff] [blame] | 191 | CONFIG_LIBJAYLINK_CFLAGS := $(call dependency_cflags, libjaylink) |
| 192 | CONFIG_LIBJAYLINK_LDFLAGS := $(call dependency_ldflags, libjaylink) |
| 193 | |
Thomas Heijligen | b7c6a66 | 2021-11-05 10:47:40 +0100 | [diff] [blame] | 194 | CONFIG_LIBUSB1_CFLAGS := $(call dependency_cflags, libusb-1.0) |
| 195 | CONFIG_LIBUSB1_LDFLAGS := $(call dependency_ldflags, libusb-1.0) |
| 196 | |
Thomas Heijligen | 282a951 | 2021-10-12 13:30:06 +0200 | [diff] [blame] | 197 | # Determine the destination OS, architecture and endian |
| 198 | # IMPORTANT: The following lines must be placed before TARGET_OS, ARCH or ENDIAN |
| 199 | # is ever used (of course), but should come after any lines setting CC because |
| 200 | # the lines below use CC itself. |
Thomas Heijligen | 1e76dc8 | 2021-09-28 15:22:34 +0200 | [diff] [blame] | 201 | override TARGET_OS := $(call c_macro_test, Makefile.d/os_test.h) |
Thomas Heijligen | 6efdfb3 | 2021-10-12 15:16:46 +0200 | [diff] [blame] | 202 | override ARCH := $(call c_macro_test, Makefile.d/arch_test.h) |
Thomas Heijligen | 9a2787b | 2021-10-12 15:54:06 +0200 | [diff] [blame] | 203 | override ENDIAN := $(call c_macro_test, Makefile.d/endian_test.h) |
Thomas Heijligen | 282a951 | 2021-10-12 13:30:06 +0200 | [diff] [blame] | 204 | |
Thomas Heijligen | 121a5b8 | 2021-10-21 12:58:07 +0200 | [diff] [blame] | 205 | |
| 206 | HAS_LIBFTDI1 := $(call find_dependency, libftdi1) |
Thomas Heijligen | ff63acd | 2021-11-05 10:19:42 +0100 | [diff] [blame] | 207 | HAS_LIB_NI845X := no |
Thomas Heijligen | 4dca899 | 2021-11-05 10:34:31 +0100 | [diff] [blame] | 208 | HAS_LIBJAYLINK := $(call find_dependency, libjaylink) |
Thomas Heijligen | b7c6a66 | 2021-11-05 10:47:40 +0100 | [diff] [blame] | 209 | HAS_LIBUSB1 := $(call find_dependency, libusb-1.0) |
Thomas Heijligen | 121a5b8 | 2021-10-21 12:58:07 +0200 | [diff] [blame] | 210 | |
| 211 | HAS_FT232H := $(call c_compile_test, Makefile.d/ft232h_test.c, $(CONFIG_LIBFTDI1_CFLAGS)) |
Thomas Heijligen | 457020a | 2021-10-26 12:44:36 +0200 | [diff] [blame] | 212 | HAS_UTSNAME := $(call c_compile_test, Makefile.d/utsname_test.c) |
| 213 | HAS_CLOCK_GETTIME := $(call c_compile_test, Makefile.d/clock_gettime_test.c) |
Thomas Heijligen | ca71c87 | 2021-10-20 22:08:24 +0200 | [diff] [blame] | 214 | HAS_LINUX_MTD := $(call c_compile_test, Makefile.d/linux_mtd_test.c) |
| 215 | HAS_LINUX_SPI := $(call c_compile_test, Makefile.d/linux_spi_test.c) |
| 216 | HAS_LINUX_I2C := $(call c_compile_test, Makefile.d/linux_i2c_test.c) |
Thomas Heijligen | 457020a | 2021-10-26 12:44:36 +0200 | [diff] [blame] | 217 | |
Thomas Heijligen | 0bec7b2 | 2021-10-12 13:18:15 +0200 | [diff] [blame] | 218 | ifeq ($(TARGET_OS), $(filter $(TARGET_OS), FreeBSD OpenBSD DragonFlyBSD)) |
| 219 | override CPPFLAGS += -I/usr/local/include |
| 220 | override LDFLAGS += -L/usr/local/lib |
| 221 | endif |
| 222 | |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 223 | ifeq ($(TARGET_OS), Darwin) |
Stefan Tauner | 4520706 | 2016-02-19 08:17:24 +0000 | [diff] [blame] | 224 | override CPPFLAGS += -I/opt/local/include -I/usr/local/include |
| 225 | override LDFLAGS += -L/opt/local/lib -L/usr/local/lib |
Stefan Reinauer | f79edb9 | 2009-01-26 01:23:31 +0000 | [diff] [blame] | 226 | endif |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 227 | |
Stefan Tauner | c65b855 | 2013-09-12 15:48:39 +0000 | [diff] [blame] | 228 | ifeq ($(TARGET_OS), NetBSD) |
Nico Huber | c0e1c4b | 2022-12-13 21:55:22 +0000 | [diff] [blame] | 229 | # Needs special `pciutils/pci.h` for older NetBSD packages |
| 230 | PCIUTILS_PCI_H := $(shell [ -f /usr/pkg/include/pciutils/pci.h ] && echo -DPCIUTILS_PCI_H) |
| 231 | override CPPFLAGS += -I/usr/pkg/include $(PCIUTILS_PCI_H) |
Stefan Tauner | 4520706 | 2016-02-19 08:17:24 +0000 | [diff] [blame] | 232 | override LDFLAGS += -L/usr/pkg/lib |
Stefan Tauner | c65b855 | 2013-09-12 15:48:39 +0000 | [diff] [blame] | 233 | endif |
| 234 | |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 235 | ifeq ($(TARGET_OS), DOS) |
Carl-Daniel Hailfinger | ddbab71 | 2010-06-14 14:44:08 +0000 | [diff] [blame] | 236 | EXEC_SUFFIX := .exe |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 237 | # DJGPP has odd uint*_t definitions which cause lots of format string warnings. |
Stefan Tauner | 4520706 | 2016-02-19 08:17:24 +0000 | [diff] [blame] | 238 | override CFLAGS += -Wno-format |
Stefan Tauner | 449abe2 | 2013-09-11 23:34:57 +0000 | [diff] [blame] | 239 | LIBS += -lgetopt |
Nico Huber | ba68196 | 2021-06-27 13:39:23 +0200 | [diff] [blame] | 240 | # Missing serial support. |
| 241 | $(call mark_unsupported,$(DEPENDS_ON_SERIAL)) |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 242 | endif |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 243 | |
Thomas Heijligen | 847d94b | 2021-10-12 17:38:01 +0200 | [diff] [blame] | 244 | ifeq ($(TARGET_OS), $(filter $(TARGET_OS), MinGW Cygwin)) |
| 245 | FEATURE_CFLAGS += -D'IS_WINDOWS=1' |
| 246 | else |
| 247 | FEATURE_CFLAGS += -D'IS_WINDOWS=0' |
| 248 | endif |
| 249 | |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 250 | # FIXME: Should we check for Cygwin/MSVC as well? |
| 251 | ifeq ($(TARGET_OS), MinGW) |
| 252 | EXEC_SUFFIX := .exe |
Uwe Hermann | d5e85d6 | 2011-07-03 19:44:12 +0000 | [diff] [blame] | 253 | # MinGW doesn't have the ffs() function, but we can use gcc's __builtin_ffs(). |
Carl-Daniel Hailfinger | a8da224 | 2012-08-15 23:06:32 +0000 | [diff] [blame] | 254 | FLASHROM_CFLAGS += -Dffs=__builtin_ffs |
Carl-Daniel Hailfinger | 11990da | 2013-07-13 23:21:05 +0000 | [diff] [blame] | 255 | # Some functions provided by Microsoft do not work as described in C99 specifications. This macro fixes that |
Stefan Tauner | 23e10b8 | 2016-01-23 16:16:49 +0000 | [diff] [blame] | 256 | # for MinGW. See http://sourceforge.net/p/mingw-w64/wiki2/printf%20and%20scanf%20family/ */ |
Carl-Daniel Hailfinger | 11990da | 2013-07-13 23:21:05 +0000 | [diff] [blame] | 257 | FLASHROM_CFLAGS += -D__USE_MINGW_ANSI_STDIO=1 |
Miklós Márton | 2d20d6d | 2018-01-30 20:20:15 +0100 | [diff] [blame] | 258 | |
Uwe Hermann | d5e85d6 | 2011-07-03 19:44:12 +0000 | [diff] [blame] | 259 | # For now we disable all PCI-based programmers on Windows/MinGW (no libpci). |
Nico Huber | ca62178 | 2021-06-27 13:53:49 +0200 | [diff] [blame] | 260 | $(call mark_unsupported,$(DEPENDS_ON_LIBPCI)) |
| 261 | # And programmers that need raw access. |
| 262 | $(call mark_unsupported,CONFIG_RAYER_SPI) |
Miklós Márton | 2d20d6d | 2018-01-30 20:20:15 +0100 | [diff] [blame] | 263 | endif |
| 264 | |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 265 | ifeq ($(TARGET_OS), libpayload) |
Stefan Tauner | 8e19b04 | 2013-08-28 09:55:04 +0000 | [diff] [blame] | 266 | ifeq ($(MAKECMDGOALS),) |
| 267 | .DEFAULT_GOAL := libflashrom.a |
| 268 | $(info Setting default goal to libflashrom.a) |
| 269 | endif |
Carl-Daniel Hailfinger | a8da224 | 2012-08-15 23:06:32 +0000 | [diff] [blame] | 270 | FLASHROM_CFLAGS += -DSTANDALONE |
Nico Huber | 7133103 | 2021-06-27 14:00:39 +0200 | [diff] [blame] | 271 | $(call mark_unsupported,CONFIG_DUMMY) |
Stefan Tauner | e016826 | 2016-02-21 11:18:24 +0000 | [diff] [blame] | 272 | # libpayload does not provide the romsize field in struct pci_dev that the atapromise code requires. |
Nico Huber | 7133103 | 2021-06-27 14:00:39 +0200 | [diff] [blame] | 273 | $(call mark_unsupported,CONFIG_ATAPROMISE) |
Carl-Daniel Hailfinger | 11990da | 2013-07-13 23:21:05 +0000 | [diff] [blame] | 274 | # Bus Pirate, Serprog and PonyProg are not supported with libpayload (missing serial support). |
Nico Huber | 7133103 | 2021-06-27 14:00:39 +0200 | [diff] [blame] | 275 | $(call mark_unsupported,CONFIG_BUSPIRATE_SPI CONFIG_SERPROG CONFIG_PONY_SPI) |
Patrick Georgi | 97bc95c | 2011-03-08 07:17:44 +0000 | [diff] [blame] | 276 | endif |
| 277 | |
Thomas Heijligen | ca71c87 | 2021-10-20 22:08:24 +0200 | [diff] [blame] | 278 | ifeq ($(HAS_LINUX_MTD), no) |
| 279 | $(call mark_unsupported,CONFIG_LINUX_MTD) |
| 280 | endif |
| 281 | |
| 282 | ifeq ($(HAS_LINUX_SPI), no) |
| 283 | $(call mark_unsupported,CONFIG_LINUX_SPI) |
| 284 | endif |
| 285 | |
| 286 | ifeq ($(HAS_LINUX_I2C), no) |
Nico Huber | dc8e54a | 2021-06-27 14:17:34 +0200 | [diff] [blame] | 287 | $(call mark_unsupported,CONFIG_MSTARDDC_SPI) |
Carl-Daniel Hailfinger | 601f4cd | 2016-02-28 22:04:51 +0000 | [diff] [blame] | 288 | endif |
Carl-Daniel Hailfinger | 8541d23 | 2012-02-16 21:00:27 +0000 | [diff] [blame] | 289 | |
Carl-Daniel Hailfinger | 16c0aec | 2016-02-20 21:43:56 +0000 | [diff] [blame] | 290 | ifeq ($(TARGET_OS), Android) |
Nico Huber | dc8e54a | 2021-06-27 14:17:34 +0200 | [diff] [blame] | 291 | # Android on x86 (currently) does not provide raw PCI port I/O operations. |
| 292 | $(call mark_unsupported,CONFIG_RAYER_SPI) |
Carl-Daniel Hailfinger | 16c0aec | 2016-02-20 21:43:56 +0000 | [diff] [blame] | 293 | endif |
| 294 | |
Nico Huber | c880173 | 2017-12-01 18:19:43 +0000 | [diff] [blame] | 295 | # Disable the internal programmer on unsupported architectures (everything but x86 and mipsel) |
Thomas Heijligen | 485d2cd | 2021-10-19 16:14:55 +0200 | [diff] [blame] | 296 | ifneq ($(ARCH)-little, $(filter $(ARCH), x86 mips)-$(ENDIAN)) |
Nico Huber | 8945b81 | 2021-06-27 14:24:53 +0200 | [diff] [blame] | 297 | $(call mark_unsupported,CONFIG_INTERNAL) |
Nico Huber | c880173 | 2017-12-01 18:19:43 +0000 | [diff] [blame] | 298 | endif |
| 299 | |
Thomas Heijligen | 121a5b8 | 2021-10-21 12:58:07 +0200 | [diff] [blame] | 300 | ifeq ($(HAS_LIBFTDI1), no) |
| 301 | $(call mark_unsupported,$(DEPENDS_ON_LIBFTDI1)) |
| 302 | endif |
| 303 | |
Thomas Heijligen | ff63acd | 2021-11-05 10:19:42 +0100 | [diff] [blame] | 304 | ifeq ($(HAS_LIB_NI845X), no) |
| 305 | $(call mark_unsupported,$(DEPENDS_ON_LIB_NI845X)) |
| 306 | endif |
| 307 | |
Thomas Heijligen | 4dca899 | 2021-11-05 10:34:31 +0100 | [diff] [blame] | 308 | ifeq ($(HAS_LIBJAYLINK), no) |
| 309 | $(call mark_unsupported,$(DEPENDS_ON_LIBJAYLINK)) |
| 310 | endif |
| 311 | |
Thomas Heijligen | b7c6a66 | 2021-11-05 10:47:40 +0100 | [diff] [blame] | 312 | ifeq ($(HAS_LIBUSB1), no) |
| 313 | $(call mark_unsupported,$(DEPENDS_ON_LIBUSB1)) |
| 314 | endif |
| 315 | |
Thomas Heijligen | d6d96c1 | 2021-10-12 16:47:43 +0200 | [diff] [blame] | 316 | ifeq ($(ENDIAN), little) |
| 317 | FEATURE_CFLAGS += -D'__FLASHROM_LITTLE_ENDIAN__=1' |
| 318 | endif |
| 319 | ifeq ($(ENDIAN), big) |
| 320 | FEATURE_CFLAGS += -D'__FLASHROM_BIG_ENDIAN__=1' |
| 321 | endif |
| 322 | |
Stefan Tauner | fb2d77c | 2015-02-10 08:03:10 +0000 | [diff] [blame] | 323 | # PCI port I/O support is unimplemented on PPC/MIPS/SPARC and unavailable on ARM. |
David Hendricks | b286da7 | 2012-02-13 00:35:35 +0000 | [diff] [blame] | 324 | # Right now this means the drivers below only work on x86. |
| 325 | ifneq ($(ARCH), x86) |
Nico Huber | 8945b81 | 2021-06-27 14:24:53 +0200 | [diff] [blame] | 326 | $(call mark_unsupported,CONFIG_NIC3COM CONFIG_NICREALTEK CONFIG_NICNATSEMI) |
| 327 | $(call mark_unsupported,CONFIG_RAYER_SPI CONFIG_ATAHPT CONFIG_ATAPROMISE) |
| 328 | $(call mark_unsupported,CONFIG_SATAMV) |
Uwe Hermann | 21b10c6 | 2011-07-29 12:13:01 +0000 | [diff] [blame] | 329 | endif |
| 330 | |
Nico Huber | 8945b81 | 2021-06-27 14:24:53 +0200 | [diff] [blame] | 331 | # Additionally disable all drivers needing raw access (memory, PCI, port I/O) |
| 332 | # on architectures with unknown raw access properties. |
Carl-Daniel Hailfinger | 8d0d53f | 2016-02-25 20:10:26 +0000 | [diff] [blame] | 333 | # Right now those architectures are alpha hppa m68k sh s390 |
Thomas Heijligen | 485d2cd | 2021-10-19 16:14:55 +0200 | [diff] [blame] | 334 | ifneq ($(ARCH), $(filter $(ARCH), x86 mips ppc arm sparc arc)) |
Nico Huber | 8945b81 | 2021-06-27 14:24:53 +0200 | [diff] [blame] | 335 | $(call mark_unsupported,CONFIG_GFXNVIDIA CONFIG_SATASII CONFIG_ATAVIA) |
| 336 | $(call mark_unsupported,CONFIG_DRKAISER CONFIG_NICINTEL CONFIG_NICINTEL_SPI) |
| 337 | $(call mark_unsupported,CONFIG_NICINTEL_EEPROM CONFIG_OGP_SPI CONFIG_IT8212) |
Carl-Daniel Hailfinger | 8d0d53f | 2016-02-25 20:10:26 +0000 | [diff] [blame] | 338 | endif |
| 339 | |
Thomas Heijligen | 433dc1c | 2021-10-12 17:58:35 +0200 | [diff] [blame] | 340 | ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Linux Darwin NetBSD OpenBSD)) |
| 341 | FEATURE_CFLAGS += -D'USE_IOPL=1' |
| 342 | else |
| 343 | FEATURE_CFLAGS += -D'USE_IOPL=0' |
| 344 | endif |
| 345 | |
| 346 | ifeq ($(TARGET_OS), $(filter $(TARGET_OS), FreeBSD FreeBSD-glibc DragonFlyBSD)) |
| 347 | FEATURE_CFLAGS += -D'USE_DEV_IO=1' |
| 348 | else |
| 349 | FEATURE_CFLAGS += -D'USE_DEV_IO=0' |
| 350 | endif |
| 351 | |
| 352 | ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Hurd)) |
| 353 | FEATURE_CFLAGS += -D'USE_IOPERM=1' |
| 354 | else |
| 355 | FEATURE_CFLAGS += -D'USE_IOPERM=0' |
| 356 | endif |
| 357 | |
| 358 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 359 | ############################################################################### |
| 360 | # Flash chip drivers and bus support infrastructure. |
| 361 | |
Stefan Tauner | 4404f73 | 2013-09-12 08:28:56 +0000 | [diff] [blame] | 362 | CHIP_OBJS = jedec.o stm50.o w39.o w29ee011.o \ |
Carl-Daniel Hailfinger | a8cf362 | 2014-08-08 08:33:01 +0000 | [diff] [blame] | 363 | sst28sf040.o 82802ab.o \ |
Paul Kocialkowski | 80ae14e | 2018-01-15 01:07:46 +0300 | [diff] [blame] | 364 | sst49lfxxxc.o sst_fwhub.o edi.o flashchips.o spi.o spi25.o spi25_statusreg.o \ |
Nikolai Artemiev | c9feb1b | 2021-10-21 01:35:13 +1100 | [diff] [blame] | 365 | spi95.o opaque.o sfdp.o en29lv640b.o at45db.o \ |
| 366 | writeprotect.o writeprotect_ranges.o |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 367 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 368 | ############################################################################### |
| 369 | # Library code. |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 370 | |
Thomas Heijligen | bbfacff | 2021-03-31 20:40:01 +0200 | [diff] [blame] | 371 | LIB_OBJS = libflashrom.o layout.o flashrom.o udelay.o programmer.o programmer_table.o helpers.o ich_descriptors.o fmap.o |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 372 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 373 | ############################################################################### |
| 374 | # Frontend related stuff. |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 375 | |
Stefan Tauner | 9b32de9 | 2014-08-08 23:52:33 +0000 | [diff] [blame] | 376 | CLI_OBJS = cli_classic.o cli_output.o cli_common.o print.o |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 377 | |
Stefan Tauner | fa25bc3 | 2017-10-04 03:47:26 +0200 | [diff] [blame] | 378 | # versioninfo.inc stores metadata required to build a packaged flashrom. It is generated by the export rule and |
| 379 | # imported below. If versioninfo.inc is not found and the variables are not defined by the user, the info will |
| 380 | # be obtained using util/getrevision.sh, which is the common case during development. |
| 381 | -include versioninfo.inc |
Stefan Tauner | 5bf6b85 | 2017-10-04 03:46:51 +0200 | [diff] [blame] | 382 | VERSION ?= $(shell ./util/getrevision.sh --revision) |
Stefan Tauner | 9620912 | 2017-10-01 16:41:35 +0200 | [diff] [blame] | 383 | MAN_DATE ?= $(shell ./util/getrevision.sh --date $(PROGRAM).8.tmpl 2>/dev/null) |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 384 | |
Stefan Tauner | 7634708 | 2016-11-27 17:45:49 +0100 | [diff] [blame] | 385 | SCMDEF := -D'FLASHROM_VERSION="$(VERSION)"' |
Bernhard Walle | 201bde3 | 2008-01-21 15:24:22 +0000 | [diff] [blame] | 386 | |
Stefan Tauner | 7634708 | 2016-11-27 17:45:49 +0100 | [diff] [blame] | 387 | # Inform user of the version string |
Nico Huber | 26c2c4d | 2023-01-10 17:45:38 +0100 | [diff] [blame] | 388 | ifeq ($(filter branch tag,$(MAKECMDGOALS)), ) |
Stefan Tauner | 7634708 | 2016-11-27 17:45:49 +0100 | [diff] [blame] | 389 | $(info Replacing all version templates with $(VERSION).) |
Nico Huber | 26c2c4d | 2023-01-10 17:45:38 +0100 | [diff] [blame] | 390 | endif |
Stefan Tauner | d5ff845 | 2015-01-10 09:32:07 +0000 | [diff] [blame] | 391 | |
Stefan Tauner | 037cd84 | 2013-08-25 00:10:56 +0000 | [diff] [blame] | 392 | ############################################################################### |
| 393 | # Default settings of CONFIG_* variables. |
| 394 | |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 395 | # Always enable internal/onboard support for now. |
| 396 | CONFIG_INTERNAL ?= yes |
| 397 | |
Stefan Tauner | 52b6e9d | 2013-04-01 00:46:05 +0000 | [diff] [blame] | 398 | # Always enable serprog for now. |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 399 | CONFIG_SERPROG ?= yes |
| 400 | |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 401 | # RayeR SPIPGM hardware support |
| 402 | CONFIG_RAYER_SPI ?= yes |
| 403 | |
Virgil-Adrian Teaca | da7c545 | 2012-04-30 23:11:06 +0000 | [diff] [blame] | 404 | # PonyProg2000 SPI hardware support |
| 405 | CONFIG_PONY_SPI ?= yes |
| 406 | |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 407 | # Always enable 3Com NICs for now. |
| 408 | CONFIG_NIC3COM ?= yes |
| 409 | |
Carl-Daniel Hailfinger | bf3af29 | 2010-07-29 14:41:46 +0000 | [diff] [blame] | 410 | # Enable NVIDIA graphics cards. Note: write and erase do not work properly. |
| 411 | CONFIG_GFXNVIDIA ?= yes |
Uwe Hermann | 2bc98f6 | 2009-09-30 18:29:55 +0000 | [diff] [blame] | 412 | |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 413 | # Always enable SiI SATA controllers for now. |
| 414 | CONFIG_SATASII ?= yes |
| 415 | |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 416 | # Highpoint (HPT) ATA/RAID controller support. |
| 417 | # IMPORTANT: This code is not yet working! |
| 418 | CONFIG_ATAHPT ?= no |
| 419 | |
Jonathan Kollasch | 7f0f3fa | 2014-06-01 10:26:23 +0000 | [diff] [blame] | 420 | # VIA VT6421A LPC memory support |
| 421 | CONFIG_ATAVIA ?= yes |
| 422 | |
Joseph C. Lehner | c2644a3 | 2016-01-16 23:45:25 +0000 | [diff] [blame] | 423 | # Promise ATA controller support. |
| 424 | CONFIG_ATAPROMISE ?= no |
| 425 | |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 426 | # Always enable FT2232 SPI dongles for now. |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 427 | CONFIG_FT2232_SPI ?= yes |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 428 | |
James Laird | c60de0e | 2013-03-27 13:00:23 +0000 | [diff] [blame] | 429 | # Always enable Altera USB-Blaster dongles for now. |
| 430 | CONFIG_USBBLASTER_SPI ?= yes |
| 431 | |
Alexandre Boeglin | 80e6471 | 2014-12-20 20:25:19 +0000 | [diff] [blame] | 432 | # MSTAR DDC support needs more tests/reviews/cleanups. |
| 433 | CONFIG_MSTARDDC_SPI ?= no |
| 434 | |
Justin Chevrier | 66e554b | 2015-02-08 21:58:10 +0000 | [diff] [blame] | 435 | # Always enable PICkit2 SPI dongles for now. |
| 436 | CONFIG_PICKIT2_SPI ?= yes |
| 437 | |
Miklós Márton | 324929c | 2019-08-01 19:14:10 +0200 | [diff] [blame] | 438 | # Always enable STLink V3 |
| 439 | CONFIG_STLINKV3_SPI ?= yes |
| 440 | |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 441 | # Always enable dummy tracing for now. |
| 442 | CONFIG_DUMMY ?= yes |
| 443 | |
| 444 | # Always enable Dr. Kaiser for now. |
| 445 | CONFIG_DRKAISER ?= yes |
Carl-Daniel Hailfinger | 6be7411 | 2009-08-12 16:17:41 +0000 | [diff] [blame] | 446 | |
Joerg Fischer | 5665ef3 | 2010-05-21 21:54:07 +0000 | [diff] [blame] | 447 | # Always enable Realtek NICs for now. |
| 448 | CONFIG_NICREALTEK ?= yes |
| 449 | |
Andrew Morgan | c29c2e7 | 2010-06-07 22:37:54 +0000 | [diff] [blame] | 450 | # Disable National Semiconductor NICs until support is complete and tested. |
| 451 | CONFIG_NICNATSEMI ?= no |
| 452 | |
Carl-Daniel Hailfinger | b713d2e | 2011-05-08 00:24:18 +0000 | [diff] [blame] | 453 | # Always enable Intel NICs for now. |
| 454 | CONFIG_NICINTEL ?= yes |
| 455 | |
Idwer Vollering | 004f4b7 | 2010-09-03 18:21:21 +0000 | [diff] [blame] | 456 | # Always enable SPI on Intel NICs for now. |
| 457 | CONFIG_NICINTEL_SPI ?= yes |
| 458 | |
Ricardo Ribalda Delgado | 2a41f0a | 2014-07-28 20:35:21 +0000 | [diff] [blame] | 459 | # Always enable EEPROM on Intel NICs for now. |
| 460 | CONFIG_NICINTEL_EEPROM ?= yes |
| 461 | |
Mark Marshall | 90021f2 | 2010-12-03 14:48:11 +0000 | [diff] [blame] | 462 | # Always enable SPI on OGP cards for now. |
| 463 | CONFIG_OGP_SPI ?= yes |
| 464 | |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 465 | # Always enable Bus Pirate SPI for now. |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 466 | CONFIG_BUSPIRATE_SPI ?= yes |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 467 | |
Simon Glass | ae61651 | 2016-01-23 23:27:58 +0000 | [diff] [blame] | 468 | # Always enable Dediprog SF100 for now. |
| 469 | CONFIG_DEDIPROG ?= yes |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 470 | |
Daniel Thompson | 45e91a2 | 2018-06-04 13:46:29 +0100 | [diff] [blame] | 471 | # Always enable Developerbox emergency recovery for now. |
| 472 | CONFIG_DEVELOPERBOX_SPI ?= yes |
| 473 | |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 474 | # Always enable Marvell SATA controllers for now. |
| 475 | CONFIG_SATAMV ?= yes |
| 476 | |
David Hendricks | f9a3055 | 2015-05-23 20:30:30 -0700 | [diff] [blame] | 477 | # Enable Linux spidev and MTD interfaces by default. We disable them on non-Linux targets. |
| 478 | CONFIG_LINUX_MTD ?= yes |
Carl-Daniel Hailfinger | 8541d23 | 2012-02-16 21:00:27 +0000 | [diff] [blame] | 479 | CONFIG_LINUX_SPI ?= yes |
| 480 | |
Kyösti Mälkki | 72d42f8 | 2014-06-01 23:48:31 +0000 | [diff] [blame] | 481 | # Always enable ITE IT8212F PATA controllers for now. |
| 482 | CONFIG_IT8212 ?= yes |
| 483 | |
Urja Rannikko | 0870b02 | 2016-01-31 22:10:29 +0000 | [diff] [blame] | 484 | # Winchiphead CH341A |
| 485 | CONFIG_CH341A_SPI ?= yes |
| 486 | |
Lubomir Rintel | b2154e8 | 2018-01-14 17:35:33 +0100 | [diff] [blame] | 487 | # Digilent Development board JTAG |
| 488 | CONFIG_DIGILENT_SPI ?= yes |
| 489 | |
Jean THOMAS | e28d8e4 | 2022-10-11 17:54:30 +0200 | [diff] [blame] | 490 | # DirtyJTAG |
| 491 | CONFIG_DIRTYJTAG_SPI ?= yes |
| 492 | |
Marc Schink | 3578ec6 | 2016-03-17 16:23:03 +0100 | [diff] [blame] | 493 | # Disable J-Link for now. |
| 494 | CONFIG_JLINK_SPI ?= no |
| 495 | |
Nico Huber | 83d5207 | 2021-06-27 00:07:13 +0200 | [diff] [blame] | 496 | # National Instruments USB-845x is Windows only and needs a proprietary library. |
| 497 | CONFIG_NI845X_SPI ?= no |
| 498 | |
Carl-Daniel Hailfinger | 6161ff1 | 2009-11-16 21:22:24 +0000 | [diff] [blame] | 499 | # Disable wiki printing by default. It is only useful if you have wiki access. |
Uwe Hermann | 2db77a0 | 2010-06-04 17:07:39 +0000 | [diff] [blame] | 500 | CONFIG_PRINT_WIKI ?= no |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 501 | |
Stefan Tauner | f350337 | 2016-02-26 23:51:21 +0000 | [diff] [blame] | 502 | # Disable all features if CONFIG_NOTHING=yes is given unless CONFIG_EVERYTHING was also set |
| 503 | ifeq ($(CONFIG_NOTHING), yes) |
| 504 | ifeq ($(CONFIG_EVERYTHING), yes) |
| 505 | $(error Setting CONFIG_NOTHING=yes and CONFIG_EVERYTHING=yes does not make sense) |
| 506 | endif |
| 507 | $(foreach var, $(filter CONFIG_%, $(.VARIABLES)),\ |
| 508 | $(if $(filter yes, $($(var))),\ |
| 509 | $(eval $(var)=no))) |
| 510 | endif |
| 511 | |
Patrick Georgi | ced7ab6 | 2015-01-19 19:52:34 +0000 | [diff] [blame] | 512 | # Enable all features if CONFIG_EVERYTHING=yes is given |
| 513 | ifeq ($(CONFIG_EVERYTHING), yes) |
| 514 | $(foreach var, $(filter CONFIG_%, $(.VARIABLES)),\ |
| 515 | $(if $(filter no, $($(var))),\ |
| 516 | $(eval $(var)=yes))) |
| 517 | endif |
| 518 | |
Carl-Daniel Hailfinger | 9e3a6c4 | 2010-10-08 12:40:09 +0000 | [diff] [blame] | 519 | # Bitbanging SPI infrastructure, default off unless needed. |
Nico Huber | 29c6834 | 2021-06-27 14:34:16 +0200 | [diff] [blame] | 520 | |
| 521 | ifneq ($(call filter_deps,$(DEPENDS_ON_BITBANG_SPI)), ) |
Felix Singer | 4cbc1cb | 2022-07-22 23:23:28 +0200 | [diff] [blame] | 522 | override CONFIG_BITBANG_SPI = yes |
| 523 | else |
Carl-Daniel Hailfinger | 9e3a6c4 | 2010-10-08 12:40:09 +0000 | [diff] [blame] | 524 | CONFIG_BITBANG_SPI ?= no |
| 525 | endif |
Carl-Daniel Hailfinger | 9e3a6c4 | 2010-10-08 12:40:09 +0000 | [diff] [blame] | 526 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 527 | ############################################################################### |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 528 | # Handle CONFIG_* variables that depend on others set (and verified) above. |
| 529 | |
| 530 | # The external DMI decoder (dmidecode) does not work in libpayload. Bail out if the internal one got disabled. |
| 531 | ifeq ($(TARGET_OS), libpayload) |
| 532 | ifeq ($(CONFIG_INTERNAL), yes) |
| 533 | ifeq ($(CONFIG_INTERNAL_DMI), no) |
| 534 | UNSUPPORTED_FEATURES += CONFIG_INTERNAL_DMI=no |
| 535 | else |
| 536 | override CONFIG_INTERNAL_DMI = yes |
| 537 | endif |
| 538 | endif |
| 539 | endif |
| 540 | |
| 541 | # Use internal DMI/SMBIOS decoder by default instead of relying on dmidecode. |
| 542 | CONFIG_INTERNAL_DMI ?= yes |
| 543 | |
| 544 | ############################################################################### |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 545 | # Programmer drivers and programmer support infrastructure. |
Stefan Tauner | 037cd84 | 2013-08-25 00:10:56 +0000 | [diff] [blame] | 546 | # Depending on the CONFIG_* variables set and verified above we set compiler flags and parameters below. |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 547 | |
Thomas Heijligen | 84e9c91 | 2021-06-01 16:22:14 +0200 | [diff] [blame] | 548 | ifdef CONFIG_DEFAULT_PROGRAMMER_NAME |
| 549 | FEATURE_CFLAGS += -D'CONFIG_DEFAULT_PROGRAMMER_NAME=&programmer_$(CONFIG_DEFAULT_PROGRAMMER_NAME)' |
| 550 | else |
| 551 | FEATURE_CFLAGS += -D'CONFIG_DEFAULT_PROGRAMMER_NAME=NULL' |
| 552 | endif |
| 553 | |
Stefan Tauner | 265fcac | 2014-06-02 00:12:23 +0000 | [diff] [blame] | 554 | FEATURE_CFLAGS += -D'CONFIG_DEFAULT_PROGRAMMER_ARGS="$(CONFIG_DEFAULT_PROGRAMMER_ARGS)"' |
Stefan Tauner | fd0d413 | 2012-09-25 21:24:55 +0000 | [diff] [blame] | 555 | |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 556 | ifeq ($(CONFIG_INTERNAL), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 557 | FEATURE_CFLAGS += -D'CONFIG_INTERNAL=1' |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 558 | PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o internal.o |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 559 | ifeq ($(ARCH), x86) |
Edward O'Callaghan | 2ab6bba | 2022-06-24 16:48:09 +1000 | [diff] [blame] | 560 | PROGRAMMER_OBJS += it87spi.o sb600spi.o amd_imc.o wbsio_spi.o mcp6x_spi.o |
Nico Huber | 305f417 | 2013-06-14 11:55:26 +0200 | [diff] [blame] | 561 | PROGRAMMER_OBJS += ichspi.o dmi.o |
Sean Nelson | 4c6d3a4 | 2013-09-11 23:35:03 +0000 | [diff] [blame] | 562 | ifeq ($(CONFIG_INTERNAL_DMI), yes) |
| 563 | FEATURE_CFLAGS += -D'CONFIG_INTERNAL_DMI=1' |
| 564 | endif |
Carl-Daniel Hailfinger | 91199a1 | 2011-07-07 06:59:18 +0000 | [diff] [blame] | 565 | else |
| 566 | endif |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 567 | endif |
| 568 | |
Carl-Daniel Hailfinger | 6be7411 | 2009-08-12 16:17:41 +0000 | [diff] [blame] | 569 | ifeq ($(CONFIG_SERPROG), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 570 | FEATURE_CFLAGS += -D'CONFIG_SERPROG=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 571 | PROGRAMMER_OBJS += serprog.o |
Carl-Daniel Hailfinger | f2daaca | 2016-02-17 22:25:12 +0000 | [diff] [blame] | 572 | NEED_SERIAL += CONFIG_SERPROG |
| 573 | NEED_POSIX_SOCKETS += CONFIG_SERPROG |
Carl-Daniel Hailfinger | 6be7411 | 2009-08-12 16:17:41 +0000 | [diff] [blame] | 574 | endif |
| 575 | |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 576 | ifeq ($(CONFIG_RAYER_SPI), yes) |
| 577 | FEATURE_CFLAGS += -D'CONFIG_RAYER_SPI=1' |
| 578 | PROGRAMMER_OBJS += rayer_spi.o |
Carl-Daniel Hailfinger | 16c0aec | 2016-02-20 21:43:56 +0000 | [diff] [blame] | 579 | NEED_RAW_ACCESS += CONFIG_RAYER_SPI |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 580 | endif |
| 581 | |
Virgil-Adrian Teaca | da7c545 | 2012-04-30 23:11:06 +0000 | [diff] [blame] | 582 | ifeq ($(CONFIG_PONY_SPI), yes) |
| 583 | FEATURE_CFLAGS += -D'CONFIG_PONY_SPI=1' |
| 584 | PROGRAMMER_OBJS += pony_spi.o |
Carl-Daniel Hailfinger | f2daaca | 2016-02-17 22:25:12 +0000 | [diff] [blame] | 585 | NEED_SERIAL += CONFIG_PONY_SPI |
Virgil-Adrian Teaca | da7c545 | 2012-04-30 23:11:06 +0000 | [diff] [blame] | 586 | endif |
| 587 | |
Carl-Daniel Hailfinger | 547872b | 2009-09-28 13:15:16 +0000 | [diff] [blame] | 588 | ifeq ($(CONFIG_BITBANG_SPI), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 589 | FEATURE_CFLAGS += -D'CONFIG_BITBANG_SPI=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 590 | PROGRAMMER_OBJS += bitbang_spi.o |
Carl-Daniel Hailfinger | 547872b | 2009-09-28 13:15:16 +0000 | [diff] [blame] | 591 | endif |
| 592 | |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 593 | ifeq ($(CONFIG_NIC3COM), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 594 | FEATURE_CFLAGS += -D'CONFIG_NIC3COM=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 595 | PROGRAMMER_OBJS += nic3com.o |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 596 | endif |
Carl-Daniel Hailfinger | 6be7411 | 2009-08-12 16:17:41 +0000 | [diff] [blame] | 597 | |
Uwe Hermann | 2bc98f6 | 2009-09-30 18:29:55 +0000 | [diff] [blame] | 598 | ifeq ($(CONFIG_GFXNVIDIA), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 599 | FEATURE_CFLAGS += -D'CONFIG_GFXNVIDIA=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 600 | PROGRAMMER_OBJS += gfxnvidia.o |
Uwe Hermann | 2bc98f6 | 2009-09-30 18:29:55 +0000 | [diff] [blame] | 601 | endif |
| 602 | |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 603 | ifeq ($(CONFIG_SATASII), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 604 | FEATURE_CFLAGS += -D'CONFIG_SATASII=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 605 | PROGRAMMER_OBJS += satasii.o |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 606 | endif |
| 607 | |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 608 | ifeq ($(CONFIG_ATAHPT), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 609 | FEATURE_CFLAGS += -D'CONFIG_ATAHPT=1' |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 610 | PROGRAMMER_OBJS += atahpt.o |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 611 | endif |
| 612 | |
Jonathan Kollasch | 7f0f3fa | 2014-06-01 10:26:23 +0000 | [diff] [blame] | 613 | ifeq ($(CONFIG_ATAVIA), yes) |
| 614 | FEATURE_CFLAGS += -D'CONFIG_ATAVIA=1' |
| 615 | PROGRAMMER_OBJS += atavia.o |
Jonathan Kollasch | 7f0f3fa | 2014-06-01 10:26:23 +0000 | [diff] [blame] | 616 | endif |
| 617 | |
Joseph C. Lehner | c2644a3 | 2016-01-16 23:45:25 +0000 | [diff] [blame] | 618 | ifeq ($(CONFIG_ATAPROMISE), yes) |
| 619 | FEATURE_CFLAGS += -D'CONFIG_ATAPROMISE=1' |
| 620 | PROGRAMMER_OBJS += atapromise.o |
Joseph C. Lehner | c2644a3 | 2016-01-16 23:45:25 +0000 | [diff] [blame] | 621 | endif |
| 622 | |
Kyösti Mälkki | 72d42f8 | 2014-06-01 23:48:31 +0000 | [diff] [blame] | 623 | ifeq ($(CONFIG_IT8212), yes) |
| 624 | FEATURE_CFLAGS += -D'CONFIG_IT8212=1' |
| 625 | PROGRAMMER_OBJS += it8212.o |
Kyösti Mälkki | 72d42f8 | 2014-06-01 23:48:31 +0000 | [diff] [blame] | 626 | endif |
| 627 | |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 628 | ifeq ($(CONFIG_FT2232_SPI), yes) |
Thomas Heijligen | 121a5b8 | 2021-10-21 12:58:07 +0200 | [diff] [blame] | 629 | FEATURE_CFLAGS += -D'CONFIG_FT2232_SPI=1' |
James Laird | c60de0e | 2013-03-27 13:00:23 +0000 | [diff] [blame] | 630 | PROGRAMMER_OBJS += ft2232_spi.o |
| 631 | endif |
| 632 | |
| 633 | ifeq ($(CONFIG_USBBLASTER_SPI), yes) |
Thomas Heijligen | 121a5b8 | 2021-10-21 12:58:07 +0200 | [diff] [blame] | 634 | FEATURE_CFLAGS += -D'CONFIG_USBBLASTER_SPI=1' |
James Laird | c60de0e | 2013-03-27 13:00:23 +0000 | [diff] [blame] | 635 | PROGRAMMER_OBJS += usbblaster_spi.o |
| 636 | endif |
| 637 | |
Justin Chevrier | 66e554b | 2015-02-08 21:58:10 +0000 | [diff] [blame] | 638 | ifeq ($(CONFIG_PICKIT2_SPI), yes) |
| 639 | FEATURE_CFLAGS += -D'CONFIG_PICKIT2_SPI=1' |
| 640 | PROGRAMMER_OBJS += pickit2_spi.o |
Justin Chevrier | 66e554b | 2015-02-08 21:58:10 +0000 | [diff] [blame] | 641 | endif |
| 642 | |
Miklós Márton | 324929c | 2019-08-01 19:14:10 +0200 | [diff] [blame] | 643 | ifeq ($(CONFIG_STLINKV3_SPI), yes) |
| 644 | FEATURE_CFLAGS += -D'CONFIG_STLINKV3_SPI=1' |
| 645 | PROGRAMMER_OBJS += stlinkv3_spi.o |
Miklós Márton | 324929c | 2019-08-01 19:14:10 +0200 | [diff] [blame] | 646 | endif |
| 647 | |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 648 | ifeq ($(CONFIG_DUMMY), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 649 | FEATURE_CFLAGS += -D'CONFIG_DUMMY=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 650 | PROGRAMMER_OBJS += dummyflasher.o |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 651 | endif |
| 652 | |
| 653 | ifeq ($(CONFIG_DRKAISER), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 654 | FEATURE_CFLAGS += -D'CONFIG_DRKAISER=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 655 | PROGRAMMER_OBJS += drkaiser.o |
Carl-Daniel Hailfinger | 4740c6f | 2009-09-16 10:09:21 +0000 | [diff] [blame] | 656 | endif |
Carl-Daniel Hailfinger | 6be7411 | 2009-08-12 16:17:41 +0000 | [diff] [blame] | 657 | |
Joerg Fischer | 5665ef3 | 2010-05-21 21:54:07 +0000 | [diff] [blame] | 658 | ifeq ($(CONFIG_NICREALTEK), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 659 | FEATURE_CFLAGS += -D'CONFIG_NICREALTEK=1' |
Joerg Fischer | 5665ef3 | 2010-05-21 21:54:07 +0000 | [diff] [blame] | 660 | PROGRAMMER_OBJS += nicrealtek.o |
Joerg Fischer | 5665ef3 | 2010-05-21 21:54:07 +0000 | [diff] [blame] | 661 | endif |
| 662 | |
Andrew Morgan | c29c2e7 | 2010-06-07 22:37:54 +0000 | [diff] [blame] | 663 | ifeq ($(CONFIG_NICNATSEMI), yes) |
| 664 | FEATURE_CFLAGS += -D'CONFIG_NICNATSEMI=1' |
| 665 | PROGRAMMER_OBJS += nicnatsemi.o |
Andrew Morgan | c29c2e7 | 2010-06-07 22:37:54 +0000 | [diff] [blame] | 666 | endif |
| 667 | |
Carl-Daniel Hailfinger | b713d2e | 2011-05-08 00:24:18 +0000 | [diff] [blame] | 668 | ifeq ($(CONFIG_NICINTEL), yes) |
| 669 | FEATURE_CFLAGS += -D'CONFIG_NICINTEL=1' |
| 670 | PROGRAMMER_OBJS += nicintel.o |
Carl-Daniel Hailfinger | b713d2e | 2011-05-08 00:24:18 +0000 | [diff] [blame] | 671 | endif |
| 672 | |
Idwer Vollering | 004f4b7 | 2010-09-03 18:21:21 +0000 | [diff] [blame] | 673 | ifeq ($(CONFIG_NICINTEL_SPI), yes) |
| 674 | FEATURE_CFLAGS += -D'CONFIG_NICINTEL_SPI=1' |
| 675 | PROGRAMMER_OBJS += nicintel_spi.o |
Idwer Vollering | 004f4b7 | 2010-09-03 18:21:21 +0000 | [diff] [blame] | 676 | endif |
| 677 | |
Ricardo Ribalda Delgado | 2a41f0a | 2014-07-28 20:35:21 +0000 | [diff] [blame] | 678 | ifeq ($(CONFIG_NICINTEL_EEPROM), yes) |
| 679 | FEATURE_CFLAGS += -D'CONFIG_NICINTEL_EEPROM=1' |
| 680 | PROGRAMMER_OBJS += nicintel_eeprom.o |
Ricardo Ribalda Delgado | 2a41f0a | 2014-07-28 20:35:21 +0000 | [diff] [blame] | 681 | endif |
| 682 | |
Mark Marshall | 90021f2 | 2010-12-03 14:48:11 +0000 | [diff] [blame] | 683 | ifeq ($(CONFIG_OGP_SPI), yes) |
| 684 | FEATURE_CFLAGS += -D'CONFIG_OGP_SPI=1' |
| 685 | PROGRAMMER_OBJS += ogp_spi.o |
Mark Marshall | 90021f2 | 2010-12-03 14:48:11 +0000 | [diff] [blame] | 686 | endif |
| 687 | |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 688 | ifeq ($(CONFIG_BUSPIRATE_SPI), yes) |
| 689 | FEATURE_CFLAGS += -D'CONFIG_BUSPIRATE_SPI=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 690 | PROGRAMMER_OBJS += buspirate_spi.o |
Carl-Daniel Hailfinger | f2daaca | 2016-02-17 22:25:12 +0000 | [diff] [blame] | 691 | NEED_SERIAL += CONFIG_BUSPIRATE_SPI |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 692 | endif |
| 693 | |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 694 | ifeq ($(CONFIG_DEDIPROG), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 695 | FEATURE_CFLAGS += -D'CONFIG_DEDIPROG=1' |
Carl-Daniel Hailfinger | d38fac8 | 2010-01-19 11:15:48 +0000 | [diff] [blame] | 696 | PROGRAMMER_OBJS += dediprog.o |
| 697 | endif |
| 698 | |
Daniel Thompson | 45e91a2 | 2018-06-04 13:46:29 +0100 | [diff] [blame] | 699 | ifeq ($(CONFIG_DEVELOPERBOX_SPI), yes) |
| 700 | FEATURE_CFLAGS += -D'CONFIG_DEVELOPERBOX_SPI=1' |
| 701 | PROGRAMMER_OBJS += developerbox_spi.o |
Daniel Thompson | 45e91a2 | 2018-06-04 13:46:29 +0100 | [diff] [blame] | 702 | endif |
| 703 | |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 704 | ifeq ($(CONFIG_SATAMV), yes) |
| 705 | FEATURE_CFLAGS += -D'CONFIG_SATAMV=1' |
| 706 | PROGRAMMER_OBJS += satamv.o |
Carl-Daniel Hailfinger | 9a1105c | 2011-02-04 21:37:59 +0000 | [diff] [blame] | 707 | endif |
| 708 | |
David Hendricks | f9a3055 | 2015-05-23 20:30:30 -0700 | [diff] [blame] | 709 | ifeq ($(CONFIG_LINUX_MTD), yes) |
Thomas Heijligen | ca71c87 | 2021-10-20 22:08:24 +0200 | [diff] [blame] | 710 | FEATURE_CFLAGS += -D'CONFIG_LINUX_MTD=1' |
David Hendricks | f9a3055 | 2015-05-23 20:30:30 -0700 | [diff] [blame] | 711 | PROGRAMMER_OBJS += linux_mtd.o |
| 712 | endif |
| 713 | |
Carl-Daniel Hailfinger | 8541d23 | 2012-02-16 21:00:27 +0000 | [diff] [blame] | 714 | ifeq ($(CONFIG_LINUX_SPI), yes) |
Thomas Heijligen | ca71c87 | 2021-10-20 22:08:24 +0200 | [diff] [blame] | 715 | FEATURE_CFLAGS += -D'CONFIG_LINUX_SPI=1' |
Carl-Daniel Hailfinger | 8541d23 | 2012-02-16 21:00:27 +0000 | [diff] [blame] | 716 | PROGRAMMER_OBJS += linux_spi.o |
| 717 | endif |
| 718 | |
Alexandre Boeglin | 80e6471 | 2014-12-20 20:25:19 +0000 | [diff] [blame] | 719 | ifeq ($(CONFIG_MSTARDDC_SPI), yes) |
Thomas Heijligen | ca71c87 | 2021-10-20 22:08:24 +0200 | [diff] [blame] | 720 | FEATURE_CFLAGS += -D'CONFIG_MSTARDDC_SPI=1' |
Alexandre Boeglin | 80e6471 | 2014-12-20 20:25:19 +0000 | [diff] [blame] | 721 | PROGRAMMER_OBJS += mstarddc_spi.o |
| 722 | endif |
| 723 | |
Urja Rannikko | 0870b02 | 2016-01-31 22:10:29 +0000 | [diff] [blame] | 724 | ifeq ($(CONFIG_CH341A_SPI), yes) |
| 725 | FEATURE_CFLAGS += -D'CONFIG_CH341A_SPI=1' |
| 726 | PROGRAMMER_OBJS += ch341a_spi.o |
Urja Rannikko | 0870b02 | 2016-01-31 22:10:29 +0000 | [diff] [blame] | 727 | endif |
| 728 | |
Lubomir Rintel | b2154e8 | 2018-01-14 17:35:33 +0100 | [diff] [blame] | 729 | ifeq ($(CONFIG_DIGILENT_SPI), yes) |
| 730 | FEATURE_CFLAGS += -D'CONFIG_DIGILENT_SPI=1' |
| 731 | PROGRAMMER_OBJS += digilent_spi.o |
Lubomir Rintel | b2154e8 | 2018-01-14 17:35:33 +0100 | [diff] [blame] | 732 | endif |
| 733 | |
Jean THOMAS | e28d8e4 | 2022-10-11 17:54:30 +0200 | [diff] [blame] | 734 | ifeq ($(CONFIG_DIRTYJTAG_SPI), yes) |
| 735 | FEATURE_CFLAGS += -D'CONFIG_DIRTYJTAG_SPI=1' |
| 736 | PROGRAMMER_OBJS += dirtyjtag_spi.o |
| 737 | endif |
| 738 | |
Marc Schink | 3578ec6 | 2016-03-17 16:23:03 +0100 | [diff] [blame] | 739 | ifeq ($(CONFIG_JLINK_SPI), yes) |
Marc Schink | 3578ec6 | 2016-03-17 16:23:03 +0100 | [diff] [blame] | 740 | FEATURE_CFLAGS += -D'CONFIG_JLINK_SPI=1' |
| 741 | PROGRAMMER_OBJS += jlink_spi.o |
| 742 | endif |
| 743 | |
Miklós Márton | 2d20d6d | 2018-01-30 20:20:15 +0100 | [diff] [blame] | 744 | ifeq ($(CONFIG_NI845X_SPI), yes) |
| 745 | FEATURE_CFLAGS += -D'CONFIG_NI845X_SPI=1' |
Miklós Márton | 2d20d6d | 2018-01-30 20:20:15 +0100 | [diff] [blame] | 746 | PROGRAMMER_OBJS += ni845x_spi.o |
| 747 | endif |
| 748 | |
Carl-Daniel Hailfinger | f2daaca | 2016-02-17 22:25:12 +0000 | [diff] [blame] | 749 | ifneq ($(NEED_SERIAL), ) |
Thomas Heijligen | 140c126 | 2021-09-27 15:12:26 +0200 | [diff] [blame] | 750 | LIB_OBJS += serial.o |
| 751 | ifeq ($(TARGET_OS), Linux) |
| 752 | LIB_OBJS += custom_baud_linux.o |
| 753 | else |
| 754 | LIB_OBJS += custom_baud.o |
| 755 | endif |
Carl-Daniel Hailfinger | 5bdf298 | 2010-06-14 12:42:05 +0000 | [diff] [blame] | 756 | endif |
| 757 | |
Carl-Daniel Hailfinger | f2daaca | 2016-02-17 22:25:12 +0000 | [diff] [blame] | 758 | ifneq ($(NEED_POSIX_SOCKETS), ) |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 759 | ifeq ($(TARGET_OS), SunOS) |
Stefan Tauner | fc3ecc2 | 2016-03-13 12:57:03 +0000 | [diff] [blame] | 760 | LIBS += -lsocket -lnsl |
Carl-Daniel Hailfinger | 5cca01f | 2009-11-24 00:20:03 +0000 | [diff] [blame] | 761 | endif |
Carl-Daniel Hailfinger | e51ea10 | 2009-11-23 19:20:11 +0000 | [diff] [blame] | 762 | endif |
| 763 | |
Nico Huber | f55ca20 | 2021-06-27 14:36:06 +0200 | [diff] [blame] | 764 | NEED_LIBPCI := $(call filter_deps,$(DEPENDS_ON_LIBPCI)) |
Carl-Daniel Hailfinger | f2daaca | 2016-02-17 22:25:12 +0000 | [diff] [blame] | 765 | ifneq ($(NEED_LIBPCI), ) |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 766 | CHECK_LIBPCI = yes |
Carl-Daniel Hailfinger | 16c0aec | 2016-02-20 21:43:56 +0000 | [diff] [blame] | 767 | # This is a dirty hack, but it saves us from checking all PCI drivers and all platforms manually. |
| 768 | # libpci may need raw memory, MSR or PCI port I/O on some platforms. |
| 769 | # Individual drivers might have the same needs as well. |
| 770 | NEED_RAW_ACCESS += $(NEED_LIBPCI) |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 771 | FEATURE_CFLAGS += -D'NEED_PCI=1' |
Stefan Tauner | 3f73ffe | 2016-01-07 17:45:59 +0000 | [diff] [blame] | 772 | FEATURE_CFLAGS += $(call debug_shell,grep -q "OLD_PCI_GET_DEV := yes" .libdeps && printf "%s" "-D'OLD_PCI_GET_DEV=1'") |
Stefan Tauner | 5673450 | 2015-02-08 21:58:04 +0000 | [diff] [blame] | 773 | |
Carl-Daniel Hailfinger | 16c0aec | 2016-02-20 21:43:56 +0000 | [diff] [blame] | 774 | PROGRAMMER_OBJS += pcidev.o |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 775 | ifeq ($(TARGET_OS), NetBSD) |
Carl-Daniel Hailfinger | 460b282 | 2010-06-04 23:24:57 +0000 | [diff] [blame] | 776 | # The libpci we want is called libpciutils on NetBSD and needs NetBSD libpci. |
Carl-Daniel Hailfinger | e7a39bf | 2012-11-20 21:06:16 +0000 | [diff] [blame] | 777 | PCILIBS += -lpciutils -lpci |
Carl-Daniel Hailfinger | 16c0aec | 2016-02-20 21:43:56 +0000 | [diff] [blame] | 778 | else |
| 779 | PCILIBS += -lpci |
| 780 | endif |
| 781 | endif |
| 782 | |
| 783 | ifneq ($(NEED_RAW_ACCESS), ) |
| 784 | # Raw memory, MSR or PCI port I/O access. |
| 785 | FEATURE_CFLAGS += -D'NEED_RAW_ACCESS=1' |
| 786 | PROGRAMMER_OBJS += physmap.o hwaccess.o |
| 787 | |
Nico Huber | 9245b88 | 2021-04-18 20:50:32 +0200 | [diff] [blame] | 788 | ifeq ($(ARCH), x86) |
Thomas Heijligen | a065520 | 2021-12-14 16:36:05 +0100 | [diff] [blame] | 789 | FEATURE_CFLAGS += -D'__FLASHROM_HAVE_OUTB__=1' |
Thomas Heijligen | b3287b4 | 2021-12-14 17:25:49 +0100 | [diff] [blame^] | 790 | PROGRAMMER_OBJS += hwaccess_x86_io.o hwaccess_x86_msr.o |
Thomas Heijligen | a065520 | 2021-12-14 16:36:05 +0100 | [diff] [blame] | 791 | |
| 792 | ifeq ($(TARGET_OS), NetBSD) |
Carl-Daniel Hailfinger | e7a39bf | 2012-11-20 21:06:16 +0000 | [diff] [blame] | 793 | PCILIBS += -l$(shell uname -p) |
Nico Huber | 9245b88 | 2021-04-18 20:50:32 +0200 | [diff] [blame] | 794 | endif |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 795 | ifeq ($(TARGET_OS), OpenBSD) |
Carl-Daniel Hailfinger | e7a39bf | 2012-11-20 21:06:16 +0000 | [diff] [blame] | 796 | PCILIBS += -l$(shell uname -m) |
Nico Huber | 9245b88 | 2021-04-18 20:50:32 +0200 | [diff] [blame] | 797 | endif |
Thomas Heijligen | a065520 | 2021-12-14 16:36:05 +0100 | [diff] [blame] | 798 | endif |
| 799 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 800 | ifeq ($(TARGET_OS), Darwin) |
| 801 | # DirectHW framework can be found in the DirectHW library. |
Stefan Tauner | e34e3e8 | 2013-01-01 00:06:51 +0000 | [diff] [blame] | 802 | PCILIBS += -framework IOKit -framework DirectHW |
Carl-Daniel Hailfinger | b63b067 | 2010-07-02 17:12:50 +0000 | [diff] [blame] | 803 | endif |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 804 | endif |
Carl-Daniel Hailfinger | 66ef4e5 | 2009-12-13 22:28:00 +0000 | [diff] [blame] | 805 | |
Thomas Heijligen | b7c6a66 | 2021-11-05 10:47:40 +0100 | [diff] [blame] | 806 | USE_LIBUSB1 := $(if $(call filter_deps,$(DEPENDS_ON_LIBUSB1)),yes,no) |
| 807 | ifeq ($(USE_LIBUSB1), yes) |
| 808 | override CFLAGS += $(CONFIG_LIBUSB1_CFLAGS) |
| 809 | override LDFLAGS += $(CONFIG_LIBUSB1_LDFLAGS) |
Daniel Thompson | 1d507a0 | 2018-07-12 11:02:28 +0100 | [diff] [blame] | 810 | PROGRAMMER_OBJS += usbdev.o |
Stefan Tauner | e49edbb | 2016-01-31 22:10:14 +0000 | [diff] [blame] | 811 | endif |
| 812 | |
Thomas Heijligen | 121a5b8 | 2021-10-21 12:58:07 +0200 | [diff] [blame] | 813 | USE_LIBFTDI1 := $(if $(call filter_deps,$(DEPENDS_ON_LIBFTDI1)),yes,no) |
| 814 | ifeq ($(USE_LIBFTDI1), yes) |
| 815 | override CFLAGS += $(CONFIG_LIBFTDI1_CFLAGS) |
| 816 | override LDFLAGS += $(CONFIG_LIBFTDI1_LDFLAGS) |
| 817 | ifeq ($(HAS_FT232H), yes) |
| 818 | FEATURE_CFLAGS += -D'HAVE_FT232H=1' |
| 819 | endif |
Nico Huber | 09e82e2 | 2021-06-27 14:31:37 +0200 | [diff] [blame] | 820 | endif |
| 821 | |
Thomas Heijligen | ff63acd | 2021-11-05 10:19:42 +0100 | [diff] [blame] | 822 | USE_LIB_NI845X := $(if $(call filter_deps,$(DEPENDS_ON_LIB_NI845X)),yes,no) |
| 823 | ifeq ($(USE_LIB_NI845X), yes) |
| 824 | override CFLAGS += $(CONFIG_LIB_NI845X_CFLAGS) |
| 825 | override LDFLAGS += $(CONFIG_LIB_NI845X_LDFLAGS) |
| 826 | endif |
| 827 | |
Thomas Heijligen | 4dca899 | 2021-11-05 10:34:31 +0100 | [diff] [blame] | 828 | USE_LIBJAYLINK := $(if $(call filter_deps,$(DEPENDS_ON_LIBJAYLINK)),yes,no) |
| 829 | ifeq ($(USE_LIBJAYLINK), yes) |
| 830 | override CFLAGS += $(CONFIG_LIBJAYLINK_CFLAGS) |
| 831 | override LDFLAGS += $(CONFIG_LIBJAYLINK_LDFLAGS) |
Marc Schink | 3578ec6 | 2016-03-17 16:23:03 +0100 | [diff] [blame] | 832 | endif |
| 833 | |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 834 | ifeq ($(CONFIG_PRINT_WIKI), yes) |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 835 | FEATURE_CFLAGS += -D'CONFIG_PRINT_WIKI=1' |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 836 | CLI_OBJS += print_wiki.o |
Carl-Daniel Hailfinger | 9c8476b | 2009-09-16 12:19:03 +0000 | [diff] [blame] | 837 | endif |
| 838 | |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 839 | # We could use PULLED_IN_LIBS, but that would be ugly. |
Stefan Tauner | 3f73ffe | 2016-01-07 17:45:59 +0000 | [diff] [blame] | 840 | FEATURE_LIBS += $(call debug_shell,grep -q "NEEDLIBZ := yes" .libdeps && printf "%s" "-lz") |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 841 | |
Thomas Heijligen | 457020a | 2021-10-26 12:44:36 +0200 | [diff] [blame] | 842 | ifeq ($(HAS_UTSNAME), yes) |
| 843 | FEATURE_CFLAGS += -D'HAVE_UTSNAME=1' |
| 844 | endif |
| 845 | |
| 846 | ifeq ($(HAS_CLOCK_GETTIME), yes) |
| 847 | FEATURE_CFLAGS += -D'HAVE_CLOCK_GETTIME=1' |
| 848 | FEATURE_LIBS += -lrt |
| 849 | endif |
Nico Huber | 8624e8c | 2012-11-05 21:46:33 +0100 | [diff] [blame] | 850 | |
Patrick Georgi | 97bc95c | 2011-03-08 07:17:44 +0000 | [diff] [blame] | 851 | LIBFLASHROM_OBJS = $(CHIP_OBJS) $(PROGRAMMER_OBJS) $(LIB_OBJS) |
Stefan Tauner | d94d25d | 2012-07-28 03:17:15 +0000 | [diff] [blame] | 852 | OBJS = $(CLI_OBJS) $(LIBFLASHROM_OBJS) |
Sean Nelson | 5d13464 | 2009-12-24 16:54:21 +0000 | [diff] [blame] | 853 | |
Joerg Mayer | a93d9dc | 2013-08-29 00:38:19 +0000 | [diff] [blame] | 854 | all: hwlibs features $(PROGRAM)$(EXEC_SUFFIX) $(PROGRAM).8 |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 855 | ifeq ($(ARCH), x86) |
Thomas Heijligen | 3976b7e | 2021-10-20 15:55:35 +0200 | [diff] [blame] | 856 | @+$(MAKE) -C util/ich_descriptors_tool/ HOST_OS=$(HOST_OS) TARGET_OS=$(TARGET_OS) |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 857 | endif |
| 858 | |
Carl-Daniel Hailfinger | ddbab71 | 2010-06-14 14:44:08 +0000 | [diff] [blame] | 859 | $(PROGRAM)$(EXEC_SUFFIX): $(OBJS) |
Thomas Heijligen | b7c6a66 | 2021-11-05 10:47:40 +0100 | [diff] [blame] | 860 | $(CC) -o $(PROGRAM)$(EXEC_SUFFIX) $(OBJS) $(LDFLAGS) $(LIBS) $(PCILIBS) $(FEATURE_LIBS) |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 861 | |
Patrick Georgi | 97bc95c | 2011-03-08 07:17:44 +0000 | [diff] [blame] | 862 | libflashrom.a: $(LIBFLASHROM_OBJS) |
| 863 | $(AR) rcs $@ $^ |
| 864 | $(RANLIB) $@ |
| 865 | |
Carl-Daniel Hailfinger | 8ef7dce | 2009-07-10 20:19:48 +0000 | [diff] [blame] | 866 | # TAROPTIONS reduces information leakage from the packager's system. |
| 867 | # If other tar programs support command line arguments for setting uid/gid of |
| 868 | # stored files, they can be handled here as well. |
| 869 | TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root --group=root") |
Carl-Daniel Hailfinger | b18ecbc | 2009-06-19 14:20:34 +0000 | [diff] [blame] | 870 | |
Thomas Heijligen | 1916922 | 2021-10-20 23:26:34 +0200 | [diff] [blame] | 871 | %.o: %.c features |
Stefan Tauner | 7634708 | 2016-11-27 17:45:49 +0100 | [diff] [blame] | 872 | $(CC) -MMD $(CFLAGS) $(CPPFLAGS) $(FLASHROM_CFLAGS) $(FEATURE_CFLAGS) $(SCMDEF) -o $@ -c $< |
Clark Rawlins | 02016f7 | 2008-02-14 23:22:20 +0000 | [diff] [blame] | 873 | |
Carl-Daniel Hailfinger | a0020df | 2010-05-30 22:35:14 +0000 | [diff] [blame] | 874 | # Make sure to add all names of generated binaries here. |
| 875 | # This includes all frontends and libflashrom. |
Carl-Daniel Hailfinger | ddbab71 | 2010-06-14 14:44:08 +0000 | [diff] [blame] | 876 | # We don't use EXEC_SUFFIX here because we want to clean everything. |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 877 | clean: |
Thomas Heijligen | 1e76dc8 | 2021-09-28 15:22:34 +0200 | [diff] [blame] | 878 | rm -f $(PROGRAM) $(PROGRAM).exe libflashrom.a $(filter-out Makefile.d, $(wildcard *.d *.o)) $(PROGRAM).8 $(PROGRAM).8.html $(BUILD_DETAILS_FILE) |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 879 | @+$(MAKE) -C util/ich_descriptors_tool/ clean |
Ronald G. Minnich | eaab50b | 2003-09-12 22:41:53 +0000 | [diff] [blame] | 880 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 881 | distclean: clean |
Thomas Heijligen | 1916922 | 2021-10-20 23:26:34 +0200 | [diff] [blame] | 882 | rm -f .libdeps |
Christian Ruppert | db9d9f4 | 2009-05-14 14:17:07 +0000 | [diff] [blame] | 883 | |
Carl-Daniel Hailfinger | ddbab71 | 2010-06-14 14:44:08 +0000 | [diff] [blame] | 884 | strip: $(PROGRAM)$(EXEC_SUFFIX) |
| 885 | $(STRIP) $(STRIP_ARGS) $(PROGRAM)$(EXEC_SUFFIX) |
Ronald G. Minnich | eaab50b | 2003-09-12 22:41:53 +0000 | [diff] [blame] | 886 | |
Stefan Tauner | 5678708 | 2011-08-18 02:27:19 +0000 | [diff] [blame] | 887 | # to define test programs we use verbatim variables, which get exported |
| 888 | # to environment variables and are referenced with $$<varname> later |
| 889 | |
Carl-Daniel Hailfinger | 5d3fcb9 | 2010-06-14 18:40:59 +0000 | [diff] [blame] | 890 | compiler: featuresavailable |
Thomas Heijligen | 323ad35 | 2021-10-26 11:26:32 +0200 | [diff] [blame] | 891 | @echo -n "C compiler found: " |
| 892 | @if [ $(CC_WORKING) = yes ]; \ |
| 893 | then $(CC) --version 2>/dev/null | head -1; \ |
| 894 | else echo no; echo Aborting.; exit 1; fi |
Thomas Heijligen | 8cd366d | 2021-10-26 12:02:52 +0200 | [diff] [blame] | 895 | @echo "Target arch: $(ARCH)" |
Thomas Heijligen | 6efdfb3 | 2021-10-12 15:16:46 +0200 | [diff] [blame] | 896 | @if [ $(ARCH) = unknown ]; then echo Aborting.; exit 1; fi |
Thomas Heijligen | 8cd366d | 2021-10-26 12:02:52 +0200 | [diff] [blame] | 897 | @echo "Target OS: $(TARGET_OS)" |
Thomas Heijligen | 1e76dc8 | 2021-09-28 15:22:34 +0200 | [diff] [blame] | 898 | @if [ $(TARGET_OS) = unknown ]; then echo Aborting.; exit 1; fi |
Thomas Heijligen | 8cd366d | 2021-10-26 12:02:52 +0200 | [diff] [blame] | 899 | @if [ $(TARGET_OS) = libpayload ] && ! $(CC) --version 2>&1 | grep -q coreboot; then \ |
| 900 | echo " Warning: It seems you are not using coreboot's reference compiler."; \ |
| 901 | echo " This might work but usually does not, please beware."; fi |
| 902 | @echo "Target endian: $(ENDIAN)" |
Thomas Heijligen | 9a2787b | 2021-10-12 15:54:06 +0200 | [diff] [blame] | 903 | @if [ $(ENDIAN) = unknown ]; then echo Aborting.; exit 1; fi |
Carl-Daniel Hailfinger | 4cb7a96 | 2009-06-16 09:31:51 +0000 | [diff] [blame] | 904 | |
Carl-Daniel Hailfinger | e7a39bf | 2012-11-20 21:06:16 +0000 | [diff] [blame] | 905 | hwlibs: compiler |
| 906 | @printf "" > .libdeps |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 907 | ifeq ($(CHECK_LIBPCI), yes) |
Stefan Tauner | 3f73ffe | 2016-01-07 17:45:59 +0000 | [diff] [blame] | 908 | @printf "Checking for libpci headers... " | tee -a $(BUILD_DETAILS_FILE) |
Stefan Tauner | 5678708 | 2011-08-18 02:27:19 +0000 | [diff] [blame] | 909 | @echo "$$LIBPCI_TEST" > .test.c |
Stefan Tauner | c83ddc1 | 2016-01-24 22:37:10 +0000 | [diff] [blame] | 910 | @printf "\nexec: %s\n" "$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o" >>$(BUILD_DETAILS_FILE) |
Stefan Tauner | 3f73ffe | 2016-01-07 17:45:59 +0000 | [diff] [blame] | 911 | @{ { { { { $(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >&2 && \ |
| 912 | echo "found." || { echo "not found."; echo; \ |
Carl-Daniel Hailfinger | f2daaca | 2016-02-17 22:25:12 +0000 | [diff] [blame] | 913 | echo "The following features require libpci: $(NEED_LIBPCI)."; \ |
Carl-Daniel Hailfinger | 4b2b315 | 2016-02-20 22:28:16 +0000 | [diff] [blame] | 914 | echo "Please install libpci headers or disable all features"; \ |
| 915 | echo "mentioned above by specifying make CONFIG_ENABLE_LIBPCI_PROGRAMMERS=no"; \ |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 916 | echo "See README for more information."; echo; \ |
Stefan Tauner | 3f73ffe | 2016-01-07 17:45:59 +0000 | [diff] [blame] | 917 | rm -f .test.c .test.o; exit 1; }; } 2>>$(BUILD_DETAILS_FILE); echo $? >&3 ; } | tee -a $(BUILD_DETAILS_FILE) >&4; } 3>&1;} | { read rc ; exit ${rc}; } } 4>&1 |
| 918 | @printf "Checking version of pci_get_dev... " | tee -a $(BUILD_DETAILS_FILE) |
Stefan Tauner | 5673450 | 2015-02-08 21:58:04 +0000 | [diff] [blame] | 919 | @echo "$$PCI_GET_DEV_TEST" > .test.c |
Stefan Tauner | c83ddc1 | 2016-01-24 22:37:10 +0000 | [diff] [blame] | 920 | @printf "\nexec: %s\n" "$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o" >>$(BUILD_DETAILS_FILE) |
Stefan Tauner | 3f73ffe | 2016-01-07 17:45:59 +0000 | [diff] [blame] | 921 | @ { $(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >&2 && \ |
Stefan Tauner | 5673450 | 2015-02-08 21:58:04 +0000 | [diff] [blame] | 922 | ( echo "new version (including PCI domain parameter)."; echo "OLD_PCI_GET_DEV := no" >> .libdeps ) || \ |
Stefan Tauner | 3f73ffe | 2016-01-07 17:45:59 +0000 | [diff] [blame] | 923 | ( echo "old version (without PCI domain parameter)."; echo "OLD_PCI_GET_DEV := yes" >> .libdeps ) } 2>>$(BUILD_DETAILS_FILE) | tee -a $(BUILD_DETAILS_FILE) |
| 924 | @printf "Checking if libpci is present and sufficient... " | tee -a $(BUILD_DETAILS_FILE) |
Stefan Tauner | c83ddc1 | 2016-01-24 22:37:10 +0000 | [diff] [blame] | 925 | @printf "\nexec: %s\n" "$(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) $(PCILIBS)" >>$(BUILD_DETAILS_FILE) |
Stefan Tauner | 3f73ffe | 2016-01-07 17:45:59 +0000 | [diff] [blame] | 926 | @{ { { { $(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) $(PCILIBS) 2>>$(BUILD_DETAILS_FILE) >&2 && \ |
| 927 | echo "yes." || { echo "no."; \ |
| 928 | printf "Checking if libz+libpci are present and sufficient..." ; \ |
Stefan Tauner | c83ddc1 | 2016-01-24 22:37:10 +0000 | [diff] [blame] | 929 | { printf "\nexec: %s\n" "$(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) $(PCILIBS) -lz" >>$(BUILD_DETAILS_FILE) ; \ |
| 930 | $(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) $(PCILIBS) -lz >&2 && \ |
Stefan Tauner | 3f73ffe | 2016-01-07 17:45:59 +0000 | [diff] [blame] | 931 | echo "yes." && echo "NEEDLIBZ := yes" > .libdeps } || { echo "no."; echo; \ |
Carl-Daniel Hailfinger | f2daaca | 2016-02-17 22:25:12 +0000 | [diff] [blame] | 932 | echo "The following features require libpci: $(NEED_LIBPCI)."; \ |
Carl-Daniel Hailfinger | 4b2b315 | 2016-02-20 22:28:16 +0000 | [diff] [blame] | 933 | echo "Please install libpci (package pciutils) and/or libz or disable all features"; \ |
| 934 | echo "mentioned above by specifying make CONFIG_ENABLE_LIBPCI_PROGRAMMERS=no"; \ |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 935 | echo "See README for more information."; echo; \ |
Stefan Tauner | 3f73ffe | 2016-01-07 17:45:59 +0000 | [diff] [blame] | 936 | rm -f .test.c .test.o .test$(EXEC_SUFFIX); exit 1; }; }; } 2>>$(BUILD_DETAILS_FILE); echo $? >&3 ; } | tee -a $(BUILD_DETAILS_FILE) >&4; } 3>&1;} | { read rc ; exit ${rc}; } } 4>&1 |
Carl-Daniel Hailfinger | ddbab71 | 2010-06-14 14:44:08 +0000 | [diff] [blame] | 937 | @rm -f .test.c .test.o .test$(EXEC_SUFFIX) |
Carl-Daniel Hailfinger | e7a39bf | 2012-11-20 21:06:16 +0000 | [diff] [blame] | 938 | endif |
Thomas Heijligen | b7c6a66 | 2021-11-05 10:47:40 +0100 | [diff] [blame] | 939 | @echo Dependency libusb1 found: $(HAS_LIBUSB1) |
| 940 | @if [ $(HAS_LIBUSB1) = yes ]; then \ |
| 941 | echo " CFLAGS: $(CONFIG_LIBUSB1_CFLAGS)"; \ |
| 942 | echo " LDFLAGS: $(CONFIG_LIBUSB1_LDFLAGS)"; \ |
| 943 | fi |
Thomas Heijligen | 4dca899 | 2021-11-05 10:34:31 +0100 | [diff] [blame] | 944 | @echo Dependency libjaylink found: $(HAS_LIBJAYLINK) |
| 945 | @if [ $(HAS_LIBJAYLINK) = yes ]; then \ |
| 946 | echo " CFLAGS: $(CONFIG_LIBJAYLINK_CFLAGS)"; \ |
| 947 | echo " LDFLAGS: $(CONFIG_LIBJAYLINK_LDFLAGS)"; \ |
| 948 | fi |
Thomas Heijligen | ff63acd | 2021-11-05 10:19:42 +0100 | [diff] [blame] | 949 | @echo Dependency NI-845x found: $(HAS_LIB_NI845X) |
| 950 | @if [ $(HAS_LIB_NI845X) = yes ]; then \ |
| 951 | echo " CFLAGS: $(CONFIG_LIB_NI845X_CFLAGS)"; \ |
| 952 | echo " LDFLAGS: $(CONFIG_LIB_NI845X_LDFLAGS)"; \ |
| 953 | fi |
Thomas Heijligen | 121a5b8 | 2021-10-21 12:58:07 +0200 | [diff] [blame] | 954 | @echo Dependency libftdi1 found: $(HAS_LIBFTDI1) |
| 955 | @if [ $(HAS_LIBFTDI1) = yes ]; then \ |
| 956 | echo " Checking for \"TYPE_232H\" in \"enum ftdi_chip_type\": $(HAS_FT232H)"; \ |
| 957 | echo " CFLAGS: $(CONFIG_LIBFTDI1_CFLAGS)"; \ |
| 958 | echo " LDFLAGS: $(CONFIG_LIBFTDI1_LDFLAGS)"; \ |
| 959 | fi |
Carl-Daniel Hailfinger | b18ecbc | 2009-06-19 14:20:34 +0000 | [diff] [blame] | 960 | |
Carl-Daniel Hailfinger | 5d3fcb9 | 2010-06-14 18:40:59 +0000 | [diff] [blame] | 961 | # If a user does not explicitly request a non-working feature, we should |
| 962 | # silently disable it. However, if a non-working (does not compile) feature |
| 963 | # is explicitly requested, we should bail out with a descriptive error message. |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 964 | # We also have to check that at least one programmer driver is enabled. |
Carl-Daniel Hailfinger | 5d3fcb9 | 2010-06-14 18:40:59 +0000 | [diff] [blame] | 965 | featuresavailable: |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 966 | ifeq ($(PROGRAMMER_OBJS),) |
| 967 | @echo "You have to enable at least one programmer driver!" |
| 968 | @false |
| 969 | endif |
| 970 | ifneq ($(UNSUPPORTED_FEATURES), ) |
Carl-Daniel Hailfinger | 5d3fcb9 | 2010-06-14 18:40:59 +0000 | [diff] [blame] | 971 | @echo "The following features are unavailable on your machine: $(UNSUPPORTED_FEATURES)" |
| 972 | @false |
| 973 | endif |
| 974 | |
Thomas Heijligen | 1916922 | 2021-10-20 23:26:34 +0200 | [diff] [blame] | 975 | features: hwlibs |
Thomas Heijligen | ca71c87 | 2021-10-20 22:08:24 +0200 | [diff] [blame] | 976 | @echo "Checking for header \"mtd/mtd-user.h\": $(HAS_LINUX_MTD)" |
| 977 | @echo "Checking for header \"linux/spi/spidev.h\": $(HAS_LINUX_SPI)" |
| 978 | @echo "Checking for header \"linux/i2c-dev.h\": $(HAS_LINUX_I2C)" |
| 979 | @echo "Checking for header \"linux/i2c.h\": $(HAS_LINUX_I2C)" |
| 980 | @echo "Checking for header \"sys/utsname.h\": $(HAS_UTSNAME)" |
| 981 | @echo "Checking for function \"clock_gettime\": $(HAS_CLOCK_GETTIME)" |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 982 | |
Stefan Tauner | 4c72315 | 2016-01-14 22:47:55 +0000 | [diff] [blame] | 983 | $(PROGRAM).8.html: $(PROGRAM).8 |
| 984 | @groff -mandoc -Thtml $< >$@ |
| 985 | |
Joerg Mayer | a93d9dc | 2013-08-29 00:38:19 +0000 | [diff] [blame] | 986 | $(PROGRAM).8: $(PROGRAM).8.tmpl |
Stefan Tauner | 4c72315 | 2016-01-14 22:47:55 +0000 | [diff] [blame] | 987 | @# Add the man page change date and version to the man page |
Nico Huber | ac90af6 | 2022-12-18 00:22:47 +0000 | [diff] [blame] | 988 | @sed -e 's#.TH FLASHROM 8 .*#.TH FLASHROM 8 "$(MAN_DATE)" "flashrom-stable-$(VERSION)" "$(MAN_DATE)"#' <$< >$@ |
Joerg Mayer | a93d9dc | 2013-08-29 00:38:19 +0000 | [diff] [blame] | 989 | |
| 990 | install: $(PROGRAM)$(EXEC_SUFFIX) $(PROGRAM).8 |
Uwe Hermann | c2a9c9c | 2009-05-14 14:51:14 +0000 | [diff] [blame] | 991 | mkdir -p $(DESTDIR)$(PREFIX)/sbin |
Uwe Hermann | 56b2cb0 | 2009-05-21 15:59:58 +0000 | [diff] [blame] | 992 | mkdir -p $(DESTDIR)$(MANDIR)/man8 |
Carl-Daniel Hailfinger | ddbab71 | 2010-06-14 14:44:08 +0000 | [diff] [blame] | 993 | $(INSTALL) -m 0755 $(PROGRAM)$(EXEC_SUFFIX) $(DESTDIR)$(PREFIX)/sbin |
Uwe Hermann | 56b2cb0 | 2009-05-21 15:59:58 +0000 | [diff] [blame] | 994 | $(INSTALL) -m 0644 $(PROGRAM).8 $(DESTDIR)$(MANDIR)/man8 |
Uwe Hermann | c113b57 | 2006-12-14 00:59:41 +0000 | [diff] [blame] | 995 | |
Nico Huber | 454f613 | 2012-12-10 13:34:10 +0000 | [diff] [blame] | 996 | libinstall: libflashrom.a libflashrom.h |
| 997 | mkdir -p $(DESTDIR)$(PREFIX)/lib |
| 998 | $(INSTALL) -m 0644 libflashrom.a $(DESTDIR)$(PREFIX)/lib |
| 999 | mkdir -p $(DESTDIR)$(PREFIX)/include |
| 1000 | $(INSTALL) -m 0644 libflashrom.h $(DESTDIR)$(PREFIX)/include |
| 1001 | |
Nico Huber | 5f245a2 | 2023-01-10 17:14:47 +0100 | [diff] [blame] | 1002 | versioninfo: |
| 1003 | # Generate versioninfo.inc containing metadata that would not be available in exported sources otherwise. |
| 1004 | @[ "$(RELEASE)" ] || { echo 'Error: Must provide `RELEASE=...`'; exit 1; } |
| 1005 | @echo "VERSION = $(RELEASE)" > $@.inc |
| 1006 | @echo "MAN_DATE = $(shell ./util/getrevision.sh --date $(PROGRAM).8.tmpl 2>/dev/null)" >> $@.inc |
| 1007 | |
Nico Huber | 26c2c4d | 2023-01-10 17:45:38 +0100 | [diff] [blame] | 1008 | branch: versioninfo |
| 1009 | @git checkout -b $(RELEASE) |
| 1010 | @git add -f $<.inc |
| 1011 | @git commit -sm'Update version info for $(RELEASE)' |
| 1012 | |
| 1013 | tag: versioninfo |
| 1014 | @git add -f $<.inc |
| 1015 | @git commit -sm'Update version info for $(RELEASE)' |
| 1016 | @git tag -s $(RELEASE) |
| 1017 | |
Nico Huber | 5f245a2 | 2023-01-10 17:14:47 +0100 | [diff] [blame] | 1018 | # No spaces in release names unless set explicitly |
Nico Huber | 1d58a90 | 2023-01-10 18:26:12 +0100 | [diff] [blame] | 1019 | RELEASENAME ?= flashrom-stable-$(shell echo "$(VERSION)" | sed -e 's/ /_/') |
Nico Huber | 5f245a2 | 2023-01-10 17:14:47 +0100 | [diff] [blame] | 1020 | |
Nico Huber | 1d58a90 | 2023-01-10 18:26:12 +0100 | [diff] [blame] | 1021 | _export: EXPORT_VERSIONINFO := $(EXPORTDIR)/$(RELEASENAME)/versioninfo.inc |
Stefan Tauner | 7634708 | 2016-11-27 17:45:49 +0100 | [diff] [blame] | 1022 | _export: $(PROGRAM).8 |
Nico Huber | 1d58a90 | 2023-01-10 18:26:12 +0100 | [diff] [blame] | 1023 | @rm -rf "$(EXPORTDIR)/$(RELEASENAME)" |
| 1024 | @mkdir -p "$(EXPORTDIR)/$(RELEASENAME)" |
| 1025 | @git archive HEAD | tar -x -C "$(EXPORTDIR)/$(RELEASENAME)" |
Nico Huber | 5f245a2 | 2023-01-10 17:14:47 +0100 | [diff] [blame] | 1026 | # Generate fresh versioninfo.inc and compare |
| 1027 | @echo "VERSION = $(shell ./util/getrevision.sh --revision)" > "$(EXPORT_VERSIONINFO)" |
| 1028 | @echo "MAN_DATE = $(shell ./util/getrevision.sh --date $(PROGRAM).8.tmpl 2>/dev/null)" >> \ |
| 1029 | "$(EXPORT_VERSIONINFO)" |
| 1030 | @if [ -f versioninfo.inc ]; then \ |
| 1031 | cmp -s versioninfo.inc "$(EXPORT_VERSIONINFO)" || \ |
| 1032 | { echo Error: Version info changed:; \ |
| 1033 | cat "$(EXPORT_VERSIONINFO)"; \ |
| 1034 | echo Update versioninfo.inc and tag accordingly.; \ |
| 1035 | exit 1; \ |
| 1036 | }; \ |
| 1037 | fi |
Stefan Tauner | e413685 | 2017-10-01 15:57:25 +0200 | [diff] [blame] | 1038 | # Restore modification date of all tracked files not marked 'export-ignore' in .gitattributes. |
| 1039 | # sed is required to filter out file names having the attribute set. |
| 1040 | # The sed program saves the file name in the hold buffer and then checks if the respective value is 'set'. |
| 1041 | # If so it ignores the rest of the program, which otherwise restores the file name and prints it. |
Stefan Tauner | 7634708 | 2016-11-27 17:45:49 +0100 | [diff] [blame] | 1042 | @git ls-tree -r -z -t --full-name --name-only HEAD | \ |
| 1043 | git check-attr -z --stdin export-ignore | \ |
Stefan Tauner | e413685 | 2017-10-01 15:57:25 +0200 | [diff] [blame] | 1044 | sed -zne 'x;n;n;{/^set$$/b;};x;p;' | \ |
Stefan Tauner | 7634708 | 2016-11-27 17:45:49 +0100 | [diff] [blame] | 1045 | xargs -0 sh -c 'for f; do \ |
| 1046 | touch -d $$(git log --pretty=format:%cI -1 HEAD -- "$$f") \ |
Nico Huber | 1d58a90 | 2023-01-10 18:26:12 +0100 | [diff] [blame] | 1047 | "$(EXPORTDIR)/$(RELEASENAME)/$$f"; \ |
Stefan Tauner | e413685 | 2017-10-01 15:57:25 +0200 | [diff] [blame] | 1048 | done' dummy_arg0 |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 1049 | |
Stefan Tauner | 7634708 | 2016-11-27 17:45:49 +0100 | [diff] [blame] | 1050 | export: _export |
Nico Huber | 1d58a90 | 2023-01-10 18:26:12 +0100 | [diff] [blame] | 1051 | @echo "Exported $(EXPORTDIR)/$(RELEASENAME)/" |
Stefan Tauner | 7634708 | 2016-11-27 17:45:49 +0100 | [diff] [blame] | 1052 | |
| 1053 | tarball: _export |
Nico Huber | 1d58a90 | 2023-01-10 18:26:12 +0100 | [diff] [blame] | 1054 | @tar -cj --format=ustar -f "$(EXPORTDIR)/$(RELEASENAME).tar.bz2" -C $(EXPORTDIR)/ \ |
| 1055 | $(TAROPTIONS) "$(RELEASENAME)/" |
Stefan Tauner | 7634708 | 2016-11-27 17:45:49 +0100 | [diff] [blame] | 1056 | # Delete the exported directory again because it is most likely what's expected by the user. |
Nico Huber | 1d58a90 | 2023-01-10 18:26:12 +0100 | [diff] [blame] | 1057 | @rm -rf "$(EXPORTDIR)/$(RELEASENAME)" |
| 1058 | @echo Created "$(EXPORTDIR)/$(RELEASENAME).tar.bz2" |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 1059 | |
Carl-Daniel Hailfinger | 33a65a0 | 2011-12-20 00:51:44 +0000 | [diff] [blame] | 1060 | libpayload: clean |
| 1061 | make CC="CC=i386-elf-gcc lpgcc" AR=i386-elf-ar RANLIB=i386-elf-ranlib |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 1062 | |
Felix Singer | 9441c6e | 2022-10-21 12:47:11 +0200 | [diff] [blame] | 1063 | gitconfig: |
| 1064 | ./util/getrevision.sh -c 2>/dev/null && ./util/git-hooks/install.sh |
| 1065 | |
Nico Huber | 26c2c4d | 2023-01-10 17:45:38 +0100 | [diff] [blame] | 1066 | .PHONY: all install clean distclean compiler hwlibs features branch tag versioninfo _export export tarball featuresavailable libpayload gitconfig |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 1067 | |
Stefan Tauner | 23e10b8 | 2016-01-23 16:16:49 +0000 | [diff] [blame] | 1068 | # Disable implicit suffixes and built-in rules (for performance and profit) |
| 1069 | .SUFFIXES: |
| 1070 | |
Stefan Reinauer | e2f0158 | 2010-06-07 11:08:07 +0000 | [diff] [blame] | 1071 | -include $(OBJS:.o=.d) |