Directory Files
.. 3
File Size
Kconfig 2.2 kB
Makefile 496 B
stub.h 2.4 kB
stub_dev.c 12 kB
stub_main.c 9.1 kB
stub_rx.c 17 kB
stub_tx.c 12 kB
usbip-core.mod.c 0 B
usbip-host.mod.c 0 B
usbip-vudc.mod.c 0 B
usbip_common.c 22 kB
usbip_common.h 11 kB
usbip_event.c 4.0 kB
vhci-hcd.mod.c 0 B
vhci.h 3.6 kB
vhci_hcd.c 40 kB
vhci_rx.c 6.3 kB
vhci_sysfs.c 12 kB
vhci_tx.c 6.0 kB
vudc.h 3.7 kB
vudc_dev.c 13 kB
vudc_main.c 2.5 kB
vudc_rx.c 5.7 kB
vudc_sysfs.c 6.1 kB
vudc_transfer.c 12 kB
vudc_tx.c 6.5 kB

Linux v6.6.1 - usbip

# SPDX-License-Identifier: GPL-2.0

config USBIP_CORE
	tristate "USB/IP support"
	depends on NET
	select USB_COMMON
	select SGL_ALLOC
	help
	  This enables pushing USB packets over IP to allow remote
	  machines direct access to USB devices. It provides the
	  USB/IP core that is required by both drivers.

	  For more details, and to get the userspace utility
	  programs, please see <http://usbip.sourceforge.net/>.

	  To compile this as a module, choose M here: the module will
	  be called usbip-core.

	  If unsure, say N.

config USBIP_VHCI_HCD
	tristate "VHCI hcd"
	depends on USBIP_CORE && USB
	help
	  This enables the USB/IP virtual host controller driver,
	  which is run on the remote machine.

	  To compile this driver as a module, choose M here: the
	  module will be called vhci-hcd.

config USBIP_VHCI_HC_PORTS
	int "Number of ports per USB/IP virtual host controller"
	range 1 15
	default 8
	depends on USBIP_VHCI_HCD
	help
	  To increase number of ports available for USB/IP virtual
	  host controller driver, this defines number of ports per
	  USB/IP virtual host controller.

config USBIP_VHCI_NR_HCS
	int "Number of USB/IP virtual host controllers"
	range 1 128
	default 1
	depends on USBIP_VHCI_HCD
	help
	  To increase number of ports available for USB/IP virtual
	  host controller driver, this defines number of USB/IP
	  virtual host controllers as if adding physical host
	  controllers.

config USBIP_HOST
	tristate "Host driver"
	depends on USBIP_CORE && USB
	help
	  This enables the USB/IP host driver, which is run on the
	  machine that is sharing the USB devices.

	  To compile this driver as a module, choose M here: the
	  module will be called usbip-host.

config USBIP_VUDC
	tristate "VUDC driver"
	depends on USBIP_CORE && USB_GADGET
	help
	  This enables the USB/IP virtual USB device controller
	  driver, which is run on the host machine, allowing the
	  machine itself to act as a device.

	  To compile this driver as a module, choose M here: the
	  module will be called usbip-vudc.

config USBIP_DEBUG
	bool "Debug messages for USB/IP"
	depends on USBIP_CORE
	help
	  This enables the debug messages from the USB/IP drivers.