Merge branch 'msm-mmc_sdcc' of git://codeaurora.org/quic/kernel/dwalker/linux-msm
[deliverable/linux.git] / arch / arm / mach-omap2 / mcbsp.c
CommitLineData
78673bc8
EV
1/*
2 * linux/arch/arm/mach-omap2/mcbsp.c
3 *
4 * Copyright (C) 2008 Instituto Nokia de Tecnologia
5 * Contact: Eduardo Valentin <eduardo.valentin@indt.org.br>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * Multichannel mode not supported.
12 */
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/clk.h>
16#include <linux/err.h>
17#include <linux/io.h>
18#include <linux/platform_device.h>
5a0e3ad6 19#include <linux/slab.h>
78673bc8 20
dd7667aa 21#include <mach/irqs.h>
ce491cf8
TL
22#include <plat/dma.h>
23#include <plat/mux.h>
24#include <plat/cpu.h>
25#include <plat/mcbsp.h>
78673bc8 26
78673bc8
EV
27static void omap2_mcbsp2_mux_setup(void)
28{
29 omap_cfg_reg(Y15_24XX_MCBSP2_CLKX);
30 omap_cfg_reg(R14_24XX_MCBSP2_FSX);
31 omap_cfg_reg(W15_24XX_MCBSP2_DR);
32 omap_cfg_reg(V15_24XX_MCBSP2_DX);
33 omap_cfg_reg(V14_24XX_GPIO117);
34 /*
35 * TODO: Need to add MUX settings for OMAP 2430 SDP
36 */
37}
38
39static void omap2_mcbsp_request(unsigned int id)
40{
41 if (cpu_is_omap2420() && (id == OMAP_MCBSP2))
42 omap2_mcbsp2_mux_setup();
43}
44
78673bc8
EV
45static struct omap_mcbsp_ops omap2_mcbsp_ops = {
46 .request = omap2_mcbsp_request,
78673bc8
EV
47};
48
05228c35
JN
49#ifdef CONFIG_ARCH_OMAP2420
50static struct omap_mcbsp_platform_data omap2420_mcbsp_pdata[] = {
78673bc8 51 {
65846909 52 .phys_base = OMAP24XX_MCBSP1_BASE,
78673bc8
EV
53 .dma_rx_sync = OMAP24XX_DMA_MCBSP1_RX,
54 .dma_tx_sync = OMAP24XX_DMA_MCBSP1_TX,
55 .rx_irq = INT_24XX_MCBSP1_IRQ_RX,
56 .tx_irq = INT_24XX_MCBSP1_IRQ_TX,
57 .ops = &omap2_mcbsp_ops,
78673bc8
EV
58 },
59 {
65846909 60 .phys_base = OMAP24XX_MCBSP2_BASE,
78673bc8
EV
61 .dma_rx_sync = OMAP24XX_DMA_MCBSP2_RX,
62 .dma_tx_sync = OMAP24XX_DMA_MCBSP2_TX,
63 .rx_irq = INT_24XX_MCBSP2_IRQ_RX,
64 .tx_irq = INT_24XX_MCBSP2_IRQ_TX,
65 .ops = &omap2_mcbsp_ops,
78673bc8
EV
66 },
67};
05228c35 68#define OMAP2420_MCBSP_PDATA_SZ ARRAY_SIZE(omap2420_mcbsp_pdata)
c8c99699 69#define OMAP2420_MCBSP_REG_NUM (OMAP_MCBSP_REG_RCCR / sizeof(u32) + 1)
78673bc8 70#else
05228c35
JN
71#define omap2420_mcbsp_pdata NULL
72#define OMAP2420_MCBSP_PDATA_SZ 0
c8c99699 73#define OMAP2420_MCBSP_REG_NUM 0
05228c35
JN
74#endif
75
76#ifdef CONFIG_ARCH_OMAP2430
77static struct omap_mcbsp_platform_data omap2430_mcbsp_pdata[] = {
78 {
79 .phys_base = OMAP24XX_MCBSP1_BASE,
80 .dma_rx_sync = OMAP24XX_DMA_MCBSP1_RX,
81 .dma_tx_sync = OMAP24XX_DMA_MCBSP1_TX,
82 .rx_irq = INT_24XX_MCBSP1_IRQ_RX,
83 .tx_irq = INT_24XX_MCBSP1_IRQ_TX,
84 .ops = &omap2_mcbsp_ops,
05228c35
JN
85 },
86 {
87 .phys_base = OMAP24XX_MCBSP2_BASE,
88 .dma_rx_sync = OMAP24XX_DMA_MCBSP2_RX,
89 .dma_tx_sync = OMAP24XX_DMA_MCBSP2_TX,
90 .rx_irq = INT_24XX_MCBSP2_IRQ_RX,
91 .tx_irq = INT_24XX_MCBSP2_IRQ_TX,
92 .ops = &omap2_mcbsp_ops,
05228c35
JN
93 },
94 {
95 .phys_base = OMAP2430_MCBSP3_BASE,
96 .dma_rx_sync = OMAP24XX_DMA_MCBSP3_RX,
97 .dma_tx_sync = OMAP24XX_DMA_MCBSP3_TX,
98 .rx_irq = INT_24XX_MCBSP3_IRQ_RX,
99 .tx_irq = INT_24XX_MCBSP3_IRQ_TX,
100 .ops = &omap2_mcbsp_ops,
05228c35
JN
101 },
102 {
103 .phys_base = OMAP2430_MCBSP4_BASE,
104 .dma_rx_sync = OMAP24XX_DMA_MCBSP4_RX,
105 .dma_tx_sync = OMAP24XX_DMA_MCBSP4_TX,
106 .rx_irq = INT_24XX_MCBSP4_IRQ_RX,
107 .tx_irq = INT_24XX_MCBSP4_IRQ_TX,
108 .ops = &omap2_mcbsp_ops,
05228c35
JN
109 },
110 {
111 .phys_base = OMAP2430_MCBSP5_BASE,
112 .dma_rx_sync = OMAP24XX_DMA_MCBSP5_RX,
113 .dma_tx_sync = OMAP24XX_DMA_MCBSP5_TX,
114 .rx_irq = INT_24XX_MCBSP5_IRQ_RX,
115 .tx_irq = INT_24XX_MCBSP5_IRQ_TX,
116 .ops = &omap2_mcbsp_ops,
05228c35
JN
117 },
118};
119#define OMAP2430_MCBSP_PDATA_SZ ARRAY_SIZE(omap2430_mcbsp_pdata)
c8c99699 120#define OMAP2430_MCBSP_REG_NUM (OMAP_MCBSP_REG_RCCR / sizeof(u32) + 1)
05228c35
JN
121#else
122#define omap2430_mcbsp_pdata NULL
123#define OMAP2430_MCBSP_PDATA_SZ 0
c8c99699 124#define OMAP2430_MCBSP_REG_NUM 0
78673bc8
EV
125#endif
126
a8eb7ca0 127#ifdef CONFIG_ARCH_OMAP3
78673bc8
EV
128static struct omap_mcbsp_platform_data omap34xx_mcbsp_pdata[] = {
129 {
65846909 130 .phys_base = OMAP34XX_MCBSP1_BASE,
78673bc8
EV
131 .dma_rx_sync = OMAP24XX_DMA_MCBSP1_RX,
132 .dma_tx_sync = OMAP24XX_DMA_MCBSP1_TX,
133 .rx_irq = INT_24XX_MCBSP1_IRQ_RX,
134 .tx_irq = INT_24XX_MCBSP1_IRQ_TX,
135 .ops = &omap2_mcbsp_ops,
7e4f943b 136 .buffer_size = 0x6F,
78673bc8
EV
137 },
138 {
65846909 139 .phys_base = OMAP34XX_MCBSP2_BASE,
d912fa92 140 .phys_base_st = OMAP34XX_MCBSP2_ST_BASE,
78673bc8
EV
141 .dma_rx_sync = OMAP24XX_DMA_MCBSP2_RX,
142 .dma_tx_sync = OMAP24XX_DMA_MCBSP2_TX,
143 .rx_irq = INT_24XX_MCBSP2_IRQ_RX,
144 .tx_irq = INT_24XX_MCBSP2_IRQ_TX,
145 .ops = &omap2_mcbsp_ops,
a1a56f5f 146 .buffer_size = 0x3FF,
78673bc8 147 },
9c8e3a0f
CS
148 {
149 .phys_base = OMAP34XX_MCBSP3_BASE,
d912fa92 150 .phys_base_st = OMAP34XX_MCBSP3_ST_BASE,
9c8e3a0f
CS
151 .dma_rx_sync = OMAP24XX_DMA_MCBSP3_RX,
152 .dma_tx_sync = OMAP24XX_DMA_MCBSP3_TX,
153 .rx_irq = INT_24XX_MCBSP3_IRQ_RX,
154 .tx_irq = INT_24XX_MCBSP3_IRQ_TX,
155 .ops = &omap2_mcbsp_ops,
7e4f943b 156 .buffer_size = 0x6F,
9c8e3a0f
CS
157 },
158 {
159 .phys_base = OMAP34XX_MCBSP4_BASE,
160 .dma_rx_sync = OMAP24XX_DMA_MCBSP4_RX,
161 .dma_tx_sync = OMAP24XX_DMA_MCBSP4_TX,
162 .rx_irq = INT_24XX_MCBSP4_IRQ_RX,
163 .tx_irq = INT_24XX_MCBSP4_IRQ_TX,
164 .ops = &omap2_mcbsp_ops,
7e4f943b 165 .buffer_size = 0x6F,
9c8e3a0f
CS
166 },
167 {
168 .phys_base = OMAP34XX_MCBSP5_BASE,
169 .dma_rx_sync = OMAP24XX_DMA_MCBSP5_RX,
170 .dma_tx_sync = OMAP24XX_DMA_MCBSP5_TX,
171 .rx_irq = INT_24XX_MCBSP5_IRQ_RX,
172 .tx_irq = INT_24XX_MCBSP5_IRQ_TX,
173 .ops = &omap2_mcbsp_ops,
7e4f943b 174 .buffer_size = 0x6F,
9c8e3a0f 175 },
78673bc8
EV
176};
177#define OMAP34XX_MCBSP_PDATA_SZ ARRAY_SIZE(omap34xx_mcbsp_pdata)
c8c99699 178#define OMAP34XX_MCBSP_REG_NUM (OMAP_MCBSP_REG_RCCR / sizeof(u32) + 1)
78673bc8
EV
179#else
180#define omap34xx_mcbsp_pdata NULL
181#define OMAP34XX_MCBSP_PDATA_SZ 0
c8c99699 182#define OMAP34XX_MCBSP_REG_NUM 0
78673bc8
EV
183#endif
184
a5b92cc3
SR
185static struct omap_mcbsp_platform_data omap44xx_mcbsp_pdata[] = {
186 {
187 .phys_base = OMAP44XX_MCBSP1_BASE,
188 .dma_rx_sync = OMAP44XX_DMA_MCBSP1_RX,
189 .dma_tx_sync = OMAP44XX_DMA_MCBSP1_TX,
9319b9da 190 .tx_irq = OMAP44XX_IRQ_MCBSP1,
a5b92cc3
SR
191 .ops = &omap2_mcbsp_ops,
192 },
193 {
194 .phys_base = OMAP44XX_MCBSP2_BASE,
195 .dma_rx_sync = OMAP44XX_DMA_MCBSP2_RX,
196 .dma_tx_sync = OMAP44XX_DMA_MCBSP2_TX,
9319b9da 197 .tx_irq = OMAP44XX_IRQ_MCBSP2,
a5b92cc3
SR
198 .ops = &omap2_mcbsp_ops,
199 },
200 {
201 .phys_base = OMAP44XX_MCBSP3_BASE,
202 .dma_rx_sync = OMAP44XX_DMA_MCBSP3_RX,
203 .dma_tx_sync = OMAP44XX_DMA_MCBSP3_TX,
9319b9da 204 .tx_irq = OMAP44XX_IRQ_MCBSP3,
a5b92cc3
SR
205 .ops = &omap2_mcbsp_ops,
206 },
207 {
208 .phys_base = OMAP44XX_MCBSP4_BASE,
209 .dma_rx_sync = OMAP44XX_DMA_MCBSP4_RX,
210 .dma_tx_sync = OMAP44XX_DMA_MCBSP4_TX,
9319b9da 211 .tx_irq = OMAP44XX_IRQ_MCBSP4,
a5b92cc3
SR
212 .ops = &omap2_mcbsp_ops,
213 },
214};
215#define OMAP44XX_MCBSP_PDATA_SZ ARRAY_SIZE(omap44xx_mcbsp_pdata)
c8c99699 216#define OMAP44XX_MCBSP_REG_NUM (OMAP_MCBSP_REG_RCCR / sizeof(u32) + 1)
a5b92cc3 217
b4b58f58 218static int __init omap2_mcbsp_init(void)
78673bc8 219{
c8c99699 220 if (cpu_is_omap2420()) {
05228c35 221 omap_mcbsp_count = OMAP2420_MCBSP_PDATA_SZ;
c8c99699
JK
222 omap_mcbsp_cache_size = OMAP2420_MCBSP_REG_NUM * sizeof(u16);
223 } else if (cpu_is_omap2430()) {
05228c35 224 omap_mcbsp_count = OMAP2430_MCBSP_PDATA_SZ;
c8c99699
JK
225 omap_mcbsp_cache_size = OMAP2430_MCBSP_REG_NUM * sizeof(u32);
226 } else if (cpu_is_omap34xx()) {
b4b58f58 227 omap_mcbsp_count = OMAP34XX_MCBSP_PDATA_SZ;
c8c99699
JK
228 omap_mcbsp_cache_size = OMAP34XX_MCBSP_REG_NUM * sizeof(u32);
229 } else if (cpu_is_omap44xx()) {
a5b92cc3 230 omap_mcbsp_count = OMAP44XX_MCBSP_PDATA_SZ;
c8c99699
JK
231 omap_mcbsp_cache_size = OMAP44XX_MCBSP_REG_NUM * sizeof(u32);
232 }
b4b58f58
CS
233
234 mcbsp_ptr = kzalloc(omap_mcbsp_count * sizeof(struct omap_mcbsp *),
235 GFP_KERNEL);
236 if (!mcbsp_ptr)
237 return -ENOMEM;
238
05228c35
JN
239 if (cpu_is_omap2420())
240 omap_mcbsp_register_board_cfg(omap2420_mcbsp_pdata,
241 OMAP2420_MCBSP_PDATA_SZ);
242 if (cpu_is_omap2430())
243 omap_mcbsp_register_board_cfg(omap2430_mcbsp_pdata,
244 OMAP2430_MCBSP_PDATA_SZ);
9c8e3a0f
CS
245 if (cpu_is_omap34xx())
246 omap_mcbsp_register_board_cfg(omap34xx_mcbsp_pdata,
247 OMAP34XX_MCBSP_PDATA_SZ);
a5b92cc3
SR
248 if (cpu_is_omap44xx())
249 omap_mcbsp_register_board_cfg(omap44xx_mcbsp_pdata,
250 OMAP44XX_MCBSP_PDATA_SZ);
78673bc8 251
78673bc8
EV
252 return omap_mcbsp_init();
253}
254arch_initcall(omap2_mcbsp_init);
This page took 0.175312 seconds and 5 git commands to generate.