blob: f10504f869fa927a9f9514528523d9d00e6c9b13 [file] [log] [blame]
Ollie Lho184a4042005-11-26 21:55:36 +00001#
Uwe Hermannf78cff12009-06-12 14:05:25 +00002# This file is part of the flashrom project.
3#
4# Copyright (C) 2005 coresystems GmbH <stepan@coresystems.de>
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +00005# Copyright (C) 2009,2010,2012 Carl-Daniel Hailfinger
Uwe Hermannf78cff12009-06-12 14:05:25 +00006#
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. Minnich5e5f75e2002-01-29 18:21:41 +000016
Ollie Lho184a4042005-11-26 21:55:36 +000017PROGRAM = flashrom
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000018
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000019###############################################################################
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 Hailfingerb7bce8a2012-08-14 21:36:11 +000025#
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 Hailfinger50415d22010-03-21 14:54:57 +000028STRIP ?= strip
Thomas Heijligenf579bba2021-10-12 12:48:01 +020029STRIP_ARGS = -s
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000030INSTALL = install
31PREFIX ?= /usr/local
Uwe Hermann56b2cb02009-05-21 15:59:58 +000032MANDIR ?= $(PREFIX)/share/man
Nico Huber9e2dc2f2018-12-23 22:00:47 +010033CFLAGS ?= -Os -Wall -Wextra -Wno-unused-parameter -Wshadow -Wmissing-prototypes -Wwrite-strings
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000034EXPORTDIR ?= .
Patrick Georgi97bc95c2011-03-08 07:17:44 +000035RANLIB ?= ranlib
Stefan Tauner3f73ffe2016-01-07 17:45:59 +000036PKG_CONFIG ?= pkg-config
37BUILD_DETAILS_FILE ?= build_details.txt
Stefan Taunerbe62d3f2015-01-10 09:32:44 +000038
Stefan Taunerfd0d4132012-09-25 21:24:55 +000039# The following parameter changes the default programmer that will be used if there is no -p/--programmer
40# argument given when running flashrom. The predefined setting does not enable any default so that every
41# user has to declare the programmer he wants to use on every run. The rationale for this to be not set
42# (to e.g. the internal programmer) is that forgetting to specify this when working with another programmer
43# easily puts the system attached to the default programmer at risk (e.g. you want to flash coreboot to another
44# system attached to an external programmer while the default programmer is set to the internal programmer, and
45# you forget to use the -p parameter. This would (try to) overwrite the existing firmware of the computer
46# running flashrom). Please do not enable this without thinking about the possible consequences. Possible
Thomas Heijligen84e9c912021-06-01 16:22:14 +020047# values can be found when running 'flashrom --list-supported' under the 'Supported programmers' section.
48CONFIG_DEFAULT_PROGRAMMER_NAME ?=
Stefan Tauner265fcac2014-06-02 00:12:23 +000049# The following adds a default parameter for the default programmer set above (only).
Thomas Heijligen84e9c912021-06-01 16:22:14 +020050CONFIG_DEFAULT_PROGRAMMER_ARGS ?=
Stefan Tauner265fcac2014-06-02 00:12:23 +000051# Example: compiling with
Thomas Heijligen84e9c912021-06-01 16:22:14 +020052# make CONFIG_DEFAULT_PROGRAMMER_NAME=serprog CONFIG_DEFAULT_PROGRAMMER_ARGS="dev=/dev/ttyUSB0:1500000"
Stefan Tauner265fcac2014-06-02 00:12:23 +000053# would make executing './flashrom' (almost) equivialent to './flashrom -p serprog:dev=/dev/ttyUSB0:1500000'.
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000054
Thomas Heijligen121a5b82021-10-21 12:58:07 +020055# The user can provide CPP, C and LDFLAGS and the Makefile will extend these
56override CPPFLAGS := $(CPPFLAGS)
57override CFLAGS := $(CFLAGS)
58override LDFLAGS := $(LDFLAGS)
59
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000060# If your compiler spits out excessive warnings, run make WARNERROR=no
61# You shouldn't have to change this flag.
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000062WARNERROR ?= yes
63
64ifeq ($(WARNERROR), yes)
Thomas Heijligen121a5b82021-10-21 12:58:07 +020065override CFLAGS += -Werror
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000066endif
67
Stefan Taunere37735a2015-01-26 22:03:35 +000068ifdef LIBS_BASE
Stefan Taunere37735a2015-01-26 22:03:35 +000069PKG_CONFIG_LIBDIR ?= $(LIBS_BASE)/lib/pkgconfig
Stefan Tauner45207062016-02-19 08:17:24 +000070override CPPFLAGS += -I$(LIBS_BASE)/include
71override LDFLAGS += -L$(LIBS_BASE)/lib -Wl,-rpath -Wl,$(LIBS_BASE)/lib
Stefan Taunere37735a2015-01-26 22:03:35 +000072endif
Stefan Taunerbe62d3f2015-01-10 09:32:44 +000073
Stefan Taunerbfb067b2016-01-07 18:13:07 +000074ifeq ($(CONFIG_STATIC),yes)
Stefan Tauner45207062016-02-19 08:17:24 +000075override PKG_CONFIG += --static
76override LDFLAGS += -static
Stefan Taunerbfb067b2016-01-07 18:13:07 +000077endif
78
Stefan Tauner1ca7c7f2016-01-14 23:05:55 +000079# Set LC_ALL=C to minimize influences of the locale.
80# However, this won't work for the majority of relevant commands because they use the $(shell) function and
Martin Rothf6c1cb12022-03-15 10:55:25 -060081# GNU make does not relay variables exported within the makefile to their environment.
Stefan Tauner1ca7c7f2016-01-14 23:05:55 +000082LC_ALL=C
83export LC_ALL
84
Stefan Tauner3f73ffe2016-01-07 17:45:59 +000085dummy_for_make_3_80:=$(shell printf "Build started on %s\n\n" "$$(date)" >$(BUILD_DETAILS_FILE))
Stefan Tauner1ca7c7f2016-01-14 23:05:55 +000086
87# Provide an easy way to execute a command, print its output to stdout and capture any error message on stderr
88# in the build details file together with the original stdout output.
Pyry Kontio89cc73b2020-07-06 12:57:35 +090089debug_shell = $(shell export LC_ALL=C ; { echo 'exec: export LC_ALL=C ; { $(subst ','\'',$(1)) ; }' >&2; \
90 { $(1) ; } | tee -a $(BUILD_DETAILS_FILE) ; echo >&2 ; } 2>>$(BUILD_DETAILS_FILE))
Stefan Tauner1ca7c7f2016-01-14 23:05:55 +000091
Thomas Heijligen121a5b82021-10-21 12:58:07 +020092include Makefile.include
93
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000094###############################################################################
Nico Huber7f898972021-06-27 13:30:50 +020095# Dependency handling.
96
97DEPENDS_ON_SERIAL := \
98 CONFIG_BUSPIRATE_SPI \
99 CONFIG_PONY_SPI \
100 CONFIG_SERPROG \
101
102DEPENDS_ON_BITBANG_SPI := \
Nico Huber29c68342021-06-27 14:34:16 +0200103 CONFIG_DEVELOPERBOX_SPI \
Nico Huber7f898972021-06-27 13:30:50 +0200104 CONFIG_INTERNAL \
105 CONFIG_NICINTEL_SPI \
106 CONFIG_OGP_SPI \
107 CONFIG_PONY_SPI \
108 CONFIG_RAYER_SPI \
109
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100110DEPENDS_ON_RAW_MEM_ACCESS := \
111 CONFIG_ATAPROMISE \
112 CONFIG_DRKAISER \
113 CONFIG_GFXNVIDIA \
114 CONFIG_INTERNAL \
115 CONFIG_IT8212 \
116 CONFIG_NICINTEL \
117 CONFIG_NICINTEL_EEPROM \
118 CONFIG_NICINTEL_SPI \
119 CONFIG_OGP_SPI \
120 CONFIG_SATAMV \
121 CONFIG_SATASII \
122
123DEPENDS_ON_X86_MSR := \
124 CONFIG_INTERNAL \
125
126DEPENDS_ON_X86_PORT_IO := \
127 CONFIG_ATAHPT \
128 CONFIG_ATAPROMISE \
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100129 CONFIG_INTERNAL \
130 CONFIG_NIC3COM \
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100131 CONFIG_NICNATSEMI \
132 CONFIG_NICREALTEK \
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100133 CONFIG_RAYER_SPI \
134 CONFIG_SATAMV \
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100135
Nico Huber7f898972021-06-27 13:30:50 +0200136DEPENDS_ON_LIBPCI := \
137 CONFIG_ATAHPT \
138 CONFIG_ATAPROMISE \
139 CONFIG_ATAVIA \
140 CONFIG_DRKAISER \
141 CONFIG_GFXNVIDIA \
142 CONFIG_INTERNAL \
143 CONFIG_IT8212 \
144 CONFIG_NIC3COM \
145 CONFIG_NICINTEL \
146 CONFIG_NICINTEL_EEPROM \
147 CONFIG_NICINTEL_SPI \
148 CONFIG_NICNATSEMI \
149 CONFIG_NICREALTEK \
150 CONFIG_OGP_SPI \
151 CONFIG_SATAMV \
152 CONFIG_SATASII \
153
154DEPENDS_ON_LIBUSB1 := \
155 CONFIG_CH341A_SPI \
156 CONFIG_DEDIPROG \
157 CONFIG_DEVELOPERBOX_SPI \
158 CONFIG_DIGILENT_SPI \
159 CONFIG_PICKIT2_SPI \
160 CONFIG_RAIDEN_DEBUG_SPI \
161 CONFIG_STLINKV3_SPI \
Jean THOMASe28d8e42022-10-11 17:54:30 +0200162 CONFIG_DIRTYJTAG_SPI \
Nico Huber7f898972021-06-27 13:30:50 +0200163
Thomas Heijligen121a5b82021-10-21 12:58:07 +0200164DEPENDS_ON_LIBFTDI1 := \
Nico Huber7f898972021-06-27 13:30:50 +0200165 CONFIG_FT2232_SPI \
166 CONFIG_USBBLASTER_SPI \
167
168DEPENDS_ON_LIBJAYLINK := \
169 CONFIG_JLINK_SPI \
170
Thomas Heijligenff63acd2021-11-05 10:19:42 +0100171DEPENDS_ON_LIB_NI845X := \
172 CONFIG_NI845X_SPI \
173
Nico Hubera54f5a42021-06-27 14:27:41 +0200174
175ifeq ($(CONFIG_ENABLE_LIBUSB1_PROGRAMMERS), no)
176$(call disable_all,$(DEPENDS_ON_LIBUSB1))
177endif
178
179ifeq ($(CONFIG_ENABLE_LIBPCI_PROGRAMMERS), no)
180$(call disable_all,$(DEPENDS_ON_LIBPCI))
181endif
182
Nico Huber7f898972021-06-27 13:30:50 +0200183###############################################################################
Stefan Tauner037cd842013-08-25 00:10:56 +0000184# General OS-specific settings.
185# 1. Prepare for later by gathering information about host and target OS
186# 2. Set compiler flags and parameters according to OSes
187# 3. Likewise verify user-supplied CONFIG_* variables.
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000188
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000189# HOST_OS is only used to work around local toolchain issues.
Stefan Tauner037cd842013-08-25 00:10:56 +0000190HOST_OS ?= $(shell uname)
Miklós Mártona75a2ed2018-01-30 20:25:00 +0100191ifeq ($(findstring MINGW, $(HOST_OS)), MINGW)
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000192# Explicitly set CC = gcc on MinGW, otherwise: "cc: command not found".
193CC = gcc
194endif
Miklós Mártona75a2ed2018-01-30 20:25:00 +0100195
Thomas Heijligen323ad352021-10-26 11:26:32 +0200196CC_WORKING := $(call c_compile_test, Makefile.d/cc_test.c)
197
Thomas Heijligen121a5b82021-10-21 12:58:07 +0200198# Configs for dependencies. Can be overwritten by commandline
Thomas Heijligenff63acd2021-11-05 10:19:42 +0100199CONFIG_LIBFTDI1_CFLAGS := $(call dependency_cflags, libftdi1)
200CONFIG_LIBFTDI1_LDFLAGS := $(call dependency_ldflags, libftdi1)
201
202# Hack to keep legacy auto detection of Program Files (x86), Only active if none of the CONFIG_ variables for ni845x are set.
203ifeq ($(CONFIG_NI845X_LIBRARY_PATH)$(CONFIG_LIB_NI845X_CFLAGS)$(CONFIG_LIB_NI845X_LDFLAGS),)
204PROGRAMFILES_X86 = $(shell env | sed -n "s/^PROGRAMFILES(X86)=//p")
205ifneq ($(PROGRAMFILES_X86),)
206ifneq ($(PROGRAMFILES_X86), ${PROGRAMFILES})
207NI854_X86_LIBRARY_PATH := '${PROGRAMFILES_X86}\National Instruments\NI-845x\MS Visual C'
208endif
209endif
210endif
211
212CONFIG_NI845X_LIBRARY_PATH := '${PROGRAMFILES}\National Instruments\NI-845x\MS Visual C'
213CONFIG_LIB_NI845X_CFLAGS := -I$(CONFIG_NI845X_LIBRARY_PATH) $(if NI854_X86_LIBRARY_PATH, -I${NI854_X86_LIBRARY_PATH})
214CONFIG_LIB_NI845X_LDFLAGS := -L$(CONFIG_NI845X_LIBRARY_PATH) $(if NI854_X86_LIBRARY_PATH, -L${NI854_X86_LIBRARY_PATH}) -lni845x
Thomas Heijligen121a5b82021-10-21 12:58:07 +0200215
Thomas Heijligen4dca8992021-11-05 10:34:31 +0100216CONFIG_LIBJAYLINK_CFLAGS := $(call dependency_cflags, libjaylink)
217CONFIG_LIBJAYLINK_LDFLAGS := $(call dependency_ldflags, libjaylink)
218
Thomas Heijligenb7c6a662021-11-05 10:47:40 +0100219CONFIG_LIBUSB1_CFLAGS := $(call dependency_cflags, libusb-1.0)
220CONFIG_LIBUSB1_LDFLAGS := $(call dependency_ldflags, libusb-1.0)
221
Thomas Heijligen4d700b92021-11-05 12:28:06 +0100222CONFIG_LIBPCI_CFLAGS := $(call dependency_cflags, libpci)
223CONFIG_LIBPCI_LDFLAGS := $(call dependency_ldflags, libpci)
224
Thomas Heijligen282a9512021-10-12 13:30:06 +0200225# Determine the destination OS, architecture and endian
226# IMPORTANT: The following lines must be placed before TARGET_OS, ARCH or ENDIAN
227# is ever used (of course), but should come after any lines setting CC because
228# the lines below use CC itself.
Thomas Heijligen4d700b92021-11-05 12:28:06 +0100229override TARGET_OS := $(call c_macro_test, Makefile.d/os_test.h)
230override ARCH := $(call c_macro_test, Makefile.d/arch_test.h)
231override ENDIAN := $(call c_macro_test, Makefile.d/endian_test.h)
Thomas Heijligen282a9512021-10-12 13:30:06 +0200232
Thomas Heijligen121a5b82021-10-21 12:58:07 +0200233
Thomas Heijligen4d700b92021-11-05 12:28:06 +0100234HAS_LIBFTDI1 := $(call find_dependency, libftdi1)
235HAS_LIB_NI845X := no
236HAS_LIBJAYLINK := $(call find_dependency, libjaylink)
237HAS_LIBUSB1 := $(call find_dependency, libusb-1.0)
238HAS_LIBPCI := $(call find_dependency, libpci)
Thomas Heijligen121a5b82021-10-21 12:58:07 +0200239
Thomas Heijligen4d700b92021-11-05 12:28:06 +0100240HAS_PCI_OLD_GET_DEV := $(call c_compile_test, Makefile.d/pci_old_get_dev_test.c, $(CONFIG_LIBPCI_CFLAGS))
241HAS_FT232H := $(call c_compile_test, Makefile.d/ft232h_test.c, $(CONFIG_LIBFTDI1_CFLAGS))
242HAS_UTSNAME := $(call c_compile_test, Makefile.d/utsname_test.c)
243HAS_CLOCK_GETTIME := $(call c_compile_test, Makefile.d/clock_gettime_test.c)
Thomas Heijligen9138e3f2022-01-31 23:49:44 +0100244HAS_EXTERN_LIBRT := $(call c_link_test, Makefile.d/clock_gettime_test.c, , -lrt)
Thomas Heijligen4d700b92021-11-05 12:28:06 +0100245HAS_LINUX_MTD := $(call c_compile_test, Makefile.d/linux_mtd_test.c)
246HAS_LINUX_SPI := $(call c_compile_test, Makefile.d/linux_spi_test.c)
247HAS_LINUX_I2C := $(call c_compile_test, Makefile.d/linux_i2c_test.c)
Thomas Heijligen457020a2021-10-26 12:44:36 +0200248
Thomas Heijligen0bec7b22021-10-12 13:18:15 +0200249ifeq ($(TARGET_OS), $(filter $(TARGET_OS), FreeBSD OpenBSD DragonFlyBSD))
250override CPPFLAGS += -I/usr/local/include
251override LDFLAGS += -L/usr/local/lib
252endif
253
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000254ifeq ($(TARGET_OS), Darwin)
Stefan Tauner45207062016-02-19 08:17:24 +0000255override CPPFLAGS += -I/opt/local/include -I/usr/local/include
256override LDFLAGS += -L/opt/local/lib -L/usr/local/lib
Stefan Reinauerf79edb92009-01-26 01:23:31 +0000257endif
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000258
Stefan Taunerc65b8552013-09-12 15:48:39 +0000259ifeq ($(TARGET_OS), NetBSD)
Nico Huberc0e1c4b2022-12-13 21:55:22 +0000260# Needs special `pciutils/pci.h` for older NetBSD packages
261PCIUTILS_PCI_H := $(shell [ -f /usr/pkg/include/pciutils/pci.h ] && echo -DPCIUTILS_PCI_H)
262override CPPFLAGS += -I/usr/pkg/include $(PCIUTILS_PCI_H)
Stefan Tauner45207062016-02-19 08:17:24 +0000263override LDFLAGS += -L/usr/pkg/lib
Stefan Taunerc65b8552013-09-12 15:48:39 +0000264endif
265
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000266ifeq ($(TARGET_OS), DOS)
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000267EXEC_SUFFIX := .exe
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000268# DJGPP has odd uint*_t definitions which cause lots of format string warnings.
Stefan Tauner45207062016-02-19 08:17:24 +0000269override CFLAGS += -Wno-format
Thomas Heijligenc0c783a2021-11-09 17:02:47 +0100270override LDFLAGS += -lgetopt
Nico Huberba681962021-06-27 13:39:23 +0200271# Missing serial support.
272$(call mark_unsupported,$(DEPENDS_ON_SERIAL))
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000273endif
Ollie Lho184a4042005-11-26 21:55:36 +0000274
Thomas Heijligen847d94b2021-10-12 17:38:01 +0200275ifeq ($(TARGET_OS), $(filter $(TARGET_OS), MinGW Cygwin))
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100276$(call mark_unsupported,$(DEPENDS_ON_RAW_MEM_ACCESS))
277$(call mark_unsupported,$(DEPENDS_ON_X86_PORT_IO))
278$(call mark_unsupported,$(DEPENDS_ON_X86_MSR))
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100279FEATURE_FLAGS += -D'IS_WINDOWS=1'
Thomas Heijligen847d94b2021-10-12 17:38:01 +0200280else
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100281FEATURE_FLAGS += -D'IS_WINDOWS=0'
Thomas Heijligen847d94b2021-10-12 17:38:01 +0200282endif
283
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000284# FIXME: Should we check for Cygwin/MSVC as well?
285ifeq ($(TARGET_OS), MinGW)
286EXEC_SUFFIX := .exe
Uwe Hermannd5e85d62011-07-03 19:44:12 +0000287# MinGW doesn't have the ffs() function, but we can use gcc's __builtin_ffs().
Carl-Daniel Hailfingera8da2242012-08-15 23:06:32 +0000288FLASHROM_CFLAGS += -Dffs=__builtin_ffs
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000289# Some functions provided by Microsoft do not work as described in C99 specifications. This macro fixes that
Stefan Tauner23e10b82016-01-23 16:16:49 +0000290# for MinGW. See http://sourceforge.net/p/mingw-w64/wiki2/printf%20and%20scanf%20family/ */
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000291FLASHROM_CFLAGS += -D__USE_MINGW_ANSI_STDIO=1
Miklós Márton2d20d6d2018-01-30 20:20:15 +0100292
Uwe Hermannd5e85d62011-07-03 19:44:12 +0000293# For now we disable all PCI-based programmers on Windows/MinGW (no libpci).
Nico Huberca621782021-06-27 13:53:49 +0200294$(call mark_unsupported,$(DEPENDS_ON_LIBPCI))
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100295
296else # No MinGW
297
298# NI USB-845x only supported on Windows at the moment
299$(call mark_unsupported,CONFIG_NI845X_SPI)
300
Miklós Márton2d20d6d2018-01-30 20:20:15 +0100301endif
302
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000303ifeq ($(TARGET_OS), libpayload)
Stefan Tauner8e19b042013-08-28 09:55:04 +0000304ifeq ($(MAKECMDGOALS),)
305.DEFAULT_GOAL := libflashrom.a
306$(info Setting default goal to libflashrom.a)
307endif
Carl-Daniel Hailfingera8da2242012-08-15 23:06:32 +0000308FLASHROM_CFLAGS += -DSTANDALONE
Nico Huber71331032021-06-27 14:00:39 +0200309$(call mark_unsupported,CONFIG_DUMMY)
Stefan Taunere0168262016-02-21 11:18:24 +0000310# libpayload does not provide the romsize field in struct pci_dev that the atapromise code requires.
Nico Huber71331032021-06-27 14:00:39 +0200311$(call mark_unsupported,CONFIG_ATAPROMISE)
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000312# Bus Pirate, Serprog and PonyProg are not supported with libpayload (missing serial support).
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100313$(call mark_unsupported,$(DEPENDS_ON_SERIAL))
314# Dediprog, Developerbox, USB-Blaster, PICkit2, CH341A and FT2232 are not supported with libpayload (missing libusb support).
315$(call mark_unsupported,$(DEPENDS_ON_LIBUSB1) $(DEPENDS_ON_LIBFTDI) $(DEPENDS_ON_LIBJAYLINK))
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000316endif
317
Thomas Heijligenca71c872021-10-20 22:08:24 +0200318ifeq ($(HAS_LINUX_MTD), no)
319$(call mark_unsupported,CONFIG_LINUX_MTD)
320endif
321
322ifeq ($(HAS_LINUX_SPI), no)
323$(call mark_unsupported,CONFIG_LINUX_SPI)
324endif
325
326ifeq ($(HAS_LINUX_I2C), no)
Nico Huberdc8e54a2021-06-27 14:17:34 +0200327$(call mark_unsupported,CONFIG_MSTARDDC_SPI)
Carl-Daniel Hailfinger601f4cd2016-02-28 22:04:51 +0000328endif
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000329
Carl-Daniel Hailfinger16c0aec2016-02-20 21:43:56 +0000330ifeq ($(TARGET_OS), Android)
Nico Huberdc8e54a2021-06-27 14:17:34 +0200331# Android on x86 (currently) does not provide raw PCI port I/O operations.
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100332$(call mark_unsupported,$(DEPENDS_ON_X86_PORT_IO))
Carl-Daniel Hailfinger16c0aec2016-02-20 21:43:56 +0000333endif
334
Nico Huberc8801732017-12-01 18:19:43 +0000335# Disable the internal programmer on unsupported architectures (everything but x86 and mipsel)
Thomas Heijligen485d2cd2021-10-19 16:14:55 +0200336ifneq ($(ARCH)-little, $(filter $(ARCH), x86 mips)-$(ENDIAN))
Nico Huber8945b812021-06-27 14:24:53 +0200337$(call mark_unsupported,CONFIG_INTERNAL)
Nico Huberc8801732017-12-01 18:19:43 +0000338endif
339
Thomas Heijligen4d700b92021-11-05 12:28:06 +0100340ifeq ($(HAS_LIBPCI), no)
341$(call mark_unsupported,$(DEPENDS_ON_LIBPCI))
342endif
343
Thomas Heijligen121a5b82021-10-21 12:58:07 +0200344ifeq ($(HAS_LIBFTDI1), no)
345$(call mark_unsupported,$(DEPENDS_ON_LIBFTDI1))
346endif
347
Thomas Heijligenff63acd2021-11-05 10:19:42 +0100348ifeq ($(HAS_LIB_NI845X), no)
349$(call mark_unsupported,$(DEPENDS_ON_LIB_NI845X))
350endif
351
Thomas Heijligen4dca8992021-11-05 10:34:31 +0100352ifeq ($(HAS_LIBJAYLINK), no)
353$(call mark_unsupported,$(DEPENDS_ON_LIBJAYLINK))
354endif
355
Thomas Heijligenb7c6a662021-11-05 10:47:40 +0100356ifeq ($(HAS_LIBUSB1), no)
357$(call mark_unsupported,$(DEPENDS_ON_LIBUSB1))
358endif
359
Thomas Heijligend6d96c12021-10-12 16:47:43 +0200360ifeq ($(ENDIAN), little)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100361FEATURE_FLAGS += -D'__FLASHROM_LITTLE_ENDIAN__=1'
Thomas Heijligend6d96c12021-10-12 16:47:43 +0200362endif
363ifeq ($(ENDIAN), big)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100364FEATURE_FLAGS += -D'__FLASHROM_BIG_ENDIAN__=1'
Thomas Heijligend6d96c12021-10-12 16:47:43 +0200365endif
366
Stefan Taunerfb2d77c2015-02-10 08:03:10 +0000367# PCI port I/O support is unimplemented on PPC/MIPS/SPARC and unavailable on ARM.
David Hendricksb286da72012-02-13 00:35:35 +0000368# Right now this means the drivers below only work on x86.
369ifneq ($(ARCH), x86)
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100370$(call mark_unsupported,$(DEPENDS_ON_X86_MSR))
371$(call mark_unsupported,$(DEPENDS_ON_X86_PORT_IO))
Uwe Hermann21b10c62011-07-29 12:13:01 +0000372endif
373
Nico Huber8945b812021-06-27 14:24:53 +0200374# Additionally disable all drivers needing raw access (memory, PCI, port I/O)
375# on architectures with unknown raw access properties.
Carl-Daniel Hailfinger8d0d53f2016-02-25 20:10:26 +0000376# Right now those architectures are alpha hppa m68k sh s390
Thomas Heijligen485d2cd2021-10-19 16:14:55 +0200377ifneq ($(ARCH), $(filter $(ARCH), x86 mips ppc arm sparc arc))
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100378$(call mark_unsupported,$(DEPENDS_ON_RAW_MEM_ACCESS))
Carl-Daniel Hailfinger8d0d53f2016-02-25 20:10:26 +0000379endif
380
Thomas Heijligen433dc1c2021-10-12 17:58:35 +0200381ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Linux Darwin NetBSD OpenBSD))
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100382FEATURE_FLAGS += -D'USE_IOPL=1'
Thomas Heijligen433dc1c2021-10-12 17:58:35 +0200383else
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100384FEATURE_FLAGS += -D'USE_IOPL=0'
Thomas Heijligen433dc1c2021-10-12 17:58:35 +0200385endif
386
387ifeq ($(TARGET_OS), $(filter $(TARGET_OS), FreeBSD FreeBSD-glibc DragonFlyBSD))
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100388FEATURE_FLAGS += -D'USE_DEV_IO=1'
Thomas Heijligen433dc1c2021-10-12 17:58:35 +0200389else
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100390FEATURE_FLAGS += -D'USE_DEV_IO=0'
Thomas Heijligen433dc1c2021-10-12 17:58:35 +0200391endif
392
393ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Hurd))
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100394FEATURE_FLAGS += -D'USE_IOPERM=1'
Thomas Heijligen433dc1c2021-10-12 17:58:35 +0200395else
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100396FEATURE_FLAGS += -D'USE_IOPERM=0'
Thomas Heijligen433dc1c2021-10-12 17:58:35 +0200397endif
398
399
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000400###############################################################################
401# Flash chip drivers and bus support infrastructure.
402
Stefan Tauner4404f732013-09-12 08:28:56 +0000403CHIP_OBJS = jedec.o stm50.o w39.o w29ee011.o \
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000404 sst28sf040.o 82802ab.o \
Paul Kocialkowski80ae14e2018-01-15 01:07:46 +0300405 sst49lfxxxc.o sst_fwhub.o edi.o flashchips.o spi.o spi25.o spi25_statusreg.o \
Nikolai Artemievc9feb1b2021-10-21 01:35:13 +1100406 spi95.o opaque.o sfdp.o en29lv640b.o at45db.o \
407 writeprotect.o writeprotect_ranges.o
Sean Nelson5d134642009-12-24 16:54:21 +0000408
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000409###############################################################################
410# Library code.
Sean Nelson5d134642009-12-24 16:54:21 +0000411
Thomas Heijligenbbfacff2021-03-31 20:40:01 +0200412LIB_OBJS = libflashrom.o layout.o flashrom.o udelay.o programmer.o programmer_table.o helpers.o ich_descriptors.o fmap.o
Sean Nelson5d134642009-12-24 16:54:21 +0000413
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000414###############################################################################
415# Frontend related stuff.
Ollie Lho184a4042005-11-26 21:55:36 +0000416
Stefan Tauner9b32de92014-08-08 23:52:33 +0000417CLI_OBJS = cli_classic.o cli_output.o cli_common.o print.o
Ollie Lho184a4042005-11-26 21:55:36 +0000418
Stefan Taunerfa25bc32017-10-04 03:47:26 +0200419# versioninfo.inc stores metadata required to build a packaged flashrom. It is generated by the export rule and
420# imported below. If versioninfo.inc is not found and the variables are not defined by the user, the info will
421# be obtained using util/getrevision.sh, which is the common case during development.
422-include versioninfo.inc
Stefan Tauner5bf6b852017-10-04 03:46:51 +0200423VERSION ?= $(shell ./util/getrevision.sh --revision)
Stefan Tauner96209122017-10-01 16:41:35 +0200424MAN_DATE ?= $(shell ./util/getrevision.sh --date $(PROGRAM).8.tmpl 2>/dev/null)
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000425
Stefan Tauner76347082016-11-27 17:45:49 +0100426SCMDEF := -D'FLASHROM_VERSION="$(VERSION)"'
Bernhard Walle201bde32008-01-21 15:24:22 +0000427
Stefan Tauner76347082016-11-27 17:45:49 +0100428# Inform user of the version string
Nico Huber26c2c4d2023-01-10 17:45:38 +0100429ifeq ($(filter branch tag,$(MAKECMDGOALS)), )
Stefan Tauner76347082016-11-27 17:45:49 +0100430$(info Replacing all version templates with $(VERSION).)
Nico Huber26c2c4d2023-01-10 17:45:38 +0100431endif
Stefan Taunerd5ff8452015-01-10 09:32:07 +0000432
Stefan Tauner037cd842013-08-25 00:10:56 +0000433###############################################################################
434# Default settings of CONFIG_* variables.
435
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000436# Always enable internal/onboard support for now.
437CONFIG_INTERNAL ?= yes
438
Stefan Tauner52b6e9d2013-04-01 00:46:05 +0000439# Always enable serprog for now.
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000440CONFIG_SERPROG ?= yes
441
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000442# RayeR SPIPGM hardware support
443CONFIG_RAYER_SPI ?= yes
444
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000445# PonyProg2000 SPI hardware support
446CONFIG_PONY_SPI ?= yes
447
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000448# Always enable 3Com NICs for now.
449CONFIG_NIC3COM ?= yes
450
Carl-Daniel Hailfingerbf3af292010-07-29 14:41:46 +0000451# Enable NVIDIA graphics cards. Note: write and erase do not work properly.
452CONFIG_GFXNVIDIA ?= yes
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000453
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000454# Always enable SiI SATA controllers for now.
455CONFIG_SATASII ?= yes
456
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000457# Highpoint (HPT) ATA/RAID controller support.
458# IMPORTANT: This code is not yet working!
459CONFIG_ATAHPT ?= no
460
Jonathan Kollasch7f0f3fa2014-06-01 10:26:23 +0000461# VIA VT6421A LPC memory support
462CONFIG_ATAVIA ?= yes
463
Joseph C. Lehnerc2644a32016-01-16 23:45:25 +0000464# Promise ATA controller support.
465CONFIG_ATAPROMISE ?= no
466
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000467# Always enable FT2232 SPI dongles for now.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000468CONFIG_FT2232_SPI ?= yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000469
James Lairdc60de0e2013-03-27 13:00:23 +0000470# Always enable Altera USB-Blaster dongles for now.
471CONFIG_USBBLASTER_SPI ?= yes
472
Alexandre Boeglin80e64712014-12-20 20:25:19 +0000473# MSTAR DDC support needs more tests/reviews/cleanups.
474CONFIG_MSTARDDC_SPI ?= no
475
Justin Chevrier66e554b2015-02-08 21:58:10 +0000476# Always enable PICkit2 SPI dongles for now.
477CONFIG_PICKIT2_SPI ?= yes
478
Miklós Márton324929c2019-08-01 19:14:10 +0200479# Always enable STLink V3
480CONFIG_STLINKV3_SPI ?= yes
481
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000482# Always enable dummy tracing for now.
483CONFIG_DUMMY ?= yes
484
485# Always enable Dr. Kaiser for now.
486CONFIG_DRKAISER ?= yes
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000487
Joerg Fischer5665ef32010-05-21 21:54:07 +0000488# Always enable Realtek NICs for now.
489CONFIG_NICREALTEK ?= yes
490
Andrew Morganc29c2e72010-06-07 22:37:54 +0000491# Disable National Semiconductor NICs until support is complete and tested.
492CONFIG_NICNATSEMI ?= no
493
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000494# Always enable Intel NICs for now.
495CONFIG_NICINTEL ?= yes
496
Idwer Vollering004f4b72010-09-03 18:21:21 +0000497# Always enable SPI on Intel NICs for now.
498CONFIG_NICINTEL_SPI ?= yes
499
Ricardo Ribalda Delgado2a41f0a2014-07-28 20:35:21 +0000500# Always enable EEPROM on Intel NICs for now.
501CONFIG_NICINTEL_EEPROM ?= yes
502
Mark Marshall90021f22010-12-03 14:48:11 +0000503# Always enable SPI on OGP cards for now.
504CONFIG_OGP_SPI ?= yes
505
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000506# Always enable Bus Pirate SPI for now.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000507CONFIG_BUSPIRATE_SPI ?= yes
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000508
Simon Glassae616512016-01-23 23:27:58 +0000509# Always enable Dediprog SF100 for now.
510CONFIG_DEDIPROG ?= yes
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000511
Daniel Thompson45e91a22018-06-04 13:46:29 +0100512# Always enable Developerbox emergency recovery for now.
513CONFIG_DEVELOPERBOX_SPI ?= yes
514
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000515# Always enable Marvell SATA controllers for now.
516CONFIG_SATAMV ?= yes
517
David Hendricksf9a30552015-05-23 20:30:30 -0700518# Enable Linux spidev and MTD interfaces by default. We disable them on non-Linux targets.
519CONFIG_LINUX_MTD ?= yes
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000520CONFIG_LINUX_SPI ?= yes
521
Kyösti Mälkki72d42f82014-06-01 23:48:31 +0000522# Always enable ITE IT8212F PATA controllers for now.
523CONFIG_IT8212 ?= yes
524
Urja Rannikko0870b022016-01-31 22:10:29 +0000525# Winchiphead CH341A
526CONFIG_CH341A_SPI ?= yes
527
Lubomir Rintelb2154e82018-01-14 17:35:33 +0100528# Digilent Development board JTAG
529CONFIG_DIGILENT_SPI ?= yes
530
Jean THOMASe28d8e42022-10-11 17:54:30 +0200531# DirtyJTAG
532CONFIG_DIRTYJTAG_SPI ?= yes
533
Marc Schink3578ec62016-03-17 16:23:03 +0100534# Disable J-Link for now.
535CONFIG_JLINK_SPI ?= no
536
Nico Huber83d52072021-06-27 00:07:13 +0200537# National Instruments USB-845x is Windows only and needs a proprietary library.
538CONFIG_NI845X_SPI ?= no
539
Carl-Daniel Hailfinger6161ff12009-11-16 21:22:24 +0000540# Disable wiki printing by default. It is only useful if you have wiki access.
Uwe Hermann2db77a02010-06-04 17:07:39 +0000541CONFIG_PRINT_WIKI ?= no
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000542
Stefan Taunerf3503372016-02-26 23:51:21 +0000543# Disable all features if CONFIG_NOTHING=yes is given unless CONFIG_EVERYTHING was also set
544ifeq ($(CONFIG_NOTHING), yes)
545 ifeq ($(CONFIG_EVERYTHING), yes)
546 $(error Setting CONFIG_NOTHING=yes and CONFIG_EVERYTHING=yes does not make sense)
547 endif
548 $(foreach var, $(filter CONFIG_%, $(.VARIABLES)),\
549 $(if $(filter yes, $($(var))),\
550 $(eval $(var)=no)))
551endif
552
Patrick Georgiced7ab62015-01-19 19:52:34 +0000553# Enable all features if CONFIG_EVERYTHING=yes is given
554ifeq ($(CONFIG_EVERYTHING), yes)
555$(foreach var, $(filter CONFIG_%, $(.VARIABLES)),\
556 $(if $(filter no, $($(var))),\
557 $(eval $(var)=yes)))
558endif
559
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000560# Bitbanging SPI infrastructure, default off unless needed.
Nico Huber29c68342021-06-27 14:34:16 +0200561
562ifneq ($(call filter_deps,$(DEPENDS_ON_BITBANG_SPI)), )
Felix Singer4cbc1cb2022-07-22 23:23:28 +0200563override CONFIG_BITBANG_SPI = yes
564else
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000565CONFIG_BITBANG_SPI ?= no
566endif
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000567
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000568###############################################################################
Sean Nelson4c6d3a42013-09-11 23:35:03 +0000569# Handle CONFIG_* variables that depend on others set (and verified) above.
570
571# The external DMI decoder (dmidecode) does not work in libpayload. Bail out if the internal one got disabled.
572ifeq ($(TARGET_OS), libpayload)
573ifeq ($(CONFIG_INTERNAL), yes)
574ifeq ($(CONFIG_INTERNAL_DMI), no)
575UNSUPPORTED_FEATURES += CONFIG_INTERNAL_DMI=no
576else
577override CONFIG_INTERNAL_DMI = yes
578endif
579endif
580endif
581
582# Use internal DMI/SMBIOS decoder by default instead of relying on dmidecode.
583CONFIG_INTERNAL_DMI ?= yes
584
585###############################################################################
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000586# Programmer drivers and programmer support infrastructure.
Stefan Tauner037cd842013-08-25 00:10:56 +0000587# Depending on the CONFIG_* variables set and verified above we set compiler flags and parameters below.
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000588
Thomas Heijligen84e9c912021-06-01 16:22:14 +0200589ifdef CONFIG_DEFAULT_PROGRAMMER_NAME
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100590FEATURE_FLAGS += -D'CONFIG_DEFAULT_PROGRAMMER_NAME=&programmer_$(CONFIG_DEFAULT_PROGRAMMER_NAME)'
Thomas Heijligen84e9c912021-06-01 16:22:14 +0200591else
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100592FEATURE_FLAGS += -D'CONFIG_DEFAULT_PROGRAMMER_NAME=NULL'
Thomas Heijligen84e9c912021-06-01 16:22:14 +0200593endif
594
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100595FEATURE_FLAGS += -D'CONFIG_DEFAULT_PROGRAMMER_ARGS="$(CONFIG_DEFAULT_PROGRAMMER_ARGS)"'
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000596
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000597ifeq ($(CONFIG_INTERNAL), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100598FEATURE_FLAGS += -D'CONFIG_INTERNAL=1'
Sean Nelson4c6d3a42013-09-11 23:35:03 +0000599PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o internal.o
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000600ifeq ($(ARCH), x86)
Edward O'Callaghan2ab6bba2022-06-24 16:48:09 +1000601PROGRAMMER_OBJS += it87spi.o sb600spi.o amd_imc.o wbsio_spi.o mcp6x_spi.o
Nico Huber305f4172013-06-14 11:55:26 +0200602PROGRAMMER_OBJS += ichspi.o dmi.o
Sean Nelson4c6d3a42013-09-11 23:35:03 +0000603ifeq ($(CONFIG_INTERNAL_DMI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100604FEATURE_FLAGS += -D'CONFIG_INTERNAL_DMI=1'
Sean Nelson4c6d3a42013-09-11 23:35:03 +0000605endif
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000606else
607endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000608endif
609
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000610ifeq ($(CONFIG_SERPROG), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100611FEATURE_FLAGS += -D'CONFIG_SERPROG=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000612PROGRAMMER_OBJS += serprog.o
Carl-Daniel Hailfingerf2daaca2016-02-17 22:25:12 +0000613NEED_SERIAL += CONFIG_SERPROG
614NEED_POSIX_SOCKETS += CONFIG_SERPROG
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000615endif
616
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000617ifeq ($(CONFIG_RAYER_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100618FEATURE_FLAGS += -D'CONFIG_RAYER_SPI=1'
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000619PROGRAMMER_OBJS += rayer_spi.o
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000620endif
621
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000622ifeq ($(CONFIG_PONY_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100623FEATURE_FLAGS += -D'CONFIG_PONY_SPI=1'
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000624PROGRAMMER_OBJS += pony_spi.o
Carl-Daniel Hailfingerf2daaca2016-02-17 22:25:12 +0000625NEED_SERIAL += CONFIG_PONY_SPI
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000626endif
627
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000628ifeq ($(CONFIG_BITBANG_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100629FEATURE_FLAGS += -D'CONFIG_BITBANG_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000630PROGRAMMER_OBJS += bitbang_spi.o
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000631endif
632
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000633ifeq ($(CONFIG_NIC3COM), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100634FEATURE_FLAGS += -D'CONFIG_NIC3COM=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000635PROGRAMMER_OBJS += nic3com.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000636endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000637
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000638ifeq ($(CONFIG_GFXNVIDIA), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100639FEATURE_FLAGS += -D'CONFIG_GFXNVIDIA=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000640PROGRAMMER_OBJS += gfxnvidia.o
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000641endif
642
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000643ifeq ($(CONFIG_SATASII), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100644FEATURE_FLAGS += -D'CONFIG_SATASII=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000645PROGRAMMER_OBJS += satasii.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000646endif
647
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000648ifeq ($(CONFIG_ATAHPT), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100649FEATURE_FLAGS += -D'CONFIG_ATAHPT=1'
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000650PROGRAMMER_OBJS += atahpt.o
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000651endif
652
Jonathan Kollasch7f0f3fa2014-06-01 10:26:23 +0000653ifeq ($(CONFIG_ATAVIA), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100654FEATURE_FLAGS += -D'CONFIG_ATAVIA=1'
Jonathan Kollasch7f0f3fa2014-06-01 10:26:23 +0000655PROGRAMMER_OBJS += atavia.o
Jonathan Kollasch7f0f3fa2014-06-01 10:26:23 +0000656endif
657
Joseph C. Lehnerc2644a32016-01-16 23:45:25 +0000658ifeq ($(CONFIG_ATAPROMISE), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100659FEATURE_FLAGS += -D'CONFIG_ATAPROMISE=1'
Joseph C. Lehnerc2644a32016-01-16 23:45:25 +0000660PROGRAMMER_OBJS += atapromise.o
Joseph C. Lehnerc2644a32016-01-16 23:45:25 +0000661endif
662
Kyösti Mälkki72d42f82014-06-01 23:48:31 +0000663ifeq ($(CONFIG_IT8212), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100664FEATURE_FLAGS += -D'CONFIG_IT8212=1'
Kyösti Mälkki72d42f82014-06-01 23:48:31 +0000665PROGRAMMER_OBJS += it8212.o
Kyösti Mälkki72d42f82014-06-01 23:48:31 +0000666endif
667
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000668ifeq ($(CONFIG_FT2232_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100669FEATURE_FLAGS += -D'CONFIG_FT2232_SPI=1'
James Lairdc60de0e2013-03-27 13:00:23 +0000670PROGRAMMER_OBJS += ft2232_spi.o
671endif
672
673ifeq ($(CONFIG_USBBLASTER_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100674FEATURE_FLAGS += -D'CONFIG_USBBLASTER_SPI=1'
James Lairdc60de0e2013-03-27 13:00:23 +0000675PROGRAMMER_OBJS += usbblaster_spi.o
676endif
677
Justin Chevrier66e554b2015-02-08 21:58:10 +0000678ifeq ($(CONFIG_PICKIT2_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100679FEATURE_FLAGS += -D'CONFIG_PICKIT2_SPI=1'
Justin Chevrier66e554b2015-02-08 21:58:10 +0000680PROGRAMMER_OBJS += pickit2_spi.o
Justin Chevrier66e554b2015-02-08 21:58:10 +0000681endif
682
Miklós Márton324929c2019-08-01 19:14:10 +0200683ifeq ($(CONFIG_STLINKV3_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100684FEATURE_FLAGS += -D'CONFIG_STLINKV3_SPI=1'
Miklós Márton324929c2019-08-01 19:14:10 +0200685PROGRAMMER_OBJS += stlinkv3_spi.o
Miklós Márton324929c2019-08-01 19:14:10 +0200686endif
687
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000688ifeq ($(CONFIG_DUMMY), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100689FEATURE_FLAGS += -D'CONFIG_DUMMY=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000690PROGRAMMER_OBJS += dummyflasher.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000691endif
692
693ifeq ($(CONFIG_DRKAISER), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100694FEATURE_FLAGS += -D'CONFIG_DRKAISER=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000695PROGRAMMER_OBJS += drkaiser.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000696endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000697
Joerg Fischer5665ef32010-05-21 21:54:07 +0000698ifeq ($(CONFIG_NICREALTEK), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100699FEATURE_FLAGS += -D'CONFIG_NICREALTEK=1'
Joerg Fischer5665ef32010-05-21 21:54:07 +0000700PROGRAMMER_OBJS += nicrealtek.o
Joerg Fischer5665ef32010-05-21 21:54:07 +0000701endif
702
Andrew Morganc29c2e72010-06-07 22:37:54 +0000703ifeq ($(CONFIG_NICNATSEMI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100704FEATURE_FLAGS += -D'CONFIG_NICNATSEMI=1'
Andrew Morganc29c2e72010-06-07 22:37:54 +0000705PROGRAMMER_OBJS += nicnatsemi.o
Andrew Morganc29c2e72010-06-07 22:37:54 +0000706endif
707
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000708ifeq ($(CONFIG_NICINTEL), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100709FEATURE_FLAGS += -D'CONFIG_NICINTEL=1'
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000710PROGRAMMER_OBJS += nicintel.o
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000711endif
712
Idwer Vollering004f4b72010-09-03 18:21:21 +0000713ifeq ($(CONFIG_NICINTEL_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100714FEATURE_FLAGS += -D'CONFIG_NICINTEL_SPI=1'
Idwer Vollering004f4b72010-09-03 18:21:21 +0000715PROGRAMMER_OBJS += nicintel_spi.o
Idwer Vollering004f4b72010-09-03 18:21:21 +0000716endif
717
Ricardo Ribalda Delgado2a41f0a2014-07-28 20:35:21 +0000718ifeq ($(CONFIG_NICINTEL_EEPROM), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100719FEATURE_FLAGS += -D'CONFIG_NICINTEL_EEPROM=1'
Ricardo Ribalda Delgado2a41f0a2014-07-28 20:35:21 +0000720PROGRAMMER_OBJS += nicintel_eeprom.o
Ricardo Ribalda Delgado2a41f0a2014-07-28 20:35:21 +0000721endif
722
Mark Marshall90021f22010-12-03 14:48:11 +0000723ifeq ($(CONFIG_OGP_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100724FEATURE_FLAGS += -D'CONFIG_OGP_SPI=1'
Mark Marshall90021f22010-12-03 14:48:11 +0000725PROGRAMMER_OBJS += ogp_spi.o
Mark Marshall90021f22010-12-03 14:48:11 +0000726endif
727
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000728ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100729FEATURE_FLAGS += -D'CONFIG_BUSPIRATE_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000730PROGRAMMER_OBJS += buspirate_spi.o
Carl-Daniel Hailfingerf2daaca2016-02-17 22:25:12 +0000731NEED_SERIAL += CONFIG_BUSPIRATE_SPI
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000732endif
733
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000734ifeq ($(CONFIG_DEDIPROG), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100735FEATURE_FLAGS += -D'CONFIG_DEDIPROG=1'
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000736PROGRAMMER_OBJS += dediprog.o
737endif
738
Daniel Thompson45e91a22018-06-04 13:46:29 +0100739ifeq ($(CONFIG_DEVELOPERBOX_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100740FEATURE_FLAGS += -D'CONFIG_DEVELOPERBOX_SPI=1'
Daniel Thompson45e91a22018-06-04 13:46:29 +0100741PROGRAMMER_OBJS += developerbox_spi.o
Daniel Thompson45e91a22018-06-04 13:46:29 +0100742endif
743
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000744ifeq ($(CONFIG_SATAMV), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100745FEATURE_FLAGS += -D'CONFIG_SATAMV=1'
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000746PROGRAMMER_OBJS += satamv.o
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000747endif
748
David Hendricksf9a30552015-05-23 20:30:30 -0700749ifeq ($(CONFIG_LINUX_MTD), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100750FEATURE_FLAGS += -D'CONFIG_LINUX_MTD=1'
David Hendricksf9a30552015-05-23 20:30:30 -0700751PROGRAMMER_OBJS += linux_mtd.o
752endif
753
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000754ifeq ($(CONFIG_LINUX_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100755FEATURE_FLAGS += -D'CONFIG_LINUX_SPI=1'
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000756PROGRAMMER_OBJS += linux_spi.o
757endif
758
Alexandre Boeglin80e64712014-12-20 20:25:19 +0000759ifeq ($(CONFIG_MSTARDDC_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100760FEATURE_FLAGS += -D'CONFIG_MSTARDDC_SPI=1'
Alexandre Boeglin80e64712014-12-20 20:25:19 +0000761PROGRAMMER_OBJS += mstarddc_spi.o
762endif
763
Urja Rannikko0870b022016-01-31 22:10:29 +0000764ifeq ($(CONFIG_CH341A_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100765FEATURE_FLAGS += -D'CONFIG_CH341A_SPI=1'
Urja Rannikko0870b022016-01-31 22:10:29 +0000766PROGRAMMER_OBJS += ch341a_spi.o
Urja Rannikko0870b022016-01-31 22:10:29 +0000767endif
768
Lubomir Rintelb2154e82018-01-14 17:35:33 +0100769ifeq ($(CONFIG_DIGILENT_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100770FEATURE_FLAGS += -D'CONFIG_DIGILENT_SPI=1'
Lubomir Rintelb2154e82018-01-14 17:35:33 +0100771PROGRAMMER_OBJS += digilent_spi.o
Lubomir Rintelb2154e82018-01-14 17:35:33 +0100772endif
773
Jean THOMASe28d8e42022-10-11 17:54:30 +0200774ifeq ($(CONFIG_DIRTYJTAG_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100775FEATURE_FLAGS += -D'CONFIG_DIRTYJTAG_SPI=1'
Jean THOMASe28d8e42022-10-11 17:54:30 +0200776PROGRAMMER_OBJS += dirtyjtag_spi.o
777endif
778
Marc Schink3578ec62016-03-17 16:23:03 +0100779ifeq ($(CONFIG_JLINK_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100780FEATURE_FLAGS += -D'CONFIG_JLINK_SPI=1'
Marc Schink3578ec62016-03-17 16:23:03 +0100781PROGRAMMER_OBJS += jlink_spi.o
782endif
783
Miklós Márton2d20d6d2018-01-30 20:20:15 +0100784ifeq ($(CONFIG_NI845X_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100785FEATURE_FLAGS += -D'CONFIG_NI845X_SPI=1'
Miklós Márton2d20d6d2018-01-30 20:20:15 +0100786PROGRAMMER_OBJS += ni845x_spi.o
787endif
788
Carl-Daniel Hailfingerf2daaca2016-02-17 22:25:12 +0000789ifneq ($(NEED_SERIAL), )
Thomas Heijligen140c1262021-09-27 15:12:26 +0200790LIB_OBJS += serial.o
791ifeq ($(TARGET_OS), Linux)
792LIB_OBJS += custom_baud_linux.o
793else
794LIB_OBJS += custom_baud.o
795endif
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000796endif
797
Carl-Daniel Hailfingerf2daaca2016-02-17 22:25:12 +0000798ifneq ($(NEED_POSIX_SOCKETS), )
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000799ifeq ($(TARGET_OS), SunOS)
Thomas Heijligenc0c783a2021-11-09 17:02:47 +0100800override LDFLAGS += -lsocket -lnsl
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000801endif
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +0000802endif
803
Thomas Heijligenebb55092021-12-23 16:55:16 +0100804USE_X86_MSR := $(if $(call filter_deps,$(DEPENDS_ON_X86_MSR)),yes,no)
805ifeq ($(USE_X86_MSR), yes)
806PROGRAMMER_OBJS += hwaccess_x86_msr.o
807endif
Carl-Daniel Hailfinger16c0aec2016-02-20 21:43:56 +0000808
Thomas Heijligenebb55092021-12-23 16:55:16 +0100809USE_X86_PORT_IO := $(if $(call filter_deps,$(DEPENDS_ON_X86_PORT_IO)),yes,no)
810ifeq ($(USE_X86_PORT_IO), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100811FEATURE_FLAGS += -D'__FLASHROM_HAVE_OUTB__=1'
Thomas Heijligenebb55092021-12-23 16:55:16 +0100812PROGRAMMER_OBJS += hwaccess_x86_io.o
Thomas Heijligena0655202021-12-14 16:36:05 +0100813endif
814
Thomas Heijligenebb55092021-12-23 16:55:16 +0100815USE_RAW_MEM_ACCESS := $(if $(call filter_deps,$(DEPENDS_ON_RAW_MEM_ACCESS)),yes,no)
816ifeq ($(USE_RAW_MEM_ACCESS), yes)
817PROGRAMMER_OBJS += hwaccess_physmap.o
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +0000818endif
Thomas Heijligenebb55092021-12-23 16:55:16 +0100819
820ifeq (Darwin yes, $(TARGET_OS) $(filter $(USE_X86_MSR) $(USE_X86_PORT_IO) $(USE_RAW_MEM_ACCESS), yes))
821override LDFLAGS += -framework IOKit -framework DirectHW
822endif
823
824ifeq (NetBSD yes, $(TARGET_OS) $(filter $(USE_X86_MSR) $(USE_X86_PORT_IO), yes))
825override LDFLAGS += -l$(shell uname -p)
826endif
827
828ifeq (OpenBSD yes, $(TARGET_OS) $(filter $(USE_X86_MSR) $(USE_X86_PORT_IO), yes))
829override LDFLAGS += -l$(shell uname -m)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000830endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000831
Thomas Heijligen4d700b92021-11-05 12:28:06 +0100832USE_LIBPCI := $(if $(call filter_deps,$(DEPENDS_ON_LIBPCI)),yes,no)
833ifeq ($(USE_LIBPCI), yes)
834PROGRAMMER_OBJS += pcidev.o
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100835FEATURE_FLAGS += -D'NEED_PCI=1'
Thomas Heijligen4d700b92021-11-05 12:28:06 +0100836override CFLAGS += $(CONFIG_LIBPCI_CFLAGS)
837override LDFLAGS += $(CONFIG_LIBPCI_LDFLAGS)
838endif
839
Thomas Heijligenb7c6a662021-11-05 10:47:40 +0100840USE_LIBUSB1 := $(if $(call filter_deps,$(DEPENDS_ON_LIBUSB1)),yes,no)
841ifeq ($(USE_LIBUSB1), yes)
842override CFLAGS += $(CONFIG_LIBUSB1_CFLAGS)
843override LDFLAGS += $(CONFIG_LIBUSB1_LDFLAGS)
Daniel Thompson1d507a02018-07-12 11:02:28 +0100844PROGRAMMER_OBJS += usbdev.o
Stefan Taunere49edbb2016-01-31 22:10:14 +0000845endif
846
Thomas Heijligen121a5b82021-10-21 12:58:07 +0200847USE_LIBFTDI1 := $(if $(call filter_deps,$(DEPENDS_ON_LIBFTDI1)),yes,no)
848ifeq ($(USE_LIBFTDI1), yes)
849override CFLAGS += $(CONFIG_LIBFTDI1_CFLAGS)
850override LDFLAGS += $(CONFIG_LIBFTDI1_LDFLAGS)
851ifeq ($(HAS_FT232H), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100852FEATURE_FLAGS += -D'HAVE_FT232H=1'
Thomas Heijligen121a5b82021-10-21 12:58:07 +0200853endif
Nico Huber09e82e22021-06-27 14:31:37 +0200854endif
855
Thomas Heijligenff63acd2021-11-05 10:19:42 +0100856USE_LIB_NI845X := $(if $(call filter_deps,$(DEPENDS_ON_LIB_NI845X)),yes,no)
857ifeq ($(USE_LIB_NI845X), yes)
858override CFLAGS += $(CONFIG_LIB_NI845X_CFLAGS)
859override LDFLAGS += $(CONFIG_LIB_NI845X_LDFLAGS)
860endif
861
Thomas Heijligen4dca8992021-11-05 10:34:31 +0100862USE_LIBJAYLINK := $(if $(call filter_deps,$(DEPENDS_ON_LIBJAYLINK)),yes,no)
863ifeq ($(USE_LIBJAYLINK), yes)
864override CFLAGS += $(CONFIG_LIBJAYLINK_CFLAGS)
865override LDFLAGS += $(CONFIG_LIBJAYLINK_LDFLAGS)
Marc Schink3578ec62016-03-17 16:23:03 +0100866endif
867
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000868ifeq ($(CONFIG_PRINT_WIKI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100869FEATURE_FLAGS += -D'CONFIG_PRINT_WIKI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000870CLI_OBJS += print_wiki.o
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000871endif
872
Thomas Heijligen457020a2021-10-26 12:44:36 +0200873ifeq ($(HAS_UTSNAME), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100874FEATURE_FLAGS += -D'HAVE_UTSNAME=1'
Thomas Heijligen457020a2021-10-26 12:44:36 +0200875endif
876
877ifeq ($(HAS_CLOCK_GETTIME), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100878FEATURE_FLAGS += -D'HAVE_CLOCK_GETTIME=1'
Thomas Heijligen9138e3f2022-01-31 23:49:44 +0100879ifeq ($(HAS_EXTERN_LIBRT), yes)
Thomas Heijligenc0c783a2021-11-09 17:02:47 +0100880override LDFLAGS += -lrt
Thomas Heijligen457020a2021-10-26 12:44:36 +0200881endif
Thomas Heijligen9138e3f2022-01-31 23:49:44 +0100882endif
Nico Huber8624e8c2012-11-05 21:46:33 +0100883
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000884LIBFLASHROM_OBJS = $(CHIP_OBJS) $(PROGRAMMER_OBJS) $(LIB_OBJS)
Stefan Taunerd94d25d2012-07-28 03:17:15 +0000885OBJS = $(CLI_OBJS) $(LIBFLASHROM_OBJS)
Sean Nelson5d134642009-12-24 16:54:21 +0000886
Thomas Heijligen306f38e2021-12-09 17:52:23 +0100887all: $(PROGRAM)$(EXEC_SUFFIX) $(PROGRAM).8
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000888ifeq ($(ARCH), x86)
Thomas Heijligen3976b7e2021-10-20 15:55:35 +0200889 @+$(MAKE) -C util/ich_descriptors_tool/ HOST_OS=$(HOST_OS) TARGET_OS=$(TARGET_OS)
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000890endif
891
Thomas Heijligen306f38e2021-12-09 17:52:23 +0100892config:
Thomas Heijligen323ad352021-10-26 11:26:32 +0200893 @echo -n "C compiler found: "
894 @if [ $(CC_WORKING) = yes ]; \
895 then $(CC) --version 2>/dev/null | head -1; \
896 else echo no; echo Aborting.; exit 1; fi
Thomas Heijligen8cd366d2021-10-26 12:02:52 +0200897 @echo "Target arch: $(ARCH)"
Thomas Heijligen6efdfb32021-10-12 15:16:46 +0200898 @if [ $(ARCH) = unknown ]; then echo Aborting.; exit 1; fi
Thomas Heijligen8cd366d2021-10-26 12:02:52 +0200899 @echo "Target OS: $(TARGET_OS)"
Thomas Heijligen1e76dc82021-09-28 15:22:34 +0200900 @if [ $(TARGET_OS) = unknown ]; then echo Aborting.; exit 1; fi
Thomas Heijligen8cd366d2021-10-26 12:02:52 +0200901 @if [ $(TARGET_OS) = libpayload ] && ! $(CC) --version 2>&1 | grep -q coreboot; then \
902 echo " Warning: It seems you are not using coreboot's reference compiler."; \
903 echo " This might work but usually does not, please beware."; fi
904 @echo "Target endian: $(ENDIAN)"
Thomas Heijligen9a2787b2021-10-12 15:54:06 +0200905 @if [ $(ENDIAN) = unknown ]; then echo Aborting.; exit 1; fi
Thomas Heijligen4d700b92021-11-05 12:28:06 +0100906 @echo Dependency libpci found: $(HAS_LIBPCI)
907 @if [ $(HAS_LIBPCI) = yes ]; then \
908 echo " Checking for old \"pci_get_dev()\": $(HAS_PCI_OLD_GET_DEV)";\
909 echo " CFLAGS: $(CONFIG_LIBPCI_CFLAGS)"; \
910 echo " LDFLAGS: $(CONFIG_LIBPCI_LDFLAGS)"; \
911 fi
Thomas Heijligenb7c6a662021-11-05 10:47:40 +0100912 @echo Dependency libusb1 found: $(HAS_LIBUSB1)
913 @if [ $(HAS_LIBUSB1) = yes ]; then \
914 echo " CFLAGS: $(CONFIG_LIBUSB1_CFLAGS)"; \
915 echo " LDFLAGS: $(CONFIG_LIBUSB1_LDFLAGS)"; \
916 fi
Thomas Heijligen4dca8992021-11-05 10:34:31 +0100917 @echo Dependency libjaylink found: $(HAS_LIBJAYLINK)
918 @if [ $(HAS_LIBJAYLINK) = yes ]; then \
919 echo " CFLAGS: $(CONFIG_LIBJAYLINK_CFLAGS)"; \
920 echo " LDFLAGS: $(CONFIG_LIBJAYLINK_LDFLAGS)"; \
921 fi
Thomas Heijligenff63acd2021-11-05 10:19:42 +0100922 @echo Dependency NI-845x found: $(HAS_LIB_NI845X)
923 @if [ $(HAS_LIB_NI845X) = yes ]; then \
924 echo " CFLAGS: $(CONFIG_LIB_NI845X_CFLAGS)"; \
925 echo " LDFLAGS: $(CONFIG_LIB_NI845X_LDFLAGS)"; \
926 fi
Thomas Heijligen121a5b82021-10-21 12:58:07 +0200927 @echo Dependency libftdi1 found: $(HAS_LIBFTDI1)
928 @if [ $(HAS_LIBFTDI1) = yes ]; then \
929 echo " Checking for \"TYPE_232H\" in \"enum ftdi_chip_type\": $(HAS_FT232H)"; \
930 echo " CFLAGS: $(CONFIG_LIBFTDI1_CFLAGS)"; \
931 echo " LDFLAGS: $(CONFIG_LIBFTDI1_LDFLAGS)"; \
932 fi
Thomas Heijligen142a6232022-01-06 10:56:35 +0100933 @echo "Checking for header \"mtd/mtd-user.h\": $(HAS_LINUX_MTD)"
934 @echo "Checking for header \"linux/spi/spidev.h\": $(HAS_LINUX_SPI)"
935 @echo "Checking for header \"linux/i2c-dev.h\": $(HAS_LINUX_I2C)"
936 @echo "Checking for header \"linux/i2c.h\": $(HAS_LINUX_I2C)"
937 @echo "Checking for header \"sys/utsname.h\": $(HAS_UTSNAME)"
938 @echo "Checking for function \"clock_gettime\": $(HAS_CLOCK_GETTIME)"
Thomas Heijligen9138e3f2022-01-31 23:49:44 +0100939 @echo "Checking for external \"librt\": $(HAS_EXTERN_LIBRT)"
Thomas Heijligen306f38e2021-12-09 17:52:23 +0100940 @if ! [ "$(PROGRAMMER_OBJS)" ]; then \
941 echo "You have to enable at least one programmer driver!"; \
942 exit 1; \
943 fi
944 @if [ "$(UNSUPPORTED_FEATURES)" ]; then \
945 echo "The following features are unavailable on your machine: $(UNSUPPORTED_FEATURES)" \
946 exit 1; \
947 fi
Thomas Heijligen142a6232022-01-06 10:56:35 +0100948
Thomas Heijligen306f38e2021-12-09 17:52:23 +0100949%.o: %.c | config
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100950 $(CC) -MMD $(CFLAGS) $(CPPFLAGS) $(FLASHROM_CFLAGS) $(FEATURE_FLAGS) $(SCMDEF) -o $@ -c $<
Thomas Heijligen142a6232022-01-06 10:56:35 +0100951
952$(PROGRAM)$(EXEC_SUFFIX): $(OBJS)
953 $(CC) -o $(PROGRAM)$(EXEC_SUFFIX) $(OBJS) $(LDFLAGS)
954
955libflashrom.a: $(LIBFLASHROM_OBJS)
956 $(AR) rcs $@ $^
957 $(RANLIB) $@
Paul Fox05dfbe62009-06-16 21:08:06 +0000958
Stefan Tauner4c723152016-01-14 22:47:55 +0000959$(PROGRAM).8.html: $(PROGRAM).8
960 @groff -mandoc -Thtml $< >$@
961
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000962$(PROGRAM).8: $(PROGRAM).8.tmpl
Stefan Tauner4c723152016-01-14 22:47:55 +0000963 @# Add the man page change date and version to the man page
Nico Huberac90af62022-12-18 00:22:47 +0000964 @sed -e 's#.TH FLASHROM 8 .*#.TH FLASHROM 8 "$(MAN_DATE)" "flashrom-stable-$(VERSION)" "$(MAN_DATE)"#' <$< >$@
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000965
Thomas Heijligen142a6232022-01-06 10:56:35 +0100966strip: $(PROGRAM)$(EXEC_SUFFIX)
967 $(STRIP) $(STRIP_ARGS) $(PROGRAM)$(EXEC_SUFFIX)
968
969# Make sure to add all names of generated binaries here.
970# This includes all frontends and libflashrom.
971# We don't use EXEC_SUFFIX here because we want to clean everything.
972clean:
973 rm -f $(PROGRAM) $(PROGRAM).exe libflashrom.a $(filter-out Makefile.d, $(wildcard *.d *.o)) $(PROGRAM).8 $(PROGRAM).8.html $(BUILD_DETAILS_FILE)
974 @+$(MAKE) -C util/ich_descriptors_tool/ clean
975
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000976install: $(PROGRAM)$(EXEC_SUFFIX) $(PROGRAM).8
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +0000977 mkdir -p $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000978 mkdir -p $(DESTDIR)$(MANDIR)/man8
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000979 $(INSTALL) -m 0755 $(PROGRAM)$(EXEC_SUFFIX) $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000980 $(INSTALL) -m 0644 $(PROGRAM).8 $(DESTDIR)$(MANDIR)/man8
Uwe Hermannc113b572006-12-14 00:59:41 +0000981
Nico Huber454f6132012-12-10 13:34:10 +0000982libinstall: libflashrom.a libflashrom.h
983 mkdir -p $(DESTDIR)$(PREFIX)/lib
984 $(INSTALL) -m 0644 libflashrom.a $(DESTDIR)$(PREFIX)/lib
985 mkdir -p $(DESTDIR)$(PREFIX)/include
986 $(INSTALL) -m 0644 libflashrom.h $(DESTDIR)$(PREFIX)/include
987
Nico Huber5f245a22023-01-10 17:14:47 +0100988versioninfo:
989# Generate versioninfo.inc containing metadata that would not be available in exported sources otherwise.
990 @[ "$(RELEASE)" ] || { echo 'Error: Must provide `RELEASE=...`'; exit 1; }
991 @echo "VERSION = $(RELEASE)" > $@.inc
992 @echo "MAN_DATE = $(shell ./util/getrevision.sh --date $(PROGRAM).8.tmpl 2>/dev/null)" >> $@.inc
993
Nico Huber26c2c4d2023-01-10 17:45:38 +0100994branch: versioninfo
995 @git checkout -b $(RELEASE)
996 @git add -f $<.inc
997 @git commit -sm'Update version info for $(RELEASE)'
998
999tag: versioninfo
1000 @git add -f $<.inc
1001 @git commit -sm'Update version info for $(RELEASE)'
1002 @git tag -s $(RELEASE)
1003
Nico Huber5f245a22023-01-10 17:14:47 +01001004# No spaces in release names unless set explicitly
Nico Huber1d58a902023-01-10 18:26:12 +01001005RELEASENAME ?= flashrom-stable-$(shell echo "$(VERSION)" | sed -e 's/ /_/')
Nico Huber5f245a22023-01-10 17:14:47 +01001006
Nico Huber1d58a902023-01-10 18:26:12 +01001007_export: EXPORT_VERSIONINFO := $(EXPORTDIR)/$(RELEASENAME)/versioninfo.inc
Stefan Tauner76347082016-11-27 17:45:49 +01001008_export: $(PROGRAM).8
Nico Huber1d58a902023-01-10 18:26:12 +01001009 @rm -rf "$(EXPORTDIR)/$(RELEASENAME)"
1010 @mkdir -p "$(EXPORTDIR)/$(RELEASENAME)"
1011 @git archive HEAD | tar -x -C "$(EXPORTDIR)/$(RELEASENAME)"
Nico Huber5f245a22023-01-10 17:14:47 +01001012# Generate fresh versioninfo.inc and compare
1013 @echo "VERSION = $(shell ./util/getrevision.sh --revision)" > "$(EXPORT_VERSIONINFO)"
1014 @echo "MAN_DATE = $(shell ./util/getrevision.sh --date $(PROGRAM).8.tmpl 2>/dev/null)" >> \
1015 "$(EXPORT_VERSIONINFO)"
1016 @if [ -f versioninfo.inc ]; then \
1017 cmp -s versioninfo.inc "$(EXPORT_VERSIONINFO)" || \
1018 { echo Error: Version info changed:; \
1019 cat "$(EXPORT_VERSIONINFO)"; \
1020 echo Update versioninfo.inc and tag accordingly.; \
1021 exit 1; \
1022 }; \
1023 fi
Stefan Taunere4136852017-10-01 15:57:25 +02001024# Restore modification date of all tracked files not marked 'export-ignore' in .gitattributes.
1025# sed is required to filter out file names having the attribute set.
1026# The sed program saves the file name in the hold buffer and then checks if the respective value is 'set'.
1027# If so it ignores the rest of the program, which otherwise restores the file name and prints it.
Stefan Tauner76347082016-11-27 17:45:49 +01001028 @git ls-tree -r -z -t --full-name --name-only HEAD | \
1029 git check-attr -z --stdin export-ignore | \
Stefan Taunere4136852017-10-01 15:57:25 +02001030 sed -zne 'x;n;n;{/^set$$/b;};x;p;' | \
Stefan Tauner76347082016-11-27 17:45:49 +01001031 xargs -0 sh -c 'for f; do \
1032 touch -d $$(git log --pretty=format:%cI -1 HEAD -- "$$f") \
Nico Huber1d58a902023-01-10 18:26:12 +01001033 "$(EXPORTDIR)/$(RELEASENAME)/$$f"; \
Stefan Taunere4136852017-10-01 15:57:25 +02001034 done' dummy_arg0
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +00001035
Stefan Tauner76347082016-11-27 17:45:49 +01001036export: _export
Nico Huber1d58a902023-01-10 18:26:12 +01001037 @echo "Exported $(EXPORTDIR)/$(RELEASENAME)/"
Stefan Tauner76347082016-11-27 17:45:49 +01001038
Thomas Heijligen142a6232022-01-06 10:56:35 +01001039
1040# TAROPTIONS reduces information leakage from the packager's system.
1041# If other tar programs support command line arguments for setting uid/gid of
1042# stored files, they can be handled here as well.
1043TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root --group=root")
1044
Stefan Tauner76347082016-11-27 17:45:49 +01001045tarball: _export
Nico Huber1d58a902023-01-10 18:26:12 +01001046 @tar -cj --format=ustar -f "$(EXPORTDIR)/$(RELEASENAME).tar.bz2" -C $(EXPORTDIR)/ \
1047 $(TAROPTIONS) "$(RELEASENAME)/"
Stefan Tauner76347082016-11-27 17:45:49 +01001048# Delete the exported directory again because it is most likely what's expected by the user.
Nico Huber1d58a902023-01-10 18:26:12 +01001049 @rm -rf "$(EXPORTDIR)/$(RELEASENAME)"
1050 @echo Created "$(EXPORTDIR)/$(RELEASENAME).tar.bz2"
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +00001051
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +00001052libpayload: clean
1053 make CC="CC=i386-elf-gcc lpgcc" AR=i386-elf-ar RANLIB=i386-elf-ranlib
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +00001054
Felix Singer9441c6e2022-10-21 12:47:11 +02001055gitconfig:
1056 ./util/getrevision.sh -c 2>/dev/null && ./util/git-hooks/install.sh
1057
Thomas Heijligen306f38e2021-12-09 17:52:23 +01001058.PHONY: all install clean distclean config branch tag versioninfo _export export tarball libpayload gitconfig
Ollie Lho184a4042005-11-26 21:55:36 +00001059
Stefan Tauner23e10b82016-01-23 16:16:49 +00001060# Disable implicit suffixes and built-in rules (for performance and profit)
1061.SUFFIXES:
1062
Stefan Reinauere2f01582010-06-07 11:08:07 +00001063-include $(OBJS:.o=.d)