|
@@ -325,3 +325,63 @@ static int vpac270_ohci_init(struct device *dev)
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static struct pxaohci_platform_data vpac270_ohci_info = {
|
|
|
|
+ .port_mode = PMM_PERPORT_MODE,
|
|
|
|
+ .flags = ENABLE_PORT1 | ENABLE_PORT2 |
|
|
|
|
+ POWER_CONTROL_LOW | POWER_SENSE_LOW,
|
|
|
|
+ .init = vpac270_ohci_init,
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static void __init vpac270_uhc_init(void)
|
|
|
|
+{
|
|
|
|
+ pxa_set_ohci_info(&vpac270_ohci_info);
|
|
|
|
+}
|
|
|
|
+#else
|
|
|
|
+static inline void vpac270_uhc_init(void) {}
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+/******************************************************************************
|
|
|
|
+ * USB Gadget
|
|
|
|
+ ******************************************************************************/
|
|
|
|
+#if defined(CONFIG_USB_PXA27X)||defined(CONFIG_USB_PXA27X_MODULE)
|
|
|
|
+static struct gpio_vbus_mach_info vpac270_gpio_vbus_info = {
|
|
|
|
+ .gpio_vbus = GPIO41_VPAC270_UDC_DETECT,
|
|
|
|
+ .gpio_pullup = -1,
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static struct platform_device vpac270_gpio_vbus = {
|
|
|
|
+ .name = "gpio-vbus",
|
|
|
|
+ .id = -1,
|
|
|
|
+ .dev = {
|
|
|
|
+ .platform_data = &vpac270_gpio_vbus_info,
|
|
|
|
+ },
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static void vpac270_udc_command(int cmd)
|
|
|
|
+{
|
|
|
|
+ if (cmd == PXA2XX_UDC_CMD_CONNECT)
|
|
|
|
+ UP2OCR = UP2OCR_HXOE | UP2OCR_DPPUE;
|
|
|
|
+ else if (cmd == PXA2XX_UDC_CMD_DISCONNECT)
|
|
|
|
+ UP2OCR = UP2OCR_HXOE;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static struct pxa2xx_udc_mach_info vpac270_udc_info __initdata = {
|
|
|
|
+ .udc_command = vpac270_udc_command,
|
|
|
|
+ .gpio_pullup = -1,
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static void __init vpac270_udc_init(void)
|
|
|
|
+{
|
|
|
|
+ pxa_set_udc_info(&vpac270_udc_info);
|
|
|
|
+ platform_device_register(&vpac270_gpio_vbus);
|
|
|
|
+}
|
|
|
|
+#else
|
|
|
|
+static inline void vpac270_udc_init(void) {}
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+/******************************************************************************
|
|
|
|
+ * Ethernet
|
|
|
|
+ ******************************************************************************/
|
|
|
|
+#if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE)
|
|
|
|
+static struct resource vpac270_dm9000_resources[] = {
|
|
|
|
+ [0] = {
|