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

Commit 4b7889dc authored by Armaan Siddiqui's avatar Armaan Siddiqui
Browse files

msm: ipa4: mhi qmap flow control pipe definitions for LE



New dedicated pipe definition for LE MHI use cases.

Change-Id: I7426de281a172fac221605c7344d8f6c6e6c107d
Signed-off-by: default avatarArmaan Siddiqui <asiddiqu@codeaurora.org>
parent 5f551b33
Loading
Loading
Loading
Loading
+11 −5
Original line number Diff line number Diff line
@@ -404,9 +404,12 @@ enum ipa_client_type {

	IPA_CLIENT_RTK_ETHERNET_PROD		= 108,
	IPA_CLIENT_RTK_ETHERNET_CONS		= 109,

	IPA_CLIENT_MHI_LOW_LAT_PROD		= 110,
	IPA_CLIENT_MHI_LOW_LAT_CONS		= 111,
};

#define IPA_CLIENT_MAX (IPA_CLIENT_RTK_ETHERNET_CONS + 1)
#define IPA_CLIENT_MAX (IPA_CLIENT_MHI_LOW_LAT_CONS + 1)

#define IPA_CLIENT_WLAN2_PROD IPA_CLIENT_A5_WLAN_AMPDU_PROD
#define IPA_CLIENT_Q6_DL_NLO_DATA_PROD IPA_CLIENT_Q6_DL_NLO_DATA_PROD
@@ -522,12 +525,15 @@ enum ipa_client_type {

#define IPA_CLIENT_IS_MHI_CONS(client) \
	((client) == IPA_CLIENT_MHI_CONS || \
	(client) == IPA_CLIENT_MHI_DPL_CONS)
	(client) == IPA_CLIENT_MHI_DPL_CONS || \
	(client) == IPA_CLIENT_MHI_LOW_LAT_CONS)

#define IPA_CLIENT_IS_MHI(client) \
	((client) == IPA_CLIENT_MHI_CONS || \
	(client) == IPA_CLIENT_MHI_PROD || \
	(client) == IPA_CLIENT_MHI_DPL_CONS)
	(client) == IPA_CLIENT_MHI_DPL_CONS || \
	(client) == IPA_CLIENT_MHI_LOW_LAT_CONS || \
	(client) == IPA_CLIENT_MHI_LOW_LAT_PROD)

#define IPA_CLIENT_IS_TEST_PROD(client) \
	((client) == IPA_CLIENT_TEST_PROD || \