blob: c3bf0711aa889445f7f24fc61efd381e90356af5 [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
Nico Huberc3b02dc2023-08-12 01:13:45 +020017PROGRAM = flashprog
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
Nico Huberc3b02dc2023-08-12 01:13:45 +020040# argument given when running flashprog. The predefined setting does not enable any default so that every
Stefan Taunerfd0d4132012-09-25 21:24:55 +000041# 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
Nico Huberc3b02dc2023-08-12 01:13:45 +020046# running flashprog). Please do not enable this without thinking about the possible consequences. Possible
47# values can be found when running 'flashprog --list-supported' under the 'Supported programmers' section.
Thomas Heijligen84e9c912021-06-01 16:22:14 +020048CONFIG_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"
Nico Huberc3b02dc2023-08-12 01:13:45 +020053# would make executing './flashprog' (almost) equivialent to './flashprog -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 LDFLAGS += -static
Stefan Taunerbfb067b2016-01-07 18:13:07 +000076endif
77
Stefan Tauner1ca7c7f2016-01-14 23:05:55 +000078# Set LC_ALL=C to minimize influences of the locale.
79# 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 -060080# GNU make does not relay variables exported within the makefile to their environment.
Stefan Tauner1ca7c7f2016-01-14 23:05:55 +000081LC_ALL=C
82export LC_ALL
83
Stefan Tauner3f73ffe2016-01-07 17:45:59 +000084dummy_for_make_3_80:=$(shell printf "Build started on %s\n\n" "$$(date)" >$(BUILD_DETAILS_FILE))
Stefan Tauner1ca7c7f2016-01-14 23:05:55 +000085
86# Provide an easy way to execute a command, print its output to stdout and capture any error message on stderr
87# in the build details file together with the original stdout output.
Pyry Kontio89cc73b2020-07-06 12:57:35 +090088debug_shell = $(shell export LC_ALL=C ; { echo 'exec: export LC_ALL=C ; { $(subst ','\'',$(1)) ; }' >&2; \
89 { $(1) ; } | tee -a $(BUILD_DETAILS_FILE) ; echo >&2 ; } 2>>$(BUILD_DETAILS_FILE))
Stefan Tauner1ca7c7f2016-01-14 23:05:55 +000090
Thomas Heijligen121a5b82021-10-21 12:58:07 +020091include Makefile.include
92
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000093###############################################################################
Nico Huber7f898972021-06-27 13:30:50 +020094# Dependency handling.
95
96DEPENDS_ON_SERIAL := \
97 CONFIG_BUSPIRATE_SPI \
98 CONFIG_PONY_SPI \
99 CONFIG_SERPROG \
100
Thomas Heijligen0dfd6f62022-02-19 17:20:27 +0100101DEPENDS_ON_SOCKETS := \
102 CONFIG_SERPROG \
103
Nico Huber7f898972021-06-27 13:30:50 +0200104DEPENDS_ON_BITBANG_SPI := \
Nico Huber29c68342021-06-27 14:34:16 +0200105 CONFIG_DEVELOPERBOX_SPI \
Thomas Heijligenb9d63d32022-01-21 13:54:15 +0100106 CONFIG_INTERNAL_X86 \
Nico Huberaa5268d2023-03-09 17:15:23 +0100107 CONFIG_LINUX_GPIO_SPI \
Nico Huber7f898972021-06-27 13:30:50 +0200108 CONFIG_NICINTEL_SPI \
109 CONFIG_OGP_SPI \
110 CONFIG_PONY_SPI \
111 CONFIG_RAYER_SPI \
112
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100113DEPENDS_ON_RAW_MEM_ACCESS := \
114 CONFIG_ATAPROMISE \
115 CONFIG_DRKAISER \
116 CONFIG_GFXNVIDIA \
117 CONFIG_INTERNAL \
118 CONFIG_IT8212 \
119 CONFIG_NICINTEL \
120 CONFIG_NICINTEL_EEPROM \
121 CONFIG_NICINTEL_SPI \
122 CONFIG_OGP_SPI \
123 CONFIG_SATAMV \
124 CONFIG_SATASII \
125
126DEPENDS_ON_X86_MSR := \
Thomas Heijligenb9d63d32022-01-21 13:54:15 +0100127 CONFIG_INTERNAL_X86 \
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100128
129DEPENDS_ON_X86_PORT_IO := \
130 CONFIG_ATAHPT \
131 CONFIG_ATAPROMISE \
Thomas Heijligenb9d63d32022-01-21 13:54:15 +0100132 CONFIG_INTERNAL_X86 \
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100133 CONFIG_NIC3COM \
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100134 CONFIG_NICNATSEMI \
135 CONFIG_NICREALTEK \
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100136 CONFIG_RAYER_SPI \
137 CONFIG_SATAMV \
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100138
Nico Huber7f898972021-06-27 13:30:50 +0200139DEPENDS_ON_LIBPCI := \
140 CONFIG_ATAHPT \
141 CONFIG_ATAPROMISE \
142 CONFIG_ATAVIA \
143 CONFIG_DRKAISER \
144 CONFIG_GFXNVIDIA \
145 CONFIG_INTERNAL \
146 CONFIG_IT8212 \
147 CONFIG_NIC3COM \
148 CONFIG_NICINTEL \
149 CONFIG_NICINTEL_EEPROM \
150 CONFIG_NICINTEL_SPI \
151 CONFIG_NICNATSEMI \
152 CONFIG_NICREALTEK \
153 CONFIG_OGP_SPI \
154 CONFIG_SATAMV \
155 CONFIG_SATASII \
156
157DEPENDS_ON_LIBUSB1 := \
158 CONFIG_CH341A_SPI \
Nicholas Chin197b7c72022-10-23 13:10:31 -0600159 CONFIG_CH347_SPI \
Nico Huber7f898972021-06-27 13:30:50 +0200160 CONFIG_DEDIPROG \
161 CONFIG_DEVELOPERBOX_SPI \
162 CONFIG_DIGILENT_SPI \
Nico Huber044c9dc2023-12-29 23:26:57 +0100163 CONFIG_FT4222_SPI \
Nico Huber7f898972021-06-27 13:30:50 +0200164 CONFIG_PICKIT2_SPI \
165 CONFIG_RAIDEN_DEBUG_SPI \
166 CONFIG_STLINKV3_SPI \
Jean THOMASe28d8e42022-10-11 17:54:30 +0200167 CONFIG_DIRTYJTAG_SPI \
Nico Huber7f898972021-06-27 13:30:50 +0200168
Thomas Heijligen121a5b82021-10-21 12:58:07 +0200169DEPENDS_ON_LIBFTDI1 := \
Nico Huber7f898972021-06-27 13:30:50 +0200170 CONFIG_FT2232_SPI \
171 CONFIG_USBBLASTER_SPI \
172
173DEPENDS_ON_LIBJAYLINK := \
174 CONFIG_JLINK_SPI \
175
Thomas Heijligenff63acd2021-11-05 10:19:42 +0100176DEPENDS_ON_LIB_NI845X := \
177 CONFIG_NI845X_SPI \
178
Thomas Heijligenda11a0d2022-02-19 17:34:08 +0100179DEPENDS_ON_LINUX_I2C := \
180 CONFIG_MSTARDDC_SPI \
Nico Hubera54f5a42021-06-27 14:27:41 +0200181
Steve Markgraf61899472023-01-09 23:06:52 +0100182DEPENDS_ON_LIBGPIOD := \
Nico Huberaa5268d2023-03-09 17:15:23 +0100183 CONFIG_LINUX_GPIO_SPI \
Steve Markgraf61899472023-01-09 23:06:52 +0100184
Nico Hubera54f5a42021-06-27 14:27:41 +0200185ifeq ($(CONFIG_ENABLE_LIBUSB1_PROGRAMMERS), no)
186$(call disable_all,$(DEPENDS_ON_LIBUSB1))
187endif
188
189ifeq ($(CONFIG_ENABLE_LIBPCI_PROGRAMMERS), no)
190$(call disable_all,$(DEPENDS_ON_LIBPCI))
191endif
192
Nico Huber7f898972021-06-27 13:30:50 +0200193###############################################################################
Stefan Tauner037cd842013-08-25 00:10:56 +0000194# General OS-specific settings.
195# 1. Prepare for later by gathering information about host and target OS
196# 2. Set compiler flags and parameters according to OSes
197# 3. Likewise verify user-supplied CONFIG_* variables.
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000198
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000199# HOST_OS is only used to work around local toolchain issues.
Stefan Tauner037cd842013-08-25 00:10:56 +0000200HOST_OS ?= $(shell uname)
Miklós Mártona75a2ed2018-01-30 20:25:00 +0100201ifeq ($(findstring MINGW, $(HOST_OS)), MINGW)
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000202# Explicitly set CC = gcc on MinGW, otherwise: "cc: command not found".
203CC = gcc
204endif
Miklós Mártona75a2ed2018-01-30 20:25:00 +0100205
Thomas Heijligen323ad352021-10-26 11:26:32 +0200206CC_WORKING := $(call c_compile_test, Makefile.d/cc_test.c)
207
Thomas Heijligen121a5b82021-10-21 12:58:07 +0200208# Configs for dependencies. Can be overwritten by commandline
Thomas Heijligen7a9daa02022-08-12 19:52:23 +0200209CONFIG_LIBFTDI1_VERSION := $(call dependency_version, libftdi1)
Thomas Heijligenff63acd2021-11-05 10:19:42 +0100210CONFIG_LIBFTDI1_CFLAGS := $(call dependency_cflags, libftdi1)
211CONFIG_LIBFTDI1_LDFLAGS := $(call dependency_ldflags, libftdi1)
212
213# Hack to keep legacy auto detection of Program Files (x86), Only active if none of the CONFIG_ variables for ni845x are set.
214ifeq ($(CONFIG_NI845X_LIBRARY_PATH)$(CONFIG_LIB_NI845X_CFLAGS)$(CONFIG_LIB_NI845X_LDFLAGS),)
215PROGRAMFILES_X86 = $(shell env | sed -n "s/^PROGRAMFILES(X86)=//p")
216ifneq ($(PROGRAMFILES_X86),)
217ifneq ($(PROGRAMFILES_X86), ${PROGRAMFILES})
218NI854_X86_LIBRARY_PATH := '${PROGRAMFILES_X86}\National Instruments\NI-845x\MS Visual C'
219endif
220endif
221endif
222
223CONFIG_NI845X_LIBRARY_PATH := '${PROGRAMFILES}\National Instruments\NI-845x\MS Visual C'
224CONFIG_LIB_NI845X_CFLAGS := -I$(CONFIG_NI845X_LIBRARY_PATH) $(if NI854_X86_LIBRARY_PATH, -I${NI854_X86_LIBRARY_PATH})
225CONFIG_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 +0200226
Thomas Heijligen7a9daa02022-08-12 19:52:23 +0200227CONFIG_LIBJAYLINK_VERSION := $(call dependency_version, libjaylink)
Thomas Heijligen4dca8992021-11-05 10:34:31 +0100228CONFIG_LIBJAYLINK_CFLAGS := $(call dependency_cflags, libjaylink)
229CONFIG_LIBJAYLINK_LDFLAGS := $(call dependency_ldflags, libjaylink)
230
Thomas Heijligen7a9daa02022-08-12 19:52:23 +0200231CONFIG_LIBUSB1_VERSION := $(call dependency_version, libusb-1.0)
Thomas Heijligenb7c6a662021-11-05 10:47:40 +0100232CONFIG_LIBUSB1_CFLAGS := $(call dependency_cflags, libusb-1.0)
233CONFIG_LIBUSB1_LDFLAGS := $(call dependency_ldflags, libusb-1.0)
234
Thomas Heijligen7a9daa02022-08-12 19:52:23 +0200235CONFIG_LIBPCI_VERSION := $(call dependency_version, libpci)
Thomas Heijligen4d700b92021-11-05 12:28:06 +0100236CONFIG_LIBPCI_CFLAGS := $(call dependency_cflags, libpci)
237CONFIG_LIBPCI_LDFLAGS := $(call dependency_ldflags, libpci)
238
Steve Markgraf61899472023-01-09 23:06:52 +0100239CONFIG_LIBGPIOD_VERSION := $(call dependency_version, libgpiod)
240CONFIG_LIBGPIOD_CFLAGS := $(call dependency_cflags, libgpiod)
241CONFIG_LIBGPIOD_LDFLAGS := $(call dependency_ldflags, libgpiod)
242
Thomas Heijligen282a9512021-10-12 13:30:06 +0200243# Determine the destination OS, architecture and endian
244# IMPORTANT: The following lines must be placed before TARGET_OS, ARCH or ENDIAN
245# is ever used (of course), but should come after any lines setting CC because
246# the lines below use CC itself.
Thomas Heijligen4d700b92021-11-05 12:28:06 +0100247override TARGET_OS := $(call c_macro_test, Makefile.d/os_test.h)
248override ARCH := $(call c_macro_test, Makefile.d/arch_test.h)
249override ENDIAN := $(call c_macro_test, Makefile.d/endian_test.h)
Thomas Heijligen282a9512021-10-12 13:30:06 +0200250
Thomas Heijligen121a5b82021-10-21 12:58:07 +0200251
Thomas Heijligen4d700b92021-11-05 12:28:06 +0100252HAS_LIBFTDI1 := $(call find_dependency, libftdi1)
253HAS_LIB_NI845X := no
254HAS_LIBJAYLINK := $(call find_dependency, libjaylink)
255HAS_LIBUSB1 := $(call find_dependency, libusb-1.0)
256HAS_LIBPCI := $(call find_dependency, libpci)
Steve Markgraf61899472023-01-09 23:06:52 +0100257HAS_LIBGPIOD := $(call find_dependency, libgpiod)
Thomas Heijligen121a5b82021-10-21 12:58:07 +0200258
Thomas Heijligen4d700b92021-11-05 12:28:06 +0100259HAS_PCI_OLD_GET_DEV := $(call c_compile_test, Makefile.d/pci_old_get_dev_test.c, $(CONFIG_LIBPCI_CFLAGS))
260HAS_FT232H := $(call c_compile_test, Makefile.d/ft232h_test.c, $(CONFIG_LIBFTDI1_CFLAGS))
261HAS_UTSNAME := $(call c_compile_test, Makefile.d/utsname_test.c)
262HAS_CLOCK_GETTIME := $(call c_compile_test, Makefile.d/clock_gettime_test.c)
Thomas Heijligen9138e3f2022-01-31 23:49:44 +0100263HAS_EXTERN_LIBRT := $(call c_link_test, Makefile.d/clock_gettime_test.c, , -lrt)
Thomas Heijligen4d700b92021-11-05 12:28:06 +0100264HAS_LINUX_MTD := $(call c_compile_test, Makefile.d/linux_mtd_test.c)
265HAS_LINUX_SPI := $(call c_compile_test, Makefile.d/linux_spi_test.c)
266HAS_LINUX_I2C := $(call c_compile_test, Makefile.d/linux_i2c_test.c)
Thomas Heijligen0dfd6f62022-02-19 17:20:27 +0100267HAS_SERIAL := $(strip $(if $(filter $(TARGET_OS), DOS libpayload), no, yes))
Thomas Heijligendbf6a8a2022-02-19 17:06:21 +0100268EXEC_SUFFIX := $(strip $(if $(filter $(TARGET_OS), DOS MinGW), .exe))
Thomas Heijligen457020a2021-10-26 12:44:36 +0200269
Thomas Heijligen58015c22022-04-14 13:50:55 +0200270override CFLAGS += -Iinclude
271
Stefan Taunerc65b8552013-09-12 15:48:39 +0000272ifeq ($(TARGET_OS), NetBSD)
Nico Huberc0e1c4b2022-12-13 21:55:22 +0000273# Needs special `pciutils/pci.h` for older NetBSD packages
Thomas Heijligendcabdb22022-01-31 23:59:09 +0100274override CPPFLAGS += $(shell [ -f /usr/pkg/include/pciutils/pci.h ] && echo -DPCIUTILS_PCI_H)
Stefan Taunerc65b8552013-09-12 15:48:39 +0000275endif
276
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000277ifeq ($(TARGET_OS), DOS)
Nico Huber24ad6b22023-03-17 00:21:38 +0000278$(call mark_unsupported,$(DEPENDS_ON_LIBFTDI1))
279$(call mark_unsupported,$(DEPENDS_ON_LIBUSB1))
280$(call mark_unsupported,CONFIG_JLINK_SPI)
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000281# DJGPP has odd uint*_t definitions which cause lots of format string warnings.
Stefan Tauner45207062016-02-19 08:17:24 +0000282override CFLAGS += -Wno-format
Thomas Heijligenc0c783a2021-11-09 17:02:47 +0100283override LDFLAGS += -lgetopt
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000284endif
Ollie Lho184a4042005-11-26 21:55:36 +0000285
Thomas Heijligen847d94b2021-10-12 17:38:01 +0200286ifeq ($(TARGET_OS), $(filter $(TARGET_OS), MinGW Cygwin))
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100287$(call mark_unsupported,$(DEPENDS_ON_RAW_MEM_ACCESS))
288$(call mark_unsupported,$(DEPENDS_ON_X86_PORT_IO))
289$(call mark_unsupported,$(DEPENDS_ON_X86_MSR))
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100290FEATURE_FLAGS += -D'IS_WINDOWS=1'
Thomas Heijligen847d94b2021-10-12 17:38:01 +0200291else
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100292FEATURE_FLAGS += -D'IS_WINDOWS=0'
Thomas Heijligen847d94b2021-10-12 17:38:01 +0200293endif
294
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000295# FIXME: Should we check for Cygwin/MSVC as well?
296ifeq ($(TARGET_OS), MinGW)
Uwe Hermannd5e85d62011-07-03 19:44:12 +0000297# MinGW doesn't have the ffs() function, but we can use gcc's __builtin_ffs().
Nico Huberc3b02dc2023-08-12 01:13:45 +0200298FLASHPROG_CFLAGS += -Dffs=__builtin_ffs
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000299# Some functions provided by Microsoft do not work as described in C99 specifications. This macro fixes that
Stefan Tauner23e10b82016-01-23 16:16:49 +0000300# for MinGW. See http://sourceforge.net/p/mingw-w64/wiki2/printf%20and%20scanf%20family/ */
Nico Huberc3b02dc2023-08-12 01:13:45 +0200301FLASHPROG_CFLAGS += -D__USE_MINGW_ANSI_STDIO=1
Miklós Márton2d20d6d2018-01-30 20:20:15 +0100302
Uwe Hermannd5e85d62011-07-03 19:44:12 +0000303# For now we disable all PCI-based programmers on Windows/MinGW (no libpci).
Nico Huberca621782021-06-27 13:53:49 +0200304$(call mark_unsupported,$(DEPENDS_ON_LIBPCI))
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100305
306else # No MinGW
307
308# NI USB-845x only supported on Windows at the moment
309$(call mark_unsupported,CONFIG_NI845X_SPI)
310
Miklós Márton2d20d6d2018-01-30 20:20:15 +0100311endif
312
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000313ifeq ($(TARGET_OS), libpayload)
Stefan Tauner8e19b042013-08-28 09:55:04 +0000314ifeq ($(MAKECMDGOALS),)
Nico Huberc3b02dc2023-08-12 01:13:45 +0200315.DEFAULT_GOAL := libflashprog.a
316$(info Setting default goal to libflashprog.a)
Stefan Tauner8e19b042013-08-28 09:55:04 +0000317endif
Nico Huber71331032021-06-27 14:00:39 +0200318$(call mark_unsupported,CONFIG_DUMMY)
Stefan Taunere0168262016-02-21 11:18:24 +0000319# libpayload does not provide the romsize field in struct pci_dev that the atapromise code requires.
Nico Huber71331032021-06-27 14:00:39 +0200320$(call mark_unsupported,CONFIG_ATAPROMISE)
Nico Huber044c9dc2023-12-29 23:26:57 +0100321# Dediprog, Developerbox, USB-Blaster, PICkit2, CH341A, FT2232 and FT4222 are not supported with libpayload (missing libusb support).
Nico Huberd2ba4382023-03-17 00:20:12 +0000322$(call mark_unsupported,$(DEPENDS_ON_LIBUSB1) $(DEPENDS_ON_LIBFTDI1) $(DEPENDS_ON_LIBJAYLINK))
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000323endif
324
Thomas Heijligenca71c872021-10-20 22:08:24 +0200325ifeq ($(HAS_LINUX_MTD), no)
326$(call mark_unsupported,CONFIG_LINUX_MTD)
327endif
328
329ifeq ($(HAS_LINUX_SPI), no)
330$(call mark_unsupported,CONFIG_LINUX_SPI)
331endif
332
333ifeq ($(HAS_LINUX_I2C), no)
Thomas Heijligenda11a0d2022-02-19 17:34:08 +0100334$(call mark_unsupported,$(DEPENDS_ON_LINUX_I2C))
Carl-Daniel Hailfinger601f4cd2016-02-28 22:04:51 +0000335endif
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000336
Nico Huberf7dea1a2023-03-17 13:15:50 +0000337# libgpiod is most likely not available on anything but Linux and Android
338ifeq ($(filter $(TARGET_OS), Linux Android), )
339$(call mark_unsupported,$(DEPENDS_ON_LIBGPIOD))
340endif
341
Carl-Daniel Hailfinger16c0aec2016-02-20 21:43:56 +0000342ifeq ($(TARGET_OS), Android)
Nico Huberdc8e54a2021-06-27 14:17:34 +0200343# Android on x86 (currently) does not provide raw PCI port I/O operations.
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100344$(call mark_unsupported,$(DEPENDS_ON_X86_PORT_IO))
Carl-Daniel Hailfinger16c0aec2016-02-20 21:43:56 +0000345endif
346
Thomas Heijligenb9d63d32022-01-21 13:54:15 +0100347# Disable the internal programmer on unsupported architectures or systems
348ifeq ($(or $(filter $(ARCH), x86), $(filter $(TARGET_OS), Linux)), )
Nico Huber8945b812021-06-27 14:24:53 +0200349$(call mark_unsupported,CONFIG_INTERNAL)
Nico Huberc8801732017-12-01 18:19:43 +0000350endif
351
Nico Huber2f753792023-03-28 00:46:50 +0200352# Try linux_mtd as internal programmer on all but x86
353ifeq ($(ARCH), x86)
354FEATURE_FLAGS += -D'LINUX_MTD_AS_INTERNAL=0'
355else
356FEATURE_FLAGS += -D'LINUX_MTD_AS_INTERNAL=1'
357endif
358
Thomas Heijligen0dfd6f62022-02-19 17:20:27 +0100359ifeq ($(HAS_SERIAL), no)
360$(call mark_unsupported, $(DEPENDS_ON_SERIAL))
361endif
362
Thomas Heijligend6d96c12021-10-12 16:47:43 +0200363ifeq ($(ENDIAN), little)
Nico Huberc3b02dc2023-08-12 01:13:45 +0200364FEATURE_FLAGS += -D'__FLASHPROG_LITTLE_ENDIAN__=1'
Thomas Heijligend6d96c12021-10-12 16:47:43 +0200365endif
366ifeq ($(ENDIAN), big)
Nico Huberc3b02dc2023-08-12 01:13:45 +0200367FEATURE_FLAGS += -D'__FLASHPROG_BIG_ENDIAN__=1'
Thomas Heijligend6d96c12021-10-12 16:47:43 +0200368endif
369
Stefan Taunerfb2d77c2015-02-10 08:03:10 +0000370# PCI port I/O support is unimplemented on PPC/MIPS/SPARC and unavailable on ARM.
David Hendricksb286da72012-02-13 00:35:35 +0000371# Right now this means the drivers below only work on x86.
372ifneq ($(ARCH), x86)
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100373$(call mark_unsupported,$(DEPENDS_ON_X86_MSR))
374$(call mark_unsupported,$(DEPENDS_ON_X86_PORT_IO))
Uwe Hermann21b10c62011-07-29 12:13:01 +0000375endif
376
Nico Huber8945b812021-06-27 14:24:53 +0200377# Additionally disable all drivers needing raw access (memory, PCI, port I/O)
378# on architectures with unknown raw access properties.
Carl-Daniel Hailfinger8d0d53f2016-02-25 20:10:26 +0000379# Right now those architectures are alpha hppa m68k sh s390
Anton Samsonove5313182022-08-04 11:48:23 +0300380ifneq ($(ARCH), $(filter $(ARCH), x86 mips ppc arm sparc arc e2k))
Thomas Heijligen96f68f72021-12-14 18:25:47 +0100381$(call mark_unsupported,$(DEPENDS_ON_RAW_MEM_ACCESS))
Carl-Daniel Hailfinger8d0d53f2016-02-25 20:10:26 +0000382endif
383
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000384###############################################################################
385# Flash chip drivers and bus support infrastructure.
386
Nico Huber0e76d992023-01-12 20:22:55 +0100387CHIP_OBJS = memory_bus.o jedec.o stm50.o w39.o w29ee011.o \
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000388 sst28sf040.o 82802ab.o \
Nico Huber8d0f4652024-05-04 18:52:51 +0200389 sst49lfxxxc.o sst_fwhub.o edi.o flashchips.o \
390 spi.o spi25.o spi25_prepare.o spi25_statusreg.o \
Nikolai Artemievc9feb1b2021-10-21 01:35:13 +1100391 spi95.o opaque.o sfdp.o en29lv640b.o at45db.o \
392 writeprotect.o writeprotect_ranges.o
Sean Nelson5d134642009-12-24 16:54:21 +0000393
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000394###############################################################################
395# Library code.
Sean Nelson5d134642009-12-24 16:54:21 +0000396
Nico Huberc3b02dc2023-08-12 01:13:45 +0200397LIB_OBJS = libflashprog.o layout.o flashprog.o udelay.o parallel.o programmer.o programmer_table.o \
Edward O'Callaghan4c76c732022-08-12 11:03:00 +1000398 helpers.o helpers_fileio.o ich_descriptors.o fmap.o platform/endian_$(ENDIAN).o platform/memaccess.o
Thomas Heijligen5618d5b2022-02-19 21:17:44 +0100399
Sean Nelson5d134642009-12-24 16:54:21 +0000400
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000401###############################################################################
402# Frontend related stuff.
Ollie Lho184a4042005-11-26 21:55:36 +0000403
Stefan Tauner9b32de92014-08-08 23:52:33 +0000404CLI_OBJS = cli_classic.o cli_output.o cli_common.o print.o
Ollie Lho184a4042005-11-26 21:55:36 +0000405
Nico Huberc152f532023-01-25 23:53:18 +0100406# By default version information will be fetched from Git if available.
407# Otherwise, versioninfo.inc stores the metadata required to build a
Nico Huberc3b02dc2023-08-12 01:13:45 +0200408# packaged flashprog. It is generated by the export, tag and branch rules.
Nico Huberc152f532023-01-25 23:53:18 +0100409VERSION := $(shell ./util/getversion.sh --version)
410MAN_DATE := $(shell ./util/getversion.sh --man-date)
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000411
Nico Huberc3b02dc2023-08-12 01:13:45 +0200412SCMDEF := -D'FLASHPROG_VERSION="$(VERSION)"'
Bernhard Walle201bde32008-01-21 15:24:22 +0000413
Stefan Tauner76347082016-11-27 17:45:49 +0100414# Inform user of the version string
Nico Huber26c2c4d2023-01-10 17:45:38 +0100415ifeq ($(filter branch tag,$(MAKECMDGOALS)), )
Stefan Tauner76347082016-11-27 17:45:49 +0100416$(info Replacing all version templates with $(VERSION).)
Nico Huber26c2c4d2023-01-10 17:45:38 +0100417endif
Stefan Taunerd5ff8452015-01-10 09:32:07 +0000418
Stefan Tauner037cd842013-08-25 00:10:56 +0000419###############################################################################
420# Default settings of CONFIG_* variables.
421
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000422# Always enable internal/onboard support for now.
423CONFIG_INTERNAL ?= yes
Thomas Heijligenb9d63d32022-01-21 13:54:15 +0100424CONFIG_INTERNAL_X86 ?= yes
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000425
Stefan Tauner52b6e9d2013-04-01 00:46:05 +0000426# Always enable serprog for now.
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000427CONFIG_SERPROG ?= yes
428
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000429# RayeR SPIPGM hardware support
430CONFIG_RAYER_SPI ?= yes
431
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000432# PonyProg2000 SPI hardware support
433CONFIG_PONY_SPI ?= yes
434
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000435# Always enable 3Com NICs for now.
436CONFIG_NIC3COM ?= yes
437
Carl-Daniel Hailfingerbf3af292010-07-29 14:41:46 +0000438# Enable NVIDIA graphics cards. Note: write and erase do not work properly.
439CONFIG_GFXNVIDIA ?= yes
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000440
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000441# Always enable SiI SATA controllers for now.
442CONFIG_SATASII ?= yes
443
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000444# Highpoint (HPT) ATA/RAID controller support.
445# IMPORTANT: This code is not yet working!
446CONFIG_ATAHPT ?= no
447
Jonathan Kollasch7f0f3fa2014-06-01 10:26:23 +0000448# VIA VT6421A LPC memory support
449CONFIG_ATAVIA ?= yes
450
Joseph C. Lehnerc2644a32016-01-16 23:45:25 +0000451# Promise ATA controller support.
452CONFIG_ATAPROMISE ?= no
453
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000454# Always enable FT2232 SPI dongles for now.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000455CONFIG_FT2232_SPI ?= yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000456
Nico Huber044c9dc2023-12-29 23:26:57 +0100457# Always enable FT4222 SPI dongles for now.
458CONFIG_FT4222_SPI ?= yes
459
James Lairdc60de0e2013-03-27 13:00:23 +0000460# Always enable Altera USB-Blaster dongles for now.
461CONFIG_USBBLASTER_SPI ?= yes
462
Alexandre Boeglin80e64712014-12-20 20:25:19 +0000463# MSTAR DDC support needs more tests/reviews/cleanups.
464CONFIG_MSTARDDC_SPI ?= no
465
Justin Chevrier66e554b2015-02-08 21:58:10 +0000466# Always enable PICkit2 SPI dongles for now.
467CONFIG_PICKIT2_SPI ?= yes
468
Miklós Márton324929c2019-08-01 19:14:10 +0200469# Always enable STLink V3
470CONFIG_STLINKV3_SPI ?= yes
471
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000472# Always enable dummy tracing for now.
473CONFIG_DUMMY ?= yes
474
475# Always enable Dr. Kaiser for now.
476CONFIG_DRKAISER ?= yes
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000477
Joerg Fischer5665ef32010-05-21 21:54:07 +0000478# Always enable Realtek NICs for now.
479CONFIG_NICREALTEK ?= yes
480
Andrew Morganc29c2e72010-06-07 22:37:54 +0000481# Disable National Semiconductor NICs until support is complete and tested.
482CONFIG_NICNATSEMI ?= no
483
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000484# Always enable Intel NICs for now.
485CONFIG_NICINTEL ?= yes
486
Idwer Vollering004f4b72010-09-03 18:21:21 +0000487# Always enable SPI on Intel NICs for now.
488CONFIG_NICINTEL_SPI ?= yes
489
Ricardo Ribalda Delgado2a41f0a2014-07-28 20:35:21 +0000490# Always enable EEPROM on Intel NICs for now.
491CONFIG_NICINTEL_EEPROM ?= yes
492
Mark Marshall90021f22010-12-03 14:48:11 +0000493# Always enable SPI on OGP cards for now.
494CONFIG_OGP_SPI ?= yes
495
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000496# Always enable Bus Pirate SPI for now.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000497CONFIG_BUSPIRATE_SPI ?= yes
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000498
Simon Glassae616512016-01-23 23:27:58 +0000499# Always enable Dediprog SF100 for now.
500CONFIG_DEDIPROG ?= yes
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000501
Daniel Thompson45e91a22018-06-04 13:46:29 +0100502# Always enable Developerbox emergency recovery for now.
503CONFIG_DEVELOPERBOX_SPI ?= yes
504
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000505# Always enable Marvell SATA controllers for now.
506CONFIG_SATAMV ?= yes
507
Steve Markgraf61899472023-01-09 23:06:52 +0100508# Enable Linux spidev, MTD and gpiod interfaces by default. We disable them on non-Linux targets.
David Hendricksf9a30552015-05-23 20:30:30 -0700509CONFIG_LINUX_MTD ?= yes
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000510CONFIG_LINUX_SPI ?= yes
Nico Huberaa5268d2023-03-09 17:15:23 +0100511CONFIG_LINUX_GPIO_SPI ?= yes
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000512
Kyösti Mälkki72d42f82014-06-01 23:48:31 +0000513# Always enable ITE IT8212F PATA controllers for now.
514CONFIG_IT8212 ?= yes
515
Urja Rannikko0870b022016-01-31 22:10:29 +0000516# Winchiphead CH341A
517CONFIG_CH341A_SPI ?= yes
518
Nicholas Chin197b7c72022-10-23 13:10:31 -0600519# Winchiphead CH347
520CONFIG_CH347_SPI ?= yes
521
Lubomir Rintelb2154e82018-01-14 17:35:33 +0100522# Digilent Development board JTAG
523CONFIG_DIGILENT_SPI ?= yes
524
Jean THOMASe28d8e42022-10-11 17:54:30 +0200525# DirtyJTAG
526CONFIG_DIRTYJTAG_SPI ?= yes
527
Nico Huber07dd1212023-03-04 16:36:28 +0100528# J-Link SPI
529CONFIG_JLINK_SPI ?= yes
Marc Schink3578ec62016-03-17 16:23:03 +0100530
Nico Huber83d52072021-06-27 00:07:13 +0200531# National Instruments USB-845x is Windows only and needs a proprietary library.
532CONFIG_NI845X_SPI ?= no
533
Carl-Daniel Hailfinger6161ff12009-11-16 21:22:24 +0000534# Disable wiki printing by default. It is only useful if you have wiki access.
Uwe Hermann2db77a02010-06-04 17:07:39 +0000535CONFIG_PRINT_WIKI ?= no
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000536
Stefan Taunerf3503372016-02-26 23:51:21 +0000537# Disable all features if CONFIG_NOTHING=yes is given unless CONFIG_EVERYTHING was also set
538ifeq ($(CONFIG_NOTHING), yes)
539 ifeq ($(CONFIG_EVERYTHING), yes)
540 $(error Setting CONFIG_NOTHING=yes and CONFIG_EVERYTHING=yes does not make sense)
541 endif
542 $(foreach var, $(filter CONFIG_%, $(.VARIABLES)),\
543 $(if $(filter yes, $($(var))),\
544 $(eval $(var)=no)))
545endif
546
Patrick Georgiced7ab62015-01-19 19:52:34 +0000547# Enable all features if CONFIG_EVERYTHING=yes is given
548ifeq ($(CONFIG_EVERYTHING), yes)
549$(foreach var, $(filter CONFIG_%, $(.VARIABLES)),\
550 $(if $(filter no, $($(var))),\
551 $(eval $(var)=yes)))
552endif
553
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000554###############################################################################
Sean Nelson4c6d3a42013-09-11 23:35:03 +0000555# Handle CONFIG_* variables that depend on others set (and verified) above.
556
557# The external DMI decoder (dmidecode) does not work in libpayload. Bail out if the internal one got disabled.
558ifeq ($(TARGET_OS), libpayload)
559ifeq ($(CONFIG_INTERNAL), yes)
560ifeq ($(CONFIG_INTERNAL_DMI), no)
561UNSUPPORTED_FEATURES += CONFIG_INTERNAL_DMI=no
562else
563override CONFIG_INTERNAL_DMI = yes
564endif
565endif
566endif
567
568# Use internal DMI/SMBIOS decoder by default instead of relying on dmidecode.
569CONFIG_INTERNAL_DMI ?= yes
570
571###############################################################################
Nico Huberda5daed2023-03-04 16:33:35 +0100572# Check for missing dependencies for the selected CONFIG_* variables
573
574ifeq ($(HAS_LIBPCI), no)
575$(call mark_missing_dep,libpci,$(DEPENDS_ON_LIBPCI), \
576 "You can disable all PCI programmers with CONFIG_ENABLE_LIBPCI_PROGRAMMERS=no.\n")
577endif
578
579ifeq ($(HAS_LIBFTDI1), no)
580$(call mark_missing_dep,libftdi1,$(DEPENDS_ON_LIBFTDI1))
581endif
582
583ifeq ($(HAS_LIB_NI845X), no)
584$(call mark_missing_dep,libni845x,$(DEPENDS_ON_LIB_NI845X))
585endif
586
587ifeq ($(HAS_LIBJAYLINK), no)
588$(call mark_missing_dep,libjaylink,$(DEPENDS_ON_LIBJAYLINK))
589endif
590
591ifeq ($(HAS_LIBUSB1), no)
592$(call mark_missing_dep,libusb1/libusbx,$(DEPENDS_ON_LIBUSB1), \
593 "You can disable all USB programmers with CONFIG_ENABLE_LIBUSB1_PROGRAMMERS=no.\n");
594endif
595
596ifeq ($(HAS_LIBGPIOD), no)
597$(call mark_missing_dep,libgpiod,$(DEPENDS_ON_LIBGPIOD))
598endif
599
600###############################################################################
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000601# Programmer drivers and programmer support infrastructure.
Stefan Tauner037cd842013-08-25 00:10:56 +0000602# Depending on the CONFIG_* variables set and verified above we set compiler flags and parameters below.
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000603
Thomas Heijligen84e9c912021-06-01 16:22:14 +0200604ifdef CONFIG_DEFAULT_PROGRAMMER_NAME
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100605FEATURE_FLAGS += -D'CONFIG_DEFAULT_PROGRAMMER_NAME=&programmer_$(CONFIG_DEFAULT_PROGRAMMER_NAME)'
Thomas Heijligen84e9c912021-06-01 16:22:14 +0200606else
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100607FEATURE_FLAGS += -D'CONFIG_DEFAULT_PROGRAMMER_NAME=NULL'
Thomas Heijligen84e9c912021-06-01 16:22:14 +0200608endif
609
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100610FEATURE_FLAGS += -D'CONFIG_DEFAULT_PROGRAMMER_ARGS="$(CONFIG_DEFAULT_PROGRAMMER_ARGS)"'
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000611
Thomas Heijligenb9d63d32022-01-21 13:54:15 +0100612################################################################################
613
614ifeq ($(ARCH), x86)
615ifeq ($(CONFIG_INTERNAL) $(CONFIG_INTERNAL_X86), yes yes)
616FEATURE_FLAGS += -D'CONFIG_INTERNAL=1'
617PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o \
Nico Huber735b1862023-01-29 18:28:45 +0000618 internal.o it87spi.o sb600spi.o amd_imc.o amd_spi100.o wbsio_spi.o mcp6x_spi.o \
Edward O'Callaghanf2a1e072022-08-15 11:14:50 +1000619 ichspi.o dmi.o known_boards.o
Thomas Heijligenb9d63d32022-01-21 13:54:15 +0100620endif
621else
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000622ifeq ($(CONFIG_INTERNAL), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100623FEATURE_FLAGS += -D'CONFIG_INTERNAL=1'
Edward O'Callaghanf2a1e072022-08-15 11:14:50 +1000624PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o internal.o known_boards.o
Thomas Heijligenb9d63d32022-01-21 13:54:15 +0100625endif
626endif
627
Sean Nelson4c6d3a42013-09-11 23:35:03 +0000628ifeq ($(CONFIG_INTERNAL_DMI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100629FEATURE_FLAGS += -D'CONFIG_INTERNAL_DMI=1'
Sean Nelson4c6d3a42013-09-11 23:35:03 +0000630endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000631
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000632ifeq ($(CONFIG_SERPROG), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100633FEATURE_FLAGS += -D'CONFIG_SERPROG=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000634PROGRAMMER_OBJS += serprog.o
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000635endif
636
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000637ifeq ($(CONFIG_RAYER_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100638FEATURE_FLAGS += -D'CONFIG_RAYER_SPI=1'
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000639PROGRAMMER_OBJS += rayer_spi.o
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000640endif
641
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000642ifeq ($(CONFIG_PONY_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100643FEATURE_FLAGS += -D'CONFIG_PONY_SPI=1'
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000644PROGRAMMER_OBJS += pony_spi.o
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000645endif
646
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000647ifeq ($(CONFIG_NIC3COM), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100648FEATURE_FLAGS += -D'CONFIG_NIC3COM=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000649PROGRAMMER_OBJS += nic3com.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000650endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000651
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000652ifeq ($(CONFIG_GFXNVIDIA), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100653FEATURE_FLAGS += -D'CONFIG_GFXNVIDIA=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000654PROGRAMMER_OBJS += gfxnvidia.o
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000655endif
656
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000657ifeq ($(CONFIG_SATASII), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100658FEATURE_FLAGS += -D'CONFIG_SATASII=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000659PROGRAMMER_OBJS += satasii.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000660endif
661
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000662ifeq ($(CONFIG_ATAHPT), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100663FEATURE_FLAGS += -D'CONFIG_ATAHPT=1'
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000664PROGRAMMER_OBJS += atahpt.o
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000665endif
666
Jonathan Kollasch7f0f3fa2014-06-01 10:26:23 +0000667ifeq ($(CONFIG_ATAVIA), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100668FEATURE_FLAGS += -D'CONFIG_ATAVIA=1'
Jonathan Kollasch7f0f3fa2014-06-01 10:26:23 +0000669PROGRAMMER_OBJS += atavia.o
Jonathan Kollasch7f0f3fa2014-06-01 10:26:23 +0000670endif
671
Joseph C. Lehnerc2644a32016-01-16 23:45:25 +0000672ifeq ($(CONFIG_ATAPROMISE), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100673FEATURE_FLAGS += -D'CONFIG_ATAPROMISE=1'
Joseph C. Lehnerc2644a32016-01-16 23:45:25 +0000674PROGRAMMER_OBJS += atapromise.o
Joseph C. Lehnerc2644a32016-01-16 23:45:25 +0000675endif
676
Kyösti Mälkki72d42f82014-06-01 23:48:31 +0000677ifeq ($(CONFIG_IT8212), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100678FEATURE_FLAGS += -D'CONFIG_IT8212=1'
Kyösti Mälkki72d42f82014-06-01 23:48:31 +0000679PROGRAMMER_OBJS += it8212.o
Kyösti Mälkki72d42f82014-06-01 23:48:31 +0000680endif
681
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000682ifeq ($(CONFIG_FT2232_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100683FEATURE_FLAGS += -D'CONFIG_FT2232_SPI=1'
James Lairdc60de0e2013-03-27 13:00:23 +0000684PROGRAMMER_OBJS += ft2232_spi.o
685endif
686
Nico Huber044c9dc2023-12-29 23:26:57 +0100687ifeq ($(CONFIG_FT4222_SPI), yes)
688FEATURE_FLAGS += -D'CONFIG_FT4222_SPI=1'
689PROGRAMMER_OBJS += ft4222_spi.o
690endif
691
James Lairdc60de0e2013-03-27 13:00:23 +0000692ifeq ($(CONFIG_USBBLASTER_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100693FEATURE_FLAGS += -D'CONFIG_USBBLASTER_SPI=1'
James Lairdc60de0e2013-03-27 13:00:23 +0000694PROGRAMMER_OBJS += usbblaster_spi.o
695endif
696
Justin Chevrier66e554b2015-02-08 21:58:10 +0000697ifeq ($(CONFIG_PICKIT2_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100698FEATURE_FLAGS += -D'CONFIG_PICKIT2_SPI=1'
Justin Chevrier66e554b2015-02-08 21:58:10 +0000699PROGRAMMER_OBJS += pickit2_spi.o
Justin Chevrier66e554b2015-02-08 21:58:10 +0000700endif
701
Miklós Márton324929c2019-08-01 19:14:10 +0200702ifeq ($(CONFIG_STLINKV3_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100703FEATURE_FLAGS += -D'CONFIG_STLINKV3_SPI=1'
Miklós Márton324929c2019-08-01 19:14:10 +0200704PROGRAMMER_OBJS += stlinkv3_spi.o
Miklós Márton324929c2019-08-01 19:14:10 +0200705endif
706
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000707ifeq ($(CONFIG_DUMMY), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100708FEATURE_FLAGS += -D'CONFIG_DUMMY=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000709PROGRAMMER_OBJS += dummyflasher.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000710endif
711
712ifeq ($(CONFIG_DRKAISER), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100713FEATURE_FLAGS += -D'CONFIG_DRKAISER=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000714PROGRAMMER_OBJS += drkaiser.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000715endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000716
Joerg Fischer5665ef32010-05-21 21:54:07 +0000717ifeq ($(CONFIG_NICREALTEK), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100718FEATURE_FLAGS += -D'CONFIG_NICREALTEK=1'
Joerg Fischer5665ef32010-05-21 21:54:07 +0000719PROGRAMMER_OBJS += nicrealtek.o
Joerg Fischer5665ef32010-05-21 21:54:07 +0000720endif
721
Andrew Morganc29c2e72010-06-07 22:37:54 +0000722ifeq ($(CONFIG_NICNATSEMI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100723FEATURE_FLAGS += -D'CONFIG_NICNATSEMI=1'
Andrew Morganc29c2e72010-06-07 22:37:54 +0000724PROGRAMMER_OBJS += nicnatsemi.o
Andrew Morganc29c2e72010-06-07 22:37:54 +0000725endif
726
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000727ifeq ($(CONFIG_NICINTEL), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100728FEATURE_FLAGS += -D'CONFIG_NICINTEL=1'
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000729PROGRAMMER_OBJS += nicintel.o
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000730endif
731
Idwer Vollering004f4b72010-09-03 18:21:21 +0000732ifeq ($(CONFIG_NICINTEL_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100733FEATURE_FLAGS += -D'CONFIG_NICINTEL_SPI=1'
Idwer Vollering004f4b72010-09-03 18:21:21 +0000734PROGRAMMER_OBJS += nicintel_spi.o
Idwer Vollering004f4b72010-09-03 18:21:21 +0000735endif
736
Ricardo Ribalda Delgado2a41f0a2014-07-28 20:35:21 +0000737ifeq ($(CONFIG_NICINTEL_EEPROM), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100738FEATURE_FLAGS += -D'CONFIG_NICINTEL_EEPROM=1'
Ricardo Ribalda Delgado2a41f0a2014-07-28 20:35:21 +0000739PROGRAMMER_OBJS += nicintel_eeprom.o
Ricardo Ribalda Delgado2a41f0a2014-07-28 20:35:21 +0000740endif
741
Mark Marshall90021f22010-12-03 14:48:11 +0000742ifeq ($(CONFIG_OGP_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100743FEATURE_FLAGS += -D'CONFIG_OGP_SPI=1'
Mark Marshall90021f22010-12-03 14:48:11 +0000744PROGRAMMER_OBJS += ogp_spi.o
Mark Marshall90021f22010-12-03 14:48:11 +0000745endif
746
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000747ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100748FEATURE_FLAGS += -D'CONFIG_BUSPIRATE_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000749PROGRAMMER_OBJS += buspirate_spi.o
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000750endif
751
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000752ifeq ($(CONFIG_DEDIPROG), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100753FEATURE_FLAGS += -D'CONFIG_DEDIPROG=1'
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000754PROGRAMMER_OBJS += dediprog.o
755endif
756
Daniel Thompson45e91a22018-06-04 13:46:29 +0100757ifeq ($(CONFIG_DEVELOPERBOX_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100758FEATURE_FLAGS += -D'CONFIG_DEVELOPERBOX_SPI=1'
Daniel Thompson45e91a22018-06-04 13:46:29 +0100759PROGRAMMER_OBJS += developerbox_spi.o
Daniel Thompson45e91a22018-06-04 13:46:29 +0100760endif
761
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000762ifeq ($(CONFIG_SATAMV), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100763FEATURE_FLAGS += -D'CONFIG_SATAMV=1'
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000764PROGRAMMER_OBJS += satamv.o
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000765endif
766
David Hendricksf9a30552015-05-23 20:30:30 -0700767ifeq ($(CONFIG_LINUX_MTD), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100768FEATURE_FLAGS += -D'CONFIG_LINUX_MTD=1'
David Hendricksf9a30552015-05-23 20:30:30 -0700769PROGRAMMER_OBJS += linux_mtd.o
770endif
771
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000772ifeq ($(CONFIG_LINUX_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100773FEATURE_FLAGS += -D'CONFIG_LINUX_SPI=1'
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000774PROGRAMMER_OBJS += linux_spi.o
775endif
776
Nico Huberaa5268d2023-03-09 17:15:23 +0100777ifeq ($(CONFIG_LINUX_GPIO_SPI), yes)
778FEATURE_FLAGS += -D'CONFIG_LINUX_GPIO_SPI=1'
Nico Huber8d2c0df2024-01-14 23:39:40 +0100779ifneq ($(filter 1.%,$(CONFIG_LIBGPIOD_VERSION)), )
Steve Markgraf61899472023-01-09 23:06:52 +0100780PROGRAMMER_OBJS += linux_gpio_spi.o
Nico Huber8d2c0df2024-01-14 23:39:40 +0100781else
782PROGRAMMER_OBJS += linux_gpio2_spi.o
783endif
Steve Markgraf61899472023-01-09 23:06:52 +0100784endif
785
Alexandre Boeglin80e64712014-12-20 20:25:19 +0000786ifeq ($(CONFIG_MSTARDDC_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100787FEATURE_FLAGS += -D'CONFIG_MSTARDDC_SPI=1'
Alexandre Boeglin80e64712014-12-20 20:25:19 +0000788PROGRAMMER_OBJS += mstarddc_spi.o
789endif
790
Urja Rannikko0870b022016-01-31 22:10:29 +0000791ifeq ($(CONFIG_CH341A_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100792FEATURE_FLAGS += -D'CONFIG_CH341A_SPI=1'
Urja Rannikko0870b022016-01-31 22:10:29 +0000793PROGRAMMER_OBJS += ch341a_spi.o
Urja Rannikko0870b022016-01-31 22:10:29 +0000794endif
795
Nicholas Chin197b7c72022-10-23 13:10:31 -0600796ifeq ($(CONFIG_CH347_SPI), yes)
797FEATURE_FLAGS += -D'CONFIG_CH347_SPI=1'
798PROGRAMMER_OBJS += ch347_spi.o
799endif
800
Lubomir Rintelb2154e82018-01-14 17:35:33 +0100801ifeq ($(CONFIG_DIGILENT_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100802FEATURE_FLAGS += -D'CONFIG_DIGILENT_SPI=1'
Lubomir Rintelb2154e82018-01-14 17:35:33 +0100803PROGRAMMER_OBJS += digilent_spi.o
Lubomir Rintelb2154e82018-01-14 17:35:33 +0100804endif
805
Jean THOMASe28d8e42022-10-11 17:54:30 +0200806ifeq ($(CONFIG_DIRTYJTAG_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100807FEATURE_FLAGS += -D'CONFIG_DIRTYJTAG_SPI=1'
Jean THOMASe28d8e42022-10-11 17:54:30 +0200808PROGRAMMER_OBJS += dirtyjtag_spi.o
809endif
810
Marc Schink3578ec62016-03-17 16:23:03 +0100811ifeq ($(CONFIG_JLINK_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100812FEATURE_FLAGS += -D'CONFIG_JLINK_SPI=1'
Marc Schink3578ec62016-03-17 16:23:03 +0100813PROGRAMMER_OBJS += jlink_spi.o
814endif
815
Miklós Márton2d20d6d2018-01-30 20:20:15 +0100816ifeq ($(CONFIG_NI845X_SPI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100817FEATURE_FLAGS += -D'CONFIG_NI845X_SPI=1'
Miklós Márton2d20d6d2018-01-30 20:20:15 +0100818PROGRAMMER_OBJS += ni845x_spi.o
819endif
820
Thomas Heijligen758dc862022-04-27 10:16:04 +0200821USE_BITBANG_SPI := $(if $(call filter_deps,$(DEPENDS_ON_BITBANG_SPI)),yes,no)
822ifeq ($(USE_BITBANG_SPI), yes)
823LIB_OBJS += bitbang_spi.o
824endif
825
Thomas Heijligen0dfd6f62022-02-19 17:20:27 +0100826USE_SERIAL := $(if $(call filter_deps,$(DEPENDS_ON_SERIAL)),yes,no)
827ifeq ($(USE_SERIAL), yes)
Thomas Heijligen140c1262021-09-27 15:12:26 +0200828LIB_OBJS += serial.o
829ifeq ($(TARGET_OS), Linux)
830LIB_OBJS += custom_baud_linux.o
831else
Peter Stugeb8ee2d62022-12-11 16:20:16 +0100832ifeq ($(TARGET_OS), Darwin)
833LIB_OBJS += custom_baud_darwin.o
834else
Thomas Heijligen140c1262021-09-27 15:12:26 +0200835LIB_OBJS += custom_baud.o
836endif
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000837endif
Peter Stugeb8ee2d62022-12-11 16:20:16 +0100838endif
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000839
Thomas Heijligen0dfd6f62022-02-19 17:20:27 +0100840USE_SOCKETS := $(if $(call filter_deps,$(DEPENDS_ON_SOCKETS)),yes,no)
841ifeq ($(USE_SOCKETS), yes)
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000842ifeq ($(TARGET_OS), SunOS)
Thomas Heijligenc0c783a2021-11-09 17:02:47 +0100843override LDFLAGS += -lsocket -lnsl
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000844endif
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +0000845endif
846
Thomas Heijligenebb55092021-12-23 16:55:16 +0100847USE_X86_MSR := $(if $(call filter_deps,$(DEPENDS_ON_X86_MSR)),yes,no)
848ifeq ($(USE_X86_MSR), yes)
849PROGRAMMER_OBJS += hwaccess_x86_msr.o
850endif
Carl-Daniel Hailfinger16c0aec2016-02-20 21:43:56 +0000851
Thomas Heijligenebb55092021-12-23 16:55:16 +0100852USE_X86_PORT_IO := $(if $(call filter_deps,$(DEPENDS_ON_X86_PORT_IO)),yes,no)
853ifeq ($(USE_X86_PORT_IO), yes)
Nico Huberc3b02dc2023-08-12 01:13:45 +0200854FEATURE_FLAGS += -D'__FLASHPROG_HAVE_OUTB__=1'
Thomas Heijligenebb55092021-12-23 16:55:16 +0100855PROGRAMMER_OBJS += hwaccess_x86_io.o
Thomas Heijligena0655202021-12-14 16:36:05 +0100856endif
857
Thomas Heijligenebb55092021-12-23 16:55:16 +0100858USE_RAW_MEM_ACCESS := $(if $(call filter_deps,$(DEPENDS_ON_RAW_MEM_ACCESS)),yes,no)
859ifeq ($(USE_RAW_MEM_ACCESS), yes)
860PROGRAMMER_OBJS += hwaccess_physmap.o
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +0000861endif
Thomas Heijligenebb55092021-12-23 16:55:16 +0100862
863ifeq (Darwin yes, $(TARGET_OS) $(filter $(USE_X86_MSR) $(USE_X86_PORT_IO) $(USE_RAW_MEM_ACCESS), yes))
864override LDFLAGS += -framework IOKit -framework DirectHW
865endif
866
867ifeq (NetBSD yes, $(TARGET_OS) $(filter $(USE_X86_MSR) $(USE_X86_PORT_IO), yes))
868override LDFLAGS += -l$(shell uname -p)
869endif
870
871ifeq (OpenBSD yes, $(TARGET_OS) $(filter $(USE_X86_MSR) $(USE_X86_PORT_IO), yes))
872override LDFLAGS += -l$(shell uname -m)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000873endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000874
Thomas Heijligen4d700b92021-11-05 12:28:06 +0100875USE_LIBPCI := $(if $(call filter_deps,$(DEPENDS_ON_LIBPCI)),yes,no)
876ifeq ($(USE_LIBPCI), yes)
877PROGRAMMER_OBJS += pcidev.o
Thomas Heijligen4d700b92021-11-05 12:28:06 +0100878override CFLAGS += $(CONFIG_LIBPCI_CFLAGS)
879override LDFLAGS += $(CONFIG_LIBPCI_LDFLAGS)
880endif
881
Thomas Heijligenb7c6a662021-11-05 10:47:40 +0100882USE_LIBUSB1 := $(if $(call filter_deps,$(DEPENDS_ON_LIBUSB1)),yes,no)
883ifeq ($(USE_LIBUSB1), yes)
884override CFLAGS += $(CONFIG_LIBUSB1_CFLAGS)
885override LDFLAGS += $(CONFIG_LIBUSB1_LDFLAGS)
Daniel Thompson1d507a02018-07-12 11:02:28 +0100886PROGRAMMER_OBJS += usbdev.o
Stefan Taunere49edbb2016-01-31 22:10:14 +0000887endif
888
Thomas Heijligen121a5b82021-10-21 12:58:07 +0200889USE_LIBFTDI1 := $(if $(call filter_deps,$(DEPENDS_ON_LIBFTDI1)),yes,no)
890ifeq ($(USE_LIBFTDI1), yes)
891override CFLAGS += $(CONFIG_LIBFTDI1_CFLAGS)
892override LDFLAGS += $(CONFIG_LIBFTDI1_LDFLAGS)
893ifeq ($(HAS_FT232H), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100894FEATURE_FLAGS += -D'HAVE_FT232H=1'
Thomas Heijligen121a5b82021-10-21 12:58:07 +0200895endif
Nico Huber09e82e22021-06-27 14:31:37 +0200896endif
897
Steve Markgraf61899472023-01-09 23:06:52 +0100898USE_LIBGPIOD := $(if $(call filter_deps,$(DEPENDS_ON_LIBGPIOD)),yes,no)
899ifeq ($(USE_LIBGPIOD), yes)
900override CFLAGS += $(CONFIG_LIBGPIOD_CFLAGS)
901override LDFLAGS += $(CONFIG_LIBGPIOD_LDFLAGS)
902endif
903
Thomas Heijligenff63acd2021-11-05 10:19:42 +0100904USE_LIB_NI845X := $(if $(call filter_deps,$(DEPENDS_ON_LIB_NI845X)),yes,no)
905ifeq ($(USE_LIB_NI845X), yes)
906override CFLAGS += $(CONFIG_LIB_NI845X_CFLAGS)
907override LDFLAGS += $(CONFIG_LIB_NI845X_LDFLAGS)
908endif
909
Thomas Heijligen4dca8992021-11-05 10:34:31 +0100910USE_LIBJAYLINK := $(if $(call filter_deps,$(DEPENDS_ON_LIBJAYLINK)),yes,no)
911ifeq ($(USE_LIBJAYLINK), yes)
912override CFLAGS += $(CONFIG_LIBJAYLINK_CFLAGS)
913override LDFLAGS += $(CONFIG_LIBJAYLINK_LDFLAGS)
Marc Schink3578ec62016-03-17 16:23:03 +0100914endif
915
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000916ifeq ($(CONFIG_PRINT_WIKI), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100917FEATURE_FLAGS += -D'CONFIG_PRINT_WIKI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000918CLI_OBJS += print_wiki.o
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000919endif
920
Thomas Heijligen457020a2021-10-26 12:44:36 +0200921ifeq ($(HAS_UTSNAME), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100922FEATURE_FLAGS += -D'HAVE_UTSNAME=1'
Thomas Heijligen457020a2021-10-26 12:44:36 +0200923endif
924
925ifeq ($(HAS_CLOCK_GETTIME), yes)
Thomas Heijligen6b0f9ed2021-11-10 21:23:49 +0100926FEATURE_FLAGS += -D'HAVE_CLOCK_GETTIME=1'
Thomas Heijligen9138e3f2022-01-31 23:49:44 +0100927ifeq ($(HAS_EXTERN_LIBRT), yes)
Thomas Heijligenc0c783a2021-11-09 17:02:47 +0100928override LDFLAGS += -lrt
Thomas Heijligen457020a2021-10-26 12:44:36 +0200929endif
Thomas Heijligen9138e3f2022-01-31 23:49:44 +0100930endif
Nico Huber8624e8c2012-11-05 21:46:33 +0100931
Thomas Heijligen33ff32a2022-02-19 17:47:14 +0100932OBJS = $(CHIP_OBJS) $(PROGRAMMER_OBJS) $(LIB_OBJS)
933
Sean Nelson5d134642009-12-24 16:54:21 +0000934
Thomas Heijligen306f38e2021-12-09 17:52:23 +0100935all: $(PROGRAM)$(EXEC_SUFFIX) $(PROGRAM).8
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000936ifeq ($(ARCH), x86)
Thomas Heijligen3976b7e2021-10-20 15:55:35 +0200937 @+$(MAKE) -C util/ich_descriptors_tool/ HOST_OS=$(HOST_OS) TARGET_OS=$(TARGET_OS)
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000938endif
939
Thomas Heijligen306f38e2021-12-09 17:52:23 +0100940config:
Nico Huberc3b02dc2023-08-12 01:13:45 +0200941 @echo Building flashprog version $(VERSION)
Thomas Heijligen323ad352021-10-26 11:26:32 +0200942 @echo -n "C compiler found: "
943 @if [ $(CC_WORKING) = yes ]; \
944 then $(CC) --version 2>/dev/null | head -1; \
945 else echo no; echo Aborting.; exit 1; fi
Thomas Heijligen8cd366d2021-10-26 12:02:52 +0200946 @echo "Target arch: $(ARCH)"
Thomas Heijligen6efdfb32021-10-12 15:16:46 +0200947 @if [ $(ARCH) = unknown ]; then echo Aborting.; exit 1; fi
Thomas Heijligen8cd366d2021-10-26 12:02:52 +0200948 @echo "Target OS: $(TARGET_OS)"
Thomas Heijligen1e76dc82021-09-28 15:22:34 +0200949 @if [ $(TARGET_OS) = unknown ]; then echo Aborting.; exit 1; fi
Thomas Heijligen8cd366d2021-10-26 12:02:52 +0200950 @if [ $(TARGET_OS) = libpayload ] && ! $(CC) --version 2>&1 | grep -q coreboot; then \
951 echo " Warning: It seems you are not using coreboot's reference compiler."; \
952 echo " This might work but usually does not, please beware."; fi
953 @echo "Target endian: $(ENDIAN)"
Thomas Heijligen9a2787b2021-10-12 15:54:06 +0200954 @if [ $(ENDIAN) = unknown ]; then echo Aborting.; exit 1; fi
Thomas Heijligen7a9daa02022-08-12 19:52:23 +0200955 @echo Dependency libpci found: $(HAS_LIBPCI) $(CONFIG_LIBPCI_VERSION)
Thomas Heijligen4d700b92021-11-05 12:28:06 +0100956 @if [ $(HAS_LIBPCI) = yes ]; then \
957 echo " Checking for old \"pci_get_dev()\": $(HAS_PCI_OLD_GET_DEV)";\
958 echo " CFLAGS: $(CONFIG_LIBPCI_CFLAGS)"; \
959 echo " LDFLAGS: $(CONFIG_LIBPCI_LDFLAGS)"; \
960 fi
Thomas Heijligen7a9daa02022-08-12 19:52:23 +0200961 @echo Dependency libusb1 found: $(HAS_LIBUSB1) $(CONFIG_LIBUSB1_VERSION)
Thomas Heijligenb7c6a662021-11-05 10:47:40 +0100962 @if [ $(HAS_LIBUSB1) = yes ]; then \
963 echo " CFLAGS: $(CONFIG_LIBUSB1_CFLAGS)"; \
964 echo " LDFLAGS: $(CONFIG_LIBUSB1_LDFLAGS)"; \
965 fi
Thomas Heijligen7a9daa02022-08-12 19:52:23 +0200966 @echo Dependency libjaylink found: $(HAS_LIBJAYLINK) $(CONFIG_LIBJAYLINK_VERSION)
Thomas Heijligen4dca8992021-11-05 10:34:31 +0100967 @if [ $(HAS_LIBJAYLINK) = yes ]; then \
968 echo " CFLAGS: $(CONFIG_LIBJAYLINK_CFLAGS)"; \
969 echo " LDFLAGS: $(CONFIG_LIBJAYLINK_LDFLAGS)"; \
970 fi
Thomas Heijligenff63acd2021-11-05 10:19:42 +0100971 @echo Dependency NI-845x found: $(HAS_LIB_NI845X)
972 @if [ $(HAS_LIB_NI845X) = yes ]; then \
973 echo " CFLAGS: $(CONFIG_LIB_NI845X_CFLAGS)"; \
974 echo " LDFLAGS: $(CONFIG_LIB_NI845X_LDFLAGS)"; \
975 fi
Thomas Heijligen7a9daa02022-08-12 19:52:23 +0200976 @echo Dependency libftdi1 found: $(HAS_LIBFTDI1) $(CONFIG_LIBFTDI1_VERSION)
Thomas Heijligen121a5b82021-10-21 12:58:07 +0200977 @if [ $(HAS_LIBFTDI1) = yes ]; then \
978 echo " Checking for \"TYPE_232H\" in \"enum ftdi_chip_type\": $(HAS_FT232H)"; \
979 echo " CFLAGS: $(CONFIG_LIBFTDI1_CFLAGS)"; \
980 echo " LDFLAGS: $(CONFIG_LIBFTDI1_LDFLAGS)"; \
981 fi
Steve Markgraf61899472023-01-09 23:06:52 +0100982 @echo Dependency libgpiod found: $(HAS_LIBGPIOD) $(CONFIG_LIBGPIOD_VERSION)
983 @if [ $(HAS_LIBGPIOD) = yes ]; then \
984 echo " CFLAGS: $(CONFIG_LIBGPIOD_CFLAGS)"; \
985 echo " LDFLAGS: $(CONFIG_LIBGPIOD_LDFLAGS)"; \
986 fi
Thomas Heijligen142a6232022-01-06 10:56:35 +0100987 @echo "Checking for header \"mtd/mtd-user.h\": $(HAS_LINUX_MTD)"
988 @echo "Checking for header \"linux/spi/spidev.h\": $(HAS_LINUX_SPI)"
989 @echo "Checking for header \"linux/i2c-dev.h\": $(HAS_LINUX_I2C)"
990 @echo "Checking for header \"linux/i2c.h\": $(HAS_LINUX_I2C)"
991 @echo "Checking for header \"sys/utsname.h\": $(HAS_UTSNAME)"
992 @echo "Checking for function \"clock_gettime\": $(HAS_CLOCK_GETTIME)"
Thomas Heijligen9138e3f2022-01-31 23:49:44 +0100993 @echo "Checking for external \"librt\": $(HAS_EXTERN_LIBRT)"
Thomas Heijligen306f38e2021-12-09 17:52:23 +0100994 @if ! [ "$(PROGRAMMER_OBJS)" ]; then \
995 echo "You have to enable at least one programmer driver!"; \
996 exit 1; \
997 fi
Nico Huberaded7cc2023-03-04 16:06:11 +0100998 @$(foreach dep,$(MISSING_DEPENDENCY), \
999 printf "The following features require $(dep): "; \
1000 printf "$(MISSING_DEPENDENCY_$(dep))\n"; \
1001 printf $(MISSING_DEPENDENCY_NOTE_$(dep));)
Thomas Heijligen306f38e2021-12-09 17:52:23 +01001002 @if [ "$(UNSUPPORTED_FEATURES)" ]; then \
Nico Huber054c0b52023-03-04 15:29:24 +01001003 echo "The following features are unavailable on your machine: $(UNSUPPORTED_FEATURES)"; \
Nico Huberaded7cc2023-03-04 16:06:11 +01001004 fi
1005 @if [ "$(MISSING_DEPENDENCY)" -o "$(UNSUPPORTED_FEATURES)" ]; then \
1006 printf "You can disable individual features with "; \
1007 printf "CONFIG_feature=no in your make command.\n"; \
Thomas Heijligen306f38e2021-12-09 17:52:23 +01001008 exit 1; \
1009 fi
Thomas Heijligen142a6232022-01-06 10:56:35 +01001010
Thomas Heijligen306f38e2021-12-09 17:52:23 +01001011%.o: %.c | config
Nico Huberc3b02dc2023-08-12 01:13:45 +02001012 $(CC) -MMD $(CFLAGS) $(CPPFLAGS) $(FLASHPROG_CFLAGS) $(FEATURE_FLAGS) $(SCMDEF) -o $@ -c $<
Thomas Heijligen142a6232022-01-06 10:56:35 +01001013
Nico Huberc3b02dc2023-08-12 01:13:45 +02001014$(PROGRAM)$(EXEC_SUFFIX): $(CLI_OBJS) libflashprog.a
Thomas Heijligen33ff32a2022-02-19 17:47:14 +01001015 $(CC) -o $@ $^ $(LDFLAGS)
Thomas Heijligen142a6232022-01-06 10:56:35 +01001016
Nico Huberc3b02dc2023-08-12 01:13:45 +02001017libflashprog.a: $(OBJS)
Thomas Heijligen142a6232022-01-06 10:56:35 +01001018 $(AR) rcs $@ $^
1019 $(RANLIB) $@
Paul Fox05dfbe62009-06-16 21:08:06 +00001020
Stefan Tauner4c723152016-01-14 22:47:55 +00001021$(PROGRAM).8.html: $(PROGRAM).8
1022 @groff -mandoc -Thtml $< >$@
1023
Joerg Mayera93d9dc2013-08-29 00:38:19 +00001024$(PROGRAM).8: $(PROGRAM).8.tmpl
Stefan Tauner4c723152016-01-14 22:47:55 +00001025 @# Add the man page change date and version to the man page
Nico Huberc3b02dc2023-08-12 01:13:45 +02001026 @sed -e 's#.TH FLASHPROG 8 .*#.TH FLASHPROG 8 "$(MAN_DATE)" "flashprog-$(VERSION)" "$(MAN_DATE)"#' <$< >$@
Joerg Mayera93d9dc2013-08-29 00:38:19 +00001027
Thomas Heijligen142a6232022-01-06 10:56:35 +01001028strip: $(PROGRAM)$(EXEC_SUFFIX)
1029 $(STRIP) $(STRIP_ARGS) $(PROGRAM)$(EXEC_SUFFIX)
1030
1031# Make sure to add all names of generated binaries here.
Nico Huberc3b02dc2023-08-12 01:13:45 +02001032# This includes all frontends and libflashprog.
Thomas Heijligen142a6232022-01-06 10:56:35 +01001033# We don't use EXEC_SUFFIX here because we want to clean everything.
1034clean:
Nico Huberc3b02dc2023-08-12 01:13:45 +02001035 rm -f $(PROGRAM) $(PROGRAM).exe libflashprog.a $(filter-out Makefile.d, $(wildcard *.d *.o platform/*.d platform/*.o)) \
Thomas Heijligenc92f94b2022-03-17 13:41:17 +01001036 $(PROGRAM).8 $(PROGRAM).8.html $(BUILD_DETAILS_FILE)
Thomas Heijligen142a6232022-01-06 10:56:35 +01001037 @+$(MAKE) -C util/ich_descriptors_tool/ clean
1038
Joerg Mayera93d9dc2013-08-29 00:38:19 +00001039install: $(PROGRAM)$(EXEC_SUFFIX) $(PROGRAM).8
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +00001040 mkdir -p $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +00001041 mkdir -p $(DESTDIR)$(MANDIR)/man8
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +00001042 $(INSTALL) -m 0755 $(PROGRAM)$(EXEC_SUFFIX) $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +00001043 $(INSTALL) -m 0644 $(PROGRAM).8 $(DESTDIR)$(MANDIR)/man8
Uwe Hermannc113b572006-12-14 00:59:41 +00001044
Nico Huberc3b02dc2023-08-12 01:13:45 +02001045libinstall: libflashprog.a include/libflashprog.h
Nico Huber454f6132012-12-10 13:34:10 +00001046 mkdir -p $(DESTDIR)$(PREFIX)/lib
Nico Huberc3b02dc2023-08-12 01:13:45 +02001047 $(INSTALL) -m 0644 libflashprog.a $(DESTDIR)$(PREFIX)/lib
Nico Huber454f6132012-12-10 13:34:10 +00001048 mkdir -p $(DESTDIR)$(PREFIX)/include
Nico Huberc3b02dc2023-08-12 01:13:45 +02001049 $(INSTALL) -m 0644 include/libflashprog.h $(DESTDIR)$(PREFIX)/include
Nico Huber454f6132012-12-10 13:34:10 +00001050
Nico Huber5f245a22023-01-10 17:14:47 +01001051versioninfo:
1052# Generate versioninfo.inc containing metadata that would not be available in exported sources otherwise.
1053 @[ "$(RELEASE)" ] || { echo 'Error: Must provide `RELEASE=...`'; exit 1; }
1054 @echo "VERSION = $(RELEASE)" > $@.inc
1055 @echo "MAN_DATE = $(shell ./util/getrevision.sh --date $(PROGRAM).8.tmpl 2>/dev/null)" >> $@.inc
1056
Nico Huber26c2c4d2023-01-10 17:45:38 +01001057branch: versioninfo
1058 @git checkout -b $(RELEASE)
1059 @git add -f $<.inc
1060 @git commit -sm'Update version info for $(RELEASE)'
1061
1062tag: versioninfo
1063 @git add -f $<.inc
1064 @git commit -sm'Update version info for $(RELEASE)'
1065 @git tag -s $(RELEASE)
1066
Nico Huber5f245a22023-01-10 17:14:47 +01001067# No spaces in release names unless set explicitly
Nico Huberc3b02dc2023-08-12 01:13:45 +02001068RELEASENAME ?= flashprog-$(shell echo "$(VERSION)" | sed -e 's/ /_/')
Nico Huber5f245a22023-01-10 17:14:47 +01001069
Nico Huber1d58a902023-01-10 18:26:12 +01001070_export: EXPORT_VERSIONINFO := $(EXPORTDIR)/$(RELEASENAME)/versioninfo.inc
Stefan Tauner76347082016-11-27 17:45:49 +01001071_export: $(PROGRAM).8
Nico Huber1d58a902023-01-10 18:26:12 +01001072 @rm -rf "$(EXPORTDIR)/$(RELEASENAME)"
1073 @mkdir -p "$(EXPORTDIR)/$(RELEASENAME)"
1074 @git archive HEAD | tar -x -C "$(EXPORTDIR)/$(RELEASENAME)"
Nico Huber5f245a22023-01-10 17:14:47 +01001075# Generate fresh versioninfo.inc and compare
1076 @echo "VERSION = $(shell ./util/getrevision.sh --revision)" > "$(EXPORT_VERSIONINFO)"
1077 @echo "MAN_DATE = $(shell ./util/getrevision.sh --date $(PROGRAM).8.tmpl 2>/dev/null)" >> \
1078 "$(EXPORT_VERSIONINFO)"
1079 @if [ -f versioninfo.inc ]; then \
1080 cmp -s versioninfo.inc "$(EXPORT_VERSIONINFO)" || \
1081 { echo Error: Version info changed:; \
1082 cat "$(EXPORT_VERSIONINFO)"; \
1083 echo Update versioninfo.inc and tag accordingly.; \
1084 exit 1; \
1085 }; \
1086 fi
Stefan Taunere4136852017-10-01 15:57:25 +02001087# Restore modification date of all tracked files not marked 'export-ignore' in .gitattributes.
1088# sed is required to filter out file names having the attribute set.
1089# The sed program saves the file name in the hold buffer and then checks if the respective value is 'set'.
1090# 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 +01001091 @git ls-tree -r -z -t --full-name --name-only HEAD | \
1092 git check-attr -z --stdin export-ignore | \
Stefan Taunere4136852017-10-01 15:57:25 +02001093 sed -zne 'x;n;n;{/^set$$/b;};x;p;' | \
Stefan Tauner76347082016-11-27 17:45:49 +01001094 xargs -0 sh -c 'for f; do \
1095 touch -d $$(git log --pretty=format:%cI -1 HEAD -- "$$f") \
Nico Huber1d58a902023-01-10 18:26:12 +01001096 "$(EXPORTDIR)/$(RELEASENAME)/$$f"; \
Stefan Taunere4136852017-10-01 15:57:25 +02001097 done' dummy_arg0
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +00001098
Stefan Tauner76347082016-11-27 17:45:49 +01001099export: _export
Nico Huber1d58a902023-01-10 18:26:12 +01001100 @echo "Exported $(EXPORTDIR)/$(RELEASENAME)/"
Stefan Tauner76347082016-11-27 17:45:49 +01001101
Thomas Heijligen142a6232022-01-06 10:56:35 +01001102
1103# TAROPTIONS reduces information leakage from the packager's system.
1104# If other tar programs support command line arguments for setting uid/gid of
1105# stored files, they can be handled here as well.
1106TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root --group=root")
1107
Stefan Tauner76347082016-11-27 17:45:49 +01001108tarball: _export
Nico Huber1d58a902023-01-10 18:26:12 +01001109 @tar -cj --format=ustar -f "$(EXPORTDIR)/$(RELEASENAME).tar.bz2" -C $(EXPORTDIR)/ \
1110 $(TAROPTIONS) "$(RELEASENAME)/"
Stefan Tauner76347082016-11-27 17:45:49 +01001111# Delete the exported directory again because it is most likely what's expected by the user.
Nico Huber1d58a902023-01-10 18:26:12 +01001112 @rm -rf "$(EXPORTDIR)/$(RELEASENAME)"
1113 @echo Created "$(EXPORTDIR)/$(RELEASENAME).tar.bz2"
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +00001114
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +00001115libpayload: clean
1116 make CC="CC=i386-elf-gcc lpgcc" AR=i386-elf-ar RANLIB=i386-elf-ranlib
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +00001117
Felix Singer9441c6e2022-10-21 12:47:11 +02001118gitconfig:
1119 ./util/getrevision.sh -c 2>/dev/null && ./util/git-hooks/install.sh
1120
Thomas Heijligen306f38e2021-12-09 17:52:23 +01001121.PHONY: all install clean distclean config branch tag versioninfo _export export tarball libpayload gitconfig
Ollie Lho184a4042005-11-26 21:55:36 +00001122
Stefan Tauner23e10b82016-01-23 16:16:49 +00001123# Disable implicit suffixes and built-in rules (for performance and profit)
1124.SUFFIXES:
1125
Nico Huber5d5b1222023-02-11 19:18:50 +01001126-include $(OBJS:.o=.d) $(CLI_OBJS:.o=.d)