A total of 98 non-merge commits, the biggest part being in dwc3 this time around with a large refactoring of dwc3's transfer handling code. We also have a new driver for Aspeed virtual hub controller. Apart from that, just a list of miscellaneous fixes all over the place. -----BEGIN PGP SIGNATURE----- iQJRBAABCgA7FiEElLzh7wn96CXwjh2IzL64meEamQYFAlsCgCYdHGZlbGlwZS5i YWxiaUBsaW51eC5pbnRlbC5jb20ACgkQzL64meEamQb+thAAuL3kE7y5dGOp91cw Eiif9fcNdiQVz/ItyBqnaaUlztYrT3C/K0gZcgf63671rWkiYx3I+NihT9B/Za0e 7zhauY6olddghKr9GRAeMf7sbrAnRGg6FyTm5P76f3MJsQF17hio05XJcJZ8cecd QNLyOJLAFJKMnczgNHLj2PP3v+lxucCi4ryJDYu7KxQcjfbtIdx0WMoSCIo1D9MX qJ/6HjLxlgOWoGpEVfmwNlsh6boI9liBsunzMOtt9HQ3pu9HO08fy3x1NAaxr2Cl VJsbyTDRmjUFDq4pl9uFt0F8GoNLEvQU30kogyxtJ/F9pEiLseX5+UP+uEHEsz4Q kIHdFUSsydZj4gGfupbfGmtzfQETV+9yM6dL/TTe6yvpAG25Az7NW498Sv3gUKrE qPHNcrumJugNiAG4cWiIu+K5VJoX6M/+0c7HgcFxOo/O3WpD0nJKj7WpQD/T0XV7 ErehJywEjf4TpQOM2/SuRrjNgjTD5l88HhsEazkT95lfZkvtmLHcLMXVZbCVGjFV RAXZMgHKTqg4RCgDUdzrsaKF5l1W0PX3j60b3no3bAD2YG4HNEWOu2PjDC+EGaCi TCpQjLcEu9ynRgnOuRcugNupENCLc7u3IkMAIt7E7maktnKWGK0q9fzxpwnt9XqF YOM6Jj6YZRV2TtKRdv9MVz9LzHk= =b56m -----END PGP SIGNATURE----- Merge tag 'usb-for-v4.18' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-next usb: changes for v4.18 merge window A total of 98 non-merge commits, the biggest part being in dwc3 this time around with a large refactoring of dwc3's transfer handling code. We also have a new driver for Aspeed virtual hub controller. Apart from that, just a list of miscellaneous fixes all over the place.
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # For MTK USB3.0 IP
 | |
| 
 | |
| config USB_MTU3
 | |
| 	tristate "MediaTek USB3 Dual Role controller"
 | |
| 	depends on USB || USB_GADGET
 | |
| 	depends on ARCH_MEDIATEK || COMPILE_TEST
 | |
| 	select USB_XHCI_MTK if USB_SUPPORT && USB_XHCI_HCD
 | |
| 	help
 | |
| 	  Say Y or M here if your system runs on MediaTek SoCs with
 | |
| 	  Dual Role SuperSpeed USB controller. You can select usb
 | |
| 	  mode as peripheral role or host role, or both.
 | |
| 
 | |
| 	  If you don't know what this is, please say N.
 | |
| 
 | |
| 	  Choose M here to compile this driver as a module, and it
 | |
| 	  will be called mtu3.ko.
 | |
| 
 | |
| 
 | |
| if USB_MTU3
 | |
| choice
 | |
| 	bool "MTU3 Mode Selection"
 | |
| 	default USB_MTU3_DUAL_ROLE if (USB && USB_GADGET)
 | |
| 	default USB_MTU3_HOST if (USB && !USB_GADGET)
 | |
| 	default USB_MTU3_GADGET if (!USB && USB_GADGET)
 | |
| 
 | |
| config USB_MTU3_HOST
 | |
| 	bool "Host only mode"
 | |
| 	depends on USB=y || USB=USB_MTU3
 | |
| 	help
 | |
| 	  Select this when you want to use MTU3 in host mode only,
 | |
| 	  thereby the gadget feature will be regressed.
 | |
| 
 | |
| config USB_MTU3_GADGET
 | |
| 	bool "Gadget only mode"
 | |
| 	depends on USB_GADGET=y || USB_GADGET=USB_MTU3
 | |
| 	help
 | |
| 	  Select this when you want to use MTU3 in gadget mode only,
 | |
| 	  thereby the host feature will be regressed.
 | |
| 
 | |
| config USB_MTU3_DUAL_ROLE
 | |
| 	bool "Dual Role mode"
 | |
| 	depends on ((USB=y || USB=USB_MTU3) && (USB_GADGET=y || USB_GADGET=USB_MTU3))
 | |
| 	depends on (EXTCON=y || EXTCON=USB_MTU3)
 | |
| 	help
 | |
| 	  This is the default mode of working of MTU3 controller where
 | |
| 	  both host and gadget features are enabled.
 | |
| 
 | |
| endchoice
 | |
| 
 | |
| config USB_MTU3_DEBUG
 | |
| 	bool "Enable Debugging Messages"
 | |
| 	help
 | |
| 	  Say Y here to enable debugging messages in the MTU3 Driver.
 | |
| 
 | |
| endif
 |