mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 12:26:56 +07:00
740a6a1720
This is a minimal driver to support bringing a usb4604 device from microchip out of reset and into hub mode. The usb4604 device is related to the usb3503 device, but it didn't seem close enough to warrant putting both into the same file. This patch borrows some of the usb3503 structure and trims it down to just handle the optional reset gpio and adds the i2c command to put the device into hub mode. Datasheet: http://ww1.microchip.com/downloads/en/DeviceDoc/00001716A.pdf Cc: <devicetree@vger.kernel.org> Signed-off-by: Stephen Boyd <stephen.boyd@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
33 lines
1.2 KiB
Makefile
33 lines
1.2 KiB
Makefile
#
|
|
# Makefile for the rest of the USB drivers
|
|
# (the ones that don't fit into any other categories)
|
|
#
|
|
obj-$(CONFIG_USB_ADUTUX) += adutux.o
|
|
obj-$(CONFIG_USB_APPLEDISPLAY) += appledisplay.o
|
|
obj-$(CONFIG_USB_CYPRESS_CY7C63) += cypress_cy7c63.o
|
|
obj-$(CONFIG_USB_CYTHERM) += cytherm.o
|
|
obj-$(CONFIG_USB_EMI26) += emi26.o
|
|
obj-$(CONFIG_USB_EMI62) += emi62.o
|
|
obj-$(CONFIG_USB_EZUSB_FX2) += ezusb.o
|
|
obj-$(CONFIG_USB_FTDI_ELAN) += ftdi-elan.o
|
|
obj-$(CONFIG_USB_IDMOUSE) += idmouse.o
|
|
obj-$(CONFIG_USB_IOWARRIOR) += iowarrior.o
|
|
obj-$(CONFIG_USB_ISIGHTFW) += isight_firmware.o
|
|
obj-$(CONFIG_USB_LCD) += usblcd.o
|
|
obj-$(CONFIG_USB_LD) += ldusb.o
|
|
obj-$(CONFIG_USB_LEGOTOWER) += legousbtower.o
|
|
obj-$(CONFIG_USB_RIO500) += rio500.o
|
|
obj-$(CONFIG_USB_TEST) += usbtest.o
|
|
obj-$(CONFIG_USB_EHSET_TEST_FIXTURE) += ehset.o
|
|
obj-$(CONFIG_USB_TRANCEVIBRATOR) += trancevibrator.o
|
|
obj-$(CONFIG_USB_USS720) += uss720.o
|
|
obj-$(CONFIG_USB_SEVSEG) += usbsevseg.o
|
|
obj-$(CONFIG_USB_YUREX) += yurex.o
|
|
obj-$(CONFIG_USB_HSIC_USB3503) += usb3503.o
|
|
obj-$(CONFIG_USB_HSIC_USB4604) += usb4604.o
|
|
obj-$(CONFIG_USB_CHAOSKEY) += chaoskey.o
|
|
obj-$(CONFIG_UCSI) += ucsi.o
|
|
|
|
obj-$(CONFIG_USB_SISUSBVGA) += sisusbvga/
|
|
obj-$(CONFIG_USB_LINK_LAYER_TEST) += lvstest.o
|