Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 73c931c9 authored by Amir Levy's avatar Amir Levy
Browse files

Enable IPA and GSI driver compilation on techapck



Update makefile to enable IPA and GSI driver
compilations. Add ipa_clients_manager that will register
ipa clients API to ipa_framework at the kernel.
Add conf and header files to enable compilation in
GKI QGKI and debug modes.

Change-Id: I6993b1f6e88f89c8cd8c02fa2fc8cf6a6f169f7d
Signed-off-by: default avatarGhanim Fodi <gfodi@codeaurora.org>
Signed-off-by: default avatarAmir Levy <alevy@codeaurora.org>
parent a619aab3
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only

obj-n += drivers/platform/msm/
#obj-$(CONFIG_ARCH_QCOM) += drivers/platform/msm
obj-$(CONFIG_ARCH_QCOM) += drivers/platform/msm/
+10 −0
Original line number Diff line number Diff line
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (c) 2020, The Linux Foundation. All rights reserved.
*/

#define CONFIG_GSI 1
#define CONFIG_GSI_REGISTER_VERSION_2 1
#define CONFIG_RMNET_IPA3 1
#define CONFIG_RNDIS_IPA 1
#define CONFIG_IPA_WDI_UNIFIED_API 1
+6 −0
Original line number Diff line number Diff line
export CONFIG_GSI=m
export CONFIG_GSI_REGISTER_VERSION_2=y
export CONFIG_IPA_CLIENTS_MANAGER=m
export CONFIG_IPA_WDI_UNIFIED_API=y
export CONFIG_RMNET_IPA3=y
export CONFIG_RNDIS_IPA=m
+6 −0
Original line number Diff line number Diff line
export CONFIG_GSI=y
export CONFIG_GSI_REGISTER_VERSION_2=y
export CONFIG_IPA_CLIENTS_MANAGER=y
export CONFIG_IPA_WDI_UNIFIED_API=y
export CONFIG_RMNET_IPA3=y
export CONFIG_RNDIS_IPA=y
+2 −0
Original line number Diff line number Diff line
export CONFIG_IPA_DEBUG=y
export CONFIG_IPA_UT=y
Loading