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

Commit b85b324b authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "usb: misc: Add snapshot of MDM data bridge and transport drivers"

parents 1537e0da 824df643
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -250,6 +250,9 @@ config USB_F_QDSS
config USB_F_IPC
	tristate

config USB_F_MDM_DATA
	tristate

# this first set of drivers all depend on bulk-capable hardware.

config USB_CONFIGFS
@@ -618,6 +621,13 @@ config USB_CONFIGFS_F_IPC
	  This driver provides USB gadget access to the QRTR USB device mode
	  transport.

config USB_CONFIGFS_F_MDM_DATA
	bool "USB QTI Modem Data function"
	select USB_F_MDM_DATA
	depends on USB_CONFIGFS && USB_QCOM_MDM_DATA_BRIDGE
	help
	  USB QTI modem data function driver.

choice
	tristate "USB Gadget precomposed configurations"
	default USB_ETH
+2 −0
Original line number Diff line number Diff line
@@ -71,3 +71,5 @@ usb_f_qdss-y := f_qdss.o u_qdss.o
obj-$(CONFIG_USB_F_QDSS)	+= usb_f_qdss.o
usb_f_ipc-y			:= f_ipc.o
obj-$(CONFIG_USB_F_IPC)		+= usb_f_ipc.o
usb_f_mdm_data-y		:= f_mdm_data.o
obj-$(CONFIG_USB_F_MDM_DATA)	+= usb_f_mdm_data.o
+1214 −0

File added.

Preview size limit exceeded, changes collapsed.

+11 −0
Original line number Diff line number Diff line
@@ -298,3 +298,14 @@ config USB_QCOM_DIAG_BRIDGE
	  driver.
	  To compile this driver as a module, choose M here: the
	  module will be called diag_bridge.  If unsure, choose N.

config USB_QCOM_MDM_DATA_BRIDGE
	tristate "USB QTI modem data bridge driver"
	select USB_CONFIGFS_F_MDM_DATA
	depends on USB
	help
	  Say Y here if you have a QTI modem device connected via USB that
	  will be bridged in kernel space. This driver works as a bridge to pass
	  data packets between the modem and peripheral usb gadget driver.
	  To compile this driver as a module, choose M here: the module
	  will be called mdm_data_bridge. If unsure, choose N.
+1 −0
Original line number Diff line number Diff line
@@ -34,3 +34,4 @@ obj-$(CONFIG_USB_SISUSBVGA) += sisusbvga/
obj-$(CONFIG_USB_LINK_LAYER_TEST)	+= lvstest.o
obj-$(CONFIG_USB_REDRIVER_NB7VPQ904M)	+= ssusb-redriver-nb7vpq904m.o
obj-$(CONFIG_USB_QCOM_DIAG_BRIDGE)	+= diag_bridge.o
obj-$(CONFIG_USB_QCOM_MDM_DATA_BRIDGE)	+= mdm_data_bridge.o
Loading