blob: 172a6065f5a275a737fc2979ca40815a02ddac40 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# USB device configuration
3#
4
Jan Engelhardt04d06ad2007-05-10 23:04:13 -07005menuconfig USB_SUPPORT
6 bool "USB support"
Martin Schwidefskye25df122007-05-10 15:45:57 +02007 depends on HAS_IOMEM
Jan Engelhardt04d06ad2007-05-10 23:04:13 -07008
9if USB_SUPPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11# Host-side USB depends on having a host controller
12# NOTE: dummy_hcd is always an option, but it's ignored here ...
13# NOTE: SL-811 option should be board-specific ...
14config USB_ARCH_HAS_HCD
15 boolean
16 default y if USB_ARCH_HAS_OHCI
Jordan Crouse76fa9a22006-01-20 14:06:09 -080017 default y if USB_ARCH_HAS_EHCI
David Brownell648dcfc2007-06-07 14:13:26 -070018 default y if PCMCIA # sl811_cs
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 default y if ARM # SL-811
20 default PCI
21
22# many non-PCI SOC chips embed OHCI
23config USB_ARCH_HAS_OHCI
24 boolean
25 # ARM:
26 default y if SA1111
27 default y if ARCH_OMAP
28 default y if ARCH_LH7A404
Ben Dooks3eb0c5f2005-07-29 12:18:03 -070029 default y if ARCH_S3C2410
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 default y if PXA27x
Lennert Buytenheka5b74742006-06-23 23:02:01 +020031 default y if ARCH_EP93XX
Andrew Victor58a0cd72006-12-01 14:51:13 +010032 default y if ARCH_AT91
Vitaly Wool60bbfc82006-06-29 18:28:18 +040033 default y if ARCH_PNX4008
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 # PPC:
35 default y if STB03xxx
36 default y if PPC_MPC52xx
37 # MIPS:
38 default y if SOC_AU1X00
39 # more:
40 default PCI
41
Jordan Crouse76fa9a22006-01-20 14:06:09 -080042# some non-PCI hcds implement EHCI
43config USB_ARCH_HAS_EHCI
44 boolean
45 default y if PPC_83xx
46 default y if SOC_AU1200
47 default PCI
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049# ARM SA1111 chips have a non-PCI based "OHCI-compatible" USB host interface.
50config USB
51 tristate "Support for Host-side USB"
52 depends on USB_ARCH_HAS_HCD
53 ---help---
54 Universal Serial Bus (USB) is a specification for a serial bus
55 subsystem which offers higher speeds and more features than the
56 traditional PC serial port. The bus supplies power to peripherals
57 and allows for hot swapping. Up to 127 USB peripherals can be
58 connected to a single USB host in a tree structure.
59
60 The USB host is the root of the tree, the peripherals are the
61 leaves and the inner nodes are special USB devices called hubs.
62 Most PCs now have USB host ports, used to connect peripherals
63 such as scanners, keyboards, mice, modems, cameras, disks,
64 flash memory, network links, and printers to the PC.
65
66 Say Y here if your computer has a host-side USB port and you want
67 to use USB devices. You then need to say Y to at least one of the
68 Host Controller Driver (HCD) options below. Choose a USB 1.1
69 controller, such as "UHCI HCD support" or "OHCI HCD support",
70 and "EHCI HCD (USB 2.0) support" except for older systems that
71 do not have USB 2.0 support. It doesn't normally hurt to select
72 them all if you are not certain.
73
74 If your system has a device-side USB port, used in the peripheral
75 side of the USB protocol, see the "USB Gadget" framework instead.
76
77 After choosing your HCD, then select drivers for the USB peripherals
78 you'll be using. You may want to check out the information provided
79 in <file:Documentation/usb/> and especially the links given in
80 <file:Documentation/usb/usb-help.txt>.
81
82 To compile this driver as a module, choose M here: the
83 module will be called usbcore.
84
85source "drivers/usb/core/Kconfig"
86
87source "drivers/usb/host/Kconfig"
88
89source "drivers/usb/class/Kconfig"
90
91source "drivers/usb/storage/Kconfig"
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093source "drivers/usb/image/Kconfig"
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095source "drivers/usb/mon/Kconfig"
96
97comment "USB port drivers"
98 depends on USB
99
100config USB_USS720
101 tristate "USS720 parport driver"
102 depends on USB && PARPORT
103 select PARPORT_NOT_PC
104 ---help---
105 This driver is for USB parallel port adapters that use the Lucent
106 Technologies USS-720 chip. These cables are plugged into your USB
107 port and provide USB compatibility to peripherals designed with
108 parallel port interfaces.
109
110 The chip has two modes: automatic mode and manual mode. In automatic
111 mode, it looks to the computer like a standard USB printer. Only
112 printers may be connected to the USS-720 in this mode. The generic
113 USB printer driver ("USB Printer support", above) may be used in
114 that mode, and you can say N here if you want to use the chip only
115 in this mode.
116
117 Manual mode is not limited to printers, any parallel port
118 device should work. This driver utilizes manual mode.
119 Note however that some operations are three orders of magnitude
120 slower than on a PCI/ISA Parallel Port, so timing critical
121 applications might not work.
122
123 Say Y here if you own an USS-720 USB->Parport cable and intend to
124 connect anything other than a printer to it.
125
126 To compile this driver as a module, choose M here: the
127 module will be called uss720.
128
129source "drivers/usb/serial/Kconfig"
130
131source "drivers/usb/misc/Kconfig"
132
133source "drivers/usb/atm/Kconfig"
134
135source "drivers/usb/gadget/Kconfig"
136
Jan Engelhardt04d06ad2007-05-10 23:04:13 -0700137endif # USB_SUPPORT