/* * linux/arch/arm/mach-omap2/usb-musb.c * * This file will contain the board specific details for the * MENTOR USB OTG controller on OMAP3430 * * Copyright (C) 2007-2008 Texas Instruments * Copyright (C) 2008 Nokia Corporation * Author: Vikram Pandita * * Generalization by: * Felipe Balbi * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #include #include #include #include #include #include #include #include #include #include #include #ifdef CONFIG_USB_MUSB_SOC static struct resource musb_resources[] = { [0] = { .start = cpu_is_omap34xx() ? OMAP34XX_HSUSB_OTG_BASE : OMAP243X_HS_BASE, .end = cpu_is_omap34xx() ? OMAP34XX_HSUSB_OTG_BASE + SZ_8K - 1 : OMAP243X_HS_BASE + SZ_8K -1, .flags = IORESOURCE_MEM, }, [1] = { /* general IRQ */ .start = INT_243X_HS_USB_MC, .flags = IORESOURCE_IRQ, }, [2] = { /* DMA IRQ */ .start = INT_243X_HS_USB_DMA, .flags = IORESOURCE_IRQ, }, }; static int clk_on; static int musb_set_clock(struct clk *clk, int state) { if (state) { if (clk_on > 0) return -ENODEV; omap2_block_sleep(); clk_enable(clk); clk_on = 1; } else { if (clk_on == 0) return -ENODEV; clk_disable(clk); clk_on = 0; omap2_allow_sleep(); } return 0; } static struct musb_hdrc_platform_data musb_plat = { #ifdef CONFIG_USB_MUSB_OTG .mode = MUSB_OTG, #elif defined(CONFIG_USB_MUSB_HDRC_HCD) .mode = MUSB_HOST, #elif defined(CONFIG_USB_GADGET_MUSB_HDRC) .mode = MUSB_PERIPHERAL, #endif .multipoint = 1, .clock = cpu_is_omap34xx() ? "hsotgusb_ick" : "usbhs_ick", .set_clock = musb_set_clock, }; static u64 musb_dmamask = ~(u32)0; static struct platform_device musb_device = { .name = "musb_hdrc", .id = 0, .dev = { .dma_mask = &musb_dmamask, .coherent_dma_mask = 0xffffffff, .platform_data = &musb_plat, }, .num_resources = ARRAY_SIZE(musb_resources), .resource = musb_resources, }; #endif void __init usb_musb_init(void) { #ifdef CONFIG_USB_MUSB_SOC if (platform_device_register(&musb_device) < 0) { printk(KERN_ERR "Unable to register HS-USB (MUSB) device\n"); return; } #endif }