blob: ff2643985cb26b22c34da461aa9b52a7680af37c [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
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000101ifeq ($(TARGET_OS), DOS)
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000102EXEC_SUFFIX := .exe
Stefan Tauner449abe22013-09-11 23:34:57 +0000103CPPFLAGS += -I$(DOSLIBS_BASE)/libgetopt
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000104# DJGPP has odd uint*_t definitions which cause lots of format string warnings.
Carl-Daniel Hailfingerb7bce8a2012-08-14 21:36:11 +0000105CFLAGS += -Wno-format
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000106# FIXME Check if we can achieve the same effect with -L../libgetopt -lgetopt
Stefan Tauner449abe22013-09-11 23:34:57 +0000107LIBS += -lgetopt
108LDFLAGS += -L$(DOSLIBS_BASE)/libgetopt/
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000109# Bus Pirate, Serprog and PonyProg are not supported under DOS (missing serial support).
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000110ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
111UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes
112else
113override CONFIG_BUSPIRATE_SPI = no
114endif
115ifeq ($(CONFIG_SERPROG), yes)
116UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes
117else
118override CONFIG_SERPROG = no
119endif
Stefan Taunerd94d25d2012-07-28 03:17:15 +0000120ifeq ($(CONFIG_PONY_SPI), yes)
121UNSUPPORTED_FEATURES += CONFIG_PONY_SPI=yes
122else
123override CONFIG_PONY_SPI = no
124endif
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000125# Dediprog and FT2232 are not supported under DOS (missing USB support).
126ifeq ($(CONFIG_DEDIPROG), yes)
127UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes
128else
129override CONFIG_DEDIPROG = no
130endif
131ifeq ($(CONFIG_FT2232_SPI), yes)
132UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes
133else
134override CONFIG_FT2232_SPI = no
135endif
James Lairdc60de0e2013-03-27 13:00:23 +0000136ifeq ($(CONFIG_USBBLASTER_SPI), yes)
137UNSUPPORTED_FEATURES += CONFIG_USBBLASTER_SPI=yes
138else
139override CONFIG_USBBLASTER_SPI = no
140endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000141endif
Ollie Lho184a4042005-11-26 21:55:36 +0000142
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000143# FIXME: Should we check for Cygwin/MSVC as well?
144ifeq ($(TARGET_OS), MinGW)
145EXEC_SUFFIX := .exe
Uwe Hermannd5e85d62011-07-03 19:44:12 +0000146# MinGW doesn't have the ffs() function, but we can use gcc's __builtin_ffs().
Carl-Daniel Hailfingera8da2242012-08-15 23:06:32 +0000147FLASHROM_CFLAGS += -Dffs=__builtin_ffs
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000148# Some functions provided by Microsoft do not work as described in C99 specifications. This macro fixes that
149# for MinGW. See http://sourceforge.net/apps/trac/mingw-w64/wiki/printf%20and%20scanf%20family */
150FLASHROM_CFLAGS += -D__USE_MINGW_ANSI_STDIO=1
Uwe Hermannd5e85d62011-07-03 19:44:12 +0000151# libusb-win32/libftdi stuff is usually installed in /usr/local.
152CPPFLAGS += -I/usr/local/include
153LDFLAGS += -L/usr/local/lib
Uwe Hermannd5e85d62011-07-03 19:44:12 +0000154# For now we disable all PCI-based programmers on Windows/MinGW (no libpci).
155ifeq ($(CONFIG_INTERNAL), yes)
156UNSUPPORTED_FEATURES += CONFIG_INTERNAL=yes
157else
158override CONFIG_INTERNAL = no
159endif
160ifeq ($(CONFIG_RAYER_SPI), yes)
161UNSUPPORTED_FEATURES += CONFIG_RAYER_SPI=yes
162else
163override CONFIG_RAYER_SPI = no
164endif
165ifeq ($(CONFIG_NIC3COM), yes)
166UNSUPPORTED_FEATURES += CONFIG_NIC3COM=yes
167else
168override CONFIG_NIC3COM = no
169endif
170ifeq ($(CONFIG_GFXNVIDIA), yes)
171UNSUPPORTED_FEATURES += CONFIG_GFXNVIDIA=yes
172else
173override CONFIG_GFXNVIDIA = no
174endif
175ifeq ($(CONFIG_SATASII), yes)
176UNSUPPORTED_FEATURES += CONFIG_SATASII=yes
177else
178override CONFIG_SATASII = no
179endif
180ifeq ($(CONFIG_ATAHPT), yes)
181UNSUPPORTED_FEATURES += CONFIG_ATAHPT=yes
182else
183override CONFIG_ATAHPT = no
184endif
185ifeq ($(CONFIG_DRKAISER), yes)
186UNSUPPORTED_FEATURES += CONFIG_DRKAISER=yes
187else
188override CONFIG_DRKAISER = no
189endif
190ifeq ($(CONFIG_NICREALTEK), yes)
191UNSUPPORTED_FEATURES += CONFIG_NICREALTEK=yes
192else
193override CONFIG_NICREALTEK = no
194endif
195ifeq ($(CONFIG_NICNATSEMI), yes)
196UNSUPPORTED_FEATURES += CONFIG_NICNATSEMI=yes
197else
198override CONFIG_NICNATSEMI = no
199endif
200ifeq ($(CONFIG_NICINTEL), yes)
201UNSUPPORTED_FEATURES += CONFIG_NICINTEL=yes
202else
203override CONFIG_NICINTEL = no
204endif
205ifeq ($(CONFIG_NICINTEL_SPI), yes)
206UNSUPPORTED_FEATURES += CONFIG_NICINTEL_SPI=yes
207else
208override CONFIG_NICINTEL_SPI = no
209endif
210ifeq ($(CONFIG_OGP_SPI), yes)
211UNSUPPORTED_FEATURES += CONFIG_OGP_SPI=yes
212else
213override CONFIG_OGP_SPI = no
214endif
215ifeq ($(CONFIG_SATAMV), yes)
216UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes
217else
218override CONFIG_SATAMV = no
219endif
220endif
221
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000222ifeq ($(TARGET_OS), libpayload)
Stefan Tauner8e19b042013-08-28 09:55:04 +0000223ifeq ($(MAKECMDGOALS),)
224.DEFAULT_GOAL := libflashrom.a
225$(info Setting default goal to libflashrom.a)
226endif
Carl-Daniel Hailfingera8da2242012-08-15 23:06:32 +0000227FLASHROM_CFLAGS += -DSTANDALONE
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000228ifeq ($(CONFIG_DUMMY), yes)
229UNSUPPORTED_FEATURES += CONFIG_DUMMY=yes
230else
231override CONFIG_DUMMY = no
232endif
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000233# Bus Pirate, Serprog and PonyProg are not supported with libpayload (missing serial support).
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000234ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
235UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes
236else
237override CONFIG_BUSPIRATE_SPI = no
238endif
239ifeq ($(CONFIG_SERPROG), yes)
240UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes
241else
242override CONFIG_SERPROG = no
243endif
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000244ifeq ($(CONFIG_PONY_SPI), yes)
245UNSUPPORTED_FEATURES += CONFIG_PONY_SPI=yes
246else
247override CONFIG_PONY_SPI = no
248endif
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000249# Dediprog and FT2232 are not supported with libpayload (missing libusb support)
250ifeq ($(CONFIG_DEDIPROG), yes)
251UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes
252else
253override CONFIG_DEDIPROG = no
254endif
255ifeq ($(CONFIG_FT2232_SPI), yes)
256UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes
257else
258override CONFIG_FT2232_SPI = no
259endif
James Lairdc60de0e2013-03-27 13:00:23 +0000260ifeq ($(CONFIG_USBBLASTER_SPI), yes)
261UNSUPPORTED_FEATURES += CONFIG_USBBLASTER_SPI=yes
262else
263override CONFIG_USBBLASTER_SPI = no
264endif
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000265endif
266
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000267ifneq ($(TARGET_OS), Linux)
268ifeq ($(CONFIG_LINUX_SPI), yes)
269UNSUPPORTED_FEATURES += CONFIG_LINUX_SPI=yes
270else
271override CONFIG_LINUX_SPI = no
272endif
273endif
274
Stefan Tauner037cd842013-08-25 00:10:56 +0000275###############################################################################
276# General architecture-specific settings.
277# Like above for the OS, below we verify user-supplied options depending on the target architecture.
278
Uwe Hermann44ffd582011-08-20 14:16:00 +0000279# Determine the destination processor architecture.
280# IMPORTANT: The following line must be placed before ARCH is ever used
281# (of course), but should come after any lines setting CC because the line
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000282# below uses CC itself.
283override 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 +0000284
David Hendricksb286da72012-02-13 00:35:35 +0000285# PCI port I/O support is unimplemented on PPC/MIPS and unavailable on ARM.
286# Right now this means the drivers below only work on x86.
287ifneq ($(ARCH), x86)
Uwe Hermann21b10c62011-07-29 12:13:01 +0000288ifeq ($(CONFIG_NIC3COM), yes)
289UNSUPPORTED_FEATURES += CONFIG_NIC3COM=yes
290else
291override CONFIG_NIC3COM = no
292endif
293ifeq ($(CONFIG_NICREALTEK), yes)
294UNSUPPORTED_FEATURES += CONFIG_NICREALTEK=yes
295else
296override CONFIG_NICREALTEK = no
297endif
298ifeq ($(CONFIG_NICNATSEMI), yes)
299UNSUPPORTED_FEATURES += CONFIG_NICNATSEMI=yes
300else
301override CONFIG_NICNATSEMI = no
302endif
303ifeq ($(CONFIG_RAYER_SPI), yes)
304UNSUPPORTED_FEATURES += CONFIG_RAYER_SPI=yes
305else
306override CONFIG_RAYER_SPI = no
307endif
308ifeq ($(CONFIG_ATAHPT), yes)
309UNSUPPORTED_FEATURES += CONFIG_ATAHPT=yes
310else
311override CONFIG_ATAHPT = no
312endif
313ifeq ($(CONFIG_SATAMV), yes)
314UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes
315else
316override CONFIG_SATAMV = no
317endif
318endif
319
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000320###############################################################################
321# Flash chip drivers and bus support infrastructure.
322
Stefan Tauner4404f732013-09-12 08:28:56 +0000323CHIP_OBJS = jedec.o stm50.o w39.o w29ee011.o \
Sean Nelson35727f72010-01-28 23:55:12 +0000324 sst28sf040.o m29f400bt.o 82802ab.o pm49fl00x.o \
Stefan Tauner6ee37e22012-12-29 15:03:51 +0000325 sst49lfxxxc.o sst_fwhub.o flashchips.o spi.o spi25.o spi25_statusreg.o \
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000326 opaque.o sfdp.o en29lv640b.o at45db.o
Sean Nelson5d134642009-12-24 16:54:21 +0000327
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000328###############################################################################
329# Library code.
Sean Nelson5d134642009-12-24 16:54:21 +0000330
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000331LIB_OBJS = layout.o flashrom.o udelay.o programmer.o
Sean Nelson5d134642009-12-24 16:54:21 +0000332
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000333###############################################################################
334# Frontend related stuff.
Ollie Lho184a4042005-11-26 21:55:36 +0000335
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000336CLI_OBJS = cli_classic.o cli_output.o print.o
Ollie Lho184a4042005-11-26 21:55:36 +0000337
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000338# Set the flashrom version string from the highest revision number of the checked out flashrom files.
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000339# Note to packagers: Any tree exported with "make export" or "make tarball"
340# will not require subversion. The downloadable snapshots are already exported.
David Hendricks36e9f4b2013-08-14 14:47:26 +0000341SVNVERSION := $(shell ./util/getrevision.sh -u)
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000342
Stefan Tauner241e9d52013-08-13 22:13:01 +0000343RELEASE := 0.9.7
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000344VERSION := $(RELEASE)-$(SVNVERSION)
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000345RELEASENAME ?= $(VERSION)
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000346
347SVNDEF := -D'FLASHROM_VERSION="$(VERSION)"'
Bernhard Walle201bde32008-01-21 15:24:22 +0000348
Stefan Tauner037cd842013-08-25 00:10:56 +0000349###############################################################################
350# Default settings of CONFIG_* variables.
351
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000352# Always enable internal/onboard support for now.
353CONFIG_INTERNAL ?= yes
354
Stefan Tauner52b6e9d2013-04-01 00:46:05 +0000355# Always enable serprog for now.
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000356CONFIG_SERPROG ?= yes
357
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000358# RayeR SPIPGM hardware support
359CONFIG_RAYER_SPI ?= yes
360
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000361# PonyProg2000 SPI hardware support
362CONFIG_PONY_SPI ?= yes
363
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000364# Always enable 3Com NICs for now.
365CONFIG_NIC3COM ?= yes
366
Carl-Daniel Hailfingerbf3af292010-07-29 14:41:46 +0000367# Enable NVIDIA graphics cards. Note: write and erase do not work properly.
368CONFIG_GFXNVIDIA ?= yes
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000369
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000370# Always enable SiI SATA controllers for now.
371CONFIG_SATASII ?= yes
372
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000373# Highpoint (HPT) ATA/RAID controller support.
374# IMPORTANT: This code is not yet working!
375CONFIG_ATAHPT ?= no
376
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000377# Always enable FT2232 SPI dongles for now.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000378CONFIG_FT2232_SPI ?= yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000379
James Lairdc60de0e2013-03-27 13:00:23 +0000380# Always enable Altera USB-Blaster dongles for now.
381CONFIG_USBBLASTER_SPI ?= yes
382
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000383# Always enable dummy tracing for now.
384CONFIG_DUMMY ?= yes
385
386# Always enable Dr. Kaiser for now.
387CONFIG_DRKAISER ?= yes
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000388
Joerg Fischer5665ef32010-05-21 21:54:07 +0000389# Always enable Realtek NICs for now.
390CONFIG_NICREALTEK ?= yes
391
Andrew Morganc29c2e72010-06-07 22:37:54 +0000392# Disable National Semiconductor NICs until support is complete and tested.
393CONFIG_NICNATSEMI ?= no
394
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000395# Always enable Intel NICs for now.
396CONFIG_NICINTEL ?= yes
397
Idwer Vollering004f4b72010-09-03 18:21:21 +0000398# Always enable SPI on Intel NICs for now.
399CONFIG_NICINTEL_SPI ?= yes
400
Mark Marshall90021f22010-12-03 14:48:11 +0000401# Always enable SPI on OGP cards for now.
402CONFIG_OGP_SPI ?= yes
403
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000404# Always enable Bus Pirate SPI for now.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000405CONFIG_BUSPIRATE_SPI ?= yes
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000406
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000407# Disable Dediprog SF100 until support is complete and tested.
408CONFIG_DEDIPROG ?= no
409
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000410# Always enable Marvell SATA controllers for now.
411CONFIG_SATAMV ?= yes
412
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000413# Enable Linux spidev interface by default. We disable it on non-Linux targets.
414CONFIG_LINUX_SPI ?= yes
415
Carl-Daniel Hailfinger6161ff12009-11-16 21:22:24 +0000416# Disable wiki printing by default. It is only useful if you have wiki access.
Uwe Hermann2db77a02010-06-04 17:07:39 +0000417CONFIG_PRINT_WIKI ?= no
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000418
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000419# Bitbanging SPI infrastructure, default off unless needed.
420ifeq ($(CONFIG_RAYER_SPI), yes)
421override CONFIG_BITBANG_SPI = yes
422else
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000423ifeq ($(CONFIG_PONY_SPI), yes)
424override CONFIG_BITBANG_SPI = yes
425else
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000426ifeq ($(CONFIG_INTERNAL), yes)
427override CONFIG_BITBANG_SPI = yes
428else
429ifeq ($(CONFIG_NICINTEL_SPI), yes)
430override CONFIG_BITBANG_SPI = yes
431else
Mark Marshall90021f22010-12-03 14:48:11 +0000432ifeq ($(CONFIG_OGP_SPI), yes)
433override CONFIG_BITBANG_SPI = yes
434else
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000435CONFIG_BITBANG_SPI ?= no
436endif
437endif
438endif
Mark Marshall90021f22010-12-03 14:48:11 +0000439endif
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000440endif
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000441
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000442###############################################################################
Sean Nelson4c6d3a42013-09-11 23:35:03 +0000443# Handle CONFIG_* variables that depend on others set (and verified) above.
444
445# The external DMI decoder (dmidecode) does not work in libpayload. Bail out if the internal one got disabled.
446ifeq ($(TARGET_OS), libpayload)
447ifeq ($(CONFIG_INTERNAL), yes)
448ifeq ($(CONFIG_INTERNAL_DMI), no)
449UNSUPPORTED_FEATURES += CONFIG_INTERNAL_DMI=no
450else
451override CONFIG_INTERNAL_DMI = yes
452endif
453endif
454endif
455
456# Use internal DMI/SMBIOS decoder by default instead of relying on dmidecode.
457CONFIG_INTERNAL_DMI ?= yes
458
459###############################################################################
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000460# Programmer drivers and programmer support infrastructure.
Stefan Tauner037cd842013-08-25 00:10:56 +0000461# Depending on the CONFIG_* variables set and verified above we set compiler flags and parameters below.
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000462
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000463FEATURE_CFLAGS += -D'CONFIG_DEFAULT_PROGRAMMER=$(CONFIG_DEFAULT_PROGRAMMER)'
464
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000465ifeq ($(CONFIG_INTERNAL), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000466FEATURE_CFLAGS += -D'CONFIG_INTERNAL=1'
Sean Nelson4c6d3a42013-09-11 23:35:03 +0000467PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o internal.o
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000468ifeq ($(ARCH), x86)
Rudolf Marek70e14592013-07-25 22:58:56 +0000469PROGRAMMER_OBJS += it87spi.o it85spi.o sb600spi.o amd_imc.o wbsio_spi.o mcp6x_spi.o
Sean Nelson4c6d3a42013-09-11 23:35:03 +0000470PROGRAMMER_OBJS += ichspi.o ich_descriptors.o dmi.o
471ifeq ($(CONFIG_INTERNAL_DMI), yes)
472FEATURE_CFLAGS += -D'CONFIG_INTERNAL_DMI=1'
473endif
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000474else
475endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000476NEED_PCI := yes
477endif
478
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000479ifeq ($(CONFIG_SERPROG), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000480FEATURE_CFLAGS += -D'CONFIG_SERPROG=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000481PROGRAMMER_OBJS += serprog.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000482NEED_SERIAL := yes
483NEED_NET := yes
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000484endif
485
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000486ifeq ($(CONFIG_RAYER_SPI), yes)
487FEATURE_CFLAGS += -D'CONFIG_RAYER_SPI=1'
488PROGRAMMER_OBJS += rayer_spi.o
489# Actually, NEED_PCI is wrong. NEED_IOPORT_ACCESS would be more correct.
490NEED_PCI := yes
491endif
492
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000493ifeq ($(CONFIG_PONY_SPI), yes)
494FEATURE_CFLAGS += -D'CONFIG_PONY_SPI=1'
495PROGRAMMER_OBJS += pony_spi.o
496NEED_SERIAL := yes
497endif
498
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000499ifeq ($(CONFIG_BITBANG_SPI), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000500FEATURE_CFLAGS += -D'CONFIG_BITBANG_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000501PROGRAMMER_OBJS += bitbang_spi.o
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000502endif
503
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000504ifeq ($(CONFIG_NIC3COM), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000505FEATURE_CFLAGS += -D'CONFIG_NIC3COM=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000506PROGRAMMER_OBJS += nic3com.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000507NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000508endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000509
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000510ifeq ($(CONFIG_GFXNVIDIA), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000511FEATURE_CFLAGS += -D'CONFIG_GFXNVIDIA=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000512PROGRAMMER_OBJS += gfxnvidia.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000513NEED_PCI := yes
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000514endif
515
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000516ifeq ($(CONFIG_SATASII), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000517FEATURE_CFLAGS += -D'CONFIG_SATASII=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000518PROGRAMMER_OBJS += satasii.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000519NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000520endif
521
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000522ifeq ($(CONFIG_ATAHPT), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000523FEATURE_CFLAGS += -D'CONFIG_ATAHPT=1'
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000524PROGRAMMER_OBJS += atahpt.o
525NEED_PCI := yes
526endif
527
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000528ifeq ($(CONFIG_FT2232_SPI), yes)
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000529# This is a totally ugly hack.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000530FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "-D'CONFIG_FT2232_SPI=1'")
James Lairdc60de0e2013-03-27 13:00:23 +0000531NEED_FTDI := yes
532PROGRAMMER_OBJS += ft2232_spi.o
533endif
534
535ifeq ($(CONFIG_USBBLASTER_SPI), yes)
536# This is a totally ugly hack.
537FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "-D'CONFIG_USBBLASTER_SPI=1'")
538NEED_FTDI := yes
539PROGRAMMER_OBJS += usbblaster_spi.o
540endif
541
542ifeq ($(NEED_FTDI), yes)
543FTDILIBS := $(shell pkg-config --libs libftdi 2>/dev/null || printf "%s" "-lftdi -lusb")
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000544FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "FT232H := yes" .features && printf "%s" "-D'HAVE_FT232H=1'")
Jörg Mayer8776db22009-11-16 14:05:13 +0000545FEATURE_LIBS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "$(FTDILIBS)")
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000546# We can't set NEED_USB here because that would transform libftdi auto-enabling
547# into a hard requirement for libusb, defeating the purpose of auto-enabling.
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000548endif
549
550ifeq ($(CONFIG_DUMMY), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000551FEATURE_CFLAGS += -D'CONFIG_DUMMY=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000552PROGRAMMER_OBJS += dummyflasher.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000553endif
554
555ifeq ($(CONFIG_DRKAISER), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000556FEATURE_CFLAGS += -D'CONFIG_DRKAISER=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000557PROGRAMMER_OBJS += drkaiser.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000558NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000559endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000560
Joerg Fischer5665ef32010-05-21 21:54:07 +0000561ifeq ($(CONFIG_NICREALTEK), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000562FEATURE_CFLAGS += -D'CONFIG_NICREALTEK=1'
Joerg Fischer5665ef32010-05-21 21:54:07 +0000563PROGRAMMER_OBJS += nicrealtek.o
564NEED_PCI := yes
565endif
566
Andrew Morganc29c2e72010-06-07 22:37:54 +0000567ifeq ($(CONFIG_NICNATSEMI), yes)
568FEATURE_CFLAGS += -D'CONFIG_NICNATSEMI=1'
569PROGRAMMER_OBJS += nicnatsemi.o
570NEED_PCI := yes
571endif
572
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000573ifeq ($(CONFIG_NICINTEL), yes)
574FEATURE_CFLAGS += -D'CONFIG_NICINTEL=1'
575PROGRAMMER_OBJS += nicintel.o
576NEED_PCI := yes
577endif
578
Idwer Vollering004f4b72010-09-03 18:21:21 +0000579ifeq ($(CONFIG_NICINTEL_SPI), yes)
580FEATURE_CFLAGS += -D'CONFIG_NICINTEL_SPI=1'
581PROGRAMMER_OBJS += nicintel_spi.o
582NEED_PCI := yes
583endif
584
Mark Marshall90021f22010-12-03 14:48:11 +0000585ifeq ($(CONFIG_OGP_SPI), yes)
586FEATURE_CFLAGS += -D'CONFIG_OGP_SPI=1'
587PROGRAMMER_OBJS += ogp_spi.o
588NEED_PCI := yes
589endif
590
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000591ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
592FEATURE_CFLAGS += -D'CONFIG_BUSPIRATE_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000593PROGRAMMER_OBJS += buspirate_spi.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000594NEED_SERIAL := yes
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000595endif
596
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000597ifeq ($(CONFIG_DEDIPROG), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000598FEATURE_CFLAGS += -D'CONFIG_DEDIPROG=1'
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000599PROGRAMMER_OBJS += dediprog.o
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000600NEED_USB := yes
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000601endif
602
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000603ifeq ($(CONFIG_SATAMV), yes)
604FEATURE_CFLAGS += -D'CONFIG_SATAMV=1'
605PROGRAMMER_OBJS += satamv.o
606NEED_PCI := yes
607endif
608
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000609ifeq ($(CONFIG_LINUX_SPI), yes)
Stefan Tauner8868db32012-03-13 00:18:19 +0000610# This is a totally ugly hack.
611FEATURE_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 +0000612PROGRAMMER_OBJS += linux_spi.o
613endif
614
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000615ifeq ($(NEED_SERIAL), yes)
Sean Nelson5d134642009-12-24 16:54:21 +0000616LIB_OBJS += serial.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000617endif
618
619ifeq ($(NEED_NET), yes)
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000620ifeq ($(TARGET_OS), SunOS)
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000621LIBS += -lsocket
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000622endif
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +0000623endif
624
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000625ifeq ($(NEED_PCI), yes)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000626CHECK_LIBPCI = yes
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000627FEATURE_CFLAGS += -D'NEED_PCI=1'
Carl-Daniel Hailfingerfb0828f2010-02-12 19:35:25 +0000628PROGRAMMER_OBJS += pcidev.o physmap.o hwaccess.o
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000629ifeq ($(TARGET_OS), NetBSD)
Carl-Daniel Hailfinger460b2822010-06-04 23:24:57 +0000630# The libpci we want is called libpciutils on NetBSD and needs NetBSD libpci.
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000631PCILIBS += -lpciutils -lpci
Carl-Daniel Hailfinger460b2822010-06-04 23:24:57 +0000632# For (i386|x86_64)_iopl(2).
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000633PCILIBS += -l$(shell uname -p)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000634else
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000635ifeq ($(TARGET_OS), DOS)
Stefan Tauner449abe22013-09-11 23:34:57 +0000636CPPFLAGS += -I$(DOSLIBS_BASE)/libpci/include
637LDFLAGS += -L$(DOSLIBS_BASE)/libpci/lib/
638PCILIBS += -lpci
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000639else
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000640PCILIBS += -lpci
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000641ifeq ($(TARGET_OS), OpenBSD)
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +0000642# For (i386|amd64)_iopl(2).
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000643PCILIBS += -l$(shell uname -m)
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000644else
645ifeq ($(TARGET_OS), Darwin)
646# DirectHW framework can be found in the DirectHW library.
Stefan Taunere34e3e82013-01-01 00:06:51 +0000647PCILIBS += -framework IOKit -framework DirectHW
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000648else
649endif
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +0000650endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000651endif
Jonathan A. Kollasch3646c8f2010-01-08 21:18:08 +0000652endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000653endif
654
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000655ifeq ($(NEED_USB), yes)
656CHECK_LIBUSB0 = yes
657FEATURE_CFLAGS += -D'NEED_USB=1'
658USBLIBS := $(shell pkg-config --libs libusb 2>/dev/null || printf "%s" "-lusb")
659endif
660
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000661ifeq ($(CONFIG_PRINT_WIKI), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000662FEATURE_CFLAGS += -D'CONFIG_PRINT_WIKI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000663CLI_OBJS += print_wiki.o
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000664endif
665
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000666FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "UTSNAME := yes" .features && printf "%s" "-D'HAVE_UTSNAME=1'")
667
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000668# We could use PULLED_IN_LIBS, but that would be ugly.
669FEATURE_LIBS += $(shell LC_ALL=C grep -q "NEEDLIBZ := yes" .libdeps && printf "%s" "-lz")
670
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000671LIBFLASHROM_OBJS = $(CHIP_OBJS) $(PROGRAMMER_OBJS) $(LIB_OBJS)
Stefan Taunerd94d25d2012-07-28 03:17:15 +0000672OBJS = $(CLI_OBJS) $(LIBFLASHROM_OBJS)
Sean Nelson5d134642009-12-24 16:54:21 +0000673
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000674all: hwlibs features $(PROGRAM)$(EXEC_SUFFIX) $(PROGRAM).8
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000675ifeq ($(ARCH), x86)
676 @+$(MAKE) -C util/ich_descriptors_tool/ TARGET_OS=$(TARGET_OS) EXEC_SUFFIX=$(EXEC_SUFFIX)
677endif
678
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000679$(PROGRAM)$(EXEC_SUFFIX): $(OBJS)
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000680 $(CC) $(LDFLAGS) -o $(PROGRAM)$(EXEC_SUFFIX) $(OBJS) $(LIBS) $(PCILIBS) $(FEATURE_LIBS) $(USBLIBS)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000681
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000682libflashrom.a: $(LIBFLASHROM_OBJS)
683 $(AR) rcs $@ $^
684 $(RANLIB) $@
685
Carl-Daniel Hailfinger8ef7dce2009-07-10 20:19:48 +0000686# TAROPTIONS reduces information leakage from the packager's system.
687# If other tar programs support command line arguments for setting uid/gid of
688# stored files, they can be handled here as well.
689TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root --group=root")
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000690
Paul Fox05dfbe62009-06-16 21:08:06 +0000691%.o: %.c .features
Carl-Daniel Hailfingera8da2242012-08-15 23:06:32 +0000692 $(CC) -MMD $(CFLAGS) $(CPPFLAGS) $(FLASHROM_CFLAGS) $(FEATURE_CFLAGS) $(SVNDEF) -o $@ -c $<
Clark Rawlins02016f72008-02-14 23:22:20 +0000693
Carl-Daniel Hailfingera0020df2010-05-30 22:35:14 +0000694# Make sure to add all names of generated binaries here.
695# This includes all frontends and libflashrom.
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000696# We don't use EXEC_SUFFIX here because we want to clean everything.
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000697clean:
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000698 rm -f $(PROGRAM) $(PROGRAM).exe libflashrom.a *.o *.d $(PROGRAM).8
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000699 @+$(MAKE) -C util/ich_descriptors_tool/ clean
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000700
Ollie Lho184a4042005-11-26 21:55:36 +0000701distclean: clean
Stefan Reinauere2f01582010-06-07 11:08:07 +0000702 rm -f .features .libdeps
Christian Ruppertdb9d9f42009-05-14 14:17:07 +0000703
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000704strip: $(PROGRAM)$(EXEC_SUFFIX)
705 $(STRIP) $(STRIP_ARGS) $(PROGRAM)$(EXEC_SUFFIX)
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000706
Stefan Tauner56787082011-08-18 02:27:19 +0000707# to define test programs we use verbatim variables, which get exported
708# to environment variables and are referenced with $$<varname> later
709
710define COMPILER_TEST
711int main(int argc, char **argv)
712{
713 (void) argc;
714 (void) argv;
715 return 0;
716}
717endef
718export COMPILER_TEST
719
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000720compiler: featuresavailable
Paul Fox05dfbe62009-06-16 21:08:06 +0000721 @printf "Checking for a C compiler... "
Stefan Tauner56787082011-08-18 02:27:19 +0000722 @echo "$$COMPILER_TEST" > .test.c
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000723 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .test.c -o .test$(EXEC_SUFFIX) >/dev/null && \
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000724 echo "found." || ( echo "not found."; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000725 rm -f .test.c .test$(EXEC_SUFFIX); exit 1)
726 @rm -f .test.c .test$(EXEC_SUFFIX)
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000727 @printf "Target arch is "
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000728 @# FreeBSD wc will output extraneous whitespace.
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000729 @echo $(ARCH)|wc -w|grep -q '^[[:blank:]]*1[[:blank:]]*$$' || \
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000730 ( echo "unknown. Aborting."; exit 1)
731 @printf "%s\n" '$(ARCH)'
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000732 @printf "Target OS is "
733 @# FreeBSD wc will output extraneous whitespace.
734 @echo $(TARGET_OS)|wc -w|grep -q '^[[:blank:]]*1[[:blank:]]*$$' || \
735 ( echo "unknown. Aborting."; exit 1)
736 @printf "%s\n" '$(TARGET_OS)'
Stefan Taunerd6c17f62013-09-12 14:04:31 +0000737ifeq ($(TARGET_OS), libpayload)
738 @$(CC) --version 2>&1 | grep -q coreboot || \
739 ( echo "Warning: It seems you are not using coreboot's reference compiler."; \
740 echo "This might work but usually does not, please beware." )
741endif
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000742
Stefan Tauner56787082011-08-18 02:27:19 +0000743define LIBPCI_TEST
744/* Avoid a failing test due to libpci header symbol shadowing breakage */
745#define index shadow_workaround_index
746#include <pci/pci.h>
747struct pci_access *pacc;
748int main(int argc, char **argv)
749{
750 (void) argc;
751 (void) argv;
752 pacc = pci_alloc();
753 return 0;
754}
755endef
756export LIBPCI_TEST
757
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000758define LIBUSB0_TEST
759#include <usb.h>
760int main(int argc, char **argv)
761{
762 (void) argc;
763 (void) argv;
764 usb_init();
765 return 0;
766}
767endef
768export LIBUSB0_TEST
769
770hwlibs: compiler
771 @printf "" > .libdeps
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000772ifeq ($(CHECK_LIBPCI), yes)
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000773 @printf "Checking for libpci headers... "
Stefan Tauner56787082011-08-18 02:27:19 +0000774 @echo "$$LIBPCI_TEST" > .test.c
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000775 @$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >/dev/null && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000776 echo "found." || ( echo "not found."; echo; \
777 echo "Please install libpci headers (package pciutils-devel)."; \
778 echo "See README for more information."; echo; \
779 rm -f .test.c .test.o; exit 1)
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000780 @printf "Checking if libpci is present and sufficient... "
Carl-Daniel Hailfinger26148ae2012-11-29 22:22:04 +0000781 @$(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) $(PCILIBS) >/dev/null && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000782 echo "yes." || ( echo "no."; \
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000783 printf "Checking if libz+libpci are present and sufficient..."; \
Carl-Daniel Hailfinger26148ae2012-11-29 22:22:04 +0000784 $(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) $(PCILIBS) -lz >/dev/null && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000785 ( echo "yes."; echo "NEEDLIBZ := yes" > .libdeps ) || ( echo "no."; echo; \
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000786 echo "Please install libpci (package pciutils) and/or libz."; \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000787 echo "See README for more information."; echo; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000788 rm -f .test.c .test.o .test$(EXEC_SUFFIX); exit 1) )
789 @rm -f .test.c .test.o .test$(EXEC_SUFFIX)
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000790endif
791ifeq ($(CHECK_LIBUSB0), yes)
792 @printf "Checking for libusb-0.1/libusb-compat headers... "
793 @echo "$$LIBUSB0_TEST" > .test.c
794 @$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >/dev/null && \
795 echo "found." || ( echo "not found."; echo; \
796 echo "Please install libusb-0.1 headers or libusb-compat headers."; \
797 echo "See README for more information."; echo; \
798 rm -f .test.c .test.o; exit 1)
799 @printf "Checking if libusb-0.1 is usable... "
Carl-Daniel Hailfinger26148ae2012-11-29 22:22:04 +0000800 @$(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) $(USBLIBS) >/dev/null && \
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000801 echo "yes." || ( echo "no."; \
802 echo "Please install libusb-0.1 or libusb-compat."; \
803 echo "See README for more information."; echo; \
804 rm -f .test.c .test.o .test$(EXEC_SUFFIX); exit 1)
805 @rm -f .test.c .test.o .test$(EXEC_SUFFIX)
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000806endif
Stefan Reinauer53e96252005-12-01 16:19:24 +0000807
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000808.features: features
809
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000810# If a user does not explicitly request a non-working feature, we should
811# silently disable it. However, if a non-working (does not compile) feature
812# is explicitly requested, we should bail out with a descriptive error message.
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000813# We also have to check that at least one programmer driver is enabled.
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000814featuresavailable:
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000815ifeq ($(PROGRAMMER_OBJS),)
816 @echo "You have to enable at least one programmer driver!"
817 @false
818endif
819ifneq ($(UNSUPPORTED_FEATURES), )
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000820 @echo "The following features are unavailable on your machine: $(UNSUPPORTED_FEATURES)"
821 @false
822endif
823
Stefan Tauner56787082011-08-18 02:27:19 +0000824define FTDI_TEST
825#include <ftdi.h>
826struct ftdi_context *ftdic = NULL;
827int main(int argc, char **argv)
828{
829 (void) argc;
830 (void) argv;
831 return ftdi_init(ftdic);
832}
833endef
834export FTDI_TEST
835
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000836define FTDI_232H_TEST
837#include <ftdi.h>
838enum ftdi_chip_type type = TYPE_232H;
839endef
840export FTDI_232H_TEST
841
Stefan Tauner56787082011-08-18 02:27:19 +0000842define UTSNAME_TEST
843#include <sys/utsname.h>
844struct utsname osinfo;
845int main(int argc, char **argv)
846{
847 (void) argc;
848 (void) argv;
849 uname (&osinfo);
850 return 0;
851}
852endef
853export UTSNAME_TEST
854
Stefan Tauner8868db32012-03-13 00:18:19 +0000855define LINUX_SPI_TEST
856#include <linux/types.h>
857#include <linux/spi/spidev.h>
858
859int main(int argc, char **argv)
860{
861 (void) argc;
862 (void) argv;
863 return 0;
864}
865endef
866export LINUX_SPI_TEST
867
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000868features: compiler
869 @echo "FEATURES := yes" > .features.tmp
James Lairdc60de0e2013-03-27 13:00:23 +0000870ifeq ($(NEED_FTDI), yes)
Paul Fox05dfbe62009-06-16 21:08:06 +0000871 @printf "Checking for FTDI support... "
Stefan Tauner56787082011-08-18 02:27:19 +0000872 @echo "$$FTDI_TEST" > .featuretest.c
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000873 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) $(FTDILIBS) $(LIBS) >/dev/null 2>&1 && \
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000874 ( echo "found."; echo "FTDISUPPORT := yes" >> .features.tmp ) || \
875 ( echo "not found."; echo "FTDISUPPORT := no" >> .features.tmp )
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000876 @printf "Checking for FT232H support in libftdi... "
877 @echo "$$FTDI_232H_TEST" >> .featuretest.c
878 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) $(FTDILIBS) $(LIBS) >/dev/null 2>&1 && \
879 ( echo "found."; echo "FT232H := yes" >> .features.tmp ) || \
880 ( echo "not found."; echo "FT232H := no" >> .features.tmp )
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000881endif
Stefan Tauner8868db32012-03-13 00:18:19 +0000882ifeq ($(CONFIG_LINUX_SPI), yes)
883 @printf "Checking if Linux SPI headers are present... "
884 @echo "$$LINUX_SPI_TEST" > .featuretest.c
885 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \
886 ( echo "yes."; echo "LINUX_SPI_SUPPORT := yes" >> .features.tmp ) || \
887 ( echo "no."; echo "LINUX_SPI_SUPPORT := no" >> .features.tmp )
888endif
Stefan Tauner56787082011-08-18 02:27:19 +0000889 @printf "Checking for utsname support... "
890 @echo "$$UTSNAME_TEST" > .featuretest.c
891 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \
892 ( echo "found."; echo "UTSNAME := yes" >> .features.tmp ) || \
893 ( echo "not found."; echo "UTSNAME := no" >> .features.tmp )
894 @$(DIFF) -q .features.tmp .features >/dev/null 2>&1 && rm .features.tmp || mv .features.tmp .features
895 @rm -f .featuretest.c .featuretest$(EXEC_SUFFIX)
Paul Fox05dfbe62009-06-16 21:08:06 +0000896
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000897$(PROGRAM).8: $(PROGRAM).8.tmpl
898 @sed -e '1 s#".*".*#"$(shell ./util/getrevision.sh -d $(PROGRAM).8.tmpl)" "$(VERSION)"#' <$< >$@
899
900install: $(PROGRAM)$(EXEC_SUFFIX) $(PROGRAM).8
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +0000901 mkdir -p $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000902 mkdir -p $(DESTDIR)$(MANDIR)/man8
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000903 $(INSTALL) -m 0755 $(PROGRAM)$(EXEC_SUFFIX) $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000904 $(INSTALL) -m 0644 $(PROGRAM).8 $(DESTDIR)$(MANDIR)/man8
Uwe Hermannc113b572006-12-14 00:59:41 +0000905
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000906export: $(PROGRAM).8
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000907 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)
908 @svn export -r BASE . $(EXPORTDIR)/flashrom-$(RELEASENAME)
909 @sed "s/^SVNVERSION.*/SVNVERSION := $(SVNVERSION)/" Makefile >$(EXPORTDIR)/flashrom-$(RELEASENAME)/Makefile
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000910 @cp $(PROGRAM).8 "$(EXPORTDIR)/flashrom-$(RELEASENAME)/$(PROGRAM).8"
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000911 @LC_ALL=C svn log >$(EXPORTDIR)/flashrom-$(RELEASENAME)/ChangeLog
912 @echo Exported $(EXPORTDIR)/flashrom-$(RELEASENAME)/
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000913
914tarball: export
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000915 @tar cjf $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 -C $(EXPORTDIR)/ $(TAROPTIONS) flashrom-$(RELEASENAME)/
916 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)
917 @echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000918
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000919djgpp-dos: clean
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000920 make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip
921libpayload: clean
922 make CC="CC=i386-elf-gcc lpgcc" AR=i386-elf-ar RANLIB=i386-elf-ranlib
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000923
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000924.PHONY: all install clean distclean compiler hwlibs features export tarball dos featuresavailable
Ollie Lho184a4042005-11-26 21:55:36 +0000925
Stefan Reinauere2f01582010-06-07 11:08:07 +0000926-include $(OBJS:.o=.d)