blob: eefa9c2a7a8535e162f157ffdaac10f5d8919521 [file] [log] [blame]
Patrick Georgi0588d192009-08-12 15:00:51 +00001##
2## This file is part of the coreboot project.
3##
4## Copyright (C) 2008 Advanced Micro Devices, Inc.
5## Copyright (C) 2008 Uwe Hermann <uwe@hermann-uwe.de>
6##
7## Redistribution and use in source and binary forms, with or without
8## modification, are permitted provided that the following conditions
9## are met:
10## 1. Redistributions of source code must retain the above copyright
11## notice, this list of conditions and the following disclaimer.
12## 2. Redistributions in binary form must reproduce the above copyright
13## notice, this list of conditions and the following disclaimer in the
14## documentation and/or other materials provided with the distribution.
15## 3. The name of the author may not be used to endorse or promote products
16## derived from this software without specific prior written permission.
17##
18## THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19## ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21## ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22## FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23## DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24## OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25## HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26## LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27## OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28## SUCH DAMAGE.
29##
30
31$(if $(wildcard .xcompile),,$(eval $(shell bash util/xcompile/xcompile > .xcompile)))
32include .xcompile
33
34export top := $(shell pwd)
35export src := $(top)/src
36export srck := $(top)/util/kconfig
37export obj := $(top)/build
38export objk := $(top)/build/util/kconfig
39export sconfig := $(top)/util/sconfig
40export yapps2_py := $(sconfig)/yapps2.py
41export config_g := $(sconfig)/config.g
42
43
44export KERNELVERSION := 2.3
45export KCONFIG_AUTOHEADER := $(obj)/config.h
46export KCONFIG_AUTOCONFIG := $(obj)/auto.conf
47export COREBOOT_V2 := 1
48
49CONFIG_SHELL := sh
50KBUILD_DEFCONFIG := configs/defconfig
51UNAME_RELEASE := $(shell uname -r)
52HAVE_DOTCONFIG := $(wildcard .config)
53MAKEFLAGS += -rR --no-print-directory
54
55# Make is silent per default, but 'make V=1' will show all compiler calls.
Patrick Georgi2b7418e2009-08-25 19:38:46 +000056Q:=@
Patrick Georgi0588d192009-08-12 15:00:51 +000057ifneq ($(V),1)
Patrick Georgi2b7418e2009-08-25 19:38:46 +000058ifneq ($(Q),)
59.SILENT:
60endif
Patrick Georgi0588d192009-08-12 15:00:51 +000061endif
62
63CPP:= $(CC) -x assembler-with-cpp -DASSEMBLY -E
64HOSTCC = gcc
65HOSTCXX = g++
66HOSTCFLAGS := -I$(srck) -I$(objk) -g
67HOSTCXXFLAGS := -I$(srck) -I$(objk)
Harald Gutmanndc4bb0d2009-08-26 15:35:36 +000068LIBGCC_FILE_NAME := $(shell $(CC) -print-libgcc-file-name)
Patrick Georgi0588d192009-08-12 15:00:51 +000069
70DESTDIR = /opt
71
72DOXYGEN := doxygen
73DOXYGEN_OUTPUT_DIR := doxygen
74
75ifeq ($(strip $(HAVE_DOTCONFIG)),)
76
77all: config
78
79else
80
81include $(top)/.config
82
83ARCHDIR-$(CONFIG_ARCH_X86) := i386
84ARCHDIR-$(CONFIG_ARCH_POWERPC) := ppc
85
86MAINBOARDDIR=$(shell echo $(CONFIG_MAINBOARD_DIR))
87export MAINBOARDDIR
88
89PLATFORM-y += src/arch/$(ARCHDIR-y) src/cpu src/mainboard/$(MAINBOARDDIR)
90TARGETS-y :=
91
92BUILD-y := src/lib src/boot src/console src/devices src/southbridge src/northbridge src/superio src/drivers util/x86emu
93BUILD-y += util/cbfstool
94BUILD-$(CONFIG_ARCH_X86) += src/pc80
95
96# The primary target needs to be here before we include the
97# other files
98
99all: coreboot
100
101
102#######################################################################
103# Build the tools
104
105CBFSTOOL:=$(obj)/util/cbfstool/cbfstool
106
107$(obj)/mainboard/$(MAINBOARDDIR)/config.py: $(yapps2_py) $(config_g)
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000108 mkdir -p $(obj)/mainboard/$(MAINBOARDDIR)
109 python $(yapps2_py) $(config_g) $(obj)/mainboard/$(MAINBOARDDIR)/config.py
Patrick Georgi0588d192009-08-12 15:00:51 +0000110
111
112# needed objects that every mainboard uses
113# Creation of these is architecture and mainboard independent
114$(obj)/mainboard/$(MAINBOARDDIR)/static.c: $(src)/mainboard/$(MAINBOARDDIR)/Config.lb $(obj)/mainboard/$(MAINBOARDDIR)/config.py
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000115 mkdir -p $(obj)/mainboard/$(MAINBOARDDIR)
Patrick Georgi0588d192009-08-12 15:00:51 +0000116 (cd $(obj)/mainboard/$(MAINBOARDDIR) ; PYTHONPATH=$(top)/util/sconfig export PYTHONPATH; python config.py $(MAINBOARDDIR) $(top) $(obj)/mainboard/$(MAINBOARDDIR))
117
118$(obj)/mainboard/$(MAINBOARDDIR)/static.o: $(obj)/mainboard/$(MAINBOARDDIR)/static.c
119#
120
121objs:=$(obj)/mainboard/$(MAINBOARDDIR)/static.o
122initobjs:=
123drivers:=
124smmobjs:=
125crt0s:=
126ldscripts:=
127types:=obj initobj driver smmobj
128src_types:=crt0 ldscript
129includemakefiles=$(foreach type,$(2), $(eval $(type)-y:=)) $(eval subdirs-y:=) $(eval include $(1)) $(if $(strip $(3)),$(foreach type,$(2),$(eval $(type)s+=$$(patsubst src/%,$(obj)/%,$$(addprefix $(dir $(1)),$$($(type)-y)))))) $(eval subdirs+=$$(subst $(PWD)/,,$$(abspath $$(addprefix $(dir $(1)),$$(subdirs-y)))))
130evaluate_subdirs=$(eval cursubdirs:=$(subdirs)) $(eval subdirs:=) $(foreach dir,$(cursubdirs),$(eval $(call includemakefiles,$(dir)/Makefile.inc,$(types) $(src_types),$(1)))) $(if $(subdirs),$(eval $(call evaluate_subdirs, $(1))))
131
132# collect all object files eligible for building
133subdirs:=$(PLATFORM-y) $(BUILD-y)
134$(eval $(call evaluate_subdirs, modify))
135
136allobjs:=$(foreach var, $(addsuffix s,$(types)), $($(var)))
137alldirs:=$(sort $(abspath $(dir $(allobjs))))
138source_with_ext=$(patsubst $(obj)/%.o,src/%.$(1),$(allobjs))
139allsrc=$(wildcard $(call source_with_ext,c) $(call source_with_ext,S))
140
141POST_EVALUATION:=y
142
143# fetch rules (protected in POST_EVALUATION) that rely on the variables filled above
144subdirs:=$(PLATFORM-y) $(BUILD-y)
145$(eval $(call evaluate_subdirs))
146
147
148define objs_c_template
149$(obj)/$(1)%.o: src/$(1)%.c
Uwe Hermannfe2664a2009-08-25 15:03:20 +0000150 @printf " CC $$(subst $$(shell pwd)/,,$$(@))\n"
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000151 $(CC) -m32 $$(CFLAGS) -c -o $$@ $$<
Patrick Georgi0588d192009-08-12 15:00:51 +0000152endef
153
154define objs_S_template
155$(obj)/$(1)%.o: src/$(1)%.S
Uwe Hermannfe2664a2009-08-25 15:03:20 +0000156 @printf " CC $$(subst $$(shell pwd)/,,$$(@))\n"
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000157 $(CC) -m32 -DASSEMBLY $$(CFLAGS) -c -o $$@ $$<
Patrick Georgi0588d192009-08-12 15:00:51 +0000158endef
159
160define initobjs_c_template
161$(obj)/$(1)%.o: src/$(1)%.c
Uwe Hermannfe2664a2009-08-25 15:03:20 +0000162 @printf " CC $$(subst $$(shell pwd)/,,$$(@))\n"
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000163 $(CC) -m32 $$(CFLAGS) -c -o $$@ $$<
Patrick Georgi0588d192009-08-12 15:00:51 +0000164endef
165
166define initobjs_S_template
167$(obj)/$(1)%.o: src/$(1)%.S
Uwe Hermannfe2664a2009-08-25 15:03:20 +0000168 @printf " CC $$(subst $$(shell pwd)/,,$$(@))\n"
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000169 $(CC) -m32 -DASSEMBLY $$(CFLAGS) -c -o $$@ $$<
Patrick Georgi0588d192009-08-12 15:00:51 +0000170endef
171
172define drivers_c_template
173$(obj)/$(1)%.o: src/$(1)%.c
Uwe Hermannfe2664a2009-08-25 15:03:20 +0000174 @printf " CC $$(subst $$(shell pwd)/,,$$(@))\n"
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000175 $(CC) -m32 $$(CFLAGS) -c -o $$@ $$<
Patrick Georgi0588d192009-08-12 15:00:51 +0000176endef
177
178define drivers_S_template
179$(obj)/$(1)%.o: src/$(1)%.S
Uwe Hermannfe2664a2009-08-25 15:03:20 +0000180 @printf " CC $$(subst $$(shell pwd)/,,$$(@))\n"
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000181 $(CC) -m32 -DASSEMBLY $$(CFLAGS) -c -o $$@ $$<
Patrick Georgi0588d192009-08-12 15:00:51 +0000182endef
183
184define smmobjs_c_template
185$(obj)/$(1)%.o: src/$(1)%.c
Uwe Hermannfe2664a2009-08-25 15:03:20 +0000186 @printf " CC $$(subst $$(shell pwd)/,,$$(@))\n"
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000187 $(CC) -m32 $$(CFLAGS) -c -o $$@ $$<
Patrick Georgi0588d192009-08-12 15:00:51 +0000188endef
189
190define smmobjs_S_template
191$(obj)/$(1)%.o: src/$(1)%.S
Uwe Hermannfe2664a2009-08-25 15:03:20 +0000192 @printf " CC $$(subst $$(shell pwd)/,,$$(@))\n"
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000193 $(CC) -m32 $$(CFLAGS) -c -o $$@ $$<
Patrick Georgi0588d192009-08-12 15:00:51 +0000194endef
195
196usetemplate=$(foreach d,$(sort $(dir $($(1)))),$(eval $(call $(1)_$(2)_template,$(subst $(obj)/,,$(d)))))
197usetemplate=$(foreach d,$(sort $(dir $($(1)))),$(eval $(call $(1)_$(2)_template,$(subst $(obj)/,,$(d)))))
198$(eval $(call usetemplate,objs,c))
199$(eval $(call usetemplate,objs,S))
200$(eval $(call usetemplate,initobjs,c))
201$(eval $(call usetemplate,initobjs,S))
202$(eval $(call usetemplate,drivers,c))
203$(eval $(call usetemplate,drivers,S))
204$(eval $(call usetemplate,smmobjs,c))
205$(eval $(call usetemplate,smmobjs,S))
206
207printall:
208 @echo objs:=$(objs)
209 @echo initobjs:=$(initobjs)
210 @echo drivers:=$(drivers)
211 @echo smmobjs:=$(smmobjs)
212 @echo alldirs:=$(alldirs)
213 @echo allsrc=$(allsrc)
214
215OBJS := $(patsubst %,$(obj)/%,$(TARGETS-y))
216INCLUDES := -I$(top)/src -I$(top)/src/include -I$(obj) -I$(top)/src/arch/$(ARCHDIR-y)/include
217INCLUDES += -I$(shell $(CC) -print-search-dirs | head -n 1 | cut -d' ' -f2)include
Myles Watsone6804952009-08-28 14:36:12 +0000218INCLUDES += -I$(top)/util/x86emu/include
Patrick Georgi0588d192009-08-12 15:00:51 +0000219INCLUDES += -include $(obj)/build.h
220
221try-run= $(shell set -e; \
222TMP=".$$$$.tmp"; \
223if ($(1)) > /dev/null 2>&1; \
224then echo "$(2)"; \
225else echo "$(3)"; \
226fi; rm -rf "$$TMP")
227
228cc-option= $(call try-run,\
229$(CC) $(1) -S -xc /dev/null -o "$$TMP", $(1), $(2))
230
231STACKPROTECT += $(call cc-option, -fno-stack-protector,)
232
233CFLAGS = $(STACKPROTECT) $(INCLUDES) $(MAINBOARD_OPTIONS) -Os -nostdinc
234CFLAGS += -nostdlib -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes
235CFLAGS +=-Wwrite-strings -Wredundant-decls -Wno-trigraphs
236CFLAGS += -Werror-implicit-function-declaration -Wstrict-aliasing -Wshadow
237CFLAGS += -fno-common -ffreestanding -fno-builtin -fomit-frame-pointer
238
239CBFS_COMPRESS_FLAG:=
Patrick Georgica5d9fb2009-08-25 13:53:14 +0000240ifeq ($(CONFIG_COMPRESSED_PAYLOAD_LZMA),y)
Patrick Georgi0588d192009-08-12 15:00:51 +0000241CBFS_COMPRESS_FLAG:=l
242endif
243
244coreboot: prepare prepare2 $(obj)/coreboot.rom
245
246endif
247
248prepare:
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000249 mkdir -p $(obj)
250 mkdir -p $(obj)/util/kconfig/lxdialog
251 test -n "$(alldirs)" && mkdir -p $(alldirs) || true
Patrick Georgi0588d192009-08-12 15:00:51 +0000252
253prepare2:
Uwe Hermannfe2664a2009-08-25 15:03:20 +0000254 @printf " GEN $(subst $(shell pwd)/,,$(obj)/build.h)\n"
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000255 printf "#define COREBOOT_VERSION \"$(KERNELVERSION)\"\n" > $(obj)/build.h
256 printf "#define COREBOOT_EXTRA_VERSION \"$(COREBOOT_EXTRA_VERSION)\"\n" >> $(obj)/build.h
257 printf "#define COREBOOT_V2 \"$(COREBOOT_V2)\"\n" >> $(obj)/build.h
258 printf "#define COREBOOT_BUILD \"`LANG= date`\"\n" >> $(obj)/build.h
259 printf "\n" >> $(obj)/build.h
260 printf "#define COREBOOT_COMPILER \"$(shell LANG= $(CC) --version | head -n1)\"\n" >> $(obj)/build.h
261 printf "#define COREBOOT_ASSEMBLER \"$(shell LANG= $(AS) --version | head -n1)\"\n" >> $(obj)/build.h
262 printf "#define COREBOOT_LINKER \"$(shell LANG= $(LD) --version | head -n1)\"\n" >> $(obj)/build.h
263 printf "#define COREBOOT_COMPILE_TIME \"`LANG= date +%T`\"\n" >> $(obj)/build.h
264 printf "#define COREBOOT_COMPILE_BY \"$(shell PATH=$$PATH:/usr/ucb whoami)\"\n" >> $(obj)/build.h
265 printf "#define COREBOOT_COMPILE_HOST \"$(shell hostname)\"\n" >> $(obj)/build.h
266 printf "#define COREBOOT_COMPILE_DOMAIN \"$(shell test `uname -s` = "Linux" && dnsdomainname || domainname)\"\n" >> $(obj)/build.h
267 printf "#include \"config.h\"\n" >> $(obj)/build.h
Patrick Georgi0588d192009-08-12 15:00:51 +0000268
269doxy: doxygen
270doxygen:
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000271 $(DOXYGEN) Doxyfile
Patrick Georgi0588d192009-08-12 15:00:51 +0000272
273doxyclean: doxygen-clean
274doxygen-clean:
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000275 rm -rf $(DOXYGEN_OUTPUT_DIR)
Patrick Georgi0588d192009-08-12 15:00:51 +0000276
277clean: doxygen-clean
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000278 rm -f $(allobjs) build/coreboot* .xcompile
279 rm -f build/option_table.* build/crt0_includes.h build/ldscript
280 rm -f $(obj)/mainboard/$(MAINBOARDDIR)/static.c $(obj)/mainboard/$(MAINBOARDDIR)/config.py $(obj)/mainboard/$(MAINBOARDDIR)/static.dot
281 rm -f $(obj)/mainboard/$(MAINBOARDDIR)/auto.inc $(obj)/mainboard/$(MAINBOARDDIR)/crt0.s $(obj)/mainboard/$(MAINBOARDDIR)/crt0.disasm
282 rmdir -p $(alldirs) 2>/dev/null >/dev/null || true
Patrick Georgi0588d192009-08-12 15:00:51 +0000283
284distclean: clean
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000285 rm -rf build
286 rm -f .config .config.old ..config.tmp .kconfig.d .tmpconfig*
Patrick Georgi0588d192009-08-12 15:00:51 +0000287
288update:
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000289 dongle.py -c /dev/term/1 build/coreboot.rom EOF
Patrick Georgi0588d192009-08-12 15:00:51 +0000290
291# This include must come _before_ the pattern rules below!
292# Order _does_ matter for pattern rules.
293include util/kconfig/Makefile
294
295$(obj)/ldoptions: $(obj)/config.h
296# cat $(obj)/config.h | grep -v \" |grep -v AUTOCONF_INCLUDED | grep \#define | sed s/\#define\ // | sed s/\ /\ =\ / | sed 's/$$/;/' > $(obj)/ldoptions
Patrick Georgi2b7418e2009-08-25 19:38:46 +0000297 awk '/^#define ([^"])* ([^"])*$$/ {print $$2 " = " $$3 ";";}' $< > $@
Patrick Georgi0588d192009-08-12 15:00:51 +0000298
299$(obj)/romcc: $(top)/util/romcc/romcc.c
Uwe Hermannfe2664a2009-08-25 15:03:20 +0000300 @printf " HOSTCC romcc"
Patrick Georgi0588d192009-08-12 15:00:51 +0000301 $(HOSTCC) -g -O2 -Wall -o $@ $<
302
303.PHONY: $(PHONY) prepare prepare2 clean distclean doxygen doxy coreboot
304