blob: 8bab0b28b7a331a8eb8c472a78c6580ed3701a5b [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 Ujfalusi0acce822010-06-03 07:39:32 +0300563u16 omap_mcbsp_get_fifo_size(unsigned int id)
564{
565 struct omap_mcbsp *mcbsp;
566
567 if (!omap_mcbsp_check_valid_id(id)) {
568 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
569 return -ENODEV;
570 }
571 mcbsp = id_to_mcbsp_ptr(id);
572
573 return mcbsp->pdata->buffer_size;
574}
575EXPORT_SYMBOL(omap_mcbsp_get_fifo_size);
576
Peter Ujfalusi7dc976e2010-03-03 15:08:08 +0200577#define MCBSP2_FIFO_SIZE 0x500 /* 1024 + 256 locations */
578#define MCBSP1345_FIFO_SIZE 0x80 /* 128 locations */
579/*
580 * omap_mcbsp_get_tx_delay returns the number of used slots in the McBSP FIFO
581 */
582u16 omap_mcbsp_get_tx_delay(unsigned int id)
583{
584 struct omap_mcbsp *mcbsp;
585 u16 buffstat;
586
587 if (!omap_mcbsp_check_valid_id(id)) {
588 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
589 return -ENODEV;
590 }
591 mcbsp = id_to_mcbsp_ptr(id);
592
593 /* Returns the number of free locations in the buffer */
594 buffstat = MCBSP_READ(mcbsp, XBUFFSTAT);
595
596 /* Number of slots are different in McBSP ports */
597 if (mcbsp->id == 2)
598 return MCBSP2_FIFO_SIZE - buffstat;
599 else
600 return MCBSP1345_FIFO_SIZE - buffstat;
601}
602EXPORT_SYMBOL(omap_mcbsp_get_tx_delay);
603
604/*
605 * omap_mcbsp_get_rx_delay returns the number of free slots in the McBSP FIFO
606 * to reach the threshold value (when the DMA will be triggered to read it)
607 */
608u16 omap_mcbsp_get_rx_delay(unsigned int id)
609{
610 struct omap_mcbsp *mcbsp;
611 u16 buffstat, threshold;
612
613 if (!omap_mcbsp_check_valid_id(id)) {
614 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
615 return -ENODEV;
616 }
617 mcbsp = id_to_mcbsp_ptr(id);
618
619 /* Returns the number of used locations in the buffer */
620 buffstat = MCBSP_READ(mcbsp, RBUFFSTAT);
621 /* RX threshold */
622 threshold = MCBSP_READ(mcbsp, THRSH1);
623
624 /* Return the number of location till we reach the threshold limit */
625 if (threshold <= buffstat)
626 return 0;
627 else
628 return threshold - buffstat;
629}
630EXPORT_SYMBOL(omap_mcbsp_get_rx_delay);
631
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300632/*
633 * omap_mcbsp_get_dma_op_mode just return the current configured
634 * operating mode for the mcbsp channel
635 */
636int omap_mcbsp_get_dma_op_mode(unsigned int id)
637{
638 struct omap_mcbsp *mcbsp;
639 int dma_op_mode;
640
641 if (!omap_mcbsp_check_valid_id(id)) {
642 printk(KERN_ERR "%s: Invalid id (%u)\n", __func__, id + 1);
643 return -ENODEV;
644 }
645 mcbsp = id_to_mcbsp_ptr(id);
646
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300647 dma_op_mode = mcbsp->dma_op_mode;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300648
649 return dma_op_mode;
650}
651EXPORT_SYMBOL(omap_mcbsp_get_dma_op_mode);
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300652
653static inline void omap34xx_mcbsp_request(struct omap_mcbsp *mcbsp)
654{
655 /*
656 * Enable wakup behavior, smart idle and all wakeups
657 * REVISIT: some wakeups may be unnecessary
658 */
Jorge Eduardo Candelaria752ec2f2010-05-12 12:18:40 -0500659 if (cpu_is_omap34xx() || cpu_is_omap44xx()) {
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300660 u16 syscon;
661
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800662 syscon = MCBSP_READ(mcbsp, SYSCON);
Eero Nurkkala2ba93f82009-08-20 16:18:17 +0300663 syscon &= ~(ENAWAKEUP | SIDLEMODE(0x03) | CLOCKACTIVITY(0x03));
Eduardo Valentind99a7452009-08-20 16:18:18 +0300664
Eero Nurkkalafa3935b2009-08-20 16:18:19 +0300665 if (mcbsp->dma_op_mode == MCBSP_DMA_MODE_THRESHOLD) {
666 syscon |= (ENAWAKEUP | SIDLEMODE(0x02) |
667 CLOCKACTIVITY(0x02));
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800668 MCBSP_WRITE(mcbsp, WAKEUPEN, XRDYEN | RRDYEN);
Eero Nurkkalafa3935b2009-08-20 16:18:19 +0300669 } else {
Eduardo Valentind99a7452009-08-20 16:18:18 +0300670 syscon |= SIDLEMODE(0x01);
Eero Nurkkalafa3935b2009-08-20 16:18:19 +0300671 }
Eduardo Valentind99a7452009-08-20 16:18:18 +0300672
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800673 MCBSP_WRITE(mcbsp, SYSCON, syscon);
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300674 }
675}
676
677static inline void omap34xx_mcbsp_free(struct omap_mcbsp *mcbsp)
678{
679 /*
680 * Disable wakup behavior, smart idle and all wakeups
681 */
Jorge Eduardo Candelaria752ec2f2010-05-12 12:18:40 -0500682 if (cpu_is_omap34xx() || cpu_is_omap44xx()) {
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300683 u16 syscon;
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300684
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800685 syscon = MCBSP_READ(mcbsp, SYSCON);
Eero Nurkkala2ba93f82009-08-20 16:18:17 +0300686 syscon &= ~(ENAWAKEUP | SIDLEMODE(0x03) | CLOCKACTIVITY(0x03));
Eero Nurkkala72cc6d72009-08-20 16:18:20 +0300687 /*
688 * HW bug workaround - If no_idle mode is taken, we need to
689 * go to smart_idle before going to always_idle, or the
690 * device will not hit retention anymore.
691 */
692 syscon |= SIDLEMODE(0x02);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800693 MCBSP_WRITE(mcbsp, SYSCON, syscon);
Eero Nurkkala72cc6d72009-08-20 16:18:20 +0300694
695 syscon &= ~(SIDLEMODE(0x03));
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800696 MCBSP_WRITE(mcbsp, SYSCON, syscon);
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300697
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800698 MCBSP_WRITE(mcbsp, WAKEUPEN, 0);
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300699 }
700}
701#else
702static inline void omap34xx_mcbsp_request(struct omap_mcbsp *mcbsp) {}
703static inline void omap34xx_mcbsp_free(struct omap_mcbsp *mcbsp) {}
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000704static inline void omap_st_start(struct omap_mcbsp *mcbsp) {}
705static inline void omap_st_stop(struct omap_mcbsp *mcbsp) {}
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300706#endif
707
Tony Lindgren120db2c2006-04-02 17:46:27 +0100708/*
709 * We can choose between IRQ based or polled IO.
710 * This needs to be called before omap_mcbsp_request().
711 */
712int omap_mcbsp_set_io_type(unsigned int id, omap_mcbsp_io_type_t io_type)
713{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300714 struct omap_mcbsp *mcbsp;
715
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300716 if (!omap_mcbsp_check_valid_id(id)) {
717 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
718 return -ENODEV;
719 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300720 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100721
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300722 spin_lock(&mcbsp->lock);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100723
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300724 if (!mcbsp->free) {
725 dev_err(mcbsp->dev, "McBSP%d is currently in use\n",
726 mcbsp->id);
727 spin_unlock(&mcbsp->lock);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100728 return -EINVAL;
729 }
730
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300731 mcbsp->io_type = io_type;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100732
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300733 spin_unlock(&mcbsp->lock);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100734
735 return 0;
736}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300737EXPORT_SYMBOL(omap_mcbsp_set_io_type);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100738
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100739int omap_mcbsp_request(unsigned int id)
740{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300741 struct omap_mcbsp *mcbsp;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800742 void *reg_cache;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100743 int err;
744
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300745 if (!omap_mcbsp_check_valid_id(id)) {
746 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
747 return -ENODEV;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100748 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300749 mcbsp = id_to_mcbsp_ptr(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300750
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800751 reg_cache = kzalloc(omap_mcbsp_cache_size, GFP_KERNEL);
752 if (!reg_cache) {
753 return -ENOMEM;
754 }
755
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300756 spin_lock(&mcbsp->lock);
757 if (!mcbsp->free) {
758 dev_err(mcbsp->dev, "McBSP%d is currently in use\n",
759 mcbsp->id);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800760 err = -EBUSY;
761 goto err_kfree;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100762 }
763
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300764 mcbsp->free = 0;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800765 mcbsp->reg_cache = reg_cache;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300766 spin_unlock(&mcbsp->lock);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100767
Russell Kingb820ce42009-01-23 10:26:46 +0000768 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->request)
769 mcbsp->pdata->ops->request(id);
770
771 clk_enable(mcbsp->iclk);
772 clk_enable(mcbsp->fclk);
773
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300774 /* Do procedure specific to omap34xx arch, if applicable */
775 omap34xx_mcbsp_request(mcbsp);
776
Jarkko Nikula5a070552008-10-08 10:01:41 +0300777 /*
778 * Make sure that transmitter, receiver and sample-rate generator are
779 * not running before activating IRQs.
780 */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800781 MCBSP_WRITE(mcbsp, SPCR1, 0);
782 MCBSP_WRITE(mcbsp, SPCR2, 0);
Jarkko Nikula5a070552008-10-08 10:01:41 +0300783
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300784 if (mcbsp->io_type == OMAP_MCBSP_IRQ_IO) {
Tony Lindgren120db2c2006-04-02 17:46:27 +0100785 /* We need to get IRQs here */
Jarkko Nikula5a070552008-10-08 10:01:41 +0300786 init_completion(&mcbsp->tx_irq_completion);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300787 err = request_irq(mcbsp->tx_irq, omap_mcbsp_tx_irq_handler,
788 0, "McBSP", (void *)mcbsp);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100789 if (err != 0) {
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300790 dev_err(mcbsp->dev, "Unable to request TX IRQ %d "
791 "for McBSP%d\n", mcbsp->tx_irq,
792 mcbsp->id);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800793 goto err_clk_disable;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100794 }
795
Jorge Eduardo Candelaria9319b9d2010-05-12 12:18:39 -0500796 if (mcbsp->rx_irq) {
797 init_completion(&mcbsp->rx_irq_completion);
798 err = request_irq(mcbsp->rx_irq,
799 omap_mcbsp_rx_irq_handler,
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300800 0, "McBSP", (void *)mcbsp);
Jorge Eduardo Candelaria9319b9d2010-05-12 12:18:39 -0500801 if (err != 0) {
802 dev_err(mcbsp->dev, "Unable to request RX IRQ %d "
803 "for McBSP%d\n", mcbsp->rx_irq,
804 mcbsp->id);
805 goto err_free_irq;
806 }
Tony Lindgren120db2c2006-04-02 17:46:27 +0100807 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100808 }
809
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100810 return 0;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800811err_free_irq:
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800812 free_irq(mcbsp->tx_irq, (void *)mcbsp);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800813err_clk_disable:
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800814 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free)
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800815 mcbsp->pdata->ops->free(id);
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800816
817 /* Do procedure specific to omap34xx arch, if applicable */
818 omap34xx_mcbsp_free(mcbsp);
819
820 clk_disable(mcbsp->fclk);
821 clk_disable(mcbsp->iclk);
822
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800823 spin_lock(&mcbsp->lock);
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800824 mcbsp->free = 1;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800825 mcbsp->reg_cache = NULL;
826err_kfree:
827 spin_unlock(&mcbsp->lock);
828 kfree(reg_cache);
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800829
830 return err;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100831}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300832EXPORT_SYMBOL(omap_mcbsp_request);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100833
834void omap_mcbsp_free(unsigned int id)
835{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300836 struct omap_mcbsp *mcbsp;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800837 void *reg_cache;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300838
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300839 if (!omap_mcbsp_check_valid_id(id)) {
840 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100841 return;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100842 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300843 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100844
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300845 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free)
846 mcbsp->pdata->ops->free(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300847
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300848 /* Do procedure specific to omap34xx arch, if applicable */
849 omap34xx_mcbsp_free(mcbsp);
850
Russell Kingb820ce42009-01-23 10:26:46 +0000851 clk_disable(mcbsp->fclk);
852 clk_disable(mcbsp->iclk);
853
854 if (mcbsp->io_type == OMAP_MCBSP_IRQ_IO) {
855 /* Free IRQs */
Jorge Eduardo Candelaria9319b9d2010-05-12 12:18:39 -0500856 if (mcbsp->rx_irq)
857 free_irq(mcbsp->rx_irq, (void *)mcbsp);
Russell Kingb820ce42009-01-23 10:26:46 +0000858 free_irq(mcbsp->tx_irq, (void *)mcbsp);
859 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100860
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800861 reg_cache = mcbsp->reg_cache;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100862
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800863 spin_lock(&mcbsp->lock);
864 if (mcbsp->free)
865 dev_err(mcbsp->dev, "McBSP%d was not reserved\n", mcbsp->id);
866 else
867 mcbsp->free = 1;
868 mcbsp->reg_cache = NULL;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300869 spin_unlock(&mcbsp->lock);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800870
871 if (reg_cache)
872 kfree(reg_cache);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100873}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300874EXPORT_SYMBOL(omap_mcbsp_free);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100875
876/*
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300877 * Here we start the McBSP, by enabling transmitter, receiver or both.
878 * If no transmitter or receiver is active prior calling, then sample-rate
879 * generator and frame sync are started.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100880 */
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300881void omap_mcbsp_start(unsigned int id, int tx, int rx)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100882{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300883 struct omap_mcbsp *mcbsp;
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300884 int idle;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100885 u16 w;
886
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300887 if (!omap_mcbsp_check_valid_id(id)) {
888 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100889 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300890 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300891 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100892
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000893 if (cpu_is_omap34xx())
894 omap_st_start(mcbsp);
895
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800896 mcbsp->rx_word_length = (MCBSP_READ_CACHE(mcbsp, RCR1) >> 5) & 0x7;
897 mcbsp->tx_word_length = (MCBSP_READ_CACHE(mcbsp, XCR1) >> 5) & 0x7;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100898
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800899 idle = !((MCBSP_READ_CACHE(mcbsp, SPCR2) |
900 MCBSP_READ_CACHE(mcbsp, SPCR1)) & 1);
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300901
902 if (idle) {
903 /* Start the sample generator */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800904 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800905 MCBSP_WRITE(mcbsp, SPCR2, w | (1 << 6));
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300906 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100907
908 /* Enable transmitter and receiver */
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300909 tx &= 1;
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800910 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800911 MCBSP_WRITE(mcbsp, SPCR2, w | tx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100912
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300913 rx &= 1;
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800914 w = MCBSP_READ_CACHE(mcbsp, SPCR1);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800915 MCBSP_WRITE(mcbsp, SPCR1, w | rx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100916
Eduardo Valentin44a63112009-08-20 16:18:09 +0300917 /*
918 * Worst case: CLKSRG*2 = 8000khz: (1/8000) * 2 * 2 usec
919 * REVISIT: 100us may give enough time for two CLKSRG, however
920 * due to some unknown PM related, clock gating etc. reason it
921 * is now at 500us.
922 */
923 udelay(500);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100924
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300925 if (idle) {
926 /* Start frame sync */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800927 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800928 MCBSP_WRITE(mcbsp, SPCR2, w | (1 << 7));
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300929 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100930
Jorge Eduardo Candelaria752ec2f2010-05-12 12:18:40 -0500931 if (cpu_is_omap2430() || cpu_is_omap34xx() || cpu_is_omap44xx()) {
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300932 /* Release the transmitter and receiver */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800933 w = MCBSP_READ_CACHE(mcbsp, XCCR);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300934 w &= ~(tx ? XDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800935 MCBSP_WRITE(mcbsp, XCCR, w);
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800936 w = MCBSP_READ_CACHE(mcbsp, RCCR);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300937 w &= ~(rx ? RDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800938 MCBSP_WRITE(mcbsp, RCCR, w);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300939 }
940
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100941 /* Dump McBSP Regs */
942 omap_mcbsp_dump_reg(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100943}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300944EXPORT_SYMBOL(omap_mcbsp_start);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100945
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300946void omap_mcbsp_stop(unsigned int id, int tx, int rx)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100947{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300948 struct omap_mcbsp *mcbsp;
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300949 int idle;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100950 u16 w;
951
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300952 if (!omap_mcbsp_check_valid_id(id)) {
953 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100954 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300955 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100956
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300957 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100958
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300959 /* Reset transmitter */
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300960 tx &= 1;
Jorge Eduardo Candelaria752ec2f2010-05-12 12:18:40 -0500961 if (cpu_is_omap2430() || cpu_is_omap34xx() || cpu_is_omap44xx()) {
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800962 w = MCBSP_READ_CACHE(mcbsp, XCCR);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300963 w |= (tx ? XDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800964 MCBSP_WRITE(mcbsp, XCCR, w);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300965 }
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800966 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800967 MCBSP_WRITE(mcbsp, SPCR2, w & ~tx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100968
969 /* Reset receiver */
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300970 rx &= 1;
Jorge Eduardo Candelaria752ec2f2010-05-12 12:18:40 -0500971 if (cpu_is_omap2430() || cpu_is_omap34xx() || cpu_is_omap44xx()) {
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800972 w = MCBSP_READ_CACHE(mcbsp, RCCR);
Jarkko Nikulaa93d4ed2009-10-14 09:56:35 -0700973 w |= (rx ? RDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800974 MCBSP_WRITE(mcbsp, RCCR, w);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300975 }
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800976 w = MCBSP_READ_CACHE(mcbsp, SPCR1);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800977 MCBSP_WRITE(mcbsp, SPCR1, w & ~rx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100978
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800979 idle = !((MCBSP_READ_CACHE(mcbsp, SPCR2) |
980 MCBSP_READ_CACHE(mcbsp, SPCR1)) & 1);
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300981
982 if (idle) {
983 /* Reset the sample rate generator */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800984 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800985 MCBSP_WRITE(mcbsp, SPCR2, w & ~(1 << 6));
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300986 }
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000987
988 if (cpu_is_omap34xx())
989 omap_st_stop(mcbsp);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100990}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300991EXPORT_SYMBOL(omap_mcbsp_stop);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100992
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100993/* polled mcbsp i/o operations */
994int omap_mcbsp_pollwrite(unsigned int id, u16 buf)
995{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300996 struct omap_mcbsp *mcbsp;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300997
998 if (!omap_mcbsp_check_valid_id(id)) {
999 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1000 return -ENODEV;
1001 }
1002
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001003 mcbsp = id_to_mcbsp_ptr(id);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001004
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001005 MCBSP_WRITE(mcbsp, DXR1, buf);
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001006 /* if frame sync error - clear the error */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001007 if (MCBSP_READ(mcbsp, SPCR2) & XSYNC_ERR) {
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001008 /* clear error */
Janusz Krzysztofik0841cb82010-02-23 15:50:38 +00001009 MCBSP_WRITE(mcbsp, SPCR2, MCBSP_READ_CACHE(mcbsp, SPCR2));
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001010 /* resend */
1011 return -1;
1012 } else {
1013 /* wait for transmit confirmation */
1014 int attemps = 0;
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001015 while (!(MCBSP_READ(mcbsp, SPCR2) & XRDY)) {
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001016 if (attemps++ > 1000) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001017 MCBSP_WRITE(mcbsp, SPCR2,
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001018 MCBSP_READ_CACHE(mcbsp, SPCR2) &
1019 (~XRST));
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001020 udelay(10);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001021 MCBSP_WRITE(mcbsp, SPCR2,
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001022 MCBSP_READ_CACHE(mcbsp, SPCR2) |
1023 (XRST));
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001024 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001025 dev_err(mcbsp->dev, "Could not write to"
1026 " McBSP%d Register\n", mcbsp->id);
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001027 return -2;
1028 }
1029 }
1030 }
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001031
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001032 return 0;
1033}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001034EXPORT_SYMBOL(omap_mcbsp_pollwrite);
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001035
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001036int omap_mcbsp_pollread(unsigned int id, u16 *buf)
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001037{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001038 struct omap_mcbsp *mcbsp;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001039
1040 if (!omap_mcbsp_check_valid_id(id)) {
1041 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1042 return -ENODEV;
1043 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001044 mcbsp = id_to_mcbsp_ptr(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001045
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001046 /* if frame sync error - clear the error */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001047 if (MCBSP_READ(mcbsp, SPCR1) & RSYNC_ERR) {
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001048 /* clear error */
Janusz Krzysztofik0841cb82010-02-23 15:50:38 +00001049 MCBSP_WRITE(mcbsp, SPCR1, MCBSP_READ_CACHE(mcbsp, SPCR1));
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001050 /* resend */
1051 return -1;
1052 } else {
1053 /* wait for recieve confirmation */
1054 int attemps = 0;
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001055 while (!(MCBSP_READ(mcbsp, SPCR1) & RRDY)) {
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001056 if (attemps++ > 1000) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001057 MCBSP_WRITE(mcbsp, SPCR1,
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001058 MCBSP_READ_CACHE(mcbsp, SPCR1) &
1059 (~RRST));
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001060 udelay(10);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001061 MCBSP_WRITE(mcbsp, SPCR1,
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001062 MCBSP_READ_CACHE(mcbsp, SPCR1) |
1063 (RRST));
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001064 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001065 dev_err(mcbsp->dev, "Could not read from"
1066 " McBSP%d Register\n", mcbsp->id);
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001067 return -2;
1068 }
1069 }
1070 }
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001071 *buf = MCBSP_READ(mcbsp, DRR1);
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001072
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001073 return 0;
1074}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001075EXPORT_SYMBOL(omap_mcbsp_pollread);
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001076
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001077/*
1078 * IRQ based word transmission.
1079 */
1080void omap_mcbsp_xmit_word(unsigned int id, u32 word)
1081{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001082 struct omap_mcbsp *mcbsp;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001083 omap_mcbsp_word_length word_length;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001084
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001085 if (!omap_mcbsp_check_valid_id(id)) {
1086 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001087 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001088 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001089
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001090 mcbsp = id_to_mcbsp_ptr(id);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001091 word_length = mcbsp->tx_word_length;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001092
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001093 wait_for_completion(&mcbsp->tx_irq_completion);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001094
1095 if (word_length > OMAP_MCBSP_WORD_16)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001096 MCBSP_WRITE(mcbsp, DXR2, word >> 16);
1097 MCBSP_WRITE(mcbsp, DXR1, word & 0xffff);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001098}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001099EXPORT_SYMBOL(omap_mcbsp_xmit_word);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001100
1101u32 omap_mcbsp_recv_word(unsigned int id)
1102{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001103 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001104 u16 word_lsb, word_msb = 0;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001105 omap_mcbsp_word_length word_length;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001106
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001107 if (!omap_mcbsp_check_valid_id(id)) {
1108 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1109 return -ENODEV;
1110 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001111 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001112
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001113 word_length = mcbsp->rx_word_length;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001114
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001115 wait_for_completion(&mcbsp->rx_irq_completion);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001116
1117 if (word_length > OMAP_MCBSP_WORD_16)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001118 word_msb = MCBSP_READ(mcbsp, DRR2);
1119 word_lsb = MCBSP_READ(mcbsp, DRR1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001120
1121 return (word_lsb | (word_msb << 16));
1122}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001123EXPORT_SYMBOL(omap_mcbsp_recv_word);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001124
Tony Lindgren120db2c2006-04-02 17:46:27 +01001125int omap_mcbsp_spi_master_xmit_word_poll(unsigned int id, u32 word)
1126{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001127 struct omap_mcbsp *mcbsp;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001128 omap_mcbsp_word_length tx_word_length;
1129 omap_mcbsp_word_length rx_word_length;
Tony Lindgren120db2c2006-04-02 17:46:27 +01001130 u16 spcr2, spcr1, attempts = 0, word_lsb, word_msb = 0;
1131
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001132 if (!omap_mcbsp_check_valid_id(id)) {
1133 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1134 return -ENODEV;
1135 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001136 mcbsp = id_to_mcbsp_ptr(id);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001137 tx_word_length = mcbsp->tx_word_length;
1138 rx_word_length = mcbsp->rx_word_length;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001139
Tony Lindgren120db2c2006-04-02 17:46:27 +01001140 if (tx_word_length != rx_word_length)
1141 return -EINVAL;
1142
1143 /* First we wait for the transmitter to be ready */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001144 spcr2 = MCBSP_READ(mcbsp, SPCR2);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001145 while (!(spcr2 & XRDY)) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001146 spcr2 = MCBSP_READ(mcbsp, SPCR2);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001147 if (attempts++ > 1000) {
1148 /* We must reset the transmitter */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001149 MCBSP_WRITE(mcbsp, SPCR2,
1150 MCBSP_READ_CACHE(mcbsp, SPCR2) & (~XRST));
Tony Lindgren120db2c2006-04-02 17:46:27 +01001151 udelay(10);
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001152 MCBSP_WRITE(mcbsp, SPCR2,
1153 MCBSP_READ_CACHE(mcbsp, SPCR2) | XRST);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001154 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001155 dev_err(mcbsp->dev, "McBSP%d transmitter not "
1156 "ready\n", mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001157 return -EAGAIN;
1158 }
1159 }
1160
1161 /* Now we can push the data */
1162 if (tx_word_length > OMAP_MCBSP_WORD_16)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001163 MCBSP_WRITE(mcbsp, DXR2, word >> 16);
1164 MCBSP_WRITE(mcbsp, DXR1, word & 0xffff);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001165
1166 /* We wait for the receiver to be ready */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001167 spcr1 = MCBSP_READ(mcbsp, SPCR1);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001168 while (!(spcr1 & RRDY)) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001169 spcr1 = MCBSP_READ(mcbsp, SPCR1);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001170 if (attempts++ > 1000) {
1171 /* We must reset the receiver */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001172 MCBSP_WRITE(mcbsp, SPCR1,
1173 MCBSP_READ_CACHE(mcbsp, SPCR1) & (~RRST));
Tony Lindgren120db2c2006-04-02 17:46:27 +01001174 udelay(10);
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001175 MCBSP_WRITE(mcbsp, SPCR1,
1176 MCBSP_READ_CACHE(mcbsp, SPCR1) | RRST);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001177 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001178 dev_err(mcbsp->dev, "McBSP%d receiver not "
1179 "ready\n", mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001180 return -EAGAIN;
1181 }
1182 }
1183
1184 /* Receiver is ready, let's read the dummy data */
1185 if (rx_word_length > OMAP_MCBSP_WORD_16)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001186 word_msb = MCBSP_READ(mcbsp, DRR2);
1187 word_lsb = MCBSP_READ(mcbsp, DRR1);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001188
1189 return 0;
1190}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001191EXPORT_SYMBOL(omap_mcbsp_spi_master_xmit_word_poll);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001192
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001193int omap_mcbsp_spi_master_recv_word_poll(unsigned int id, u32 *word)
Tony Lindgren120db2c2006-04-02 17:46:27 +01001194{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001195 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +01001196 u32 clock_word = 0;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001197 omap_mcbsp_word_length tx_word_length;
1198 omap_mcbsp_word_length rx_word_length;
Tony Lindgren120db2c2006-04-02 17:46:27 +01001199 u16 spcr2, spcr1, attempts = 0, word_lsb, word_msb = 0;
1200
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001201 if (!omap_mcbsp_check_valid_id(id)) {
1202 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1203 return -ENODEV;
1204 }
1205
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001206 mcbsp = id_to_mcbsp_ptr(id);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001207
1208 tx_word_length = mcbsp->tx_word_length;
1209 rx_word_length = mcbsp->rx_word_length;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001210
Tony Lindgren120db2c2006-04-02 17:46:27 +01001211 if (tx_word_length != rx_word_length)
1212 return -EINVAL;
1213
1214 /* First we wait for the transmitter to be ready */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001215 spcr2 = MCBSP_READ(mcbsp, SPCR2);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001216 while (!(spcr2 & XRDY)) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001217 spcr2 = MCBSP_READ(mcbsp, SPCR2);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001218 if (attempts++ > 1000) {
1219 /* We must reset the transmitter */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001220 MCBSP_WRITE(mcbsp, SPCR2,
1221 MCBSP_READ_CACHE(mcbsp, SPCR2) & (~XRST));
Tony Lindgren120db2c2006-04-02 17:46:27 +01001222 udelay(10);
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001223 MCBSP_WRITE(mcbsp, SPCR2,
1224 MCBSP_READ_CACHE(mcbsp, SPCR2) | XRST);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001225 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001226 dev_err(mcbsp->dev, "McBSP%d transmitter not "
1227 "ready\n", mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001228 return -EAGAIN;
1229 }
1230 }
1231
1232 /* We first need to enable the bus clock */
1233 if (tx_word_length > OMAP_MCBSP_WORD_16)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001234 MCBSP_WRITE(mcbsp, DXR2, clock_word >> 16);
1235 MCBSP_WRITE(mcbsp, DXR1, clock_word & 0xffff);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001236
1237 /* We wait for the receiver to be ready */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001238 spcr1 = MCBSP_READ(mcbsp, SPCR1);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001239 while (!(spcr1 & RRDY)) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001240 spcr1 = MCBSP_READ(mcbsp, SPCR1);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001241 if (attempts++ > 1000) {
1242 /* We must reset the receiver */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001243 MCBSP_WRITE(mcbsp, SPCR1,
1244 MCBSP_READ_CACHE(mcbsp, SPCR1) & (~RRST));
Tony Lindgren120db2c2006-04-02 17:46:27 +01001245 udelay(10);
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001246 MCBSP_WRITE(mcbsp, SPCR1,
1247 MCBSP_READ_CACHE(mcbsp, SPCR1) | RRST);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001248 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001249 dev_err(mcbsp->dev, "McBSP%d receiver not "
1250 "ready\n", mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001251 return -EAGAIN;
1252 }
1253 }
1254
1255 /* Receiver is ready, there is something for us */
1256 if (rx_word_length > OMAP_MCBSP_WORD_16)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001257 word_msb = MCBSP_READ(mcbsp, DRR2);
1258 word_lsb = MCBSP_READ(mcbsp, DRR1);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001259
1260 word[0] = (word_lsb | (word_msb << 16));
1261
1262 return 0;
1263}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001264EXPORT_SYMBOL(omap_mcbsp_spi_master_recv_word_poll);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001265
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001266/*
1267 * Simple DMA based buffer rx/tx routines.
1268 * Nothing fancy, just a single buffer tx/rx through DMA.
1269 * The DMA resources are released once the transfer is done.
1270 * For anything fancier, you should use your own customized DMA
1271 * routines and callbacks.
1272 */
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001273int omap_mcbsp_xmit_buffer(unsigned int id, dma_addr_t buffer,
1274 unsigned int length)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001275{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001276 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001277 int dma_tx_ch;
Tony Lindgren120db2c2006-04-02 17:46:27 +01001278 int src_port = 0;
1279 int dest_port = 0;
1280 int sync_dev = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001281
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001282 if (!omap_mcbsp_check_valid_id(id)) {
1283 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1284 return -ENODEV;
1285 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001286 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001287
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001288 if (omap_request_dma(mcbsp->dma_tx_sync, "McBSP TX",
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001289 omap_mcbsp_tx_dma_callback,
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001290 mcbsp,
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001291 &dma_tx_ch)) {
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001292 dev_err(mcbsp->dev, " Unable to request DMA channel for "
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001293 "McBSP%d TX. Trying IRQ based TX\n",
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001294 mcbsp->id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001295 return -EAGAIN;
1296 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001297 mcbsp->dma_tx_lch = dma_tx_ch;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001298
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001299 dev_err(mcbsp->dev, "McBSP%d TX DMA on channel %d\n", mcbsp->id,
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001300 dma_tx_ch);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001301
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001302 init_completion(&mcbsp->tx_dma_completion);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001303
Tony Lindgren120db2c2006-04-02 17:46:27 +01001304 if (cpu_class_is_omap1()) {
1305 src_port = OMAP_DMA_PORT_TIPB;
1306 dest_port = OMAP_DMA_PORT_EMIFF;
1307 }
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001308 if (cpu_class_is_omap2())
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001309 sync_dev = mcbsp->dma_tx_sync;
Tony Lindgren120db2c2006-04-02 17:46:27 +01001310
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001311 omap_set_dma_transfer_params(mcbsp->dma_tx_lch,
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001312 OMAP_DMA_DATA_TYPE_S16,
1313 length >> 1, 1,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +00001314 OMAP_DMA_SYNC_ELEMENT,
Tony Lindgren120db2c2006-04-02 17:46:27 +01001315 sync_dev, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001316
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001317 omap_set_dma_dest_params(mcbsp->dma_tx_lch,
Tony Lindgren120db2c2006-04-02 17:46:27 +01001318 src_port,
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001319 OMAP_DMA_AMODE_CONSTANT,
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001320 mcbsp->phys_base + OMAP_MCBSP_REG_DXR1,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +00001321 0, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001322
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001323 omap_set_dma_src_params(mcbsp->dma_tx_lch,
Tony Lindgren120db2c2006-04-02 17:46:27 +01001324 dest_port,
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001325 OMAP_DMA_AMODE_POST_INC,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +00001326 buffer,
1327 0, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001328
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001329 omap_start_dma(mcbsp->dma_tx_lch);
1330 wait_for_completion(&mcbsp->tx_dma_completion);
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001331
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001332 return 0;
1333}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001334EXPORT_SYMBOL(omap_mcbsp_xmit_buffer);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001335
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001336int omap_mcbsp_recv_buffer(unsigned int id, dma_addr_t buffer,
1337 unsigned int length)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001338{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001339 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001340 int dma_rx_ch;
Tony Lindgren120db2c2006-04-02 17:46:27 +01001341 int src_port = 0;
1342 int dest_port = 0;
1343 int sync_dev = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001344
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001345 if (!omap_mcbsp_check_valid_id(id)) {
1346 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1347 return -ENODEV;
1348 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001349 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001350
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001351 if (omap_request_dma(mcbsp->dma_rx_sync, "McBSP RX",
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001352 omap_mcbsp_rx_dma_callback,
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001353 mcbsp,
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001354 &dma_rx_ch)) {
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001355 dev_err(mcbsp->dev, "Unable to request DMA channel for "
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001356 "McBSP%d RX. Trying IRQ based RX\n",
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001357 mcbsp->id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001358 return -EAGAIN;
1359 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001360 mcbsp->dma_rx_lch = dma_rx_ch;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001361
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001362 dev_err(mcbsp->dev, "McBSP%d RX DMA on channel %d\n", mcbsp->id,
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001363 dma_rx_ch);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001364
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001365 init_completion(&mcbsp->rx_dma_completion);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001366
Tony Lindgren120db2c2006-04-02 17:46:27 +01001367 if (cpu_class_is_omap1()) {
1368 src_port = OMAP_DMA_PORT_TIPB;
1369 dest_port = OMAP_DMA_PORT_EMIFF;
1370 }
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001371 if (cpu_class_is_omap2())
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001372 sync_dev = mcbsp->dma_rx_sync;
Tony Lindgren120db2c2006-04-02 17:46:27 +01001373
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001374 omap_set_dma_transfer_params(mcbsp->dma_rx_lch,
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001375 OMAP_DMA_DATA_TYPE_S16,
1376 length >> 1, 1,
1377 OMAP_DMA_SYNC_ELEMENT,
1378 sync_dev, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001379
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001380 omap_set_dma_src_params(mcbsp->dma_rx_lch,
Tony Lindgren120db2c2006-04-02 17:46:27 +01001381 src_port,
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001382 OMAP_DMA_AMODE_CONSTANT,
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001383 mcbsp->phys_base + OMAP_MCBSP_REG_DRR1,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +00001384 0, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001385
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001386 omap_set_dma_dest_params(mcbsp->dma_rx_lch,
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001387 dest_port,
1388 OMAP_DMA_AMODE_POST_INC,
1389 buffer,
1390 0, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001391
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001392 omap_start_dma(mcbsp->dma_rx_lch);
1393 wait_for_completion(&mcbsp->rx_dma_completion);
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001394
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001395 return 0;
1396}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001397EXPORT_SYMBOL(omap_mcbsp_recv_buffer);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001398
1399/*
1400 * SPI wrapper.
1401 * Since SPI setup is much simpler than the generic McBSP one,
1402 * this wrapper just need an omap_mcbsp_spi_cfg structure as an input.
1403 * Once this is done, you can call omap_mcbsp_start().
1404 */
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001405void omap_mcbsp_set_spi_mode(unsigned int id,
1406 const struct omap_mcbsp_spi_cfg *spi_cfg)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001407{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001408 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001409 struct omap_mcbsp_reg_cfg mcbsp_cfg;
1410
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001411 if (!omap_mcbsp_check_valid_id(id)) {
1412 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001413 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001414 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001415 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001416
1417 memset(&mcbsp_cfg, 0, sizeof(struct omap_mcbsp_reg_cfg));
1418
1419 /* SPI has only one frame */
1420 mcbsp_cfg.rcr1 |= (RWDLEN1(spi_cfg->word_length) | RFRLEN1(0));
1421 mcbsp_cfg.xcr1 |= (XWDLEN1(spi_cfg->word_length) | XFRLEN1(0));
1422
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001423 /* Clock stop mode */
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001424 if (spi_cfg->clk_stp_mode == OMAP_MCBSP_CLK_STP_MODE_NO_DELAY)
1425 mcbsp_cfg.spcr1 |= (1 << 12);
1426 else
1427 mcbsp_cfg.spcr1 |= (3 << 11);
1428
1429 /* Set clock parities */
1430 if (spi_cfg->rx_clock_polarity == OMAP_MCBSP_CLK_RISING)
1431 mcbsp_cfg.pcr0 |= CLKRP;
1432 else
1433 mcbsp_cfg.pcr0 &= ~CLKRP;
1434
1435 if (spi_cfg->tx_clock_polarity == OMAP_MCBSP_CLK_RISING)
1436 mcbsp_cfg.pcr0 &= ~CLKXP;
1437 else
1438 mcbsp_cfg.pcr0 |= CLKXP;
1439
1440 /* Set SCLKME to 0 and CLKSM to 1 */
1441 mcbsp_cfg.pcr0 &= ~SCLKME;
1442 mcbsp_cfg.srgr2 |= CLKSM;
1443
1444 /* Set FSXP */
1445 if (spi_cfg->fsx_polarity == OMAP_MCBSP_FS_ACTIVE_HIGH)
1446 mcbsp_cfg.pcr0 &= ~FSXP;
1447 else
1448 mcbsp_cfg.pcr0 |= FSXP;
1449
1450 if (spi_cfg->spi_mode == OMAP_MCBSP_SPI_MASTER) {
1451 mcbsp_cfg.pcr0 |= CLKXM;
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001452 mcbsp_cfg.srgr1 |= CLKGDV(spi_cfg->clk_div - 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001453 mcbsp_cfg.pcr0 |= FSXM;
1454 mcbsp_cfg.srgr2 &= ~FSGM;
1455 mcbsp_cfg.xcr2 |= XDATDLY(1);
1456 mcbsp_cfg.rcr2 |= RDATDLY(1);
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001457 } else {
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001458 mcbsp_cfg.pcr0 &= ~CLKXM;
1459 mcbsp_cfg.srgr1 |= CLKGDV(1);
1460 mcbsp_cfg.pcr0 &= ~FSXM;
1461 mcbsp_cfg.xcr2 &= ~XDATDLY(3);
1462 mcbsp_cfg.rcr2 &= ~RDATDLY(3);
1463 }
1464
1465 mcbsp_cfg.xcr2 &= ~XPHASE;
1466 mcbsp_cfg.rcr2 &= ~RPHASE;
1467
1468 omap_mcbsp_config(id, &mcbsp_cfg);
1469}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001470EXPORT_SYMBOL(omap_mcbsp_set_spi_mode);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001471
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -08001472#ifdef CONFIG_ARCH_OMAP3
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001473#define max_thres(m) (mcbsp->pdata->buffer_size)
1474#define valid_threshold(m, val) ((val) <= max_thres(m))
1475#define THRESHOLD_PROP_BUILDER(prop) \
1476static ssize_t prop##_show(struct device *dev, \
1477 struct device_attribute *attr, char *buf) \
1478{ \
1479 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev); \
1480 \
1481 return sprintf(buf, "%u\n", mcbsp->prop); \
1482} \
1483 \
1484static ssize_t prop##_store(struct device *dev, \
1485 struct device_attribute *attr, \
1486 const char *buf, size_t size) \
1487{ \
1488 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev); \
1489 unsigned long val; \
1490 int status; \
1491 \
1492 status = strict_strtoul(buf, 0, &val); \
1493 if (status) \
1494 return status; \
1495 \
1496 if (!valid_threshold(mcbsp, val)) \
1497 return -EDOM; \
1498 \
1499 mcbsp->prop = val; \
1500 return size; \
1501} \
1502 \
1503static DEVICE_ATTR(prop, 0644, prop##_show, prop##_store);
1504
1505THRESHOLD_PROP_BUILDER(max_tx_thres);
1506THRESHOLD_PROP_BUILDER(max_rx_thres);
1507
Jarkko Nikula9b300502009-08-24 17:45:50 +03001508static const char *dma_op_modes[] = {
1509 "element", "threshold", "frame",
1510};
1511
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001512static ssize_t dma_op_mode_show(struct device *dev,
1513 struct device_attribute *attr, char *buf)
1514{
1515 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
Jarkko Nikula9b300502009-08-24 17:45:50 +03001516 int dma_op_mode, i = 0;
1517 ssize_t len = 0;
1518 const char * const *s;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001519
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001520 dma_op_mode = mcbsp->dma_op_mode;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001521
Jarkko Nikula9b300502009-08-24 17:45:50 +03001522 for (s = &dma_op_modes[i]; i < ARRAY_SIZE(dma_op_modes); s++, i++) {
1523 if (dma_op_mode == i)
1524 len += sprintf(buf + len, "[%s] ", *s);
1525 else
1526 len += sprintf(buf + len, "%s ", *s);
1527 }
1528 len += sprintf(buf + len, "\n");
1529
1530 return len;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001531}
1532
1533static ssize_t dma_op_mode_store(struct device *dev,
1534 struct device_attribute *attr,
1535 const char *buf, size_t size)
1536{
1537 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
Jarkko Nikula9b300502009-08-24 17:45:50 +03001538 const char * const *s;
1539 int i = 0;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001540
Jarkko Nikula9b300502009-08-24 17:45:50 +03001541 for (s = &dma_op_modes[i]; i < ARRAY_SIZE(dma_op_modes); s++, i++)
1542 if (sysfs_streq(buf, *s))
1543 break;
1544
1545 if (i == ARRAY_SIZE(dma_op_modes))
1546 return -EINVAL;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001547
1548 spin_lock_irq(&mcbsp->lock);
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001549 if (!mcbsp->free) {
1550 size = -EBUSY;
1551 goto unlock;
1552 }
Jarkko Nikula9b300502009-08-24 17:45:50 +03001553 mcbsp->dma_op_mode = i;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001554
1555unlock:
1556 spin_unlock_irq(&mcbsp->lock);
1557
1558 return size;
1559}
1560
1561static DEVICE_ATTR(dma_op_mode, 0644, dma_op_mode_show, dma_op_mode_store);
1562
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001563static ssize_t st_taps_show(struct device *dev,
1564 struct device_attribute *attr, char *buf)
1565{
1566 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
1567 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
1568 ssize_t status = 0;
1569 int i;
1570
1571 spin_lock_irq(&mcbsp->lock);
1572 for (i = 0; i < st_data->nr_taps; i++)
1573 status += sprintf(&buf[status], (i ? ", %d" : "%d"),
1574 st_data->taps[i]);
1575 if (i)
1576 status += sprintf(&buf[status], "\n");
1577 spin_unlock_irq(&mcbsp->lock);
1578
1579 return status;
1580}
1581
1582static ssize_t st_taps_store(struct device *dev,
1583 struct device_attribute *attr,
1584 const char *buf, size_t size)
1585{
1586 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
1587 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
1588 int val, tmp, status, i = 0;
1589
1590 spin_lock_irq(&mcbsp->lock);
1591 memset(st_data->taps, 0, sizeof(st_data->taps));
1592 st_data->nr_taps = 0;
1593
1594 do {
1595 status = sscanf(buf, "%d%n", &val, &tmp);
1596 if (status < 0 || status == 0) {
1597 size = -EINVAL;
1598 goto out;
1599 }
1600 if (val < -32768 || val > 32767) {
1601 size = -EINVAL;
1602 goto out;
1603 }
1604 st_data->taps[i++] = val;
1605 buf += tmp;
1606 if (*buf != ',')
1607 break;
1608 buf++;
1609 } while (1);
1610
1611 st_data->nr_taps = i;
1612
1613out:
1614 spin_unlock_irq(&mcbsp->lock);
1615
1616 return size;
1617}
1618
1619static DEVICE_ATTR(st_taps, 0644, st_taps_show, st_taps_store);
1620
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001621static const struct attribute *additional_attrs[] = {
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001622 &dev_attr_max_tx_thres.attr,
1623 &dev_attr_max_rx_thres.attr,
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001624 &dev_attr_dma_op_mode.attr,
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001625 NULL,
1626};
1627
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001628static const struct attribute_group additional_attr_group = {
1629 .attrs = (struct attribute **)additional_attrs,
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001630};
1631
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001632static inline int __devinit omap_additional_add(struct device *dev)
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001633{
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001634 return sysfs_create_group(&dev->kobj, &additional_attr_group);
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001635}
1636
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001637static inline void __devexit omap_additional_remove(struct device *dev)
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001638{
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001639 sysfs_remove_group(&dev->kobj, &additional_attr_group);
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001640}
1641
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001642static const struct attribute *sidetone_attrs[] = {
1643 &dev_attr_st_taps.attr,
1644 NULL,
1645};
1646
1647static const struct attribute_group sidetone_attr_group = {
1648 .attrs = (struct attribute **)sidetone_attrs,
1649};
1650
1651int __devinit omap_st_add(struct omap_mcbsp *mcbsp)
1652{
1653 struct omap_mcbsp_platform_data *pdata = mcbsp->pdata;
1654 struct omap_mcbsp_st_data *st_data;
1655 int err;
1656
1657 st_data = kzalloc(sizeof(*mcbsp->st_data), GFP_KERNEL);
1658 if (!st_data) {
1659 err = -ENOMEM;
1660 goto err1;
1661 }
1662
1663 st_data->io_base_st = ioremap(pdata->phys_base_st, SZ_4K);
1664 if (!st_data->io_base_st) {
1665 err = -ENOMEM;
1666 goto err2;
1667 }
1668
1669 err = sysfs_create_group(&mcbsp->dev->kobj, &sidetone_attr_group);
1670 if (err)
1671 goto err3;
1672
1673 mcbsp->st_data = st_data;
1674 return 0;
1675
1676err3:
1677 iounmap(st_data->io_base_st);
1678err2:
1679 kfree(st_data);
1680err1:
1681 return err;
1682
1683}
1684
1685static void __devexit omap_st_remove(struct omap_mcbsp *mcbsp)
1686{
1687 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
1688
1689 if (st_data) {
1690 sysfs_remove_group(&mcbsp->dev->kobj, &sidetone_attr_group);
1691 iounmap(st_data->io_base_st);
1692 kfree(st_data);
1693 }
1694}
1695
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001696static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp)
1697{
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001698 mcbsp->dma_op_mode = MCBSP_DMA_MODE_ELEMENT;
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001699 if (cpu_is_omap34xx()) {
1700 mcbsp->max_tx_thres = max_thres(mcbsp);
1701 mcbsp->max_rx_thres = max_thres(mcbsp);
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001702 /*
1703 * REVISIT: Set dmap_op_mode to THRESHOLD as default
1704 * for mcbsp2 instances.
1705 */
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001706 if (omap_additional_add(mcbsp->dev))
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001707 dev_warn(mcbsp->dev,
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001708 "Unable to create additional controls\n");
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001709
1710 if (mcbsp->id == 2 || mcbsp->id == 3)
1711 if (omap_st_add(mcbsp))
1712 dev_warn(mcbsp->dev,
1713 "Unable to create sidetone controls\n");
1714
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001715 } else {
1716 mcbsp->max_tx_thres = -EINVAL;
1717 mcbsp->max_rx_thres = -EINVAL;
1718 }
1719}
1720
1721static inline void __devexit omap34xx_device_exit(struct omap_mcbsp *mcbsp)
1722{
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001723 if (cpu_is_omap34xx()) {
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001724 omap_additional_remove(mcbsp->dev);
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001725
1726 if (mcbsp->id == 2 || mcbsp->id == 3)
1727 omap_st_remove(mcbsp);
1728 }
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001729}
1730#else
1731static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp) {}
1732static inline void __devexit omap34xx_device_exit(struct omap_mcbsp *mcbsp) {}
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -08001733#endif /* CONFIG_ARCH_OMAP3 */
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001734
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001735/*
1736 * McBSP1 and McBSP3 are directly mapped on 1610 and 1510.
1737 * 730 has only 2 McBSP, and both of them are MPU peripherals.
1738 */
Uwe Kleine-König25cef222008-10-08 10:01:39 +03001739static int __devinit omap_mcbsp_probe(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001740{
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001741 struct omap_mcbsp_platform_data *pdata = pdev->dev.platform_data;
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001742 struct omap_mcbsp *mcbsp;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001743 int id = pdev->id - 1;
1744 int ret = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001745
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001746 if (!pdata) {
1747 dev_err(&pdev->dev, "McBSP device initialized without"
1748 "platform data\n");
1749 ret = -EINVAL;
1750 goto exit;
1751 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001752
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001753 dev_dbg(&pdev->dev, "Initializing OMAP McBSP (%d).\n", pdev->id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001754
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001755 if (id >= omap_mcbsp_count) {
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001756 dev_err(&pdev->dev, "Invalid McBSP device id (%d)\n", id);
1757 ret = -EINVAL;
1758 goto exit;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001759 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001760
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001761 mcbsp = kzalloc(sizeof(struct omap_mcbsp), GFP_KERNEL);
1762 if (!mcbsp) {
1763 ret = -ENOMEM;
1764 goto exit;
1765 }
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001766
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001767 spin_lock_init(&mcbsp->lock);
1768 mcbsp->id = id + 1;
1769 mcbsp->free = 1;
1770 mcbsp->dma_tx_lch = -1;
1771 mcbsp->dma_rx_lch = -1;
1772
1773 mcbsp->phys_base = pdata->phys_base;
1774 mcbsp->io_base = ioremap(pdata->phys_base, SZ_4K);
1775 if (!mcbsp->io_base) {
Russell Kingd592dd12008-09-04 14:25:42 +01001776 ret = -ENOMEM;
1777 goto err_ioremap;
1778 }
1779
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001780 /* Default I/O is IRQ based */
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001781 mcbsp->io_type = OMAP_MCBSP_IRQ_IO;
1782 mcbsp->tx_irq = pdata->tx_irq;
1783 mcbsp->rx_irq = pdata->rx_irq;
1784 mcbsp->dma_rx_sync = pdata->dma_rx_sync;
1785 mcbsp->dma_tx_sync = pdata->dma_tx_sync;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001786
Russell Kingb820ce42009-01-23 10:26:46 +00001787 mcbsp->iclk = clk_get(&pdev->dev, "ick");
1788 if (IS_ERR(mcbsp->iclk)) {
1789 ret = PTR_ERR(mcbsp->iclk);
1790 dev_err(&pdev->dev, "unable to get ick: %d\n", ret);
1791 goto err_iclk;
1792 }
Stanley.Miao06151152009-01-29 08:57:12 -08001793
Russell Kingb820ce42009-01-23 10:26:46 +00001794 mcbsp->fclk = clk_get(&pdev->dev, "fck");
1795 if (IS_ERR(mcbsp->fclk)) {
1796 ret = PTR_ERR(mcbsp->fclk);
1797 dev_err(&pdev->dev, "unable to get fck: %d\n", ret);
1798 goto err_fclk;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001799 }
1800
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001801 mcbsp->pdata = pdata;
1802 mcbsp->dev = &pdev->dev;
Russell Kingb820ce42009-01-23 10:26:46 +00001803 mcbsp_ptr[id] = mcbsp;
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001804 platform_set_drvdata(pdev, mcbsp);
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001805
1806 /* Initialize mcbsp properties for OMAP34XX if needed / applicable */
1807 omap34xx_device_init(mcbsp);
1808
Russell Kingd592dd12008-09-04 14:25:42 +01001809 return 0;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001810
Russell Kingb820ce42009-01-23 10:26:46 +00001811err_fclk:
1812 clk_put(mcbsp->iclk);
1813err_iclk:
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001814 iounmap(mcbsp->io_base);
Russell Kingd592dd12008-09-04 14:25:42 +01001815err_ioremap:
Russell Kingb820ce42009-01-23 10:26:46 +00001816 kfree(mcbsp);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001817exit:
1818 return ret;
1819}
1820
Uwe Kleine-König25cef222008-10-08 10:01:39 +03001821static int __devexit omap_mcbsp_remove(struct platform_device *pdev)
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001822{
1823 struct omap_mcbsp *mcbsp = platform_get_drvdata(pdev);
1824
1825 platform_set_drvdata(pdev, NULL);
1826 if (mcbsp) {
1827
1828 if (mcbsp->pdata && mcbsp->pdata->ops &&
1829 mcbsp->pdata->ops->free)
1830 mcbsp->pdata->ops->free(mcbsp->id);
1831
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001832 omap34xx_device_exit(mcbsp);
1833
Russell Kingb820ce42009-01-23 10:26:46 +00001834 clk_disable(mcbsp->fclk);
1835 clk_disable(mcbsp->iclk);
1836 clk_put(mcbsp->fclk);
1837 clk_put(mcbsp->iclk);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001838
Russell Kingd592dd12008-09-04 14:25:42 +01001839 iounmap(mcbsp->io_base);
1840
Russell Kingb820ce42009-01-23 10:26:46 +00001841 mcbsp->fclk = NULL;
1842 mcbsp->iclk = NULL;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001843 mcbsp->free = 0;
1844 mcbsp->dev = NULL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001845 }
1846
1847 return 0;
1848}
1849
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001850static struct platform_driver omap_mcbsp_driver = {
1851 .probe = omap_mcbsp_probe,
Uwe Kleine-König25cef222008-10-08 10:01:39 +03001852 .remove = __devexit_p(omap_mcbsp_remove),
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001853 .driver = {
1854 .name = "omap-mcbsp",
1855 },
1856};
1857
1858int __init omap_mcbsp_init(void)
1859{
1860 /* Register the McBSP driver */
1861 return platform_driver_register(&omap_mcbsp_driver);
1862}