blob: 7f7aa92b1a267853ffd67d6d1c228d8a68f6c2c2 [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
Kyösti Mälkki72d42f82014-06-01 23:48:31 +0000200ifeq ($(CONFIG_IT8212), yes)
201UNSUPPORTED_FEATURES += CONFIG_IT8212=yes
202else
203override CONFIG_IT8212 = no
204endif
Uwe Hermannd5e85d62011-07-03 19:44:12 +0000205ifeq ($(CONFIG_DRKAISER), yes)
206UNSUPPORTED_FEATURES += CONFIG_DRKAISER=yes
207else
208override CONFIG_DRKAISER = no
209endif
210ifeq ($(CONFIG_NICREALTEK), yes)
211UNSUPPORTED_FEATURES += CONFIG_NICREALTEK=yes
212else
213override CONFIG_NICREALTEK = no
214endif
215ifeq ($(CONFIG_NICNATSEMI), yes)
216UNSUPPORTED_FEATURES += CONFIG_NICNATSEMI=yes
217else
218override CONFIG_NICNATSEMI = no
219endif
220ifeq ($(CONFIG_NICINTEL), yes)
221UNSUPPORTED_FEATURES += CONFIG_NICINTEL=yes
222else
223override CONFIG_NICINTEL = no
224endif
225ifeq ($(CONFIG_NICINTEL_SPI), yes)
226UNSUPPORTED_FEATURES += CONFIG_NICINTEL_SPI=yes
227else
228override CONFIG_NICINTEL_SPI = no
229endif
230ifeq ($(CONFIG_OGP_SPI), yes)
231UNSUPPORTED_FEATURES += CONFIG_OGP_SPI=yes
232else
233override CONFIG_OGP_SPI = no
234endif
235ifeq ($(CONFIG_SATAMV), yes)
236UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes
237else
238override CONFIG_SATAMV = no
239endif
240endif
241
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000242ifeq ($(TARGET_OS), libpayload)
Stefan Tauner8e19b042013-08-28 09:55:04 +0000243ifeq ($(MAKECMDGOALS),)
244.DEFAULT_GOAL := libflashrom.a
245$(info Setting default goal to libflashrom.a)
246endif
Carl-Daniel Hailfingera8da2242012-08-15 23:06:32 +0000247FLASHROM_CFLAGS += -DSTANDALONE
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000248ifeq ($(CONFIG_DUMMY), yes)
249UNSUPPORTED_FEATURES += CONFIG_DUMMY=yes
250else
251override CONFIG_DUMMY = no
252endif
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000253# Bus Pirate, Serprog and PonyProg are not supported with libpayload (missing serial support).
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000254ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
255UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes
256else
257override CONFIG_BUSPIRATE_SPI = no
258endif
259ifeq ($(CONFIG_SERPROG), yes)
260UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes
261else
262override CONFIG_SERPROG = no
263endif
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000264ifeq ($(CONFIG_PONY_SPI), yes)
265UNSUPPORTED_FEATURES += CONFIG_PONY_SPI=yes
266else
267override CONFIG_PONY_SPI = no
268endif
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000269# Dediprog and FT2232 are not supported with libpayload (missing libusb support)
270ifeq ($(CONFIG_DEDIPROG), yes)
271UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes
272else
273override CONFIG_DEDIPROG = no
274endif
275ifeq ($(CONFIG_FT2232_SPI), yes)
276UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes
277else
278override CONFIG_FT2232_SPI = no
279endif
James Lairdc60de0e2013-03-27 13:00:23 +0000280ifeq ($(CONFIG_USBBLASTER_SPI), yes)
281UNSUPPORTED_FEATURES += CONFIG_USBBLASTER_SPI=yes
282else
283override CONFIG_USBBLASTER_SPI = no
284endif
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000285endif
286
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000287ifneq ($(TARGET_OS), Linux)
288ifeq ($(CONFIG_LINUX_SPI), yes)
289UNSUPPORTED_FEATURES += CONFIG_LINUX_SPI=yes
290else
291override CONFIG_LINUX_SPI = no
292endif
293endif
294
Stefan Tauner037cd842013-08-25 00:10:56 +0000295###############################################################################
296# General architecture-specific settings.
297# Like above for the OS, below we verify user-supplied options depending on the target architecture.
298
Uwe Hermann44ffd582011-08-20 14:16:00 +0000299# Determine the destination processor architecture.
300# IMPORTANT: The following line must be placed before ARCH is ever used
301# (of course), but should come after any lines setting CC because the line
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000302# below uses CC itself.
303override 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 +0000304
David Hendricksb286da72012-02-13 00:35:35 +0000305# PCI port I/O support is unimplemented on PPC/MIPS and unavailable on ARM.
306# Right now this means the drivers below only work on x86.
307ifneq ($(ARCH), x86)
Uwe Hermann21b10c62011-07-29 12:13:01 +0000308ifeq ($(CONFIG_NIC3COM), yes)
309UNSUPPORTED_FEATURES += CONFIG_NIC3COM=yes
310else
311override CONFIG_NIC3COM = no
312endif
313ifeq ($(CONFIG_NICREALTEK), yes)
314UNSUPPORTED_FEATURES += CONFIG_NICREALTEK=yes
315else
316override CONFIG_NICREALTEK = no
317endif
318ifeq ($(CONFIG_NICNATSEMI), yes)
319UNSUPPORTED_FEATURES += CONFIG_NICNATSEMI=yes
320else
321override CONFIG_NICNATSEMI = no
322endif
323ifeq ($(CONFIG_RAYER_SPI), yes)
324UNSUPPORTED_FEATURES += CONFIG_RAYER_SPI=yes
325else
326override CONFIG_RAYER_SPI = no
327endif
328ifeq ($(CONFIG_ATAHPT), yes)
329UNSUPPORTED_FEATURES += CONFIG_ATAHPT=yes
330else
331override CONFIG_ATAHPT = no
332endif
333ifeq ($(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
Kyösti Mälkki72d42f82014-06-01 23:48:31 +0000439# Always enable ITE IT8212F PATA controllers for now.
440CONFIG_IT8212 ?= yes
441
Carl-Daniel Hailfinger6161ff12009-11-16 21:22:24 +0000442# Disable wiki printing by default. It is only useful if you have wiki access.
Uwe Hermann2db77a02010-06-04 17:07:39 +0000443CONFIG_PRINT_WIKI ?= no
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000444
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000445# Bitbanging SPI infrastructure, default off unless needed.
446ifeq ($(CONFIG_RAYER_SPI), yes)
447override CONFIG_BITBANG_SPI = yes
448else
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000449ifeq ($(CONFIG_PONY_SPI), yes)
450override CONFIG_BITBANG_SPI = yes
451else
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000452ifeq ($(CONFIG_INTERNAL), yes)
453override CONFIG_BITBANG_SPI = yes
454else
455ifeq ($(CONFIG_NICINTEL_SPI), yes)
456override CONFIG_BITBANG_SPI = yes
457else
Mark Marshall90021f22010-12-03 14:48:11 +0000458ifeq ($(CONFIG_OGP_SPI), yes)
459override CONFIG_BITBANG_SPI = yes
460else
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000461CONFIG_BITBANG_SPI ?= no
462endif
463endif
464endif
Mark Marshall90021f22010-12-03 14:48:11 +0000465endif
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000466endif
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000467
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000468###############################################################################
Sean Nelson4c6d3a42013-09-11 23:35:03 +0000469# Handle CONFIG_* variables that depend on others set (and verified) above.
470
471# The external DMI decoder (dmidecode) does not work in libpayload. Bail out if the internal one got disabled.
472ifeq ($(TARGET_OS), libpayload)
473ifeq ($(CONFIG_INTERNAL), yes)
474ifeq ($(CONFIG_INTERNAL_DMI), no)
475UNSUPPORTED_FEATURES += CONFIG_INTERNAL_DMI=no
476else
477override CONFIG_INTERNAL_DMI = yes
478endif
479endif
480endif
481
482# Use internal DMI/SMBIOS decoder by default instead of relying on dmidecode.
483CONFIG_INTERNAL_DMI ?= yes
484
485###############################################################################
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000486# Programmer drivers and programmer support infrastructure.
Stefan Tauner037cd842013-08-25 00:10:56 +0000487# Depending on the CONFIG_* variables set and verified above we set compiler flags and parameters below.
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000488
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000489FEATURE_CFLAGS += -D'CONFIG_DEFAULT_PROGRAMMER=$(CONFIG_DEFAULT_PROGRAMMER)'
490
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000491ifeq ($(CONFIG_INTERNAL), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000492FEATURE_CFLAGS += -D'CONFIG_INTERNAL=1'
Sean Nelson4c6d3a42013-09-11 23:35:03 +0000493PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o internal.o
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000494ifeq ($(ARCH), x86)
Rudolf Marek70e14592013-07-25 22:58:56 +0000495PROGRAMMER_OBJS += it87spi.o it85spi.o sb600spi.o amd_imc.o wbsio_spi.o mcp6x_spi.o
Sean Nelson4c6d3a42013-09-11 23:35:03 +0000496PROGRAMMER_OBJS += ichspi.o ich_descriptors.o dmi.o
497ifeq ($(CONFIG_INTERNAL_DMI), yes)
498FEATURE_CFLAGS += -D'CONFIG_INTERNAL_DMI=1'
499endif
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000500else
501endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000502NEED_PCI := yes
503endif
504
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000505ifeq ($(CONFIG_SERPROG), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000506FEATURE_CFLAGS += -D'CONFIG_SERPROG=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000507PROGRAMMER_OBJS += serprog.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000508NEED_SERIAL := yes
509NEED_NET := yes
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000510endif
511
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000512ifeq ($(CONFIG_RAYER_SPI), yes)
513FEATURE_CFLAGS += -D'CONFIG_RAYER_SPI=1'
514PROGRAMMER_OBJS += rayer_spi.o
515# Actually, NEED_PCI is wrong. NEED_IOPORT_ACCESS would be more correct.
516NEED_PCI := yes
517endif
518
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000519ifeq ($(CONFIG_PONY_SPI), yes)
520FEATURE_CFLAGS += -D'CONFIG_PONY_SPI=1'
521PROGRAMMER_OBJS += pony_spi.o
522NEED_SERIAL := yes
523endif
524
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000525ifeq ($(CONFIG_BITBANG_SPI), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000526FEATURE_CFLAGS += -D'CONFIG_BITBANG_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000527PROGRAMMER_OBJS += bitbang_spi.o
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000528endif
529
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000530ifeq ($(CONFIG_NIC3COM), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000531FEATURE_CFLAGS += -D'CONFIG_NIC3COM=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000532PROGRAMMER_OBJS += nic3com.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000533NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000534endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000535
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000536ifeq ($(CONFIG_GFXNVIDIA), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000537FEATURE_CFLAGS += -D'CONFIG_GFXNVIDIA=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000538PROGRAMMER_OBJS += gfxnvidia.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000539NEED_PCI := yes
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000540endif
541
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000542ifeq ($(CONFIG_SATASII), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000543FEATURE_CFLAGS += -D'CONFIG_SATASII=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000544PROGRAMMER_OBJS += satasii.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000545NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000546endif
547
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000548ifeq ($(CONFIG_ATAHPT), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000549FEATURE_CFLAGS += -D'CONFIG_ATAHPT=1'
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000550PROGRAMMER_OBJS += atahpt.o
551NEED_PCI := yes
552endif
553
Jonathan Kollasch7f0f3fa2014-06-01 10:26:23 +0000554ifeq ($(CONFIG_ATAVIA), yes)
555FEATURE_CFLAGS += -D'CONFIG_ATAVIA=1'
556PROGRAMMER_OBJS += atavia.o
557NEED_PCI := yes
558endif
559
Kyösti Mälkki72d42f82014-06-01 23:48:31 +0000560ifeq ($(CONFIG_IT8212), yes)
561FEATURE_CFLAGS += -D'CONFIG_IT8212=1'
562PROGRAMMER_OBJS += it8212.o
563NEED_PCI := yes
564endif
565
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000566ifeq ($(CONFIG_FT2232_SPI), yes)
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000567# This is a totally ugly hack.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000568FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "-D'CONFIG_FT2232_SPI=1'")
James Lairdc60de0e2013-03-27 13:00:23 +0000569NEED_FTDI := yes
570PROGRAMMER_OBJS += ft2232_spi.o
571endif
572
573ifeq ($(CONFIG_USBBLASTER_SPI), yes)
574# This is a totally ugly hack.
575FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "-D'CONFIG_USBBLASTER_SPI=1'")
576NEED_FTDI := yes
577PROGRAMMER_OBJS += usbblaster_spi.o
578endif
579
580ifeq ($(NEED_FTDI), yes)
581FTDILIBS := $(shell pkg-config --libs libftdi 2>/dev/null || printf "%s" "-lftdi -lusb")
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000582FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "FT232H := yes" .features && printf "%s" "-D'HAVE_FT232H=1'")
Jörg Mayer8776db22009-11-16 14:05:13 +0000583FEATURE_LIBS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "$(FTDILIBS)")
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000584# We can't set NEED_USB here because that would transform libftdi auto-enabling
585# into a hard requirement for libusb, defeating the purpose of auto-enabling.
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000586endif
587
588ifeq ($(CONFIG_DUMMY), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000589FEATURE_CFLAGS += -D'CONFIG_DUMMY=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000590PROGRAMMER_OBJS += dummyflasher.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000591endif
592
593ifeq ($(CONFIG_DRKAISER), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000594FEATURE_CFLAGS += -D'CONFIG_DRKAISER=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000595PROGRAMMER_OBJS += drkaiser.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000596NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000597endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000598
Joerg Fischer5665ef32010-05-21 21:54:07 +0000599ifeq ($(CONFIG_NICREALTEK), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000600FEATURE_CFLAGS += -D'CONFIG_NICREALTEK=1'
Joerg Fischer5665ef32010-05-21 21:54:07 +0000601PROGRAMMER_OBJS += nicrealtek.o
602NEED_PCI := yes
603endif
604
Andrew Morganc29c2e72010-06-07 22:37:54 +0000605ifeq ($(CONFIG_NICNATSEMI), yes)
606FEATURE_CFLAGS += -D'CONFIG_NICNATSEMI=1'
607PROGRAMMER_OBJS += nicnatsemi.o
608NEED_PCI := yes
609endif
610
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000611ifeq ($(CONFIG_NICINTEL), yes)
612FEATURE_CFLAGS += -D'CONFIG_NICINTEL=1'
613PROGRAMMER_OBJS += nicintel.o
614NEED_PCI := yes
615endif
616
Idwer Vollering004f4b72010-09-03 18:21:21 +0000617ifeq ($(CONFIG_NICINTEL_SPI), yes)
618FEATURE_CFLAGS += -D'CONFIG_NICINTEL_SPI=1'
619PROGRAMMER_OBJS += nicintel_spi.o
620NEED_PCI := yes
621endif
622
Mark Marshall90021f22010-12-03 14:48:11 +0000623ifeq ($(CONFIG_OGP_SPI), yes)
624FEATURE_CFLAGS += -D'CONFIG_OGP_SPI=1'
625PROGRAMMER_OBJS += ogp_spi.o
626NEED_PCI := yes
627endif
628
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000629ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
630FEATURE_CFLAGS += -D'CONFIG_BUSPIRATE_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000631PROGRAMMER_OBJS += buspirate_spi.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000632NEED_SERIAL := yes
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000633endif
634
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000635ifeq ($(CONFIG_DEDIPROG), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000636FEATURE_CFLAGS += -D'CONFIG_DEDIPROG=1'
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000637PROGRAMMER_OBJS += dediprog.o
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000638NEED_USB := yes
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000639endif
640
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000641ifeq ($(CONFIG_SATAMV), yes)
642FEATURE_CFLAGS += -D'CONFIG_SATAMV=1'
643PROGRAMMER_OBJS += satamv.o
644NEED_PCI := yes
645endif
646
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000647ifeq ($(CONFIG_LINUX_SPI), yes)
Stefan Tauner8868db32012-03-13 00:18:19 +0000648# This is a totally ugly hack.
649FEATURE_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 +0000650PROGRAMMER_OBJS += linux_spi.o
651endif
652
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000653ifeq ($(NEED_SERIAL), yes)
Sean Nelson5d134642009-12-24 16:54:21 +0000654LIB_OBJS += serial.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000655endif
656
657ifeq ($(NEED_NET), yes)
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000658ifeq ($(TARGET_OS), SunOS)
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000659LIBS += -lsocket
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000660endif
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +0000661endif
662
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000663ifeq ($(NEED_PCI), yes)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000664CHECK_LIBPCI = yes
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000665FEATURE_CFLAGS += -D'NEED_PCI=1'
Carl-Daniel Hailfingerfb0828f2010-02-12 19:35:25 +0000666PROGRAMMER_OBJS += pcidev.o physmap.o hwaccess.o
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000667ifeq ($(TARGET_OS), NetBSD)
Carl-Daniel Hailfinger460b2822010-06-04 23:24:57 +0000668# The libpci we want is called libpciutils on NetBSD and needs NetBSD libpci.
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000669PCILIBS += -lpciutils -lpci
Carl-Daniel Hailfinger460b2822010-06-04 23:24:57 +0000670# For (i386|x86_64)_iopl(2).
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000671PCILIBS += -l$(shell uname -p)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000672else
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000673ifeq ($(TARGET_OS), DOS)
Stefan Tauner449abe22013-09-11 23:34:57 +0000674CPPFLAGS += -I$(DOSLIBS_BASE)/libpci/include
675LDFLAGS += -L$(DOSLIBS_BASE)/libpci/lib/
676PCILIBS += -lpci
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000677else
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000678PCILIBS += -lpci
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000679ifeq ($(TARGET_OS), OpenBSD)
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +0000680# For (i386|amd64)_iopl(2).
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000681PCILIBS += -l$(shell uname -m)
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000682else
683ifeq ($(TARGET_OS), Darwin)
684# DirectHW framework can be found in the DirectHW library.
Stefan Taunere34e3e82013-01-01 00:06:51 +0000685PCILIBS += -framework IOKit -framework DirectHW
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000686else
687endif
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +0000688endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000689endif
Jonathan A. Kollasch3646c8f2010-01-08 21:18:08 +0000690endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000691endif
692
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000693ifeq ($(NEED_USB), yes)
694CHECK_LIBUSB0 = yes
695FEATURE_CFLAGS += -D'NEED_USB=1'
696USBLIBS := $(shell pkg-config --libs libusb 2>/dev/null || printf "%s" "-lusb")
697endif
698
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000699ifeq ($(CONFIG_PRINT_WIKI), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000700FEATURE_CFLAGS += -D'CONFIG_PRINT_WIKI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000701CLI_OBJS += print_wiki.o
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000702endif
703
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000704FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "UTSNAME := yes" .features && printf "%s" "-D'HAVE_UTSNAME=1'")
705
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000706# We could use PULLED_IN_LIBS, but that would be ugly.
707FEATURE_LIBS += $(shell LC_ALL=C grep -q "NEEDLIBZ := yes" .libdeps && printf "%s" "-lz")
708
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000709LIBFLASHROM_OBJS = $(CHIP_OBJS) $(PROGRAMMER_OBJS) $(LIB_OBJS)
Stefan Taunerd94d25d2012-07-28 03:17:15 +0000710OBJS = $(CLI_OBJS) $(LIBFLASHROM_OBJS)
Sean Nelson5d134642009-12-24 16:54:21 +0000711
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000712all: hwlibs features $(PROGRAM)$(EXEC_SUFFIX) $(PROGRAM).8
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000713ifeq ($(ARCH), x86)
714 @+$(MAKE) -C util/ich_descriptors_tool/ TARGET_OS=$(TARGET_OS) EXEC_SUFFIX=$(EXEC_SUFFIX)
715endif
716
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000717$(PROGRAM)$(EXEC_SUFFIX): $(OBJS)
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000718 $(CC) $(LDFLAGS) -o $(PROGRAM)$(EXEC_SUFFIX) $(OBJS) $(LIBS) $(PCILIBS) $(FEATURE_LIBS) $(USBLIBS)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000719
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000720libflashrom.a: $(LIBFLASHROM_OBJS)
721 $(AR) rcs $@ $^
722 $(RANLIB) $@
723
Carl-Daniel Hailfinger8ef7dce2009-07-10 20:19:48 +0000724# TAROPTIONS reduces information leakage from the packager's system.
725# If other tar programs support command line arguments for setting uid/gid of
726# stored files, they can be handled here as well.
727TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root --group=root")
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000728
Paul Fox05dfbe62009-06-16 21:08:06 +0000729%.o: %.c .features
Carl-Daniel Hailfingera8da2242012-08-15 23:06:32 +0000730 $(CC) -MMD $(CFLAGS) $(CPPFLAGS) $(FLASHROM_CFLAGS) $(FEATURE_CFLAGS) $(SVNDEF) -o $@ -c $<
Clark Rawlins02016f72008-02-14 23:22:20 +0000731
Carl-Daniel Hailfingera0020df2010-05-30 22:35:14 +0000732# Make sure to add all names of generated binaries here.
733# This includes all frontends and libflashrom.
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000734# We don't use EXEC_SUFFIX here because we want to clean everything.
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000735clean:
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000736 rm -f $(PROGRAM) $(PROGRAM).exe libflashrom.a *.o *.d $(PROGRAM).8
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000737 @+$(MAKE) -C util/ich_descriptors_tool/ clean
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000738
Ollie Lho184a4042005-11-26 21:55:36 +0000739distclean: clean
Stefan Reinauere2f01582010-06-07 11:08:07 +0000740 rm -f .features .libdeps
Christian Ruppertdb9d9f42009-05-14 14:17:07 +0000741
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000742strip: $(PROGRAM)$(EXEC_SUFFIX)
743 $(STRIP) $(STRIP_ARGS) $(PROGRAM)$(EXEC_SUFFIX)
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000744
Stefan Tauner56787082011-08-18 02:27:19 +0000745# to define test programs we use verbatim variables, which get exported
746# to environment variables and are referenced with $$<varname> later
747
748define COMPILER_TEST
749int main(int argc, char **argv)
750{
751 (void) argc;
752 (void) argv;
753 return 0;
754}
755endef
756export COMPILER_TEST
757
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000758compiler: featuresavailable
Paul Fox05dfbe62009-06-16 21:08:06 +0000759 @printf "Checking for a C compiler... "
Stefan Tauner56787082011-08-18 02:27:19 +0000760 @echo "$$COMPILER_TEST" > .test.c
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000761 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .test.c -o .test$(EXEC_SUFFIX) >/dev/null && \
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000762 echo "found." || ( echo "not found."; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000763 rm -f .test.c .test$(EXEC_SUFFIX); exit 1)
764 @rm -f .test.c .test$(EXEC_SUFFIX)
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000765 @printf "Target arch is "
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000766 @# FreeBSD wc will output extraneous whitespace.
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000767 @echo $(ARCH)|wc -w|grep -q '^[[:blank:]]*1[[:blank:]]*$$' || \
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000768 ( echo "unknown. Aborting."; exit 1)
769 @printf "%s\n" '$(ARCH)'
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000770 @printf "Target OS is "
771 @# FreeBSD wc will output extraneous whitespace.
772 @echo $(TARGET_OS)|wc -w|grep -q '^[[:blank:]]*1[[:blank:]]*$$' || \
773 ( echo "unknown. Aborting."; exit 1)
774 @printf "%s\n" '$(TARGET_OS)'
Stefan Taunerd6c17f62013-09-12 14:04:31 +0000775ifeq ($(TARGET_OS), libpayload)
776 @$(CC) --version 2>&1 | grep -q coreboot || \
777 ( echo "Warning: It seems you are not using coreboot's reference compiler."; \
778 echo "This might work but usually does not, please beware." )
779endif
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000780
Stefan Tauner56787082011-08-18 02:27:19 +0000781define LIBPCI_TEST
782/* Avoid a failing test due to libpci header symbol shadowing breakage */
783#define index shadow_workaround_index
Stefan Taunerc65b8552013-09-12 15:48:39 +0000784#if !defined __NetBSD__ && !defined __DragonFly__
Stefan Tauner56787082011-08-18 02:27:19 +0000785#include <pci/pci.h>
Stefan Taunerc65b8552013-09-12 15:48:39 +0000786#else
787#include <pciutils/pci.h>
788#endif
Stefan Tauner56787082011-08-18 02:27:19 +0000789struct pci_access *pacc;
790int main(int argc, char **argv)
791{
792 (void) argc;
793 (void) argv;
794 pacc = pci_alloc();
795 return 0;
796}
797endef
798export LIBPCI_TEST
799
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000800define LIBUSB0_TEST
801#include <usb.h>
802int main(int argc, char **argv)
803{
804 (void) argc;
805 (void) argv;
806 usb_init();
807 return 0;
808}
809endef
810export LIBUSB0_TEST
811
812hwlibs: compiler
813 @printf "" > .libdeps
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000814ifeq ($(CHECK_LIBPCI), yes)
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000815 @printf "Checking for libpci headers... "
Stefan Tauner56787082011-08-18 02:27:19 +0000816 @echo "$$LIBPCI_TEST" > .test.c
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000817 @$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >/dev/null && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000818 echo "found." || ( echo "not found."; echo; \
819 echo "Please install libpci headers (package pciutils-devel)."; \
820 echo "See README for more information."; echo; \
821 rm -f .test.c .test.o; exit 1)
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000822 @printf "Checking if libpci is present and sufficient... "
Carl-Daniel Hailfinger26148ae2012-11-29 22:22:04 +0000823 @$(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) $(PCILIBS) >/dev/null && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000824 echo "yes." || ( echo "no."; \
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000825 printf "Checking if libz+libpci are present and sufficient..."; \
Carl-Daniel Hailfinger26148ae2012-11-29 22:22:04 +0000826 $(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) $(PCILIBS) -lz >/dev/null && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000827 ( echo "yes."; echo "NEEDLIBZ := yes" > .libdeps ) || ( echo "no."; echo; \
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000828 echo "Please install libpci (package pciutils) and/or libz."; \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000829 echo "See README for more information."; echo; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000830 rm -f .test.c .test.o .test$(EXEC_SUFFIX); exit 1) )
831 @rm -f .test.c .test.o .test$(EXEC_SUFFIX)
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000832endif
833ifeq ($(CHECK_LIBUSB0), yes)
834 @printf "Checking for libusb-0.1/libusb-compat headers... "
835 @echo "$$LIBUSB0_TEST" > .test.c
836 @$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >/dev/null && \
837 echo "found." || ( echo "not found."; echo; \
838 echo "Please install libusb-0.1 headers or libusb-compat headers."; \
839 echo "See README for more information."; echo; \
840 rm -f .test.c .test.o; exit 1)
841 @printf "Checking if libusb-0.1 is usable... "
Carl-Daniel Hailfinger26148ae2012-11-29 22:22:04 +0000842 @$(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) $(USBLIBS) >/dev/null && \
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000843 echo "yes." || ( echo "no."; \
844 echo "Please install libusb-0.1 or libusb-compat."; \
845 echo "See README for more information."; echo; \
846 rm -f .test.c .test.o .test$(EXEC_SUFFIX); exit 1)
847 @rm -f .test.c .test.o .test$(EXEC_SUFFIX)
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000848endif
Stefan Reinauer53e96252005-12-01 16:19:24 +0000849
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000850.features: features
851
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000852# If a user does not explicitly request a non-working feature, we should
853# silently disable it. However, if a non-working (does not compile) feature
854# is explicitly requested, we should bail out with a descriptive error message.
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000855# We also have to check that at least one programmer driver is enabled.
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000856featuresavailable:
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000857ifeq ($(PROGRAMMER_OBJS),)
858 @echo "You have to enable at least one programmer driver!"
859 @false
860endif
861ifneq ($(UNSUPPORTED_FEATURES), )
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000862 @echo "The following features are unavailable on your machine: $(UNSUPPORTED_FEATURES)"
863 @false
864endif
865
Stefan Tauner56787082011-08-18 02:27:19 +0000866define FTDI_TEST
867#include <ftdi.h>
868struct ftdi_context *ftdic = NULL;
869int main(int argc, char **argv)
870{
871 (void) argc;
872 (void) argv;
873 return ftdi_init(ftdic);
874}
875endef
876export FTDI_TEST
877
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000878define FTDI_232H_TEST
879#include <ftdi.h>
880enum ftdi_chip_type type = TYPE_232H;
881endef
882export FTDI_232H_TEST
883
Stefan Tauner56787082011-08-18 02:27:19 +0000884define UTSNAME_TEST
885#include <sys/utsname.h>
886struct utsname osinfo;
887int main(int argc, char **argv)
888{
889 (void) argc;
890 (void) argv;
891 uname (&osinfo);
892 return 0;
893}
894endef
895export UTSNAME_TEST
896
Stefan Tauner8868db32012-03-13 00:18:19 +0000897define LINUX_SPI_TEST
898#include <linux/types.h>
899#include <linux/spi/spidev.h>
900
901int main(int argc, char **argv)
902{
903 (void) argc;
904 (void) argv;
905 return 0;
906}
907endef
908export LINUX_SPI_TEST
909
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000910features: compiler
911 @echo "FEATURES := yes" > .features.tmp
James Lairdc60de0e2013-03-27 13:00:23 +0000912ifeq ($(NEED_FTDI), yes)
Paul Fox05dfbe62009-06-16 21:08:06 +0000913 @printf "Checking for FTDI support... "
Stefan Tauner56787082011-08-18 02:27:19 +0000914 @echo "$$FTDI_TEST" > .featuretest.c
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000915 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) $(FTDILIBS) $(LIBS) >/dev/null 2>&1 && \
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000916 ( echo "found."; echo "FTDISUPPORT := yes" >> .features.tmp ) || \
917 ( echo "not found."; echo "FTDISUPPORT := no" >> .features.tmp )
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000918 @printf "Checking for FT232H support in libftdi... "
919 @echo "$$FTDI_232H_TEST" >> .featuretest.c
920 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) $(FTDILIBS) $(LIBS) >/dev/null 2>&1 && \
921 ( echo "found."; echo "FT232H := yes" >> .features.tmp ) || \
922 ( echo "not found."; echo "FT232H := no" >> .features.tmp )
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000923endif
Stefan Tauner8868db32012-03-13 00:18:19 +0000924ifeq ($(CONFIG_LINUX_SPI), yes)
925 @printf "Checking if Linux SPI headers are present... "
926 @echo "$$LINUX_SPI_TEST" > .featuretest.c
927 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \
928 ( echo "yes."; echo "LINUX_SPI_SUPPORT := yes" >> .features.tmp ) || \
929 ( echo "no."; echo "LINUX_SPI_SUPPORT := no" >> .features.tmp )
930endif
Stefan Tauner56787082011-08-18 02:27:19 +0000931 @printf "Checking for utsname support... "
932 @echo "$$UTSNAME_TEST" > .featuretest.c
933 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \
934 ( echo "found."; echo "UTSNAME := yes" >> .features.tmp ) || \
935 ( echo "not found."; echo "UTSNAME := no" >> .features.tmp )
936 @$(DIFF) -q .features.tmp .features >/dev/null 2>&1 && rm .features.tmp || mv .features.tmp .features
937 @rm -f .featuretest.c .featuretest$(EXEC_SUFFIX)
Paul Fox05dfbe62009-06-16 21:08:06 +0000938
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000939$(PROGRAM).8: $(PROGRAM).8.tmpl
940 @sed -e '1 s#".*".*#"$(shell ./util/getrevision.sh -d $(PROGRAM).8.tmpl)" "$(VERSION)"#' <$< >$@
941
942install: $(PROGRAM)$(EXEC_SUFFIX) $(PROGRAM).8
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +0000943 mkdir -p $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000944 mkdir -p $(DESTDIR)$(MANDIR)/man8
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000945 $(INSTALL) -m 0755 $(PROGRAM)$(EXEC_SUFFIX) $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000946 $(INSTALL) -m 0644 $(PROGRAM).8 $(DESTDIR)$(MANDIR)/man8
Uwe Hermannc113b572006-12-14 00:59:41 +0000947
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000948export: $(PROGRAM).8
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000949 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)
950 @svn export -r BASE . $(EXPORTDIR)/flashrom-$(RELEASENAME)
951 @sed "s/^SVNVERSION.*/SVNVERSION := $(SVNVERSION)/" Makefile >$(EXPORTDIR)/flashrom-$(RELEASENAME)/Makefile
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000952 @cp $(PROGRAM).8 "$(EXPORTDIR)/flashrom-$(RELEASENAME)/$(PROGRAM).8"
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000953 @LC_ALL=C svn log >$(EXPORTDIR)/flashrom-$(RELEASENAME)/ChangeLog
954 @echo Exported $(EXPORTDIR)/flashrom-$(RELEASENAME)/
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000955
956tarball: export
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000957 @tar cjf $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 -C $(EXPORTDIR)/ $(TAROPTIONS) flashrom-$(RELEASENAME)/
958 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)
959 @echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000960
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000961djgpp-dos: clean
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000962 make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip
963libpayload: clean
964 make CC="CC=i386-elf-gcc lpgcc" AR=i386-elf-ar RANLIB=i386-elf-ranlib
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000965
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000966.PHONY: all install clean distclean compiler hwlibs features export tarball dos featuresavailable
Ollie Lho184a4042005-11-26 21:55:36 +0000967
Stefan Reinauere2f01582010-06-07 11:08:07 +0000968-include $(OBJS:.o=.d)