mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	The USB support was initialy done with a set of PHYs and dwc3-of-simple because the architecture of the USB complex was not understood correctly at the time (and proper documentation was missing...). But with the G12A family, the USB complex was correctly understood and implemented correctly. This adds a proper driver for the glue, based on the G12A one, but with enough changes to require a different driver in U-Boot. Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
		
			
				
	
	
		
			16 lines
		
	
	
		
			504 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			504 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# SPDX-License-Identifier: GPL-2.0+
 | 
						|
 | 
						|
obj-$(CONFIG_USB_DWC3)			+= dwc3.o
 | 
						|
 | 
						|
dwc3-y					:= core.o
 | 
						|
 | 
						|
obj-$(CONFIG_USB_DWC3_GADGET)		+= gadget.o ep0.o
 | 
						|
 | 
						|
obj-$(CONFIG_USB_DWC3_OMAP)		+= dwc3-omap.o
 | 
						|
obj-$(CONFIG_USB_DWC3_MESON_G12A)	+= dwc3-meson-g12a.o
 | 
						|
obj-$(CONFIG_USB_DWC3_MESON_GXL)	+= dwc3-meson-gxl.o
 | 
						|
obj-$(CONFIG_USB_DWC3_GENERIC)		+= dwc3-generic.o
 | 
						|
obj-$(CONFIG_USB_DWC3_UNIPHIER)		+= dwc3-uniphier.o
 | 
						|
obj-$(CONFIG_USB_DWC3_PHY_OMAP)		+= ti_usb_phy.o
 | 
						|
obj-$(CONFIG_USB_DWC3_PHY_SAMSUNG)	+= samsung_usb_phy.o
 |