X-Git-Url: http://ftp.safe.ca/?a=blobdiff_plain;f=drivers%2Fusb%2FKconfig;h=240750881d28d0a8c2d5c3d5a10312c701afe83b;hb=0ee3a33a0481c8f5c9edb7a5a02f3c76496d9551;hp=85dacc92545ae18b1a4d13a689047d2c9589bb8c;hpb=3eb0c5f4b539873ca88f8597db6a49e83ddfd7e2;p=safe%2Fjmp%2Flinux-2.6 diff --git a/drivers/usb/Kconfig b/drivers/usb/Kconfig index 85dacc9..2407508 100644 --- a/drivers/usb/Kconfig +++ b/drivers/usb/Kconfig @@ -2,7 +2,15 @@ # USB device configuration # -menu "USB support" +menuconfig USB_SUPPORT + bool "USB support" + depends on HAS_IOMEM + default y + ---help--- + This option adds core support for Universal Serial Bus (USB). + You will also need drivers from the following menu to make use of it. + +if USB_SUPPORT # Host-side USB depends on having a host controller # NOTE: dummy_hcd is always an option, but it's ignored here ... @@ -10,7 +18,10 @@ menu "USB support" config USB_ARCH_HAS_HCD boolean default y if USB_ARCH_HAS_OHCI + default y if USB_ARCH_HAS_EHCI + default y if PCMCIA && !M32R # sl811_cs default y if ARM # SL-811 + default y if SUPERH # r8a66597-hcd default PCI # many non-PCI SOC chips embed OHCI @@ -22,18 +33,40 @@ config USB_ARCH_HAS_OHCI default y if ARCH_LH7A404 default y if ARCH_S3C2410 default y if PXA27x + default y if PXA3xx + default y if ARCH_EP93XX + default y if ARCH_AT91 + default y if ARCH_PNX4008 && I2C + default y if MFD_TC6393XB + default y if ARCH_W90X900 # PPC: default y if STB03xxx default y if PPC_MPC52xx # MIPS: default y if SOC_AU1X00 + # SH: + default y if CPU_SUBTYPE_SH7720 + default y if CPU_SUBTYPE_SH7721 + default y if CPU_SUBTYPE_SH7763 + default y if CPU_SUBTYPE_SH7786 # more: default PCI +# some non-PCI hcds implement EHCI +config USB_ARCH_HAS_EHCI + boolean + default y if PPC_83xx + default y if SOC_AU1200 + default y if ARCH_IXP4XX + default y if ARCH_W90X900 + default y if ARCH_AT91SAM9G45 + default PCI + # ARM SA1111 chips have a non-PCI based "OHCI-compatible" USB host interface. config USB tristate "Support for Host-side USB" depends on USB_ARCH_HAS_HCD + select NLS # for UTF-8 strings ---help--- Universal Serial Bus (USB) is a specification for a serial bus subsystem which offers higher speeds and more features than the @@ -68,22 +101,20 @@ config USB source "drivers/usb/core/Kconfig" +source "drivers/usb/mon/Kconfig" + +source "drivers/usb/wusbcore/Kconfig" + source "drivers/usb/host/Kconfig" +source "drivers/usb/musb/Kconfig" + source "drivers/usb/class/Kconfig" source "drivers/usb/storage/Kconfig" -source "drivers/usb/input/Kconfig" - source "drivers/usb/image/Kconfig" -source "drivers/usb/media/Kconfig" - -source "drivers/usb/net/Kconfig" - -source "drivers/usb/mon/Kconfig" - comment "USB port drivers" depends on USB @@ -124,5 +155,6 @@ source "drivers/usb/atm/Kconfig" source "drivers/usb/gadget/Kconfig" -endmenu +source "drivers/usb/otg/Kconfig" +endif # USB_SUPPORT