blob: e4d45a644cd32965596134d9157f1060308132ee [file] [log] [blame]
Patrick Georgib3db79e2011-04-21 18:48:50 +02001##
Patrick Georgib3db79e2011-04-21 18:48:50 +02002##
3## Copyright (C) 2008 Advanced Micro Devices, Inc.
4## Copyright (C) 2008 Uwe Hermann <uwe@hermann-uwe.de>
5## Copyright (C) 2011 secunet Security Networks AG
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
Nicholas Chincc8be37a2022-06-18 14:06:59 -060031ifneq ($(NOCOMPILE),1)
32GIT:=$(shell git -C "$(top)" rev-parse --git-dir 1>/dev/null 2>&1 \
33 && command -v git)
34else
35GIT:=
36endif
37
Patrick Georgib3db79e2011-04-21 18:48:50 +020038export KERNELVERSION := 0.2.0
39
Gabe Black51edd542013-09-30 23:00:33 -070040ARCHDIR-$(CONFIG_LP_ARCH_ARM) := arm
Furquan Shaikh8c8c3772014-02-19 11:35:30 -080041ARCHDIR-$(CONFIG_LP_ARCH_ARM64) := arm64
Gabe Black1ee2c6d2013-08-09 04:27:35 -070042ARCHDIR-$(CONFIG_LP_ARCH_X86) := x86
Jakub Czapiga3d91b472021-09-15 14:52:45 +020043ARCHDIR-$(CONFIG_LP_ARCH_MOCK) := mock
Tadas Slotkus09ea8ea2011-07-15 03:41:11 +030044DESTDIR ?= install
Patrick Georgib3db79e2011-04-21 18:48:50 +020045
46real-target: lib
47
Gabe Black1ee2c6d2013-08-09 04:27:35 -070048classes-$(CONFIG_LP_PCI) += libpci
49classes-$(CONFIG_LP_LIBC) += libc
50classes-$(CONFIG_LP_CURSES) += libcurses
51classes-$(CONFIG_LP_PDCURSES) += libmenu libform libpanel
52classes-$(CONFIG_LP_CBFS) += libcbfs
53classes-$(CONFIG_LP_LZMA) += liblzma
Julius Wernerbf273912015-06-30 10:30:30 -070054classes-$(CONFIG_LP_LZ4) += liblz4
Julius Werner50a81742014-05-15 11:57:38 -070055classes-$(CONFIG_LP_REMOTEGDB) += libgdb
Jakub Czapiga1fa3da42021-12-06 09:01:50 +000056classes-$(CONFIG_LP_VBOOT_LIB) += vboot_fw
57classes-$(CONFIG_LP_VBOOT_LIB) += tlcl
Patrick Georgib3db79e2011-04-21 18:48:50 +020058libraries := $(classes-y)
59classes-y += head.o
60
Patrick Georgib3db79e2011-04-21 18:48:50 +020061subdirs-y := arch/$(ARCHDIR-y)
Julius Werner50a81742014-05-15 11:57:38 -070062subdirs-y += crypto libc drivers libpci gdb
Gabe Black1ee2c6d2013-08-09 04:27:35 -070063subdirs-$(CONFIG_LP_CURSES) += curses
64subdirs-$(CONFIG_LP_CBFS) += libcbfs
65subdirs-$(CONFIG_LP_LZMA) += liblzma
Julius Wernerbf273912015-06-30 10:30:30 -070066subdirs-$(CONFIG_LP_LZ4) += liblz4
Jakub Czapiga1fa3da42021-12-06 09:01:50 +000067subdirs-$(CONFIG_LP_VBOOT_LIB) += vboot
Patrick Georgib3db79e2011-04-21 18:48:50 +020068
Jacob Garberc98baa72020-11-04 21:49:49 -070069INCLUDES := -Iinclude -Iinclude/$(ARCHDIR-y) -I$(obj)
Julius Werner23d24652022-05-27 19:07:14 -070070INCLUDES += -include include/kconfig.h
71INCLUDES += -include $(coreboottop)/src/commonlib/bsd/include/commonlib/bsd/compiler.h
Jakub Czapiga39b2e7a2021-11-23 09:21:30 +000072INCLUDES += -I$(coreboottop)/src/commonlib/bsd/include
Patrick Georgi49f0f9a2022-01-27 15:28:13 +010073INCLUDES += -I$(VBOOT_SOURCE)/firmware/include
Stefan Reinauer1b4d3942015-06-29 15:47:34 -070074
Jakub Czapigac35659d2021-08-26 14:35:10 +020075CFLAGS += $(INCLUDES) -Os -pipe -nostdinc -ggdb3
Stefan Reinauer08c41502013-05-21 14:45:28 -070076CFLAGS += -nostdlib -fno-builtin -ffreestanding -fomit-frame-pointer
Stefan Reinauere5595362015-07-01 11:30:03 -070077CFLAGS += -ffunction-sections -fdata-sections
Jacob Garber9cd53c52019-06-27 13:23:38 -060078CFLAGS += -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes -Wvla
Jacob Garber5f7b1162019-07-19 17:35:28 -060079CFLAGS += -Wwrite-strings -Wredundant-decls -Wno-trigraphs -Wimplicit-fallthrough
Vadim Bendebury19c3da52014-05-15 14:12:54 -070080CFLAGS += -Wstrict-aliasing -Wshadow -Werror
Patrick Georgib3db79e2011-04-21 18:48:50 +020081
Jacob Garber04540f12019-10-02 18:55:07 -060082ifeq ($(CONFIG_LP_LTO),y)
83CFLAGS += -flto
84endif
85
Nicholas Chincc8be37a2022-06-18 14:06:59 -060086# Some of the commonlib cbfs headers include vboot headers, so initialize the
87# submodule in case we are building a payload outside the main coreboot build
88forgetthis:=$(if $(GIT),$(shell git submodule update --init ../../3rdparty/vboot $(quiet_errors)))
89
Nico Huber1dba2ed2020-11-14 23:46:10 +010090$(obj)/libpayload.config: $(DOTCONFIG)
91 cp $< $@
92
93$(obj)/libpayload-config.h: $(KCONFIG_AUTOHEADER) $(obj)/libpayload.config
Patrick Georgib3db79e2011-04-21 18:48:50 +020094 cmp $@ $< 2>/dev/null || cp $< $@
95
96library-targets = $(addsuffix .a,$(addprefix $(obj)/,$(libraries))) $(obj)/libpayload.a
97lib: $$(library-targets) $(obj)/head.o
98
Patrick Georgi3b77b722011-07-07 15:41:53 +020099extract_nth=$(word $(1), $(subst |, ,$(2)))
100
101#######################################################################
Martin Roth6116f362016-03-08 12:32:40 -0700102# Add handler for special include files
Patrick Georgi3b77b722011-07-07 15:41:53 +0200103$(call add-special-class,includes)
104includes-handler= \
105 $(if $(wildcard $(1)$(call extract_nth,1,$(2))), \
106 $(eval includes += $(1)$(2)))
107
Patrick Georgib3db79e2011-04-21 18:48:50 +0200108$(obj)/libpayload.a: $(foreach class,$(libraries),$$($(class)-objs))
Martin Roth6116f362016-03-08 12:32:40 -0700109 printf " AR $(subst $(CURDIR)/,,$(@))\n"
Jakub Czapiga28a97a22022-01-18 14:22:22 +0000110 printf "create $@\n$(foreach objc,$(filter-out %.a,$^),addmod $(objc)\n)$(foreach lib,$(filter %.a,$^),addlib $(lib)\n)save\nend\n" | $(AR) -M
Patrick Georgib3db79e2011-04-21 18:48:50 +0200111
112$(obj)/%.a: $$(%-objs)
Martin Roth6116f362016-03-08 12:32:40 -0700113 printf " AR $(subst $(CURDIR)/,,$(@))\n"
Jakub Czapiga28a97a22022-01-18 14:22:22 +0000114 printf "create $@\n$(foreach objc,$(filter-out %.a,$^),addmod $(objc)\n)$(foreach lib,$(filter %.a,$^),addlib $(lib)\n)save\nend\n" | $(AR) -M
Patrick Georgib3db79e2011-04-21 18:48:50 +0200115
116$(obj)/head.o: $(obj)/arch/$(ARCHDIR-y)/head.head.o.o
Martin Roth6116f362016-03-08 12:32:40 -0700117 printf " CP $(subst $(CURDIR)/,,$(@))\n"
Patrick Georgib3db79e2011-04-21 18:48:50 +0200118 cp $^ $@
119
120install: real-target
121 printf " INSTALL $(DESTDIR)/libpayload/lib\n"
122 install -m 755 -d $(DESTDIR)/libpayload/lib
Patrick Georgiee53dfd02021-12-08 15:48:25 +0100123 install -m 644 $(library-targets) $(DESTDIR)/libpayload/lib/
Ronald G. Minnichc2e8cf52013-02-14 11:32:29 -0800124 install -m 644 arch/$(ARCHDIR-y)/libpayload.ldscript $(DESTDIR)/libpayload/lib/
Patrick Georgib3db79e2011-04-21 18:48:50 +0200125 install -m 755 -d $(DESTDIR)/libpayload/lib/$(ARCHDIR-y)
126 install -m 644 $(obj)/head.o $(DESTDIR)/libpayload/lib/$(ARCHDIR-y)
127 printf " INSTALL $(DESTDIR)/libpayload/include\n"
128 install -m 755 -d $(DESTDIR)/libpayload/include
Patrick Georgiee53dfd02021-12-08 15:48:25 +0100129 find include -type d -exec install -m755 -d $(DESTDIR)/libpayload/{} \;
130 find include -type f -exec install -m644 {} $(DESTDIR)/libpayload/{} \;
131 cd $(coreboottop)/src/commonlib/bsd && find include -type d -exec install -m755 -d $(DESTDIR)/libpayload/{} \;
132 cd $(coreboottop)/src/commonlib/bsd && find include -type f -exec install -m644 {} $(DESTDIR)/libpayload/{} \;
Patrick Georgib3db79e2011-04-21 18:48:50 +0200133 install -m 644 $(obj)/libpayload-config.h $(DESTDIR)/libpayload/include
Patrick Georgi3b77b722011-07-07 15:41:53 +0200134 $(foreach item,$(includes), \
135 install -m 755 -d $(DESTDIR)/libpayload/include/$(call extract_nth,2,$(item)); \
136 install -m 644 $(call extract_nth,1,$(item)) $(DESTDIR)/libpayload/include/$(call extract_nth,2,$(item)); )
Jakub Czapiga395f5b32022-01-12 09:59:39 +0000137 printf " INSTALL $(DESTDIR)/libpayload/vboot\n"
138 install -m 755 -d $(DESTDIR)/libpayload/vboot
139 for file in `find $(VBOOT_SOURCE)/firmware/include \
140 $(VBOOT_SOURCE)/firmware/2lib/include \
141 -iname '*.h' -type f \
142 | sed 's,$(VBOOT_SOURCE)/firmware/,,'`; do \
143 install -m 755 -d $(DESTDIR)/libpayload/vboot/$$(dirname $$file); \
144 install -m 644 $(VBOOT_SOURCE)/firmware/$$file $(DESTDIR)/libpayload/vboot/$$file ; \
145 done
Patrick Georgib3db79e2011-04-21 18:48:50 +0200146 printf " INSTALL $(DESTDIR)/libpayload/bin\n"
147 install -m 755 -d $(DESTDIR)/libpayload/bin
148 install -m 755 bin/lpgcc $(DESTDIR)/libpayload/bin
149 install -m 755 bin/lpas $(DESTDIR)/libpayload/bin
150 install -m 644 bin/lp.functions $(DESTDIR)/libpayload/bin
Stefan Reinauer658e4d32013-01-17 12:29:51 -0800151 install -m 644 $(DOTCONFIG) $(DESTDIR)/libpayload/libpayload.config
Nico Huber1823d532020-11-16 22:50:49 +0100152 install -m 755 $(xcompile) $(DESTDIR)/libpayload/libpayload.xcompile
Patrick Georgib3db79e2011-04-21 18:48:50 +0200153
154clean-for-update-target:
155 rm -f $(addsuffix .a,$(addprefix $(obj)/,$(libraries))) $(obj)/libpayload.a
156
157clean-target:
158prepare:
Patrick Georgi34286b82013-12-21 21:08:53 +0100159
160junit.xml:
161 echo '<?xml version="1.0" encoding="utf-8"?><testsuite>' > $@.tmp
Jakub Czapiga12ae8502021-10-08 09:57:14 +0000162 for i in $(filter-out %.old %.unit-tests,$(wildcard configs/*)); do \
Patrick Georgi34286b82013-12-21 21:08:53 +0100163 $(MAKE) clean; \
Keith Short31af70d2019-07-11 17:54:57 -0600164 echo "Building libpayload for $$i"; \
Martin Roth6959f5c2016-03-23 16:07:54 -0600165 cp "$$i" junit_config; \
166 $(MAKE) olddefconfig DOTCONFIG=junit_config V=$(V) Q=$(Q) 2>/dev/null >/dev/null; \
Patrick Georgi34286b82013-12-21 21:08:53 +0100167 echo "<testcase classname='libpayload' name='$$i'>" >> $@.tmp; \
Martin Roth6959f5c2016-03-23 16:07:54 -0600168 $(MAKE) V=$(V) Q=$(Q) CONFIG_LP_CCACHE=$(CONFIG_LP_CCACHE) DOTCONFIG=junit_config >> $@.tmp.2 2>&1 && type="system-out" || type="failure"; \
Patrick Georgi34286b82013-12-21 21:08:53 +0100169 if [ $$type = "failure" ]; then \
170 echo "<failure type='buildFailed'>" >> $@.tmp; \
171 else \
172 echo "<$$type>" >> $@.tmp; \
173 fi; \
174 echo '<![CDATA[' >> $@.tmp; \
175 cat $@.tmp.2 >> $@.tmp; \
176 echo "]]></$$type>" >>$@.tmp; \
177 rm -f $@.tmp.2; \
178 echo "</testcase>" >> $@.tmp; \
179 done
180 echo "</testsuite>" >> $@.tmp
Keith Short31af70d2019-07-11 17:54:57 -0600181 echo "libpayload build complete, test results in $@"
Patrick Georgi34286b82013-12-21 21:08:53 +0100182 mv $@.tmp $@
Martin Roth6c9c1962017-08-03 09:25:43 -0600183
184test-configs:
Jakub Czapiga12ae8502021-10-08 09:57:14 +0000185 for config in $(filter-out %.old %.unit-tests,$(wildcard configs/*)); do \
Martin Roth6c9c1962017-08-03 09:25:43 -0600186 $(MAKE) clean; \
187 cp "$$config" test_config; \
188 echo "*** Making libpayload config $$config ***"; \
189 $(MAKE) olddefconfig DOTCONFIG=test_config V=$(V) Q=$(Q) ; \
190 $(MAKE) V=$(V) Q=$(Q) CONFIG_LP_CCACHE=$(CONFIG_LP_CCACHE) DOTCONFIG=test_config; \
191 done