blob: 7e669c9744d830c5c687671189346f272e8d260f [file] [log] [blame]
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001/*
2 * linux/arch/arm/plat-omap/mcbsp.c
3 *
4 * Copyright (C) 2004 Nokia Corporation
5 * Author: Samuel Ortiz <samuel.ortiz@nokia.com>
6 *
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 * Multichannel mode not supported.
13 */
14
15#include <linux/module.h>
16#include <linux/init.h>
17#include <linux/device.h>
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +030018#include <linux/platform_device.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010019#include <linux/wait.h>
20#include <linux/completion.h>
21#include <linux/interrupt.h>
22#include <linux/err.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000023#include <linux/clk.h>
Tony Lindgren04fbf6a2007-02-12 10:50:53 -080024#include <linux/delay.h>
Eduardo Valentinfb78d802008-07-03 12:24:39 +030025#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010027
Tony Lindgrence491cf2009-10-20 09:40:47 -070028#include <plat/dma.h>
29#include <plat/mcbsp.h>
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010030
Eero Nurkkalad912fa92010-02-22 12:21:11 +000031#include "../mach-omap2/cm-regbits-34xx.h"
32
Chandra Shekharb4b58f52008-10-08 10:01:39 +030033struct omap_mcbsp **mcbsp_ptr;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080034int omap_mcbsp_count, omap_mcbsp_cache_size;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +030035
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080036void omap_mcbsp_write(struct omap_mcbsp *mcbsp, u16 reg, u32 val)
Chandra Shekharb4b58f52008-10-08 10:01:39 +030037{
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080038 if (cpu_class_is_omap1()) {
39 ((u16 *)mcbsp->reg_cache)[reg / sizeof(u16)] = (u16)val;
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080040 __raw_writew((u16)val, mcbsp->io_base + reg);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080041 } else if (cpu_is_omap2420()) {
42 ((u16 *)mcbsp->reg_cache)[reg / sizeof(u32)] = (u16)val;
43 __raw_writew((u16)val, mcbsp->io_base + reg);
44 } else {
45 ((u32 *)mcbsp->reg_cache)[reg / sizeof(u32)] = val;
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080046 __raw_writel(val, mcbsp->io_base + reg);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080047 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +030048}
49
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080050int omap_mcbsp_read(struct omap_mcbsp *mcbsp, u16 reg, bool from_cache)
Chandra Shekharb4b58f52008-10-08 10:01:39 +030051{
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080052 if (cpu_class_is_omap1()) {
53 return !from_cache ? __raw_readw(mcbsp->io_base + reg) :
54 ((u16 *)mcbsp->reg_cache)[reg / sizeof(u16)];
55 } else if (cpu_is_omap2420()) {
56 return !from_cache ? __raw_readw(mcbsp->io_base + reg) :
57 ((u16 *)mcbsp->reg_cache)[reg / sizeof(u32)];
58 } else {
59 return !from_cache ? __raw_readl(mcbsp->io_base + reg) :
60 ((u32 *)mcbsp->reg_cache)[reg / sizeof(u32)];
61 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +030062}
63
Eero Nurkkalad912fa92010-02-22 12:21:11 +000064#ifdef CONFIG_ARCH_OMAP3
65void omap_mcbsp_st_write(struct omap_mcbsp *mcbsp, u16 reg, u32 val)
66{
67 __raw_writel(val, mcbsp->st_data->io_base_st + reg);
68}
69
70int omap_mcbsp_st_read(struct omap_mcbsp *mcbsp, u16 reg)
71{
72 return __raw_readl(mcbsp->st_data->io_base_st + reg);
73}
74#endif
75
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080076#define MCBSP_READ(mcbsp, reg) \
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080077 omap_mcbsp_read(mcbsp, OMAP_MCBSP_REG_##reg, 0)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080078#define MCBSP_WRITE(mcbsp, reg, val) \
79 omap_mcbsp_write(mcbsp, OMAP_MCBSP_REG_##reg, val)
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -080080#define MCBSP_READ_CACHE(mcbsp, reg) \
81 omap_mcbsp_read(mcbsp, OMAP_MCBSP_REG_##reg, 1)
Chandra Shekharb4b58f52008-10-08 10:01:39 +030082
83#define omap_mcbsp_check_valid_id(id) (id < omap_mcbsp_count)
84#define id_to_mcbsp_ptr(id) mcbsp_ptr[id];
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010085
Eero Nurkkalad912fa92010-02-22 12:21:11 +000086#define MCBSP_ST_READ(mcbsp, reg) \
87 omap_mcbsp_st_read(mcbsp, OMAP_ST_REG_##reg)
88#define MCBSP_ST_WRITE(mcbsp, reg, val) \
89 omap_mcbsp_st_write(mcbsp, OMAP_ST_REG_##reg, val)
90
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010091static void omap_mcbsp_dump_reg(u8 id)
92{
Chandra Shekharb4b58f52008-10-08 10:01:39 +030093 struct omap_mcbsp *mcbsp = id_to_mcbsp_ptr(id);
94
95 dev_dbg(mcbsp->dev, "**** McBSP%d regs ****\n", mcbsp->id);
96 dev_dbg(mcbsp->dev, "DRR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080097 MCBSP_READ(mcbsp, DRR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +030098 dev_dbg(mcbsp->dev, "DRR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -080099 MCBSP_READ(mcbsp, DRR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300100 dev_dbg(mcbsp->dev, "DXR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800101 MCBSP_READ(mcbsp, DXR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300102 dev_dbg(mcbsp->dev, "DXR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800103 MCBSP_READ(mcbsp, DXR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300104 dev_dbg(mcbsp->dev, "SPCR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800105 MCBSP_READ(mcbsp, SPCR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300106 dev_dbg(mcbsp->dev, "SPCR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800107 MCBSP_READ(mcbsp, SPCR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300108 dev_dbg(mcbsp->dev, "RCR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800109 MCBSP_READ(mcbsp, RCR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300110 dev_dbg(mcbsp->dev, "RCR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800111 MCBSP_READ(mcbsp, RCR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300112 dev_dbg(mcbsp->dev, "XCR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800113 MCBSP_READ(mcbsp, XCR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300114 dev_dbg(mcbsp->dev, "XCR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800115 MCBSP_READ(mcbsp, XCR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300116 dev_dbg(mcbsp->dev, "SRGR2: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800117 MCBSP_READ(mcbsp, SRGR2));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300118 dev_dbg(mcbsp->dev, "SRGR1: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800119 MCBSP_READ(mcbsp, SRGR1));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300120 dev_dbg(mcbsp->dev, "PCR0: 0x%04x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800121 MCBSP_READ(mcbsp, PCR0));
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300122 dev_dbg(mcbsp->dev, "***********************\n");
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100123}
124
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700125static irqreturn_t omap_mcbsp_tx_irq_handler(int irq, void *dev_id)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100126{
Jeff Garzike8f2af12007-10-26 05:40:25 -0400127 struct omap_mcbsp *mcbsp_tx = dev_id;
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700128 u16 irqst_spcr2;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100129
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800130 irqst_spcr2 = MCBSP_READ(mcbsp_tx, SPCR2);
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700131 dev_dbg(mcbsp_tx->dev, "TX IRQ callback : 0x%x\n", irqst_spcr2);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100132
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700133 if (irqst_spcr2 & XSYNC_ERR) {
134 dev_err(mcbsp_tx->dev, "TX Frame Sync Error! : 0x%x\n",
135 irqst_spcr2);
136 /* Writing zero to XSYNC_ERR clears the IRQ */
Janusz Krzysztofik0841cb82010-02-23 15:50:38 +0000137 MCBSP_WRITE(mcbsp_tx, SPCR2, MCBSP_READ_CACHE(mcbsp_tx, SPCR2));
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700138 } else {
139 complete(&mcbsp_tx->tx_irq_completion);
140 }
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300141
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100142 return IRQ_HANDLED;
143}
144
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700145static irqreturn_t omap_mcbsp_rx_irq_handler(int irq, void *dev_id)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100146{
Jeff Garzike8f2af12007-10-26 05:40:25 -0400147 struct omap_mcbsp *mcbsp_rx = dev_id;
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700148 u16 irqst_spcr1;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100149
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800150 irqst_spcr1 = MCBSP_READ(mcbsp_rx, SPCR1);
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700151 dev_dbg(mcbsp_rx->dev, "RX IRQ callback : 0x%x\n", irqst_spcr1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100152
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700153 if (irqst_spcr1 & RSYNC_ERR) {
154 dev_err(mcbsp_rx->dev, "RX Frame Sync Error! : 0x%x\n",
155 irqst_spcr1);
156 /* Writing zero to RSYNC_ERR clears the IRQ */
Janusz Krzysztofik0841cb82010-02-23 15:50:38 +0000157 MCBSP_WRITE(mcbsp_rx, SPCR1, MCBSP_READ_CACHE(mcbsp_rx, SPCR1));
Eero Nurkkalad6d834b2009-05-25 11:08:42 -0700158 } else {
159 complete(&mcbsp_rx->tx_irq_completion);
160 }
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300161
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100162 return IRQ_HANDLED;
163}
164
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100165static void omap_mcbsp_tx_dma_callback(int lch, u16 ch_status, void *data)
166{
Jeff Garzike8f2af12007-10-26 05:40:25 -0400167 struct omap_mcbsp *mcbsp_dma_tx = data;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100168
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300169 dev_dbg(mcbsp_dma_tx->dev, "TX DMA callback : 0x%x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800170 MCBSP_READ(mcbsp_dma_tx, SPCR2));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100171
172 /* We can free the channels */
173 omap_free_dma(mcbsp_dma_tx->dma_tx_lch);
174 mcbsp_dma_tx->dma_tx_lch = -1;
175
176 complete(&mcbsp_dma_tx->tx_dma_completion);
177}
178
179static void omap_mcbsp_rx_dma_callback(int lch, u16 ch_status, void *data)
180{
Jeff Garzike8f2af12007-10-26 05:40:25 -0400181 struct omap_mcbsp *mcbsp_dma_rx = data;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100182
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300183 dev_dbg(mcbsp_dma_rx->dev, "RX DMA callback : 0x%x\n",
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800184 MCBSP_READ(mcbsp_dma_rx, SPCR2));
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100185
186 /* We can free the channels */
187 omap_free_dma(mcbsp_dma_rx->dma_rx_lch);
188 mcbsp_dma_rx->dma_rx_lch = -1;
189
190 complete(&mcbsp_dma_rx->rx_dma_completion);
191}
192
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100193/*
194 * omap_mcbsp_config simply write a config to the
195 * appropriate McBSP.
196 * You either call this function or set the McBSP registers
197 * by yourself before calling omap_mcbsp_start().
198 */
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300199void omap_mcbsp_config(unsigned int id, const struct omap_mcbsp_reg_cfg *config)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100200{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300201 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100202
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300203 if (!omap_mcbsp_check_valid_id(id)) {
204 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
205 return;
206 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300207 mcbsp = id_to_mcbsp_ptr(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300208
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300209 dev_dbg(mcbsp->dev, "Configuring McBSP%d phys_base: 0x%08lx\n",
210 mcbsp->id, mcbsp->phys_base);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100211
212 /* We write the given config */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800213 MCBSP_WRITE(mcbsp, SPCR2, config->spcr2);
214 MCBSP_WRITE(mcbsp, SPCR1, config->spcr1);
215 MCBSP_WRITE(mcbsp, RCR2, config->rcr2);
216 MCBSP_WRITE(mcbsp, RCR1, config->rcr1);
217 MCBSP_WRITE(mcbsp, XCR2, config->xcr2);
218 MCBSP_WRITE(mcbsp, XCR1, config->xcr1);
219 MCBSP_WRITE(mcbsp, SRGR2, config->srgr2);
220 MCBSP_WRITE(mcbsp, SRGR1, config->srgr1);
221 MCBSP_WRITE(mcbsp, MCR2, config->mcr2);
222 MCBSP_WRITE(mcbsp, MCR1, config->mcr1);
223 MCBSP_WRITE(mcbsp, PCR0, config->pcr0);
Syed Rafiuddina5b92cc2009-07-28 18:57:10 +0530224 if (cpu_is_omap2430() || cpu_is_omap34xx() || cpu_is_omap44xx()) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800225 MCBSP_WRITE(mcbsp, XCCR, config->xccr);
226 MCBSP_WRITE(mcbsp, RCCR, config->rccr);
Tony Lindgren3127f8f2009-01-15 13:09:54 +0200227 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100228}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300229EXPORT_SYMBOL(omap_mcbsp_config);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100230
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -0800231#ifdef CONFIG_ARCH_OMAP3
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000232static void omap_st_on(struct omap_mcbsp *mcbsp)
233{
234 unsigned int w;
235
236 /*
237 * Sidetone uses McBSP ICLK - which must not idle when sidetones
238 * are enabled or sidetones start sounding ugly.
239 */
240 w = cm_read_mod_reg(OMAP3430_PER_MOD, CM_AUTOIDLE);
241 w &= ~(1 << (mcbsp->id - 2));
242 cm_write_mod_reg(w, OMAP3430_PER_MOD, CM_AUTOIDLE);
243
244 /* Enable McBSP Sidetone */
245 w = MCBSP_READ(mcbsp, SSELCR);
246 MCBSP_WRITE(mcbsp, SSELCR, w | SIDETONEEN);
247
248 w = MCBSP_ST_READ(mcbsp, SYSCONFIG);
249 MCBSP_ST_WRITE(mcbsp, SYSCONFIG, w & ~(ST_AUTOIDLE));
250
251 /* Enable Sidetone from Sidetone Core */
252 w = MCBSP_ST_READ(mcbsp, SSELCR);
253 MCBSP_ST_WRITE(mcbsp, SSELCR, w | ST_SIDETONEEN);
254}
255
256static void omap_st_off(struct omap_mcbsp *mcbsp)
257{
258 unsigned int w;
259
260 w = MCBSP_ST_READ(mcbsp, SSELCR);
261 MCBSP_ST_WRITE(mcbsp, SSELCR, w & ~(ST_SIDETONEEN));
262
263 w = MCBSP_ST_READ(mcbsp, SYSCONFIG);
264 MCBSP_ST_WRITE(mcbsp, SYSCONFIG, w | ST_AUTOIDLE);
265
266 w = MCBSP_READ(mcbsp, SSELCR);
267 MCBSP_WRITE(mcbsp, SSELCR, w & ~(SIDETONEEN));
268
269 w = cm_read_mod_reg(OMAP3430_PER_MOD, CM_AUTOIDLE);
270 w |= 1 << (mcbsp->id - 2);
271 cm_write_mod_reg(w, OMAP3430_PER_MOD, CM_AUTOIDLE);
272}
273
274static void omap_st_fir_write(struct omap_mcbsp *mcbsp, s16 *fir)
275{
276 u16 val, i;
277
278 val = MCBSP_ST_READ(mcbsp, SYSCONFIG);
279 MCBSP_ST_WRITE(mcbsp, SYSCONFIG, val & ~(ST_AUTOIDLE));
280
281 val = MCBSP_ST_READ(mcbsp, SSELCR);
282
283 if (val & ST_COEFFWREN)
284 MCBSP_ST_WRITE(mcbsp, SSELCR, val & ~(ST_COEFFWREN));
285
286 MCBSP_ST_WRITE(mcbsp, SSELCR, val | ST_COEFFWREN);
287
288 for (i = 0; i < 128; i++)
289 MCBSP_ST_WRITE(mcbsp, SFIRCR, fir[i]);
290
291 i = 0;
292
293 val = MCBSP_ST_READ(mcbsp, SSELCR);
294 while (!(val & ST_COEFFWRDONE) && (++i < 1000))
295 val = MCBSP_ST_READ(mcbsp, SSELCR);
296
297 MCBSP_ST_WRITE(mcbsp, SSELCR, val & ~(ST_COEFFWREN));
298
299 if (i == 1000)
300 dev_err(mcbsp->dev, "McBSP FIR load error!\n");
301}
302
303static void omap_st_chgain(struct omap_mcbsp *mcbsp)
304{
305 u16 w;
306 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
307
308 w = MCBSP_ST_READ(mcbsp, SYSCONFIG);
309 MCBSP_ST_WRITE(mcbsp, SYSCONFIG, w & ~(ST_AUTOIDLE));
310
311 w = MCBSP_ST_READ(mcbsp, SSELCR);
312
313 MCBSP_ST_WRITE(mcbsp, SGAINCR, ST_CH0GAIN(st_data->ch0gain) | \
314 ST_CH1GAIN(st_data->ch1gain));
315}
316
317int omap_st_set_chgain(unsigned int id, int channel, s16 chgain)
318{
319 struct omap_mcbsp *mcbsp;
320 struct omap_mcbsp_st_data *st_data;
321 int ret = 0;
322
323 if (!omap_mcbsp_check_valid_id(id)) {
324 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
325 return -ENODEV;
326 }
327
328 mcbsp = id_to_mcbsp_ptr(id);
329 st_data = mcbsp->st_data;
330
331 if (!st_data)
332 return -ENOENT;
333
334 spin_lock_irq(&mcbsp->lock);
335 if (channel == 0)
336 st_data->ch0gain = chgain;
337 else if (channel == 1)
338 st_data->ch1gain = chgain;
339 else
340 ret = -EINVAL;
341
342 if (st_data->enabled)
343 omap_st_chgain(mcbsp);
344 spin_unlock_irq(&mcbsp->lock);
345
346 return ret;
347}
348EXPORT_SYMBOL(omap_st_set_chgain);
349
350int omap_st_get_chgain(unsigned int id, int channel, s16 *chgain)
351{
352 struct omap_mcbsp *mcbsp;
353 struct omap_mcbsp_st_data *st_data;
354 int ret = 0;
355
356 if (!omap_mcbsp_check_valid_id(id)) {
357 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
358 return -ENODEV;
359 }
360
361 mcbsp = id_to_mcbsp_ptr(id);
362 st_data = mcbsp->st_data;
363
364 if (!st_data)
365 return -ENOENT;
366
367 spin_lock_irq(&mcbsp->lock);
368 if (channel == 0)
369 *chgain = st_data->ch0gain;
370 else if (channel == 1)
371 *chgain = st_data->ch1gain;
372 else
373 ret = -EINVAL;
374 spin_unlock_irq(&mcbsp->lock);
375
376 return ret;
377}
378EXPORT_SYMBOL(omap_st_get_chgain);
379
380static int omap_st_start(struct omap_mcbsp *mcbsp)
381{
382 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
383
384 if (st_data && st_data->enabled && !st_data->running) {
385 omap_st_fir_write(mcbsp, st_data->taps);
386 omap_st_chgain(mcbsp);
387
388 if (!mcbsp->free) {
389 omap_st_on(mcbsp);
390 st_data->running = 1;
391 }
392 }
393
394 return 0;
395}
396
397int omap_st_enable(unsigned int id)
398{
399 struct omap_mcbsp *mcbsp;
400 struct omap_mcbsp_st_data *st_data;
401
402 if (!omap_mcbsp_check_valid_id(id)) {
403 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
404 return -ENODEV;
405 }
406
407 mcbsp = id_to_mcbsp_ptr(id);
408 st_data = mcbsp->st_data;
409
410 if (!st_data)
411 return -ENODEV;
412
413 spin_lock_irq(&mcbsp->lock);
414 st_data->enabled = 1;
415 omap_st_start(mcbsp);
416 spin_unlock_irq(&mcbsp->lock);
417
418 return 0;
419}
420EXPORT_SYMBOL(omap_st_enable);
421
422static int omap_st_stop(struct omap_mcbsp *mcbsp)
423{
424 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
425
426 if (st_data && st_data->running) {
427 if (!mcbsp->free) {
428 omap_st_off(mcbsp);
429 st_data->running = 0;
430 }
431 }
432
433 return 0;
434}
435
436int omap_st_disable(unsigned int id)
437{
438 struct omap_mcbsp *mcbsp;
439 struct omap_mcbsp_st_data *st_data;
440 int ret = 0;
441
442 if (!omap_mcbsp_check_valid_id(id)) {
443 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
444 return -ENODEV;
445 }
446
447 mcbsp = id_to_mcbsp_ptr(id);
448 st_data = mcbsp->st_data;
449
450 if (!st_data)
451 return -ENODEV;
452
453 spin_lock_irq(&mcbsp->lock);
454 omap_st_stop(mcbsp);
455 st_data->enabled = 0;
456 spin_unlock_irq(&mcbsp->lock);
457
458 return ret;
459}
460EXPORT_SYMBOL(omap_st_disable);
461
462int omap_st_is_enabled(unsigned int id)
463{
464 struct omap_mcbsp *mcbsp;
465 struct omap_mcbsp_st_data *st_data;
466
467 if (!omap_mcbsp_check_valid_id(id)) {
468 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
469 return -ENODEV;
470 }
471
472 mcbsp = id_to_mcbsp_ptr(id);
473 st_data = mcbsp->st_data;
474
475 if (!st_data)
476 return -ENODEV;
477
478
479 return st_data->enabled;
480}
481EXPORT_SYMBOL(omap_st_is_enabled);
482
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300483/*
484 * omap_mcbsp_set_tx_threshold configures how to deal
485 * with transmit threshold. the threshold value and handler can be
486 * configure in here.
487 */
488void omap_mcbsp_set_tx_threshold(unsigned int id, u16 threshold)
489{
490 struct omap_mcbsp *mcbsp;
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300491
Jorge Eduardo Candelaria752ec2f2010-05-12 12:18:40 -0500492 if (!cpu_is_omap34xx() && !cpu_is_omap44xx())
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300493 return;
494
495 if (!omap_mcbsp_check_valid_id(id)) {
496 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
497 return;
498 }
499 mcbsp = id_to_mcbsp_ptr(id);
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300500
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800501 MCBSP_WRITE(mcbsp, THRSH2, threshold);
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300502}
503EXPORT_SYMBOL(omap_mcbsp_set_tx_threshold);
504
505/*
506 * omap_mcbsp_set_rx_threshold configures how to deal
507 * with receive threshold. the threshold value and handler can be
508 * configure in here.
509 */
510void omap_mcbsp_set_rx_threshold(unsigned int id, u16 threshold)
511{
512 struct omap_mcbsp *mcbsp;
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300513
Jorge Eduardo Candelaria752ec2f2010-05-12 12:18:40 -0500514 if (!cpu_is_omap34xx() && !cpu_is_omap44xx())
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300515 return;
516
517 if (!omap_mcbsp_check_valid_id(id)) {
518 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
519 return;
520 }
521 mcbsp = id_to_mcbsp_ptr(id);
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300522
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800523 MCBSP_WRITE(mcbsp, THRSH1, threshold);
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300524}
525EXPORT_SYMBOL(omap_mcbsp_set_rx_threshold);
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +0300526
527/*
528 * omap_mcbsp_get_max_tx_thres just return the current configured
529 * maximum threshold for transmission
530 */
531u16 omap_mcbsp_get_max_tx_threshold(unsigned int id)
532{
533 struct omap_mcbsp *mcbsp;
534
535 if (!omap_mcbsp_check_valid_id(id)) {
536 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
537 return -ENODEV;
538 }
539 mcbsp = id_to_mcbsp_ptr(id);
540
541 return mcbsp->max_tx_thres;
542}
543EXPORT_SYMBOL(omap_mcbsp_get_max_tx_threshold);
544
545/*
546 * omap_mcbsp_get_max_rx_thres just return the current configured
547 * maximum threshold for reception
548 */
549u16 omap_mcbsp_get_max_rx_threshold(unsigned int id)
550{
551 struct omap_mcbsp *mcbsp;
552
553 if (!omap_mcbsp_check_valid_id(id)) {
554 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
555 return -ENODEV;
556 }
557 mcbsp = id_to_mcbsp_ptr(id);
558
559 return mcbsp->max_rx_thres;
560}
561EXPORT_SYMBOL(omap_mcbsp_get_max_rx_threshold);
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300562
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200563#define MCBSP2_FIFO_SIZE 0x500 /* 1024 + 256 locations */
564#define MCBSP1345_FIFO_SIZE 0x80 /* 128 locations */
565/*
566 * omap_mcbsp_get_tx_delay returns the number of used slots in the McBSP FIFO
567 */
568u16 omap_mcbsp_get_tx_delay(unsigned int id)
569{
570 struct omap_mcbsp *mcbsp;
571 u16 buffstat;
572
573 if (!omap_mcbsp_check_valid_id(id)) {
574 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
575 return -ENODEV;
576 }
577 mcbsp = id_to_mcbsp_ptr(id);
578
579 /* Returns the number of free locations in the buffer */
580 buffstat = MCBSP_READ(mcbsp, XBUFFSTAT);
581
582 /* Number of slots are different in McBSP ports */
583 if (mcbsp->id == 2)
584 return MCBSP2_FIFO_SIZE - buffstat;
585 else
586 return MCBSP1345_FIFO_SIZE - buffstat;
587}
588EXPORT_SYMBOL(omap_mcbsp_get_tx_delay);
589
590/*
591 * omap_mcbsp_get_rx_delay returns the number of free slots in the McBSP FIFO
592 * to reach the threshold value (when the DMA will be triggered to read it)
593 */
594u16 omap_mcbsp_get_rx_delay(unsigned int id)
595{
596 struct omap_mcbsp *mcbsp;
597 u16 buffstat, threshold;
598
599 if (!omap_mcbsp_check_valid_id(id)) {
600 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
601 return -ENODEV;
602 }
603 mcbsp = id_to_mcbsp_ptr(id);
604
605 /* Returns the number of used locations in the buffer */
606 buffstat = MCBSP_READ(mcbsp, RBUFFSTAT);
607 /* RX threshold */
608 threshold = MCBSP_READ(mcbsp, THRSH1);
609
610 /* Return the number of location till we reach the threshold limit */
611 if (threshold <= buffstat)
612 return 0;
613 else
614 return threshold - buffstat;
615}
616EXPORT_SYMBOL(omap_mcbsp_get_rx_delay);
617
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300618/*
619 * omap_mcbsp_get_dma_op_mode just return the current configured
620 * operating mode for the mcbsp channel
621 */
622int omap_mcbsp_get_dma_op_mode(unsigned int id)
623{
624 struct omap_mcbsp *mcbsp;
625 int dma_op_mode;
626
627 if (!omap_mcbsp_check_valid_id(id)) {
628 printk(KERN_ERR "%s: Invalid id (%u)\n", __func__, id + 1);
629 return -ENODEV;
630 }
631 mcbsp = id_to_mcbsp_ptr(id);
632
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300633 dma_op_mode = mcbsp->dma_op_mode;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300634
635 return dma_op_mode;
636}
637EXPORT_SYMBOL(omap_mcbsp_get_dma_op_mode);
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300638
639static inline void omap34xx_mcbsp_request(struct omap_mcbsp *mcbsp)
640{
641 /*
642 * Enable wakup behavior, smart idle and all wakeups
643 * REVISIT: some wakeups may be unnecessary
644 */
Jorge Eduardo Candelaria752ec2f2010-05-12 12:18:40 -0500645 if (cpu_is_omap34xx() || cpu_is_omap44xx()) {
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300646 u16 syscon;
647
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800648 syscon = MCBSP_READ(mcbsp, SYSCON);
Eero Nurkkala2ba93f82009-08-20 16:18:17 +0300649 syscon &= ~(ENAWAKEUP | SIDLEMODE(0x03) | CLOCKACTIVITY(0x03));
Eduardo Valentind99a7452009-08-20 16:18:18 +0300650
Eero Nurkkalafa3935b2009-08-20 16:18:19 +0300651 if (mcbsp->dma_op_mode == MCBSP_DMA_MODE_THRESHOLD) {
652 syscon |= (ENAWAKEUP | SIDLEMODE(0x02) |
653 CLOCKACTIVITY(0x02));
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800654 MCBSP_WRITE(mcbsp, WAKEUPEN, XRDYEN | RRDYEN);
Eero Nurkkalafa3935b2009-08-20 16:18:19 +0300655 } else {
Eduardo Valentind99a7452009-08-20 16:18:18 +0300656 syscon |= SIDLEMODE(0x01);
Eero Nurkkalafa3935b2009-08-20 16:18:19 +0300657 }
Eduardo Valentind99a7452009-08-20 16:18:18 +0300658
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800659 MCBSP_WRITE(mcbsp, SYSCON, syscon);
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300660 }
661}
662
663static inline void omap34xx_mcbsp_free(struct omap_mcbsp *mcbsp)
664{
665 /*
666 * Disable wakup behavior, smart idle and all wakeups
667 */
Jorge Eduardo Candelaria752ec2f2010-05-12 12:18:40 -0500668 if (cpu_is_omap34xx() || cpu_is_omap44xx()) {
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300669 u16 syscon;
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300670
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800671 syscon = MCBSP_READ(mcbsp, SYSCON);
Eero Nurkkala2ba93f82009-08-20 16:18:17 +0300672 syscon &= ~(ENAWAKEUP | SIDLEMODE(0x03) | CLOCKACTIVITY(0x03));
Eero Nurkkala72cc6d72009-08-20 16:18:20 +0300673 /*
674 * HW bug workaround - If no_idle mode is taken, we need to
675 * go to smart_idle before going to always_idle, or the
676 * device will not hit retention anymore.
677 */
678 syscon |= SIDLEMODE(0x02);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800679 MCBSP_WRITE(mcbsp, SYSCON, syscon);
Eero Nurkkala72cc6d72009-08-20 16:18:20 +0300680
681 syscon &= ~(SIDLEMODE(0x03));
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800682 MCBSP_WRITE(mcbsp, SYSCON, syscon);
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300683
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800684 MCBSP_WRITE(mcbsp, WAKEUPEN, 0);
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300685 }
686}
687#else
688static inline void omap34xx_mcbsp_request(struct omap_mcbsp *mcbsp) {}
689static inline void omap34xx_mcbsp_free(struct omap_mcbsp *mcbsp) {}
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000690static inline void omap_st_start(struct omap_mcbsp *mcbsp) {}
691static inline void omap_st_stop(struct omap_mcbsp *mcbsp) {}
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300692#endif
693
Tony Lindgren120db2c2006-04-02 17:46:27 +0100694/*
695 * We can choose between IRQ based or polled IO.
696 * This needs to be called before omap_mcbsp_request().
697 */
698int omap_mcbsp_set_io_type(unsigned int id, omap_mcbsp_io_type_t io_type)
699{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300700 struct omap_mcbsp *mcbsp;
701
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300702 if (!omap_mcbsp_check_valid_id(id)) {
703 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
704 return -ENODEV;
705 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300706 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100707
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300708 spin_lock(&mcbsp->lock);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100709
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300710 if (!mcbsp->free) {
711 dev_err(mcbsp->dev, "McBSP%d is currently in use\n",
712 mcbsp->id);
713 spin_unlock(&mcbsp->lock);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100714 return -EINVAL;
715 }
716
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300717 mcbsp->io_type = io_type;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100718
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300719 spin_unlock(&mcbsp->lock);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100720
721 return 0;
722}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300723EXPORT_SYMBOL(omap_mcbsp_set_io_type);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100724
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100725int omap_mcbsp_request(unsigned int id)
726{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300727 struct omap_mcbsp *mcbsp;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800728 void *reg_cache;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100729 int err;
730
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300731 if (!omap_mcbsp_check_valid_id(id)) {
732 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
733 return -ENODEV;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100734 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300735 mcbsp = id_to_mcbsp_ptr(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300736
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800737 reg_cache = kzalloc(omap_mcbsp_cache_size, GFP_KERNEL);
738 if (!reg_cache) {
739 return -ENOMEM;
740 }
741
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300742 spin_lock(&mcbsp->lock);
743 if (!mcbsp->free) {
744 dev_err(mcbsp->dev, "McBSP%d is currently in use\n",
745 mcbsp->id);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800746 err = -EBUSY;
747 goto err_kfree;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100748 }
749
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300750 mcbsp->free = 0;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800751 mcbsp->reg_cache = reg_cache;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300752 spin_unlock(&mcbsp->lock);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100753
Russell Kingb820ce42009-01-23 10:26:46 +0000754 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->request)
755 mcbsp->pdata->ops->request(id);
756
757 clk_enable(mcbsp->iclk);
758 clk_enable(mcbsp->fclk);
759
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300760 /* Do procedure specific to omap34xx arch, if applicable */
761 omap34xx_mcbsp_request(mcbsp);
762
Jarkko Nikula5a070552008-10-08 10:01:41 +0300763 /*
764 * Make sure that transmitter, receiver and sample-rate generator are
765 * not running before activating IRQs.
766 */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800767 MCBSP_WRITE(mcbsp, SPCR1, 0);
768 MCBSP_WRITE(mcbsp, SPCR2, 0);
Jarkko Nikula5a070552008-10-08 10:01:41 +0300769
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300770 if (mcbsp->io_type == OMAP_MCBSP_IRQ_IO) {
Tony Lindgren120db2c2006-04-02 17:46:27 +0100771 /* We need to get IRQs here */
Jarkko Nikula5a070552008-10-08 10:01:41 +0300772 init_completion(&mcbsp->tx_irq_completion);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300773 err = request_irq(mcbsp->tx_irq, omap_mcbsp_tx_irq_handler,
774 0, "McBSP", (void *)mcbsp);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100775 if (err != 0) {
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300776 dev_err(mcbsp->dev, "Unable to request TX IRQ %d "
777 "for McBSP%d\n", mcbsp->tx_irq,
778 mcbsp->id);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800779 goto err_clk_disable;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100780 }
781
Jorge Eduardo Candelaria9319b9d2010-05-12 12:18:39 -0500782 if (mcbsp->rx_irq) {
783 init_completion(&mcbsp->rx_irq_completion);
784 err = request_irq(mcbsp->rx_irq,
785 omap_mcbsp_rx_irq_handler,
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300786 0, "McBSP", (void *)mcbsp);
Jorge Eduardo Candelaria9319b9d2010-05-12 12:18:39 -0500787 if (err != 0) {
788 dev_err(mcbsp->dev, "Unable to request RX IRQ %d "
789 "for McBSP%d\n", mcbsp->rx_irq,
790 mcbsp->id);
791 goto err_free_irq;
792 }
Tony Lindgren120db2c2006-04-02 17:46:27 +0100793 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100794 }
795
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100796 return 0;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800797err_free_irq:
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800798 free_irq(mcbsp->tx_irq, (void *)mcbsp);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800799err_clk_disable:
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800800 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free)
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800801 mcbsp->pdata->ops->free(id);
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800802
803 /* Do procedure specific to omap34xx arch, if applicable */
804 omap34xx_mcbsp_free(mcbsp);
805
806 clk_disable(mcbsp->fclk);
807 clk_disable(mcbsp->iclk);
808
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800809 spin_lock(&mcbsp->lock);
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800810 mcbsp->free = 1;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800811 mcbsp->reg_cache = NULL;
812err_kfree:
813 spin_unlock(&mcbsp->lock);
814 kfree(reg_cache);
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800815
816 return err;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100817}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300818EXPORT_SYMBOL(omap_mcbsp_request);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100819
820void omap_mcbsp_free(unsigned int id)
821{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300822 struct omap_mcbsp *mcbsp;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800823 void *reg_cache;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300824
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300825 if (!omap_mcbsp_check_valid_id(id)) {
826 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100827 return;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100828 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300829 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100830
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300831 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free)
832 mcbsp->pdata->ops->free(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300833
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300834 /* Do procedure specific to omap34xx arch, if applicable */
835 omap34xx_mcbsp_free(mcbsp);
836
Russell Kingb820ce42009-01-23 10:26:46 +0000837 clk_disable(mcbsp->fclk);
838 clk_disable(mcbsp->iclk);
839
840 if (mcbsp->io_type == OMAP_MCBSP_IRQ_IO) {
841 /* Free IRQs */
Jorge Eduardo Candelaria9319b9d2010-05-12 12:18:39 -0500842 if (mcbsp->rx_irq)
843 free_irq(mcbsp->rx_irq, (void *)mcbsp);
Russell Kingb820ce42009-01-23 10:26:46 +0000844 free_irq(mcbsp->tx_irq, (void *)mcbsp);
845 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100846
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800847 reg_cache = mcbsp->reg_cache;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100848
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800849 spin_lock(&mcbsp->lock);
850 if (mcbsp->free)
851 dev_err(mcbsp->dev, "McBSP%d was not reserved\n", mcbsp->id);
852 else
853 mcbsp->free = 1;
854 mcbsp->reg_cache = NULL;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300855 spin_unlock(&mcbsp->lock);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800856
857 if (reg_cache)
858 kfree(reg_cache);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100859}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300860EXPORT_SYMBOL(omap_mcbsp_free);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100861
862/*
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300863 * Here we start the McBSP, by enabling transmitter, receiver or both.
864 * If no transmitter or receiver is active prior calling, then sample-rate
865 * generator and frame sync are started.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100866 */
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300867void omap_mcbsp_start(unsigned int id, int tx, int rx)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100868{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300869 struct omap_mcbsp *mcbsp;
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300870 int idle;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100871 u16 w;
872
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300873 if (!omap_mcbsp_check_valid_id(id)) {
874 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100875 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300876 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300877 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100878
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000879 if (cpu_is_omap34xx())
880 omap_st_start(mcbsp);
881
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800882 mcbsp->rx_word_length = (MCBSP_READ_CACHE(mcbsp, RCR1) >> 5) & 0x7;
883 mcbsp->tx_word_length = (MCBSP_READ_CACHE(mcbsp, XCR1) >> 5) & 0x7;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100884
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800885 idle = !((MCBSP_READ_CACHE(mcbsp, SPCR2) |
886 MCBSP_READ_CACHE(mcbsp, SPCR1)) & 1);
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300887
888 if (idle) {
889 /* Start the sample generator */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800890 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800891 MCBSP_WRITE(mcbsp, SPCR2, w | (1 << 6));
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300892 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100893
894 /* Enable transmitter and receiver */
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300895 tx &= 1;
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800896 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800897 MCBSP_WRITE(mcbsp, SPCR2, w | tx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100898
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300899 rx &= 1;
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800900 w = MCBSP_READ_CACHE(mcbsp, SPCR1);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800901 MCBSP_WRITE(mcbsp, SPCR1, w | rx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100902
Eduardo Valentin44a63112009-08-20 16:18:09 +0300903 /*
904 * Worst case: CLKSRG*2 = 8000khz: (1/8000) * 2 * 2 usec
905 * REVISIT: 100us may give enough time for two CLKSRG, however
906 * due to some unknown PM related, clock gating etc. reason it
907 * is now at 500us.
908 */
909 udelay(500);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100910
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300911 if (idle) {
912 /* Start frame sync */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800913 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800914 MCBSP_WRITE(mcbsp, SPCR2, w | (1 << 7));
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300915 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100916
Jorge Eduardo Candelaria752ec2f2010-05-12 12:18:40 -0500917 if (cpu_is_omap2430() || cpu_is_omap34xx() || cpu_is_omap44xx()) {
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300918 /* Release the transmitter and receiver */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800919 w = MCBSP_READ_CACHE(mcbsp, XCCR);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300920 w &= ~(tx ? XDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800921 MCBSP_WRITE(mcbsp, XCCR, w);
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800922 w = MCBSP_READ_CACHE(mcbsp, RCCR);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300923 w &= ~(rx ? RDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800924 MCBSP_WRITE(mcbsp, RCCR, w);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300925 }
926
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100927 /* Dump McBSP Regs */
928 omap_mcbsp_dump_reg(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100929}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300930EXPORT_SYMBOL(omap_mcbsp_start);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100931
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300932void omap_mcbsp_stop(unsigned int id, int tx, int rx)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100933{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300934 struct omap_mcbsp *mcbsp;
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300935 int idle;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100936 u16 w;
937
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300938 if (!omap_mcbsp_check_valid_id(id)) {
939 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100940 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300941 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100942
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300943 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100944
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300945 /* Reset transmitter */
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300946 tx &= 1;
Jorge Eduardo Candelaria752ec2f2010-05-12 12:18:40 -0500947 if (cpu_is_omap2430() || cpu_is_omap34xx() || cpu_is_omap44xx()) {
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800948 w = MCBSP_READ_CACHE(mcbsp, XCCR);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300949 w |= (tx ? XDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800950 MCBSP_WRITE(mcbsp, XCCR, w);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300951 }
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800952 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800953 MCBSP_WRITE(mcbsp, SPCR2, w & ~tx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100954
955 /* Reset receiver */
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300956 rx &= 1;
Jorge Eduardo Candelaria752ec2f2010-05-12 12:18:40 -0500957 if (cpu_is_omap2430() || cpu_is_omap34xx() || cpu_is_omap44xx()) {
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800958 w = MCBSP_READ_CACHE(mcbsp, RCCR);
Jarkko Nikulaa93d4ed2009-10-14 09:56:35 -0700959 w |= (rx ? RDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800960 MCBSP_WRITE(mcbsp, RCCR, w);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300961 }
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800962 w = MCBSP_READ_CACHE(mcbsp, SPCR1);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800963 MCBSP_WRITE(mcbsp, SPCR1, w & ~rx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100964
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800965 idle = !((MCBSP_READ_CACHE(mcbsp, SPCR2) |
966 MCBSP_READ_CACHE(mcbsp, SPCR1)) & 1);
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300967
968 if (idle) {
969 /* Reset the sample rate generator */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800970 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800971 MCBSP_WRITE(mcbsp, SPCR2, w & ~(1 << 6));
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300972 }
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000973
974 if (cpu_is_omap34xx())
975 omap_st_stop(mcbsp);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100976}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300977EXPORT_SYMBOL(omap_mcbsp_stop);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100978
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100979/* polled mcbsp i/o operations */
980int omap_mcbsp_pollwrite(unsigned int id, u16 buf)
981{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300982 struct omap_mcbsp *mcbsp;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300983
984 if (!omap_mcbsp_check_valid_id(id)) {
985 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
986 return -ENODEV;
987 }
988
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300989 mcbsp = id_to_mcbsp_ptr(id);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300990
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800991 MCBSP_WRITE(mcbsp, DXR1, buf);
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100992 /* if frame sync error - clear the error */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800993 if (MCBSP_READ(mcbsp, SPCR2) & XSYNC_ERR) {
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100994 /* clear error */
Janusz Krzysztofik0841cb82010-02-23 15:50:38 +0000995 MCBSP_WRITE(mcbsp, SPCR2, MCBSP_READ_CACHE(mcbsp, SPCR2));
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100996 /* resend */
997 return -1;
998 } else {
999 /* wait for transmit confirmation */
1000 int attemps = 0;
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001001 while (!(MCBSP_READ(mcbsp, SPCR2) & XRDY)) {
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001002 if (attemps++ > 1000) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001003 MCBSP_WRITE(mcbsp, SPCR2,
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001004 MCBSP_READ_CACHE(mcbsp, SPCR2) &
1005 (~XRST));
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001006 udelay(10);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001007 MCBSP_WRITE(mcbsp, SPCR2,
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001008 MCBSP_READ_CACHE(mcbsp, SPCR2) |
1009 (XRST));
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001010 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001011 dev_err(mcbsp->dev, "Could not write to"
1012 " McBSP%d Register\n", mcbsp->id);
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001013 return -2;
1014 }
1015 }
1016 }
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001017
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001018 return 0;
1019}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001020EXPORT_SYMBOL(omap_mcbsp_pollwrite);
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001021
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001022int omap_mcbsp_pollread(unsigned int id, u16 *buf)
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001023{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001024 struct omap_mcbsp *mcbsp;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001025
1026 if (!omap_mcbsp_check_valid_id(id)) {
1027 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1028 return -ENODEV;
1029 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001030 mcbsp = id_to_mcbsp_ptr(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001031
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001032 /* if frame sync error - clear the error */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001033 if (MCBSP_READ(mcbsp, SPCR1) & RSYNC_ERR) {
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001034 /* clear error */
Janusz Krzysztofik0841cb82010-02-23 15:50:38 +00001035 MCBSP_WRITE(mcbsp, SPCR1, MCBSP_READ_CACHE(mcbsp, SPCR1));
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001036 /* resend */
1037 return -1;
1038 } else {
1039 /* wait for recieve confirmation */
1040 int attemps = 0;
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001041 while (!(MCBSP_READ(mcbsp, SPCR1) & RRDY)) {
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001042 if (attemps++ > 1000) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001043 MCBSP_WRITE(mcbsp, SPCR1,
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001044 MCBSP_READ_CACHE(mcbsp, SPCR1) &
1045 (~RRST));
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001046 udelay(10);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001047 MCBSP_WRITE(mcbsp, SPCR1,
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001048 MCBSP_READ_CACHE(mcbsp, SPCR1) |
1049 (RRST));
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001050 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001051 dev_err(mcbsp->dev, "Could not read from"
1052 " McBSP%d Register\n", mcbsp->id);
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001053 return -2;
1054 }
1055 }
1056 }
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001057 *buf = MCBSP_READ(mcbsp, DRR1);
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001058
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001059 return 0;
1060}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001061EXPORT_SYMBOL(omap_mcbsp_pollread);
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001062
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001063/*
1064 * IRQ based word transmission.
1065 */
1066void omap_mcbsp_xmit_word(unsigned int id, u32 word)
1067{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001068 struct omap_mcbsp *mcbsp;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001069 omap_mcbsp_word_length word_length;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001070
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001071 if (!omap_mcbsp_check_valid_id(id)) {
1072 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001073 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001074 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001075
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001076 mcbsp = id_to_mcbsp_ptr(id);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001077 word_length = mcbsp->tx_word_length;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001078
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001079 wait_for_completion(&mcbsp->tx_irq_completion);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001080
1081 if (word_length > OMAP_MCBSP_WORD_16)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001082 MCBSP_WRITE(mcbsp, DXR2, word >> 16);
1083 MCBSP_WRITE(mcbsp, DXR1, word & 0xffff);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001084}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001085EXPORT_SYMBOL(omap_mcbsp_xmit_word);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001086
1087u32 omap_mcbsp_recv_word(unsigned int id)
1088{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001089 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001090 u16 word_lsb, word_msb = 0;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001091 omap_mcbsp_word_length word_length;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001092
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001093 if (!omap_mcbsp_check_valid_id(id)) {
1094 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1095 return -ENODEV;
1096 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001097 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001098
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001099 word_length = mcbsp->rx_word_length;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001100
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001101 wait_for_completion(&mcbsp->rx_irq_completion);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001102
1103 if (word_length > OMAP_MCBSP_WORD_16)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001104 word_msb = MCBSP_READ(mcbsp, DRR2);
1105 word_lsb = MCBSP_READ(mcbsp, DRR1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001106
1107 return (word_lsb | (word_msb << 16));
1108}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001109EXPORT_SYMBOL(omap_mcbsp_recv_word);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001110
Tony Lindgren120db2c2006-04-02 17:46:27 +01001111int omap_mcbsp_spi_master_xmit_word_poll(unsigned int id, u32 word)
1112{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001113 struct omap_mcbsp *mcbsp;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001114 omap_mcbsp_word_length tx_word_length;
1115 omap_mcbsp_word_length rx_word_length;
Tony Lindgren120db2c2006-04-02 17:46:27 +01001116 u16 spcr2, spcr1, attempts = 0, word_lsb, word_msb = 0;
1117
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001118 if (!omap_mcbsp_check_valid_id(id)) {
1119 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1120 return -ENODEV;
1121 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001122 mcbsp = id_to_mcbsp_ptr(id);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001123 tx_word_length = mcbsp->tx_word_length;
1124 rx_word_length = mcbsp->rx_word_length;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001125
Tony Lindgren120db2c2006-04-02 17:46:27 +01001126 if (tx_word_length != rx_word_length)
1127 return -EINVAL;
1128
1129 /* First we wait for the transmitter to be ready */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001130 spcr2 = MCBSP_READ(mcbsp, SPCR2);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001131 while (!(spcr2 & XRDY)) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001132 spcr2 = MCBSP_READ(mcbsp, SPCR2);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001133 if (attempts++ > 1000) {
1134 /* We must reset the transmitter */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001135 MCBSP_WRITE(mcbsp, SPCR2,
1136 MCBSP_READ_CACHE(mcbsp, SPCR2) & (~XRST));
Tony Lindgren120db2c2006-04-02 17:46:27 +01001137 udelay(10);
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001138 MCBSP_WRITE(mcbsp, SPCR2,
1139 MCBSP_READ_CACHE(mcbsp, SPCR2) | XRST);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001140 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001141 dev_err(mcbsp->dev, "McBSP%d transmitter not "
1142 "ready\n", mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001143 return -EAGAIN;
1144 }
1145 }
1146
1147 /* Now we can push the data */
1148 if (tx_word_length > OMAP_MCBSP_WORD_16)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001149 MCBSP_WRITE(mcbsp, DXR2, word >> 16);
1150 MCBSP_WRITE(mcbsp, DXR1, word & 0xffff);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001151
1152 /* We wait for the receiver to be ready */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001153 spcr1 = MCBSP_READ(mcbsp, SPCR1);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001154 while (!(spcr1 & RRDY)) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001155 spcr1 = MCBSP_READ(mcbsp, SPCR1);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001156 if (attempts++ > 1000) {
1157 /* We must reset the receiver */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001158 MCBSP_WRITE(mcbsp, SPCR1,
1159 MCBSP_READ_CACHE(mcbsp, SPCR1) & (~RRST));
Tony Lindgren120db2c2006-04-02 17:46:27 +01001160 udelay(10);
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001161 MCBSP_WRITE(mcbsp, SPCR1,
1162 MCBSP_READ_CACHE(mcbsp, SPCR1) | RRST);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001163 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001164 dev_err(mcbsp->dev, "McBSP%d receiver not "
1165 "ready\n", mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001166 return -EAGAIN;
1167 }
1168 }
1169
1170 /* Receiver is ready, let's read the dummy data */
1171 if (rx_word_length > OMAP_MCBSP_WORD_16)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001172 word_msb = MCBSP_READ(mcbsp, DRR2);
1173 word_lsb = MCBSP_READ(mcbsp, DRR1);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001174
1175 return 0;
1176}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001177EXPORT_SYMBOL(omap_mcbsp_spi_master_xmit_word_poll);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001178
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001179int omap_mcbsp_spi_master_recv_word_poll(unsigned int id, u32 *word)
Tony Lindgren120db2c2006-04-02 17:46:27 +01001180{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001181 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +01001182 u32 clock_word = 0;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001183 omap_mcbsp_word_length tx_word_length;
1184 omap_mcbsp_word_length rx_word_length;
Tony Lindgren120db2c2006-04-02 17:46:27 +01001185 u16 spcr2, spcr1, attempts = 0, word_lsb, word_msb = 0;
1186
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001187 if (!omap_mcbsp_check_valid_id(id)) {
1188 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1189 return -ENODEV;
1190 }
1191
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001192 mcbsp = id_to_mcbsp_ptr(id);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001193
1194 tx_word_length = mcbsp->tx_word_length;
1195 rx_word_length = mcbsp->rx_word_length;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001196
Tony Lindgren120db2c2006-04-02 17:46:27 +01001197 if (tx_word_length != rx_word_length)
1198 return -EINVAL;
1199
1200 /* First we wait for the transmitter to be ready */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001201 spcr2 = MCBSP_READ(mcbsp, SPCR2);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001202 while (!(spcr2 & XRDY)) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001203 spcr2 = MCBSP_READ(mcbsp, SPCR2);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001204 if (attempts++ > 1000) {
1205 /* We must reset the transmitter */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001206 MCBSP_WRITE(mcbsp, SPCR2,
1207 MCBSP_READ_CACHE(mcbsp, SPCR2) & (~XRST));
Tony Lindgren120db2c2006-04-02 17:46:27 +01001208 udelay(10);
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001209 MCBSP_WRITE(mcbsp, SPCR2,
1210 MCBSP_READ_CACHE(mcbsp, SPCR2) | XRST);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001211 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001212 dev_err(mcbsp->dev, "McBSP%d transmitter not "
1213 "ready\n", mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001214 return -EAGAIN;
1215 }
1216 }
1217
1218 /* We first need to enable the bus clock */
1219 if (tx_word_length > OMAP_MCBSP_WORD_16)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001220 MCBSP_WRITE(mcbsp, DXR2, clock_word >> 16);
1221 MCBSP_WRITE(mcbsp, DXR1, clock_word & 0xffff);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001222
1223 /* We wait for the receiver to be ready */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001224 spcr1 = MCBSP_READ(mcbsp, SPCR1);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001225 while (!(spcr1 & RRDY)) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001226 spcr1 = MCBSP_READ(mcbsp, SPCR1);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001227 if (attempts++ > 1000) {
1228 /* We must reset the receiver */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001229 MCBSP_WRITE(mcbsp, SPCR1,
1230 MCBSP_READ_CACHE(mcbsp, SPCR1) & (~RRST));
Tony Lindgren120db2c2006-04-02 17:46:27 +01001231 udelay(10);
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001232 MCBSP_WRITE(mcbsp, SPCR1,
1233 MCBSP_READ_CACHE(mcbsp, SPCR1) | RRST);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001234 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001235 dev_err(mcbsp->dev, "McBSP%d receiver not "
1236 "ready\n", mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001237 return -EAGAIN;
1238 }
1239 }
1240
1241 /* Receiver is ready, there is something for us */
1242 if (rx_word_length > OMAP_MCBSP_WORD_16)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001243 word_msb = MCBSP_READ(mcbsp, DRR2);
1244 word_lsb = MCBSP_READ(mcbsp, DRR1);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001245
1246 word[0] = (word_lsb | (word_msb << 16));
1247
1248 return 0;
1249}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001250EXPORT_SYMBOL(omap_mcbsp_spi_master_recv_word_poll);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001251
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001252/*
1253 * Simple DMA based buffer rx/tx routines.
1254 * Nothing fancy, just a single buffer tx/rx through DMA.
1255 * The DMA resources are released once the transfer is done.
1256 * For anything fancier, you should use your own customized DMA
1257 * routines and callbacks.
1258 */
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001259int omap_mcbsp_xmit_buffer(unsigned int id, dma_addr_t buffer,
1260 unsigned int length)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001261{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001262 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001263 int dma_tx_ch;
Tony Lindgren120db2c2006-04-02 17:46:27 +01001264 int src_port = 0;
1265 int dest_port = 0;
1266 int sync_dev = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001267
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001268 if (!omap_mcbsp_check_valid_id(id)) {
1269 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1270 return -ENODEV;
1271 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001272 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001273
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001274 if (omap_request_dma(mcbsp->dma_tx_sync, "McBSP TX",
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001275 omap_mcbsp_tx_dma_callback,
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001276 mcbsp,
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001277 &dma_tx_ch)) {
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001278 dev_err(mcbsp->dev, " Unable to request DMA channel for "
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001279 "McBSP%d TX. Trying IRQ based TX\n",
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001280 mcbsp->id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001281 return -EAGAIN;
1282 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001283 mcbsp->dma_tx_lch = dma_tx_ch;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001284
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001285 dev_err(mcbsp->dev, "McBSP%d TX DMA on channel %d\n", mcbsp->id,
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001286 dma_tx_ch);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001287
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001288 init_completion(&mcbsp->tx_dma_completion);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001289
Tony Lindgren120db2c2006-04-02 17:46:27 +01001290 if (cpu_class_is_omap1()) {
1291 src_port = OMAP_DMA_PORT_TIPB;
1292 dest_port = OMAP_DMA_PORT_EMIFF;
1293 }
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001294 if (cpu_class_is_omap2())
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001295 sync_dev = mcbsp->dma_tx_sync;
Tony Lindgren120db2c2006-04-02 17:46:27 +01001296
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001297 omap_set_dma_transfer_params(mcbsp->dma_tx_lch,
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001298 OMAP_DMA_DATA_TYPE_S16,
1299 length >> 1, 1,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +00001300 OMAP_DMA_SYNC_ELEMENT,
Tony Lindgren120db2c2006-04-02 17:46:27 +01001301 sync_dev, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001302
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001303 omap_set_dma_dest_params(mcbsp->dma_tx_lch,
Tony Lindgren120db2c2006-04-02 17:46:27 +01001304 src_port,
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001305 OMAP_DMA_AMODE_CONSTANT,
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001306 mcbsp->phys_base + OMAP_MCBSP_REG_DXR1,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +00001307 0, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001308
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001309 omap_set_dma_src_params(mcbsp->dma_tx_lch,
Tony Lindgren120db2c2006-04-02 17:46:27 +01001310 dest_port,
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001311 OMAP_DMA_AMODE_POST_INC,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +00001312 buffer,
1313 0, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001314
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001315 omap_start_dma(mcbsp->dma_tx_lch);
1316 wait_for_completion(&mcbsp->tx_dma_completion);
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001317
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001318 return 0;
1319}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001320EXPORT_SYMBOL(omap_mcbsp_xmit_buffer);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001321
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001322int omap_mcbsp_recv_buffer(unsigned int id, dma_addr_t buffer,
1323 unsigned int length)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001324{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001325 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001326 int dma_rx_ch;
Tony Lindgren120db2c2006-04-02 17:46:27 +01001327 int src_port = 0;
1328 int dest_port = 0;
1329 int sync_dev = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001330
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001331 if (!omap_mcbsp_check_valid_id(id)) {
1332 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1333 return -ENODEV;
1334 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001335 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001336
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001337 if (omap_request_dma(mcbsp->dma_rx_sync, "McBSP RX",
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001338 omap_mcbsp_rx_dma_callback,
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001339 mcbsp,
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001340 &dma_rx_ch)) {
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001341 dev_err(mcbsp->dev, "Unable to request DMA channel for "
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001342 "McBSP%d RX. Trying IRQ based RX\n",
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001343 mcbsp->id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001344 return -EAGAIN;
1345 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001346 mcbsp->dma_rx_lch = dma_rx_ch;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001347
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001348 dev_err(mcbsp->dev, "McBSP%d RX DMA on channel %d\n", mcbsp->id,
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001349 dma_rx_ch);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001350
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001351 init_completion(&mcbsp->rx_dma_completion);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001352
Tony Lindgren120db2c2006-04-02 17:46:27 +01001353 if (cpu_class_is_omap1()) {
1354 src_port = OMAP_DMA_PORT_TIPB;
1355 dest_port = OMAP_DMA_PORT_EMIFF;
1356 }
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001357 if (cpu_class_is_omap2())
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001358 sync_dev = mcbsp->dma_rx_sync;
Tony Lindgren120db2c2006-04-02 17:46:27 +01001359
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001360 omap_set_dma_transfer_params(mcbsp->dma_rx_lch,
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001361 OMAP_DMA_DATA_TYPE_S16,
1362 length >> 1, 1,
1363 OMAP_DMA_SYNC_ELEMENT,
1364 sync_dev, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001365
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001366 omap_set_dma_src_params(mcbsp->dma_rx_lch,
Tony Lindgren120db2c2006-04-02 17:46:27 +01001367 src_port,
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001368 OMAP_DMA_AMODE_CONSTANT,
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001369 mcbsp->phys_base + OMAP_MCBSP_REG_DRR1,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +00001370 0, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001371
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001372 omap_set_dma_dest_params(mcbsp->dma_rx_lch,
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001373 dest_port,
1374 OMAP_DMA_AMODE_POST_INC,
1375 buffer,
1376 0, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001377
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001378 omap_start_dma(mcbsp->dma_rx_lch);
1379 wait_for_completion(&mcbsp->rx_dma_completion);
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001380
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001381 return 0;
1382}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001383EXPORT_SYMBOL(omap_mcbsp_recv_buffer);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001384
1385/*
1386 * SPI wrapper.
1387 * Since SPI setup is much simpler than the generic McBSP one,
1388 * this wrapper just need an omap_mcbsp_spi_cfg structure as an input.
1389 * Once this is done, you can call omap_mcbsp_start().
1390 */
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001391void omap_mcbsp_set_spi_mode(unsigned int id,
1392 const struct omap_mcbsp_spi_cfg *spi_cfg)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001393{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001394 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001395 struct omap_mcbsp_reg_cfg mcbsp_cfg;
1396
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001397 if (!omap_mcbsp_check_valid_id(id)) {
1398 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001399 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001400 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001401 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001402
1403 memset(&mcbsp_cfg, 0, sizeof(struct omap_mcbsp_reg_cfg));
1404
1405 /* SPI has only one frame */
1406 mcbsp_cfg.rcr1 |= (RWDLEN1(spi_cfg->word_length) | RFRLEN1(0));
1407 mcbsp_cfg.xcr1 |= (XWDLEN1(spi_cfg->word_length) | XFRLEN1(0));
1408
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001409 /* Clock stop mode */
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001410 if (spi_cfg->clk_stp_mode == OMAP_MCBSP_CLK_STP_MODE_NO_DELAY)
1411 mcbsp_cfg.spcr1 |= (1 << 12);
1412 else
1413 mcbsp_cfg.spcr1 |= (3 << 11);
1414
1415 /* Set clock parities */
1416 if (spi_cfg->rx_clock_polarity == OMAP_MCBSP_CLK_RISING)
1417 mcbsp_cfg.pcr0 |= CLKRP;
1418 else
1419 mcbsp_cfg.pcr0 &= ~CLKRP;
1420
1421 if (spi_cfg->tx_clock_polarity == OMAP_MCBSP_CLK_RISING)
1422 mcbsp_cfg.pcr0 &= ~CLKXP;
1423 else
1424 mcbsp_cfg.pcr0 |= CLKXP;
1425
1426 /* Set SCLKME to 0 and CLKSM to 1 */
1427 mcbsp_cfg.pcr0 &= ~SCLKME;
1428 mcbsp_cfg.srgr2 |= CLKSM;
1429
1430 /* Set FSXP */
1431 if (spi_cfg->fsx_polarity == OMAP_MCBSP_FS_ACTIVE_HIGH)
1432 mcbsp_cfg.pcr0 &= ~FSXP;
1433 else
1434 mcbsp_cfg.pcr0 |= FSXP;
1435
1436 if (spi_cfg->spi_mode == OMAP_MCBSP_SPI_MASTER) {
1437 mcbsp_cfg.pcr0 |= CLKXM;
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001438 mcbsp_cfg.srgr1 |= CLKGDV(spi_cfg->clk_div - 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001439 mcbsp_cfg.pcr0 |= FSXM;
1440 mcbsp_cfg.srgr2 &= ~FSGM;
1441 mcbsp_cfg.xcr2 |= XDATDLY(1);
1442 mcbsp_cfg.rcr2 |= RDATDLY(1);
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001443 } else {
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001444 mcbsp_cfg.pcr0 &= ~CLKXM;
1445 mcbsp_cfg.srgr1 |= CLKGDV(1);
1446 mcbsp_cfg.pcr0 &= ~FSXM;
1447 mcbsp_cfg.xcr2 &= ~XDATDLY(3);
1448 mcbsp_cfg.rcr2 &= ~RDATDLY(3);
1449 }
1450
1451 mcbsp_cfg.xcr2 &= ~XPHASE;
1452 mcbsp_cfg.rcr2 &= ~RPHASE;
1453
1454 omap_mcbsp_config(id, &mcbsp_cfg);
1455}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001456EXPORT_SYMBOL(omap_mcbsp_set_spi_mode);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001457
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -08001458#ifdef CONFIG_ARCH_OMAP3
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001459#define max_thres(m) (mcbsp->pdata->buffer_size)
1460#define valid_threshold(m, val) ((val) <= max_thres(m))
1461#define THRESHOLD_PROP_BUILDER(prop) \
1462static ssize_t prop##_show(struct device *dev, \
1463 struct device_attribute *attr, char *buf) \
1464{ \
1465 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev); \
1466 \
1467 return sprintf(buf, "%u\n", mcbsp->prop); \
1468} \
1469 \
1470static ssize_t prop##_store(struct device *dev, \
1471 struct device_attribute *attr, \
1472 const char *buf, size_t size) \
1473{ \
1474 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev); \
1475 unsigned long val; \
1476 int status; \
1477 \
1478 status = strict_strtoul(buf, 0, &val); \
1479 if (status) \
1480 return status; \
1481 \
1482 if (!valid_threshold(mcbsp, val)) \
1483 return -EDOM; \
1484 \
1485 mcbsp->prop = val; \
1486 return size; \
1487} \
1488 \
1489static DEVICE_ATTR(prop, 0644, prop##_show, prop##_store);
1490
1491THRESHOLD_PROP_BUILDER(max_tx_thres);
1492THRESHOLD_PROP_BUILDER(max_rx_thres);
1493
Jarkko Nikula9b300502009-08-24 17:45:50 +03001494static const char *dma_op_modes[] = {
1495 "element", "threshold", "frame",
1496};
1497
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001498static ssize_t dma_op_mode_show(struct device *dev,
1499 struct device_attribute *attr, char *buf)
1500{
1501 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
Jarkko Nikula9b300502009-08-24 17:45:50 +03001502 int dma_op_mode, i = 0;
1503 ssize_t len = 0;
1504 const char * const *s;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001505
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001506 dma_op_mode = mcbsp->dma_op_mode;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001507
Jarkko Nikula9b300502009-08-24 17:45:50 +03001508 for (s = &dma_op_modes[i]; i < ARRAY_SIZE(dma_op_modes); s++, i++) {
1509 if (dma_op_mode == i)
1510 len += sprintf(buf + len, "[%s] ", *s);
1511 else
1512 len += sprintf(buf + len, "%s ", *s);
1513 }
1514 len += sprintf(buf + len, "\n");
1515
1516 return len;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001517}
1518
1519static ssize_t dma_op_mode_store(struct device *dev,
1520 struct device_attribute *attr,
1521 const char *buf, size_t size)
1522{
1523 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
Jarkko Nikula9b300502009-08-24 17:45:50 +03001524 const char * const *s;
1525 int i = 0;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001526
Jarkko Nikula9b300502009-08-24 17:45:50 +03001527 for (s = &dma_op_modes[i]; i < ARRAY_SIZE(dma_op_modes); s++, i++)
1528 if (sysfs_streq(buf, *s))
1529 break;
1530
1531 if (i == ARRAY_SIZE(dma_op_modes))
1532 return -EINVAL;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001533
1534 spin_lock_irq(&mcbsp->lock);
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001535 if (!mcbsp->free) {
1536 size = -EBUSY;
1537 goto unlock;
1538 }
Jarkko Nikula9b300502009-08-24 17:45:50 +03001539 mcbsp->dma_op_mode = i;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001540
1541unlock:
1542 spin_unlock_irq(&mcbsp->lock);
1543
1544 return size;
1545}
1546
1547static DEVICE_ATTR(dma_op_mode, 0644, dma_op_mode_show, dma_op_mode_store);
1548
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001549static ssize_t st_taps_show(struct device *dev,
1550 struct device_attribute *attr, char *buf)
1551{
1552 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
1553 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
1554 ssize_t status = 0;
1555 int i;
1556
1557 spin_lock_irq(&mcbsp->lock);
1558 for (i = 0; i < st_data->nr_taps; i++)
1559 status += sprintf(&buf[status], (i ? ", %d" : "%d"),
1560 st_data->taps[i]);
1561 if (i)
1562 status += sprintf(&buf[status], "\n");
1563 spin_unlock_irq(&mcbsp->lock);
1564
1565 return status;
1566}
1567
1568static ssize_t st_taps_store(struct device *dev,
1569 struct device_attribute *attr,
1570 const char *buf, size_t size)
1571{
1572 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
1573 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
1574 int val, tmp, status, i = 0;
1575
1576 spin_lock_irq(&mcbsp->lock);
1577 memset(st_data->taps, 0, sizeof(st_data->taps));
1578 st_data->nr_taps = 0;
1579
1580 do {
1581 status = sscanf(buf, "%d%n", &val, &tmp);
1582 if (status < 0 || status == 0) {
1583 size = -EINVAL;
1584 goto out;
1585 }
1586 if (val < -32768 || val > 32767) {
1587 size = -EINVAL;
1588 goto out;
1589 }
1590 st_data->taps[i++] = val;
1591 buf += tmp;
1592 if (*buf != ',')
1593 break;
1594 buf++;
1595 } while (1);
1596
1597 st_data->nr_taps = i;
1598
1599out:
1600 spin_unlock_irq(&mcbsp->lock);
1601
1602 return size;
1603}
1604
1605static DEVICE_ATTR(st_taps, 0644, st_taps_show, st_taps_store);
1606
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001607static const struct attribute *additional_attrs[] = {
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001608 &dev_attr_max_tx_thres.attr,
1609 &dev_attr_max_rx_thres.attr,
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001610 &dev_attr_dma_op_mode.attr,
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001611 NULL,
1612};
1613
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001614static const struct attribute_group additional_attr_group = {
1615 .attrs = (struct attribute **)additional_attrs,
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001616};
1617
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001618static inline int __devinit omap_additional_add(struct device *dev)
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001619{
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001620 return sysfs_create_group(&dev->kobj, &additional_attr_group);
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001621}
1622
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001623static inline void __devexit omap_additional_remove(struct device *dev)
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001624{
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001625 sysfs_remove_group(&dev->kobj, &additional_attr_group);
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001626}
1627
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001628static const struct attribute *sidetone_attrs[] = {
1629 &dev_attr_st_taps.attr,
1630 NULL,
1631};
1632
1633static const struct attribute_group sidetone_attr_group = {
1634 .attrs = (struct attribute **)sidetone_attrs,
1635};
1636
1637int __devinit omap_st_add(struct omap_mcbsp *mcbsp)
1638{
1639 struct omap_mcbsp_platform_data *pdata = mcbsp->pdata;
1640 struct omap_mcbsp_st_data *st_data;
1641 int err;
1642
1643 st_data = kzalloc(sizeof(*mcbsp->st_data), GFP_KERNEL);
1644 if (!st_data) {
1645 err = -ENOMEM;
1646 goto err1;
1647 }
1648
1649 st_data->io_base_st = ioremap(pdata->phys_base_st, SZ_4K);
1650 if (!st_data->io_base_st) {
1651 err = -ENOMEM;
1652 goto err2;
1653 }
1654
1655 err = sysfs_create_group(&mcbsp->dev->kobj, &sidetone_attr_group);
1656 if (err)
1657 goto err3;
1658
1659 mcbsp->st_data = st_data;
1660 return 0;
1661
1662err3:
1663 iounmap(st_data->io_base_st);
1664err2:
1665 kfree(st_data);
1666err1:
1667 return err;
1668
1669}
1670
1671static void __devexit omap_st_remove(struct omap_mcbsp *mcbsp)
1672{
1673 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
1674
1675 if (st_data) {
1676 sysfs_remove_group(&mcbsp->dev->kobj, &sidetone_attr_group);
1677 iounmap(st_data->io_base_st);
1678 kfree(st_data);
1679 }
1680}
1681
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001682static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp)
1683{
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001684 mcbsp->dma_op_mode = MCBSP_DMA_MODE_ELEMENT;
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001685 if (cpu_is_omap34xx()) {
1686 mcbsp->max_tx_thres = max_thres(mcbsp);
1687 mcbsp->max_rx_thres = max_thres(mcbsp);
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001688 /*
1689 * REVISIT: Set dmap_op_mode to THRESHOLD as default
1690 * for mcbsp2 instances.
1691 */
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001692 if (omap_additional_add(mcbsp->dev))
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001693 dev_warn(mcbsp->dev,
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001694 "Unable to create additional controls\n");
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001695
1696 if (mcbsp->id == 2 || mcbsp->id == 3)
1697 if (omap_st_add(mcbsp))
1698 dev_warn(mcbsp->dev,
1699 "Unable to create sidetone controls\n");
1700
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001701 } else {
1702 mcbsp->max_tx_thres = -EINVAL;
1703 mcbsp->max_rx_thres = -EINVAL;
1704 }
1705}
1706
1707static inline void __devexit omap34xx_device_exit(struct omap_mcbsp *mcbsp)
1708{
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001709 if (cpu_is_omap34xx()) {
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001710 omap_additional_remove(mcbsp->dev);
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001711
1712 if (mcbsp->id == 2 || mcbsp->id == 3)
1713 omap_st_remove(mcbsp);
1714 }
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001715}
1716#else
1717static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp) {}
1718static inline void __devexit omap34xx_device_exit(struct omap_mcbsp *mcbsp) {}
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -08001719#endif /* CONFIG_ARCH_OMAP3 */
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001720
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001721/*
1722 * McBSP1 and McBSP3 are directly mapped on 1610 and 1510.
1723 * 730 has only 2 McBSP, and both of them are MPU peripherals.
1724 */
Uwe Kleine-König25cef222008-10-08 10:01:39 +03001725static int __devinit omap_mcbsp_probe(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001726{
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001727 struct omap_mcbsp_platform_data *pdata = pdev->dev.platform_data;
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001728 struct omap_mcbsp *mcbsp;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001729 int id = pdev->id - 1;
1730 int ret = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001731
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001732 if (!pdata) {
1733 dev_err(&pdev->dev, "McBSP device initialized without"
1734 "platform data\n");
1735 ret = -EINVAL;
1736 goto exit;
1737 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001738
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001739 dev_dbg(&pdev->dev, "Initializing OMAP McBSP (%d).\n", pdev->id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001740
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001741 if (id >= omap_mcbsp_count) {
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001742 dev_err(&pdev->dev, "Invalid McBSP device id (%d)\n", id);
1743 ret = -EINVAL;
1744 goto exit;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001745 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001746
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001747 mcbsp = kzalloc(sizeof(struct omap_mcbsp), GFP_KERNEL);
1748 if (!mcbsp) {
1749 ret = -ENOMEM;
1750 goto exit;
1751 }
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001752
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001753 spin_lock_init(&mcbsp->lock);
1754 mcbsp->id = id + 1;
1755 mcbsp->free = 1;
1756 mcbsp->dma_tx_lch = -1;
1757 mcbsp->dma_rx_lch = -1;
1758
1759 mcbsp->phys_base = pdata->phys_base;
1760 mcbsp->io_base = ioremap(pdata->phys_base, SZ_4K);
1761 if (!mcbsp->io_base) {
Russell Kingd592dd12008-09-04 14:25:42 +01001762 ret = -ENOMEM;
1763 goto err_ioremap;
1764 }
1765
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001766 /* Default I/O is IRQ based */
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001767 mcbsp->io_type = OMAP_MCBSP_IRQ_IO;
1768 mcbsp->tx_irq = pdata->tx_irq;
1769 mcbsp->rx_irq = pdata->rx_irq;
1770 mcbsp->dma_rx_sync = pdata->dma_rx_sync;
1771 mcbsp->dma_tx_sync = pdata->dma_tx_sync;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001772
Russell Kingb820ce42009-01-23 10:26:46 +00001773 mcbsp->iclk = clk_get(&pdev->dev, "ick");
1774 if (IS_ERR(mcbsp->iclk)) {
1775 ret = PTR_ERR(mcbsp->iclk);
1776 dev_err(&pdev->dev, "unable to get ick: %d\n", ret);
1777 goto err_iclk;
1778 }
Stanley.Miao06151152009-01-29 08:57:12 -08001779
Russell Kingb820ce42009-01-23 10:26:46 +00001780 mcbsp->fclk = clk_get(&pdev->dev, "fck");
1781 if (IS_ERR(mcbsp->fclk)) {
1782 ret = PTR_ERR(mcbsp->fclk);
1783 dev_err(&pdev->dev, "unable to get fck: %d\n", ret);
1784 goto err_fclk;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001785 }
1786
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001787 mcbsp->pdata = pdata;
1788 mcbsp->dev = &pdev->dev;
Russell Kingb820ce42009-01-23 10:26:46 +00001789 mcbsp_ptr[id] = mcbsp;
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001790 platform_set_drvdata(pdev, mcbsp);
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001791
1792 /* Initialize mcbsp properties for OMAP34XX if needed / applicable */
1793 omap34xx_device_init(mcbsp);
1794
Russell Kingd592dd12008-09-04 14:25:42 +01001795 return 0;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001796
Russell Kingb820ce42009-01-23 10:26:46 +00001797err_fclk:
1798 clk_put(mcbsp->iclk);
1799err_iclk:
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001800 iounmap(mcbsp->io_base);
Russell Kingd592dd12008-09-04 14:25:42 +01001801err_ioremap:
Russell Kingb820ce42009-01-23 10:26:46 +00001802 kfree(mcbsp);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001803exit:
1804 return ret;
1805}
1806
Uwe Kleine-König25cef222008-10-08 10:01:39 +03001807static int __devexit omap_mcbsp_remove(struct platform_device *pdev)
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001808{
1809 struct omap_mcbsp *mcbsp = platform_get_drvdata(pdev);
1810
1811 platform_set_drvdata(pdev, NULL);
1812 if (mcbsp) {
1813
1814 if (mcbsp->pdata && mcbsp->pdata->ops &&
1815 mcbsp->pdata->ops->free)
1816 mcbsp->pdata->ops->free(mcbsp->id);
1817
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001818 omap34xx_device_exit(mcbsp);
1819
Russell Kingb820ce42009-01-23 10:26:46 +00001820 clk_disable(mcbsp->fclk);
1821 clk_disable(mcbsp->iclk);
1822 clk_put(mcbsp->fclk);
1823 clk_put(mcbsp->iclk);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001824
Russell Kingd592dd12008-09-04 14:25:42 +01001825 iounmap(mcbsp->io_base);
1826
Russell Kingb820ce42009-01-23 10:26:46 +00001827 mcbsp->fclk = NULL;
1828 mcbsp->iclk = NULL;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001829 mcbsp->free = 0;
1830 mcbsp->dev = NULL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001831 }
1832
1833 return 0;
1834}
1835
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001836static struct platform_driver omap_mcbsp_driver = {
1837 .probe = omap_mcbsp_probe,
Uwe Kleine-König25cef222008-10-08 10:01:39 +03001838 .remove = __devexit_p(omap_mcbsp_remove),
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001839 .driver = {
1840 .name = "omap-mcbsp",
1841 },
1842};
1843
1844int __init omap_mcbsp_init(void)
1845{
1846 /* Register the McBSP driver */
1847 return platform_driver_register(&omap_mcbsp_driver);
1848}