blob: 91f9abbd3250bf981faa1e583de43d4d1f9c3490 [file] [log] [blame]
Eduardo Valentin44ec9a32008-07-03 12:24:40 +03001/*
2 * linux/arch/arm/mach-omap1/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 */
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -080013#include <linux/ioport.h>
Eduardo Valentin44ec9a32008-07-03 12:24:40 +030014#include <linux/module.h>
15#include <linux/init.h>
16#include <linux/clk.h>
17#include <linux/err.h>
18#include <linux/io.h>
19#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Eduardo Valentin44ec9a32008-07-03 12:24:40 +030021
Tony Lindgrendd7667a2009-01-15 13:09:51 +020022#include <mach/irqs.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070023#include <plat/dma.h>
24#include <plat/mux.h>
25#include <plat/cpu.h>
26#include <plat/mcbsp.h>
Eduardo Valentin44ec9a32008-07-03 12:24:40 +030027
28#define DPS_RSTCT2_PER_EN (1 << 0)
29#define DSP_RSTCT2_WD_PER_EN (1 << 1)
30
Russell Kingb820ce42009-01-23 10:26:46 +000031static int dsp_use;
32static struct clk *api_clk;
33static struct clk *dsp_clk;
Jarkko Nikula40246e02011-09-26 10:45:38 +030034static struct platform_device **omap_mcbsp_devices;
Eduardo Valentin44ec9a32008-07-03 12:24:40 +030035
Eduardo Valentin44ec9a32008-07-03 12:24:40 +030036static void omap1_mcbsp_request(unsigned int id)
37{
38 /*
39 * On 1510, 1610 and 1710, McBSP1 and McBSP3
40 * are DSP public peripherals.
41 */
Jarkko Nikulafd1ee392011-07-01 08:52:27 +000042 if (id == 0 || id == 2) {
Russell Kingb820ce42009-01-23 10:26:46 +000043 if (dsp_use++ == 0) {
Arun KSd53eb732009-04-23 21:11:07 -060044 api_clk = clk_get(NULL, "api_ck");
45 dsp_clk = clk_get(NULL, "dsp_ck");
Russell Kingb820ce42009-01-23 10:26:46 +000046 if (!IS_ERR(api_clk) && !IS_ERR(dsp_clk)) {
47 clk_enable(api_clk);
48 clk_enable(dsp_clk);
49
Russell Kingb820ce42009-01-23 10:26:46 +000050 /*
51 * DSP external peripheral reset
52 * FIXME: This should be moved to dsp code
53 */
54 __raw_writew(__raw_readw(DSP_RSTCT2) | DPS_RSTCT2_PER_EN |
55 DSP_RSTCT2_WD_PER_EN, DSP_RSTCT2);
56 }
57 }
Eduardo Valentin44ec9a32008-07-03 12:24:40 +030058 }
59}
60
61static void omap1_mcbsp_free(unsigned int id)
62{
Jarkko Nikulafd1ee392011-07-01 08:52:27 +000063 if (id == 0 || id == 2) {
Russell Kingb820ce42009-01-23 10:26:46 +000064 if (--dsp_use == 0) {
Russell Kingb820ce42009-01-23 10:26:46 +000065 if (!IS_ERR(api_clk)) {
66 clk_disable(api_clk);
67 clk_put(api_clk);
68 }
69 if (!IS_ERR(dsp_clk)) {
70 clk_disable(dsp_clk);
71 clk_put(dsp_clk);
72 }
73 }
74 }
Eduardo Valentin44ec9a32008-07-03 12:24:40 +030075}
76
77static struct omap_mcbsp_ops omap1_mcbsp_ops = {
Eduardo Valentin44ec9a32008-07-03 12:24:40 +030078 .request = omap1_mcbsp_request,
79 .free = omap1_mcbsp_free,
80};
81
Jarkko Nikula6e574122011-09-26 10:45:47 +030082#define OMAP7XX_MCBSP1_BASE 0xfffb1000
83#define OMAP7XX_MCBSP2_BASE 0xfffb1800
84
85#define OMAP1510_MCBSP1_BASE 0xe1011800
86#define OMAP1510_MCBSP2_BASE 0xfffb1000
87#define OMAP1510_MCBSP3_BASE 0xe1017000
88
89#define OMAP1610_MCBSP1_BASE 0xe1011800
90#define OMAP1610_MCBSP2_BASE 0xfffb1000
91#define OMAP1610_MCBSP3_BASE 0xe1017000
92
Alistair Buxtonbf1cb7e2009-09-22 06:49:35 +010093#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -080094struct resource omap7xx_mcbsp_res[][6] = {
95 {
96 {
97 .start = OMAP7XX_MCBSP1_BASE,
98 .end = OMAP7XX_MCBSP1_BASE + SZ_256,
99 .flags = IORESOURCE_MEM,
100 },
101 {
102 .name = "rx",
103 .start = INT_7XX_McBSP1RX,
104 .flags = IORESOURCE_IRQ,
105 },
106 {
107 .name = "tx",
108 .start = INT_7XX_McBSP1TX,
109 .flags = IORESOURCE_IRQ,
110 },
111 {
112 .name = "rx",
113 .start = OMAP_DMA_MCBSP1_RX,
114 .flags = IORESOURCE_DMA,
115 },
116 {
117 .name = "tx",
118 .start = OMAP_DMA_MCBSP1_TX,
119 .flags = IORESOURCE_DMA,
120 },
121 },
122 {
123 {
124 .start = OMAP7XX_MCBSP2_BASE,
125 .end = OMAP7XX_MCBSP2_BASE + SZ_256,
126 .flags = IORESOURCE_MEM,
127 },
128 {
129 .name = "rx",
130 .start = INT_7XX_McBSP2RX,
131 .flags = IORESOURCE_IRQ,
132 },
133 {
134 .name = "tx",
135 .start = INT_7XX_McBSP2TX,
136 .flags = IORESOURCE_IRQ,
137 },
138 {
139 .name = "rx",
140 .start = OMAP_DMA_MCBSP3_RX,
141 .flags = IORESOURCE_DMA,
142 },
143 {
144 .name = "tx",
145 .start = OMAP_DMA_MCBSP3_TX,
146 .flags = IORESOURCE_DMA,
147 },
148 },
149};
150
Paul Walmsleye7916742011-03-04 22:36:46 +0000151#define omap7xx_mcbsp_res_0 omap7xx_mcbsp_res[0]
152
Alistair Buxton7c006922009-09-22 10:02:58 +0100153static struct omap_mcbsp_platform_data omap7xx_mcbsp_pdata[] = {
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300154 {
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300155 .ops = &omap1_mcbsp_ops,
156 },
157 {
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300158 .ops = &omap1_mcbsp_ops,
159 },
160};
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800161#define OMAP7XX_MCBSP_RES_SZ ARRAY_SIZE(omap7xx_mcbsp_res[1])
162#define OMAP7XX_MCBSP_COUNT ARRAY_SIZE(omap7xx_mcbsp_res)
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300163#else
Paul Walmsleye7916742011-03-04 22:36:46 +0000164#define omap7xx_mcbsp_res_0 NULL
Alistair Buxton7c006922009-09-22 10:02:58 +0100165#define omap7xx_mcbsp_pdata NULL
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800166#define OMAP7XX_MCBSP_RES_SZ 0
167#define OMAP7XX_MCBSP_COUNT 0
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300168#endif
169
170#ifdef CONFIG_ARCH_OMAP15XX
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800171struct resource omap15xx_mcbsp_res[][6] = {
172 {
173 {
174 .start = OMAP1510_MCBSP1_BASE,
175 .end = OMAP1510_MCBSP1_BASE + SZ_256,
176 .flags = IORESOURCE_MEM,
177 },
178 {
179 .name = "rx",
180 .start = INT_McBSP1RX,
181 .flags = IORESOURCE_IRQ,
182 },
183 {
184 .name = "tx",
185 .start = INT_McBSP1TX,
186 .flags = IORESOURCE_IRQ,
187 },
188 {
189 .name = "rx",
190 .start = OMAP_DMA_MCBSP1_RX,
191 .flags = IORESOURCE_DMA,
192 },
193 {
194 .name = "tx",
195 .start = OMAP_DMA_MCBSP1_TX,
196 .flags = IORESOURCE_DMA,
197 },
198 },
199 {
200 {
201 .start = OMAP1510_MCBSP2_BASE,
202 .end = OMAP1510_MCBSP2_BASE + SZ_256,
203 .flags = IORESOURCE_MEM,
204 },
205 {
206 .name = "rx",
207 .start = INT_1510_SPI_RX,
208 .flags = IORESOURCE_IRQ,
209 },
210 {
211 .name = "tx",
212 .start = INT_1510_SPI_TX,
213 .flags = IORESOURCE_IRQ,
214 },
215 {
216 .name = "rx",
217 .start = OMAP_DMA_MCBSP2_RX,
218 .flags = IORESOURCE_DMA,
219 },
220 {
221 .name = "tx",
222 .start = OMAP_DMA_MCBSP2_TX,
223 .flags = IORESOURCE_DMA,
224 },
225 },
226 {
227 {
228 .start = OMAP1510_MCBSP3_BASE,
229 .end = OMAP1510_MCBSP3_BASE + SZ_256,
230 .flags = IORESOURCE_MEM,
231 },
232 {
233 .name = "rx",
234 .start = INT_McBSP3RX,
235 .flags = IORESOURCE_IRQ,
236 },
237 {
238 .name = "tx",
239 .start = INT_McBSP3TX,
240 .flags = IORESOURCE_IRQ,
241 },
242 {
243 .name = "rx",
244 .start = OMAP_DMA_MCBSP3_RX,
245 .flags = IORESOURCE_DMA,
246 },
247 {
248 .name = "tx",
249 .start = OMAP_DMA_MCBSP3_TX,
250 .flags = IORESOURCE_DMA,
251 },
252 },
253};
254
Paul Walmsleye7916742011-03-04 22:36:46 +0000255#define omap15xx_mcbsp_res_0 omap15xx_mcbsp_res[0]
256
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300257static struct omap_mcbsp_platform_data omap15xx_mcbsp_pdata[] = {
258 {
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300259 .ops = &omap1_mcbsp_ops,
Stanley.Miao06151152009-01-29 08:57:12 -0800260 },
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300261 {
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300262 .ops = &omap1_mcbsp_ops,
263 },
264 {
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300265 .ops = &omap1_mcbsp_ops,
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300266 },
267};
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800268#define OMAP15XX_MCBSP_RES_SZ ARRAY_SIZE(omap15xx_mcbsp_res[1])
269#define OMAP15XX_MCBSP_COUNT ARRAY_SIZE(omap15xx_mcbsp_res)
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300270#else
Paul Walmsleye7916742011-03-04 22:36:46 +0000271#define omap15xx_mcbsp_res_0 NULL
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300272#define omap15xx_mcbsp_pdata NULL
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800273#define OMAP15XX_MCBSP_RES_SZ 0
274#define OMAP15XX_MCBSP_COUNT 0
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300275#endif
276
277#ifdef CONFIG_ARCH_OMAP16XX
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800278struct resource omap16xx_mcbsp_res[][6] = {
279 {
280 {
281 .start = OMAP1610_MCBSP1_BASE,
282 .end = OMAP1610_MCBSP1_BASE + SZ_256,
283 .flags = IORESOURCE_MEM,
284 },
285 {
286 .name = "rx",
287 .start = INT_McBSP1RX,
288 .flags = IORESOURCE_IRQ,
289 },
290 {
291 .name = "tx",
292 .start = INT_McBSP1TX,
293 .flags = IORESOURCE_IRQ,
294 },
295 {
296 .name = "rx",
297 .start = OMAP_DMA_MCBSP1_RX,
298 .flags = IORESOURCE_DMA,
299 },
300 {
301 .name = "tx",
302 .start = OMAP_DMA_MCBSP1_TX,
303 .flags = IORESOURCE_DMA,
304 },
305 },
306 {
307 {
308 .start = OMAP1610_MCBSP2_BASE,
309 .end = OMAP1610_MCBSP2_BASE + SZ_256,
310 .flags = IORESOURCE_MEM,
311 },
312 {
313 .name = "rx",
314 .start = INT_1610_McBSP2_RX,
315 .flags = IORESOURCE_IRQ,
316 },
317 {
318 .name = "tx",
319 .start = INT_1610_McBSP2_TX,
320 .flags = IORESOURCE_IRQ,
321 },
322 {
323 .name = "rx",
324 .start = OMAP_DMA_MCBSP2_RX,
325 .flags = IORESOURCE_DMA,
326 },
327 {
328 .name = "tx",
329 .start = OMAP_DMA_MCBSP2_TX,
330 .flags = IORESOURCE_DMA,
331 },
332 },
333 {
334 {
335 .start = OMAP1610_MCBSP3_BASE,
336 .end = OMAP1610_MCBSP3_BASE + SZ_256,
337 .flags = IORESOURCE_MEM,
338 },
339 {
340 .name = "rx",
341 .start = INT_McBSP3RX,
342 .flags = IORESOURCE_IRQ,
343 },
344 {
345 .name = "tx",
346 .start = INT_McBSP3TX,
347 .flags = IORESOURCE_IRQ,
348 },
349 {
350 .name = "rx",
351 .start = OMAP_DMA_MCBSP3_RX,
352 .flags = IORESOURCE_DMA,
353 },
354 {
355 .name = "tx",
356 .start = OMAP_DMA_MCBSP3_TX,
357 .flags = IORESOURCE_DMA,
358 },
359 },
360};
361
Paul Walmsleye7916742011-03-04 22:36:46 +0000362#define omap16xx_mcbsp_res_0 omap16xx_mcbsp_res[0]
363
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300364static struct omap_mcbsp_platform_data omap16xx_mcbsp_pdata[] = {
365 {
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300366 .ops = &omap1_mcbsp_ops,
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300367 },
368 {
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300369 .ops = &omap1_mcbsp_ops,
370 },
371 {
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300372 .ops = &omap1_mcbsp_ops,
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300373 },
374};
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800375#define OMAP16XX_MCBSP_RES_SZ ARRAY_SIZE(omap16xx_mcbsp_res[1])
376#define OMAP16XX_MCBSP_COUNT ARRAY_SIZE(omap16xx_mcbsp_res)
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300377#else
Paul Walmsleye7916742011-03-04 22:36:46 +0000378#define omap16xx_mcbsp_res_0 NULL
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300379#define omap16xx_mcbsp_pdata NULL
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800380#define OMAP16XX_MCBSP_RES_SZ 0
381#define OMAP16XX_MCBSP_COUNT 0
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300382#endif
383
Jarkko Nikula40246e02011-09-26 10:45:38 +0300384static void omap_mcbsp_register_board_cfg(struct resource *res, int res_count,
385 struct omap_mcbsp_platform_data *config, int size)
386{
387 int i;
388
389 omap_mcbsp_devices = kzalloc(size * sizeof(struct platform_device *),
390 GFP_KERNEL);
391 if (!omap_mcbsp_devices) {
392 printk(KERN_ERR "Could not register McBSP devices\n");
393 return;
394 }
395
396 for (i = 0; i < size; i++) {
397 struct platform_device *new_mcbsp;
398 int ret;
399
400 new_mcbsp = platform_device_alloc("omap-mcbsp", i + 1);
401 if (!new_mcbsp)
402 continue;
403 platform_device_add_resources(new_mcbsp, &res[i * res_count],
404 res_count);
Jarkko Nikulacdc715142011-09-26 10:45:39 +0300405 config[i].reg_size = 2;
406 config[i].reg_step = 2;
Jarkko Nikula40246e02011-09-26 10:45:38 +0300407 new_mcbsp->dev.platform_data = &config[i];
408 ret = platform_device_add(new_mcbsp);
409 if (ret) {
410 platform_device_put(new_mcbsp);
411 continue;
412 }
413 omap_mcbsp_devices[i] = new_mcbsp;
414 }
415}
416
Aaro Koskinene6f16822010-11-18 19:59:47 +0200417static int __init omap1_mcbsp_init(void)
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300418{
Tony Lindgren7f9187c2010-12-10 09:46:24 -0800419 if (!cpu_class_is_omap1())
420 return -ENODEV;
421
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800422 if (cpu_is_omap7xx())
423 omap_mcbsp_count = OMAP7XX_MCBSP_COUNT;
424 else if (cpu_is_omap15xx())
425 omap_mcbsp_count = OMAP15XX_MCBSP_COUNT;
426 else if (cpu_is_omap16xx())
427 omap_mcbsp_count = OMAP16XX_MCBSP_COUNT;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300428
429 mcbsp_ptr = kzalloc(omap_mcbsp_count * sizeof(struct omap_mcbsp *),
430 GFP_KERNEL);
431 if (!mcbsp_ptr)
432 return -ENOMEM;
433
Alistair Buxtonbf1cb7e2009-09-22 06:49:35 +0100434 if (cpu_is_omap7xx())
Paul Walmsleye7916742011-03-04 22:36:46 +0000435 omap_mcbsp_register_board_cfg(omap7xx_mcbsp_res_0,
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800436 OMAP7XX_MCBSP_RES_SZ,
437 omap7xx_mcbsp_pdata,
438 OMAP7XX_MCBSP_COUNT);
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300439
440 if (cpu_is_omap15xx())
Paul Walmsleye7916742011-03-04 22:36:46 +0000441 omap_mcbsp_register_board_cfg(omap15xx_mcbsp_res_0,
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800442 OMAP15XX_MCBSP_RES_SZ,
443 omap15xx_mcbsp_pdata,
444 OMAP15XX_MCBSP_COUNT);
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300445
446 if (cpu_is_omap16xx())
Paul Walmsleye7916742011-03-04 22:36:46 +0000447 omap_mcbsp_register_board_cfg(omap16xx_mcbsp_res_0,
Kishon Vijay Abraham I3cf32bb2011-02-24 12:51:45 -0800448 OMAP16XX_MCBSP_RES_SZ,
449 omap16xx_mcbsp_pdata,
450 OMAP16XX_MCBSP_COUNT);
Eduardo Valentin44ec9a32008-07-03 12:24:40 +0300451
452 return omap_mcbsp_init();
453}
454
455arch_initcall(omap1_mcbsp_init);