mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
13e920d93e
Registers the t7xx device driver with the kernel. Setup all the core components: PCIe layer, Modem Host Cross Core Interface (MHCCIF), modem control operations, modem state machine, and build infrastructure. * PCIe layer code implements driver probe and removal. * MHCCIF provides interrupt channels to communicate events such as handshake, PM and port enumeration. * Modem control implements the entry point for modem init, reset and exit. * The modem status monitor is a state machine used by modem control to complete initialization and stop. It is used also to propagate exception events reported by other components. Signed-off-by: Haijun Liu <haijun.liu@mediatek.com> Signed-off-by: Chandrashekar Devegowda <chandrashekar.devegowda@intel.com> Co-developed-by: Ricardo Martinez <ricardo.martinez@linux.intel.com> Signed-off-by: Ricardo Martinez <ricardo.martinez@linux.intel.com> Reviewed-by: Loic Poulain <loic.poulain@linaro.org> Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Reviewed-by: Sergey Ryazanov <ryazanov.s.a@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
17 lines
435 B
Makefile
17 lines
435 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the Linux WWAN device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_WWAN) += wwan.o
|
|
wwan-objs += wwan_core.o
|
|
|
|
obj-$(CONFIG_WWAN_HWSIM) += wwan_hwsim.o
|
|
|
|
obj-$(CONFIG_MHI_WWAN_CTRL) += mhi_wwan_ctrl.o
|
|
obj-$(CONFIG_MHI_WWAN_MBIM) += mhi_wwan_mbim.o
|
|
obj-$(CONFIG_QCOM_BAM_DMUX) += qcom_bam_dmux.o
|
|
obj-$(CONFIG_RPMSG_WWAN_CTRL) += rpmsg_wwan_ctrl.o
|
|
obj-$(CONFIG_IOSM) += iosm/
|
|
obj-$(CONFIG_MTK_T7XX) += t7xx/
|