blob: ba5dd0890d42fac242a89be1a04bf2d46a254f12 [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#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Ollie Lho184a4042005-11-26 21:55:36 +000019#
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000020
Ollie Lho184a4042005-11-26 21:55:36 +000021PROGRAM = flashrom
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000022
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000023###############################################################################
24# Defaults for the toolchain.
25
26# If you want to cross-compile, just run e.g.
27# make CC=i586-pc-msdosdjgpp-gcc
28# You may have to specify STRIP/AR/RANLIB as well.
Carl-Daniel Hailfingerb7bce8a2012-08-14 21:36:11 +000029#
30# Note for anyone editing this Makefile: gnumake will happily ignore any
31# changes in this Makefile to variables set on the command line.
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +000032CC ?= gcc
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000033STRIP ?= strip
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000034INSTALL = install
Paul Fox05dfbe62009-06-16 21:08:06 +000035DIFF = diff
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000036PREFIX ?= /usr/local
Uwe Hermann56b2cb02009-05-21 15:59:58 +000037MANDIR ?= $(PREFIX)/share/man
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000038CFLAGS ?= -Os -Wall -Wshadow
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000039EXPORTDIR ?= .
Patrick Georgi97bc95c2011-03-08 07:17:44 +000040AR ?= ar
41RANLIB ?= ranlib
Stefan Tauner449abe22013-09-11 23:34:57 +000042DOSLIBS_BASE ?= ..
Stefan Taunerfd0d4132012-09-25 21:24:55 +000043# The following parameter changes the default programmer that will be used if there is no -p/--programmer
44# argument given when running flashrom. The predefined setting does not enable any default so that every
45# user has to declare the programmer he wants to use on every run. The rationale for this to be not set
46# (to e.g. the internal programmer) is that forgetting to specify this when working with another programmer
47# easily puts the system attached to the default programmer at risk (e.g. you want to flash coreboot to another
48# system attached to an external programmer while the default programmer is set to the internal programmer, and
49# you forget to use the -p parameter. This would (try to) overwrite the existing firmware of the computer
50# running flashrom). Please do not enable this without thinking about the possible consequences. Possible
51# values are those specified in enum programmer in programmer.h (which depend on other CONFIG_* options
52# evaluated below, namely those that enable/disable the various programmers).
53# Compilation will fail for unspecified values.
54CONFIG_DEFAULT_PROGRAMMER ?= PROGRAMMER_INVALID
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000055
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000056# If your compiler spits out excessive warnings, run make WARNERROR=no
57# You shouldn't have to change this flag.
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000058WARNERROR ?= yes
59
60ifeq ($(WARNERROR), yes)
61CFLAGS += -Werror
62endif
63
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000064###############################################################################
Stefan Tauner037cd842013-08-25 00:10:56 +000065# General OS-specific settings.
66# 1. Prepare for later by gathering information about host and target OS
67# 2. Set compiler flags and parameters according to OSes
68# 3. Likewise verify user-supplied CONFIG_* variables.
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000069
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +000070# HOST_OS is only used to work around local toolchain issues.
Stefan Tauner037cd842013-08-25 00:10:56 +000071HOST_OS ?= $(shell uname)
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +000072ifeq ($(HOST_OS), MINGW32_NT-5.1)
73# Explicitly set CC = gcc on MinGW, otherwise: "cc: command not found".
74CC = gcc
75endif
76ifneq ($(HOST_OS), SunOS)
Adam Kaufman064b1f22007-02-06 19:47:50 +000077STRIP_ARGS = -s
78endif
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +000079
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000080# Determine the destination OS.
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +000081# IMPORTANT: The following line must be placed before TARGET_OS is ever used
82# (of course), but should come after any lines setting CC because the line
83# below uses CC itself.
84override TARGET_OS := $(strip $(shell LC_ALL=C $(CC) $(CPPFLAGS) -E os.h 2>/dev/null | grep -v '^\#' | grep '"' | cut -f 2 -d'"'))
85
86ifeq ($(TARGET_OS), Darwin)
Stefan Reinauer2fea3f32010-01-21 20:26:30 +000087CPPFLAGS += -I/opt/local/include -I/usr/local/include
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000088LDFLAGS += -L/opt/local/lib -L/usr/local/lib
Stefan Reinauerf79edb92009-01-26 01:23:31 +000089endif
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000090
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +000091ifeq ($(TARGET_OS), FreeBSD)
Stefan Reinauer2fea3f32010-01-21 20:26:30 +000092CPPFLAGS += -I/usr/local/include
Andriy Gapon65c1b862008-05-22 13:22:45 +000093LDFLAGS += -L/usr/local/lib
94endif
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000095
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +000096ifeq ($(TARGET_OS), OpenBSD)
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +000097CPPFLAGS += -I/usr/local/include
98LDFLAGS += -L/usr/local/lib
99endif
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000100
Stefan Taunerc65b8552013-09-12 15:48:39 +0000101ifeq ($(TARGET_OS), NetBSD)
102CPPFLAGS += -I/usr/pkg/include
103LDFLAGS += -L/usr/pkg/lib
104endif
105
106ifeq ($(TARGET_OS), DragonFlyBSD)
107CPPFLAGS += -I/usr/pkg/include
108LDFLAGS += -L/usr/pkg/lib
109endif
110
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000111ifeq ($(TARGET_OS), DOS)
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000112EXEC_SUFFIX := .exe
Stefan Tauner449abe22013-09-11 23:34:57 +0000113CPPFLAGS += -I$(DOSLIBS_BASE)/libgetopt
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000114# DJGPP has odd uint*_t definitions which cause lots of format string warnings.
Carl-Daniel Hailfingerb7bce8a2012-08-14 21:36:11 +0000115CFLAGS += -Wno-format
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000116# FIXME Check if we can achieve the same effect with -L../libgetopt -lgetopt
Stefan Tauner449abe22013-09-11 23:34:57 +0000117LIBS += -lgetopt
118LDFLAGS += -L$(DOSLIBS_BASE)/libgetopt/
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000119# Bus Pirate, Serprog and PonyProg are not supported under DOS (missing serial support).
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000120ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
121UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes
122else
123override CONFIG_BUSPIRATE_SPI = no
124endif
125ifeq ($(CONFIG_SERPROG), yes)
126UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes
127else
128override CONFIG_SERPROG = no
129endif
Stefan Taunerd94d25d2012-07-28 03:17:15 +0000130ifeq ($(CONFIG_PONY_SPI), yes)
131UNSUPPORTED_FEATURES += CONFIG_PONY_SPI=yes
132else
133override CONFIG_PONY_SPI = no
134endif
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000135# Dediprog and FT2232 are not supported under DOS (missing USB support).
136ifeq ($(CONFIG_DEDIPROG), yes)
137UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes
138else
139override CONFIG_DEDIPROG = no
140endif
141ifeq ($(CONFIG_FT2232_SPI), yes)
142UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes
143else
144override CONFIG_FT2232_SPI = no
145endif
James Lairdc60de0e2013-03-27 13:00:23 +0000146ifeq ($(CONFIG_USBBLASTER_SPI), yes)
147UNSUPPORTED_FEATURES += CONFIG_USBBLASTER_SPI=yes
148else
149override CONFIG_USBBLASTER_SPI = no
150endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000151endif
Ollie Lho184a4042005-11-26 21:55:36 +0000152
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000153# FIXME: Should we check for Cygwin/MSVC as well?
154ifeq ($(TARGET_OS), MinGW)
155EXEC_SUFFIX := .exe
Uwe Hermannd5e85d62011-07-03 19:44:12 +0000156# MinGW doesn't have the ffs() function, but we can use gcc's __builtin_ffs().
Carl-Daniel Hailfingera8da2242012-08-15 23:06:32 +0000157FLASHROM_CFLAGS += -Dffs=__builtin_ffs
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000158# Some functions provided by Microsoft do not work as described in C99 specifications. This macro fixes that
159# for MinGW. See http://sourceforge.net/apps/trac/mingw-w64/wiki/printf%20and%20scanf%20family */
160FLASHROM_CFLAGS += -D__USE_MINGW_ANSI_STDIO=1
Uwe Hermannd5e85d62011-07-03 19:44:12 +0000161# libusb-win32/libftdi stuff is usually installed in /usr/local.
162CPPFLAGS += -I/usr/local/include
163LDFLAGS += -L/usr/local/lib
Uwe Hermannd5e85d62011-07-03 19:44:12 +0000164# For now we disable all PCI-based programmers on Windows/MinGW (no libpci).
165ifeq ($(CONFIG_INTERNAL), yes)
166UNSUPPORTED_FEATURES += CONFIG_INTERNAL=yes
167else
168override CONFIG_INTERNAL = no
169endif
170ifeq ($(CONFIG_RAYER_SPI), yes)
171UNSUPPORTED_FEATURES += CONFIG_RAYER_SPI=yes
172else
173override CONFIG_RAYER_SPI = no
174endif
175ifeq ($(CONFIG_NIC3COM), yes)
176UNSUPPORTED_FEATURES += CONFIG_NIC3COM=yes
177else
178override CONFIG_NIC3COM = no
179endif
180ifeq ($(CONFIG_GFXNVIDIA), yes)
181UNSUPPORTED_FEATURES += CONFIG_GFXNVIDIA=yes
182else
183override CONFIG_GFXNVIDIA = no
184endif
185ifeq ($(CONFIG_SATASII), yes)
186UNSUPPORTED_FEATURES += CONFIG_SATASII=yes
187else
188override CONFIG_SATASII = no
189endif
190ifeq ($(CONFIG_ATAHPT), yes)
191UNSUPPORTED_FEATURES += CONFIG_ATAHPT=yes
192else
193override CONFIG_ATAHPT = no
194endif
Jonathan Kollasch7f0f3fa2014-06-01 10:26:23 +0000195ifeq ($(CONFIG_ATAVIA), yes)
196UNSUPPORTED_FEATURES += CONFIG_ATAVIA=yes
197else
198override CONFIG_ATAVIA = no
199endif
Uwe Hermannd5e85d62011-07-03 19:44:12 +0000200ifeq ($(CONFIG_DRKAISER), yes)
201UNSUPPORTED_FEATURES += CONFIG_DRKAISER=yes
202else
203override CONFIG_DRKAISER = no
204endif
205ifeq ($(CONFIG_NICREALTEK), yes)
206UNSUPPORTED_FEATURES += CONFIG_NICREALTEK=yes
207else
208override CONFIG_NICREALTEK = no
209endif
210ifeq ($(CONFIG_NICNATSEMI), yes)
211UNSUPPORTED_FEATURES += CONFIG_NICNATSEMI=yes
212else
213override CONFIG_NICNATSEMI = no
214endif
215ifeq ($(CONFIG_NICINTEL), yes)
216UNSUPPORTED_FEATURES += CONFIG_NICINTEL=yes
217else
218override CONFIG_NICINTEL = no
219endif
220ifeq ($(CONFIG_NICINTEL_SPI), yes)
221UNSUPPORTED_FEATURES += CONFIG_NICINTEL_SPI=yes
222else
223override CONFIG_NICINTEL_SPI = no
224endif
225ifeq ($(CONFIG_OGP_SPI), yes)
226UNSUPPORTED_FEATURES += CONFIG_OGP_SPI=yes
227else
228override CONFIG_OGP_SPI = no
229endif
230ifeq ($(CONFIG_SATAMV), yes)
231UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes
232else
233override CONFIG_SATAMV = no
234endif
235endif
236
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000237ifeq ($(TARGET_OS), libpayload)
Stefan Tauner8e19b042013-08-28 09:55:04 +0000238ifeq ($(MAKECMDGOALS),)
239.DEFAULT_GOAL := libflashrom.a
240$(info Setting default goal to libflashrom.a)
241endif
Carl-Daniel Hailfingera8da2242012-08-15 23:06:32 +0000242FLASHROM_CFLAGS += -DSTANDALONE
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000243ifeq ($(CONFIG_DUMMY), yes)
244UNSUPPORTED_FEATURES += CONFIG_DUMMY=yes
245else
246override CONFIG_DUMMY = no
247endif
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000248# Bus Pirate, Serprog and PonyProg are not supported with libpayload (missing serial support).
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000249ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
250UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes
251else
252override CONFIG_BUSPIRATE_SPI = no
253endif
254ifeq ($(CONFIG_SERPROG), yes)
255UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes
256else
257override CONFIG_SERPROG = no
258endif
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000259ifeq ($(CONFIG_PONY_SPI), yes)
260UNSUPPORTED_FEATURES += CONFIG_PONY_SPI=yes
261else
262override CONFIG_PONY_SPI = no
263endif
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000264# Dediprog and FT2232 are not supported with libpayload (missing libusb support)
265ifeq ($(CONFIG_DEDIPROG), yes)
266UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes
267else
268override CONFIG_DEDIPROG = no
269endif
270ifeq ($(CONFIG_FT2232_SPI), yes)
271UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes
272else
273override CONFIG_FT2232_SPI = no
274endif
James Lairdc60de0e2013-03-27 13:00:23 +0000275ifeq ($(CONFIG_USBBLASTER_SPI), yes)
276UNSUPPORTED_FEATURES += CONFIG_USBBLASTER_SPI=yes
277else
278override CONFIG_USBBLASTER_SPI = no
279endif
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000280endif
281
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000282ifneq ($(TARGET_OS), Linux)
283ifeq ($(CONFIG_LINUX_SPI), yes)
284UNSUPPORTED_FEATURES += CONFIG_LINUX_SPI=yes
285else
286override CONFIG_LINUX_SPI = no
287endif
288endif
289
Stefan Tauner037cd842013-08-25 00:10:56 +0000290###############################################################################
291# General architecture-specific settings.
292# Like above for the OS, below we verify user-supplied options depending on the target architecture.
293
Uwe Hermann44ffd582011-08-20 14:16:00 +0000294# Determine the destination processor architecture.
295# IMPORTANT: The following line must be placed before ARCH is ever used
296# (of course), but should come after any lines setting CC because the line
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000297# below uses CC itself.
298override ARCH := $(strip $(shell LC_ALL=C $(CC) $(CPPFLAGS) -E arch.h 2>/dev/null | grep -v '^\#' | grep '"' | cut -f 2 -d'"'))
Uwe Hermann44ffd582011-08-20 14:16:00 +0000299
David Hendricksb286da72012-02-13 00:35:35 +0000300# PCI port I/O support is unimplemented on PPC/MIPS and unavailable on ARM.
301# Right now this means the drivers below only work on x86.
302ifneq ($(ARCH), x86)
Uwe Hermann21b10c62011-07-29 12:13:01 +0000303ifeq ($(CONFIG_NIC3COM), yes)
304UNSUPPORTED_FEATURES += CONFIG_NIC3COM=yes
305else
306override CONFIG_NIC3COM = no
307endif
308ifeq ($(CONFIG_NICREALTEK), yes)
309UNSUPPORTED_FEATURES += CONFIG_NICREALTEK=yes
310else
311override CONFIG_NICREALTEK = no
312endif
313ifeq ($(CONFIG_NICNATSEMI), yes)
314UNSUPPORTED_FEATURES += CONFIG_NICNATSEMI=yes
315else
316override CONFIG_NICNATSEMI = no
317endif
318ifeq ($(CONFIG_RAYER_SPI), yes)
319UNSUPPORTED_FEATURES += CONFIG_RAYER_SPI=yes
320else
321override CONFIG_RAYER_SPI = no
322endif
323ifeq ($(CONFIG_ATAHPT), yes)
324UNSUPPORTED_FEATURES += CONFIG_ATAHPT=yes
325else
326override CONFIG_ATAHPT = no
327endif
Jonathan Kollasch7f0f3fa2014-06-01 10:26:23 +0000328ifeq ($(CONFIG_ATAVIA), yes)
329UNSUPPORTED_FEATURES += CONFIG_ATAVIA=yes
330else
331override CONFIG_ATAVIA = no
332endif
Uwe Hermann21b10c62011-07-29 12:13:01 +0000333ifeq ($(CONFIG_SATAMV), yes)
334UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes
335else
336override CONFIG_SATAMV = no
337endif
338endif
339
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000340###############################################################################
341# Flash chip drivers and bus support infrastructure.
342
Stefan Tauner4404f732013-09-12 08:28:56 +0000343CHIP_OBJS = jedec.o stm50.o w39.o w29ee011.o \
Sean Nelson35727f72010-01-28 23:55:12 +0000344 sst28sf040.o m29f400bt.o 82802ab.o pm49fl00x.o \
Stefan Tauner6ee37e22012-12-29 15:03:51 +0000345 sst49lfxxxc.o sst_fwhub.o flashchips.o spi.o spi25.o spi25_statusreg.o \
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000346 opaque.o sfdp.o en29lv640b.o at45db.o
Sean Nelson5d134642009-12-24 16:54:21 +0000347
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000348###############################################################################
349# Library code.
Sean Nelson5d134642009-12-24 16:54:21 +0000350
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000351LIB_OBJS = layout.o flashrom.o udelay.o programmer.o
Sean Nelson5d134642009-12-24 16:54:21 +0000352
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000353###############################################################################
354# Frontend related stuff.
Ollie Lho184a4042005-11-26 21:55:36 +0000355
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000356CLI_OBJS = cli_classic.o cli_output.o print.o
Ollie Lho184a4042005-11-26 21:55:36 +0000357
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000358# Set the flashrom version string from the highest revision number of the checked out flashrom files.
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000359# Note to packagers: Any tree exported with "make export" or "make tarball"
360# will not require subversion. The downloadable snapshots are already exported.
David Hendricks36e9f4b2013-08-14 14:47:26 +0000361SVNVERSION := $(shell ./util/getrevision.sh -u)
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000362
Stefan Tauner241e9d52013-08-13 22:13:01 +0000363RELEASE := 0.9.7
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000364VERSION := $(RELEASE)-$(SVNVERSION)
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000365RELEASENAME ?= $(VERSION)
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000366
367SVNDEF := -D'FLASHROM_VERSION="$(VERSION)"'
Bernhard Walle201bde32008-01-21 15:24:22 +0000368
Stefan Tauner037cd842013-08-25 00:10:56 +0000369###############################################################################
370# Default settings of CONFIG_* variables.
371
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000372# Always enable internal/onboard support for now.
373CONFIG_INTERNAL ?= yes
374
Stefan Tauner52b6e9d2013-04-01 00:46:05 +0000375# Always enable serprog for now.
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000376CONFIG_SERPROG ?= yes
377
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000378# RayeR SPIPGM hardware support
379CONFIG_RAYER_SPI ?= yes
380
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000381# PonyProg2000 SPI hardware support
382CONFIG_PONY_SPI ?= yes
383
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000384# Always enable 3Com NICs for now.
385CONFIG_NIC3COM ?= yes
386
Carl-Daniel Hailfingerbf3af292010-07-29 14:41:46 +0000387# Enable NVIDIA graphics cards. Note: write and erase do not work properly.
388CONFIG_GFXNVIDIA ?= yes
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000389
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000390# Always enable SiI SATA controllers for now.
391CONFIG_SATASII ?= yes
392
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000393# Highpoint (HPT) ATA/RAID controller support.
394# IMPORTANT: This code is not yet working!
395CONFIG_ATAHPT ?= no
396
Jonathan Kollasch7f0f3fa2014-06-01 10:26:23 +0000397# VIA VT6421A LPC memory support
398CONFIG_ATAVIA ?= yes
399
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000400# Always enable FT2232 SPI dongles for now.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000401CONFIG_FT2232_SPI ?= yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000402
James Lairdc60de0e2013-03-27 13:00:23 +0000403# Always enable Altera USB-Blaster dongles for now.
404CONFIG_USBBLASTER_SPI ?= yes
405
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000406# Always enable dummy tracing for now.
407CONFIG_DUMMY ?= yes
408
409# Always enable Dr. Kaiser for now.
410CONFIG_DRKAISER ?= yes
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000411
Joerg Fischer5665ef32010-05-21 21:54:07 +0000412# Always enable Realtek NICs for now.
413CONFIG_NICREALTEK ?= yes
414
Andrew Morganc29c2e72010-06-07 22:37:54 +0000415# Disable National Semiconductor NICs until support is complete and tested.
416CONFIG_NICNATSEMI ?= no
417
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000418# Always enable Intel NICs for now.
419CONFIG_NICINTEL ?= yes
420
Idwer Vollering004f4b72010-09-03 18:21:21 +0000421# Always enable SPI on Intel NICs for now.
422CONFIG_NICINTEL_SPI ?= yes
423
Mark Marshall90021f22010-12-03 14:48:11 +0000424# Always enable SPI on OGP cards for now.
425CONFIG_OGP_SPI ?= yes
426
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000427# Always enable Bus Pirate SPI for now.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000428CONFIG_BUSPIRATE_SPI ?= yes
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000429
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000430# Disable Dediprog SF100 until support is complete and tested.
431CONFIG_DEDIPROG ?= no
432
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000433# Always enable Marvell SATA controllers for now.
434CONFIG_SATAMV ?= yes
435
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000436# Enable Linux spidev interface by default. We disable it on non-Linux targets.
437CONFIG_LINUX_SPI ?= yes
438
Carl-Daniel Hailfinger6161ff12009-11-16 21:22:24 +0000439# Disable wiki printing by default. It is only useful if you have wiki access.
Uwe Hermann2db77a02010-06-04 17:07:39 +0000440CONFIG_PRINT_WIKI ?= no
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000441
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000442# Bitbanging SPI infrastructure, default off unless needed.
443ifeq ($(CONFIG_RAYER_SPI), yes)
444override CONFIG_BITBANG_SPI = yes
445else
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000446ifeq ($(CONFIG_PONY_SPI), yes)
447override CONFIG_BITBANG_SPI = yes
448else
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000449ifeq ($(CONFIG_INTERNAL), yes)
450override CONFIG_BITBANG_SPI = yes
451else
452ifeq ($(CONFIG_NICINTEL_SPI), yes)
453override CONFIG_BITBANG_SPI = yes
454else
Mark Marshall90021f22010-12-03 14:48:11 +0000455ifeq ($(CONFIG_OGP_SPI), yes)
456override CONFIG_BITBANG_SPI = yes
457else
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000458CONFIG_BITBANG_SPI ?= no
459endif
460endif
461endif
Mark Marshall90021f22010-12-03 14:48:11 +0000462endif
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000463endif
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000464
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000465###############################################################################
Sean Nelson4c6d3a42013-09-11 23:35:03 +0000466# Handle CONFIG_* variables that depend on others set (and verified) above.
467
468# The external DMI decoder (dmidecode) does not work in libpayload. Bail out if the internal one got disabled.
469ifeq ($(TARGET_OS), libpayload)
470ifeq ($(CONFIG_INTERNAL), yes)
471ifeq ($(CONFIG_INTERNAL_DMI), no)
472UNSUPPORTED_FEATURES += CONFIG_INTERNAL_DMI=no
473else
474override CONFIG_INTERNAL_DMI = yes
475endif
476endif
477endif
478
479# Use internal DMI/SMBIOS decoder by default instead of relying on dmidecode.
480CONFIG_INTERNAL_DMI ?= yes
481
482###############################################################################
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000483# Programmer drivers and programmer support infrastructure.
Stefan Tauner037cd842013-08-25 00:10:56 +0000484# Depending on the CONFIG_* variables set and verified above we set compiler flags and parameters below.
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000485
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000486FEATURE_CFLAGS += -D'CONFIG_DEFAULT_PROGRAMMER=$(CONFIG_DEFAULT_PROGRAMMER)'
487
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000488ifeq ($(CONFIG_INTERNAL), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000489FEATURE_CFLAGS += -D'CONFIG_INTERNAL=1'
Sean Nelson4c6d3a42013-09-11 23:35:03 +0000490PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o internal.o
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000491ifeq ($(ARCH), x86)
Rudolf Marek70e14592013-07-25 22:58:56 +0000492PROGRAMMER_OBJS += it87spi.o it85spi.o sb600spi.o amd_imc.o wbsio_spi.o mcp6x_spi.o
Sean Nelson4c6d3a42013-09-11 23:35:03 +0000493PROGRAMMER_OBJS += ichspi.o ich_descriptors.o dmi.o
494ifeq ($(CONFIG_INTERNAL_DMI), yes)
495FEATURE_CFLAGS += -D'CONFIG_INTERNAL_DMI=1'
496endif
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000497else
498endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000499NEED_PCI := yes
500endif
501
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000502ifeq ($(CONFIG_SERPROG), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000503FEATURE_CFLAGS += -D'CONFIG_SERPROG=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000504PROGRAMMER_OBJS += serprog.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000505NEED_SERIAL := yes
506NEED_NET := yes
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000507endif
508
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000509ifeq ($(CONFIG_RAYER_SPI), yes)
510FEATURE_CFLAGS += -D'CONFIG_RAYER_SPI=1'
511PROGRAMMER_OBJS += rayer_spi.o
512# Actually, NEED_PCI is wrong. NEED_IOPORT_ACCESS would be more correct.
513NEED_PCI := yes
514endif
515
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000516ifeq ($(CONFIG_PONY_SPI), yes)
517FEATURE_CFLAGS += -D'CONFIG_PONY_SPI=1'
518PROGRAMMER_OBJS += pony_spi.o
519NEED_SERIAL := yes
520endif
521
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000522ifeq ($(CONFIG_BITBANG_SPI), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000523FEATURE_CFLAGS += -D'CONFIG_BITBANG_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000524PROGRAMMER_OBJS += bitbang_spi.o
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000525endif
526
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000527ifeq ($(CONFIG_NIC3COM), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000528FEATURE_CFLAGS += -D'CONFIG_NIC3COM=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000529PROGRAMMER_OBJS += nic3com.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000530NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000531endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000532
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000533ifeq ($(CONFIG_GFXNVIDIA), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000534FEATURE_CFLAGS += -D'CONFIG_GFXNVIDIA=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000535PROGRAMMER_OBJS += gfxnvidia.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000536NEED_PCI := yes
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000537endif
538
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000539ifeq ($(CONFIG_SATASII), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000540FEATURE_CFLAGS += -D'CONFIG_SATASII=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000541PROGRAMMER_OBJS += satasii.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000542NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000543endif
544
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000545ifeq ($(CONFIG_ATAHPT), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000546FEATURE_CFLAGS += -D'CONFIG_ATAHPT=1'
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000547PROGRAMMER_OBJS += atahpt.o
548NEED_PCI := yes
549endif
550
Jonathan Kollasch7f0f3fa2014-06-01 10:26:23 +0000551ifeq ($(CONFIG_ATAVIA), yes)
552FEATURE_CFLAGS += -D'CONFIG_ATAVIA=1'
553PROGRAMMER_OBJS += atavia.o
554NEED_PCI := yes
555endif
556
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000557ifeq ($(CONFIG_FT2232_SPI), yes)
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000558# This is a totally ugly hack.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000559FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "-D'CONFIG_FT2232_SPI=1'")
James Lairdc60de0e2013-03-27 13:00:23 +0000560NEED_FTDI := yes
561PROGRAMMER_OBJS += ft2232_spi.o
562endif
563
564ifeq ($(CONFIG_USBBLASTER_SPI), yes)
565# This is a totally ugly hack.
566FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "-D'CONFIG_USBBLASTER_SPI=1'")
567NEED_FTDI := yes
568PROGRAMMER_OBJS += usbblaster_spi.o
569endif
570
571ifeq ($(NEED_FTDI), yes)
572FTDILIBS := $(shell pkg-config --libs libftdi 2>/dev/null || printf "%s" "-lftdi -lusb")
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000573FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "FT232H := yes" .features && printf "%s" "-D'HAVE_FT232H=1'")
Jörg Mayer8776db22009-11-16 14:05:13 +0000574FEATURE_LIBS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "$(FTDILIBS)")
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000575# We can't set NEED_USB here because that would transform libftdi auto-enabling
576# into a hard requirement for libusb, defeating the purpose of auto-enabling.
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000577endif
578
579ifeq ($(CONFIG_DUMMY), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000580FEATURE_CFLAGS += -D'CONFIG_DUMMY=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000581PROGRAMMER_OBJS += dummyflasher.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000582endif
583
584ifeq ($(CONFIG_DRKAISER), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000585FEATURE_CFLAGS += -D'CONFIG_DRKAISER=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000586PROGRAMMER_OBJS += drkaiser.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000587NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000588endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000589
Joerg Fischer5665ef32010-05-21 21:54:07 +0000590ifeq ($(CONFIG_NICREALTEK), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000591FEATURE_CFLAGS += -D'CONFIG_NICREALTEK=1'
Joerg Fischer5665ef32010-05-21 21:54:07 +0000592PROGRAMMER_OBJS += nicrealtek.o
593NEED_PCI := yes
594endif
595
Andrew Morganc29c2e72010-06-07 22:37:54 +0000596ifeq ($(CONFIG_NICNATSEMI), yes)
597FEATURE_CFLAGS += -D'CONFIG_NICNATSEMI=1'
598PROGRAMMER_OBJS += nicnatsemi.o
599NEED_PCI := yes
600endif
601
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000602ifeq ($(CONFIG_NICINTEL), yes)
603FEATURE_CFLAGS += -D'CONFIG_NICINTEL=1'
604PROGRAMMER_OBJS += nicintel.o
605NEED_PCI := yes
606endif
607
Idwer Vollering004f4b72010-09-03 18:21:21 +0000608ifeq ($(CONFIG_NICINTEL_SPI), yes)
609FEATURE_CFLAGS += -D'CONFIG_NICINTEL_SPI=1'
610PROGRAMMER_OBJS += nicintel_spi.o
611NEED_PCI := yes
612endif
613
Mark Marshall90021f22010-12-03 14:48:11 +0000614ifeq ($(CONFIG_OGP_SPI), yes)
615FEATURE_CFLAGS += -D'CONFIG_OGP_SPI=1'
616PROGRAMMER_OBJS += ogp_spi.o
617NEED_PCI := yes
618endif
619
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000620ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
621FEATURE_CFLAGS += -D'CONFIG_BUSPIRATE_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000622PROGRAMMER_OBJS += buspirate_spi.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000623NEED_SERIAL := yes
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000624endif
625
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000626ifeq ($(CONFIG_DEDIPROG), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000627FEATURE_CFLAGS += -D'CONFIG_DEDIPROG=1'
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000628PROGRAMMER_OBJS += dediprog.o
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000629NEED_USB := yes
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000630endif
631
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000632ifeq ($(CONFIG_SATAMV), yes)
633FEATURE_CFLAGS += -D'CONFIG_SATAMV=1'
634PROGRAMMER_OBJS += satamv.o
635NEED_PCI := yes
636endif
637
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000638ifeq ($(CONFIG_LINUX_SPI), yes)
Stefan Tauner8868db32012-03-13 00:18:19 +0000639# This is a totally ugly hack.
640FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "LINUX_SPI_SUPPORT := yes" .features && printf "%s" "-D'CONFIG_LINUX_SPI=1'")
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000641PROGRAMMER_OBJS += linux_spi.o
642endif
643
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000644ifeq ($(NEED_SERIAL), yes)
Sean Nelson5d134642009-12-24 16:54:21 +0000645LIB_OBJS += serial.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000646endif
647
648ifeq ($(NEED_NET), yes)
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000649ifeq ($(TARGET_OS), SunOS)
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000650LIBS += -lsocket
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000651endif
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +0000652endif
653
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000654ifeq ($(NEED_PCI), yes)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000655CHECK_LIBPCI = yes
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000656FEATURE_CFLAGS += -D'NEED_PCI=1'
Carl-Daniel Hailfingerfb0828f2010-02-12 19:35:25 +0000657PROGRAMMER_OBJS += pcidev.o physmap.o hwaccess.o
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000658ifeq ($(TARGET_OS), NetBSD)
Carl-Daniel Hailfinger460b2822010-06-04 23:24:57 +0000659# The libpci we want is called libpciutils on NetBSD and needs NetBSD libpci.
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000660PCILIBS += -lpciutils -lpci
Carl-Daniel Hailfinger460b2822010-06-04 23:24:57 +0000661# For (i386|x86_64)_iopl(2).
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000662PCILIBS += -l$(shell uname -p)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000663else
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000664ifeq ($(TARGET_OS), DOS)
Stefan Tauner449abe22013-09-11 23:34:57 +0000665CPPFLAGS += -I$(DOSLIBS_BASE)/libpci/include
666LDFLAGS += -L$(DOSLIBS_BASE)/libpci/lib/
667PCILIBS += -lpci
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000668else
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000669PCILIBS += -lpci
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000670ifeq ($(TARGET_OS), OpenBSD)
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +0000671# For (i386|amd64)_iopl(2).
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000672PCILIBS += -l$(shell uname -m)
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000673else
674ifeq ($(TARGET_OS), Darwin)
675# DirectHW framework can be found in the DirectHW library.
Stefan Taunere34e3e82013-01-01 00:06:51 +0000676PCILIBS += -framework IOKit -framework DirectHW
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000677else
678endif
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +0000679endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000680endif
Jonathan A. Kollasch3646c8f2010-01-08 21:18:08 +0000681endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000682endif
683
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000684ifeq ($(NEED_USB), yes)
685CHECK_LIBUSB0 = yes
686FEATURE_CFLAGS += -D'NEED_USB=1'
687USBLIBS := $(shell pkg-config --libs libusb 2>/dev/null || printf "%s" "-lusb")
688endif
689
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000690ifeq ($(CONFIG_PRINT_WIKI), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000691FEATURE_CFLAGS += -D'CONFIG_PRINT_WIKI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000692CLI_OBJS += print_wiki.o
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000693endif
694
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000695FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "UTSNAME := yes" .features && printf "%s" "-D'HAVE_UTSNAME=1'")
696
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000697# We could use PULLED_IN_LIBS, but that would be ugly.
698FEATURE_LIBS += $(shell LC_ALL=C grep -q "NEEDLIBZ := yes" .libdeps && printf "%s" "-lz")
699
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000700LIBFLASHROM_OBJS = $(CHIP_OBJS) $(PROGRAMMER_OBJS) $(LIB_OBJS)
Stefan Taunerd94d25d2012-07-28 03:17:15 +0000701OBJS = $(CLI_OBJS) $(LIBFLASHROM_OBJS)
Sean Nelson5d134642009-12-24 16:54:21 +0000702
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000703all: hwlibs features $(PROGRAM)$(EXEC_SUFFIX) $(PROGRAM).8
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000704ifeq ($(ARCH), x86)
705 @+$(MAKE) -C util/ich_descriptors_tool/ TARGET_OS=$(TARGET_OS) EXEC_SUFFIX=$(EXEC_SUFFIX)
706endif
707
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000708$(PROGRAM)$(EXEC_SUFFIX): $(OBJS)
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000709 $(CC) $(LDFLAGS) -o $(PROGRAM)$(EXEC_SUFFIX) $(OBJS) $(LIBS) $(PCILIBS) $(FEATURE_LIBS) $(USBLIBS)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000710
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000711libflashrom.a: $(LIBFLASHROM_OBJS)
712 $(AR) rcs $@ $^
713 $(RANLIB) $@
714
Carl-Daniel Hailfinger8ef7dce2009-07-10 20:19:48 +0000715# TAROPTIONS reduces information leakage from the packager's system.
716# If other tar programs support command line arguments for setting uid/gid of
717# stored files, they can be handled here as well.
718TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root --group=root")
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000719
Paul Fox05dfbe62009-06-16 21:08:06 +0000720%.o: %.c .features
Carl-Daniel Hailfingera8da2242012-08-15 23:06:32 +0000721 $(CC) -MMD $(CFLAGS) $(CPPFLAGS) $(FLASHROM_CFLAGS) $(FEATURE_CFLAGS) $(SVNDEF) -o $@ -c $<
Clark Rawlins02016f72008-02-14 23:22:20 +0000722
Carl-Daniel Hailfingera0020df2010-05-30 22:35:14 +0000723# Make sure to add all names of generated binaries here.
724# This includes all frontends and libflashrom.
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000725# We don't use EXEC_SUFFIX here because we want to clean everything.
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000726clean:
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000727 rm -f $(PROGRAM) $(PROGRAM).exe libflashrom.a *.o *.d $(PROGRAM).8
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000728 @+$(MAKE) -C util/ich_descriptors_tool/ clean
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000729
Ollie Lho184a4042005-11-26 21:55:36 +0000730distclean: clean
Stefan Reinauere2f01582010-06-07 11:08:07 +0000731 rm -f .features .libdeps
Christian Ruppertdb9d9f42009-05-14 14:17:07 +0000732
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000733strip: $(PROGRAM)$(EXEC_SUFFIX)
734 $(STRIP) $(STRIP_ARGS) $(PROGRAM)$(EXEC_SUFFIX)
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000735
Stefan Tauner56787082011-08-18 02:27:19 +0000736# to define test programs we use verbatim variables, which get exported
737# to environment variables and are referenced with $$<varname> later
738
739define COMPILER_TEST
740int main(int argc, char **argv)
741{
742 (void) argc;
743 (void) argv;
744 return 0;
745}
746endef
747export COMPILER_TEST
748
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000749compiler: featuresavailable
Paul Fox05dfbe62009-06-16 21:08:06 +0000750 @printf "Checking for a C compiler... "
Stefan Tauner56787082011-08-18 02:27:19 +0000751 @echo "$$COMPILER_TEST" > .test.c
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000752 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .test.c -o .test$(EXEC_SUFFIX) >/dev/null && \
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000753 echo "found." || ( echo "not found."; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000754 rm -f .test.c .test$(EXEC_SUFFIX); exit 1)
755 @rm -f .test.c .test$(EXEC_SUFFIX)
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000756 @printf "Target arch is "
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000757 @# FreeBSD wc will output extraneous whitespace.
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000758 @echo $(ARCH)|wc -w|grep -q '^[[:blank:]]*1[[:blank:]]*$$' || \
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000759 ( echo "unknown. Aborting."; exit 1)
760 @printf "%s\n" '$(ARCH)'
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000761 @printf "Target OS is "
762 @# FreeBSD wc will output extraneous whitespace.
763 @echo $(TARGET_OS)|wc -w|grep -q '^[[:blank:]]*1[[:blank:]]*$$' || \
764 ( echo "unknown. Aborting."; exit 1)
765 @printf "%s\n" '$(TARGET_OS)'
Stefan Taunerd6c17f62013-09-12 14:04:31 +0000766ifeq ($(TARGET_OS), libpayload)
767 @$(CC) --version 2>&1 | grep -q coreboot || \
768 ( echo "Warning: It seems you are not using coreboot's reference compiler."; \
769 echo "This might work but usually does not, please beware." )
770endif
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000771
Stefan Tauner56787082011-08-18 02:27:19 +0000772define LIBPCI_TEST
773/* Avoid a failing test due to libpci header symbol shadowing breakage */
774#define index shadow_workaround_index
Stefan Taunerc65b8552013-09-12 15:48:39 +0000775#if !defined __NetBSD__ && !defined __DragonFly__
Stefan Tauner56787082011-08-18 02:27:19 +0000776#include <pci/pci.h>
Stefan Taunerc65b8552013-09-12 15:48:39 +0000777#else
778#include <pciutils/pci.h>
779#endif
Stefan Tauner56787082011-08-18 02:27:19 +0000780struct pci_access *pacc;
781int main(int argc, char **argv)
782{
783 (void) argc;
784 (void) argv;
785 pacc = pci_alloc();
786 return 0;
787}
788endef
789export LIBPCI_TEST
790
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000791define LIBUSB0_TEST
792#include <usb.h>
793int main(int argc, char **argv)
794{
795 (void) argc;
796 (void) argv;
797 usb_init();
798 return 0;
799}
800endef
801export LIBUSB0_TEST
802
803hwlibs: compiler
804 @printf "" > .libdeps
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000805ifeq ($(CHECK_LIBPCI), yes)
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000806 @printf "Checking for libpci headers... "
Stefan Tauner56787082011-08-18 02:27:19 +0000807 @echo "$$LIBPCI_TEST" > .test.c
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000808 @$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >/dev/null && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000809 echo "found." || ( echo "not found."; echo; \
810 echo "Please install libpci headers (package pciutils-devel)."; \
811 echo "See README for more information."; echo; \
812 rm -f .test.c .test.o; exit 1)
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000813 @printf "Checking if libpci is present and sufficient... "
Carl-Daniel Hailfinger26148ae2012-11-29 22:22:04 +0000814 @$(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) $(PCILIBS) >/dev/null && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000815 echo "yes." || ( echo "no."; \
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000816 printf "Checking if libz+libpci are present and sufficient..."; \
Carl-Daniel Hailfinger26148ae2012-11-29 22:22:04 +0000817 $(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) $(PCILIBS) -lz >/dev/null && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000818 ( echo "yes."; echo "NEEDLIBZ := yes" > .libdeps ) || ( echo "no."; echo; \
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000819 echo "Please install libpci (package pciutils) and/or libz."; \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000820 echo "See README for more information."; echo; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000821 rm -f .test.c .test.o .test$(EXEC_SUFFIX); exit 1) )
822 @rm -f .test.c .test.o .test$(EXEC_SUFFIX)
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000823endif
824ifeq ($(CHECK_LIBUSB0), yes)
825 @printf "Checking for libusb-0.1/libusb-compat headers... "
826 @echo "$$LIBUSB0_TEST" > .test.c
827 @$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >/dev/null && \
828 echo "found." || ( echo "not found."; echo; \
829 echo "Please install libusb-0.1 headers or libusb-compat headers."; \
830 echo "See README for more information."; echo; \
831 rm -f .test.c .test.o; exit 1)
832 @printf "Checking if libusb-0.1 is usable... "
Carl-Daniel Hailfinger26148ae2012-11-29 22:22:04 +0000833 @$(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) $(USBLIBS) >/dev/null && \
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000834 echo "yes." || ( echo "no."; \
835 echo "Please install libusb-0.1 or libusb-compat."; \
836 echo "See README for more information."; echo; \
837 rm -f .test.c .test.o .test$(EXEC_SUFFIX); exit 1)
838 @rm -f .test.c .test.o .test$(EXEC_SUFFIX)
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000839endif
Stefan Reinauer53e96252005-12-01 16:19:24 +0000840
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000841.features: features
842
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000843# If a user does not explicitly request a non-working feature, we should
844# silently disable it. However, if a non-working (does not compile) feature
845# is explicitly requested, we should bail out with a descriptive error message.
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000846# We also have to check that at least one programmer driver is enabled.
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000847featuresavailable:
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000848ifeq ($(PROGRAMMER_OBJS),)
849 @echo "You have to enable at least one programmer driver!"
850 @false
851endif
852ifneq ($(UNSUPPORTED_FEATURES), )
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000853 @echo "The following features are unavailable on your machine: $(UNSUPPORTED_FEATURES)"
854 @false
855endif
856
Stefan Tauner56787082011-08-18 02:27:19 +0000857define FTDI_TEST
858#include <ftdi.h>
859struct ftdi_context *ftdic = NULL;
860int main(int argc, char **argv)
861{
862 (void) argc;
863 (void) argv;
864 return ftdi_init(ftdic);
865}
866endef
867export FTDI_TEST
868
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000869define FTDI_232H_TEST
870#include <ftdi.h>
871enum ftdi_chip_type type = TYPE_232H;
872endef
873export FTDI_232H_TEST
874
Stefan Tauner56787082011-08-18 02:27:19 +0000875define UTSNAME_TEST
876#include <sys/utsname.h>
877struct utsname osinfo;
878int main(int argc, char **argv)
879{
880 (void) argc;
881 (void) argv;
882 uname (&osinfo);
883 return 0;
884}
885endef
886export UTSNAME_TEST
887
Stefan Tauner8868db32012-03-13 00:18:19 +0000888define LINUX_SPI_TEST
889#include <linux/types.h>
890#include <linux/spi/spidev.h>
891
892int main(int argc, char **argv)
893{
894 (void) argc;
895 (void) argv;
896 return 0;
897}
898endef
899export LINUX_SPI_TEST
900
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000901features: compiler
902 @echo "FEATURES := yes" > .features.tmp
James Lairdc60de0e2013-03-27 13:00:23 +0000903ifeq ($(NEED_FTDI), yes)
Paul Fox05dfbe62009-06-16 21:08:06 +0000904 @printf "Checking for FTDI support... "
Stefan Tauner56787082011-08-18 02:27:19 +0000905 @echo "$$FTDI_TEST" > .featuretest.c
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000906 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) $(FTDILIBS) $(LIBS) >/dev/null 2>&1 && \
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000907 ( echo "found."; echo "FTDISUPPORT := yes" >> .features.tmp ) || \
908 ( echo "not found."; echo "FTDISUPPORT := no" >> .features.tmp )
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000909 @printf "Checking for FT232H support in libftdi... "
910 @echo "$$FTDI_232H_TEST" >> .featuretest.c
911 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) $(FTDILIBS) $(LIBS) >/dev/null 2>&1 && \
912 ( echo "found."; echo "FT232H := yes" >> .features.tmp ) || \
913 ( echo "not found."; echo "FT232H := no" >> .features.tmp )
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000914endif
Stefan Tauner8868db32012-03-13 00:18:19 +0000915ifeq ($(CONFIG_LINUX_SPI), yes)
916 @printf "Checking if Linux SPI headers are present... "
917 @echo "$$LINUX_SPI_TEST" > .featuretest.c
918 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \
919 ( echo "yes."; echo "LINUX_SPI_SUPPORT := yes" >> .features.tmp ) || \
920 ( echo "no."; echo "LINUX_SPI_SUPPORT := no" >> .features.tmp )
921endif
Stefan Tauner56787082011-08-18 02:27:19 +0000922 @printf "Checking for utsname support... "
923 @echo "$$UTSNAME_TEST" > .featuretest.c
924 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \
925 ( echo "found."; echo "UTSNAME := yes" >> .features.tmp ) || \
926 ( echo "not found."; echo "UTSNAME := no" >> .features.tmp )
927 @$(DIFF) -q .features.tmp .features >/dev/null 2>&1 && rm .features.tmp || mv .features.tmp .features
928 @rm -f .featuretest.c .featuretest$(EXEC_SUFFIX)
Paul Fox05dfbe62009-06-16 21:08:06 +0000929
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000930$(PROGRAM).8: $(PROGRAM).8.tmpl
931 @sed -e '1 s#".*".*#"$(shell ./util/getrevision.sh -d $(PROGRAM).8.tmpl)" "$(VERSION)"#' <$< >$@
932
933install: $(PROGRAM)$(EXEC_SUFFIX) $(PROGRAM).8
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +0000934 mkdir -p $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000935 mkdir -p $(DESTDIR)$(MANDIR)/man8
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000936 $(INSTALL) -m 0755 $(PROGRAM)$(EXEC_SUFFIX) $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000937 $(INSTALL) -m 0644 $(PROGRAM).8 $(DESTDIR)$(MANDIR)/man8
Uwe Hermannc113b572006-12-14 00:59:41 +0000938
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000939export: $(PROGRAM).8
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000940 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)
941 @svn export -r BASE . $(EXPORTDIR)/flashrom-$(RELEASENAME)
942 @sed "s/^SVNVERSION.*/SVNVERSION := $(SVNVERSION)/" Makefile >$(EXPORTDIR)/flashrom-$(RELEASENAME)/Makefile
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000943 @cp $(PROGRAM).8 "$(EXPORTDIR)/flashrom-$(RELEASENAME)/$(PROGRAM).8"
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000944 @LC_ALL=C svn log >$(EXPORTDIR)/flashrom-$(RELEASENAME)/ChangeLog
945 @echo Exported $(EXPORTDIR)/flashrom-$(RELEASENAME)/
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000946
947tarball: export
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000948 @tar cjf $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 -C $(EXPORTDIR)/ $(TAROPTIONS) flashrom-$(RELEASENAME)/
949 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)
950 @echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000951
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000952djgpp-dos: clean
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000953 make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip
954libpayload: clean
955 make CC="CC=i386-elf-gcc lpgcc" AR=i386-elf-ar RANLIB=i386-elf-ranlib
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000956
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000957.PHONY: all install clean distclean compiler hwlibs features export tarball dos featuresavailable
Ollie Lho184a4042005-11-26 21:55:36 +0000958
Stefan Reinauere2f01582010-06-07 11:08:07 +0000959-include $(OBJS:.o=.d)