blob: faa8e5888bc0a2ac1b5cca03fbbea17c498e6e02 [file] [log] [blame]
Ollie Lho184a4042005-11-26 21:55:36 +00001#
Uwe Hermannf78cff12009-06-12 14:05:25 +00002# This file is part of the flashrom project.
3#
4# Copyright (C) 2005 coresystems GmbH <stepan@coresystems.de>
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +00005# Copyright (C) 2009,2010,2012 Carl-Daniel Hailfinger
Uwe Hermannf78cff12009-06-12 14:05:25 +00006#
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; version 2 of the License.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Ollie Lho184a4042005-11-26 21:55:36 +000019#
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000020
Ollie Lho184a4042005-11-26 21:55:36 +000021PROGRAM = flashrom
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000022
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000023###############################################################################
24# Defaults for the toolchain.
25
26# If you want to cross-compile, just run e.g.
27# make CC=i586-pc-msdosdjgpp-gcc
28# You may have to specify STRIP/AR/RANLIB as well.
Carl-Daniel Hailfingerb7bce8a2012-08-14 21:36:11 +000029#
30# Note for anyone editing this Makefile: gnumake will happily ignore any
31# changes in this Makefile to variables set on the command line.
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +000032CC ?= gcc
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000033STRIP ?= strip
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000034INSTALL = install
Paul Fox05dfbe62009-06-16 21:08:06 +000035DIFF = diff
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000036PREFIX ?= /usr/local
Uwe Hermann56b2cb02009-05-21 15:59:58 +000037MANDIR ?= $(PREFIX)/share/man
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000038CFLAGS ?= -Os -Wall -Wshadow
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000039EXPORTDIR ?= .
Patrick Georgi97bc95c2011-03-08 07:17:44 +000040AR ?= ar
41RANLIB ?= ranlib
Stefan Tauner449abe22013-09-11 23:34:57 +000042DOSLIBS_BASE ?= ..
Stefan Taunerfd0d4132012-09-25 21:24:55 +000043# The following parameter changes the default programmer that will be used if there is no -p/--programmer
44# argument given when running flashrom. The predefined setting does not enable any default so that every
45# user has to declare the programmer he wants to use on every run. The rationale for this to be not set
46# (to e.g. the internal programmer) is that forgetting to specify this when working with another programmer
47# easily puts the system attached to the default programmer at risk (e.g. you want to flash coreboot to another
48# system attached to an external programmer while the default programmer is set to the internal programmer, and
49# you forget to use the -p parameter. This would (try to) overwrite the existing firmware of the computer
50# running flashrom). Please do not enable this without thinking about the possible consequences. Possible
51# values are those specified in enum programmer in programmer.h (which depend on other CONFIG_* options
52# evaluated below, namely those that enable/disable the various programmers).
53# Compilation will fail for unspecified values.
54CONFIG_DEFAULT_PROGRAMMER ?= PROGRAMMER_INVALID
Christian Ruppertdb9d9f42009-05-14 14:17:07 +000055
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000056# If your compiler spits out excessive warnings, run make WARNERROR=no
57# You shouldn't have to change this flag.
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000058WARNERROR ?= yes
59
60ifeq ($(WARNERROR), yes)
61CFLAGS += -Werror
62endif
63
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000064###############################################################################
Stefan Tauner037cd842013-08-25 00:10:56 +000065# General OS-specific settings.
66# 1. Prepare for later by gathering information about host and target OS
67# 2. Set compiler flags and parameters according to OSes
68# 3. Likewise verify user-supplied CONFIG_* variables.
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000069
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +000070# HOST_OS is only used to work around local toolchain issues.
Stefan Tauner037cd842013-08-25 00:10:56 +000071HOST_OS ?= $(shell uname)
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +000072ifeq ($(HOST_OS), MINGW32_NT-5.1)
73# Explicitly set CC = gcc on MinGW, otherwise: "cc: command not found".
74CC = gcc
75endif
76ifneq ($(HOST_OS), SunOS)
Adam Kaufman064b1f22007-02-06 19:47:50 +000077STRIP_ARGS = -s
78endif
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +000079
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000080# Determine the destination OS.
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +000081# IMPORTANT: The following line must be placed before TARGET_OS is ever used
82# (of course), but should come after any lines setting CC because the line
83# below uses CC itself.
84override TARGET_OS := $(strip $(shell LC_ALL=C $(CC) $(CPPFLAGS) -E os.h 2>/dev/null | grep -v '^\#' | grep '"' | cut -f 2 -d'"'))
85
86ifeq ($(TARGET_OS), Darwin)
Stefan Reinauer2fea3f32010-01-21 20:26:30 +000087CPPFLAGS += -I/opt/local/include -I/usr/local/include
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000088LDFLAGS += -L/opt/local/lib -L/usr/local/lib
Stefan Reinauerf79edb92009-01-26 01:23:31 +000089endif
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000090
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +000091ifeq ($(TARGET_OS), FreeBSD)
Stefan Reinauer2fea3f32010-01-21 20:26:30 +000092CPPFLAGS += -I/usr/local/include
Andriy Gapon65c1b862008-05-22 13:22:45 +000093LDFLAGS += -L/usr/local/lib
94endif
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000095
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +000096ifeq ($(TARGET_OS), OpenBSD)
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +000097CPPFLAGS += -I/usr/local/include
98LDFLAGS += -L/usr/local/lib
99endif
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000100
Stefan Taunerc65b8552013-09-12 15:48:39 +0000101ifeq ($(TARGET_OS), NetBSD)
102CPPFLAGS += -I/usr/pkg/include
103LDFLAGS += -L/usr/pkg/lib
104endif
105
106ifeq ($(TARGET_OS), DragonFlyBSD)
107CPPFLAGS += -I/usr/pkg/include
108LDFLAGS += -L/usr/pkg/lib
109endif
110
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000111ifeq ($(TARGET_OS), DOS)
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000112EXEC_SUFFIX := .exe
Stefan Tauner449abe22013-09-11 23:34:57 +0000113CPPFLAGS += -I$(DOSLIBS_BASE)/libgetopt
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000114# DJGPP has odd uint*_t definitions which cause lots of format string warnings.
Carl-Daniel Hailfingerb7bce8a2012-08-14 21:36:11 +0000115CFLAGS += -Wno-format
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000116# FIXME Check if we can achieve the same effect with -L../libgetopt -lgetopt
Stefan Tauner449abe22013-09-11 23:34:57 +0000117LIBS += -lgetopt
118LDFLAGS += -L$(DOSLIBS_BASE)/libgetopt/
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000119# Bus Pirate, Serprog and PonyProg are not supported under DOS (missing serial support).
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000120ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
121UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes
122else
123override CONFIG_BUSPIRATE_SPI = no
124endif
125ifeq ($(CONFIG_SERPROG), yes)
126UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes
127else
128override CONFIG_SERPROG = no
129endif
Stefan Taunerd94d25d2012-07-28 03:17:15 +0000130ifeq ($(CONFIG_PONY_SPI), yes)
131UNSUPPORTED_FEATURES += CONFIG_PONY_SPI=yes
132else
133override CONFIG_PONY_SPI = no
134endif
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000135# Dediprog and FT2232 are not supported under DOS (missing USB support).
136ifeq ($(CONFIG_DEDIPROG), yes)
137UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes
138else
139override CONFIG_DEDIPROG = no
140endif
141ifeq ($(CONFIG_FT2232_SPI), yes)
142UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes
143else
144override CONFIG_FT2232_SPI = no
145endif
James Lairdc60de0e2013-03-27 13:00:23 +0000146ifeq ($(CONFIG_USBBLASTER_SPI), yes)
147UNSUPPORTED_FEATURES += CONFIG_USBBLASTER_SPI=yes
148else
149override CONFIG_USBBLASTER_SPI = no
150endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000151endif
Ollie Lho184a4042005-11-26 21:55:36 +0000152
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000153# FIXME: Should we check for Cygwin/MSVC as well?
154ifeq ($(TARGET_OS), MinGW)
155EXEC_SUFFIX := .exe
Uwe Hermannd5e85d62011-07-03 19:44:12 +0000156# MinGW doesn't have the ffs() function, but we can use gcc's __builtin_ffs().
Carl-Daniel Hailfingera8da2242012-08-15 23:06:32 +0000157FLASHROM_CFLAGS += -Dffs=__builtin_ffs
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000158# Some functions provided by Microsoft do not work as described in C99 specifications. This macro fixes that
159# for MinGW. See http://sourceforge.net/apps/trac/mingw-w64/wiki/printf%20and%20scanf%20family */
160FLASHROM_CFLAGS += -D__USE_MINGW_ANSI_STDIO=1
Uwe Hermannd5e85d62011-07-03 19:44:12 +0000161# libusb-win32/libftdi stuff is usually installed in /usr/local.
162CPPFLAGS += -I/usr/local/include
163LDFLAGS += -L/usr/local/lib
Uwe Hermannd5e85d62011-07-03 19:44:12 +0000164# For now we disable all PCI-based programmers on Windows/MinGW (no libpci).
165ifeq ($(CONFIG_INTERNAL), yes)
166UNSUPPORTED_FEATURES += CONFIG_INTERNAL=yes
167else
168override CONFIG_INTERNAL = no
169endif
170ifeq ($(CONFIG_RAYER_SPI), yes)
171UNSUPPORTED_FEATURES += CONFIG_RAYER_SPI=yes
172else
173override CONFIG_RAYER_SPI = no
174endif
175ifeq ($(CONFIG_NIC3COM), yes)
176UNSUPPORTED_FEATURES += CONFIG_NIC3COM=yes
177else
178override CONFIG_NIC3COM = no
179endif
180ifeq ($(CONFIG_GFXNVIDIA), yes)
181UNSUPPORTED_FEATURES += CONFIG_GFXNVIDIA=yes
182else
183override CONFIG_GFXNVIDIA = no
184endif
185ifeq ($(CONFIG_SATASII), yes)
186UNSUPPORTED_FEATURES += CONFIG_SATASII=yes
187else
188override CONFIG_SATASII = no
189endif
190ifeq ($(CONFIG_ATAHPT), yes)
191UNSUPPORTED_FEATURES += CONFIG_ATAHPT=yes
192else
193override CONFIG_ATAHPT = no
194endif
Jonathan Kollasch7f0f3fa2014-06-01 10:26:23 +0000195ifeq ($(CONFIG_ATAVIA), yes)
196UNSUPPORTED_FEATURES += CONFIG_ATAVIA=yes
197else
198override CONFIG_ATAVIA = no
199endif
Uwe Hermannd5e85d62011-07-03 19:44:12 +0000200ifeq ($(CONFIG_DRKAISER), yes)
201UNSUPPORTED_FEATURES += CONFIG_DRKAISER=yes
202else
203override CONFIG_DRKAISER = no
204endif
205ifeq ($(CONFIG_NICREALTEK), yes)
206UNSUPPORTED_FEATURES += CONFIG_NICREALTEK=yes
207else
208override CONFIG_NICREALTEK = no
209endif
210ifeq ($(CONFIG_NICNATSEMI), yes)
211UNSUPPORTED_FEATURES += CONFIG_NICNATSEMI=yes
212else
213override CONFIG_NICNATSEMI = no
214endif
215ifeq ($(CONFIG_NICINTEL), yes)
216UNSUPPORTED_FEATURES += CONFIG_NICINTEL=yes
217else
218override CONFIG_NICINTEL = no
219endif
220ifeq ($(CONFIG_NICINTEL_SPI), yes)
221UNSUPPORTED_FEATURES += CONFIG_NICINTEL_SPI=yes
222else
223override CONFIG_NICINTEL_SPI = no
224endif
225ifeq ($(CONFIG_OGP_SPI), yes)
226UNSUPPORTED_FEATURES += CONFIG_OGP_SPI=yes
227else
228override CONFIG_OGP_SPI = no
229endif
230ifeq ($(CONFIG_SATAMV), yes)
231UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes
232else
233override CONFIG_SATAMV = no
234endif
235endif
236
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000237ifeq ($(TARGET_OS), libpayload)
Stefan Tauner8e19b042013-08-28 09:55:04 +0000238ifeq ($(MAKECMDGOALS),)
239.DEFAULT_GOAL := libflashrom.a
240$(info Setting default goal to libflashrom.a)
241endif
Carl-Daniel Hailfingera8da2242012-08-15 23:06:32 +0000242FLASHROM_CFLAGS += -DSTANDALONE
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000243ifeq ($(CONFIG_DUMMY), yes)
244UNSUPPORTED_FEATURES += CONFIG_DUMMY=yes
245else
246override CONFIG_DUMMY = no
247endif
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000248# Bus Pirate, Serprog and PonyProg are not supported with libpayload (missing serial support).
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000249ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
250UNSUPPORTED_FEATURES += CONFIG_BUSPIRATE_SPI=yes
251else
252override CONFIG_BUSPIRATE_SPI = no
253endif
254ifeq ($(CONFIG_SERPROG), yes)
255UNSUPPORTED_FEATURES += CONFIG_SERPROG=yes
256else
257override CONFIG_SERPROG = no
258endif
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000259ifeq ($(CONFIG_PONY_SPI), yes)
260UNSUPPORTED_FEATURES += CONFIG_PONY_SPI=yes
261else
262override CONFIG_PONY_SPI = no
263endif
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000264# Dediprog and FT2232 are not supported with libpayload (missing libusb support)
265ifeq ($(CONFIG_DEDIPROG), yes)
266UNSUPPORTED_FEATURES += CONFIG_DEDIPROG=yes
267else
268override CONFIG_DEDIPROG = no
269endif
270ifeq ($(CONFIG_FT2232_SPI), yes)
271UNSUPPORTED_FEATURES += CONFIG_FT2232_SPI=yes
272else
273override CONFIG_FT2232_SPI = no
274endif
James Lairdc60de0e2013-03-27 13:00:23 +0000275ifeq ($(CONFIG_USBBLASTER_SPI), yes)
276UNSUPPORTED_FEATURES += CONFIG_USBBLASTER_SPI=yes
277else
278override CONFIG_USBBLASTER_SPI = no
279endif
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000280endif
281
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000282ifneq ($(TARGET_OS), Linux)
283ifeq ($(CONFIG_LINUX_SPI), yes)
284UNSUPPORTED_FEATURES += CONFIG_LINUX_SPI=yes
285else
286override CONFIG_LINUX_SPI = no
287endif
288endif
289
Stefan Tauner037cd842013-08-25 00:10:56 +0000290###############################################################################
291# General architecture-specific settings.
292# Like above for the OS, below we verify user-supplied options depending on the target architecture.
293
Uwe Hermann44ffd582011-08-20 14:16:00 +0000294# Determine the destination processor architecture.
295# IMPORTANT: The following line must be placed before ARCH is ever used
296# (of course), but should come after any lines setting CC because the line
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000297# below uses CC itself.
298override ARCH := $(strip $(shell LC_ALL=C $(CC) $(CPPFLAGS) -E arch.h 2>/dev/null | grep -v '^\#' | grep '"' | cut -f 2 -d'"'))
Uwe Hermann44ffd582011-08-20 14:16:00 +0000299
David Hendricksb286da72012-02-13 00:35:35 +0000300# PCI port I/O support is unimplemented on PPC/MIPS and unavailable on ARM.
301# Right now this means the drivers below only work on x86.
302ifneq ($(ARCH), x86)
Uwe Hermann21b10c62011-07-29 12:13:01 +0000303ifeq ($(CONFIG_NIC3COM), yes)
304UNSUPPORTED_FEATURES += CONFIG_NIC3COM=yes
305else
306override CONFIG_NIC3COM = no
307endif
308ifeq ($(CONFIG_NICREALTEK), yes)
309UNSUPPORTED_FEATURES += CONFIG_NICREALTEK=yes
310else
311override CONFIG_NICREALTEK = no
312endif
313ifeq ($(CONFIG_NICNATSEMI), yes)
314UNSUPPORTED_FEATURES += CONFIG_NICNATSEMI=yes
315else
316override CONFIG_NICNATSEMI = no
317endif
318ifeq ($(CONFIG_RAYER_SPI), yes)
319UNSUPPORTED_FEATURES += CONFIG_RAYER_SPI=yes
320else
321override CONFIG_RAYER_SPI = no
322endif
323ifeq ($(CONFIG_ATAHPT), yes)
324UNSUPPORTED_FEATURES += CONFIG_ATAHPT=yes
325else
326override CONFIG_ATAHPT = no
327endif
328ifeq ($(CONFIG_SATAMV), yes)
329UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes
330else
331override CONFIG_SATAMV = no
332endif
333endif
334
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000335###############################################################################
336# Flash chip drivers and bus support infrastructure.
337
Stefan Tauner4404f732013-09-12 08:28:56 +0000338CHIP_OBJS = jedec.o stm50.o w39.o w29ee011.o \
Sean Nelson35727f72010-01-28 23:55:12 +0000339 sst28sf040.o m29f400bt.o 82802ab.o pm49fl00x.o \
Stefan Tauner6ee37e22012-12-29 15:03:51 +0000340 sst49lfxxxc.o sst_fwhub.o flashchips.o spi.o spi25.o spi25_statusreg.o \
Aidan Thorntondb4e87d2013-08-27 18:01:53 +0000341 opaque.o sfdp.o en29lv640b.o at45db.o
Sean Nelson5d134642009-12-24 16:54:21 +0000342
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000343###############################################################################
344# Library code.
Sean Nelson5d134642009-12-24 16:54:21 +0000345
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000346LIB_OBJS = layout.o flashrom.o udelay.o programmer.o
Sean Nelson5d134642009-12-24 16:54:21 +0000347
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000348###############################################################################
349# Frontend related stuff.
Ollie Lho184a4042005-11-26 21:55:36 +0000350
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000351CLI_OBJS = cli_classic.o cli_output.o print.o
Ollie Lho184a4042005-11-26 21:55:36 +0000352
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000353# Set the flashrom version string from the highest revision number of the checked out flashrom files.
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000354# Note to packagers: Any tree exported with "make export" or "make tarball"
355# will not require subversion. The downloadable snapshots are already exported.
David Hendricks36e9f4b2013-08-14 14:47:26 +0000356SVNVERSION := $(shell ./util/getrevision.sh -u)
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000357
Stefan Tauner241e9d52013-08-13 22:13:01 +0000358RELEASE := 0.9.7
Stefan Taunerec7a35f2013-08-29 00:38:14 +0000359VERSION := $(RELEASE)-$(SVNVERSION)
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000360RELEASENAME ?= $(VERSION)
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000361
362SVNDEF := -D'FLASHROM_VERSION="$(VERSION)"'
Bernhard Walle201bde32008-01-21 15:24:22 +0000363
Stefan Tauner037cd842013-08-25 00:10:56 +0000364###############################################################################
365# Default settings of CONFIG_* variables.
366
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000367# Always enable internal/onboard support for now.
368CONFIG_INTERNAL ?= yes
369
Stefan Tauner52b6e9d2013-04-01 00:46:05 +0000370# Always enable serprog for now.
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000371CONFIG_SERPROG ?= yes
372
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000373# RayeR SPIPGM hardware support
374CONFIG_RAYER_SPI ?= yes
375
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000376# PonyProg2000 SPI hardware support
377CONFIG_PONY_SPI ?= yes
378
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000379# Always enable 3Com NICs for now.
380CONFIG_NIC3COM ?= yes
381
Carl-Daniel Hailfingerbf3af292010-07-29 14:41:46 +0000382# Enable NVIDIA graphics cards. Note: write and erase do not work properly.
383CONFIG_GFXNVIDIA ?= yes
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000384
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000385# Always enable SiI SATA controllers for now.
386CONFIG_SATASII ?= yes
387
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000388# Highpoint (HPT) ATA/RAID controller support.
389# IMPORTANT: This code is not yet working!
390CONFIG_ATAHPT ?= no
391
Jonathan Kollasch7f0f3fa2014-06-01 10:26:23 +0000392# VIA VT6421A LPC memory support
393CONFIG_ATAVIA ?= yes
394
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000395# Always enable FT2232 SPI dongles for now.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000396CONFIG_FT2232_SPI ?= yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000397
James Lairdc60de0e2013-03-27 13:00:23 +0000398# Always enable Altera USB-Blaster dongles for now.
399CONFIG_USBBLASTER_SPI ?= yes
400
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000401# Always enable dummy tracing for now.
402CONFIG_DUMMY ?= yes
403
404# Always enable Dr. Kaiser for now.
405CONFIG_DRKAISER ?= yes
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000406
Joerg Fischer5665ef32010-05-21 21:54:07 +0000407# Always enable Realtek NICs for now.
408CONFIG_NICREALTEK ?= yes
409
Andrew Morganc29c2e72010-06-07 22:37:54 +0000410# Disable National Semiconductor NICs until support is complete and tested.
411CONFIG_NICNATSEMI ?= no
412
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000413# Always enable Intel NICs for now.
414CONFIG_NICINTEL ?= yes
415
Idwer Vollering004f4b72010-09-03 18:21:21 +0000416# Always enable SPI on Intel NICs for now.
417CONFIG_NICINTEL_SPI ?= yes
418
Mark Marshall90021f22010-12-03 14:48:11 +0000419# Always enable SPI on OGP cards for now.
420CONFIG_OGP_SPI ?= yes
421
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000422# Always enable Bus Pirate SPI for now.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000423CONFIG_BUSPIRATE_SPI ?= yes
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000424
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000425# Disable Dediprog SF100 until support is complete and tested.
426CONFIG_DEDIPROG ?= no
427
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000428# Always enable Marvell SATA controllers for now.
429CONFIG_SATAMV ?= yes
430
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000431# Enable Linux spidev interface by default. We disable it on non-Linux targets.
432CONFIG_LINUX_SPI ?= yes
433
Carl-Daniel Hailfinger6161ff12009-11-16 21:22:24 +0000434# Disable wiki printing by default. It is only useful if you have wiki access.
Uwe Hermann2db77a02010-06-04 17:07:39 +0000435CONFIG_PRINT_WIKI ?= no
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000436
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000437# Bitbanging SPI infrastructure, default off unless needed.
438ifeq ($(CONFIG_RAYER_SPI), yes)
439override CONFIG_BITBANG_SPI = yes
440else
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000441ifeq ($(CONFIG_PONY_SPI), yes)
442override CONFIG_BITBANG_SPI = yes
443else
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000444ifeq ($(CONFIG_INTERNAL), yes)
445override CONFIG_BITBANG_SPI = yes
446else
447ifeq ($(CONFIG_NICINTEL_SPI), yes)
448override CONFIG_BITBANG_SPI = yes
449else
Mark Marshall90021f22010-12-03 14:48:11 +0000450ifeq ($(CONFIG_OGP_SPI), yes)
451override CONFIG_BITBANG_SPI = yes
452else
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000453CONFIG_BITBANG_SPI ?= no
454endif
455endif
456endif
Mark Marshall90021f22010-12-03 14:48:11 +0000457endif
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000458endif
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000459
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000460###############################################################################
Sean Nelson4c6d3a42013-09-11 23:35:03 +0000461# Handle CONFIG_* variables that depend on others set (and verified) above.
462
463# The external DMI decoder (dmidecode) does not work in libpayload. Bail out if the internal one got disabled.
464ifeq ($(TARGET_OS), libpayload)
465ifeq ($(CONFIG_INTERNAL), yes)
466ifeq ($(CONFIG_INTERNAL_DMI), no)
467UNSUPPORTED_FEATURES += CONFIG_INTERNAL_DMI=no
468else
469override CONFIG_INTERNAL_DMI = yes
470endif
471endif
472endif
473
474# Use internal DMI/SMBIOS decoder by default instead of relying on dmidecode.
475CONFIG_INTERNAL_DMI ?= yes
476
477###############################################################################
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000478# Programmer drivers and programmer support infrastructure.
Stefan Tauner037cd842013-08-25 00:10:56 +0000479# Depending on the CONFIG_* variables set and verified above we set compiler flags and parameters below.
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000480
Stefan Taunerfd0d4132012-09-25 21:24:55 +0000481FEATURE_CFLAGS += -D'CONFIG_DEFAULT_PROGRAMMER=$(CONFIG_DEFAULT_PROGRAMMER)'
482
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000483ifeq ($(CONFIG_INTERNAL), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000484FEATURE_CFLAGS += -D'CONFIG_INTERNAL=1'
Sean Nelson4c6d3a42013-09-11 23:35:03 +0000485PROGRAMMER_OBJS += processor_enable.o chipset_enable.o board_enable.o cbtable.o internal.o
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000486ifeq ($(ARCH), x86)
Rudolf Marek70e14592013-07-25 22:58:56 +0000487PROGRAMMER_OBJS += it87spi.o it85spi.o sb600spi.o amd_imc.o wbsio_spi.o mcp6x_spi.o
Sean Nelson4c6d3a42013-09-11 23:35:03 +0000488PROGRAMMER_OBJS += ichspi.o ich_descriptors.o dmi.o
489ifeq ($(CONFIG_INTERNAL_DMI), yes)
490FEATURE_CFLAGS += -D'CONFIG_INTERNAL_DMI=1'
491endif
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000492else
493endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000494NEED_PCI := yes
495endif
496
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000497ifeq ($(CONFIG_SERPROG), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000498FEATURE_CFLAGS += -D'CONFIG_SERPROG=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000499PROGRAMMER_OBJS += serprog.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000500NEED_SERIAL := yes
501NEED_NET := yes
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000502endif
503
Carl-Daniel Hailfingere7fdd6e2010-07-21 10:26:01 +0000504ifeq ($(CONFIG_RAYER_SPI), yes)
505FEATURE_CFLAGS += -D'CONFIG_RAYER_SPI=1'
506PROGRAMMER_OBJS += rayer_spi.o
507# Actually, NEED_PCI is wrong. NEED_IOPORT_ACCESS would be more correct.
508NEED_PCI := yes
509endif
510
Virgil-Adrian Teacada7c5452012-04-30 23:11:06 +0000511ifeq ($(CONFIG_PONY_SPI), yes)
512FEATURE_CFLAGS += -D'CONFIG_PONY_SPI=1'
513PROGRAMMER_OBJS += pony_spi.o
514NEED_SERIAL := yes
515endif
516
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000517ifeq ($(CONFIG_BITBANG_SPI), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000518FEATURE_CFLAGS += -D'CONFIG_BITBANG_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000519PROGRAMMER_OBJS += bitbang_spi.o
Carl-Daniel Hailfinger547872b2009-09-28 13:15:16 +0000520endif
521
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000522ifeq ($(CONFIG_NIC3COM), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000523FEATURE_CFLAGS += -D'CONFIG_NIC3COM=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000524PROGRAMMER_OBJS += nic3com.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000525NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000526endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000527
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000528ifeq ($(CONFIG_GFXNVIDIA), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000529FEATURE_CFLAGS += -D'CONFIG_GFXNVIDIA=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000530PROGRAMMER_OBJS += gfxnvidia.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000531NEED_PCI := yes
Uwe Hermann2bc98f62009-09-30 18:29:55 +0000532endif
533
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000534ifeq ($(CONFIG_SATASII), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000535FEATURE_CFLAGS += -D'CONFIG_SATASII=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000536PROGRAMMER_OBJS += satasii.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000537NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000538endif
539
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000540ifeq ($(CONFIG_ATAHPT), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000541FEATURE_CFLAGS += -D'CONFIG_ATAHPT=1'
Uwe Hermannddd5c9e2010-02-21 21:17:00 +0000542PROGRAMMER_OBJS += atahpt.o
543NEED_PCI := yes
544endif
545
Jonathan Kollasch7f0f3fa2014-06-01 10:26:23 +0000546ifeq ($(CONFIG_ATAVIA), yes)
547FEATURE_CFLAGS += -D'CONFIG_ATAVIA=1'
548PROGRAMMER_OBJS += atavia.o
549NEED_PCI := yes
550endif
551
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000552ifeq ($(CONFIG_FT2232_SPI), yes)
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000553# This is a totally ugly hack.
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000554FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "-D'CONFIG_FT2232_SPI=1'")
James Lairdc60de0e2013-03-27 13:00:23 +0000555NEED_FTDI := yes
556PROGRAMMER_OBJS += ft2232_spi.o
557endif
558
559ifeq ($(CONFIG_USBBLASTER_SPI), yes)
560# This is a totally ugly hack.
561FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "-D'CONFIG_USBBLASTER_SPI=1'")
562NEED_FTDI := yes
563PROGRAMMER_OBJS += usbblaster_spi.o
564endif
565
566ifeq ($(NEED_FTDI), yes)
567FTDILIBS := $(shell pkg-config --libs libftdi 2>/dev/null || printf "%s" "-lftdi -lusb")
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000568FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "FT232H := yes" .features && printf "%s" "-D'HAVE_FT232H=1'")
Jörg Mayer8776db22009-11-16 14:05:13 +0000569FEATURE_LIBS += $(shell LC_ALL=C grep -q "FTDISUPPORT := yes" .features && printf "%s" "$(FTDILIBS)")
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000570# We can't set NEED_USB here because that would transform libftdi auto-enabling
571# into a hard requirement for libusb, defeating the purpose of auto-enabling.
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000572endif
573
574ifeq ($(CONFIG_DUMMY), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000575FEATURE_CFLAGS += -D'CONFIG_DUMMY=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000576PROGRAMMER_OBJS += dummyflasher.o
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000577endif
578
579ifeq ($(CONFIG_DRKAISER), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000580FEATURE_CFLAGS += -D'CONFIG_DRKAISER=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000581PROGRAMMER_OBJS += drkaiser.o
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000582NEED_PCI := yes
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000583endif
Carl-Daniel Hailfinger6be74112009-08-12 16:17:41 +0000584
Joerg Fischer5665ef32010-05-21 21:54:07 +0000585ifeq ($(CONFIG_NICREALTEK), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000586FEATURE_CFLAGS += -D'CONFIG_NICREALTEK=1'
Joerg Fischer5665ef32010-05-21 21:54:07 +0000587PROGRAMMER_OBJS += nicrealtek.o
588NEED_PCI := yes
589endif
590
Andrew Morganc29c2e72010-06-07 22:37:54 +0000591ifeq ($(CONFIG_NICNATSEMI), yes)
592FEATURE_CFLAGS += -D'CONFIG_NICNATSEMI=1'
593PROGRAMMER_OBJS += nicnatsemi.o
594NEED_PCI := yes
595endif
596
Carl-Daniel Hailfingerb713d2e2011-05-08 00:24:18 +0000597ifeq ($(CONFIG_NICINTEL), yes)
598FEATURE_CFLAGS += -D'CONFIG_NICINTEL=1'
599PROGRAMMER_OBJS += nicintel.o
600NEED_PCI := yes
601endif
602
Idwer Vollering004f4b72010-09-03 18:21:21 +0000603ifeq ($(CONFIG_NICINTEL_SPI), yes)
604FEATURE_CFLAGS += -D'CONFIG_NICINTEL_SPI=1'
605PROGRAMMER_OBJS += nicintel_spi.o
606NEED_PCI := yes
607endif
608
Mark Marshall90021f22010-12-03 14:48:11 +0000609ifeq ($(CONFIG_OGP_SPI), yes)
610FEATURE_CFLAGS += -D'CONFIG_OGP_SPI=1'
611PROGRAMMER_OBJS += ogp_spi.o
612NEED_PCI := yes
613endif
614
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000615ifeq ($(CONFIG_BUSPIRATE_SPI), yes)
616FEATURE_CFLAGS += -D'CONFIG_BUSPIRATE_SPI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000617PROGRAMMER_OBJS += buspirate_spi.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000618NEED_SERIAL := yes
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000619endif
620
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000621ifeq ($(CONFIG_DEDIPROG), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000622FEATURE_CFLAGS += -D'CONFIG_DEDIPROG=1'
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000623PROGRAMMER_OBJS += dediprog.o
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000624NEED_USB := yes
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000625endif
626
Carl-Daniel Hailfinger9a1105c2011-02-04 21:37:59 +0000627ifeq ($(CONFIG_SATAMV), yes)
628FEATURE_CFLAGS += -D'CONFIG_SATAMV=1'
629PROGRAMMER_OBJS += satamv.o
630NEED_PCI := yes
631endif
632
Carl-Daniel Hailfinger8541d232012-02-16 21:00:27 +0000633ifeq ($(CONFIG_LINUX_SPI), yes)
Stefan Tauner8868db32012-03-13 00:18:19 +0000634# This is a totally ugly hack.
635FEATURE_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 +0000636PROGRAMMER_OBJS += linux_spi.o
637endif
638
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000639ifeq ($(NEED_SERIAL), yes)
Sean Nelson5d134642009-12-24 16:54:21 +0000640LIB_OBJS += serial.o
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000641endif
642
643ifeq ($(NEED_NET), yes)
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000644ifeq ($(TARGET_OS), SunOS)
Carl-Daniel Hailfinger5bdf2982010-06-14 12:42:05 +0000645LIBS += -lsocket
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000646endif
Carl-Daniel Hailfingere51ea102009-11-23 19:20:11 +0000647endif
648
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000649ifeq ($(NEED_PCI), yes)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000650CHECK_LIBPCI = yes
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000651FEATURE_CFLAGS += -D'NEED_PCI=1'
Carl-Daniel Hailfingerfb0828f2010-02-12 19:35:25 +0000652PROGRAMMER_OBJS += pcidev.o physmap.o hwaccess.o
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000653ifeq ($(TARGET_OS), NetBSD)
Carl-Daniel Hailfinger460b2822010-06-04 23:24:57 +0000654# The libpci we want is called libpciutils on NetBSD and needs NetBSD libpci.
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000655PCILIBS += -lpciutils -lpci
Carl-Daniel Hailfinger460b2822010-06-04 23:24:57 +0000656# For (i386|x86_64)_iopl(2).
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000657PCILIBS += -l$(shell uname -p)
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000658else
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000659ifeq ($(TARGET_OS), DOS)
Stefan Tauner449abe22013-09-11 23:34:57 +0000660CPPFLAGS += -I$(DOSLIBS_BASE)/libpci/include
661LDFLAGS += -L$(DOSLIBS_BASE)/libpci/lib/
662PCILIBS += -lpci
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000663else
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000664PCILIBS += -lpci
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000665ifeq ($(TARGET_OS), OpenBSD)
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +0000666# For (i386|amd64)_iopl(2).
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000667PCILIBS += -l$(shell uname -m)
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000668else
669ifeq ($(TARGET_OS), Darwin)
670# DirectHW framework can be found in the DirectHW library.
Stefan Taunere34e3e82013-01-01 00:06:51 +0000671PCILIBS += -framework IOKit -framework DirectHW
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000672else
673endif
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +0000674endif
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000675endif
Jonathan A. Kollasch3646c8f2010-01-08 21:18:08 +0000676endif
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000677endif
678
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000679ifeq ($(NEED_USB), yes)
680CHECK_LIBUSB0 = yes
681FEATURE_CFLAGS += -D'NEED_USB=1'
682USBLIBS := $(shell pkg-config --libs libusb 2>/dev/null || printf "%s" "-lusb")
683endif
684
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000685ifeq ($(CONFIG_PRINT_WIKI), yes)
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000686FEATURE_CFLAGS += -D'CONFIG_PRINT_WIKI=1'
Sean Nelson5d134642009-12-24 16:54:21 +0000687CLI_OBJS += print_wiki.o
Carl-Daniel Hailfinger9c8476b2009-09-16 12:19:03 +0000688endif
689
Carl-Daniel Hailfinger132e2ec2010-03-27 16:36:40 +0000690FEATURE_CFLAGS += $(shell LC_ALL=C grep -q "UTSNAME := yes" .features && printf "%s" "-D'HAVE_UTSNAME=1'")
691
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000692# We could use PULLED_IN_LIBS, but that would be ugly.
693FEATURE_LIBS += $(shell LC_ALL=C grep -q "NEEDLIBZ := yes" .libdeps && printf "%s" "-lz")
694
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000695LIBFLASHROM_OBJS = $(CHIP_OBJS) $(PROGRAMMER_OBJS) $(LIB_OBJS)
Stefan Taunerd94d25d2012-07-28 03:17:15 +0000696OBJS = $(CLI_OBJS) $(LIBFLASHROM_OBJS)
Sean Nelson5d134642009-12-24 16:54:21 +0000697
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000698all: hwlibs features $(PROGRAM)$(EXEC_SUFFIX) $(PROGRAM).8
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000699ifeq ($(ARCH), x86)
700 @+$(MAKE) -C util/ich_descriptors_tool/ TARGET_OS=$(TARGET_OS) EXEC_SUFFIX=$(EXEC_SUFFIX)
701endif
702
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000703$(PROGRAM)$(EXEC_SUFFIX): $(OBJS)
Carl-Daniel Hailfinger11990da2013-07-13 23:21:05 +0000704 $(CC) $(LDFLAGS) -o $(PROGRAM)$(EXEC_SUFFIX) $(OBJS) $(LIBS) $(PCILIBS) $(FEATURE_LIBS) $(USBLIBS)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000705
Patrick Georgi97bc95c2011-03-08 07:17:44 +0000706libflashrom.a: $(LIBFLASHROM_OBJS)
707 $(AR) rcs $@ $^
708 $(RANLIB) $@
709
Carl-Daniel Hailfinger8ef7dce2009-07-10 20:19:48 +0000710# TAROPTIONS reduces information leakage from the packager's system.
711# If other tar programs support command line arguments for setting uid/gid of
712# stored files, they can be handled here as well.
713TAROPTIONS = $(shell LC_ALL=C tar --version|grep -q GNU && echo "--owner=root --group=root")
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000714
Paul Fox05dfbe62009-06-16 21:08:06 +0000715%.o: %.c .features
Carl-Daniel Hailfingera8da2242012-08-15 23:06:32 +0000716 $(CC) -MMD $(CFLAGS) $(CPPFLAGS) $(FLASHROM_CFLAGS) $(FEATURE_CFLAGS) $(SVNDEF) -o $@ -c $<
Clark Rawlins02016f72008-02-14 23:22:20 +0000717
Carl-Daniel Hailfingera0020df2010-05-30 22:35:14 +0000718# Make sure to add all names of generated binaries here.
719# This includes all frontends and libflashrom.
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000720# We don't use EXEC_SUFFIX here because we want to clean everything.
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000721clean:
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000722 rm -f $(PROGRAM) $(PROGRAM).exe libflashrom.a *.o *.d $(PROGRAM).8
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000723 @+$(MAKE) -C util/ich_descriptors_tool/ clean
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000724
Ollie Lho184a4042005-11-26 21:55:36 +0000725distclean: clean
Stefan Reinauere2f01582010-06-07 11:08:07 +0000726 rm -f .features .libdeps
Christian Ruppertdb9d9f42009-05-14 14:17:07 +0000727
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000728strip: $(PROGRAM)$(EXEC_SUFFIX)
729 $(STRIP) $(STRIP_ARGS) $(PROGRAM)$(EXEC_SUFFIX)
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000730
Stefan Tauner56787082011-08-18 02:27:19 +0000731# to define test programs we use verbatim variables, which get exported
732# to environment variables and are referenced with $$<varname> later
733
734define COMPILER_TEST
735int main(int argc, char **argv)
736{
737 (void) argc;
738 (void) argv;
739 return 0;
740}
741endef
742export COMPILER_TEST
743
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000744compiler: featuresavailable
Paul Fox05dfbe62009-06-16 21:08:06 +0000745 @printf "Checking for a C compiler... "
Stefan Tauner56787082011-08-18 02:27:19 +0000746 @echo "$$COMPILER_TEST" > .test.c
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000747 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .test.c -o .test$(EXEC_SUFFIX) >/dev/null && \
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000748 echo "found." || ( echo "not found."; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000749 rm -f .test.c .test$(EXEC_SUFFIX); exit 1)
750 @rm -f .test.c .test$(EXEC_SUFFIX)
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000751 @printf "Target arch is "
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000752 @# FreeBSD wc will output extraneous whitespace.
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000753 @echo $(ARCH)|wc -w|grep -q '^[[:blank:]]*1[[:blank:]]*$$' || \
Carl-Daniel Hailfinger91199a12011-07-07 06:59:18 +0000754 ( echo "unknown. Aborting."; exit 1)
755 @printf "%s\n" '$(ARCH)'
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000756 @printf "Target OS is "
757 @# FreeBSD wc will output extraneous whitespace.
758 @echo $(TARGET_OS)|wc -w|grep -q '^[[:blank:]]*1[[:blank:]]*$$' || \
759 ( echo "unknown. Aborting."; exit 1)
760 @printf "%s\n" '$(TARGET_OS)'
Stefan Taunerd6c17f62013-09-12 14:04:31 +0000761ifeq ($(TARGET_OS), libpayload)
762 @$(CC) --version 2>&1 | grep -q coreboot || \
763 ( echo "Warning: It seems you are not using coreboot's reference compiler."; \
764 echo "This might work but usually does not, please beware." )
765endif
Carl-Daniel Hailfinger4cb7a962009-06-16 09:31:51 +0000766
Stefan Tauner56787082011-08-18 02:27:19 +0000767define LIBPCI_TEST
768/* Avoid a failing test due to libpci header symbol shadowing breakage */
769#define index shadow_workaround_index
Stefan Taunerc65b8552013-09-12 15:48:39 +0000770#if !defined __NetBSD__ && !defined __DragonFly__
Stefan Tauner56787082011-08-18 02:27:19 +0000771#include <pci/pci.h>
Stefan Taunerc65b8552013-09-12 15:48:39 +0000772#else
773#include <pciutils/pci.h>
774#endif
Stefan Tauner56787082011-08-18 02:27:19 +0000775struct pci_access *pacc;
776int main(int argc, char **argv)
777{
778 (void) argc;
779 (void) argv;
780 pacc = pci_alloc();
781 return 0;
782}
783endef
784export LIBPCI_TEST
785
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000786define LIBUSB0_TEST
787#include <usb.h>
788int main(int argc, char **argv)
789{
790 (void) argc;
791 (void) argv;
792 usb_init();
793 return 0;
794}
795endef
796export LIBUSB0_TEST
797
798hwlibs: compiler
799 @printf "" > .libdeps
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000800ifeq ($(CHECK_LIBPCI), yes)
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000801 @printf "Checking for libpci headers... "
Stefan Tauner56787082011-08-18 02:27:19 +0000802 @echo "$$LIBPCI_TEST" > .test.c
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000803 @$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >/dev/null && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000804 echo "found." || ( echo "not found."; echo; \
805 echo "Please install libpci headers (package pciutils-devel)."; \
806 echo "See README for more information."; echo; \
807 rm -f .test.c .test.o; exit 1)
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000808 @printf "Checking if libpci is present and sufficient... "
Carl-Daniel Hailfinger26148ae2012-11-29 22:22:04 +0000809 @$(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) $(PCILIBS) >/dev/null && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000810 echo "yes." || ( echo "no."; \
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000811 printf "Checking if libz+libpci are present and sufficient..."; \
Carl-Daniel Hailfinger26148ae2012-11-29 22:22:04 +0000812 $(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) $(PCILIBS) -lz >/dev/null && \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000813 ( echo "yes."; echo "NEEDLIBZ := yes" > .libdeps ) || ( echo "no."; echo; \
Carl-Daniel Hailfinger9979eac2010-03-22 12:29:45 +0000814 echo "Please install libpci (package pciutils) and/or libz."; \
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000815 echo "See README for more information."; echo; \
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000816 rm -f .test.c .test.o .test$(EXEC_SUFFIX); exit 1) )
817 @rm -f .test.c .test.o .test$(EXEC_SUFFIX)
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000818endif
819ifeq ($(CHECK_LIBUSB0), yes)
820 @printf "Checking for libusb-0.1/libusb-compat headers... "
821 @echo "$$LIBUSB0_TEST" > .test.c
822 @$(CC) -c $(CPPFLAGS) $(CFLAGS) .test.c -o .test.o >/dev/null && \
823 echo "found." || ( echo "not found."; echo; \
824 echo "Please install libusb-0.1 headers or libusb-compat headers."; \
825 echo "See README for more information."; echo; \
826 rm -f .test.c .test.o; exit 1)
827 @printf "Checking if libusb-0.1 is usable... "
Carl-Daniel Hailfinger26148ae2012-11-29 22:22:04 +0000828 @$(CC) $(LDFLAGS) .test.o -o .test$(EXEC_SUFFIX) $(LIBS) $(USBLIBS) >/dev/null && \
Carl-Daniel Hailfingere7a39bf2012-11-20 21:06:16 +0000829 echo "yes." || ( echo "no."; \
830 echo "Please install libusb-0.1 or libusb-compat."; \
831 echo "See README for more information."; echo; \
832 rm -f .test.c .test.o .test$(EXEC_SUFFIX); exit 1)
833 @rm -f .test.c .test.o .test$(EXEC_SUFFIX)
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000834endif
Stefan Reinauer53e96252005-12-01 16:19:24 +0000835
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000836.features: features
837
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000838# If a user does not explicitly request a non-working feature, we should
839# silently disable it. However, if a non-working (does not compile) feature
840# is explicitly requested, we should bail out with a descriptive error message.
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000841# We also have to check that at least one programmer driver is enabled.
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000842featuresavailable:
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000843ifeq ($(PROGRAMMER_OBJS),)
844 @echo "You have to enable at least one programmer driver!"
845 @false
846endif
847ifneq ($(UNSUPPORTED_FEATURES), )
Carl-Daniel Hailfinger5d3fcb92010-06-14 18:40:59 +0000848 @echo "The following features are unavailable on your machine: $(UNSUPPORTED_FEATURES)"
849 @false
850endif
851
Stefan Tauner56787082011-08-18 02:27:19 +0000852define FTDI_TEST
853#include <ftdi.h>
854struct ftdi_context *ftdic = NULL;
855int main(int argc, char **argv)
856{
857 (void) argc;
858 (void) argv;
859 return ftdi_init(ftdic);
860}
861endef
862export FTDI_TEST
863
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000864define FTDI_232H_TEST
865#include <ftdi.h>
866enum ftdi_chip_type type = TYPE_232H;
867endef
868export FTDI_232H_TEST
869
Stefan Tauner56787082011-08-18 02:27:19 +0000870define UTSNAME_TEST
871#include <sys/utsname.h>
872struct utsname osinfo;
873int main(int argc, char **argv)
874{
875 (void) argc;
876 (void) argv;
877 uname (&osinfo);
878 return 0;
879}
880endef
881export UTSNAME_TEST
882
Stefan Tauner8868db32012-03-13 00:18:19 +0000883define LINUX_SPI_TEST
884#include <linux/types.h>
885#include <linux/spi/spidev.h>
886
887int main(int argc, char **argv)
888{
889 (void) argc;
890 (void) argv;
891 return 0;
892}
893endef
894export LINUX_SPI_TEST
895
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000896features: compiler
897 @echo "FEATURES := yes" > .features.tmp
James Lairdc60de0e2013-03-27 13:00:23 +0000898ifeq ($(NEED_FTDI), yes)
Paul Fox05dfbe62009-06-16 21:08:06 +0000899 @printf "Checking for FTDI support... "
Stefan Tauner56787082011-08-18 02:27:19 +0000900 @echo "$$FTDI_TEST" > .featuretest.c
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000901 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) $(FTDILIBS) $(LIBS) >/dev/null 2>&1 && \
Carl-Daniel Hailfingerb18ecbc2009-06-19 14:20:34 +0000902 ( echo "found."; echo "FTDISUPPORT := yes" >> .features.tmp ) || \
903 ( echo "not found."; echo "FTDISUPPORT := no" >> .features.tmp )
Ilya A. Volynets-Evenbakh2c714ab2012-09-26 00:47:09 +0000904 @printf "Checking for FT232H support in libftdi... "
905 @echo "$$FTDI_232H_TEST" >> .featuretest.c
906 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) $(FTDILIBS) $(LIBS) >/dev/null 2>&1 && \
907 ( echo "found."; echo "FT232H := yes" >> .features.tmp ) || \
908 ( echo "not found."; echo "FT232H := no" >> .features.tmp )
Carl-Daniel Hailfinger8a59ff02009-12-24 03:33:11 +0000909endif
Stefan Tauner8868db32012-03-13 00:18:19 +0000910ifeq ($(CONFIG_LINUX_SPI), yes)
911 @printf "Checking if Linux SPI headers are present... "
912 @echo "$$LINUX_SPI_TEST" > .featuretest.c
913 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \
914 ( echo "yes."; echo "LINUX_SPI_SUPPORT := yes" >> .features.tmp ) || \
915 ( echo "no."; echo "LINUX_SPI_SUPPORT := no" >> .features.tmp )
916endif
Stefan Tauner56787082011-08-18 02:27:19 +0000917 @printf "Checking for utsname support... "
918 @echo "$$UTSNAME_TEST" > .featuretest.c
919 @$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) .featuretest.c -o .featuretest$(EXEC_SUFFIX) >/dev/null 2>&1 && \
920 ( echo "found."; echo "UTSNAME := yes" >> .features.tmp ) || \
921 ( echo "not found."; echo "UTSNAME := no" >> .features.tmp )
922 @$(DIFF) -q .features.tmp .features >/dev/null 2>&1 && rm .features.tmp || mv .features.tmp .features
923 @rm -f .featuretest.c .featuretest$(EXEC_SUFFIX)
Paul Fox05dfbe62009-06-16 21:08:06 +0000924
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000925$(PROGRAM).8: $(PROGRAM).8.tmpl
926 @sed -e '1 s#".*".*#"$(shell ./util/getrevision.sh -d $(PROGRAM).8.tmpl)" "$(VERSION)"#' <$< >$@
927
928install: $(PROGRAM)$(EXEC_SUFFIX) $(PROGRAM).8
Uwe Hermannc2a9c9c2009-05-14 14:51:14 +0000929 mkdir -p $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000930 mkdir -p $(DESTDIR)$(MANDIR)/man8
Carl-Daniel Hailfingerddbab712010-06-14 14:44:08 +0000931 $(INSTALL) -m 0755 $(PROGRAM)$(EXEC_SUFFIX) $(DESTDIR)$(PREFIX)/sbin
Uwe Hermann56b2cb02009-05-21 15:59:58 +0000932 $(INSTALL) -m 0644 $(PROGRAM).8 $(DESTDIR)$(MANDIR)/man8
Uwe Hermannc113b572006-12-14 00:59:41 +0000933
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000934export: $(PROGRAM).8
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000935 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)
936 @svn export -r BASE . $(EXPORTDIR)/flashrom-$(RELEASENAME)
937 @sed "s/^SVNVERSION.*/SVNVERSION := $(SVNVERSION)/" Makefile >$(EXPORTDIR)/flashrom-$(RELEASENAME)/Makefile
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000938 @cp $(PROGRAM).8 "$(EXPORTDIR)/flashrom-$(RELEASENAME)/$(PROGRAM).8"
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000939 @LC_ALL=C svn log >$(EXPORTDIR)/flashrom-$(RELEASENAME)/ChangeLog
940 @echo Exported $(EXPORTDIR)/flashrom-$(RELEASENAME)/
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000941
942tarball: export
Carl-Daniel Hailfinger48e5e092009-08-31 16:25:08 +0000943 @tar cjf $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2 -C $(EXPORTDIR)/ $(TAROPTIONS) flashrom-$(RELEASENAME)/
944 @rm -rf $(EXPORTDIR)/flashrom-$(RELEASENAME)
945 @echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +0000946
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000947djgpp-dos: clean
Carl-Daniel Hailfinger33a65a02011-12-20 00:51:44 +0000948 make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip
949libpayload: clean
950 make CC="CC=i386-elf-gcc lpgcc" AR=i386-elf-ar RANLIB=i386-elf-ranlib
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000951
Joerg Mayera93d9dc2013-08-29 00:38:19 +0000952.PHONY: all install clean distclean compiler hwlibs features export tarball dos featuresavailable
Ollie Lho184a4042005-11-26 21:55:36 +0000953
Stefan Reinauere2f01582010-06-07 11:08:07 +0000954-include $(OBJS:.o=.d)