xref: /optee_os/core/core.mk (revision dd22da8eeee3aa1b51ac26bb908f6cea158648be)
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
53*dd22da8eSJens Wiklandercppflags$(sm)	+= -Ildelf/include
54b0104773SPascal Brandcppflags$(sm)	+= -Ilib/libutee/include
55b0104773SPascal Brand
568aeb6c94SJens Wiklanderifeq ($(filter y, $(CFG_CORE_DYN_SHM) $(CFG_CORE_RESERVED_SHM)),)
578aeb6c94SJens Wiklander$(error error: No shared memory configured)
588aeb6c94SJens Wiklanderendif
598aeb6c94SJens Wiklander
60fe52b1f5SJerome Forissier# Tell all libraries and sub-directories (included below) that we have a
61fe52b1f5SJerome Forissier# configuration file
62fe52b1f5SJerome Forissier
63b5569a68SPascal Brandconf-file := $(out-dir)/include/generated/conf.h
64b5569a68SPascal Brandconf-mk-file := $(out-dir)/conf.mk
65b924c494SJens Wiklanderconf-cmake-file := $(out-dir)/conf.cmake
66dde0e235Setienne carriere$(conf-file): $(conf-mk-file)
67dde0e235Setienne carriere
68fe52b1f5SJerome Forissiercleanfiles += $(conf-file)
69dde0e235Setienne carrierecleanfiles += $(conf-mk-file)
70fe52b1f5SJerome Forissier
71fe52b1f5SJerome Forissier$(conf-file): FORCE
72fe52b1f5SJerome Forissier	$(call check-conf-h)
73fe52b1f5SJerome Forissier
74dde0e235Setienne carriere$(conf-mk-file):  FORCE
753354f9b2SJerome Forissier	$(call check-conf-mk)
76dde0e235Setienne carriere
77b924c494SJens Wiklander$(conf-cmake-file):  FORCE
78b924c494SJens Wiklander	$(call check-conf-cmake)
79b924c494SJens Wiklander
80b0104773SPascal Brand#
81b0104773SPascal Brand# Do libraries
82b0104773SPascal Brand#
83b0104773SPascal Brand
84b0104773SPascal Brand# Set a prefix to avoid conflicts with user TAs that will use the same
85b0104773SPascal Brand# source but with different flags below
86b0104773SPascal Brandbase-prefix := $(sm)-
87b0104773SPascal Brandlibname = utils
88b0104773SPascal Brandlibdir = lib/libutils
89b0104773SPascal Brandinclude mk/lib.mk
90b0104773SPascal Brand
9118dd462bSJens Wiklander# CFG_CRYPTOLIB_NAME must not be changed beyond this line
9218dd462bSJens WiklanderCFG_CRYPTOLIB_NAME_$(CFG_CRYPTOLIB_NAME) := y
93e789ada3SJens Wiklander
94fcd21d9eSJens Wiklanderifeq ($(CFG_CRYPTOLIB_NAME),tomcrypt)
95fcd21d9eSJens Wiklanderifeq ($(CFG_CORE_MBEDTLS_MPI),y)
96e789ada3SJens Wiklander# We're compiling mbedtls too, but with a limited configuration which only
97e789ada3SJens Wiklander# provides the MPI routines
98e789ada3SJens Wiklanderlibname = mbedtls
99e789ada3SJens Wiklanderlibdir = lib/libmbedtls
100e789ada3SJens Wiklanderinclude mk/lib.mk
101e789ada3SJens Wiklanderelse
102b0104773SPascal Brandlibname = mpa
103b0104773SPascal Brandlibdir = lib/libmpa
104b0104773SPascal Brandinclude mk/lib.mk
105e789ada3SJens Wiklanderendif
106fcd21d9eSJens Wiklanderendif #tomcrypt
107e789ada3SJens Wiklander
10877327d7aSEdison Aiifeq ($(CFG_CRYPTOLIB_NAME),mbedtls)
10977327d7aSEdison Ai$(call force,CFG_CRYPTO_RSASSA_NA1,n,not supported by mbedtls)
110884462feSJens Wiklanderlibname = tomcrypt
111884462feSJens Wiklanderlibdir = core/lib/libtomcrypt
112884462feSJens Wiklanderbase-prefix :=
113884462feSJens Wiklanderinclude mk/lib.mk
114884462feSJens Wiklanderbase-prefix := $(sm)-
11577327d7aSEdison Aiendif
11677327d7aSEdison Ai
117fa788ef9SJens Wiklanderifeq ($(firstword $(subst /, ,$(CFG_CRYPTOLIB_DIR))),core)
118fa788ef9SJens Wiklander# If a library can be compiled for both core and user space a base-prefix
119fa788ef9SJens Wiklander# is needed in order to avoid conflicts in the output. However, if the
120fa788ef9SJens Wiklander# library resides under core then it can't be compiled to user space.
121b0104773SPascal Brandbase-prefix :=
122fa788ef9SJens Wiklanderendif
123b0104773SPascal Brand
124d2d2d58bSdeebee-v2libname = $(CFG_CRYPTOLIB_NAME)
125d2d2d58bSdeebee-v2libdir = $(CFG_CRYPTOLIB_DIR)
126b0104773SPascal Brandinclude mk/lib.mk
127b0104773SPascal Brand
128fa788ef9SJens Wiklanderbase-prefix :=
129fa788ef9SJens Wiklander
130b908c675SJens Wiklanderifeq ($(CFG_DT),y)
131b908c675SJens Wiklanderlibname = fdt
132b908c675SJens Wiklanderlibdir = core/lib/libfdt
133b908c675SJens Wiklanderinclude mk/lib.mk
134b908c675SJens Wiklanderendif
135b908c675SJens Wiklander
136b3be2f66SJerome Forissierifeq ($(CFG_ZLIB),y)
137b3be2f66SJerome Forissierlibname = zlib
138b3be2f66SJerome Forissierlibdir = core/lib/zlib
139b3be2f66SJerome Forissierinclude mk/lib.mk
140b3be2f66SJerome Forissierendif
141b3be2f66SJerome Forissier
142b0104773SPascal Brand#
143b0104773SPascal Brand# Do main source
144b0104773SPascal Brand#
145bc420748SJens Wiklander
146b0104773SPascal Brandsubdirs = $(core-platform-subdirs) core
147b0104773SPascal Brandinclude mk/subdir.mk
148bc420748SJens Wiklander
149b0104773SPascal Brandinclude mk/compile.mk
150d5a887c8SJens Wiklander
15171315c30SAndrew F. Davisinclude $(if $(wildcard $(platform-dir)/link.mk), \
15271315c30SAndrew F. Davis		$(platform-dir)/link.mk, \
15371315c30SAndrew F. Davis		core/arch/$(ARCH)/kernel/link.mk)
154