mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 07:36:44 +07:00
de18757e27
Since the usb2 phy driver for gen3 (phy-rcar-gen3-usb2) cannot access LPSTS and UGCTRL2 registers in the HSUSB module, this driver have to initialize the registers. So, this patch adds such handling code into rcar3.c. Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> Signed-off-by: Felipe Balbi <balbi@kernel.org>
16 lines
303 B
Makefile
16 lines
303 B
Makefile
#
|
|
# for Renesas USB
|
|
#
|
|
|
|
obj-$(CONFIG_USB_RENESAS_USBHS) += renesas_usbhs.o
|
|
|
|
renesas_usbhs-y := common.o mod.o pipe.o fifo.o rcar2.o rcar3.o
|
|
|
|
ifneq ($(CONFIG_USB_RENESAS_USBHS_HCD),)
|
|
renesas_usbhs-y += mod_host.o
|
|
endif
|
|
|
|
ifneq ($(CONFIG_USB_RENESAS_USBHS_UDC),)
|
|
renesas_usbhs-y += mod_gadget.o
|
|
endif
|