diff --git a/drivers/usb/Kconfig b/drivers/usb/Kconfig index 755823c..0d072ef 100644 --- a/drivers/usb/Kconfig +++ b/drivers/usb/Kconfig @@ -22,6 +22,7 @@ config USB_ARCH_HAS_HCD default y if PCMCIA && !M32R # sl811_cs default y if ARM # SL-811 default y if SUPERH # r8a66597-hcd + default y if CPM2 # default PCI # many non-PCI SOC chips embed OHCI diff --git a/drivers/usb/Makefile b/drivers/usb/Makefile index a419c42..7b14564 100644 --- a/drivers/usb/Makefile +++ b/drivers/usb/Makefile @@ -16,6 +16,7 @@ obj-$(CONFIG_USB_UHCI_HCD) += host/ obj-$(CONFIG_USB_SL811_HCD) += host/ obj-$(CONFIG_USB_U132_HCD) += host/ obj-$(CONFIG_USB_R8A66597_HCD) += host/ +obj-$(CONFIG_USB_FHCI_HCD) += host/ obj-$(CONFIG_USB_C67X00_HCD) += c67x00/ diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig index 33b467a..9c08bf1 100644 --- a/drivers/usb/host/Kconfig +++ b/drivers/usb/host/Kconfig @@ -305,3 +305,23 @@ config SUPERH_ON_CHIP_R8A66597 help Renesas SuperH processor has USB like the R8A66597. This driver supported processor is SH7366. + +config USB_FHCI_HCD + tristate "Freescale QE USB Host Controller support" + depends on USB && OF_GPIO && (QUICC_ENGINE || CPM2) + select FSL_GTM + select CRC5 if CPM2 + help + Some Freescale PowerPC processors (such as MPC8360E and + MPC8323) have a Full/Low Speed QE USB Host controller. + + Say "y" to enable support for such controllers, or "m" to compile + it as a module: the module will be called fhci-hcd. + +config FHCI_DEBUG + bool "Freescale QE USB Host Controller debug support" + depends on USB_FHCI_HCD + select DEBUG_FS + help + Say "y" to see some FHCI debug information and statistics + throught debugfs. diff --git a/drivers/usb/host/Makefile b/drivers/usb/host/Makefile index f1edda2..b71dfed 100644 --- a/drivers/usb/host/Makefile +++ b/drivers/usb/host/Makefile @@ -19,3 +19,4 @@ obj-$(CONFIG_USB_SL811_CS) += sl811_cs.o obj-$(CONFIG_USB_U132_HCD) += u132-hcd.o obj-$(CONFIG_USB_R8A66597_HCD) += r8a66597-hcd.o obj-$(CONFIG_USB_ISP1760_HCD) += isp1760.o +obj-$(CONFIG_USB_FHCI_HCD) += fhci-hcd.o