|
@@ -643,3 +643,30 @@ int __init mxc_register_gpios(void)
|
|
|
{
|
|
|
return mxc_gpio_init(imx_gpio_ports, ARRAY_SIZE(imx_gpio_ports));
|
|
|
}
|
|
|
+
|
|
|
+#ifdef CONFIG_MACH_MX21
|
|
|
+static struct resource mx21_usbhc_resources[] = {
|
|
|
+ {
|
|
|
+ .start = USBOTG_BASE_ADDR,
|
|
|
+ .end = USBOTG_BASE_ADDR + 0x1FFF,
|
|
|
+ .flags = IORESOURCE_MEM,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ .start = MXC_INT_USBHOST,
|
|
|
+ .end = MXC_INT_USBHOST,
|
|
|
+ .flags = IORESOURCE_IRQ,
|
|
|
+ },
|
|
|
+};
|
|
|
+
|
|
|
+struct platform_device mx21_usbhc_device = {
|
|
|
+ .name = "imx21-hcd",
|
|
|
+ .id = 0,
|
|
|
+ .dev = {
|
|
|
+ .dma_mask = &mx21_usbhc_device.dev.coherent_dma_mask,
|
|
|
+ .coherent_dma_mask = DMA_BIT_MASK(32),
|
|
|
+ },
|
|
|
+ .num_resources = ARRAY_SIZE(mx21_usbhc_resources),
|
|
|
+ .resource = mx21_usbhc_resources,
|
|
|
+};
|
|
|
+#endif
|
|
|
+
|