Directory Files
.. 3
File Size
Kconfig 1.6 kB
Makefile 644 B
bits.h 4.4 kB
ci.h 13 kB
ci_hdrc.mod.c 0 B
ci_hdrc_imx.c 18 kB
ci_hdrc_imx.h 1.4 kB
ci_hdrc_imx.mod.c 0 B
ci_hdrc_msm.c 7.4 kB
ci_hdrc_msm.mod.c 0 B
ci_hdrc_pci.c 4.4 kB
ci_hdrc_pci.mod.c 0 B
ci_hdrc_tegra.c 10 kB
ci_hdrc_tegra.mod.c 0 B
ci_hdrc_usb2.c 3.3 kB
ci_hdrc_usb2.mod.c 0 B
core.c 36 kB
debug.c 8.0 kB
host.c 13 kB
host.h 534 B
otg.c 5.9 kB
otg.h 744 B
otg_fsm.c 20 kB
otg_fsm.h 2.5 kB
trace.c 397 B
trace.h 2.5 kB
udc.c 55 kB
udc.h 2.3 kB
ulpi.c 2.3 kB
usbmisc_imx.c 36 kB
usbmisc_imx.mod.c 0 B

Linux v6.6.1 - chipidea

# SPDX-License-Identifier: GPL-2.0

config USB_CHIPIDEA
	tristate "ChipIdea Highspeed Dual Role Controller"
	depends on ((USB_EHCI_HCD && USB_GADGET) || (USB_EHCI_HCD && !USB_GADGET) || (!USB_EHCI_HCD && USB_GADGET)) && HAS_DMA
	select EXTCON
	select RESET_CONTROLLER
	select USB_ULPI_BUS
	select USB_ROLE_SWITCH
	select USB_TEGRA_PHY if ARCH_TEGRA
	help
	  Say Y here if your system has a dual role high speed USB
	  controller based on ChipIdea silicon IP. It supports:
	  Dual-role switch (ID, OTG FSM, sysfs), Host-only, and
	  Peripheral-only.

	  When compiled dynamically, the module will be called ci_hdrc.ko.

if USB_CHIPIDEA

config USB_CHIPIDEA_UDC
	bool "ChipIdea device controller"
	depends on USB_GADGET
	help
	  Say Y here to enable device controller functionality of the
	  ChipIdea driver.

config USB_CHIPIDEA_HOST
	bool "ChipIdea host controller"
	depends on USB_EHCI_HCD
	select USB_EHCI_ROOT_HUB_TT
	help
	  Say Y here to enable host controller functionality of the
	  ChipIdea driver.

config USB_CHIPIDEA_PCI
	tristate "Enable PCI glue driver" if EXPERT
	depends on USB_PCI
	depends on NOP_USB_XCEIV
	default USB_CHIPIDEA

config USB_CHIPIDEA_MSM
	tristate "Enable MSM hsusb glue driver" if EXPERT
	default USB_CHIPIDEA

config USB_CHIPIDEA_IMX
	tristate "Enable i.MX USB glue driver" if EXPERT
	depends on OF
	default USB_CHIPIDEA

config USB_CHIPIDEA_GENERIC
	tristate "Enable generic USB2 glue driver" if EXPERT
	default USB_CHIPIDEA

config USB_CHIPIDEA_TEGRA
	tristate "Enable Tegra USB glue driver" if EXPERT
	depends on OF
	default USB_CHIPIDEA

endif