blob: 53a3dadab08d520d20a794409d188914d562383a [file] [log] [blame]
Patrick Georgi71b84802011-02-22 14:35:05 +00001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2011 secunet Security Networks AG
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; version 2 of the License.
9##
10## This program is distributed in the hope that it will be useful,
11## but WITHOUT ANY WARRANTY; without even the implied warranty of
12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13## GNU General Public License for more details.
14##
15## You should have received a copy of the GNU General Public License
16## along with this program; if not, write to the Free Software
17## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18##
19
20#######################################################################
21# misleadingly named, this is the coreboot version
Sven Schnelle054849d2011-08-26 21:57:53 +020022export KERNELVERSION := $(shell if [ -d "$(top)/.git" -a -f "`which git`" ]; then git describe --dirty; else echo unknown; fi)
Patrick Georgi71b84802011-02-22 14:35:05 +000023
24#######################################################################
25# Basic component discovery
26ARCHDIR-$(CONFIG_ARCH_X86) := x86
27MAINBOARDDIR=$(call strip_quotes,$(CONFIG_MAINBOARD_DIR))
28export MAINBOARDDIR
29
Kyösti Mälkki0db2ae3a2012-04-19 12:00:06 +030030## Final build results, which CBFSTOOL uses to create the final
31## rom image file, are placed under $(objcbfs).
32## These typically have suffixes .debug .elf .bin and .map
33export objcbfs := $(obj)/cbfs/$(CONFIG_CBFS_PREFIX)
34
35## Based on the active configuration, Makefile conditionally collects
36## the required assembly includes and saves them in a file.
37## Such files that do not have a clear one-to-one relation to a source
38## file under src/ are placed and built under $(objgenerated)
39export objgenerated := $(obj)/generated
40
Patrick Georgi71b84802011-02-22 14:35:05 +000041#######################################################################
42# root rule to resolve if in build mode (ie. configuration exists)
43real-target: $(obj)/config.h coreboot
Kyösti Mälkki0db2ae3a2012-04-19 12:00:06 +030044coreboot: build-dirs $(obj)/coreboot.rom
Patrick Georgi71b84802011-02-22 14:35:05 +000045
46#######################################################################
47# our phony targets
Kyösti Mälkki0db2ae3a2012-04-19 12:00:06 +030048PHONY+= clean-abuild coreboot lint lint-stable build-dirs
Patrick Georgi71b84802011-02-22 14:35:05 +000049
50#######################################################################
51# root source directories of coreboot
Kyösti Mälkki2a830d02011-12-01 17:49:43 +020052subdirs-y := src/lib src/boot src/console src/devices src/ec src/southbridge
53subdirs-y += src/northbridge src/superio src/drivers src/cpu src/vendorcode
Patrick Georgi499fc922012-03-09 10:53:52 +010054subdirs-y += util/cbfstool util/sconfig util/nvramtool
Patrick Georgi71b84802011-02-22 14:35:05 +000055subdirs-y += src/arch/$(ARCHDIR-y)
56subdirs-y += src/mainboard/$(MAINBOARDDIR)
57
Patrick Georgia25828d2011-09-02 09:57:01 +020058subdirs-y += site-local
59
Patrick Georgi71b84802011-02-22 14:35:05 +000060#######################################################################
61# Add source classes and their build options
62classes-y := ramstage romstage driver smm
63
Patrick Georgi71b84802011-02-22 14:35:05 +000064romstage-c-ccopts:=-D__PRE_RAM__
Stefan Reinauer61aee5f2011-04-10 04:15:23 +000065romstage-S-ccopts:=-D__PRE_RAM__
Rudolf Marek7f0e9302011-09-02 23:23:41 +020066ifeq ($(CONFIG_TRACE),y)
67ramstage-c-ccopts:= -finstrument-functions
68endif
69
Stefan Reinauer24ef1342011-04-14 22:28:00 +000070smm-c-ccopts:=-D__SMM__
71smm-S-ccopts:=-D__SMM__
Patrick Georgi71b84802011-02-22 14:35:05 +000072
Stefan Reinauer3aa067f2012-04-02 13:24:04 -070073# SMM TSEG base is dynamic
74ifeq ($(CONFIG_SMM_TSEG),y)
75smm-c-ccopts += -fpic
76endif
77
Patrick Georgi57205c72011-03-08 20:49:18 +000078ramstage-c-deps:=$$(OPTION_TABLE_H)
79romstage-c-deps:=$$(OPTION_TABLE_H)
80
Patrick Georgi71b84802011-02-22 14:35:05 +000081#######################################################################
82# Add handler to compile ACPI's ASL
83define ramstage-objs_asl_template
Sven Schnelled69438e2011-03-29 09:01:10 +000084$(obj)/$(1).ramstage.o: src/$(1).asl $(obj)/config.h
Patrick Georgi71b84802011-02-22 14:35:05 +000085 @printf " IASL $$(subst $(top)/,,$$(@))\n"
Patrick Georgic8feedd2012-02-16 18:43:25 +010086 $(CC) -x assembler-with-cpp -E -MMD -MT $$(@) -D__ACPI__ -P -include $(abspath $(obj)/config.h) -I$(src) -I$(src)/include -I$(src)/arch/$(ARCHDIR-y)/include -I$(src)/mainboard/$(MAINBOARDDIR) $$< -o $$(basename $$@).asl
Marc Jones2aac3f62011-08-08 16:07:50 -060087 cd $$(dir $$@); $(IASL) -p $$(notdir $$@) -tc $$(notdir $$(basename $$@)).asl
Patrick Georgib2a42642011-06-01 19:54:16 +000088 mv $$(basename $$@).hex $$(basename $$@).c
Patrick Georgi71b84802011-02-22 14:35:05 +000089 $(CC) $$(CFLAGS) $$(if $$(subst dsdt,,$$(basename $$(notdir $(1)))), -DAmlCode=AmlCode_$$(basename $$(notdir $(1)))) -c -o $$@ $$(basename $$@).c
90 # keep %.o: %.c rule from catching the temporary .c file after a make clean
91 mv $$(basename $$@).c $$(basename $$@).hex
92endef
93
94#######################################################################
Patrick Georgi3bbd2bf2012-03-09 12:30:07 +010095# Parse plaintext cmos defaults into binary format
96# arg1: source file
97# arg2: binary file name
98cbfs-files-processor-nvramtool= \
99 $(eval $(2): $(1) $(src)/mainboard/$(MAINBOARDDIR)/cmos.layout | $(objutil)/nvramtool/nvramtool ; \
100 printf " CREATE $(2) (from $(1))\n"; $(objutil)/nvramtool/nvramtool -y $(src)/mainboard/$(MAINBOARDDIR)/cmos.layout -D $(2).tmp -p $(1) && mv $(2).tmp $(2))
101
102#######################################################################
Patrick Georgi71b84802011-02-22 14:35:05 +0000103# Add handler for arbitrary files in CBFS
104$(call add-special-class,cbfs-files)
105cbfs-files-handler= \
Patrick Georgi3bbd2bf2012-03-09 12:30:07 +0100106 $(eval tmp-cbfs-method:=$(word 2, $(subst :, ,$($(2)-file)))) \
107 $(eval $(2)-file:=$(word 1, $(subst :, ,$($(2)-file)))) \
Patrick Georgi71b84802011-02-22 14:35:05 +0000108 $(if $(wildcard $(1)$($(2)-file)), \
109 $(eval tmp-cbfs-file:= $(wildcard $(1)$($(2)-file))), \
110 $(eval tmp-cbfs-file:= $($(2)-file))) \
Patrick Georgi3bbd2bf2012-03-09 12:30:07 +0100111 $(if $(tmp-cbfs-method), \
112 $(eval tmp-old-cbfs-file:=$(tmp-cbfs-file)) \
113 $(eval tmp-cbfs-file:=$(shell mktemp $(obj)/mainboard/$(MAINBOARDDIR)/cbfs-file.XXXXXX).out) \
114 $(call cbfs-files-processor-$(tmp-cbfs-method),$(tmp-old-cbfs-file),$(tmp-cbfs-file))) \
Patrick Georgi71b84802011-02-22 14:35:05 +0000115 $(eval cbfs-files += $(tmp-cbfs-file)|$(2)|$($(2)-type)|$($(2)-position)) \
116 $(eval $(2)-name:=) \
117 $(eval $(2)-type:=) \
118 $(eval $(2)-position:=)
119
120#######################################################################
121# a variety of flags for our build
Sven Schnelle8eee19d2011-05-02 19:53:04 +0000122CBFS_COMPRESS_FLAG:=
123ifeq ($(CONFIG_COMPRESS_RAMSTAGE),y)
Patrick Georgi71b84802011-02-22 14:35:05 +0000124CBFS_COMPRESS_FLAG:=l
Sven Schnelle8eee19d2011-05-02 19:53:04 +0000125endif
126
Patrick Georgi71b84802011-02-22 14:35:05 +0000127CBFS_PAYLOAD_COMPRESS_FLAG:=
128CBFS_PAYLOAD_COMPRESS_NAME:=none
129ifeq ($(CONFIG_COMPRESSED_PAYLOAD_LZMA),y)
130CBFS_PAYLOAD_COMPRESS_FLAG:=l
131CBFS_PAYLOAD_COMPRESS_NAME:=LZMA
132endif
133
134ifneq ($(CONFIG_LOCALVERSION),"")
135COREBOOT_EXTRA_VERSION := -$(call strip_quotes,$(CONFIG_LOCALVERSION))
136endif
137
138INCLUDES := -Isrc -Isrc/include -I$(obj) -Isrc/arch/$(ARCHDIR-y)/include
139INCLUDES += -Isrc/devices/oprom/include
140# abspath is a workaround for romcc
141INCLUDES += -include $(abspath $(obj)/config.h)
142
Frank Vibransec402602011-05-05 16:45:36 +0000143CFLAGS = $(INCLUDES) -Os -pipe -g -nostdinc
Patrick Georgi71b84802011-02-22 14:35:05 +0000144CFLAGS += -nostdlib -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes
145CFLAGS += -Wwrite-strings -Wredundant-decls -Wno-trigraphs
146CFLAGS += -Wstrict-aliasing -Wshadow
147ifeq ($(CONFIG_WARNINGS_ARE_ERRORS),y)
148CFLAGS += -Werror
149endif
Patrick Georgi71b84802011-02-22 14:35:05 +0000150CFLAGS += -fno-common -ffreestanding -fno-builtin -fomit-frame-pointer
151
152additional-dirs := $(objutil)/cbfstool $(objutil)/romcc $(objutil)/options
153
154#######################################################################
155# generate build support files
156$(obj)/build.h: .xcompile
157 @printf " GEN build.h\n"
158 rm -f $(obj)/build.h
159 printf "/* build system definitions (autogenerated) */\n" > $(obj)/build.ht
160 printf "#ifndef __BUILD_H\n" >> $(obj)/build.ht
161 printf "#define __BUILD_H\n\n" >> $(obj)/build.ht
Patrick Georgib8e9ba92011-03-17 07:47:49 +0000162 printf "#define COREBOOT_VERSION \"$(KERNELVERSION)\"\n" >> $(obj)/build.ht
Patrick Georgi71b84802011-02-22 14:35:05 +0000163 printf "#define COREBOOT_EXTRA_VERSION \"$(COREBOOT_EXTRA_VERSION)\"\n" >> $(obj)/build.ht
164 printf "#define COREBOOT_BUILD \"`LANG= date`\"\n" >> $(obj)/build.ht
Sven Schnelle164bcfd2011-08-14 20:56:34 +0200165 printf "#define COREBOOT_DMI_DATE \"`LANG= date +"%m/%d/%Y"`\"\n" >> $(obj)/build.ht
Patrick Georgi71b84802011-02-22 14:35:05 +0000166 printf "\n" >> $(obj)/build.ht
167 printf "#define COREBOOT_COMPILER \"$(shell LANG= $(CC) --version | head -n1)\"\n" >> $(obj)/build.ht
168 printf "#define COREBOOT_ASSEMBLER \"$(shell LANG= $(AS) --version | head -n1)\"\n" >> $(obj)/build.ht
169 printf "#define COREBOOT_LINKER \"$(shell LANG= $(LD) --version | head -n1)\"\n" >> $(obj)/build.ht
170 printf "#define COREBOOT_COMPILE_TIME \"`LANG= date +%T`\"\n" >> $(obj)/build.ht
171 printf "#define COREBOOT_COMPILE_BY \"$(subst \,@,$(shell PATH=$$PATH:/usr/ucb whoami))\"\n" >> $(obj)/build.ht
172 printf "#define COREBOOT_COMPILE_HOST \"$(shell hostname -s 2>/dev/null)\"\n" >> $(obj)/build.ht
173 printf "#define COREBOOT_COMPILE_DOMAIN \"$(shell test `uname -s` = "Linux" && dnsdomainname || domainname 2>/dev/null)\"\n" >> $(obj)/build.ht
174 printf "#endif\n" >> $(obj)/build.ht
175 mv $(obj)/build.ht $(obj)/build.h
176
177$(obj)/ldoptions: $(obj)/config.h
178 awk '/^#define ([^"])* ([^"])*$$/ {gsub("\\r","",$$3); print $$2 " = " $$3 ";";}' $< > $@
179
Kyösti Mälkki0db2ae3a2012-04-19 12:00:06 +0300180build-dirs:
181 mkdir -p $(objcbfs) $(objgenerated)
182
Patrick Georgi71b84802011-02-22 14:35:05 +0000183#######################################################################
184# Build the tools
185CBFSTOOL:=$(obj)/cbfstool
186
187$(CBFSTOOL): $(objutil)/cbfstool/cbfstool
188 cp $< $@
189
190_WINCHECK=$(shell uname -o 2> /dev/null)
191STACK=
192ifeq ($(_WINCHECK),Msys)
193 STACK=-Wl,--stack,16384000
194endif
195ifeq ($(_WINCHECK),Cygwin)
196 STACK=-Wl,--stack,16384000
197endif
198
199ROMCC:= $(objutil)/romcc/romcc
200$(ROMCC): $(top)/util/romcc/romcc.c
201 @printf " HOSTCC $(subst $(obj)/,,$(@)) (this may take a while)\n"
202 @# Note: Adding -O2 here might cause problems. For details see:
203 @# http://www.coreboot.org/pipermail/coreboot/2010-February/055825.html
204 $(HOSTCC) -g $(STACK) -Wall -o $@ $<
205
206#######################################################################
207# needed objects that every mainboard uses
208# Creation of these is architecture and mainboard independent
209$(obj)/mainboard/$(MAINBOARDDIR)/static.c: $(src)/mainboard/$(MAINBOARDDIR)/devicetree.cb $(objutil)/sconfig/sconfig
210 @printf " SCONFIG $(subst $(src)/,,$(<))\n"
211 mkdir -p $(obj)/mainboard/$(MAINBOARDDIR)
212 $(objutil)/sconfig/sconfig $(MAINBOARDDIR) $(obj)/mainboard/$(MAINBOARDDIR)
213
214ramstage-y+=$(obj)/mainboard/$(MAINBOARDDIR)/static.c
215
216$(objutil)/%.o: $(objutil)/%.c
217 @printf " HOSTCC $(subst $(objutil)/,,$(@))\n"
218 $(HOSTCC) -MMD -I$(subst $(objutil)/,util/,$(dir $<)) -I$(dir $<) $(HOSTCFLAGS) -c -o $@ $<
219
Patrick Georgi64ccc3b82011-05-20 23:08:12 +0000220$(obj)/%.ramstage.o $(abspath $(obj))/%.ramstage.o: $(obj)/%.c $(obj)/config.h $(OPTION_TABLE_H)
Patrick Georgi71b84802011-02-22 14:35:05 +0000221 @printf " CC $(subst $(obj)/,,$(@))\n"
222 $(CC) -MMD $(CFLAGS) -c -o $@ $<
223
224#######################################################################
225# Clean up rules
226clean-abuild:
227 rm -rf coreboot-builds
228
229clean-for-update-target:
230 rm -f $(obj)/coreboot_ram* $(obj)/coreboot.romstage $(obj)/coreboot.pre* $(obj)/coreboot.bootblock $(obj)/coreboot.a
231 rm -rf $(obj)/bootblock* $(obj)/romstage* $(obj)/location.*
232 rm -f $(obj)/option_table.* $(obj)/crt0.S $(obj)/ldscript
233 rm -f $(obj)/mainboard/$(MAINBOARDDIR)/static.c $(obj)/mainboard/$(MAINBOARDDIR)/config.py $(obj)/mainboard/$(MAINBOARDDIR)/static.dot
234 rm -f $(obj)/mainboard/$(MAINBOARDDIR)/crt0.s $(obj)/mainboard/$(MAINBOARDDIR)/crt0.disasm
235 rm -f $(obj)/mainboard/$(MAINBOARDDIR)/romstage.inc
236 rm -f $(obj)/mainboard/$(MAINBOARDDIR)/bootblock.* $(obj)/mainboard/$(MAINBOARDDIR)/dsdt.*
237 rm -f $(obj)/cpu/x86/smm/smm_bin.c $(obj)/cpu/x86/smm/smm.* $(obj)/cpu/x86/smm/smm
Marc Jones1dd0dda2012-03-19 17:32:33 -0600238 $(MAKE) -C payloads/external/SeaBIOS -f Makefile.inc clean OUT=$(abspath $(obj)) HOSTCC="$(HOSTCC)" CC="$(CC)" LD="$(LD)"
Patrick Georgi71b84802011-02-22 14:35:05 +0000239
240clean-target:
241 rm -f $(obj)/coreboot*
242
243#######################################################################
244# Development utilities
245printcrt0s:
246 @echo crt0s=$(crt0s)
247 @echo ldscripts=$(ldscripts)
248
249update:
250 dongle.py -c /dev/term/1 $(obj)/coreboot.rom EOF
251
Patrick Georgicb02cb72012-02-25 19:42:59 +0100252lint lint-stable:
Patrick Georgi71b84802011-02-22 14:35:05 +0000253 FAILED=0; LINTLOG=`mktemp`; \
Patrick Georgicb02cb72012-02-25 19:42:59 +0100254 for script in util/lint/$@-*; do \
Patrick Georgi71b84802011-02-22 14:35:05 +0000255 echo; echo `basename $$script`; \
256 grep "^# DESCR:" $$script | sed "s,.*DESCR: *,," ; \
257 echo ========; \
258 $$script > $$LINTLOG; \
Patrick Georgic040e4762012-03-09 23:02:09 +0100259 if [ `cat $$LINTLOG | wc -l` -eq 0 ]; then \
Patrick Georgi71b84802011-02-22 14:35:05 +0000260 printf "success\n\n"; \
261 else \
262 echo test failed: ; \
263 cat $$LINTLOG; \
264 rm -f $$LINTLOG; \
265 FAILED=$$(( $$FAILED + 1 )); \
266 fi; \
267 echo ========; \
268 done; \
269 test $$FAILED -eq 0 || { echo "ERROR: $$FAILED test(s) failed." && exit 1; }; \
270 rm -f $$LINTLOG
Patrick Georgi6c445502011-05-16 15:32:28 +0000271
Patrick Georgibb605282011-06-05 15:15:49 +0200272gitconfig:
Patrick Georgi07408e62012-02-25 19:52:45 +0100273 for hook in commit-msg pre-commit; do if ! [ -x .git/hooks/$$hook ]; then cp util/gitconfig/$$hook .git/hooks/$$hook; chmod +x .git/hooks/$$hook; fi; done
Patrick Georgibb605282011-06-05 15:15:49 +0200274 (git config --global user.name >/dev/null && git config --global user.email >/dev/null) || (printf 'Please configure your name and email in git:\n\n git config --global user.name "Your Name Comes Here"\n git config --global user.email your.email@example.com\n'; exit 1)
275
Patrick Georgi6c445502011-05-16 15:32:28 +0000276crossgcc: clean-for-update
Peter Stuge0b6b4d62011-06-09 05:06:25 +0200277 $(MAKE) -C util/crossgcc build-without-gdb
278
279crosstools: clean-for-update
Patrick Georgi6c445502011-05-16 15:32:28 +0000280 $(MAKE) -C util/crossgcc build
281
282crossgcc-clean: clean-for-update
283 $(MAKE) -C util/crossgcc clean
284