blob: d09ede32f0ff9e2ac0a887e75d779cd36fb6ae88 [file] [log] [blame]
developer4f0d2ba2023-08-21 17:33:25 +08001# SPDX-Liscense-Identifier: GPL-2.0-or-later
2#
3# Copyright (C) 2023 MediaTek Inc.
4#
5# Author: Chris.Chou <chris.chou@mediatek.com>
6# Ren-Ting Wang <ren-ting.wang@mediatek.com>
7
8obj-$(CONFIG_MTK_CRYPTO_EIP_INLINE) += crypto-eip-inline.o
9
10ccflags-y += -I$(src)/inc
11
12crypto-eip-inline-y += init.o
13crypto-eip-inline-y += ddk-wrapper.o
developer2df22aa2024-03-22 14:36:06 +080014crypto-eip-inline-y += lookaside.o
15crypto-eip-inline-y += lookaside-cipher.o
16crypto-eip-inline-y += lookaside-hash.o
developer4f0d2ba2023-08-21 17:33:25 +080017
18crypto-eip-inline-$(CONFIG_CRYPTO_XFRM_OFFLOAD_MTK_PCE) += xfrm-offload.o
19
20include $(wildcard $(src)/*.mk)