4 #include <linux/init.h>
5 #include <linux/platform_device.h>
6 #include <linux/dma-mapping.h>
8 #include <linux/usb/musb.h>
10 #include <mach/common.h>
11 #include <mach/irqs.h>
12 #include <mach/cputype.h>
15 #define DAVINCI_USB_OTG_BASE 0x01c64000
17 #define DA8XX_USB0_BASE 0x01e00000
18 #define DA8XX_USB1_BASE 0x01e25000
20 #if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE)
21 static struct musb_hdrc_eps_bits musb_eps
[] = {
32 static struct musb_hdrc_config musb_config
= {
44 static struct musb_hdrc_platform_data usb_data
= {
45 #if defined(CONFIG_USB_MUSB_OTG)
46 /* OTG requires a Mini-AB connector */
48 #elif defined(CONFIG_USB_MUSB_PERIPHERAL)
49 .mode
= MUSB_PERIPHERAL
,
50 #elif defined(CONFIG_USB_MUSB_HOST)
54 .config
= &musb_config
,
57 static struct resource usb_resources
[] = {
59 /* physical address */
60 .start
= DAVINCI_USB_OTG_BASE
,
61 .end
= DAVINCI_USB_OTG_BASE
+ 0x5ff,
62 .flags
= IORESOURCE_MEM
,
66 .flags
= IORESOURCE_IRQ
,
69 /* placeholder for the dedicated CPPI IRQ */
70 .flags
= IORESOURCE_IRQ
,
74 static u64 usb_dmamask
= DMA_BIT_MASK(32);
76 static struct platform_device usb_dev
= {
80 .platform_data
= &usb_data
,
81 .dma_mask
= &usb_dmamask
,
82 .coherent_dma_mask
= DMA_BIT_MASK(32),
84 .resource
= usb_resources
,
85 .num_resources
= ARRAY_SIZE(usb_resources
),
88 void __init
davinci_setup_usb(unsigned mA
, unsigned potpgt_ms
)
90 usb_data
.power
= mA
> 510 ? 255 : mA
/ 2;
91 usb_data
.potpgt
= (potpgt_ms
+ 1) / 2;
93 if (cpu_is_davinci_dm646x()) {
94 /* Override the defaults as DM6467 uses different IRQs. */
95 usb_dev
.resource
[1].start
= IRQ_DM646X_USBINT
;
96 usb_dev
.resource
[2].start
= IRQ_DM646X_USBDMAINT
;
97 } else /* other devices don't have dedicated CPPI IRQ */
98 usb_dev
.num_resources
= 2;
100 platform_device_register(&usb_dev
);
103 #ifdef CONFIG_ARCH_DAVINCI_DA8XX
104 static struct resource da8xx_usb20_resources
[] = {
106 .start
= DA8XX_USB0_BASE
,
107 .end
= DA8XX_USB0_BASE
+ SZ_64K
- 1,
108 .flags
= IORESOURCE_MEM
,
111 .start
= IRQ_DA8XX_USB_INT
,
112 .flags
= IORESOURCE_IRQ
,
116 int __init
da8xx_register_usb20(unsigned mA
, unsigned potpgt
)
118 usb_data
.clock
= "usb20";
119 usb_data
.power
= mA
> 510 ? 255 : mA
/ 2;
120 usb_data
.potpgt
= (potpgt
+ 1) / 2;
122 usb_dev
.resource
= da8xx_usb20_resources
;
123 usb_dev
.num_resources
= ARRAY_SIZE(da8xx_usb20_resources
);
125 return platform_device_register(&usb_dev
);
127 #endif /* CONFIG_DAVINCI_DA8XX */
131 void __init
davinci_setup_usb(unsigned mA
, unsigned potpgt_ms
)
135 #ifdef CONFIG_ARCH_DAVINCI_DA8XX
136 int __init
da8xx_register_usb20(unsigned mA
, unsigned potpgt
)
142 #endif /* CONFIG_USB_MUSB_HDRC */
144 #ifdef CONFIG_ARCH_DAVINCI_DA8XX
145 static struct resource da8xx_usb11_resources
[] = {
147 .start
= DA8XX_USB1_BASE
,
148 .end
= DA8XX_USB1_BASE
+ SZ_4K
- 1,
149 .flags
= IORESOURCE_MEM
,
152 .start
= IRQ_DA8XX_IRQN
,
153 .end
= IRQ_DA8XX_IRQN
,
154 .flags
= IORESOURCE_IRQ
,
158 static u64 da8xx_usb11_dma_mask
= DMA_BIT_MASK(32);
160 static struct platform_device da8xx_usb11_device
= {
164 .dma_mask
= &da8xx_usb11_dma_mask
,
165 .coherent_dma_mask
= DMA_BIT_MASK(32),
167 .num_resources
= ARRAY_SIZE(da8xx_usb11_resources
),
168 .resource
= da8xx_usb11_resources
,
171 int __init
da8xx_register_usb11(struct da8xx_ohci_root_hub
*pdata
)
173 da8xx_usb11_device
.dev
.platform_data
= pdata
;
174 return platform_device_register(&da8xx_usb11_device
);
176 #endif /* CONFIG_DAVINCI_DA8XX */