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

Commit fc695af6 authored by Hemant Kumar's avatar Hemant Kumar
Browse files

usb: gadget: Add snapshot of USB QDSS Function driver



This change adds USB QDSS function driver which allows communication
between USB BAM and QDSS BAM for QDSS debug functionality over USB.
This snapshot is taken as of msm-4.14 commit <f6f026ce6fe6> ("Merge
"soc: qcom: sysmon-qmi: Fix duplicate BEFORE_POWERUP SSCTL events"").

Change-Id: If322e3a73b4e769d42a4bd6366ee62a0b39cd338
Signed-off-by: default avatarHemant Kumar <hemantk@codeaurora.org>
parent 3e70a303
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -232,6 +232,9 @@ config USB_F_AUDIO_SRC
config USB_F_ACC
	tristate

config USB_F_QDSS
	tristate

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

config USB_CONFIGFS
@@ -557,6 +560,16 @@ config USB_CONFIGFS_F_CCID
	  allowing a userspace component to be able to provide the
	  implementation necessary to interface with the smartcard.

config USB_CONFIGFS_F_QDSS
	bool "USB QDSS function"
	select USB_F_QDSS
	depends on USB_CONFIGFS
	help
	  USB QDSS function driver to get hwtracing related data over
	  USB. USB QDSS function driver which allows communication
	  between USB BAM and QDSS BAM for QDSS debug functionality
	  over USB.

choice
	tristate "USB Gadget precomposed configurations"
	default USB_ETH
+2 −0
Original line number Diff line number Diff line
@@ -60,3 +60,5 @@ usb_f_audio_source-y := f_audio_source.o
obj-$(CONFIG_USB_F_AUDIO_SRC)   += usb_f_audio_source.o
usb_f_accessory-y               := f_accessory.o
obj-$(CONFIG_USB_F_ACC)         += usb_f_accessory.o
usb_f_qdss-y			:= f_qdss.o u_qdss.o
obj-$(CONFIG_USB_F_QDSS)	+= usb_f_qdss.o
Loading