usb: musb: split tusb6010 to its own platform_driver
[deliverable/linux.git] / arch / arm / mach-davinci / usb.c
CommitLineData
cece6e5a
DB
1/*
2 * USB
3 */
cece6e5a
DB
4#include <linux/init.h>
5#include <linux/platform_device.h>
6#include <linux/dma-mapping.h>
7
8#include <linux/usb/musb.h>
cece6e5a
DB
9
10#include <mach/common.h>
d0e58ae7 11#include <mach/irqs.h>
efd91181 12#include <mach/cputype.h>
e5d3d252 13#include <mach/usb.h>
cece6e5a 14
e5d3d252 15#define DAVINCI_USB_OTG_BASE 0x01c64000
b0ea26e1
SS
16
17#define DA8XX_USB0_BASE 0x01e00000
e5d3d252 18#define DA8XX_USB1_BASE 0x01e25000
f5c122da 19
cece6e5a
DB
20#if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE)
21static struct musb_hdrc_eps_bits musb_eps[] = {
22 { "ep1_tx", 8, },
23 { "ep1_rx", 8, },
24 { "ep2_tx", 8, },
25 { "ep2_rx", 8, },
26 { "ep3_tx", 5, },
27 { "ep3_rx", 5, },
28 { "ep4_tx", 5, },
29 { "ep4_rx", 5, },
30};
31
32static struct musb_hdrc_config musb_config = {
33 .multipoint = true,
34 .dyn_fifo = true,
35 .soft_con = true,
36 .dma = true,
37
38 .num_eps = 5,
39 .dma_channels = 8,
40 .ram_bits = 10,
41 .eps_bits = musb_eps,
42};
43
44static struct musb_hdrc_platform_data usb_data = {
45#if defined(CONFIG_USB_MUSB_OTG)
46 /* OTG requires a Mini-AB connector */
47 .mode = MUSB_OTG,
48#elif defined(CONFIG_USB_MUSB_PERIPHERAL)
49 .mode = MUSB_PERIPHERAL,
50#elif defined(CONFIG_USB_MUSB_HOST)
51 .mode = MUSB_HOST,
52#endif
34f32c97 53 .clock = "usb",
cece6e5a
DB
54 .config = &musb_config,
55};
56
57static struct resource usb_resources[] = {
58 {
59 /* physical address */
60 .start = DAVINCI_USB_OTG_BASE,
61 .end = DAVINCI_USB_OTG_BASE + 0x5ff,
62 .flags = IORESOURCE_MEM,
63 },
64 {
65 .start = IRQ_USBINT,
66 .flags = IORESOURCE_IRQ,
fcf173e4 67 .name = "mc"
cece6e5a 68 },
efd91181
SS
69 {
70 /* placeholder for the dedicated CPPI IRQ */
71 .flags = IORESOURCE_IRQ,
fcf173e4 72 .name = "dma"
efd91181 73 },
cece6e5a
DB
74};
75
284901a9 76static u64 usb_dmamask = DMA_BIT_MASK(32);
cece6e5a
DB
77
78static struct platform_device usb_dev = {
05ac10dd 79 .name = "musb-hdrc",
cece6e5a
DB
80 .id = -1,
81 .dev = {
82 .platform_data = &usb_data,
83 .dma_mask = &usb_dmamask,
284901a9 84 .coherent_dma_mask = DMA_BIT_MASK(32),
cece6e5a
DB
85 },
86 .resource = usb_resources,
87 .num_resources = ARRAY_SIZE(usb_resources),
88};
89
355fb4e3 90void __init davinci_setup_usb(unsigned mA, unsigned potpgt_ms)
cece6e5a 91{
355fb4e3
SS
92 usb_data.power = mA > 510 ? 255 : mA / 2;
93 usb_data.potpgt = (potpgt_ms + 1) / 2;
efd91181
SS
94
95 if (cpu_is_davinci_dm646x()) {
96 /* Override the defaults as DM6467 uses different IRQs. */
97 usb_dev.resource[1].start = IRQ_DM646X_USBINT;
98 usb_dev.resource[2].start = IRQ_DM646X_USBDMAINT;
99 } else /* other devices don't have dedicated CPPI IRQ */
100 usb_dev.num_resources = 2;
101
cece6e5a
DB
102 platform_device_register(&usb_dev);
103}
104
b0ea26e1
SS
105#ifdef CONFIG_ARCH_DAVINCI_DA8XX
106static struct resource da8xx_usb20_resources[] = {
107 {
108 .start = DA8XX_USB0_BASE,
109 .end = DA8XX_USB0_BASE + SZ_64K - 1,
110 .flags = IORESOURCE_MEM,
111 },
112 {
113 .start = IRQ_DA8XX_USB_INT,
114 .flags = IORESOURCE_IRQ,
115 },
116};
117
118int __init da8xx_register_usb20(unsigned mA, unsigned potpgt)
119{
120 usb_data.clock = "usb20";
121 usb_data.power = mA > 510 ? 255 : mA / 2;
122 usb_data.potpgt = (potpgt + 1) / 2;
123
124 usb_dev.resource = da8xx_usb20_resources;
125 usb_dev.num_resources = ARRAY_SIZE(da8xx_usb20_resources);
126
127 return platform_device_register(&usb_dev);
128}
129#endif /* CONFIG_DAVINCI_DA8XX */
130
cece6e5a
DB
131#else
132
355fb4e3 133void __init davinci_setup_usb(unsigned mA, unsigned potpgt_ms)
cece6e5a
DB
134{
135}
136
b0ea26e1
SS
137#ifdef CONFIG_ARCH_DAVINCI_DA8XX
138int __init da8xx_register_usb20(unsigned mA, unsigned potpgt)
139{
140 return 0;
141}
142#endif
143
cece6e5a
DB
144#endif /* CONFIG_USB_MUSB_HDRC */
145
e5d3d252
SS
146#ifdef CONFIG_ARCH_DAVINCI_DA8XX
147static struct resource da8xx_usb11_resources[] = {
148 [0] = {
149 .start = DA8XX_USB1_BASE,
150 .end = DA8XX_USB1_BASE + SZ_4K - 1,
151 .flags = IORESOURCE_MEM,
152 },
153 [1] = {
154 .start = IRQ_DA8XX_IRQN,
155 .end = IRQ_DA8XX_IRQN,
156 .flags = IORESOURCE_IRQ,
157 },
158};
159
160static u64 da8xx_usb11_dma_mask = DMA_BIT_MASK(32);
161
162static struct platform_device da8xx_usb11_device = {
163 .name = "ohci",
164 .id = 0,
165 .dev = {
166 .dma_mask = &da8xx_usb11_dma_mask,
167 .coherent_dma_mask = DMA_BIT_MASK(32),
168 },
169 .num_resources = ARRAY_SIZE(da8xx_usb11_resources),
170 .resource = da8xx_usb11_resources,
171};
172
173int __init da8xx_register_usb11(struct da8xx_ohci_root_hub *pdata)
174{
175 da8xx_usb11_device.dev.platform_data = pdata;
176 return platform_device_register(&da8xx_usb11_device);
177}
178#endif /* CONFIG_DAVINCI_DA8XX */
This page took 0.166473 seconds and 5 git commands to generate.