1dba41c9d2
In order to function, the IPA driver very clearly requires the interconnect framework to be enabled in the kernel configuration. State that dependency in the Kconfig file. This became a problem when CONFIG_COMPILE_TEST support was added. Non-Qualcomm platforms won't necessarily enable CONFIG_INTERCONNECT. Reported-by: kernel test robot <lkp@intel.com> Fixes: 38a4066f593c5 ("net: ipa: support COMPILE_TEST") Signed-off-by: Alex Elder <elder@linaro.org> Link: https://lore.kernel.org/r/20220301113440.257916-1-elder@linaro.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
24 lines
851 B
Plaintext
24 lines
851 B
Plaintext
config QCOM_IPA
|
|
tristate "Qualcomm IPA support"
|
|
depends on NET && QCOM_SMEM
|
|
depends on ARCH_QCOM || COMPILE_TEST
|
|
depends on INTERCONNECT
|
|
depends on QCOM_RPROC_COMMON || (QCOM_RPROC_COMMON=n && COMPILE_TEST)
|
|
depends on QCOM_AOSS_QMP || QCOM_AOSS_QMP=n
|
|
select QCOM_MDT_LOADER if ARCH_QCOM
|
|
select QCOM_SCM
|
|
select QCOM_QMI_HELPERS
|
|
help
|
|
Choose Y or M here to include support for the Qualcomm
|
|
IP Accelerator (IPA), a hardware block present in some
|
|
Qualcomm SoCs. The IPA is a programmable protocol processor
|
|
that is capable of generic hardware handling of IP packets,
|
|
including routing, filtering, and NAT. Currently the IPA
|
|
driver supports only basic transport of network traffic
|
|
between the AP and modem.
|
|
|
|
Note that if selected, the selection type must match that
|
|
of QCOM_Q6V5_COMMON (Y or M).
|
|
|
|
If unsure, say N.
|