1# SPDX-License-Identifier: GPL-2.0-only 2# 3# Wireless WAN device configuration 4# 5 6menuconfig WWAN 7 bool "Wireless WAN" 8 help 9 This section contains Wireless WAN configuration for WWAN framework 10 and drivers. 11 12if WWAN 13 14config WWAN_CORE 15 tristate "WWAN Driver Core" 16 help 17 Say Y here if you want to use the WWAN driver core. This driver 18 provides a common framework for WWAN drivers. 19 20 To compile this driver as a module, choose M here: the module will be 21 called wwan. 22 23config MHI_WWAN_CTRL 24 tristate "MHI WWAN control driver for QCOM-based PCIe modems" 25 select WWAN_CORE 26 depends on MHI_BUS 27 help 28 MHI WWAN CTRL allows QCOM-based PCIe modems to expose different modem 29 control protocols/ports to userspace, including AT, MBIM, QMI, DIAG 30 and FIREHOSE. These protocols can be accessed directly from userspace 31 (e.g. AT commands) or via libraries/tools (e.g. libmbim, libqmi, 32 libqcdm...). 33 34 To compile this driver as a module, choose M here: the module will be 35 called mhi_wwan_ctrl. 36 37endif # WWAN 38