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

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

Merge "net: qrtr: Add support for a USB device transport"

parents ab4de3ff 64b25108
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -247,6 +247,9 @@ config USB_F_GSI
config USB_F_QDSS
	tristate

config USB_F_IPC
	tristate

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

config USB_CONFIGFS
@@ -606,6 +609,15 @@ config USB_CONFIGFS_F_QDSS
	help
	  USB QDSS function driver to get hwtracing related data over USB.

config USB_CONFIGFS_F_IPC
	bool "USB IPC function"
	select USB_F_IPC
	depends on USB_CONFIGFS
	help
	  IPC function driver enables support for IPC messages port over USB.
	  This driver provides USB gadget access to the QRTR USB device mode
	  transport.

choice
	tristate "USB Gadget precomposed configurations"
	default USB_ETH
+2 −0
Original line number Diff line number Diff line
@@ -69,3 +69,5 @@ usb_f_gsi-y := f_gsi.o
obj-$(CONFIG_USB_F_GSI)		+= usb_f_gsi.o
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
+866 −0

File added.

Preview size limit exceeded, changes collapsed.

+66 −0

File added.

Preview size limit exceeded, changes collapsed.

+7 −0
Original line number Diff line number Diff line
@@ -60,4 +60,11 @@ config QRTR_MHI_DEV
	  connections.  This driver enables QRTR to run on the modem device
	  side.

config QRTR_USB_DEV
	tristate "USB Device IPC Router channels"
	depends on USB_CONFIGFS_F_IPC || (COMPILE_TEST && USB_CONFIGFS_F_IPC=n)
	---help---
	  Say Y here to support USB device based ipcrouter channels.
	  This driver enables QRTR to run on the modem device.

endif # QRTR
Loading