| # |
| # Copyright (C) 2015 MediaTek Inc. |
| # |
| # This program is free software: you can redistribute it and/or modify |
| # it under the terms of the GNU General Public License version 2 as |
| # published by the Free Software Foundation. |
| # |
| # This program is distributed in the hope that it will be useful, |
| # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| # GNU General Public License for more details. |
| # |
| |
| # TZ KREE driver makefile. |
| |
| # Kernel does not work with kcov instrumentation here. |
| # the problem observed was insertion of __sanitizer_cov_trace_pc() |
| # callback into middle of assemble embedded code. Thus the callback observed |
| # inconsistent state and crashed. |
| KCOV_INSTRUMENT_tz_system.o := n |
| |
| ccflags-y += -Werror |
| ccflags-y += -I$(DEVICE_MODULES_PATH)/drivers/misc/mediatek/include/mt-plat/trustzone |
| ccflags-y += -I$(DEVICE_MODULES_PATH)/drivers/misc/mediatek/include/mt-plat/ |
| ccflags-y += -I$(DEVICE_MODULES_PATH)/drivers/misc/mediatek/include/ |
| |
| obj-$(CONFIG_DEVICE_MODULES_TEE) += tz_module.o |
| ifneq ($(filter y m, $(CONFIG_DEVICE_MODULES_OPTEE)),) |
| tz_module-y += tz_system_optee.o |
| tz_module-y += tz_mod_optee.o |
| tz_module-y += tz_irq_optee.o |
| else |
| tz_module-y += tz_system.o |
| tz_module-y += tz_mod.o |
| tz_module-y += tz_irq.o |
| endif |
| ifneq ($(filter y m, $(CONFIG_MTEE_CMA_SECURE_MEMORY)),) |
| tz_module-y += tz_cma.o |
| endif |
| |
| tz_module-y += test.o kree_mem.o tz_sys_ipc.o \ |
| tz_pm.o tz_clock.o tz_counter.o tz_mem.o tz_playready.o tz_secure_clock.o |
| obj-$(CONFIG_MTEE_CMA_SECURE_MEMORY) += tz_cma_test.o |