msm: featurize support for 32channels from QDSP6

Add configuration flag to make use of 32channel support from
QDSP6.

Change-Id: I1e491b1ec870234140e914add4f177e5351b9953
Signed-off-by: Mangesh Kunchamwar <mangeshk@codeaurora.org>
This commit is contained in:
Mangesh Kunchamwar
2018-10-08 18:20:41 +05:30
parent 70668fcb8d
commit 9f295c71fe
5 changed files with 30 additions and 10 deletions

View File

@@ -208,4 +208,17 @@ int32_t core_get_license_status(uint32_t module_id);
int32_t q6core_load_unload_topo_modules(uint32_t topology_id,
bool preload_type);
#if IS_ENABLED(CONFIG_USE_Q6_32CH_SUPPORT)
static inline bool q6core_use_Q6_32ch_support(void)
{
return true;
}
#else
static inline bool q6core_use_Q6_32ch_support(void)
{
return false;
}
#endif
#endif /* __Q6CORE_H__ */