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

Commit c8f81014 authored by Chandana Kishori Chiluveru's avatar Chandana Kishori Chiluveru
Browse files

usb: gadget: Add snapshot of USB RMNET Function driver



This change adds USB RMNET function driver which allows communication
between USB BAM and IPA BAM for RMNET and DPL functionalities over USB.

This snapshot is taken as of msm-4.4 'commit fa53f7f14b3c ("soc: qcom:
ipc_router_glink_xprt: Add rx intent timeout for glink")'.

This change adding changes to use cdev device instead of misc device
and also fixes different coding style related warnings.

Change-Id: I4c135765cd9a20fc512ae7e1970271275d8f1866
Signed-off-by: default avatarChandana Kishori Chiluveru <cchiluve@codeaurora.org>
parent 0098feef
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -185,6 +185,9 @@ config USB_F_RNDIS
config USB_F_QCRNDIS
	tristate

config USB_F_RMNET_BAM
	tristate

config USB_F_MASS_STORAGE
	tristate

@@ -339,6 +342,12 @@ config USB_CONFIGFS_RNDIS
	   XP, you'll need to download drivers from Microsoft's website; a URL
	   is given in comments found in that info file.

config USB_CONFIGFS_RMNET_BAM
	bool "RMNET_BAM"
	depends on USB_CONFIGFS
	depends on IPA
	select USB_F_RMNET_BAM

config USB_CONFIGFS_EEM
	bool "Ethernet Emulation Model (EEM)"
	depends on USB_CONFIGFS
+2 −0
Original line number Diff line number Diff line
@@ -66,3 +66,5 @@ usb_f_qdss-y := f_qdss.o u_qdss.o
obj-$(CONFIG_USB_F_QDSS)        += usb_f_qdss.o
usb_f_qcrndis-y			:= f_qc_rndis.o rndis.o u_data_ipa.o
obj-$(CONFIG_USB_F_QCRNDIS)	+= usb_f_qcrndis.o
usb_f_rmnet_bam-y		:= f_rmnet.o u_ctrl_qti.o
obj-$(CONFIG_USB_F_RMNET_BAM)	+= usb_f_rmnet_bam.o
+1272 −0

File added.

Preview size limit exceeded, changes collapsed.

+872 −0

File added.

Preview size limit exceeded, changes collapsed.