xref: /optee_os/core/core.mk (revision 8aeb6c94dd30546ae60b42ce7b8a80476bf9e67f)
1b0104773SPascal Brandinclude mk/cleanvars.mk
2b0104773SPascal Brand
3b0104773SPascal Brand# Set current submodule (used for module specific flags compile result etc)
4b0104773SPascal Brandsm := core
5b0104773SPascal Brandsm-$(sm) := y
6b0104773SPascal Brand
74334e8d7SJerome Forissierarch-dir	:= core/arch/$(ARCH)
84334e8d7SJerome Forissierplatform-dir	:= $(arch-dir)/plat-$(PLATFORM)
94334e8d7SJerome Forissierinclude $(platform-dir)/conf.mk
10739804b5SJens Wiklanderinclude mk/config.mk
110de9a5fbSJens Wiklanderinclude core/arch/$(ARCH)/$(ARCH).mk
12b0104773SPascal Brand
139fc53171SJerome ForissierPLATFORM_$(PLATFORM) := y
149fc53171SJerome ForissierPLATFORM_FLAVOR_$(PLATFORM_FLAVOR) := y
159fc53171SJerome Forissier
16878b4097SJens Wiklander$(call cfg-depends-all,CFG_PAGED_USER_TA,CFG_WITH_PAGER CFG_WITH_USER_TA)
173d3ad63dSJens Wiklanderinclude core/crypto.mk
18a884c935SJens Wiklander
191b4eb4f5SJens Wiklander# Setup compiler for this sub module
201b4eb4f5SJens WiklanderCOMPILER_$(sm)		?= $(COMPILER)
211b4eb4f5SJens Wiklanderinclude mk/$(COMPILER_$(sm)).mk
221b4eb4f5SJens Wiklander
2345082335SJens Wiklandercppflags$(sm)	+= -D__KERNEL__
2445082335SJens Wiklander
25a3911433SJerome Forissiercppflags$(sm)	+= -Icore/include
26b5569a68SPascal Brandcppflags$(sm)	+= -include $(conf-file)
2789fe7c3cSJerome Forissiercppflags$(sm)	+= -I$(out-dir)/core/include
28739804b5SJens Wiklandercppflags$(sm)	+= $(core-platform-cppflags)
29739804b5SJens Wiklandercflags$(sm)	+= $(core-platform-cflags)
30be715239SJens Wiklanderifeq ($(CFG_CORE_SANITIZE_UNDEFINED),y)
31be715239SJens Wiklandercflags$(sm)	+= -fsanitize=undefined
32be715239SJens Wiklanderendif
331d171f95SJens Wiklanderifeq ($(CFG_CORE_SANITIZE_KADDRESS),y)
341d171f95SJens Wiklanderifeq ($(CFG_ASAN_SHADOW_OFFSET),)
351d171f95SJens Wiklander$(error error: CFG_CORE_SANITIZE_KADDRESS not supported by platform (flavor))
361d171f95SJens Wiklanderendif
371d171f95SJens Wiklandercflags_kasan	+= -fsanitize=kernel-address \
381d171f95SJens Wiklander		   -fasan-shadow-offset=$(CFG_ASAN_SHADOW_OFFSET)\
391d171f95SJens Wiklander		   --param asan-stack=1 --param asan-globals=1 \
401d171f95SJens Wiklander		   --param asan-instrumentation-with-call-threshold=0
411d171f95SJens Wiklandercflags$(sm)	+= $(cflags_kasan)
421d171f95SJens Wiklanderendif
43739804b5SJens Wiklanderaflags$(sm)	+= $(core-platform-aflags)
44b0104773SPascal Brand
458a1e7b89SJerome Forissiercppflags$(sm) += -DTRACE_LEVEL=$(CFG_TEE_CORE_LOG_LEVEL)
46156fe685SPascal Brandifeq ($(CFG_TEE_CORE_MALLOC_DEBUG),y)
47156fe685SPascal Brandcppflags$(sm) += -DENABLE_MDBG=1
48156fe685SPascal Brandendif
4999eee037SEtienne Carriereifneq ($(CFG_TEE_CORE_DEBUG),y)
5099eee037SEtienne Carrierecppflags$(sm)  += -DNDEBUG
5199eee037SEtienne Carriereendif
52b0104773SPascal Brand
53b0104773SPascal Brandcppflags$(sm)	+= -Ilib/libutee/include
54b0104773SPascal Brand
55*8aeb6c94SJens Wiklanderifeq ($(filter y, $(CFG_CORE_DYN_SHM) $(CFG_CORE_RESERVED_SHM)),)
56*8aeb6c94SJens Wiklander$(error error: No shared memory configured)
57*8aeb6c94SJens Wiklanderendif
58*8aeb6c94SJens Wiklander
59fe52b1f5SJerome Forissier# Tell all libraries and sub-directories (included below) that we have a
60fe52b1f5SJerome Forissier# configuration file
61fe52b1f5SJerome Forissier
62b5569a68SPascal Brandconf-file := $(out-dir)/include/generated/conf.h
63b5569a68SPascal Brandconf-mk-file := $(out-dir)/conf.mk
64b924c494SJens Wiklanderconf-cmake-file := $(out-dir)/conf.cmake
65dde0e235Setienne carriere$(conf-file): $(conf-mk-file)
66dde0e235Setienne carriere
67fe52b1f5SJerome Forissiercleanfiles += $(conf-file)
68dde0e235Setienne carrierecleanfiles += $(conf-mk-file)
69fe52b1f5SJerome Forissier
70fe52b1f5SJerome Forissier$(conf-file): FORCE
71fe52b1f5SJerome Forissier	$(call check-conf-h)
72fe52b1f5SJerome Forissier
73dde0e235Setienne carriere$(conf-mk-file):  FORCE
743354f9b2SJerome Forissier	$(call check-conf-mk)
75dde0e235Setienne carriere
76b924c494SJens Wiklander$(conf-cmake-file):  FORCE
77b924c494SJens Wiklander	$(call check-conf-cmake)
78b924c494SJens Wiklander
79b0104773SPascal Brand#
80b0104773SPascal Brand# Do libraries
81b0104773SPascal Brand#
82b0104773SPascal Brand
83b0104773SPascal Brand# Set a prefix to avoid conflicts with user TAs that will use the same
84b0104773SPascal Brand# source but with different flags below
85b0104773SPascal Brandbase-prefix := $(sm)-
86b0104773SPascal Brandlibname = utils
87b0104773SPascal Brandlibdir = lib/libutils
88b0104773SPascal Brandinclude mk/lib.mk
89b0104773SPascal Brand
9018dd462bSJens Wiklander# CFG_CRYPTOLIB_NAME must not be changed beyond this line
9118dd462bSJens WiklanderCFG_CRYPTOLIB_NAME_$(CFG_CRYPTOLIB_NAME) := y
92e789ada3SJens Wiklander
93fcd21d9eSJens Wiklanderifeq ($(CFG_CRYPTOLIB_NAME),tomcrypt)
94fcd21d9eSJens Wiklanderifeq ($(CFG_CORE_MBEDTLS_MPI),y)
95e789ada3SJens Wiklander# We're compiling mbedtls too, but with a limited configuration which only
96e789ada3SJens Wiklander# provides the MPI routines
97e789ada3SJens Wiklanderlibname = mbedtls
98e789ada3SJens Wiklanderlibdir = lib/libmbedtls
99e789ada3SJens Wiklanderinclude mk/lib.mk
100e789ada3SJens Wiklanderelse
101b0104773SPascal Brandlibname = mpa
102b0104773SPascal Brandlibdir = lib/libmpa
103b0104773SPascal Brandinclude mk/lib.mk
104e789ada3SJens Wiklanderendif
105fcd21d9eSJens Wiklanderendif #tomcrypt
106e789ada3SJens Wiklander
10777327d7aSEdison Aiifeq ($(CFG_CRYPTOLIB_NAME),mbedtls)
10877327d7aSEdison Ai$(call force,CFG_CRYPTO_RSASSA_NA1,n,not supported by mbedtls)
109884462feSJens Wiklanderlibname = tomcrypt
110884462feSJens Wiklanderlibdir = core/lib/libtomcrypt
111884462feSJens Wiklanderbase-prefix :=
112884462feSJens Wiklanderinclude mk/lib.mk
113884462feSJens Wiklanderbase-prefix := $(sm)-
11477327d7aSEdison Aiendif
11577327d7aSEdison Ai
116fa788ef9SJens Wiklanderifeq ($(firstword $(subst /, ,$(CFG_CRYPTOLIB_DIR))),core)
117fa788ef9SJens Wiklander# If a library can be compiled for both core and user space a base-prefix
118fa788ef9SJens Wiklander# is needed in order to avoid conflicts in the output. However, if the
119fa788ef9SJens Wiklander# library resides under core then it can't be compiled to user space.
120b0104773SPascal Brandbase-prefix :=
121fa788ef9SJens Wiklanderendif
122b0104773SPascal Brand
123d2d2d58bSdeebee-v2libname = $(CFG_CRYPTOLIB_NAME)
124d2d2d58bSdeebee-v2libdir = $(CFG_CRYPTOLIB_DIR)
125b0104773SPascal Brandinclude mk/lib.mk
126b0104773SPascal Brand
127fa788ef9SJens Wiklanderbase-prefix :=
128fa788ef9SJens Wiklander
129b908c675SJens Wiklanderifeq ($(CFG_DT),y)
130b908c675SJens Wiklanderlibname = fdt
131b908c675SJens Wiklanderlibdir = core/lib/libfdt
132b908c675SJens Wiklanderinclude mk/lib.mk
133b908c675SJens Wiklanderendif
134b908c675SJens Wiklander
135b3be2f66SJerome Forissierifeq ($(CFG_ZLIB),y)
136b3be2f66SJerome Forissierlibname = zlib
137b3be2f66SJerome Forissierlibdir = core/lib/zlib
138b3be2f66SJerome Forissierinclude mk/lib.mk
139b3be2f66SJerome Forissierendif
140b3be2f66SJerome Forissier
141b0104773SPascal Brand#
142b0104773SPascal Brand# Do main source
143b0104773SPascal Brand#
144bc420748SJens Wiklander
145b0104773SPascal Brandsubdirs = $(core-platform-subdirs) core
146b0104773SPascal Brandinclude mk/subdir.mk
147bc420748SJens Wiklander
148b0104773SPascal Brandinclude mk/compile.mk
149d5a887c8SJens Wiklander
15071315c30SAndrew F. Davisinclude $(if $(wildcard $(platform-dir)/link.mk), \
15171315c30SAndrew F. Davis		$(platform-dir)/link.mk, \
15271315c30SAndrew F. Davis		core/arch/$(ARCH)/kernel/link.mk)
153