blob: e1d0440fd4a88470481d163e661cd67ab8c1f309 [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
492 if (!cpu_is_omap34xx())
493 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
514 if (!cpu_is_omap34xx())
515 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
563/*
564 * omap_mcbsp_get_dma_op_mode just return the current configured
565 * operating mode for the mcbsp channel
566 */
567int omap_mcbsp_get_dma_op_mode(unsigned int id)
568{
569 struct omap_mcbsp *mcbsp;
570 int dma_op_mode;
571
572 if (!omap_mcbsp_check_valid_id(id)) {
573 printk(KERN_ERR "%s: Invalid id (%u)\n", __func__, id + 1);
574 return -ENODEV;
575 }
576 mcbsp = id_to_mcbsp_ptr(id);
577
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300578 dma_op_mode = mcbsp->dma_op_mode;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +0300579
580 return dma_op_mode;
581}
582EXPORT_SYMBOL(omap_mcbsp_get_dma_op_mode);
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300583
584static inline void omap34xx_mcbsp_request(struct omap_mcbsp *mcbsp)
585{
586 /*
587 * Enable wakup behavior, smart idle and all wakeups
588 * REVISIT: some wakeups may be unnecessary
589 */
590 if (cpu_is_omap34xx()) {
591 u16 syscon;
592
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800593 syscon = MCBSP_READ(mcbsp, SYSCON);
Eero Nurkkala2ba93f82009-08-20 16:18:17 +0300594 syscon &= ~(ENAWAKEUP | SIDLEMODE(0x03) | CLOCKACTIVITY(0x03));
Eduardo Valentind99a7452009-08-20 16:18:18 +0300595
Eero Nurkkalafa3935b2009-08-20 16:18:19 +0300596 if (mcbsp->dma_op_mode == MCBSP_DMA_MODE_THRESHOLD) {
597 syscon |= (ENAWAKEUP | SIDLEMODE(0x02) |
598 CLOCKACTIVITY(0x02));
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800599 MCBSP_WRITE(mcbsp, WAKEUPEN, XRDYEN | RRDYEN);
Eero Nurkkalafa3935b2009-08-20 16:18:19 +0300600 } else {
Eduardo Valentind99a7452009-08-20 16:18:18 +0300601 syscon |= SIDLEMODE(0x01);
Eero Nurkkalafa3935b2009-08-20 16:18:19 +0300602 }
Eduardo Valentind99a7452009-08-20 16:18:18 +0300603
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800604 MCBSP_WRITE(mcbsp, SYSCON, syscon);
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300605 }
606}
607
608static inline void omap34xx_mcbsp_free(struct omap_mcbsp *mcbsp)
609{
610 /*
611 * Disable wakup behavior, smart idle and all wakeups
612 */
613 if (cpu_is_omap34xx()) {
614 u16 syscon;
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300615
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800616 syscon = MCBSP_READ(mcbsp, SYSCON);
Eero Nurkkala2ba93f82009-08-20 16:18:17 +0300617 syscon &= ~(ENAWAKEUP | SIDLEMODE(0x03) | CLOCKACTIVITY(0x03));
Eero Nurkkala72cc6d72009-08-20 16:18:20 +0300618 /*
619 * HW bug workaround - If no_idle mode is taken, we need to
620 * go to smart_idle before going to always_idle, or the
621 * device will not hit retention anymore.
622 */
623 syscon |= SIDLEMODE(0x02);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800624 MCBSP_WRITE(mcbsp, SYSCON, syscon);
Eero Nurkkala72cc6d72009-08-20 16:18:20 +0300625
626 syscon &= ~(SIDLEMODE(0x03));
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800627 MCBSP_WRITE(mcbsp, SYSCON, syscon);
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300628
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800629 MCBSP_WRITE(mcbsp, WAKEUPEN, 0);
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300630 }
631}
632#else
633static inline void omap34xx_mcbsp_request(struct omap_mcbsp *mcbsp) {}
634static inline void omap34xx_mcbsp_free(struct omap_mcbsp *mcbsp) {}
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000635static inline void omap_st_start(struct omap_mcbsp *mcbsp) {}
636static inline void omap_st_stop(struct omap_mcbsp *mcbsp) {}
Eduardo Valentin7aa9ff52009-08-20 16:18:10 +0300637#endif
638
Tony Lindgren120db2c2006-04-02 17:46:27 +0100639/*
640 * We can choose between IRQ based or polled IO.
641 * This needs to be called before omap_mcbsp_request().
642 */
643int omap_mcbsp_set_io_type(unsigned int id, omap_mcbsp_io_type_t io_type)
644{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300645 struct omap_mcbsp *mcbsp;
646
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300647 if (!omap_mcbsp_check_valid_id(id)) {
648 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
649 return -ENODEV;
650 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300651 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100652
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300653 spin_lock(&mcbsp->lock);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100654
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300655 if (!mcbsp->free) {
656 dev_err(mcbsp->dev, "McBSP%d is currently in use\n",
657 mcbsp->id);
658 spin_unlock(&mcbsp->lock);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100659 return -EINVAL;
660 }
661
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300662 mcbsp->io_type = io_type;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100663
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300664 spin_unlock(&mcbsp->lock);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100665
666 return 0;
667}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300668EXPORT_SYMBOL(omap_mcbsp_set_io_type);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100669
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100670int omap_mcbsp_request(unsigned int id)
671{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300672 struct omap_mcbsp *mcbsp;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800673 void *reg_cache;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100674 int err;
675
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300676 if (!omap_mcbsp_check_valid_id(id)) {
677 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
678 return -ENODEV;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100679 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300680 mcbsp = id_to_mcbsp_ptr(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300681
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800682 reg_cache = kzalloc(omap_mcbsp_cache_size, GFP_KERNEL);
683 if (!reg_cache) {
684 return -ENOMEM;
685 }
686
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300687 spin_lock(&mcbsp->lock);
688 if (!mcbsp->free) {
689 dev_err(mcbsp->dev, "McBSP%d is currently in use\n",
690 mcbsp->id);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800691 err = -EBUSY;
692 goto err_kfree;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100693 }
694
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300695 mcbsp->free = 0;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800696 mcbsp->reg_cache = reg_cache;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300697 spin_unlock(&mcbsp->lock);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100698
Russell Kingb820ce42009-01-23 10:26:46 +0000699 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->request)
700 mcbsp->pdata->ops->request(id);
701
702 clk_enable(mcbsp->iclk);
703 clk_enable(mcbsp->fclk);
704
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300705 /* Do procedure specific to omap34xx arch, if applicable */
706 omap34xx_mcbsp_request(mcbsp);
707
Jarkko Nikula5a070552008-10-08 10:01:41 +0300708 /*
709 * Make sure that transmitter, receiver and sample-rate generator are
710 * not running before activating IRQs.
711 */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800712 MCBSP_WRITE(mcbsp, SPCR1, 0);
713 MCBSP_WRITE(mcbsp, SPCR2, 0);
Jarkko Nikula5a070552008-10-08 10:01:41 +0300714
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300715 if (mcbsp->io_type == OMAP_MCBSP_IRQ_IO) {
Tony Lindgren120db2c2006-04-02 17:46:27 +0100716 /* We need to get IRQs here */
Jarkko Nikula5a070552008-10-08 10:01:41 +0300717 init_completion(&mcbsp->tx_irq_completion);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300718 err = request_irq(mcbsp->tx_irq, omap_mcbsp_tx_irq_handler,
719 0, "McBSP", (void *)mcbsp);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100720 if (err != 0) {
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300721 dev_err(mcbsp->dev, "Unable to request TX IRQ %d "
722 "for McBSP%d\n", mcbsp->tx_irq,
723 mcbsp->id);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800724 goto err_clk_disable;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100725 }
726
Jarkko Nikula5a070552008-10-08 10:01:41 +0300727 init_completion(&mcbsp->rx_irq_completion);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300728 err = request_irq(mcbsp->rx_irq, omap_mcbsp_rx_irq_handler,
729 0, "McBSP", (void *)mcbsp);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100730 if (err != 0) {
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300731 dev_err(mcbsp->dev, "Unable to request RX IRQ %d "
732 "for McBSP%d\n", mcbsp->rx_irq,
733 mcbsp->id);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800734 goto err_free_irq;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100735 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100736 }
737
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100738 return 0;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800739err_free_irq:
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800740 free_irq(mcbsp->tx_irq, (void *)mcbsp);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800741err_clk_disable:
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800742 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free)
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800743 mcbsp->pdata->ops->free(id);
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800744
745 /* Do procedure specific to omap34xx arch, if applicable */
746 omap34xx_mcbsp_free(mcbsp);
747
748 clk_disable(mcbsp->fclk);
749 clk_disable(mcbsp->iclk);
750
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800751 spin_lock(&mcbsp->lock);
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800752 mcbsp->free = 1;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800753 mcbsp->reg_cache = NULL;
754err_kfree:
755 spin_unlock(&mcbsp->lock);
756 kfree(reg_cache);
Janusz Krzysztofik1866b542010-01-08 10:29:04 -0800757
758 return err;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100759}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300760EXPORT_SYMBOL(omap_mcbsp_request);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100761
762void omap_mcbsp_free(unsigned int id)
763{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300764 struct omap_mcbsp *mcbsp;
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800765 void *reg_cache;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300766
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300767 if (!omap_mcbsp_check_valid_id(id)) {
768 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100769 return;
Tony Lindgren120db2c2006-04-02 17:46:27 +0100770 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300771 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren120db2c2006-04-02 17:46:27 +0100772
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300773 if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free)
774 mcbsp->pdata->ops->free(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300775
Eero Nurkkala2122fdc2009-08-20 16:18:15 +0300776 /* Do procedure specific to omap34xx arch, if applicable */
777 omap34xx_mcbsp_free(mcbsp);
778
Russell Kingb820ce42009-01-23 10:26:46 +0000779 clk_disable(mcbsp->fclk);
780 clk_disable(mcbsp->iclk);
781
782 if (mcbsp->io_type == OMAP_MCBSP_IRQ_IO) {
783 /* Free IRQs */
784 free_irq(mcbsp->rx_irq, (void *)mcbsp);
785 free_irq(mcbsp->tx_irq, (void *)mcbsp);
786 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100787
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800788 reg_cache = mcbsp->reg_cache;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100789
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800790 spin_lock(&mcbsp->lock);
791 if (mcbsp->free)
792 dev_err(mcbsp->dev, "McBSP%d was not reserved\n", mcbsp->id);
793 else
794 mcbsp->free = 1;
795 mcbsp->reg_cache = NULL;
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300796 spin_unlock(&mcbsp->lock);
Janusz Krzysztofikc8c99692010-02-15 10:03:33 -0800797
798 if (reg_cache)
799 kfree(reg_cache);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100800}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300801EXPORT_SYMBOL(omap_mcbsp_free);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100802
803/*
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300804 * Here we start the McBSP, by enabling transmitter, receiver or both.
805 * If no transmitter or receiver is active prior calling, then sample-rate
806 * generator and frame sync are started.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100807 */
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300808void omap_mcbsp_start(unsigned int id, int tx, int rx)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100809{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300810 struct omap_mcbsp *mcbsp;
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300811 int idle;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100812 u16 w;
813
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300814 if (!omap_mcbsp_check_valid_id(id)) {
815 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100816 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300817 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300818 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100819
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000820 if (cpu_is_omap34xx())
821 omap_st_start(mcbsp);
822
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800823 mcbsp->rx_word_length = (MCBSP_READ_CACHE(mcbsp, RCR1) >> 5) & 0x7;
824 mcbsp->tx_word_length = (MCBSP_READ_CACHE(mcbsp, XCR1) >> 5) & 0x7;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100825
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800826 idle = !((MCBSP_READ_CACHE(mcbsp, SPCR2) |
827 MCBSP_READ_CACHE(mcbsp, SPCR1)) & 1);
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300828
829 if (idle) {
830 /* Start the sample generator */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800831 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800832 MCBSP_WRITE(mcbsp, SPCR2, w | (1 << 6));
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300833 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100834
835 /* Enable transmitter and receiver */
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300836 tx &= 1;
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800837 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800838 MCBSP_WRITE(mcbsp, SPCR2, w | tx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100839
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300840 rx &= 1;
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800841 w = MCBSP_READ_CACHE(mcbsp, SPCR1);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800842 MCBSP_WRITE(mcbsp, SPCR1, w | rx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100843
Eduardo Valentin44a63112009-08-20 16:18:09 +0300844 /*
845 * Worst case: CLKSRG*2 = 8000khz: (1/8000) * 2 * 2 usec
846 * REVISIT: 100us may give enough time for two CLKSRG, however
847 * due to some unknown PM related, clock gating etc. reason it
848 * is now at 500us.
849 */
850 udelay(500);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100851
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300852 if (idle) {
853 /* Start frame sync */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800854 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800855 MCBSP_WRITE(mcbsp, SPCR2, w | (1 << 7));
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300856 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100857
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300858 if (cpu_is_omap2430() || cpu_is_omap34xx()) {
859 /* Release the transmitter and receiver */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800860 w = MCBSP_READ_CACHE(mcbsp, XCCR);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300861 w &= ~(tx ? XDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800862 MCBSP_WRITE(mcbsp, XCCR, w);
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800863 w = MCBSP_READ_CACHE(mcbsp, RCCR);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300864 w &= ~(rx ? RDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800865 MCBSP_WRITE(mcbsp, RCCR, w);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300866 }
867
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100868 /* Dump McBSP Regs */
869 omap_mcbsp_dump_reg(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100870}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300871EXPORT_SYMBOL(omap_mcbsp_start);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100872
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300873void omap_mcbsp_stop(unsigned int id, int tx, int rx)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100874{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300875 struct omap_mcbsp *mcbsp;
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300876 int idle;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100877 u16 w;
878
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300879 if (!omap_mcbsp_check_valid_id(id)) {
880 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100881 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300882 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100883
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300884 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100885
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300886 /* Reset transmitter */
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300887 tx &= 1;
888 if (cpu_is_omap2430() || cpu_is_omap34xx()) {
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800889 w = MCBSP_READ_CACHE(mcbsp, XCCR);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300890 w |= (tx ? XDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800891 MCBSP_WRITE(mcbsp, XCCR, w);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300892 }
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800893 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800894 MCBSP_WRITE(mcbsp, SPCR2, w & ~tx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100895
896 /* Reset receiver */
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300897 rx &= 1;
898 if (cpu_is_omap2430() || cpu_is_omap34xx()) {
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800899 w = MCBSP_READ_CACHE(mcbsp, RCCR);
Jarkko Nikulaa93d4ed2009-10-14 09:56:35 -0700900 w |= (rx ? RDISABLE : 0);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800901 MCBSP_WRITE(mcbsp, RCCR, w);
Jarkko Nikulad09a2af2009-08-23 12:24:27 +0300902 }
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800903 w = MCBSP_READ_CACHE(mcbsp, SPCR1);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800904 MCBSP_WRITE(mcbsp, SPCR1, w & ~rx);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100905
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800906 idle = !((MCBSP_READ_CACHE(mcbsp, SPCR2) |
907 MCBSP_READ_CACHE(mcbsp, SPCR1)) & 1);
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300908
909 if (idle) {
910 /* Reset the sample rate generator */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800911 w = MCBSP_READ_CACHE(mcbsp, SPCR2);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800912 MCBSP_WRITE(mcbsp, SPCR2, w & ~(1 << 6));
Jarkko Nikulac12abc02009-08-07 09:59:47 +0300913 }
Eero Nurkkalad912fa92010-02-22 12:21:11 +0000914
915 if (cpu_is_omap34xx())
916 omap_st_stop(mcbsp);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100917}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300918EXPORT_SYMBOL(omap_mcbsp_stop);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100919
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100920/* polled mcbsp i/o operations */
921int omap_mcbsp_pollwrite(unsigned int id, u16 buf)
922{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300923 struct omap_mcbsp *mcbsp;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300924
925 if (!omap_mcbsp_check_valid_id(id)) {
926 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
927 return -ENODEV;
928 }
929
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300930 mcbsp = id_to_mcbsp_ptr(id);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300931
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800932 MCBSP_WRITE(mcbsp, DXR1, buf);
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100933 /* if frame sync error - clear the error */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800934 if (MCBSP_READ(mcbsp, SPCR2) & XSYNC_ERR) {
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100935 /* clear error */
Janusz Krzysztofik0841cb82010-02-23 15:50:38 +0000936 MCBSP_WRITE(mcbsp, SPCR2, MCBSP_READ_CACHE(mcbsp, SPCR2));
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100937 /* resend */
938 return -1;
939 } else {
940 /* wait for transmit confirmation */
941 int attemps = 0;
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800942 while (!(MCBSP_READ(mcbsp, SPCR2) & XRDY)) {
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100943 if (attemps++ > 1000) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800944 MCBSP_WRITE(mcbsp, SPCR2,
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800945 MCBSP_READ_CACHE(mcbsp, SPCR2) &
946 (~XRST));
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100947 udelay(10);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800948 MCBSP_WRITE(mcbsp, SPCR2,
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800949 MCBSP_READ_CACHE(mcbsp, SPCR2) |
950 (XRST));
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100951 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300952 dev_err(mcbsp->dev, "Could not write to"
953 " McBSP%d Register\n", mcbsp->id);
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100954 return -2;
955 }
956 }
957 }
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300958
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100959 return 0;
960}
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300961EXPORT_SYMBOL(omap_mcbsp_pollwrite);
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100962
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300963int omap_mcbsp_pollread(unsigned int id, u16 *buf)
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100964{
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300965 struct omap_mcbsp *mcbsp;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300966
967 if (!omap_mcbsp_check_valid_id(id)) {
968 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
969 return -ENODEV;
970 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300971 mcbsp = id_to_mcbsp_ptr(id);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +0300972
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100973 /* if frame sync error - clear the error */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800974 if (MCBSP_READ(mcbsp, SPCR1) & RSYNC_ERR) {
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100975 /* clear error */
Janusz Krzysztofik0841cb82010-02-23 15:50:38 +0000976 MCBSP_WRITE(mcbsp, SPCR1, MCBSP_READ_CACHE(mcbsp, SPCR1));
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100977 /* resend */
978 return -1;
979 } else {
980 /* wait for recieve confirmation */
981 int attemps = 0;
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800982 while (!(MCBSP_READ(mcbsp, SPCR1) & RRDY)) {
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100983 if (attemps++ > 1000) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800984 MCBSP_WRITE(mcbsp, SPCR1,
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800985 MCBSP_READ_CACHE(mcbsp, SPCR1) &
986 (~RRST));
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100987 udelay(10);
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800988 MCBSP_WRITE(mcbsp, SPCR1,
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -0800989 MCBSP_READ_CACHE(mcbsp, SPCR1) |
990 (RRST));
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100991 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +0300992 dev_err(mcbsp->dev, "Could not read from"
993 " McBSP%d Register\n", mcbsp->id);
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +0100994 return -2;
995 }
996 }
997 }
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -0800998 *buf = MCBSP_READ(mcbsp, DRR1);
Eduardo Valentinfb78d802008-07-03 12:24:39 +0300999
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001000 return 0;
1001}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001002EXPORT_SYMBOL(omap_mcbsp_pollread);
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +01001003
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001004/*
1005 * IRQ based word transmission.
1006 */
1007void omap_mcbsp_xmit_word(unsigned int id, u32 word)
1008{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001009 struct omap_mcbsp *mcbsp;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001010 omap_mcbsp_word_length word_length;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001011
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001012 if (!omap_mcbsp_check_valid_id(id)) {
1013 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001014 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001015 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001016
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001017 mcbsp = id_to_mcbsp_ptr(id);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001018 word_length = mcbsp->tx_word_length;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001019
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001020 wait_for_completion(&mcbsp->tx_irq_completion);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001021
1022 if (word_length > OMAP_MCBSP_WORD_16)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001023 MCBSP_WRITE(mcbsp, DXR2, word >> 16);
1024 MCBSP_WRITE(mcbsp, DXR1, word & 0xffff);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001025}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001026EXPORT_SYMBOL(omap_mcbsp_xmit_word);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001027
1028u32 omap_mcbsp_recv_word(unsigned int id)
1029{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001030 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001031 u16 word_lsb, word_msb = 0;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001032 omap_mcbsp_word_length word_length;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001033
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001034 if (!omap_mcbsp_check_valid_id(id)) {
1035 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1036 return -ENODEV;
1037 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001038 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001039
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001040 word_length = mcbsp->rx_word_length;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001041
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001042 wait_for_completion(&mcbsp->rx_irq_completion);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001043
1044 if (word_length > OMAP_MCBSP_WORD_16)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001045 word_msb = MCBSP_READ(mcbsp, DRR2);
1046 word_lsb = MCBSP_READ(mcbsp, DRR1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001047
1048 return (word_lsb | (word_msb << 16));
1049}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001050EXPORT_SYMBOL(omap_mcbsp_recv_word);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001051
Tony Lindgren120db2c2006-04-02 17:46:27 +01001052int omap_mcbsp_spi_master_xmit_word_poll(unsigned int id, u32 word)
1053{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001054 struct omap_mcbsp *mcbsp;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001055 omap_mcbsp_word_length tx_word_length;
1056 omap_mcbsp_word_length rx_word_length;
Tony Lindgren120db2c2006-04-02 17:46:27 +01001057 u16 spcr2, spcr1, attempts = 0, word_lsb, word_msb = 0;
1058
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001059 if (!omap_mcbsp_check_valid_id(id)) {
1060 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1061 return -ENODEV;
1062 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001063 mcbsp = id_to_mcbsp_ptr(id);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001064 tx_word_length = mcbsp->tx_word_length;
1065 rx_word_length = mcbsp->rx_word_length;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001066
Tony Lindgren120db2c2006-04-02 17:46:27 +01001067 if (tx_word_length != rx_word_length)
1068 return -EINVAL;
1069
1070 /* First we wait for the transmitter to be ready */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001071 spcr2 = MCBSP_READ(mcbsp, SPCR2);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001072 while (!(spcr2 & XRDY)) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001073 spcr2 = MCBSP_READ(mcbsp, SPCR2);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001074 if (attempts++ > 1000) {
1075 /* We must reset the transmitter */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001076 MCBSP_WRITE(mcbsp, SPCR2,
1077 MCBSP_READ_CACHE(mcbsp, SPCR2) & (~XRST));
Tony Lindgren120db2c2006-04-02 17:46:27 +01001078 udelay(10);
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001079 MCBSP_WRITE(mcbsp, SPCR2,
1080 MCBSP_READ_CACHE(mcbsp, SPCR2) | XRST);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001081 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001082 dev_err(mcbsp->dev, "McBSP%d transmitter not "
1083 "ready\n", mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001084 return -EAGAIN;
1085 }
1086 }
1087
1088 /* Now we can push the data */
1089 if (tx_word_length > OMAP_MCBSP_WORD_16)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001090 MCBSP_WRITE(mcbsp, DXR2, word >> 16);
1091 MCBSP_WRITE(mcbsp, DXR1, word & 0xffff);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001092
1093 /* We wait for the receiver to be ready */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001094 spcr1 = MCBSP_READ(mcbsp, SPCR1);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001095 while (!(spcr1 & RRDY)) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001096 spcr1 = MCBSP_READ(mcbsp, SPCR1);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001097 if (attempts++ > 1000) {
1098 /* We must reset the receiver */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001099 MCBSP_WRITE(mcbsp, SPCR1,
1100 MCBSP_READ_CACHE(mcbsp, SPCR1) & (~RRST));
Tony Lindgren120db2c2006-04-02 17:46:27 +01001101 udelay(10);
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001102 MCBSP_WRITE(mcbsp, SPCR1,
1103 MCBSP_READ_CACHE(mcbsp, SPCR1) | RRST);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001104 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001105 dev_err(mcbsp->dev, "McBSP%d receiver not "
1106 "ready\n", mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001107 return -EAGAIN;
1108 }
1109 }
1110
1111 /* Receiver is ready, let's read the dummy data */
1112 if (rx_word_length > OMAP_MCBSP_WORD_16)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001113 word_msb = MCBSP_READ(mcbsp, DRR2);
1114 word_lsb = MCBSP_READ(mcbsp, DRR1);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001115
1116 return 0;
1117}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001118EXPORT_SYMBOL(omap_mcbsp_spi_master_xmit_word_poll);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001119
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001120int omap_mcbsp_spi_master_recv_word_poll(unsigned int id, u32 *word)
Tony Lindgren120db2c2006-04-02 17:46:27 +01001121{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001122 struct omap_mcbsp *mcbsp;
Russell Kingd592dd12008-09-04 14:25:42 +01001123 u32 clock_word = 0;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001124 omap_mcbsp_word_length tx_word_length;
1125 omap_mcbsp_word_length rx_word_length;
Tony Lindgren120db2c2006-04-02 17:46:27 +01001126 u16 spcr2, spcr1, attempts = 0, word_lsb, word_msb = 0;
1127
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001128 if (!omap_mcbsp_check_valid_id(id)) {
1129 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1130 return -ENODEV;
1131 }
1132
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001133 mcbsp = id_to_mcbsp_ptr(id);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001134
1135 tx_word_length = mcbsp->tx_word_length;
1136 rx_word_length = mcbsp->rx_word_length;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001137
Tony Lindgren120db2c2006-04-02 17:46:27 +01001138 if (tx_word_length != rx_word_length)
1139 return -EINVAL;
1140
1141 /* First we wait for the transmitter to be ready */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001142 spcr2 = MCBSP_READ(mcbsp, SPCR2);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001143 while (!(spcr2 & XRDY)) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001144 spcr2 = MCBSP_READ(mcbsp, SPCR2);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001145 if (attempts++ > 1000) {
1146 /* We must reset the transmitter */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001147 MCBSP_WRITE(mcbsp, SPCR2,
1148 MCBSP_READ_CACHE(mcbsp, SPCR2) & (~XRST));
Tony Lindgren120db2c2006-04-02 17:46:27 +01001149 udelay(10);
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001150 MCBSP_WRITE(mcbsp, SPCR2,
1151 MCBSP_READ_CACHE(mcbsp, SPCR2) | XRST);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001152 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001153 dev_err(mcbsp->dev, "McBSP%d transmitter not "
1154 "ready\n", mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001155 return -EAGAIN;
1156 }
1157 }
1158
1159 /* We first need to enable the bus clock */
1160 if (tx_word_length > OMAP_MCBSP_WORD_16)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001161 MCBSP_WRITE(mcbsp, DXR2, clock_word >> 16);
1162 MCBSP_WRITE(mcbsp, DXR1, clock_word & 0xffff);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001163
1164 /* We wait for the receiver to be ready */
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001165 spcr1 = MCBSP_READ(mcbsp, SPCR1);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001166 while (!(spcr1 & RRDY)) {
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001167 spcr1 = MCBSP_READ(mcbsp, SPCR1);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001168 if (attempts++ > 1000) {
1169 /* We must reset the receiver */
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001170 MCBSP_WRITE(mcbsp, SPCR1,
1171 MCBSP_READ_CACHE(mcbsp, SPCR1) & (~RRST));
Tony Lindgren120db2c2006-04-02 17:46:27 +01001172 udelay(10);
Janusz Krzysztofik96fbd742010-02-15 10:03:33 -08001173 MCBSP_WRITE(mcbsp, SPCR1,
1174 MCBSP_READ_CACHE(mcbsp, SPCR1) | RRST);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001175 udelay(10);
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001176 dev_err(mcbsp->dev, "McBSP%d receiver not "
1177 "ready\n", mcbsp->id);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001178 return -EAGAIN;
1179 }
1180 }
1181
1182 /* Receiver is ready, there is something for us */
1183 if (rx_word_length > OMAP_MCBSP_WORD_16)
Janusz Krzysztofik8ea32002010-02-15 10:03:32 -08001184 word_msb = MCBSP_READ(mcbsp, DRR2);
1185 word_lsb = MCBSP_READ(mcbsp, DRR1);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001186
1187 word[0] = (word_lsb | (word_msb << 16));
1188
1189 return 0;
1190}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001191EXPORT_SYMBOL(omap_mcbsp_spi_master_recv_word_poll);
Tony Lindgren120db2c2006-04-02 17:46:27 +01001192
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001193/*
1194 * Simple DMA based buffer rx/tx routines.
1195 * Nothing fancy, just a single buffer tx/rx through DMA.
1196 * The DMA resources are released once the transfer is done.
1197 * For anything fancier, you should use your own customized DMA
1198 * routines and callbacks.
1199 */
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001200int omap_mcbsp_xmit_buffer(unsigned int id, dma_addr_t buffer,
1201 unsigned int length)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001202{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001203 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001204 int dma_tx_ch;
Tony Lindgren120db2c2006-04-02 17:46:27 +01001205 int src_port = 0;
1206 int dest_port = 0;
1207 int sync_dev = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001208
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001209 if (!omap_mcbsp_check_valid_id(id)) {
1210 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1211 return -ENODEV;
1212 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001213 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001214
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001215 if (omap_request_dma(mcbsp->dma_tx_sync, "McBSP TX",
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001216 omap_mcbsp_tx_dma_callback,
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001217 mcbsp,
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001218 &dma_tx_ch)) {
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001219 dev_err(mcbsp->dev, " Unable to request DMA channel for "
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001220 "McBSP%d TX. Trying IRQ based TX\n",
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001221 mcbsp->id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001222 return -EAGAIN;
1223 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001224 mcbsp->dma_tx_lch = dma_tx_ch;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001225
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001226 dev_err(mcbsp->dev, "McBSP%d TX DMA on channel %d\n", mcbsp->id,
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001227 dma_tx_ch);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001228
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001229 init_completion(&mcbsp->tx_dma_completion);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001230
Tony Lindgren120db2c2006-04-02 17:46:27 +01001231 if (cpu_class_is_omap1()) {
1232 src_port = OMAP_DMA_PORT_TIPB;
1233 dest_port = OMAP_DMA_PORT_EMIFF;
1234 }
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001235 if (cpu_class_is_omap2())
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001236 sync_dev = mcbsp->dma_tx_sync;
Tony Lindgren120db2c2006-04-02 17:46:27 +01001237
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001238 omap_set_dma_transfer_params(mcbsp->dma_tx_lch,
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001239 OMAP_DMA_DATA_TYPE_S16,
1240 length >> 1, 1,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +00001241 OMAP_DMA_SYNC_ELEMENT,
Tony Lindgren120db2c2006-04-02 17:46:27 +01001242 sync_dev, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001243
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001244 omap_set_dma_dest_params(mcbsp->dma_tx_lch,
Tony Lindgren120db2c2006-04-02 17:46:27 +01001245 src_port,
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001246 OMAP_DMA_AMODE_CONSTANT,
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001247 mcbsp->phys_base + OMAP_MCBSP_REG_DXR1,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +00001248 0, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001249
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001250 omap_set_dma_src_params(mcbsp->dma_tx_lch,
Tony Lindgren120db2c2006-04-02 17:46:27 +01001251 dest_port,
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001252 OMAP_DMA_AMODE_POST_INC,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +00001253 buffer,
1254 0, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001255
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001256 omap_start_dma(mcbsp->dma_tx_lch);
1257 wait_for_completion(&mcbsp->tx_dma_completion);
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001258
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001259 return 0;
1260}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001261EXPORT_SYMBOL(omap_mcbsp_xmit_buffer);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001262
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001263int omap_mcbsp_recv_buffer(unsigned int id, dma_addr_t buffer,
1264 unsigned int length)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001265{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001266 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001267 int dma_rx_ch;
Tony Lindgren120db2c2006-04-02 17:46:27 +01001268 int src_port = 0;
1269 int dest_port = 0;
1270 int sync_dev = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001271
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001272 if (!omap_mcbsp_check_valid_id(id)) {
1273 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
1274 return -ENODEV;
1275 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001276 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001277
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001278 if (omap_request_dma(mcbsp->dma_rx_sync, "McBSP RX",
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001279 omap_mcbsp_rx_dma_callback,
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001280 mcbsp,
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001281 &dma_rx_ch)) {
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001282 dev_err(mcbsp->dev, "Unable to request DMA channel for "
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001283 "McBSP%d RX. Trying IRQ based RX\n",
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001284 mcbsp->id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001285 return -EAGAIN;
1286 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001287 mcbsp->dma_rx_lch = dma_rx_ch;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001288
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001289 dev_err(mcbsp->dev, "McBSP%d RX DMA on channel %d\n", mcbsp->id,
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001290 dma_rx_ch);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001291
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001292 init_completion(&mcbsp->rx_dma_completion);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001293
Tony Lindgren120db2c2006-04-02 17:46:27 +01001294 if (cpu_class_is_omap1()) {
1295 src_port = OMAP_DMA_PORT_TIPB;
1296 dest_port = OMAP_DMA_PORT_EMIFF;
1297 }
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001298 if (cpu_class_is_omap2())
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001299 sync_dev = mcbsp->dma_rx_sync;
Tony Lindgren120db2c2006-04-02 17:46:27 +01001300
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001301 omap_set_dma_transfer_params(mcbsp->dma_rx_lch,
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001302 OMAP_DMA_DATA_TYPE_S16,
1303 length >> 1, 1,
1304 OMAP_DMA_SYNC_ELEMENT,
1305 sync_dev, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001306
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001307 omap_set_dma_src_params(mcbsp->dma_rx_lch,
Tony Lindgren120db2c2006-04-02 17:46:27 +01001308 src_port,
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001309 OMAP_DMA_AMODE_CONSTANT,
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001310 mcbsp->phys_base + OMAP_MCBSP_REG_DRR1,
Tony Lindgren1a8bfa12005-11-10 14:26:50 +00001311 0, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001312
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001313 omap_set_dma_dest_params(mcbsp->dma_rx_lch,
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001314 dest_port,
1315 OMAP_DMA_AMODE_POST_INC,
1316 buffer,
1317 0, 0);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001318
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001319 omap_start_dma(mcbsp->dma_rx_lch);
1320 wait_for_completion(&mcbsp->rx_dma_completion);
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001321
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001322 return 0;
1323}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001324EXPORT_SYMBOL(omap_mcbsp_recv_buffer);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001325
1326/*
1327 * SPI wrapper.
1328 * Since SPI setup is much simpler than the generic McBSP one,
1329 * this wrapper just need an omap_mcbsp_spi_cfg structure as an input.
1330 * Once this is done, you can call omap_mcbsp_start().
1331 */
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001332void omap_mcbsp_set_spi_mode(unsigned int id,
1333 const struct omap_mcbsp_spi_cfg *spi_cfg)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001334{
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001335 struct omap_mcbsp *mcbsp;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001336 struct omap_mcbsp_reg_cfg mcbsp_cfg;
1337
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001338 if (!omap_mcbsp_check_valid_id(id)) {
1339 printk(KERN_ERR "%s: Invalid id (%d)\n", __func__, id + 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001340 return;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001341 }
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001342 mcbsp = id_to_mcbsp_ptr(id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001343
1344 memset(&mcbsp_cfg, 0, sizeof(struct omap_mcbsp_reg_cfg));
1345
1346 /* SPI has only one frame */
1347 mcbsp_cfg.rcr1 |= (RWDLEN1(spi_cfg->word_length) | RFRLEN1(0));
1348 mcbsp_cfg.xcr1 |= (XWDLEN1(spi_cfg->word_length) | XFRLEN1(0));
1349
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001350 /* Clock stop mode */
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001351 if (spi_cfg->clk_stp_mode == OMAP_MCBSP_CLK_STP_MODE_NO_DELAY)
1352 mcbsp_cfg.spcr1 |= (1 << 12);
1353 else
1354 mcbsp_cfg.spcr1 |= (3 << 11);
1355
1356 /* Set clock parities */
1357 if (spi_cfg->rx_clock_polarity == OMAP_MCBSP_CLK_RISING)
1358 mcbsp_cfg.pcr0 |= CLKRP;
1359 else
1360 mcbsp_cfg.pcr0 &= ~CLKRP;
1361
1362 if (spi_cfg->tx_clock_polarity == OMAP_MCBSP_CLK_RISING)
1363 mcbsp_cfg.pcr0 &= ~CLKXP;
1364 else
1365 mcbsp_cfg.pcr0 |= CLKXP;
1366
1367 /* Set SCLKME to 0 and CLKSM to 1 */
1368 mcbsp_cfg.pcr0 &= ~SCLKME;
1369 mcbsp_cfg.srgr2 |= CLKSM;
1370
1371 /* Set FSXP */
1372 if (spi_cfg->fsx_polarity == OMAP_MCBSP_FS_ACTIVE_HIGH)
1373 mcbsp_cfg.pcr0 &= ~FSXP;
1374 else
1375 mcbsp_cfg.pcr0 |= FSXP;
1376
1377 if (spi_cfg->spi_mode == OMAP_MCBSP_SPI_MASTER) {
1378 mcbsp_cfg.pcr0 |= CLKXM;
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001379 mcbsp_cfg.srgr1 |= CLKGDV(spi_cfg->clk_div - 1);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001380 mcbsp_cfg.pcr0 |= FSXM;
1381 mcbsp_cfg.srgr2 &= ~FSGM;
1382 mcbsp_cfg.xcr2 |= XDATDLY(1);
1383 mcbsp_cfg.rcr2 |= RDATDLY(1);
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001384 } else {
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001385 mcbsp_cfg.pcr0 &= ~CLKXM;
1386 mcbsp_cfg.srgr1 |= CLKGDV(1);
1387 mcbsp_cfg.pcr0 &= ~FSXM;
1388 mcbsp_cfg.xcr2 &= ~XDATDLY(3);
1389 mcbsp_cfg.rcr2 &= ~RDATDLY(3);
1390 }
1391
1392 mcbsp_cfg.xcr2 &= ~XPHASE;
1393 mcbsp_cfg.rcr2 &= ~RPHASE;
1394
1395 omap_mcbsp_config(id, &mcbsp_cfg);
1396}
Eduardo Valentinfb78d802008-07-03 12:24:39 +03001397EXPORT_SYMBOL(omap_mcbsp_set_spi_mode);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001398
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -08001399#ifdef CONFIG_ARCH_OMAP3
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001400#define max_thres(m) (mcbsp->pdata->buffer_size)
1401#define valid_threshold(m, val) ((val) <= max_thres(m))
1402#define THRESHOLD_PROP_BUILDER(prop) \
1403static ssize_t prop##_show(struct device *dev, \
1404 struct device_attribute *attr, char *buf) \
1405{ \
1406 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev); \
1407 \
1408 return sprintf(buf, "%u\n", mcbsp->prop); \
1409} \
1410 \
1411static ssize_t prop##_store(struct device *dev, \
1412 struct device_attribute *attr, \
1413 const char *buf, size_t size) \
1414{ \
1415 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev); \
1416 unsigned long val; \
1417 int status; \
1418 \
1419 status = strict_strtoul(buf, 0, &val); \
1420 if (status) \
1421 return status; \
1422 \
1423 if (!valid_threshold(mcbsp, val)) \
1424 return -EDOM; \
1425 \
1426 mcbsp->prop = val; \
1427 return size; \
1428} \
1429 \
1430static DEVICE_ATTR(prop, 0644, prop##_show, prop##_store);
1431
1432THRESHOLD_PROP_BUILDER(max_tx_thres);
1433THRESHOLD_PROP_BUILDER(max_rx_thres);
1434
Jarkko Nikula9b300502009-08-24 17:45:50 +03001435static const char *dma_op_modes[] = {
1436 "element", "threshold", "frame",
1437};
1438
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001439static ssize_t dma_op_mode_show(struct device *dev,
1440 struct device_attribute *attr, char *buf)
1441{
1442 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
Jarkko Nikula9b300502009-08-24 17:45:50 +03001443 int dma_op_mode, i = 0;
1444 ssize_t len = 0;
1445 const char * const *s;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001446
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001447 dma_op_mode = mcbsp->dma_op_mode;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001448
Jarkko Nikula9b300502009-08-24 17:45:50 +03001449 for (s = &dma_op_modes[i]; i < ARRAY_SIZE(dma_op_modes); s++, i++) {
1450 if (dma_op_mode == i)
1451 len += sprintf(buf + len, "[%s] ", *s);
1452 else
1453 len += sprintf(buf + len, "%s ", *s);
1454 }
1455 len += sprintf(buf + len, "\n");
1456
1457 return len;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001458}
1459
1460static ssize_t dma_op_mode_store(struct device *dev,
1461 struct device_attribute *attr,
1462 const char *buf, size_t size)
1463{
1464 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
Jarkko Nikula9b300502009-08-24 17:45:50 +03001465 const char * const *s;
1466 int i = 0;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001467
Jarkko Nikula9b300502009-08-24 17:45:50 +03001468 for (s = &dma_op_modes[i]; i < ARRAY_SIZE(dma_op_modes); s++, i++)
1469 if (sysfs_streq(buf, *s))
1470 break;
1471
1472 if (i == ARRAY_SIZE(dma_op_modes))
1473 return -EINVAL;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001474
1475 spin_lock_irq(&mcbsp->lock);
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001476 if (!mcbsp->free) {
1477 size = -EBUSY;
1478 goto unlock;
1479 }
Jarkko Nikula9b300502009-08-24 17:45:50 +03001480 mcbsp->dma_op_mode = i;
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001481
1482unlock:
1483 spin_unlock_irq(&mcbsp->lock);
1484
1485 return size;
1486}
1487
1488static DEVICE_ATTR(dma_op_mode, 0644, dma_op_mode_show, dma_op_mode_store);
1489
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001490static ssize_t st_taps_show(struct device *dev,
1491 struct device_attribute *attr, char *buf)
1492{
1493 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
1494 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
1495 ssize_t status = 0;
1496 int i;
1497
1498 spin_lock_irq(&mcbsp->lock);
1499 for (i = 0; i < st_data->nr_taps; i++)
1500 status += sprintf(&buf[status], (i ? ", %d" : "%d"),
1501 st_data->taps[i]);
1502 if (i)
1503 status += sprintf(&buf[status], "\n");
1504 spin_unlock_irq(&mcbsp->lock);
1505
1506 return status;
1507}
1508
1509static ssize_t st_taps_store(struct device *dev,
1510 struct device_attribute *attr,
1511 const char *buf, size_t size)
1512{
1513 struct omap_mcbsp *mcbsp = dev_get_drvdata(dev);
1514 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
1515 int val, tmp, status, i = 0;
1516
1517 spin_lock_irq(&mcbsp->lock);
1518 memset(st_data->taps, 0, sizeof(st_data->taps));
1519 st_data->nr_taps = 0;
1520
1521 do {
1522 status = sscanf(buf, "%d%n", &val, &tmp);
1523 if (status < 0 || status == 0) {
1524 size = -EINVAL;
1525 goto out;
1526 }
1527 if (val < -32768 || val > 32767) {
1528 size = -EINVAL;
1529 goto out;
1530 }
1531 st_data->taps[i++] = val;
1532 buf += tmp;
1533 if (*buf != ',')
1534 break;
1535 buf++;
1536 } while (1);
1537
1538 st_data->nr_taps = i;
1539
1540out:
1541 spin_unlock_irq(&mcbsp->lock);
1542
1543 return size;
1544}
1545
1546static DEVICE_ATTR(st_taps, 0644, st_taps_show, st_taps_store);
1547
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001548static const struct attribute *additional_attrs[] = {
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001549 &dev_attr_max_tx_thres.attr,
1550 &dev_attr_max_rx_thres.attr,
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001551 &dev_attr_dma_op_mode.attr,
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001552 NULL,
1553};
1554
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001555static const struct attribute_group additional_attr_group = {
1556 .attrs = (struct attribute **)additional_attrs,
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001557};
1558
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001559static inline int __devinit omap_additional_add(struct device *dev)
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001560{
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001561 return sysfs_create_group(&dev->kobj, &additional_attr_group);
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001562}
1563
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001564static inline void __devexit omap_additional_remove(struct device *dev)
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001565{
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001566 sysfs_remove_group(&dev->kobj, &additional_attr_group);
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001567}
1568
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001569static const struct attribute *sidetone_attrs[] = {
1570 &dev_attr_st_taps.attr,
1571 NULL,
1572};
1573
1574static const struct attribute_group sidetone_attr_group = {
1575 .attrs = (struct attribute **)sidetone_attrs,
1576};
1577
1578int __devinit omap_st_add(struct omap_mcbsp *mcbsp)
1579{
1580 struct omap_mcbsp_platform_data *pdata = mcbsp->pdata;
1581 struct omap_mcbsp_st_data *st_data;
1582 int err;
1583
1584 st_data = kzalloc(sizeof(*mcbsp->st_data), GFP_KERNEL);
1585 if (!st_data) {
1586 err = -ENOMEM;
1587 goto err1;
1588 }
1589
1590 st_data->io_base_st = ioremap(pdata->phys_base_st, SZ_4K);
1591 if (!st_data->io_base_st) {
1592 err = -ENOMEM;
1593 goto err2;
1594 }
1595
1596 err = sysfs_create_group(&mcbsp->dev->kobj, &sidetone_attr_group);
1597 if (err)
1598 goto err3;
1599
1600 mcbsp->st_data = st_data;
1601 return 0;
1602
1603err3:
1604 iounmap(st_data->io_base_st);
1605err2:
1606 kfree(st_data);
1607err1:
1608 return err;
1609
1610}
1611
1612static void __devexit omap_st_remove(struct omap_mcbsp *mcbsp)
1613{
1614 struct omap_mcbsp_st_data *st_data = mcbsp->st_data;
1615
1616 if (st_data) {
1617 sysfs_remove_group(&mcbsp->dev->kobj, &sidetone_attr_group);
1618 iounmap(st_data->io_base_st);
1619 kfree(st_data);
1620 }
1621}
1622
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001623static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp)
1624{
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001625 mcbsp->dma_op_mode = MCBSP_DMA_MODE_ELEMENT;
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001626 if (cpu_is_omap34xx()) {
1627 mcbsp->max_tx_thres = max_thres(mcbsp);
1628 mcbsp->max_rx_thres = max_thres(mcbsp);
Peter Ujfalusi98cb20e2009-08-20 16:18:14 +03001629 /*
1630 * REVISIT: Set dmap_op_mode to THRESHOLD as default
1631 * for mcbsp2 instances.
1632 */
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001633 if (omap_additional_add(mcbsp->dev))
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001634 dev_warn(mcbsp->dev,
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001635 "Unable to create additional controls\n");
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001636
1637 if (mcbsp->id == 2 || mcbsp->id == 3)
1638 if (omap_st_add(mcbsp))
1639 dev_warn(mcbsp->dev,
1640 "Unable to create sidetone controls\n");
1641
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001642 } else {
1643 mcbsp->max_tx_thres = -EINVAL;
1644 mcbsp->max_rx_thres = -EINVAL;
1645 }
1646}
1647
1648static inline void __devexit omap34xx_device_exit(struct omap_mcbsp *mcbsp)
1649{
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001650 if (cpu_is_omap34xx()) {
Eduardo Valentin4c8200a2009-08-20 16:18:13 +03001651 omap_additional_remove(mcbsp->dev);
Eero Nurkkalad912fa92010-02-22 12:21:11 +00001652
1653 if (mcbsp->id == 2 || mcbsp->id == 3)
1654 omap_st_remove(mcbsp);
1655 }
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001656}
1657#else
1658static inline void __devinit omap34xx_device_init(struct omap_mcbsp *mcbsp) {}
1659static inline void __devexit omap34xx_device_exit(struct omap_mcbsp *mcbsp) {}
Tony Lindgrena8eb7ca2010-02-12 12:26:48 -08001660#endif /* CONFIG_ARCH_OMAP3 */
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001661
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001662/*
1663 * McBSP1 and McBSP3 are directly mapped on 1610 and 1510.
1664 * 730 has only 2 McBSP, and both of them are MPU peripherals.
1665 */
Uwe Kleine-König25cef222008-10-08 10:01:39 +03001666static int __devinit omap_mcbsp_probe(struct platform_device *pdev)
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001667{
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001668 struct omap_mcbsp_platform_data *pdata = pdev->dev.platform_data;
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001669 struct omap_mcbsp *mcbsp;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001670 int id = pdev->id - 1;
1671 int ret = 0;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001672
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001673 if (!pdata) {
1674 dev_err(&pdev->dev, "McBSP device initialized without"
1675 "platform data\n");
1676 ret = -EINVAL;
1677 goto exit;
1678 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001679
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001680 dev_dbg(&pdev->dev, "Initializing OMAP McBSP (%d).\n", pdev->id);
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001681
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001682 if (id >= omap_mcbsp_count) {
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001683 dev_err(&pdev->dev, "Invalid McBSP device id (%d)\n", id);
1684 ret = -EINVAL;
1685 goto exit;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001686 }
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001687
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001688 mcbsp = kzalloc(sizeof(struct omap_mcbsp), GFP_KERNEL);
1689 if (!mcbsp) {
1690 ret = -ENOMEM;
1691 goto exit;
1692 }
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001693
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001694 spin_lock_init(&mcbsp->lock);
1695 mcbsp->id = id + 1;
1696 mcbsp->free = 1;
1697 mcbsp->dma_tx_lch = -1;
1698 mcbsp->dma_rx_lch = -1;
1699
1700 mcbsp->phys_base = pdata->phys_base;
1701 mcbsp->io_base = ioremap(pdata->phys_base, SZ_4K);
1702 if (!mcbsp->io_base) {
Russell Kingd592dd12008-09-04 14:25:42 +01001703 ret = -ENOMEM;
1704 goto err_ioremap;
1705 }
1706
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001707 /* Default I/O is IRQ based */
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001708 mcbsp->io_type = OMAP_MCBSP_IRQ_IO;
1709 mcbsp->tx_irq = pdata->tx_irq;
1710 mcbsp->rx_irq = pdata->rx_irq;
1711 mcbsp->dma_rx_sync = pdata->dma_rx_sync;
1712 mcbsp->dma_tx_sync = pdata->dma_tx_sync;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001713
Russell Kingb820ce42009-01-23 10:26:46 +00001714 mcbsp->iclk = clk_get(&pdev->dev, "ick");
1715 if (IS_ERR(mcbsp->iclk)) {
1716 ret = PTR_ERR(mcbsp->iclk);
1717 dev_err(&pdev->dev, "unable to get ick: %d\n", ret);
1718 goto err_iclk;
1719 }
Stanley.Miao06151152009-01-29 08:57:12 -08001720
Russell Kingb820ce42009-01-23 10:26:46 +00001721 mcbsp->fclk = clk_get(&pdev->dev, "fck");
1722 if (IS_ERR(mcbsp->fclk)) {
1723 ret = PTR_ERR(mcbsp->fclk);
1724 dev_err(&pdev->dev, "unable to get fck: %d\n", ret);
1725 goto err_fclk;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001726 }
1727
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001728 mcbsp->pdata = pdata;
1729 mcbsp->dev = &pdev->dev;
Russell Kingb820ce42009-01-23 10:26:46 +00001730 mcbsp_ptr[id] = mcbsp;
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001731 platform_set_drvdata(pdev, mcbsp);
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001732
1733 /* Initialize mcbsp properties for OMAP34XX if needed / applicable */
1734 omap34xx_device_init(mcbsp);
1735
Russell Kingd592dd12008-09-04 14:25:42 +01001736 return 0;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001737
Russell Kingb820ce42009-01-23 10:26:46 +00001738err_fclk:
1739 clk_put(mcbsp->iclk);
1740err_iclk:
Chandra Shekharb4b58f52008-10-08 10:01:39 +03001741 iounmap(mcbsp->io_base);
Russell Kingd592dd12008-09-04 14:25:42 +01001742err_ioremap:
Russell Kingb820ce42009-01-23 10:26:46 +00001743 kfree(mcbsp);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001744exit:
1745 return ret;
1746}
1747
Uwe Kleine-König25cef222008-10-08 10:01:39 +03001748static int __devexit omap_mcbsp_remove(struct platform_device *pdev)
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001749{
1750 struct omap_mcbsp *mcbsp = platform_get_drvdata(pdev);
1751
1752 platform_set_drvdata(pdev, NULL);
1753 if (mcbsp) {
1754
1755 if (mcbsp->pdata && mcbsp->pdata->ops &&
1756 mcbsp->pdata->ops->free)
1757 mcbsp->pdata->ops->free(mcbsp->id);
1758
Eduardo Valentina1a56f5f2009-08-20 16:18:11 +03001759 omap34xx_device_exit(mcbsp);
1760
Russell Kingb820ce42009-01-23 10:26:46 +00001761 clk_disable(mcbsp->fclk);
1762 clk_disable(mcbsp->iclk);
1763 clk_put(mcbsp->fclk);
1764 clk_put(mcbsp->iclk);
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001765
Russell Kingd592dd12008-09-04 14:25:42 +01001766 iounmap(mcbsp->io_base);
1767
Russell Kingb820ce42009-01-23 10:26:46 +00001768 mcbsp->fclk = NULL;
1769 mcbsp->iclk = NULL;
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001770 mcbsp->free = 0;
1771 mcbsp->dev = NULL;
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001772 }
1773
1774 return 0;
1775}
1776
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001777static struct platform_driver omap_mcbsp_driver = {
1778 .probe = omap_mcbsp_probe,
Uwe Kleine-König25cef222008-10-08 10:01:39 +03001779 .remove = __devexit_p(omap_mcbsp_remove),
Eduardo Valentinbc5d0c82008-07-03 12:24:39 +03001780 .driver = {
1781 .name = "omap-mcbsp",
1782 },
1783};
1784
1785int __init omap_mcbsp_init(void)
1786{
1787 /* Register the McBSP driver */
1788 return platform_driver_register(&omap_mcbsp_driver);
1789}